-- MySQL dump 10.13  Distrib 5.7.29, for Linux (x86_64)
--
-- Host: localhost    Database: magento
-- ------------------------------------------------------
-- Server version	5.7.29

/*!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 */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `admin_analytics_usage_version_log`
--

DROP TABLE IF EXISTS `admin_analytics_usage_version_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_analytics_usage_version_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `last_viewed_in_version` varchar(50) NOT NULL COMMENT 'Viewer last viewed on product version',
  PRIMARY KEY (`id`),
  UNIQUE KEY `ADMIN_ANALYTICS_USAGE_VERSION_LOG_LAST_VIEWED_IN_VERSION` (`last_viewed_in_version`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Admin Notification Viewer Log Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_analytics_usage_version_log`
--

LOCK TABLES `admin_analytics_usage_version_log` WRITE;
/*!40000 ALTER TABLE `admin_analytics_usage_version_log` DISABLE KEYS */;
INSERT INTO `admin_analytics_usage_version_log` VALUES (1,'2.3.3');
/*!40000 ALTER TABLE `admin_analytics_usage_version_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_passwords`
--

DROP TABLE IF EXISTS `admin_passwords`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_passwords` (
  `password_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Password Id',
  `user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'User Id',
  `password_hash` varchar(100) DEFAULT NULL COMMENT 'Password Hash',
  `expires` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Deprecated',
  `last_updated` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Last Updated',
  PRIMARY KEY (`password_id`),
  KEY `ADMIN_PASSWORDS_USER_ID` (`user_id`),
  CONSTRAINT `ADMIN_PASSWORDS_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Admin Passwords';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_passwords`
--

LOCK TABLES `admin_passwords` WRITE;
/*!40000 ALTER TABLE `admin_passwords` DISABLE KEYS */;
INSERT INTO `admin_passwords` VALUES (1,1,'501ad47a9a193ae703c8eb5fe3d654dae44d5d7a5d62a7df58858680e665a54b:zUrSlXDAKURqK6eN:2',0,1586261623);
/*!40000 ALTER TABLE `admin_passwords` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_system_messages`
--

DROP TABLE IF EXISTS `admin_system_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_system_messages` (
  `identity` varchar(100) NOT NULL COMMENT 'Message id',
  `severity` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Problem type',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Create date',
  PRIMARY KEY (`identity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin System Messages';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_system_messages`
--

LOCK TABLES `admin_system_messages` WRITE;
/*!40000 ALTER TABLE `admin_system_messages` DISABLE KEYS */;
INSERT INTO `admin_system_messages` VALUES ('0f0b53a05af28f18cad80bff04a6dbe8',1,'2020-04-07 13:14:15'),('da332d712f3215b9b94bfa268c398323',2,'2020-04-07 12:26:15');
/*!40000 ALTER TABLE `admin_system_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_user`
--

DROP TABLE IF EXISTS `admin_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_user` (
  `user_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'User ID',
  `firstname` varchar(32) DEFAULT NULL COMMENT 'User First Name',
  `lastname` varchar(32) DEFAULT NULL COMMENT 'User Last Name',
  `email` varchar(128) DEFAULT NULL COMMENT 'User Email',
  `username` varchar(40) DEFAULT NULL COMMENT 'User Login',
  `password` varchar(255) NOT NULL COMMENT 'User Password',
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'User Created Time',
  `modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'User Modified Time',
  `logdate` timestamp NULL DEFAULT NULL COMMENT 'User Last Login Time',
  `lognum` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'User Login Number',
  `reload_acl_flag` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Reload ACL',
  `is_active` smallint(6) NOT NULL DEFAULT '1' COMMENT 'User Is Active',
  `extra` text COMMENT 'User Extra Data',
  `rp_token` text COMMENT 'Reset Password Link Token',
  `rp_token_created_at` timestamp NULL DEFAULT NULL COMMENT 'Reset Password Link Token Creation Date',
  `interface_locale` varchar(16) NOT NULL DEFAULT 'en_US' COMMENT 'Backend interface locale',
  `failures_num` smallint(6) DEFAULT '0' COMMENT 'Failure Number',
  `first_failure` timestamp NULL DEFAULT NULL COMMENT 'First Failure',
  `lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Expiration Lock Dates',
  `refresh_token` text COMMENT 'Email connector refresh token',
  PRIMARY KEY (`user_id`),
  UNIQUE KEY `ADMIN_USER_USERNAME` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Admin User Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_user`
--

LOCK TABLES `admin_user` WRITE;
/*!40000 ALTER TABLE `admin_user` DISABLE KEYS */;
INSERT INTO `admin_user` VALUES (1,'Scandiweb','Developer','developer@scandipwa.com','admin','501ad47a9a193ae703c8eb5fe3d654dae44d5d7a5d62a7df58858680e665a54b:zUrSlXDAKURqK6eN:2','2020-04-07 12:13:43','2020-04-07 13:22:54','2020-04-07 13:22:54',2,0,1,'{\"configState\":{\"cms_wysiwyg\":\"1\",\"web_seo\":\"1\",\"web_url\":\"0\",\"web_secure\":\"1\",\"web_unsecure\":\"1\",\"web_default\":\"0\",\"web_default_layouts\":\"0\",\"web_cookie\":\"0\",\"web_session\":\"0\",\"web_browser_capabilities\":\"0\"}}',NULL,NULL,'en_US',0,NULL,NULL,NULL);
/*!40000 ALTER TABLE `admin_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_user_session`
--

DROP TABLE IF EXISTS `admin_user_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_user_session` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `session_id` varchar(128) NOT NULL COMMENT 'Session id value',
  `user_id` int(10) unsigned DEFAULT NULL COMMENT 'Admin User ID',
  `status` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Current Session status',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created Time',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time',
  `ip` varchar(15) NOT NULL COMMENT 'Remote user IP',
  PRIMARY KEY (`id`),
  KEY `ADMIN_USER_SESSION_SESSION_ID` (`session_id`),
  KEY `ADMIN_USER_SESSION_USER_ID` (`user_id`),
  CONSTRAINT `ADMIN_USER_SESSION_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=200 DEFAULT CHARSET=utf8 COMMENT='Admin User sessions table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_user_session`
--

LOCK TABLES `admin_user_session` WRITE;
/*!40000 ALTER TABLE `admin_user_session` DISABLE KEYS */;
INSERT INTO `admin_user_session` VALUES (1,'bf041a6c02398b96ca7c8587fd91a893',1,1,'2018-11-30 08:16:19','2018-11-30 08:26:32','172.27.0.4'),(2,'382617f8c3c65a2f0b3869c6c792ca94',1,2,'2018-11-30 15:27:12','2018-11-30 15:34:38','192.168.32.1'),(3,'a87da1bf81703974573fa34076605a32',1,2,'2018-11-30 15:34:38','2018-11-30 16:46:31','192.168.32.1'),(4,'ed48af56266dd827245fc2dab4e89225',1,2,'2018-11-30 16:46:31','2018-11-30 17:08:32','192.168.32.1'),(5,'629460a1fc942d697f92c40d86ff245d',1,2,'2018-11-30 17:08:32','2018-11-30 17:18:06','192.168.32.1'),(6,'67114b1826b1d77018b1ef6b71971208',1,2,'2018-11-30 17:18:06','2018-11-30 17:25:38','192.168.32.1'),(7,'417664d4a4776815c723d50b34d8d958',1,2,'2018-11-30 17:25:38','2018-11-30 17:30:41','192.168.32.1'),(8,'26595e0ba0f45e9ae0ae55efe938f588',1,1,'2018-11-30 17:30:41','2018-11-30 18:07:51','192.168.32.1'),(9,'a9eab90510c16b97af5dd305753a03be',1,1,'2018-11-30 17:32:40','2018-11-30 18:07:40','192.168.32.1'),(10,'8bb9d3995555cbe9f0bd5bcdeec48f79',1,1,'2018-11-30 17:42:30','2018-11-30 17:54:16','192.168.32.1'),(11,'667a226720e5aafeb91d88c8face00c2',1,1,'2018-11-30 17:42:50','2018-11-30 17:58:16','192.168.32.1'),(12,'dcd8b9b1ffbffa515a1563b9ed49ef15',1,1,'2018-11-30 18:08:26','2018-11-30 21:36:53','192.168.80.1'),(13,'5100788a203bdbbbce7625c5c1af33b2',1,1,'2018-11-30 18:10:09','2018-11-30 19:51:00','192.168.80.1'),(14,'3375ea3cbb84c511c6ba347f738e15e5',1,1,'2018-11-30 18:11:28','2018-11-30 19:01:16','192.168.80.1'),(15,'a99f9f54adf45d8526027ad654ca022b',1,1,'2018-11-30 18:11:39','2018-11-30 18:19:35','192.168.80.1'),(16,'a07a87d6edd67dc44e7c78567535b304',1,1,'2018-11-30 18:18:18','2018-11-30 19:10:35','192.168.80.1'),(17,'b1b22f33efb80027effb6faae6c281c8',1,1,'2018-11-30 18:38:52','2018-11-30 21:07:37','192.168.80.1'),(18,'6a41232ce87357693376398cd56e76b8',1,0,'2018-11-30 19:20:04','2018-11-30 20:43:52','192.168.80.1'),(19,'106930841c560b2fdee558738cc1d835',1,1,'2018-11-30 20:24:36','2018-11-30 20:40:39','192.168.96.1'),(20,'f2757f78abede1b5c46ab985eba12856',1,1,'2018-11-30 20:41:29','2018-11-30 21:51:08','192.168.96.1'),(21,'fa912fe3406e3716c95f8c7f72804d09',1,1,'2018-11-30 20:44:02','2018-11-30 21:51:44','192.168.96.1'),(22,'5bfca5c133e20714e1913c91fd4f1d59',1,1,'2018-11-30 20:51:48','2018-11-30 20:53:11','192.168.96.1'),(23,'8c1f34e6e615d2e1a44f9af9d645684b',1,1,'2018-11-30 21:11:08','2018-11-30 21:40:51','192.168.96.1'),(24,'a88ef7a3b9449bdae3ca1d54e7ac2233',1,1,'2018-11-30 21:41:35','2018-11-30 21:52:25','192.168.112.1'),(25,'4ed04785f6821e6fbcb9ed553446d847',1,1,'2018-11-30 21:45:40','2018-11-30 21:46:51','192.168.112.1'),(26,'df4c49b52a37248ba743a2d42edcc7b7',1,1,'2018-11-30 21:53:00','2018-11-30 21:59:15','192.168.112.1'),(27,'1f8474028e892c4a4c53b38a8b5c86fd',1,1,'2018-11-30 21:53:15','2018-11-30 21:55:11','192.168.112.1'),(28,'6d9cf1e8958c1848d3ae8602b1e8a031',1,1,'2018-11-30 21:57:04','2018-11-30 22:00:17','192.168.112.1'),(29,'f38a1a335037b8b54a47d2c2c43c085f',1,1,'2018-11-30 21:57:40','2018-11-30 22:00:11','192.168.112.1'),(30,'efd64e62f6d11ad05ef89101d0c8496c',1,1,'2018-11-30 22:00:38','2018-11-30 22:00:38','192.168.112.1'),(31,'d5d3b3f5161d53047abb8c3099940fa4',1,1,'2018-11-30 22:00:57','2018-11-30 22:04:53','192.168.112.1'),(32,'c8995bd5f0e07d55bdac909bffd80368',1,1,'2018-11-30 22:01:47','2018-11-30 22:01:47','192.168.112.1'),(33,'c4c637769b64b0a2091089e965cdaa50',1,1,'2018-11-30 22:03:16','2018-11-30 22:04:15','192.168.112.1'),(34,'52aea04f510462ceb63efa43b14f3c1c',1,1,'2018-11-30 22:03:31','2018-11-30 22:03:31','192.168.112.1'),(35,'56b3f88fd00b26909d8eedcfcbbbddac',1,1,'2018-11-30 22:06:01','2018-11-30 22:07:47','192.168.112.1'),(36,'67732f02c61d7680da47bbd8747e6e32',1,1,'2018-11-30 22:06:35','2018-11-30 22:13:28','192.168.112.1'),(37,'d7de6ea435053ce34b985befa4b78276',1,1,'2018-11-30 22:09:44','2018-11-30 22:24:28','192.168.112.1'),(38,'a46e8d9915d0fc0310431efee99c2036',1,1,'2018-11-30 23:36:32','2018-11-30 23:50:04','172.18.0.1'),(39,'46013316fc4d70733382bfbdafa342a2',1,1,'2018-11-30 23:54:02','2018-11-30 23:55:45','172.18.0.1'),(40,'ba5555f8e27c5a06a82dafc403cf1260',1,1,'2018-11-30 23:57:36','2018-12-01 00:16:29','172.18.0.1'),(41,'c55ca795da094efb1397ad8a4805c53a',1,1,'2018-12-01 10:33:40','2018-12-01 10:33:40','172.20.0.1'),(42,'8dd0477fcf32c76ab8f72ce1f9969eb3',1,1,'2018-12-01 13:03:29','2018-12-01 13:06:01','172.20.0.1'),(43,'3c44f201a294ce2251a7a9a1d0f71b9f',1,1,'2018-12-01 14:19:20','2018-12-01 14:19:20','172.20.0.1'),(44,'f2a4264acf8fb619f44d0d38873144ae',1,1,'2018-12-01 14:42:46','2018-12-01 15:01:42','172.20.0.1'),(45,'e2562df824bab6bc709f364e11d1ac59',1,1,'2018-12-02 12:32:44','2018-12-02 12:34:11','172.28.0.1'),(46,'fab535252e80dfac69774ab5b96ccc6a',1,1,'2018-12-02 12:48:45','2018-12-02 12:50:28','172.28.0.1'),(47,'ed334b96583708ff66f656fcfd65ac23',1,1,'2018-12-02 13:03:24','2018-12-02 13:04:12','172.28.0.1'),(48,'ee20e0a3c5f85e0e8f011a1746bf428e',1,1,'2018-12-02 14:34:24','2018-12-02 14:44:59','172.30.0.1'),(49,'ecbaaec7044620f8674facd5a95a390f',1,1,'2018-12-02 15:34:30','2018-12-02 15:35:14','172.30.0.1'),(50,'8c85cf11274e6926a640e6f89b262a11',1,1,'2018-12-02 15:47:30','2018-12-02 15:58:15','172.30.0.1'),(51,'e586d86daa430765fa091fba1a4549c0',1,1,'2018-12-02 16:09:12','2018-12-02 16:10:21','172.30.0.1'),(52,'98c19ce3e9368b514dcadd4bceb7212b',1,1,'2018-12-02 19:33:14','2018-12-02 19:51:01','172.30.0.1'),(53,'6207cae319f9b06a49a355a9395624c4',1,1,'2018-12-03 07:56:02','2018-12-03 07:56:36','192.168.32.1'),(54,'4e8e32da5e64a2a175bc404fdf168bef',1,1,'2018-12-03 09:25:41','2018-12-03 10:27:45','192.168.32.1'),(55,'1a3d5075e3fbe0ca509057c0dd36acab',1,1,'2018-12-03 09:25:56','2018-12-03 09:30:10','192.168.32.1'),(56,'871cd579e78125251d3da52e78ea4c4b',1,1,'2018-12-03 09:25:56','2018-12-03 10:22:32','192.168.32.1'),(57,'8456d654f1c6e64410b1539c6fb0d61b',1,1,'2018-12-03 09:26:18','2018-12-03 10:27:46','192.168.32.1'),(58,'b21fb33afe1044350f6fc0d0d5a77b9e',1,1,'2018-12-03 09:27:07','2018-12-03 10:26:13','192.168.32.1'),(59,'5a6c4c08234787e766accb46817e7151',1,1,'2018-12-03 11:29:38','2018-12-03 12:38:45','172.20.0.1'),(60,'e20be1245c9764927079d32baa82ac68',1,1,'2018-12-03 11:30:42','2018-12-03 12:29:16','172.20.0.1'),(61,'a3dd77d9715e6a6e60dc3cd137ba4784',1,1,'2018-12-03 11:30:55','2018-12-03 11:58:25','172.20.0.1'),(62,'030e5211da113b0b4b3b8700fe88c799',1,1,'2018-12-03 11:55:27','2018-12-03 11:58:40','172.20.0.1'),(63,'d97c403a977838886555558b6d25225b',1,1,'2018-12-03 12:16:12','2018-12-03 13:11:00','172.20.0.1'),(64,'5fbd6b920994fb6c822be3e74c4e4542',1,1,'2018-12-03 12:20:45','2018-12-03 13:05:51','172.20.0.1'),(65,'0ebf6dfe598cbd4b3ad5e3608ec8cf78',1,1,'2018-12-03 12:39:22','2018-12-03 12:39:22','172.20.0.1'),(66,'08963d1b6862723696d82355321b509a',1,1,'2018-12-03 12:52:47','2018-12-03 13:05:25','172.21.0.1'),(67,'ff43f9c75fd9b98ff49dcb770b9829ad',1,1,'2018-12-03 13:06:11','2018-12-03 13:06:11','172.22.0.1'),(68,'8824d82112daa2646fb240d577e55751',1,1,'2018-12-03 13:13:55','2018-12-03 13:15:25','172.22.0.1'),(69,'e611164d64ca6a87e986997615159e60',1,1,'2018-12-03 13:17:30','2018-12-03 13:17:59','172.22.0.1'),(70,'e8c68c54c486244d9de5b00aceb79b7b',1,1,'2018-12-03 13:17:51','2018-12-03 13:55:25','172.22.0.1'),(71,'10241c542609faa2ad9767062d2a7bf0',1,1,'2018-12-03 13:19:02','2018-12-03 13:22:13','172.22.0.1'),(72,'9d39e2d5248ed89a71341b9014ce43ef',1,1,'2018-12-03 13:19:57','2018-12-03 13:21:04','172.22.0.1'),(73,'d3ad99efa19fef1a9e58ebee00131337',1,1,'2018-12-03 15:02:34','2018-12-03 15:08:41','172.27.0.1'),(74,'dedac8fef44b93ed90d9f94f735705b4',1,1,'2018-12-03 15:49:30','2018-12-03 15:49:30','172.29.0.1'),(75,'273db1d254df70fa72276b6e067709ed',1,1,'2018-12-03 16:16:29','2018-12-03 16:20:04','172.29.0.1'),(76,'5db35518a9a2a7d120e0877f01f85a9f',1,1,'2018-12-03 18:01:25','2018-12-03 18:01:25','192.168.32.1'),(77,'59257c69c8a00aa47f6f260044f9aa3a',1,1,'2018-12-03 18:08:39','2018-12-03 18:08:39','192.168.48.1'),(78,'9878617d293b00b7947a79284110354c',1,1,'2018-12-03 18:18:31','2018-12-03 18:23:44','192.168.48.1'),(79,'a179172f73ca40fb5da53f104abc6651',1,1,'2018-12-04 06:55:19','2018-12-04 06:56:52','192.168.64.1'),(80,'52476dd10e54917cb5d4b54700dc0efa',1,1,'2018-12-04 07:57:56','2018-12-04 07:57:56','192.168.64.1'),(81,'c5b58d2dacd5281efb600328b587fe0e',1,1,'2018-12-04 12:27:05','2018-12-04 12:33:12','192.168.64.1'),(82,'5e9cc79200b367141641e62e3c18c79c',1,1,'2018-12-05 09:13:03','2018-12-05 09:15:00','192.168.64.1'),(83,'11bdd4d393452d9dfeb1fd330b1381c4',1,1,'2019-02-08 07:29:27','2019-02-08 07:41:46','172.30.0.1'),(84,'2ff07c2d2fbe8e010cdd8e3aab17bc69',1,1,'2019-02-08 07:44:56','2019-02-08 08:20:12','172.31.0.1'),(85,'1af35094fd2dfb6504c88d0702fe63eb',1,1,'2019-02-08 12:09:25','2019-02-08 12:21:54','172.31.0.1'),(86,'9480a01796b2d68fcebffd6480d25e69',1,1,'2019-02-08 12:39:27','2019-02-08 12:39:27','172.31.0.1'),(87,'bddd34de0a5d614b17c7f137383d6e01',1,1,'2019-02-08 14:25:29','2019-02-08 15:28:38','172.31.0.1'),(88,'9834b21cb39074e576cc7ae92aa7dde8',1,1,'2019-02-08 15:48:39','2019-02-08 16:34:12','172.31.0.1'),(89,'ebf30bbb1f4786325e0918dbb3526454',1,1,'2019-02-11 06:46:16','2019-02-11 08:07:24','172.31.0.1'),(90,'cc096d96baeb1dd6a0a08f2fda94ff65',1,1,'2019-02-22 08:34:32','2019-02-22 08:34:32','192.168.224.7'),(91,'afc1db87dccda02397392cf2281ca904',1,1,'2019-02-25 10:30:43','2019-02-25 10:30:43','195.13.221.74'),(92,'c8526d21bb04cfe03aaf9a4c79a01e02',1,1,'2019-02-25 10:31:57','2019-02-25 10:35:14','195.13.221.74'),(93,'789f50eb3648fba6a52dec585cdca221',1,1,'2019-02-25 10:37:57','2019-02-25 10:39:37','77.219.13.21'),(94,'ebd30ddd23056d7d30a07b203e6e2451',1,0,'2019-02-25 11:50:39','2019-02-25 11:51:56','77.219.13.21'),(95,'96e21e75b861ada33cba30d107ba533d',2,1,'2019-02-25 11:52:05','2019-02-25 12:00:00','77.219.13.21'),(96,'acd954ab1ed029c50086e49fd6d3f5cc',2,1,'2019-02-25 12:33:42','2019-02-25 12:35:28','77.219.13.21'),(97,'56f18211feba866a1965db9afbbd3609',2,0,'2019-02-25 12:56:11','2019-02-25 12:57:40','77.219.13.21'),(98,'65384fd1f6377edcd6cbd4741a2882bd',2,1,'2019-02-25 12:58:50','2019-02-25 12:58:50','77.219.13.21'),(99,'0929317c12f58a785225f2b4322666fd',2,1,'2019-02-25 14:32:55','2019-02-25 14:34:37','77.219.13.21'),(100,'08fb78458d97acdf7fc8669dab15aa96',2,1,'2019-02-25 15:59:04','2019-02-25 16:39:37','77.219.13.21'),(101,'ac1b4c66fbead77946f941cdbb1aae29',2,1,'2019-02-26 12:35:07','2019-02-26 12:35:07','77.219.13.21'),(102,'f03b80b49547f1dca8ed2b1bfebde7ee',2,1,'2019-02-27 10:49:42','2019-02-27 11:29:21','77.219.13.171'),(103,'f20a10c0448044f5416a548655d3b1b7',2,1,'2019-02-27 11:46:09','2019-02-27 11:56:05','77.219.13.171'),(104,'d53861c3d62ba2870ccdfe6c529a32dc',2,1,'2019-02-27 12:14:43','2019-02-27 12:58:53','77.219.13.171'),(105,'9276cfca22f189387028551c4910d93f',2,1,'2019-02-27 21:01:29','2019-02-27 21:01:29','77.219.13.171'),(106,'727b3217c33f0532e4c174134fe3f81b',2,1,'2019-02-28 15:11:30','2019-02-28 16:07:28','77.219.13.171'),(107,'a5bbb75599a979106c2b401c7808d11b',2,1,'2019-02-28 16:24:26','2019-02-28 16:30:27','77.219.13.171'),(108,'1deade3718bdbb7ee486e792cd27108c',2,1,'2019-02-28 16:55:58','2019-02-28 18:17:52','77.219.13.171'),(109,'037b654789f82ced42cc36ed182cdef8',2,1,'2019-02-28 18:46:02','2019-02-28 18:59:15','77.219.13.171'),(110,'0164dcd80eb609986fd531bc92b3842a',2,1,'2019-03-01 06:43:35','2019-03-01 07:03:39','195.13.221.74'),(111,'8fb5be187733a03233c5916186cfcc49',2,1,'2019-03-01 08:04:31','2019-03-01 08:22:49','195.13.221.74'),(112,'64fd935a72cc76f2e843a507919d007a',2,1,'2019-03-01 08:52:22','2019-03-01 08:57:25','195.13.221.74'),(113,'e0785c1cf366bfc396a0b977d16887e2',2,1,'2019-03-01 09:21:20','2019-03-01 09:25:36','195.13.221.74'),(114,'3d8d0535d1911fb9edab874ba53503db',2,1,'2019-03-01 10:01:26','2019-03-01 10:16:56','195.13.221.74'),(115,'8cfbfcfc4da1226c7654a7791548028a',2,1,'2019-03-01 11:01:43','2019-03-01 11:41:03','195.13.221.74'),(116,'9e5ca41e0d543369547391e795c2ad8a',2,1,'2019-03-01 12:22:53','2019-03-01 12:29:27','195.13.221.74'),(117,'61365f9df66025b596815da8c69b2225',2,1,'2019-03-01 12:57:24','2019-03-01 12:59:08','195.13.221.74'),(118,'0bc83d48b1678ad2f8788c92cf43257f',2,1,'2019-03-01 13:18:55','2019-03-01 13:37:56','195.13.221.74'),(119,'73c9287811936db821070ec50c8691a0',1,0,'2019-03-01 13:36:33','2019-03-01 13:43:05','195.13.221.74'),(120,'d168dd8242f2dd23ce925500425d5839',2,1,'2019-03-04 04:59:44','2019-03-04 05:02:28','195.13.221.74'),(121,'25919e428c18eec5f00121a4e67ed83f',2,0,'2019-03-04 05:28:48','2019-03-04 07:17:05','195.13.221.74'),(122,'0fbf8e3bfc1e0cda51ff04c3c74f5857',2,1,'2019-03-04 07:17:47','2019-03-04 07:51:10','195.13.221.74'),(123,'c2e9282053001066a0cb2c09381afd0c',2,1,'2019-03-04 08:10:22','2019-03-04 08:11:18','195.13.221.74'),(124,'804294c851c7baec53b8d4b3768e8b10',2,1,'2019-03-04 08:28:46','2019-03-04 08:58:51','195.13.221.74'),(125,'e6b860943a4d8511eb44c0d870d74179',2,1,'2019-03-04 09:30:42','2019-03-04 09:39:19','195.13.221.74'),(126,'c442965cae09368c204f221a079494af',1,1,'2019-03-04 10:31:03','2019-03-04 10:51:23','195.13.221.74'),(127,'47ec7f47a7d46f0b7003e7148571a05d',2,1,'2019-03-04 11:08:20','2019-03-04 11:37:43','195.13.221.74'),(128,'d4c230003b4084b819eeb36d9290cf30',2,1,'2019-03-04 11:53:58','2019-03-04 12:38:30','195.13.221.74'),(129,'0e070f373f22d63ebd0f37cd4af39dc4',2,1,'2019-03-04 12:58:12','2019-03-04 13:09:35','195.13.221.74'),(130,'f441b7fd693bc2b02f5e6d6ebcd17368',2,1,'2019-03-04 13:28:37','2019-03-04 13:33:46','195.13.221.74'),(131,'2bed55c22e8f775cc26d6a593db7cdeb',1,1,'2019-03-04 13:31:13','2019-03-04 13:31:43','195.13.221.74'),(132,'b76f8895f98df5be1002214e13cc3a41',2,1,'2019-03-04 14:07:03','2019-03-04 14:14:57','195.13.221.74'),(133,'a457f3324f5aaaa52a92aa303fd77e74',2,1,'2019-03-05 10:58:35','2019-03-05 10:58:35','77.219.13.171'),(134,'d69c4d7f00ae15a51b23d40c85d42876',2,1,'2019-03-05 11:15:50','2019-03-05 12:18:25','77.219.13.171'),(135,'1881ddd4959da1618075e6037f3b7e77',2,1,'2019-03-05 12:31:41','2019-03-05 12:53:36','77.219.13.171'),(136,'0f1568f79b9e147baa15e3af1abf2a37',2,1,'2019-03-05 13:03:54','2019-03-05 13:55:16','77.219.13.171'),(137,'0815a292dfd577800aa3108b820759e0',2,1,'2019-03-05 14:18:54','2019-03-05 14:21:15','77.219.13.171'),(138,'d6533dd18e554de87f47c9255832c99c',2,1,'2019-03-05 14:42:49','2019-03-05 14:45:05','77.219.13.171'),(139,'a3377a8210968f3883908490c8b093a1',2,1,'2019-03-05 15:00:53','2019-03-05 15:29:28','77.219.13.171'),(140,'f7249698a6ad8087eb59ebb2077044a2',1,0,'2019-03-05 15:06:35','2019-03-05 15:08:10','195.13.221.74'),(141,'c8d1872189dc939d818931ef546f2f46',1,0,'2019-03-05 15:08:16','2019-03-05 15:09:53','195.13.221.74'),(142,'45ed608d41dd9a24fa888b36065c119c',1,1,'2019-03-05 15:10:03','2019-03-05 15:34:55','195.13.221.74'),(143,'aaf6da252f9dfb4b3538bce6abf11619',2,1,'2019-03-05 16:41:19','2019-03-05 16:45:39','77.219.13.171'),(144,'66239907667ca07c0e420e2ffcc54112',2,1,'2019-03-05 17:01:13','2019-03-05 18:41:21','77.219.13.171'),(145,'b149f73dcfbc1379629a9fb47a8c2764',2,1,'2019-03-05 18:59:29','2019-03-05 21:52:36','77.219.13.171'),(146,'b51d0b4e0be40700a937f4ba9366ddd2',1,1,'2019-03-05 21:09:54','2019-03-05 21:27:30','81.198.119.38'),(147,'1c2f94be304cffad3faaae3f733aa7eb',1,1,'2019-03-05 21:48:04','2019-03-05 21:49:21','81.198.119.38'),(148,'92bef1eb07250c10fadf9a97006e6e1b',1,1,'2019-03-05 21:57:27','2019-03-05 22:26:49','81.198.119.38'),(149,'6cd2f7794b0c7686afb8f0cfabba67af',2,1,'2019-03-06 06:01:07','2019-03-06 09:00:40','195.13.221.74'),(150,'0e3f7ca23374adb06a8909a09ef6023a',2,1,'2019-03-06 09:22:24','2019-03-06 10:31:24','195.13.221.74'),(151,'c0514d508bbaed083db0e07a7d84cdb1',1,1,'2019-03-06 09:29:29','2019-03-06 11:19:49','195.13.221.74'),(152,'8cc0824683c92c427486a0dda4e30f0a',1,1,'2019-03-06 10:11:06','2019-03-06 10:32:51','195.13.221.74'),(153,'7e091a2a21946b6bb5331d33f127ae1e',1,1,'2019-03-06 10:19:44','2019-03-06 11:16:36','195.13.221.74'),(154,'a60175739c32db50b20d8fd56e9304df',2,1,'2019-03-06 10:48:55','2019-03-06 11:22:19','195.13.221.74'),(155,'b322b78ff92ea776c6616b4dcd77b4a2',1,1,'2019-03-06 10:50:04','2019-03-06 10:51:04','195.13.221.74'),(156,'5810d8e357fc31a66c5f85d17b74a597',1,1,'2019-03-06 11:01:17','2019-03-06 11:01:54','195.13.221.74'),(157,'4a5e5c1fc005bc9a8aa16d44de387289',1,1,'2019-03-06 11:20:05','2019-03-06 11:23:00','195.13.221.74'),(158,'885cfaab06967517c076817c4a707bac',1,1,'2019-03-06 11:54:44','2019-03-06 11:57:06','195.13.221.74'),(159,'eb436292b79c269de1fb6bc753a626fb',1,1,'2019-03-06 11:56:51','2019-03-06 13:48:27','195.13.221.74'),(160,'72f26987cd7a20910ac522628025c5d2',1,1,'2019-03-06 12:14:11','2019-03-06 13:50:23','195.13.221.74'),(161,'09055ce55b3e177201181a968c89528f',1,1,'2019-03-06 12:28:20','2019-03-06 12:47:04','195.13.221.74'),(162,'ecfabde1f8bcbbeb2277aeddb980527f',1,1,'2019-03-06 13:59:55','2019-03-06 16:11:43','195.13.221.74'),(163,'70efbd357c26bdbfe677ced5e844c97a',1,1,'2019-03-06 14:03:44','2019-03-06 17:09:46','195.13.221.74'),(164,'405bb1f29e761699ec4fff56884cdee5',1,1,'2019-03-06 20:12:22','2019-03-06 20:47:16','195.13.221.74'),(165,'0b41762b302805a26a7730bf5e0571bf',1,1,'2019-03-06 21:04:14','2019-03-06 21:09:05','195.13.221.74'),(166,'8e001c8fc809549137b332bd753073d2',1,1,'2019-03-06 21:52:44','2019-03-06 21:53:52','195.13.221.74'),(167,'285ed0e0525ccb221971ca40ba6cbefa',1,1,'2019-03-07 07:28:51','2019-03-07 09:53:10','195.13.221.74'),(168,'e8f51312929b56c1ded7e6b624e0c191',1,1,'2019-03-07 07:51:25','2019-03-07 09:42:17','195.13.221.74'),(169,'b9180c7b37db3c57861ba53e489506c4',1,1,'2019-03-07 07:59:22','2019-03-07 08:09:16','195.13.221.74'),(170,'a23b02c30de968b870621b275d514885',1,1,'2019-03-07 10:03:11','2019-03-07 10:42:57','195.13.221.74'),(171,'5f1c371c862779aa2c26eb59f64f9b26',1,1,'2019-03-07 10:05:32','2019-03-07 10:44:35','195.13.221.74'),(172,'65d547810c3cf03ce9d2be99fe0f495c',1,1,'2019-03-07 10:18:38','2019-03-07 11:16:19','195.13.221.74'),(173,'682c4c9819c691f26aa082e893958c01',1,1,'2019-03-07 11:20:46','2019-03-07 11:56:51','195.13.221.74'),(174,'a022f7d0c4edd525530d4ddaa8083248',1,1,'2019-03-07 11:23:27','2019-03-07 11:58:50','195.13.221.74'),(175,'6c71286756094cf957fe3e285df5f7a8',1,1,'2019-03-07 11:31:12','2019-03-07 12:00:09','195.13.221.74'),(176,'bc569c4415ccdd5be35a137ea7a90c9c',1,1,'2019-03-07 12:16:36','2019-03-07 12:33:13','195.13.221.74'),(177,'ac390ae744f85db235348944f9aaa619',1,1,'2019-03-07 12:19:20','2019-03-07 13:16:44','195.13.221.74'),(178,'e446b7eda57fef66a5a2ae37b39ede15',1,1,'2019-03-07 12:33:21','2019-03-07 12:36:12','195.13.221.74'),(179,'a6cc3769b43118c0d61513a634c5f7a3',1,1,'2019-03-07 13:00:21','2019-03-07 13:16:49','195.13.221.74'),(180,'de2afdaca42de0f8ad5a5baa136a84aa',1,1,'2019-03-07 13:04:14','2019-03-07 13:04:14','195.13.221.74'),(181,'ac6dc7eda26efb4ff8a358bbf4d2e9d2',1,1,'2019-03-07 13:21:00','2019-03-07 13:31:57','195.13.221.74'),(182,'884c4e8d2168f6897626174cb2fd99d4',1,1,'2019-03-07 13:27:36','2019-03-07 15:49:10','195.13.221.74'),(183,'8e84af9c53c93c4c76ed6647fe9fe647',1,1,'2019-03-07 13:27:50','2019-03-07 13:29:53','195.13.221.74'),(184,'aabd19acffe646f598e078b3193060ca',1,1,'2019-03-07 13:41:23','2019-03-07 13:44:32','195.13.221.74'),(185,'9849eec66362d3a6056ff9034b636203',1,1,'2019-03-07 14:03:02','2019-03-07 15:29:17','195.13.221.74'),(186,'994944add86b28d598c17d7a5b69493a',1,1,'2019-03-07 14:05:40','2019-03-07 15:32:55','195.13.221.74'),(187,'d62ba9de61e165da0436aedee87bbb18',1,1,'2019-03-08 07:32:00','2019-03-08 09:11:04','195.13.221.74'),(188,'011883c8eb6d378dadbd4db97cc6da78',1,1,'2019-03-08 07:46:07','2019-03-08 08:58:22','195.13.221.74'),(189,'d3c4e56e4323eeb9850eca3b876d7007',1,1,'2019-03-08 09:15:31','2019-03-08 09:35:57','195.13.221.74'),(190,'3bf36f0a251325187df8b764548d81d0',1,1,'2019-03-08 09:35:18','2019-03-08 10:23:24','195.13.221.74'),(191,'e6c4790604103837bede44952da5d0cc',1,1,'2019-03-08 10:09:28','2019-03-08 10:52:41','195.13.221.74'),(192,'d8ef5fc6e5f796115ddb96cea4bf914e',1,1,'2019-03-08 11:29:47','2019-03-08 11:30:47','195.13.221.74'),(193,'0bf7a78c73cd86102a63b2e9f06503fa',1,1,'2019-03-08 11:34:07','2019-03-08 11:34:35','195.13.221.74'),(194,'4f4d0b90760d3b446be34d1ea69f2ccf',1,1,'2019-03-08 12:12:25','2019-03-08 12:32:33','195.13.221.74'),(195,'1e0e0d1c4bf2f7d51b15bcbfbd1f3424',1,1,'2019-03-08 12:24:32','2019-03-08 12:32:04','195.13.221.74'),(196,'91b7a5999ceb413e5a260499531f102b',1,1,'2019-03-08 12:41:08','2019-03-08 12:41:42','195.13.221.74'),(197,'d8e8c2846f2ff183af8db03874caeba2',1,1,'2019-03-08 12:44:57','2019-03-08 12:48:14','195.13.221.74'),(198,'9291ca21118eeabf8f8062f207b7957c',1,1,'2020-04-07 12:26:05','2020-04-07 13:22:37','172.19.0.1'),(199,'f5d3f9ec8fe293bb7f2f1cd052e94ef1',1,1,'2020-04-07 13:22:54','2020-04-07 13:25:27','172.19.0.1');
/*!40000 ALTER TABLE `admin_user_session` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adminnotification_inbox`
--

DROP TABLE IF EXISTS `adminnotification_inbox`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `adminnotification_inbox` (
  `notification_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Notification id',
  `severity` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Problem type',
  `date_added` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Create date',
  `title` varchar(255) NOT NULL COMMENT 'Title',
  `description` text COMMENT 'Description',
  `url` varchar(255) DEFAULT NULL COMMENT 'Url',
  `is_read` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Flag if notification read',
  `is_remove` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Flag if notification might be removed',
  `expiration_date` datetime DEFAULT NULL,
  PRIMARY KEY (`notification_id`),
  KEY `ADMINNOTIFICATION_INBOX_SEVERITY` (`severity`),
  KEY `ADMINNOTIFICATION_INBOX_IS_READ` (`is_read`),
  KEY `ADMINNOTIFICATION_INBOX_IS_REMOVE` (`is_remove`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Adminnotification Inbox';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adminnotification_inbox`
--

LOCK TABLES `adminnotification_inbox` WRITE;
/*!40000 ALTER TABLE `adminnotification_inbox` DISABLE KEYS */;
/*!40000 ALTER TABLE `adminnotification_inbox` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `amazon_customer`
--

DROP TABLE IF EXISTS `amazon_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `amazon_customer` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity_id',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer_id',
  `amazon_id` varchar(255) NOT NULL COMMENT 'Amazon_id',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `AMAZON_CUSTOMER_CUSTOMER_ID_AMAZON_ID` (`customer_id`,`amazon_id`),
  UNIQUE KEY `AMAZON_CUSTOMER_CUSTOMER_ID` (`customer_id`),
  CONSTRAINT `AMAZON_CUSTOMER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='amazon_customer';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `amazon_customer`
--

LOCK TABLES `amazon_customer` WRITE;
/*!40000 ALTER TABLE `amazon_customer` DISABLE KEYS */;
/*!40000 ALTER TABLE `amazon_customer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `amazon_pending_authorization`
--

DROP TABLE IF EXISTS `amazon_pending_authorization`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `amazon_pending_authorization` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity_id',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order_id',
  `payment_id` int(10) unsigned NOT NULL COMMENT 'Payment_id',
  `authorization_id` varchar(255) DEFAULT NULL COMMENT 'Authorization_id',
  `created_at` datetime NOT NULL COMMENT 'Created_at',
  `updated_at` datetime DEFAULT NULL COMMENT 'Updated_at',
  `processed` smallint(5) unsigned DEFAULT '0' COMMENT 'Initial authorization processed',
  `capture` smallint(5) unsigned DEFAULT '0' COMMENT 'Initial authorization has capture',
  `capture_id` varchar(255) DEFAULT NULL COMMENT 'Initial authorization capture id',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `UNQ_E6CCA08713FB32BB136A56837009C371` (`order_id`,`payment_id`,`authorization_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='amazon_pending_authorization';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `amazon_pending_authorization`
--

LOCK TABLES `amazon_pending_authorization` WRITE;
/*!40000 ALTER TABLE `amazon_pending_authorization` DISABLE KEYS */;
/*!40000 ALTER TABLE `amazon_pending_authorization` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `amazon_pending_capture`
--

DROP TABLE IF EXISTS `amazon_pending_capture`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `amazon_pending_capture` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity_id',
  `capture_id` varchar(255) NOT NULL COMMENT 'Capture_id',
  `created_at` datetime NOT NULL COMMENT 'Created_at',
  `order_id` int(10) unsigned NOT NULL COMMENT 'order id',
  `payment_id` int(10) unsigned NOT NULL COMMENT 'payment id',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `AMAZON_PENDING_CAPTURE_ORDER_ID_PAYMENT_ID_CAPTURE_ID` (`order_id`,`payment_id`,`capture_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='amazon_pending_capture';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `amazon_pending_capture`
--

LOCK TABLES `amazon_pending_capture` WRITE;
/*!40000 ALTER TABLE `amazon_pending_capture` DISABLE KEYS */;
/*!40000 ALTER TABLE `amazon_pending_capture` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `amazon_pending_refund`
--

DROP TABLE IF EXISTS `amazon_pending_refund`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `amazon_pending_refund` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity_id',
  `refund_id` varchar(255) NOT NULL COMMENT 'Refund_id',
  `created_at` datetime NOT NULL COMMENT 'Created_at',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order_id',
  `payment_id` int(10) unsigned NOT NULL COMMENT 'Payment_id',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `AMAZON_PENDING_REFUND_ORDER_ID_PAYMENT_ID_REFUND_ID` (`order_id`,`payment_id`,`refund_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='amazon_pending_refund';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `amazon_pending_refund`
--

LOCK TABLES `amazon_pending_refund` WRITE;
/*!40000 ALTER TABLE `amazon_pending_refund` DISABLE KEYS */;
/*!40000 ALTER TABLE `amazon_pending_refund` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `amazon_quote`
--

DROP TABLE IF EXISTS `amazon_quote`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `amazon_quote` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `quote_id` int(10) unsigned NOT NULL COMMENT 'Quote ID',
  `amazon_order_reference_id` varchar(255) NOT NULL COMMENT 'Amazon Order Reference ID',
  `sandbox_simulation_reference` varchar(255) DEFAULT NULL COMMENT 'Sandbox simulation reference',
  `confirmed` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Quote confirmed with Amazon',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `AMAZON_QUOTE_QUOTE_ID` (`quote_id`),
  CONSTRAINT `AMAZON_QUOTE_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='amazon_quote';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `amazon_quote`
--

LOCK TABLES `amazon_quote` WRITE;
/*!40000 ALTER TABLE `amazon_quote` DISABLE KEYS */;
/*!40000 ALTER TABLE `amazon_quote` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `amazon_sales_order`
--

DROP TABLE IF EXISTS `amazon_sales_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `amazon_sales_order` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `amazon_order_reference_id` varchar(255) NOT NULL COMMENT 'Amazon Order Reference ID',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `AMAZON_SALES_ORDER_ORDER_ID` (`order_id`),
  CONSTRAINT `AMAZON_SALES_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='amazon_sales_order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `amazon_sales_order`
--

LOCK TABLES `amazon_sales_order` WRITE;
/*!40000 ALTER TABLE `amazon_sales_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `amazon_sales_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `authorization_role`
--

DROP TABLE IF EXISTS `authorization_role`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `authorization_role` (
  `role_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Role ID',
  `parent_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Parent Role ID',
  `tree_level` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Role Tree Level',
  `sort_order` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Role Sort Order',
  `role_type` varchar(1) NOT NULL DEFAULT '0' COMMENT 'Role Type',
  `user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'User ID',
  `user_type` varchar(16) DEFAULT NULL COMMENT 'User Type',
  `role_name` varchar(50) DEFAULT NULL COMMENT 'Role Name',
  PRIMARY KEY (`role_id`),
  KEY `AUTHORIZATION_ROLE_PARENT_ID_SORT_ORDER` (`parent_id`,`sort_order`),
  KEY `AUTHORIZATION_ROLE_TREE_LEVEL` (`tree_level`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Admin Role Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `authorization_role`
--

LOCK TABLES `authorization_role` WRITE;
/*!40000 ALTER TABLE `authorization_role` DISABLE KEYS */;
INSERT INTO `authorization_role` VALUES (1,0,1,1,'G',0,'2','Administrators'),(2,1,2,0,'U',1,'2','admin'),(3,1,2,0,'U',2,'2','Arturs');
/*!40000 ALTER TABLE `authorization_role` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `authorization_rule`
--

DROP TABLE IF EXISTS `authorization_rule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `authorization_rule` (
  `rule_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule ID',
  `role_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Role ID',
  `resource_id` varchar(255) DEFAULT NULL COMMENT 'Resource ID',
  `privileges` varchar(20) DEFAULT NULL COMMENT 'Privileges',
  `permission` varchar(10) DEFAULT NULL COMMENT 'Permission',
  PRIMARY KEY (`rule_id`),
  KEY `AUTHORIZATION_RULE_RESOURCE_ID_ROLE_ID` (`resource_id`,`role_id`),
  KEY `AUTHORIZATION_RULE_ROLE_ID_RESOURCE_ID` (`role_id`,`resource_id`),
  CONSTRAINT `AUTHORIZATION_RULE_ROLE_ID_AUTHORIZATION_ROLE_ROLE_ID` FOREIGN KEY (`role_id`) REFERENCES `authorization_role` (`role_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Admin Rule Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `authorization_rule`
--

LOCK TABLES `authorization_rule` WRITE;
/*!40000 ALTER TABLE `authorization_rule` DISABLE KEYS */;
INSERT INTO `authorization_rule` VALUES (1,1,'Magento_Backend::all',NULL,'allow');
/*!40000 ALTER TABLE `authorization_rule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache`
--

DROP TABLE IF EXISTS `cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache` (
  `id` varchar(200) NOT NULL COMMENT 'Cache Id',
  `data` mediumblob COMMENT 'Cache Data',
  `create_time` int(11) DEFAULT NULL COMMENT 'Cache Creation Time',
  `update_time` int(11) DEFAULT NULL COMMENT 'Time of Cache Updating',
  `expire_time` int(11) DEFAULT NULL COMMENT 'Cache Expiration Time',
  PRIMARY KEY (`id`),
  KEY `CACHE_EXPIRE_TIME` (`expire_time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Caches';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache`
--

LOCK TABLES `cache` WRITE;
/*!40000 ALTER TABLE `cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_tag`
--

DROP TABLE IF EXISTS `cache_tag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_tag` (
  `tag` varchar(100) NOT NULL COMMENT 'Tag',
  `cache_id` varchar(200) NOT NULL COMMENT 'Cache Id',
  PRIMARY KEY (`tag`,`cache_id`),
  KEY `CACHE_TAG_CACHE_ID` (`cache_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tag Caches';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_tag`
--

LOCK TABLES `cache_tag` WRITE;
/*!40000 ALTER TABLE `cache_tag` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_tag` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `captcha_log`
--

DROP TABLE IF EXISTS `captcha_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `captcha_log` (
  `type` varchar(32) NOT NULL COMMENT 'Type',
  `value` varchar(255) NOT NULL COMMENT 'Value',
  `count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Count',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time',
  PRIMARY KEY (`type`,`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Count Login Attempts';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `captcha_log`
--

LOCK TABLES `captcha_log` WRITE;
/*!40000 ALTER TABLE `captcha_log` DISABLE KEYS */;
INSERT INTO `captcha_log` VALUES ('2','kkalnmalis',1,'2019-03-06 14:03:35'),('2','scandiweb',1,'2019-03-01 13:36:22');
/*!40000 ALTER TABLE `captcha_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_entity`
--

DROP TABLE IF EXISTS `catalog_category_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set ID',
  `parent_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Parent Category ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time',
  `path` varchar(255) NOT NULL COMMENT 'Tree Path',
  `position` int(11) NOT NULL COMMENT 'Position',
  `level` int(11) NOT NULL DEFAULT '0' COMMENT 'Tree Level',
  `children_count` int(11) NOT NULL COMMENT 'Child Count',
  PRIMARY KEY (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_LEVEL` (`level`),
  KEY `CATALOG_CATEGORY_ENTITY_PATH` (`path`)
) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_entity`
--

LOCK TABLES `catalog_category_entity` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity` DISABLE KEYS */;
INSERT INTO `catalog_category_entity` VALUES (1,3,0,'2018-11-22 11:19:21','2018-12-01 14:45:44','1',0,0,-18),(2,3,1,'2018-11-22 11:19:21','2018-12-01 14:45:44','1/2',1,1,-19),(20,3,2,'2018-11-23 09:16:01','2018-12-03 13:20:37','1/2/20',2,2,5),(22,3,20,'2018-11-23 09:16:11','2018-12-03 13:07:42','1/2/20/22',2,3,0),(23,3,20,'2018-11-23 09:16:17','2018-12-03 13:08:26','1/2/20/23',3,3,0),(24,3,20,'2018-11-23 09:16:22','2018-12-03 13:09:23','1/2/20/24',4,3,0),(25,3,20,'2018-11-23 09:16:27','2018-12-03 13:10:31','1/2/20/25',5,3,0),(26,3,20,'2018-11-23 09:16:32','2018-12-03 13:11:00','1/2/20/26',6,3,0),(27,3,2,'2018-11-23 09:16:37','2018-12-03 13:20:52','1/2/27',3,2,6),(28,3,27,'2018-11-23 09:16:42','2018-12-03 12:38:24','1/2/27/28',1,3,0),(29,3,27,'2018-11-23 09:16:47','2018-12-03 12:36:29','1/2/27/29',2,3,0),(30,3,27,'2018-11-23 09:16:53','2018-12-03 12:35:32','1/2/27/30',3,3,0),(31,3,27,'2018-11-23 09:16:58','2018-12-03 12:33:55','1/2/27/31',4,3,0),(32,3,27,'2018-11-23 09:17:03','2018-12-03 12:32:22','1/2/27/32',5,3,0),(33,3,27,'2018-11-23 09:17:08','2018-12-03 12:23:21','1/2/27/33',6,3,0),(35,3,2,'2018-11-23 09:17:18','2018-12-03 13:21:07','1/2/35',4,2,3),(36,3,35,'2018-11-23 09:17:23','2018-12-03 12:54:08','1/2/35/36',1,3,0),(37,3,35,'2018-11-23 09:17:29','2018-12-03 12:55:44','1/2/35/37',2,3,0),(38,3,35,'2018-11-23 09:17:34','2018-12-03 13:21:42','1/2/35/38',3,3,0);
/*!40000 ALTER TABLE `catalog_category_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_entity_datetime`
--

DROP TABLE IF EXISTS `catalog_category_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_entity_datetime` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_DTIME_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Datetime Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_entity_datetime`
--

LOCK TABLES `catalog_category_entity_datetime` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_datetime` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_datetime` VALUES (1,61,0,2,NULL),(2,62,0,2,NULL),(23,61,0,23,NULL),(24,62,0,23,NULL),(25,61,0,24,NULL),(26,62,0,24,NULL),(29,61,0,26,NULL),(30,62,0,26,NULL),(33,61,0,28,NULL),(34,62,0,28,NULL),(35,61,0,29,NULL),(36,62,0,29,NULL),(39,61,0,31,NULL),(40,62,0,31,NULL),(41,61,0,32,NULL),(42,62,0,32,NULL),(43,61,0,33,NULL),(44,62,0,33,NULL),(47,61,0,35,NULL),(48,62,0,35,NULL),(49,61,0,36,NULL),(50,62,0,36,NULL),(51,61,0,37,NULL),(52,62,0,37,NULL),(53,61,0,38,NULL),(54,62,0,38,NULL),(57,61,0,22,NULL),(58,62,0,22,NULL),(59,61,0,25,NULL),(60,62,0,25,NULL),(61,61,0,27,NULL),(62,62,0,27,NULL),(63,61,0,20,NULL),(64,62,0,20,NULL),(65,61,0,30,NULL),(66,62,0,30,NULL);
/*!40000 ALTER TABLE `catalog_category_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_entity_decimal`
--

DROP TABLE IF EXISTS `catalog_category_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_entity_decimal` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` decimal(20,6) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_DEC_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Decimal Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_entity_decimal`
--

LOCK TABLES `catalog_category_entity_decimal` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_entity_int`
--

DROP TABLE IF EXISTS `catalog_category_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` int(11) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_CATEGORY_ENTITY_INT_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_CATEGORY_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_INT_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=325 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Integer Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_entity_int`
--

LOCK TABLES `catalog_category_entity_int` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_int` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_int` VALUES (1,69,0,1,1),(2,46,0,2,1),(3,69,0,2,1),(55,46,0,20,1),(56,54,0,20,1),(57,69,0,20,1),(61,46,0,22,1),(62,54,0,22,1),(63,69,0,22,1),(64,46,0,23,1),(65,54,0,23,1),(66,69,0,23,1),(67,46,0,24,1),(68,54,0,24,1),(69,69,0,24,1),(70,46,0,25,1),(71,54,0,25,1),(72,69,0,25,1),(73,46,0,26,1),(74,54,0,26,1),(75,69,0,26,1),(76,46,0,27,1),(77,54,0,27,1),(78,69,0,27,1),(79,46,0,28,1),(80,54,0,28,1),(81,69,0,28,1),(82,46,0,29,1),(83,54,0,29,1),(84,69,0,29,1),(85,46,0,30,1),(86,54,0,30,1),(87,69,0,30,1),(88,46,0,31,1),(89,54,0,31,1),(90,69,0,31,1),(91,46,0,32,1),(92,54,0,32,1),(93,69,0,32,1),(94,46,0,33,1),(95,54,0,33,1),(96,69,0,33,1),(100,46,0,35,1),(101,54,0,35,1),(102,69,0,35,1),(103,46,0,36,1),(104,54,0,36,1),(105,69,0,36,1),(106,46,0,37,1),(107,54,0,37,1),(108,69,0,37,1),(109,46,0,38,1),(110,54,0,38,1),(111,69,0,38,1),(235,53,0,2,NULL),(236,54,0,2,1),(237,70,0,2,0),(238,71,0,2,0),(261,70,0,20,0),(262,71,0,20,0),(267,70,0,22,0),(268,71,0,22,0),(269,53,0,23,NULL),(270,70,0,23,0),(271,71,0,23,0),(272,53,0,24,NULL),(273,70,0,24,0),(274,71,0,24,0),(276,70,0,25,0),(277,71,0,25,0),(278,53,0,26,NULL),(279,70,0,26,0),(280,71,0,26,0),(282,70,0,27,0),(283,71,0,27,0),(284,53,0,28,NULL),(285,70,0,28,0),(286,71,0,28,0),(287,53,0,29,NULL),(288,70,0,29,0),(289,71,0,29,0),(291,70,0,30,0),(292,71,0,30,0),(293,53,0,31,NULL),(294,70,0,31,0),(295,71,0,31,0),(296,53,0,32,NULL),(297,70,0,32,0),(298,71,0,32,0),(299,53,0,33,NULL),(300,70,0,33,0),(301,71,0,33,0),(305,53,0,35,NULL),(306,70,0,35,0),(307,71,0,35,0),(308,53,0,36,NULL),(309,70,0,36,0),(310,71,0,36,0),(311,53,0,37,NULL),(312,70,0,37,0),(313,71,0,37,0),(314,53,0,38,NULL),(315,70,0,38,0),(316,71,0,38,0),(320,53,0,22,NULL),(321,53,0,25,NULL),(322,53,0,27,NULL),(323,53,0,20,NULL),(324,53,0,30,NULL);
/*!40000 ALTER TABLE `catalog_category_entity_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_entity_text`
--

DROP TABLE IF EXISTS `catalog_category_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` text COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_TEXT_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=133 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Text Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_entity_text`
--

LOCK TABLES `catalog_category_entity_text` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_text` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_text` VALUES (1,47,0,2,NULL),(2,50,0,2,NULL),(3,51,0,2,NULL),(4,64,0,2,NULL),(45,47,0,23,'<p>Explore the complete collection and find the jacket for you.</p>'),(46,50,0,23,NULL),(47,51,0,23,NULL),(48,64,0,23,NULL),(49,47,0,24,'<p>Stay on top of footwear trends with original prints, fabrics and embroidery.</p>'),(50,50,0,24,NULL),(51,51,0,24,NULL),(52,64,0,24,NULL),(57,47,0,26,'<p>Comfortable and versatile pieces to go with any outfit. A brand new pair of jeans that fits your style and attitude.</p>'),(58,50,0,26,NULL),(59,51,0,26,NULL),(60,64,0,26,NULL),(65,47,0,28,'<p>From easy wrap styles to bodycon slips, women’s dresses come in all shapes, colours and cuts this season.</p>'),(66,50,0,28,NULL),(67,51,0,28,NULL),(68,64,0,28,NULL),(69,47,0,29,'<p>From sparkly Lurex dresses to cosy cashmere cardigans, the trends have never been as varied and fun as they are right now.</p>'),(70,50,0,29,NULL),(71,51,0,29,NULL),(72,64,0,29,NULL),(77,47,0,31,'<p>From casual joggers to sharp tuxedo pants, our new collection of women’s trousers has something for every dress code.</p>'),(78,50,0,31,NULL),(79,51,0,31,NULL),(80,64,0,31,NULL),(81,47,0,32,'<p>Discover eye-catching rips, patches, embroidery and studs in every imaginable fit.</p>'),(82,50,0,32,NULL),(83,51,0,32,NULL),(84,64,0,32,NULL),(85,47,0,33,'<p class=\"p1\">Our new collection of women’s shoes ticks every trend box for every occasion; think party, work, casual and sporty styles, plus everything in between. </p>'),(86,50,0,33,NULL),(87,51,0,33,NULL),(88,64,0,33,NULL),(93,47,0,35,'<p>Shop our new online collection to find the perfect finishing touches.</p>'),(94,50,0,35,NULL),(95,51,0,35,NULL),(96,64,0,35,NULL),(97,47,0,36,'<p>Metal frames and mirrored lenses look effortlessly glamorous, while graphic plastic styles look retro and iconic. </p>'),(98,50,0,36,NULL),(99,51,0,36,NULL),(100,64,0,36,NULL),(101,47,0,37,'<p>Shop the exclusive online edit of statement bags, whether you’re looking for something that’s made from leather or raffia, covered with beading, or original embroidery</p>'),(102,50,0,37,NULL),(103,51,0,37,NULL),(104,64,0,37,NULL),(105,47,0,38,'<p>Buckle up with our range of belts that will complete your look any day.</p>'),(106,50,0,38,NULL),(107,51,0,38,NULL),(108,64,0,38,NULL),(113,47,0,22,'<p>Choose chunky knit for a relaxed look, or finer fabrics for a more refined style.</p>'),(114,50,0,22,NULL),(115,51,0,22,NULL),(116,64,0,22,NULL),(117,47,0,25,'<p>A pair of men\'s trousers for all of your moments. Sporty styles are reinvented with original urban designs. </p>'),(118,50,0,25,NULL),(119,51,0,25,NULL),(120,64,0,25,NULL),(121,47,0,27,'<p>Special prices autumn winter 2019</p>'),(122,50,0,27,NULL),(123,51,0,27,NULL),(124,64,0,27,NULL),(125,47,0,20,'<p>Discover seasonal pieces in a range of styles and fits, updated weekly.</p>'),(126,50,0,20,NULL),(127,51,0,20,NULL),(128,64,0,20,NULL),(129,47,0,30,'<p>Functional and stylish trench coats, rain macs, waistcoats and kimonos will help you to master the art of layering.</p>'),(130,50,0,30,NULL),(131,51,0,30,NULL),(132,64,0,30,NULL);
/*!40000 ALTER TABLE `catalog_category_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_entity_varchar`
--

DROP TABLE IF EXISTS `catalog_category_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_entity_varchar` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_VCHR_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=456 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Varchar Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_entity_varchar`
--

LOCK TABLES `catalog_category_entity_varchar` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_varchar` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_varchar` VALUES (1,45,0,1,'Root Catalog'),(2,45,0,2,'All products'),(3,52,0,2,'PRODUCTS'),(55,45,0,20,'Men'),(56,119,0,20,'men'),(57,120,0,20,'men'),(61,45,0,22,'Knitwear'),(62,119,0,22,'man-knitwear'),(63,120,0,22,'men/man-knitwear'),(64,45,0,23,'Jackets'),(65,119,0,23,'men-jackets'),(66,120,0,23,'men/men-jackets'),(67,45,0,24,'Shoes'),(68,119,0,24,'men-shoes'),(69,120,0,24,'men/men-shoes'),(70,45,0,25,'Trousers'),(71,119,0,25,'men-trousers'),(72,120,0,25,'men/men-trousers'),(73,45,0,26,'Jeans'),(74,119,0,26,'men-jeans'),(75,120,0,26,'men/men-jeans'),(76,45,0,27,'Women'),(77,119,0,27,'women'),(78,120,0,27,'women'),(79,45,0,28,'Dresses'),(80,119,0,28,'women-dresses'),(81,120,0,28,'women/women-dresses'),(82,45,0,29,'Knitwear'),(83,119,0,29,'women-knitwear'),(84,120,0,29,'women/women-knitwear'),(85,45,0,30,'Jackets'),(86,119,0,30,'women-jackets'),(87,120,0,30,'women/women-jackets'),(88,45,0,31,'Trousers'),(89,119,0,31,'women-trousers'),(90,120,0,31,'women/women-trousers'),(91,45,0,32,'Jeans'),(92,119,0,32,'women-jeans'),(93,120,0,32,'women/women-jeans'),(94,45,0,33,'Shoes'),(95,119,0,33,'women-shoes'),(96,120,0,33,'women/women-shoes'),(100,45,0,35,'Accessories'),(101,119,0,35,'accessories'),(102,120,0,35,'accessories'),(103,45,0,36,'Sunglasses'),(104,119,0,36,'accessories-sunglasses'),(105,120,0,36,'accessories/accessories-sunglasses'),(106,45,0,37,'Bags'),(107,119,0,37,'accessories-bags'),(108,120,0,37,'accessories/accessories-bags'),(109,45,0,38,'Belts'),(110,119,0,38,'accessories-belts'),(111,120,0,38,'accessories/accessories-belts'),(235,48,0,2,NULL),(236,49,0,2,'all_products'),(237,60,0,2,NULL),(238,63,0,2,NULL),(239,119,0,2,'all-products'),(286,52,0,20,'PRODUCTS'),(298,52,0,22,'PRODUCTS'),(302,48,0,23,'mens_jackets.jpg'),(303,49,0,23,NULL),(304,52,0,23,'PRODUCTS'),(305,60,0,23,NULL),(306,63,0,23,NULL),(308,48,0,24,'mens_shoes.jpg'),(309,49,0,24,NULL),(310,52,0,24,'PRODUCTS'),(311,60,0,24,NULL),(312,63,0,24,NULL),(316,52,0,25,'PRODUCTS'),(320,48,0,26,'mens_jeans.jpg'),(321,49,0,26,NULL),(322,52,0,26,'PRODUCTS'),(323,60,0,26,NULL),(324,63,0,26,NULL),(328,52,0,27,'PRODUCTS'),(332,48,0,28,'womens_dresses.jpg'),(333,49,0,28,NULL),(334,52,0,28,'PRODUCTS'),(335,60,0,28,NULL),(336,63,0,28,NULL),(338,48,0,29,'womens_knitwear.jpg'),(339,49,0,29,NULL),(340,52,0,29,'PRODUCTS'),(341,60,0,29,NULL),(342,63,0,29,NULL),(346,52,0,30,'PRODUCTS'),(350,48,0,31,'womens_trousers.jpg'),(351,49,0,31,NULL),(352,52,0,31,'PRODUCTS'),(353,60,0,31,NULL),(354,63,0,31,NULL),(356,48,0,32,'womens_jeans.jpg'),(357,49,0,32,NULL),(358,52,0,32,'PRODUCTS'),(359,60,0,32,NULL),(360,63,0,32,NULL),(362,48,0,33,'womens_shoes.jpg'),(363,49,0,33,NULL),(364,52,0,33,'PRODUCTS'),(365,60,0,33,NULL),(366,63,0,33,NULL),(374,48,0,35,'accessories.jpg'),(375,49,0,35,NULL),(376,52,0,35,'PRODUCTS'),(377,60,0,35,NULL),(378,63,0,35,NULL),(380,48,0,36,'accessories_sunglasses.jpg'),(381,49,0,36,NULL),(382,52,0,36,'PRODUCTS'),(383,60,0,36,NULL),(384,63,0,36,NULL),(386,48,0,37,'accessories2_bags.jpg'),(387,49,0,37,NULL),(388,52,0,37,'PRODUCTS'),(389,60,0,37,NULL),(390,63,0,37,NULL),(392,48,0,38,'accessories_belts.jpg'),(393,49,0,38,NULL),(394,52,0,38,'PRODUCTS'),(395,60,0,38,NULL),(396,63,0,38,NULL),(404,48,0,22,'mens_knitwear.jpg'),(405,49,0,22,NULL),(406,60,0,22,NULL),(407,63,0,22,NULL),(414,48,0,25,'mens_trousers.jpg'),(415,49,0,25,NULL),(416,60,0,25,NULL),(417,63,0,25,NULL),(426,48,0,27,'womens.jpg'),(427,49,0,27,NULL),(428,60,0,27,NULL),(429,63,0,27,NULL),(436,48,0,20,'mens.jpg'),(437,49,0,20,NULL),(438,60,0,20,NULL),(439,63,0,20,NULL),(443,48,0,30,'womens_jackets.jpg'),(444,49,0,30,NULL),(445,60,0,30,NULL),(446,63,0,30,NULL),(455,120,0,2,NULL);
/*!40000 ALTER TABLE `catalog_category_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product`
--

DROP TABLE IF EXISTS `catalog_category_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product` (
  `entity_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `category_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `position` int(11) NOT NULL DEFAULT '0' COMMENT 'Position',
  PRIMARY KEY (`entity_id`,`category_id`,`product_id`),
  UNIQUE KEY `CATALOG_CATEGORY_PRODUCT_CATEGORY_ID_PRODUCT_ID` (`category_id`,`product_id`),
  KEY `CATALOG_CATEGORY_PRODUCT_PRODUCT_ID` (`product_id`),
  CONSTRAINT `CAT_CTGR_PRD_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_PRD_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5091 DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Category Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_product`
--

LOCK TABLES `catalog_category_product` WRITE;
/*!40000 ALTER TABLE `catalog_category_product` DISABLE KEYS */;
INSERT INTO `catalog_category_product` VALUES (1,20,1,0),(2,22,1,0),(3,20,2,0),(4,22,2,0),(5,20,3,0),(6,24,3,0),(7,20,4,0),(8,24,4,0),(9,20,5,0),(10,24,5,0),(11,20,6,0),(12,24,6,0),(13,27,7,0),(14,31,7,0),(15,20,8,0),(16,24,8,0),(17,27,9,0),(18,31,9,0),(19,27,10,0),(20,31,10,0),(21,27,11,0),(22,31,11,0),(23,27,12,0),(24,31,12,0),(29,20,15,0),(30,24,15,0),(31,20,16,0),(32,24,16,0),(33,27,17,0),(34,31,17,0),(35,27,18,0),(36,32,18,0),(37,27,19,0),(38,31,19,0),(39,20,20,0),(40,24,20,0),(43,27,22,0),(44,32,22,0),(47,27,24,0),(48,31,24,0),(49,20,25,0),(50,24,25,0),(51,27,26,0),(52,31,26,0),(57,20,29,0),(58,24,29,0),(59,27,30,0),(60,32,30,0),(61,35,31,0),(62,36,31,0),(63,35,32,0),(64,36,32,0),(65,20,34,0),(66,25,34,0),(67,20,35,0),(68,24,35,0),(69,20,36,0),(70,25,36,0),(73,20,38,0),(74,25,38,0),(75,20,42,0),(76,25,42,0),(77,20,43,0),(78,24,43,0),(79,20,46,0),(80,25,46,0),(81,20,47,0),(82,25,47,0),(83,35,48,0),(84,36,48,0),(85,20,49,0),(86,25,49,0),(87,27,41,0),(88,30,41,0),(89,27,50,0),(90,30,50,0),(91,20,51,0),(92,25,51,0),(95,20,53,0),(96,25,53,0),(97,27,54,0),(98,33,54,0),(99,20,55,0),(100,25,55,0),(101,27,56,0),(102,30,56,0),(103,27,57,0),(104,32,57,0),(105,35,58,0),(106,36,58,0),(107,27,59,0),(108,30,59,0),(111,35,61,0),(112,36,61,0),(115,20,63,0),(116,26,63,0),(117,27,60,0),(118,33,60,0),(119,27,64,0),(120,30,64,0),(121,35,65,0),(122,36,65,0),(123,20,66,0),(124,26,66,0),(125,20,68,0),(126,26,68,0),(127,27,69,0),(128,33,69,0),(135,27,70,0),(136,30,70,0),(137,20,71,0),(138,26,71,0),(139,27,72,0),(140,30,72,0),(141,27,73,0),(142,30,73,0),(143,35,74,0),(144,36,74,0),(145,27,75,0),(146,33,75,0),(147,20,76,0),(148,26,76,0),(149,27,77,0),(150,30,77,0),(151,20,78,0),(152,25,78,0),(153,20,79,0),(154,26,79,0),(155,27,80,0),(156,30,80,0),(157,27,81,0),(158,30,81,0),(161,27,82,0),(162,33,82,0),(165,27,84,0),(166,33,84,0),(167,20,85,0),(168,26,85,0),(169,27,86,0),(170,33,86,0),(173,20,88,0),(174,26,88,0),(175,27,89,0),(176,33,89,0),(179,20,87,0),(180,23,87,0),(181,20,83,0),(182,23,83,0),(185,20,91,0),(186,23,91,0),(187,20,92,0),(188,23,92,0),(189,20,93,0),(190,23,93,0),(193,20,95,0),(194,23,95,0),(197,20,97,0),(198,26,97,0),(199,20,98,0),(200,23,98,0),(201,20,99,0),(202,26,99,0),(203,20,100,0),(204,23,100,0),(205,20,101,0),(206,22,101,0),(207,20,102,0),(208,22,102,0),(209,20,103,0),(210,22,103,0),(211,20,104,0),(212,22,104,0),(215,27,105,0),(216,29,105,0),(217,27,106,0),(218,29,106,0),(219,27,107,0),(220,29,107,0),(221,27,108,0),(222,29,108,0),(223,27,109,0),(224,28,109,0),(225,27,110,0),(226,28,110,0),(227,35,111,0),(228,38,111,0),(231,27,112,0),(232,28,112,0),(233,27,113,0),(234,28,113,0),(235,35,114,0),(236,38,114,0),(237,27,115,0),(238,28,115,0),(239,27,117,0),(240,28,117,0),(241,35,118,0),(242,38,118,0),(245,35,121,0),(246,38,121,0),(249,35,124,0),(250,37,124,0),(251,35,127,0),(252,37,127,0),(253,35,125,0),(254,37,125,0),(255,35,126,0),(256,37,126,0),(257,35,128,0),(258,37,128,0),(259,27,120,0),(260,28,120,0),(261,27,119,0),(262,28,119,0),(263,27,123,0),(264,28,123,0),(265,27,122,0),(266,28,122,0),(267,27,45,0),(268,32,45,0),(269,27,33,0),(270,32,33,0),(271,20,129,0),(272,25,129,0),(273,20,130,0),(274,25,130,0),(275,20,131,0),(276,25,131,0),(277,20,132,0),(278,22,132,0),(279,20,133,0),(280,22,133,0),(281,20,134,0),(282,22,134,0),(283,20,135,0),(284,22,135,0),(285,20,136,0),(286,22,136,0),(287,20,137,0),(288,22,137,0),(289,20,138,0),(290,24,138,0),(291,20,139,0),(292,24,139,0),(293,20,140,0),(294,24,140,0),(295,20,141,0),(296,24,141,0),(297,20,142,0),(298,24,142,0),(299,20,143,0),(300,24,143,0),(301,20,144,0),(302,24,144,0),(303,20,145,0),(304,24,145,0),(305,20,146,0),(306,24,146,0),(307,20,147,0),(308,24,147,0),(309,20,148,0),(310,24,148,0),(311,20,149,0),(312,24,149,0),(313,20,150,0),(314,24,150,0),(315,20,151,0),(316,24,151,0),(317,20,152,0),(318,24,152,0),(319,20,153,0),(320,24,153,0),(321,20,154,0),(322,24,154,0),(323,20,155,0),(324,24,155,0),(325,20,156,0),(326,24,156,0),(327,27,157,0),(328,31,157,0),(329,27,158,0),(330,31,158,0),(331,27,159,0),(332,31,159,0),(333,20,160,0),(334,24,160,0),(335,20,161,0),(336,24,161,0),(337,20,162,0),(338,24,162,0),(339,27,163,0),(340,31,163,0),(341,27,164,0),(342,31,164,0),(343,27,165,0),(344,31,165,0),(345,27,166,0),(346,31,166,0),(347,27,167,0),(348,31,167,0),(349,27,168,0),(350,31,168,0),(351,27,169,0),(352,31,169,0),(353,27,170,0),(354,31,170,0),(355,27,171,0),(356,31,171,0),(357,27,172,0),(358,31,172,0),(359,27,173,0),(360,31,173,0),(361,27,174,0),(362,31,174,0),(363,20,175,0),(364,24,175,0),(365,20,176,0),(366,24,176,0),(367,20,177,0),(368,24,177,0),(369,20,178,0),(370,24,178,0),(371,20,179,0),(372,24,179,0),(373,20,180,0),(374,24,180,0),(375,20,181,0),(376,24,181,0),(377,20,182,0),(378,24,182,0),(379,20,183,0),(380,24,183,0),(381,20,184,0),(382,24,184,0),(383,20,185,0),(384,24,185,0),(385,27,186,0),(386,31,186,0),(387,27,187,0),(388,31,187,0),(389,27,188,0),(390,31,188,0),(391,27,189,0),(392,31,189,0),(393,27,190,0),(394,32,190,0),(395,27,191,0),(396,32,191,0),(397,27,192,0),(398,32,192,0),(399,27,193,0),(400,32,193,0),(401,27,194,0),(402,31,194,0),(403,27,195,0),(404,31,195,0),(405,27,196,0),(406,31,196,0),(407,20,197,0),(408,24,197,0),(409,20,198,0),(410,24,198,0),(411,20,199,0),(412,24,199,0),(413,20,200,0),(414,24,200,0),(415,20,201,0),(416,24,201,0),(417,20,202,0),(418,24,202,0),(419,27,203,0),(420,32,203,0),(421,27,204,0),(422,32,204,0),(423,27,205,0),(424,32,205,0),(425,27,206,0),(426,32,206,0),(427,27,207,0),(428,31,207,0),(429,27,208,0),(430,31,208,0),(431,27,209,0),(432,31,209,0),(433,20,210,0),(434,24,210,0),(435,20,211,0),(436,24,211,0),(437,20,212,0),(438,24,212,0),(439,20,213,0),(440,24,213,0),(441,20,214,0),(442,24,214,0),(443,20,215,0),(444,24,215,0),(445,20,216,0),(446,24,216,0),(447,27,217,0),(448,31,217,0),(449,27,218,0),(450,31,218,0),(451,27,219,0),(452,31,219,0),(453,27,220,0),(454,31,220,0),(455,27,221,0),(456,31,221,0),(457,20,222,0),(458,24,222,0),(459,20,223,0),(460,24,223,0),(461,20,224,0),(462,24,224,0),(463,20,225,0),(464,24,225,0),(465,20,226,0),(466,24,226,0),(467,20,227,0),(468,24,227,0),(469,27,228,0),(470,32,228,0),(471,27,229,0),(472,32,229,0),(473,27,230,0),(474,32,230,0),(475,35,231,0),(476,36,231,0),(477,35,232,0),(478,36,232,0),(479,35,233,0),(480,36,233,0),(481,35,234,0),(482,36,234,0),(483,27,235,0),(484,32,235,0),(485,27,236,0),(486,32,236,0),(487,27,237,0),(488,32,237,0),(489,27,238,0),(490,32,238,0),(491,20,239,0),(492,25,239,0),(493,20,240,0),(494,25,240,0),(495,20,241,0),(496,25,241,0),(497,20,242,0),(498,25,242,0),(499,20,243,0),(500,24,243,0),(501,20,244,0),(502,24,244,0),(503,20,245,0),(504,24,245,0),(505,20,246,0),(506,24,246,0),(507,20,247,0),(508,24,247,0),(509,20,248,0),(510,24,248,0),(511,20,249,0),(512,25,249,0),(513,20,250,0),(514,25,250,0),(515,20,251,0),(516,25,251,0),(517,20,252,0),(518,25,252,0),(519,20,253,0),(520,25,253,0),(521,20,254,0),(522,25,254,0),(523,20,255,0),(524,25,255,0),(525,20,256,0),(526,25,256,0),(527,27,257,0),(528,30,257,0),(529,27,258,0),(530,30,258,0),(531,27,259,0),(532,30,259,0),(533,27,260,0),(534,30,260,0),(535,20,261,0),(536,25,261,0),(537,20,262,0),(538,25,262,0),(539,20,263,0),(540,25,263,0),(541,20,264,0),(542,25,264,0),(543,20,265,0),(544,24,265,0),(545,20,266,0),(546,24,266,0),(547,20,267,0),(548,24,267,0),(549,20,268,0),(550,24,268,0),(551,20,269,0),(552,24,269,0),(553,27,272,0),(554,32,272,0),(555,27,273,0),(556,32,273,0),(557,27,274,0),(558,32,274,0),(559,27,275,0),(560,32,275,0),(561,27,276,0),(562,32,276,0),(563,20,277,0),(564,25,277,0),(565,20,278,0),(566,25,278,0),(567,20,279,0),(568,25,279,0),(569,20,280,0),(570,25,280,0),(571,20,281,0),(572,25,281,0),(573,20,282,0),(574,25,282,0),(575,20,283,0),(576,25,283,0),(577,20,284,0),(578,25,284,0),(579,35,285,0),(580,36,285,0),(581,35,286,0),(582,36,286,0),(583,20,287,0),(584,25,287,0),(585,20,288,0),(586,25,288,0),(587,20,289,0),(588,25,289,0),(589,27,290,0),(590,30,290,0),(591,27,291,0),(592,30,291,0),(593,27,292,0),(594,30,292,0),(595,27,293,0),(596,30,293,0),(597,27,294,0),(598,30,294,0),(599,27,295,0),(600,30,295,0),(601,20,296,0),(602,25,296,0),(603,20,297,0),(604,25,297,0),(605,20,298,0),(606,25,298,0),(607,20,299,0),(608,25,299,0),(609,27,300,0),(610,33,300,0),(611,27,301,0),(612,33,301,0),(613,27,302,0),(614,33,302,0),(615,27,303,0),(616,33,303,0),(617,27,304,0),(618,33,304,0),(619,27,305,0),(620,33,305,0),(621,20,306,0),(622,25,306,0),(623,20,307,0),(624,25,307,0),(625,20,308,0),(626,25,308,0),(627,27,309,0),(628,30,309,0),(629,27,310,0),(630,30,310,0),(631,27,311,0),(632,30,311,0),(633,27,312,0),(634,32,312,0),(635,27,313,0),(636,32,313,0),(637,27,314,0),(638,32,314,0),(639,27,315,0),(640,32,315,0),(641,35,316,0),(642,36,316,0),(643,35,317,0),(644,36,317,0),(645,27,318,0),(646,30,318,0),(647,27,319,0),(648,30,319,0),(649,27,320,0),(650,30,320,0),(651,27,321,0),(652,30,321,0),(653,27,322,0),(654,33,322,0),(655,27,323,0),(656,33,323,0),(657,27,324,0),(658,33,324,0),(659,27,325,0),(660,33,325,0),(661,27,326,0),(662,33,326,0),(663,27,327,0),(664,33,327,0),(665,35,328,0),(666,36,328,0),(667,35,329,0),(668,36,329,0),(669,20,330,0),(670,26,330,0),(671,20,331,0),(672,26,331,0),(673,20,332,0),(674,26,332,0),(675,20,333,0),(676,26,333,0),(677,27,334,0),(678,30,334,0),(679,27,335,0),(680,30,335,0),(681,27,336,0),(682,30,336,0),(683,27,337,0),(684,30,337,0),(685,35,338,0),(686,36,338,0),(687,35,339,0),(688,36,339,0),(689,35,340,0),(690,36,340,0),(691,20,341,0),(692,26,341,0),(693,20,342,0),(694,26,342,0),(695,20,343,0),(696,26,343,0),(697,20,344,0),(698,26,344,0),(699,20,345,0),(700,26,345,0),(701,20,346,0),(702,26,346,0),(703,20,347,0),(704,26,347,0),(705,20,348,0),(706,26,348,0),(707,20,349,0),(708,26,349,0),(709,27,350,0),(710,33,350,0),(711,27,351,0),(712,33,351,0),(713,27,352,0),(714,33,352,0),(715,27,353,0),(716,33,353,0),(717,27,354,0),(718,30,354,0),(719,27,355,0),(720,30,355,0),(721,27,356,0),(722,30,356,0),(723,27,357,0),(724,30,357,0),(725,20,358,0),(726,26,358,0),(727,20,359,0),(728,26,359,0),(729,20,360,0),(730,26,360,0),(731,20,361,0),(732,26,361,0),(733,20,362,0),(734,26,362,0),(735,20,363,0),(736,26,363,0),(737,27,364,0),(738,30,364,0),(739,27,365,0),(740,30,365,0),(741,27,366,0),(742,30,366,0),(743,27,367,0),(744,30,367,0),(745,27,368,0),(746,30,368,0),(747,27,369,0),(748,30,369,0),(749,27,370,0),(750,30,370,0),(751,27,371,0),(752,30,371,0),(753,27,372,0),(754,30,372,0),(755,27,373,0),(756,30,373,0),(757,27,374,0),(758,30,374,0),(759,27,375,0),(760,30,375,0),(761,35,376,0),(762,36,376,0),(763,35,377,0),(764,36,377,0),(765,35,378,0),(766,36,378,0),(767,35,379,0),(768,36,379,0),(769,27,380,0),(770,33,380,0),(771,27,381,0),(772,33,381,0),(773,27,382,0),(774,33,382,0),(775,27,383,0),(776,33,383,0),(777,27,384,0),(778,33,384,0),(779,20,385,0),(780,26,385,0),(781,20,386,0),(782,26,386,0),(783,20,387,0),(784,26,387,0),(785,27,388,0),(786,30,388,0),(787,27,389,0),(788,30,389,0),(789,27,390,0),(790,30,390,0),(791,20,391,0),(792,25,391,0),(793,20,392,0),(794,25,392,0),(795,20,393,0),(796,25,393,0),(797,20,394,0),(798,26,394,0),(799,20,395,0),(800,26,395,0),(801,20,396,0),(802,26,396,0),(803,27,397,0),(804,30,397,0),(805,27,398,0),(806,30,398,0),(807,27,399,0),(808,30,399,0),(809,27,400,0),(810,30,400,0),(811,27,401,0),(812,30,401,0),(813,27,402,0),(814,30,402,0),(815,27,403,0),(816,30,403,0),(817,27,404,0),(818,30,404,0),(819,27,405,0),(820,30,405,0),(821,27,406,0),(822,30,406,0),(823,27,407,0),(824,33,407,0),(825,27,408,0),(826,33,408,0),(827,27,409,0),(828,33,409,0),(829,27,410,0),(830,33,410,0),(831,27,411,0),(832,33,411,0),(833,20,412,0),(834,23,412,0),(835,20,413,0),(836,23,413,0),(837,20,414,0),(838,23,414,0),(839,20,415,0),(840,23,415,0),(841,27,416,0),(842,33,416,0),(843,27,417,0),(844,33,417,0),(845,27,418,0),(846,33,418,0),(847,27,419,0),(848,33,419,0),(849,27,420,0),(850,33,420,0),(851,27,421,0),(852,33,421,0),(853,27,422,0),(854,33,422,0),(855,27,423,0),(856,33,423,0),(857,27,424,0),(858,33,424,0),(859,27,425,0),(860,33,425,0),(861,20,426,0),(862,26,426,0),(863,20,427,0),(864,26,427,0),(865,20,428,0),(866,26,428,0),(867,27,429,0),(868,33,429,0),(869,27,430,0),(870,33,430,0),(871,27,431,0),(872,33,431,0),(873,27,432,0),(874,33,432,0),(875,27,433,0),(876,33,433,0),(877,27,434,0),(878,33,434,0),(879,27,435,0),(880,33,435,0),(881,27,436,0),(882,33,436,0),(883,20,437,0),(884,23,437,0),(885,20,438,0),(886,23,438,0),(887,20,439,0),(888,23,439,0),(889,20,440,0),(890,26,440,0),(891,20,441,0),(892,26,441,0),(893,20,442,0),(894,26,442,0),(895,27,443,0),(896,33,443,0),(897,27,444,0),(898,33,444,0),(899,27,445,0),(900,33,445,0),(901,27,446,0),(902,33,446,0),(903,27,447,0),(904,33,447,0),(905,27,448,0),(906,33,448,0),(907,27,449,0),(908,33,449,0),(909,27,450,0),(910,33,450,0),(911,27,451,0),(912,33,451,0),(913,27,452,0),(914,33,452,0),(915,27,453,0),(916,33,453,0),(917,27,454,0),(918,33,454,0),(919,20,455,0),(920,23,455,0),(921,20,456,0),(922,23,456,0),(923,20,457,0),(924,23,457,0),(925,20,458,0),(926,23,458,0),(927,20,459,0),(928,23,459,0),(929,20,460,0),(930,23,460,0),(931,20,461,0),(932,23,461,0),(933,20,462,0),(934,23,462,0),(935,20,463,0),(936,23,463,0),(937,20,464,0),(938,23,464,0),(939,20,465,0),(940,23,465,0),(941,20,466,0),(942,23,466,0),(943,20,467,0),(944,23,467,0),(945,20,468,0),(946,26,468,0),(947,20,469,0),(948,26,469,0),(949,20,470,0),(950,26,470,0),(951,20,471,0),(952,23,471,0),(953,20,472,0),(954,23,472,0),(955,20,473,0),(956,23,473,0),(957,20,474,0),(958,23,474,0),(959,20,475,0),(960,26,475,0),(961,20,476,0),(962,26,476,0),(963,20,477,0),(964,26,477,0),(965,20,478,0),(966,23,478,0),(967,20,479,0),(968,23,479,0),(969,20,480,0),(970,23,480,0),(971,20,481,0),(972,22,481,0),(973,20,482,0),(974,22,482,0),(975,20,483,0),(976,22,483,0),(977,20,484,0),(978,22,484,0),(979,20,485,0),(980,22,485,0),(981,20,486,0),(982,22,486,0),(983,20,487,0),(984,22,487,0),(985,20,488,0),(986,22,488,0),(987,20,489,0),(988,22,489,0),(989,20,490,0),(990,22,490,0),(991,20,491,0),(992,22,491,0),(993,20,492,0),(994,22,492,0),(995,20,493,0),(996,22,493,0),(997,20,494,0),(998,22,494,0),(999,27,495,0),(1000,29,495,0),(1001,27,496,0),(1002,29,496,0),(1003,27,497,0),(1004,29,497,0),(1005,27,498,0),(1006,29,498,0),(1007,27,499,0),(1008,29,499,0),(1009,27,500,0),(1010,29,500,0),(1011,27,501,0),(1012,29,501,0),(1013,27,502,0),(1014,29,502,0),(1015,27,503,0),(1016,29,503,0),(1017,27,504,0),(1018,29,504,0),(1019,27,505,0),(1020,29,505,0),(1021,27,506,0),(1022,29,506,0),(1023,27,507,0),(1024,29,507,0),(1025,27,508,0),(1026,29,508,0),(1027,27,509,0),(1028,29,509,0),(1029,27,510,0),(1030,28,510,0),(1031,27,511,0),(1032,28,511,0),(1033,27,512,0),(1034,28,512,0),(1035,27,513,0),(1036,28,513,0),(1037,27,514,0),(1038,28,514,0),(1039,27,515,0),(1040,28,515,0),(1041,35,516,0),(1042,38,516,0),(1043,27,517,0),(1044,28,517,0),(1045,27,518,0),(1046,28,518,0),(1047,27,519,0),(1048,28,519,0),(1049,27,520,0),(1050,28,520,0),(1051,27,521,0),(1052,28,521,0),(1053,27,522,0),(1054,28,522,0),(1055,35,523,0),(1056,38,523,0),(1057,27,524,0),(1058,28,524,0),(1059,27,525,0),(1060,28,525,0),(1061,27,526,0),(1062,28,526,0),(1063,27,528,0),(1064,28,528,0),(1065,27,529,0),(1066,28,529,0),(1067,27,530,0),(1068,28,530,0),(1069,35,531,0),(1070,38,531,0),(1071,27,532,0),(1072,28,532,0),(1073,27,533,0),(1074,28,533,0),(1075,27,534,0),(1076,28,534,0),(1077,27,535,0),(1078,28,535,0),(1079,27,536,0),(1080,28,536,0),(1081,27,537,0),(1082,28,537,0),(1083,27,538,0),(1084,28,538,0),(1085,27,539,0),(1086,28,539,0),(1087,27,540,0),(1088,28,540,0),(1089,35,541,0),(1090,38,541,0),(1091,27,542,0),(1092,28,542,0),(1093,27,543,0),(1094,28,543,0),(1095,35,544,0),(1096,37,544,0),(1097,35,545,0),(1098,37,545,0),(1099,35,546,0),(1100,37,546,0),(1101,35,547,0),(1102,37,547,0),(1103,35,548,0),(1104,37,548,0),(1105,20,549,0),(1106,24,549,0),(1107,20,550,0),(1108,24,550,0),(1109,20,551,0),(1110,24,551,0),(1111,20,552,0),(1112,24,552,0),(1113,20,553,0),(1114,24,553,0),(1115,20,554,0),(1116,24,554,0),(1117,20,555,0),(1118,24,555,0),(1119,20,556,0),(1120,24,556,0),(1121,20,557,0),(1122,24,557,0),(1123,20,558,0),(1124,24,558,0),(1125,20,559,0),(1126,24,559,0),(1127,20,560,0),(1128,24,560,0),(1129,20,561,0),(1130,24,561,0),(1131,20,562,0),(1132,24,562,0),(1133,20,563,0),(1134,24,563,0),(1135,20,564,0),(1136,24,564,0),(1137,20,565,0),(1138,24,565,0),(1139,20,566,0),(1140,24,566,0),(1141,20,567,0),(1142,24,567,0),(1143,20,568,0),(1144,24,568,0),(1145,20,569,0),(1146,24,569,0),(1147,20,570,0),(1148,24,570,0),(1149,20,571,0),(1150,24,571,0),(1151,20,572,0),(1152,24,572,0),(1153,20,573,0),(1154,24,573,0),(1155,20,574,0),(1156,24,574,0),(1157,20,575,0),(1158,24,575,0),(1159,20,576,0),(1160,24,576,0),(1161,20,577,0),(1162,24,577,0),(1163,20,578,0),(1164,24,578,0),(1165,20,579,0),(1166,24,579,0),(1167,20,580,0),(1168,24,580,0),(1169,20,581,0),(1170,24,581,0),(1171,20,582,0),(1172,24,582,0),(1173,20,583,0),(1174,24,583,0),(1175,20,584,0),(1176,24,584,0),(1177,20,585,0),(1178,24,585,0),(1179,20,586,0),(1180,24,586,0),(1181,20,587,0),(1182,24,587,0),(1183,20,588,0),(1184,24,588,0),(1185,20,589,0),(1186,24,589,0),(1187,20,590,0),(1188,24,590,0),(1189,20,591,0),(1190,24,591,0),(1191,20,592,0),(1192,24,592,0),(1193,20,593,0),(1194,24,593,0),(1195,20,594,0),(1196,24,594,0),(1197,20,595,0),(1198,24,595,0),(1199,20,596,0),(1200,24,596,0),(1201,20,597,0),(1202,24,597,0),(1203,20,598,0),(1204,24,598,0),(1205,20,599,0),(1206,24,599,0),(1207,20,600,0),(1208,24,600,0),(1209,20,601,0),(1210,24,601,0),(1211,20,602,0),(1212,24,602,0),(1213,20,603,0),(1214,24,603,0),(1215,20,604,0),(1216,24,604,0),(1217,20,605,0),(1218,24,605,0),(1219,20,606,0),(1220,24,606,0),(1221,20,607,0),(1222,24,607,0),(1223,20,608,0),(1224,24,608,0),(1225,20,609,0),(1226,24,609,0),(1227,20,610,0),(1228,24,610,0),(1229,20,611,0),(1230,24,611,0),(1231,20,612,0),(1232,24,612,0),(1233,20,613,0),(1234,24,613,0),(1235,20,614,0),(1236,24,614,0),(1237,20,615,0),(1238,24,615,0),(1239,20,616,0),(1240,24,616,0),(1241,20,617,0),(1242,24,617,0),(1243,20,618,0),(1244,24,618,0),(1245,20,619,0),(1246,24,619,0),(1247,20,620,0),(1248,24,620,0),(1249,20,621,0),(1250,24,621,0),(1251,20,622,0),(1252,24,622,0),(1253,20,623,0),(1254,24,623,0),(1255,20,624,0),(1256,24,624,0),(1257,20,625,0),(1258,24,625,0),(1259,20,626,0),(1260,24,626,0),(1261,20,627,0),(1262,24,627,0),(1263,20,628,0),(1264,24,628,0),(1265,20,629,0),(1266,24,629,0),(1267,20,630,0),(1268,24,630,0),(1269,20,631,0),(1270,24,631,0),(1271,20,632,0),(1272,24,632,0),(1273,20,633,0),(1274,24,633,0),(1275,20,634,0),(1276,24,634,0),(1277,20,635,0),(1278,24,635,0),(1279,20,636,0),(1280,24,636,0),(1281,20,637,0),(1282,24,637,0),(1283,20,638,0),(1284,24,638,0),(1285,20,639,0),(1286,24,639,0),(1287,20,640,0),(1288,24,640,0),(1289,20,641,0),(1290,24,641,0),(1291,20,642,0),(1292,24,642,0),(1293,20,643,0),(1294,24,643,0),(1295,20,644,0),(1296,24,644,0),(1297,20,645,0),(1298,24,645,0),(1299,20,646,0),(1300,24,646,0),(1301,20,647,0),(1302,24,647,0),(1303,20,648,0),(1304,24,648,0),(1305,20,649,0),(1306,24,649,0),(1307,20,650,0),(1308,24,650,0),(1309,20,651,0),(1310,24,651,0),(1311,20,652,0),(1312,24,652,0),(1313,20,653,0),(1314,24,653,0),(1315,20,654,0),(1316,24,654,0),(1317,20,655,0),(1318,24,655,0),(1319,20,656,0),(1320,24,656,0),(1321,20,657,0),(1322,24,657,0),(1323,20,658,0),(1324,24,658,0),(1325,20,659,0),(1326,24,659,0),(1327,20,660,0),(1328,24,660,0),(1329,20,661,0),(1330,24,661,0),(1331,20,662,0),(1332,24,662,0),(1333,20,663,0),(1334,24,663,0),(1335,20,664,0),(1336,24,664,0),(1337,20,665,0),(1338,24,665,0),(1339,20,666,0),(1340,24,666,0),(1341,20,667,0),(1342,24,667,0),(1343,20,668,0),(1344,24,668,0),(1345,20,669,0),(1346,24,669,0),(1347,20,670,0),(1348,24,670,0),(1349,20,671,0),(1350,24,671,0),(1351,20,672,0),(1352,24,672,0),(1353,20,673,0),(1354,24,673,0),(1355,20,674,0),(1356,24,674,0),(1357,20,675,0),(1358,24,675,0),(1359,20,676,0),(1360,24,676,0),(1361,20,677,0),(1362,24,677,0),(1363,20,678,0),(1364,24,678,0),(1365,20,679,0),(1366,24,679,0),(1367,20,680,0),(1368,24,680,0),(1369,20,681,0),(1370,24,681,0),(1371,20,682,0),(1372,24,682,0),(1373,20,683,0),(1374,24,683,0),(1375,20,684,0),(1376,24,684,0),(1377,20,685,0),(1378,24,685,0),(1379,20,686,0),(1380,24,686,0),(1381,20,687,0),(1382,24,687,0),(1383,20,688,0),(1384,24,688,0),(1385,20,689,0),(1386,24,689,0),(1387,20,690,0),(1388,24,690,0),(1389,20,691,0),(1390,24,691,0),(1391,20,692,0),(1392,24,692,0),(1393,20,693,0),(1394,24,693,0),(1395,20,694,0),(1396,24,694,0),(1397,20,695,0),(1398,24,695,0),(1399,20,696,0),(1400,24,696,0),(1401,20,697,0),(1402,24,697,0),(1403,20,698,0),(1404,24,698,0),(1405,20,699,0),(1406,24,699,0),(1407,20,700,0),(1408,24,700,0),(1409,20,701,0),(1410,24,701,0),(1411,20,702,0),(1412,24,702,0),(1413,20,703,0),(1414,24,703,0),(1415,20,704,0),(1416,24,704,0),(1417,20,705,0),(1418,24,705,0),(1419,20,706,0),(1420,24,706,0),(1421,20,707,0),(1422,24,707,0),(1423,20,708,0),(1424,24,708,0),(1425,20,709,0),(1426,24,709,0),(1427,20,710,0),(1428,24,710,0),(1429,20,711,0),(1430,24,711,0),(1431,20,712,0),(1432,24,712,0),(1433,20,713,0),(1434,24,713,0),(1435,20,714,0),(1436,25,714,0),(1437,20,715,0),(1438,25,715,0),(1439,20,716,0),(1440,25,716,0),(1441,20,717,0),(1442,25,717,0),(1443,20,718,0),(1444,25,718,0),(1445,20,719,0),(1446,25,719,0),(1447,20,720,0),(1448,25,720,0),(1449,20,721,0),(1450,25,721,0),(1451,20,722,0),(1452,25,722,0),(1453,20,723,0),(1454,25,723,0),(1455,20,724,0),(1456,25,724,0),(1457,20,725,0),(1458,25,725,0),(1459,20,726,0),(1460,25,726,0),(1461,20,727,0),(1462,25,727,0),(1463,20,728,0),(1464,25,728,0),(1465,20,729,0),(1466,25,729,0),(1467,20,730,0),(1468,25,730,0),(1469,20,731,0),(1470,25,731,0),(1471,20,732,0),(1472,25,732,0),(1473,20,733,0),(1474,25,733,0),(1475,20,734,0),(1476,24,734,0),(1477,20,735,0),(1478,24,735,0),(1479,20,736,0),(1480,24,736,0),(1481,20,737,0),(1482,24,737,0),(1483,20,738,0),(1484,24,738,0),(1485,20,739,0),(1486,24,739,0),(1487,20,740,0),(1488,24,740,0),(1489,20,741,0),(1490,24,741,0),(1491,20,742,0),(1492,24,742,0),(1493,20,743,0),(1494,24,743,0),(1495,20,744,0),(1496,24,744,0),(1497,20,745,0),(1498,24,745,0),(1499,20,746,0),(1500,24,746,0),(1501,20,747,0),(1502,24,747,0),(1503,20,748,0),(1504,24,748,0),(1505,20,749,0),(1506,25,749,0),(1507,20,750,0),(1508,25,750,0),(1509,20,751,0),(1510,25,751,0),(1511,20,752,0),(1512,25,752,0),(1513,20,753,0),(1514,25,753,0),(1515,20,754,0),(1516,25,754,0),(1517,20,755,0),(1518,25,755,0),(1519,20,756,0),(1520,25,756,0),(1521,20,757,0),(1522,25,757,0),(1523,20,758,0),(1524,25,758,0),(1525,20,759,0),(1526,25,759,0),(1527,20,760,0),(1528,25,760,0),(1529,20,761,0),(1530,25,761,0),(1531,20,762,0),(1532,25,762,0),(1533,20,763,0),(1534,25,763,0),(1535,20,764,0),(1536,25,764,0),(1537,20,765,0),(1538,25,765,0),(1539,20,766,0),(1540,25,766,0),(1541,20,767,0),(1542,25,767,0),(1543,20,768,0),(1544,25,768,0),(1545,20,769,0),(1546,25,769,0),(1547,20,770,0),(1548,25,770,0),(1549,20,771,0),(1550,25,771,0),(1551,20,772,0),(1552,25,772,0),(1553,20,773,0),(1554,25,773,0),(1555,20,774,0),(1556,25,774,0),(1557,20,775,0),(1558,25,775,0),(1559,20,776,0),(1560,25,776,0),(1561,20,777,0),(1562,25,777,0),(1563,20,778,0),(1564,25,778,0),(1565,20,779,0),(1566,25,779,0),(1567,20,780,0),(1568,25,780,0),(1569,20,781,0),(1570,25,781,0),(1571,20,782,0),(1572,25,782,0),(1573,20,783,0),(1574,25,783,0),(1575,20,784,0),(1576,25,784,0),(1577,20,785,0),(1578,25,785,0),(1579,20,786,0),(1580,25,786,0),(1581,20,787,0),(1582,25,787,0),(1583,20,788,0),(1584,25,788,0),(1585,20,789,0),(1586,25,789,0),(1587,20,790,0),(1588,25,790,0),(1589,20,791,0),(1590,25,791,0),(1591,20,792,0),(1592,25,792,0),(1593,20,793,0),(1594,25,793,0),(1595,20,794,0),(1596,25,794,0),(1597,20,795,0),(1598,25,795,0),(1599,20,796,0),(1600,25,796,0),(1601,20,797,0),(1602,25,797,0),(1603,20,798,0),(1604,25,798,0),(1605,20,799,0),(1606,25,799,0),(1607,20,800,0),(1608,25,800,0),(1609,20,801,0),(1610,25,801,0),(1611,20,802,0),(1612,25,802,0),(1613,20,803,0),(1614,25,803,0),(1615,20,804,0),(1616,25,804,0),(1617,20,805,0),(1618,25,805,0),(1619,20,806,0),(1620,25,806,0),(1621,20,807,0),(1622,25,807,0),(1623,20,808,0),(1624,25,808,0),(1625,20,809,0),(1626,25,809,0),(1627,20,810,0),(1628,25,810,0),(1629,20,811,0),(1630,25,811,0),(1631,20,812,0),(1632,25,812,0),(1633,20,813,0),(1634,25,813,0),(1635,20,814,0),(1636,25,814,0),(1637,20,815,0),(1638,25,815,0),(1639,20,816,0),(1640,25,816,0),(1641,20,817,0),(1642,25,817,0),(1643,20,818,0),(1644,25,818,0),(1645,20,819,0),(1646,25,819,0),(1647,20,820,0),(1648,25,820,0),(1649,20,821,0),(1650,25,821,0),(1651,20,822,0),(1652,25,822,0),(1653,20,823,0),(1654,25,823,0),(1655,20,824,0),(1656,22,824,0),(1657,20,825,0),(1658,22,825,0),(1659,20,826,0),(1660,22,826,0),(1661,20,827,0),(1662,22,827,0),(1663,20,828,0),(1664,22,828,0),(1665,20,829,0),(1666,22,829,0),(1667,20,830,0),(1668,22,830,0),(1669,20,831,0),(1670,22,831,0),(1671,20,832,0),(1672,22,832,0),(1673,20,833,0),(1674,22,833,0),(1675,20,834,0),(1676,22,834,0),(1677,20,835,0),(1678,22,835,0),(1679,20,836,0),(1680,22,836,0),(1681,20,837,0),(1682,22,837,0),(1683,20,838,0),(1684,22,838,0),(1685,20,839,0),(1686,22,839,0),(1687,20,840,0),(1688,22,840,0),(1689,20,841,0),(1690,22,841,0),(1691,20,842,0),(1692,22,842,0),(1693,20,843,0),(1694,22,843,0),(1695,20,844,0),(1696,25,844,0),(1697,20,845,0),(1698,25,845,0),(1699,20,846,0),(1700,25,846,0),(1701,20,847,0),(1702,25,847,0),(1703,20,848,0),(1704,25,848,0),(1705,20,849,0),(1706,25,849,0),(1707,20,850,0),(1708,25,850,0),(1709,20,851,0),(1710,25,851,0),(1711,20,852,0),(1712,25,852,0),(1713,20,853,0),(1714,25,853,0),(1715,20,854,0),(1716,25,854,0),(1717,20,855,0),(1718,25,855,0),(1719,20,856,0),(1720,25,856,0),(1721,20,857,0),(1722,25,857,0),(1723,20,858,0),(1724,25,858,0),(1725,20,859,0),(1726,25,859,0),(1727,20,860,0),(1728,25,860,0),(1729,20,861,0),(1730,25,861,0),(1731,20,862,0),(1732,25,862,0),(1733,20,863,0),(1734,25,863,0),(1735,20,864,0),(1736,25,864,0),(1737,20,865,0),(1738,25,865,0),(1739,20,866,0),(1740,25,866,0),(1741,20,867,0),(1742,25,867,0),(1743,20,868,0),(1744,25,868,0),(1745,20,869,0),(1746,25,869,0),(1747,20,870,0),(1748,25,870,0),(1749,20,871,0),(1750,25,871,0),(1751,20,872,0),(1752,25,872,0),(1753,20,873,0),(1754,25,873,0),(1755,20,874,0),(1756,25,874,0),(1757,20,875,0),(1758,25,875,0),(1759,20,876,0),(1760,25,876,0),(1761,20,877,0),(1762,25,877,0),(1763,20,878,0),(1764,25,878,0),(1765,20,879,0),(1766,25,879,0),(1767,20,880,0),(1768,25,880,0),(1769,20,881,0),(1770,25,881,0),(1771,20,882,0),(1772,25,882,0),(1773,20,883,0),(1774,25,883,0),(1775,20,884,0),(1776,25,884,0),(1777,20,885,0),(1778,25,885,0),(1779,20,886,0),(1780,25,886,0),(1781,20,887,0),(1782,25,887,0),(1783,20,888,0),(1784,25,888,0),(1785,20,889,0),(1786,25,889,0),(1787,20,890,0),(1788,25,890,0),(1789,20,891,0),(1790,25,891,0),(1791,20,892,0),(1792,25,892,0),(1793,20,893,0),(1794,25,893,0),(1795,20,894,0),(1796,25,894,0),(1797,20,895,0),(1798,25,895,0),(1799,20,896,0),(1800,25,896,0),(1801,20,897,0),(1802,25,897,0),(1803,20,898,0),(1804,25,898,0),(1805,20,899,0),(1806,25,899,0),(1807,20,900,0),(1808,25,900,0),(1809,20,901,0),(1810,25,901,0),(1811,20,902,0),(1812,25,902,0),(1813,20,903,0),(1814,25,903,0),(1815,20,904,0),(1816,22,904,0),(1817,20,905,0),(1818,22,905,0),(1819,20,906,0),(1820,22,906,0),(1821,20,907,0),(1822,22,907,0),(1823,20,908,0),(1824,22,908,0),(1825,20,909,0),(1826,22,909,0),(1827,20,910,0),(1828,22,910,0),(1829,20,911,0),(1830,22,911,0),(1831,20,912,0),(1832,22,912,0),(1833,20,913,0),(1834,22,913,0),(1835,20,914,0),(1836,22,914,0),(1837,20,915,0),(1838,22,915,0),(1855,20,924,0),(1856,26,924,0),(1857,20,925,0),(1858,26,925,0),(1859,20,926,0),(1860,26,926,0),(1861,20,927,0),(1862,26,927,0),(1863,20,928,0),(1864,26,928,0),(1865,20,929,0),(1866,26,929,0),(1867,20,930,0),(1868,26,930,0),(1869,20,931,0),(1870,26,931,0),(1871,20,932,0),(1872,26,932,0),(1873,20,933,0),(1874,26,933,0),(1875,20,934,0),(1876,26,934,0),(1877,20,935,0),(1878,26,935,0),(1879,20,936,0),(1880,26,936,0),(1881,20,937,0),(1882,26,937,0),(1883,20,938,0),(1884,26,938,0),(1885,20,939,0),(1886,26,939,0),(1887,20,940,0),(1888,26,940,0),(1889,20,941,0),(1890,26,941,0),(1891,20,942,0),(1892,22,942,0),(1893,20,943,0),(1894,22,943,0),(1895,20,944,0),(1896,22,944,0),(1897,20,945,0),(1898,22,945,0),(1899,20,946,0),(1900,22,946,0),(1901,20,947,0),(1902,22,947,0),(1903,20,948,0),(1904,24,948,0),(1905,20,949,0),(1906,24,949,0),(1907,20,950,0),(1908,24,950,0),(1909,20,951,0),(1910,24,951,0),(1911,20,952,0),(1912,24,952,0),(1913,20,953,0),(1914,24,953,0),(1915,20,954,0),(1916,24,954,0),(1917,20,955,0),(1918,24,955,0),(1919,20,956,0),(1920,24,956,0),(1921,20,957,0),(1922,24,957,0),(1923,20,958,0),(1924,24,958,0),(1925,20,959,0),(1926,24,959,0),(1951,20,972,0),(1952,24,972,0),(1953,20,973,0),(1954,24,973,0),(1955,20,974,0),(1956,24,974,0),(1957,20,975,0),(1958,24,975,0),(1959,20,976,0),(1960,24,976,0),(1961,20,977,0),(1962,24,977,0),(1963,20,978,0),(1964,24,978,0),(1965,20,979,0),(1966,24,979,0),(1967,20,980,0),(1968,24,980,0),(1969,20,981,0),(1970,24,981,0),(1971,20,982,0),(1972,24,982,0),(1973,20,983,0),(1974,24,983,0),(1975,20,984,0),(1976,24,984,0),(1977,20,985,0),(1978,24,985,0),(1979,20,986,0),(1980,24,986,0),(1981,20,987,0),(1982,24,987,0),(1983,20,988,0),(1984,24,988,0),(1985,20,989,0),(1986,24,989,0),(1987,20,990,0),(1988,24,990,0),(1989,20,991,0),(1990,24,991,0),(1991,20,992,0),(1992,24,992,0),(1993,20,993,0),(1994,24,993,0),(1995,20,994,0),(1996,24,994,0),(1997,20,995,0),(1998,24,995,0),(1999,20,996,0),(2000,24,996,0),(2001,20,997,0),(2002,24,997,0),(2003,20,998,0),(2004,24,998,0),(2005,20,999,0),(2006,24,999,0),(2007,20,1000,0),(2008,24,1000,0),(2009,20,1001,0),(2010,24,1001,0),(2011,20,1002,0),(2012,24,1002,0),(2013,20,1003,0),(2014,24,1003,0),(2015,20,1004,0),(2016,24,1004,0),(2017,20,1005,0),(2018,24,1005,0),(2019,20,1006,0),(2020,24,1006,0),(2021,20,1007,0),(2022,24,1007,0),(2023,20,1008,0),(2024,24,1008,0),(2025,20,1009,0),(2026,24,1009,0),(2027,20,1010,0),(2028,24,1010,0),(2029,20,1011,0),(2030,24,1011,0),(2031,20,1012,0),(2032,24,1012,0),(2033,20,1013,0),(2034,24,1013,0),(2035,20,1014,0),(2036,22,1014,0),(2037,20,1015,0),(2038,22,1015,0),(2039,20,1016,0),(2040,22,1016,0),(2041,20,1017,0),(2042,22,1017,0),(2043,20,1018,0),(2044,22,1018,0),(2045,20,1019,0),(2046,22,1019,0),(2047,20,1020,0),(2048,22,1020,0),(2049,20,1021,0),(2050,22,1021,0),(2051,20,1022,0),(2052,22,1022,0),(2053,20,1023,0),(2054,25,1023,0),(2055,20,1024,0),(2056,25,1024,0),(2057,20,1025,0),(2058,25,1025,0),(2059,20,1026,0),(2060,25,1026,0),(2061,20,1027,0),(2062,25,1027,0),(2063,20,1028,0),(2064,25,1028,0),(2065,20,1029,0),(2066,25,1029,0),(2067,20,1030,0),(2068,25,1030,0),(2069,20,1031,0),(2070,25,1031,0),(2071,20,1032,0),(2072,25,1032,0),(2073,20,1033,0),(2074,25,1033,0),(2075,20,1034,0),(2076,25,1034,0),(2077,20,1035,0),(2078,26,1035,0),(2079,20,1036,0),(2080,26,1036,0),(2081,20,1037,0),(2082,26,1037,0),(2083,20,1038,0),(2084,26,1038,0),(2085,20,1039,0),(2086,26,1039,0),(2087,20,1040,0),(2088,26,1040,0),(2089,20,1041,0),(2090,26,1041,0),(2091,20,1042,0),(2092,26,1042,0),(2093,20,1043,0),(2094,26,1043,0),(2095,20,1044,0),(2096,26,1044,0),(2097,20,1045,0),(2098,26,1045,0),(2099,20,1046,0),(2100,26,1046,0),(2101,20,1047,0),(2102,26,1047,0),(2103,20,1048,0),(2104,26,1048,0),(2105,20,1049,0),(2106,26,1049,0),(2107,20,1050,0),(2108,26,1050,0),(2109,20,1051,0),(2110,26,1051,0),(2111,20,1052,0),(2112,26,1052,0),(2113,20,1053,0),(2114,26,1053,0),(2115,20,1054,0),(2116,26,1054,0),(2117,20,1055,0),(2118,26,1055,0),(2119,20,1056,0),(2120,26,1056,0),(2121,20,1057,0),(2122,26,1057,0),(2123,20,1058,0),(2124,26,1058,0),(2125,20,1059,0),(2126,26,1059,0),(2127,20,1060,0),(2128,26,1060,0),(2129,20,1061,0),(2130,26,1061,0),(2131,20,1062,0),(2132,26,1062,0),(2133,20,1063,0),(2134,23,1063,0),(2135,20,1064,0),(2136,23,1064,0),(2137,20,1065,0),(2138,23,1065,0),(2139,20,1066,0),(2140,23,1066,0),(2141,20,1067,0),(2142,23,1067,0),(2143,20,1068,0),(2144,23,1068,0),(2145,20,1069,0),(2146,22,1069,0),(2147,20,1070,0),(2148,22,1070,0),(2149,20,1071,0),(2150,22,1071,0),(2151,20,1072,0),(2152,22,1072,0),(2153,20,1073,0),(2154,22,1073,0),(2155,20,1074,0),(2156,22,1074,0),(2157,20,1075,0),(2158,23,1075,0),(2159,20,1076,0),(2160,23,1076,0),(2161,20,1077,0),(2162,23,1077,0),(2163,20,1078,0),(2164,23,1078,0),(2165,20,1079,0),(2166,23,1079,0),(2167,20,1080,0),(2168,23,1080,0),(2169,20,1081,0),(2170,23,1081,0),(2171,20,1082,0),(2172,23,1082,0),(2173,20,1083,0),(2174,26,1083,0),(2175,20,1084,0),(2176,26,1084,0),(2177,20,1085,0),(2178,26,1085,0),(2179,20,1086,0),(2180,26,1086,0),(2181,20,1087,0),(2182,26,1087,0),(2183,20,1088,0),(2184,26,1088,0),(2185,20,1089,0),(2186,26,1089,0),(2187,20,1090,0),(2188,26,1090,0),(2189,20,1091,0),(2190,23,1091,0),(2191,20,1092,0),(2192,23,1092,0),(2193,20,1093,0),(2194,23,1093,0),(2195,20,1094,0),(2196,23,1094,0),(2197,20,1095,0),(2198,22,1095,0),(2199,20,1096,0),(2200,22,1096,0),(2201,20,1097,0),(2202,22,1097,0),(2203,20,1098,0),(2204,23,1098,0),(2205,20,1099,0),(2206,23,1099,0),(2207,20,1100,0),(2208,23,1100,0),(2209,20,1101,0),(2210,26,1101,0),(2211,20,1102,0),(2212,26,1102,0),(2213,20,1103,0),(2214,26,1103,0),(2215,20,1104,0),(2216,23,1104,0),(2217,20,1105,0),(2218,23,1105,0),(2219,20,1106,0),(2220,23,1106,0),(2221,20,1107,0),(2222,22,1107,0),(2223,20,1108,0),(2224,22,1108,0),(2225,20,1109,0),(2226,22,1109,0),(2227,20,1110,0),(2228,23,1110,0),(2229,20,1111,0),(2230,23,1111,0),(2231,20,1112,0),(2232,23,1112,0),(2233,20,1113,0),(2234,23,1113,0),(2235,20,1114,0),(2236,23,1114,0),(2237,20,1115,0),(2238,23,1115,0),(2239,20,1116,0),(2240,23,1116,0),(2241,20,1117,0),(2242,23,1117,0),(2243,20,1118,0),(2244,23,1118,0),(2245,20,1119,0),(2246,23,1119,0),(2247,20,1120,0),(2248,23,1120,0),(2249,20,1121,0),(2250,23,1121,0),(2251,20,1122,0),(2252,23,1122,0),(2253,20,1123,0),(2254,23,1123,0),(2255,20,1124,0),(2256,23,1124,0),(2257,20,1125,0),(2258,23,1125,0),(2259,20,1126,0),(2260,23,1126,0),(2261,20,1127,0),(2262,26,1127,0),(2263,20,1128,0),(2264,26,1128,0),(2265,20,1129,0),(2266,26,1129,0),(2267,20,1130,0),(2268,26,1130,0),(2269,20,1131,0),(2270,26,1131,0),(2271,20,1132,0),(2272,26,1132,0),(2273,20,1133,0),(2274,25,1133,0),(2275,20,1134,0),(2276,25,1134,0),(2277,20,1135,0),(2278,26,1135,0),(2279,20,1136,0),(2280,26,1136,0),(2281,20,1137,0),(2282,26,1137,0),(2283,27,1138,0),(2284,29,1138,0),(2285,27,1139,0),(2286,29,1139,0),(2287,27,1140,0),(2288,29,1140,0),(2289,27,1141,0),(2290,32,1141,0),(2291,27,1142,0),(2292,32,1142,0),(2293,27,1143,0),(2294,32,1143,0),(2295,27,1144,0),(2296,32,1144,0),(2297,27,1145,0),(2298,31,1145,0),(2299,27,1146,0),(2300,31,1146,0),(2301,27,1147,0),(2302,31,1147,0),(2303,27,1148,0),(2304,31,1148,0),(2305,27,1149,0),(2306,31,1149,0),(2307,27,1150,0),(2308,31,1150,0),(2309,27,1151,0),(2310,31,1151,0),(2311,27,1152,0),(2312,30,1152,0),(2313,27,1153,0),(2314,30,1153,0),(2315,27,1154,0),(2316,30,1154,0),(2317,27,1155,0),(2318,30,1155,0),(2319,27,1156,0),(2320,31,1156,0),(2321,27,1157,0),(2322,31,1157,0),(2323,27,1158,0),(2324,31,1158,0),(2325,27,1159,0),(2326,31,1159,0),(2327,27,1160,0),(2328,28,1160,0),(2329,27,1161,0),(2330,28,1161,0),(2331,27,1162,0),(2332,31,1162,0),(2333,27,1163,0),(2334,31,1163,0),(2335,27,1164,0),(2336,28,1164,0),(2337,27,1165,0),(2338,28,1165,0),(2339,27,1166,0),(2340,28,1166,0),(2341,27,1167,0),(2342,30,1167,0),(2343,27,1168,0),(2344,30,1168,0),(2345,27,1169,0),(2346,30,1169,0),(2347,27,1170,0),(2348,30,1170,0),(2349,27,1171,0),(2350,30,1171,0),(2351,27,1172,0),(2352,30,1172,0),(2353,27,1173,0),(2354,30,1173,0),(2355,27,1174,0),(2356,30,1174,0),(2357,27,1175,0),(2358,31,1175,0),(2359,27,1176,0),(2360,31,1176,0),(2361,27,1177,0),(2362,31,1177,0),(2363,27,1178,0),(2364,31,1178,0),(2365,27,1179,0),(2366,31,1179,0),(2367,27,1180,0),(2368,30,1180,0),(2369,27,1181,0),(2370,30,1181,0),(2371,27,1182,0),(2372,30,1182,0),(2373,27,1183,0),(2374,30,1183,0),(2375,27,1184,0),(2376,31,1184,0),(2377,27,1185,0),(2378,31,1185,0),(2379,27,1186,0),(2380,31,1186,0),(2381,27,1187,0),(2382,30,1187,0),(2383,27,1188,0),(2384,30,1188,0),(2385,27,1189,0),(2386,30,1189,0),(2387,27,1190,0),(2388,30,1190,0),(2389,27,1191,0),(2390,33,1191,0),(2391,27,1192,0),(2392,33,1192,0),(2393,27,1193,0),(2394,33,1193,0),(2395,27,1194,0),(2396,33,1194,0),(2397,27,1195,0),(2398,33,1195,0),(2399,27,1196,0),(2400,28,1196,0),(2401,27,1197,0),(2402,28,1197,0),(2403,27,1198,0),(2404,28,1198,0),(2405,27,1199,0),(2406,28,1199,0),(2407,27,1200,0),(2408,28,1200,0),(2409,27,1201,0),(2410,28,1201,0),(2411,27,1202,0),(2412,29,1202,0),(2413,27,1203,0),(2414,29,1203,0),(2415,27,1204,0),(2416,29,1204,0),(2417,27,1205,0),(2418,28,1205,0),(2419,27,1206,0),(2420,28,1206,0),(2421,27,1207,0),(2422,28,1207,0),(2423,27,1208,0),(2424,28,1208,0),(2425,27,1209,0),(2426,28,1209,0),(2427,27,1210,0),(2428,28,1210,0),(2429,27,1211,0),(2430,29,1211,0),(2431,27,1212,0),(2432,29,1212,0),(2433,27,1213,0),(2434,29,1213,0),(2435,27,1214,0),(2436,33,1214,0),(2437,27,1215,0),(2438,33,1215,0),(2439,27,1216,0),(2440,33,1216,0),(2441,27,1217,0),(2442,33,1217,0),(2443,27,1218,0),(2444,33,1218,0),(2445,27,1219,0),(2446,31,1219,0),(2447,27,1220,0),(2448,31,1220,0),(2449,27,1221,0),(2450,31,1221,0),(2451,27,1222,0),(2452,33,1222,0),(2453,27,1223,0),(2454,33,1223,0),(2455,27,1224,0),(2456,33,1224,0),(2457,27,1225,0),(2458,33,1225,0),(2459,27,1226,0),(2460,33,1226,0),(2461,27,1227,0),(2462,33,1227,0),(2463,27,1228,0),(2464,30,1228,0),(2465,27,1229,0),(2466,30,1229,0),(2467,27,1230,0),(2468,30,1230,0),(2469,27,1231,0),(2470,28,1231,0),(2471,27,1232,0),(2472,28,1232,0),(2473,27,1233,0),(2474,28,1233,0),(2475,27,1234,0),(2476,30,1234,0),(2477,27,1235,0),(2478,30,1235,0),(2479,27,1236,0),(2480,30,1236,0),(2481,27,1237,0),(2482,30,1237,0),(2483,27,1238,0),(2484,32,1238,0),(2485,27,1239,0),(2486,32,1239,0),(2487,27,1240,0),(2488,32,1240,0),(2489,27,1241,0),(2490,32,1241,0),(2491,27,1242,0),(2492,32,1242,0),(2493,27,1243,0),(2494,32,1243,0),(2495,27,1244,0),(2496,32,1244,0),(2497,27,1245,0),(2498,32,1245,0),(2499,27,1246,0),(2500,32,1246,0),(2501,27,1247,0),(2502,33,1247,0),(2503,27,1248,0),(2504,33,1248,0),(2505,27,1249,0),(2506,33,1249,0),(2507,27,1250,0),(2508,33,1250,0),(2509,27,1251,0),(2510,33,1251,0),(2511,27,1252,0),(2512,33,1252,0),(2513,27,1253,0),(2514,33,1253,0),(2515,27,1254,0),(2516,33,1254,0),(2517,27,1255,0),(2518,33,1255,0),(2519,27,1256,0),(2520,33,1256,0),(2521,27,1257,0),(2522,32,1257,0),(2523,27,1258,0),(2524,32,1258,0),(2525,27,1259,0),(2526,32,1259,0),(2527,27,1260,0),(2528,32,1260,0),(2529,27,1261,0),(2530,33,1261,0),(2531,27,1262,0),(2532,33,1262,0),(2533,27,1263,0),(2534,33,1263,0),(2535,27,1264,0),(2536,33,1264,0),(2537,27,1265,0),(2538,33,1265,0),(2539,27,1266,0),(2540,33,1266,0),(2541,27,1267,0),(2542,33,1267,0),(2543,27,1268,0),(2544,33,1268,0),(2545,27,1269,0),(2546,33,1269,0),(2547,27,1270,0),(2548,33,1270,0),(2549,27,1271,0),(2550,33,1271,0),(2551,27,1272,0),(2552,33,1272,0),(2553,27,1273,0),(2554,33,1273,0),(2555,27,1274,0),(2556,33,1274,0),(2557,27,1275,0),(2558,33,1275,0),(2559,27,1276,0),(2560,33,1276,0),(2561,27,1277,0),(2562,33,1277,0),(2563,27,1278,0),(2564,33,1278,0),(2565,27,1279,0),(2566,33,1279,0),(2567,27,1280,0),(2568,32,1280,0),(2569,27,1281,0),(2570,32,1281,0),(2571,27,1282,0),(2572,32,1282,0),(2573,27,1283,0),(2574,32,1283,0),(2575,27,1284,0),(2576,30,1284,0),(2577,27,1285,0),(2578,30,1285,0),(2579,27,1286,0),(2580,30,1286,0),(2581,27,1287,0),(2582,30,1287,0),(2583,27,1288,0),(2584,30,1288,0),(2585,27,1289,0),(2586,30,1289,0),(2587,27,1290,0),(2588,31,1290,0),(2589,27,1291,0),(2590,31,1291,0),(2591,27,1292,0),(2592,31,1292,0),(2593,27,1293,0),(2594,32,1293,0),(2595,27,1294,0),(2596,32,1294,0),(2597,27,1295,0),(2598,32,1295,0),(2599,27,1296,0),(2600,28,1296,0),(2601,27,1297,0),(2602,28,1297,0),(2603,27,1298,0),(2604,28,1298,0),(2605,27,1299,0),(2606,28,1299,0),(2607,27,1300,0),(2608,28,1300,0),(2609,27,1301,0),(2610,28,1301,0),(2611,27,1302,0),(2612,28,1302,0),(2613,27,1303,0),(2614,28,1303,0),(2615,27,1304,0),(2616,28,1304,0),(2617,27,1305,0),(2618,31,1305,0),(2619,27,1306,0),(2620,31,1306,0),(2621,27,1307,0),(2622,31,1307,0),(2623,35,1308,0),(2624,38,1308,0),(2625,35,1309,0),(2626,36,1309,0),(2627,35,1310,0),(2628,36,1310,0),(2629,35,1311,0),(2630,37,1311,0),(2631,35,1312,0),(2632,36,1312,0),(2633,35,1313,0),(2634,36,1313,0),(2635,35,1314,0),(2636,37,1314,0),(2637,35,1315,0),(2638,36,1315,0),(2639,35,1316,0),(2640,36,1316,0),(2641,35,1317,0),(2642,37,1317,0),(2643,35,1318,0),(2644,37,1318,0),(2645,35,1319,0),(2646,37,1319,0),(2647,35,1320,0),(2648,38,1320,0),(2649,35,1321,0),(2650,38,1321,0),(2651,35,1322,0),(2652,36,1322,0),(2653,35,1323,0),(2654,36,1323,0),(2655,35,1324,0),(2656,36,1324,0),(2657,35,1325,0),(2658,36,1325,0),(2659,35,1326,0),(2660,36,1326,0),(2661,35,1327,0),(2662,36,1327,0),(2663,35,1328,0),(2664,36,1328,0),(2665,35,1329,0),(2666,36,1329,0),(2667,35,1330,0),(2668,36,1330,0),(2669,35,1331,0),(2670,38,1331,0),(2671,20,1333,0),(2672,22,1333,0),(2673,20,1334,0),(2674,22,1334,0),(2675,20,1335,0),(2676,22,1335,0),(2677,20,1336,0),(2678,22,1336,0),(2679,20,1337,0),(2680,22,1337,0),(2681,20,1338,0),(2682,22,1338,0),(2683,20,1339,0),(2684,22,1339,0),(2685,20,1340,0),(2686,22,1340,0),(2687,20,1341,0),(2688,22,1341,0),(2691,20,1345,0),(2692,23,1345,0),(2693,20,1346,0),(2694,23,1346,0),(2695,20,1347,0),(2696,23,1347,0),(2697,20,1348,0),(2698,23,1348,0),(2699,20,1349,0),(2700,23,1349,0),(2701,20,1350,0),(2702,23,1350,0),(2703,20,1351,0),(2704,23,1351,0),(2705,20,1352,0),(2706,24,1352,0),(2707,20,1353,0),(2708,24,1353,0),(2709,20,1354,0),(2710,24,1354,0),(2711,20,1355,0),(2712,24,1355,0),(2713,20,1356,0),(2714,24,1356,0),(2715,20,1357,0),(2716,24,1357,0),(2717,20,1358,0),(2718,24,1358,0),(2719,20,1359,0),(2720,24,1359,0),(2721,20,1360,0),(2722,24,1360,0),(2723,20,1361,0),(2724,24,1361,0),(2725,20,1362,0),(2726,24,1362,0),(2727,20,1363,0),(2728,24,1363,0),(2729,20,1364,0),(2730,24,1364,0),(2731,20,1365,0),(2732,24,1365,0),(2733,20,1366,0),(2734,24,1366,0),(2735,20,1367,0),(2736,24,1367,0),(2737,20,1368,0),(2738,24,1368,0),(2739,20,1369,0),(2740,24,1369,0),(2741,20,1370,0),(2742,24,1370,0),(2743,20,1371,0),(2744,24,1371,0),(2745,20,1372,0),(2746,24,1372,0),(2747,20,1373,0),(2748,24,1373,0),(2749,20,1374,0),(2750,24,1374,0),(2751,20,1375,0),(2752,24,1375,0),(2753,20,1376,0),(2754,24,1376,0),(2755,20,1377,0),(2756,24,1377,0),(2757,20,1378,0),(2758,24,1378,0),(2759,20,1379,0),(2760,24,1379,0),(2761,20,1380,0),(2762,24,1380,0),(2763,20,1381,0),(2764,24,1381,0),(2767,20,1383,0),(2768,24,1383,0),(2769,20,1384,0),(2770,24,1384,0),(2771,20,1385,0),(2772,24,1385,0),(2773,20,1386,0),(2774,24,1386,0),(2775,20,1387,0),(2776,24,1387,0),(2777,20,1388,0),(2778,24,1388,0),(2779,20,1389,0),(2780,24,1389,0),(2781,20,1390,0),(2782,24,1390,0),(2783,20,1391,0),(2784,24,1391,0),(2785,20,1392,0),(2786,24,1392,0),(2787,20,1393,0),(2788,24,1393,0),(2789,20,1394,0),(2790,24,1394,0),(2791,20,1395,0),(2792,24,1395,0),(2793,20,1396,0),(2794,24,1396,0),(2795,20,1397,0),(2796,24,1397,0),(2797,20,1398,0),(2798,24,1398,0),(2799,20,1399,0),(2800,24,1399,0),(2801,20,1400,0),(2802,24,1400,0),(2803,20,1401,0),(2804,24,1401,0),(2805,20,1402,0),(2806,24,1402,0),(2807,20,1403,0),(2808,24,1403,0),(2809,20,1404,0),(2810,24,1404,0),(2811,20,1405,0),(2812,24,1405,0),(2813,20,1406,0),(2814,24,1406,0),(2815,20,1407,0),(2816,24,1407,0),(2817,20,1408,0),(2818,24,1408,0),(2819,20,1409,0),(2820,24,1409,0),(2821,20,1410,0),(2822,24,1410,0),(2823,20,1411,0),(2824,24,1411,0),(2825,20,1412,0),(2826,24,1412,0),(2827,20,1413,0),(2828,24,1413,0),(2829,20,1414,0),(2830,23,1414,0),(2831,20,1415,0),(2832,23,1415,0),(2833,20,1416,0),(2834,23,1416,0),(2835,20,1417,0),(2836,23,1417,0),(2837,20,1418,0),(2838,23,1418,0),(2839,20,1419,0),(2840,23,1419,0),(2841,20,1420,0),(2842,24,1420,0),(2843,20,1421,0),(2844,24,1421,0),(2845,20,1422,0),(2846,24,1422,0),(2847,20,1423,0),(2848,24,1423,0),(2849,20,1424,0),(2850,24,1424,0),(2851,20,1425,0),(2852,24,1425,0),(2853,20,1426,0),(2854,24,1426,0),(2855,20,1427,0),(2856,24,1427,0),(2857,20,1428,0),(2858,24,1428,0),(2859,20,1429,0),(2860,24,1429,0),(2861,20,1430,0),(2862,24,1430,0),(2863,20,1431,0),(2864,24,1431,0),(2865,20,1432,0),(2866,24,1432,0),(2867,20,1433,0),(2868,24,1433,0),(2869,20,1434,0),(2870,24,1434,0),(2871,20,1435,0),(2872,24,1435,0),(2873,20,1436,0),(2874,24,1436,0),(2875,20,1437,0),(2876,24,1437,0),(2877,20,1438,0),(2878,24,1438,0),(2879,20,1439,0),(2880,24,1439,0),(2881,20,1440,0),(2882,24,1440,0),(2883,20,1441,0),(2884,24,1441,0),(2885,20,1442,0),(2886,24,1442,0),(2887,20,1443,0),(2888,24,1443,0),(2889,20,1444,0),(2890,24,1444,0),(2891,20,1445,0),(2892,24,1445,0),(2893,20,1446,0),(2894,24,1446,0),(2895,20,1447,0),(2896,24,1447,0),(2897,20,1448,0),(2898,24,1448,0),(2899,20,1449,0),(2900,24,1449,0),(2901,20,1450,0),(2902,24,1450,0),(2903,20,1451,0),(2904,24,1451,0),(2905,20,1452,0),(2906,24,1452,0),(2907,20,1453,0),(2908,24,1453,0),(2909,20,1454,0),(2910,24,1454,0),(2911,20,1455,0),(2912,24,1455,0),(2913,20,1456,0),(2914,23,1456,0),(2915,20,1457,0),(2916,23,1457,0),(2917,20,1458,0),(2918,23,1458,0),(2919,20,1459,0),(2920,23,1459,0),(2921,20,1460,0),(2922,23,1460,0),(2923,20,1461,0),(2924,23,1461,0),(2925,20,1462,0),(2926,23,1462,0),(2927,20,1463,0),(2928,23,1463,0),(2929,20,1464,0),(2930,23,1464,0),(2931,20,1465,0),(2932,24,1465,0),(2933,20,1466,0),(2934,24,1466,0),(2935,20,1467,0),(2936,24,1467,0),(2937,20,1468,0),(2938,24,1468,0),(2939,20,1469,0),(2940,24,1469,0),(2941,20,1470,0),(2942,24,1470,0),(2943,20,1471,0),(2944,24,1471,0),(2945,20,1472,0),(2946,24,1472,0),(2947,20,1473,0),(2948,24,1473,0),(2949,20,1474,0),(2950,24,1474,0),(2951,20,1475,0),(2952,24,1475,0),(2953,20,1476,0),(2954,24,1476,0),(2955,20,1477,0),(2956,24,1477,0),(2957,20,1478,0),(2958,24,1478,0),(2959,20,1479,0),(2960,24,1479,0),(2961,20,1480,0),(2962,24,1480,0),(2963,20,1481,0),(2964,24,1481,0),(2965,20,1482,0),(2966,24,1482,0),(2967,20,1483,0),(2968,24,1483,0),(2969,20,1484,0),(2970,24,1484,0),(2971,20,1485,0),(2972,24,1485,0),(2973,20,1486,0),(2974,24,1486,0),(2975,20,1487,0),(2976,24,1487,0),(2977,20,1488,0),(2978,24,1488,0),(2979,20,1489,0),(2980,24,1489,0),(2981,20,1490,0),(2982,24,1490,0),(2983,20,1491,0),(2984,24,1491,0),(2985,20,1492,0),(2986,24,1492,0),(2987,20,1493,0),(2988,24,1493,0),(2989,20,1494,0),(2990,24,1494,0),(2991,20,1495,0),(2992,24,1495,0),(2993,20,1496,0),(2994,24,1496,0),(2995,20,1497,0),(2996,24,1497,0),(2997,20,1498,0),(2998,24,1498,0),(2999,20,1499,0),(3000,24,1499,0),(3001,20,1500,0),(3002,24,1500,0),(3003,20,1501,0),(3004,24,1501,0),(3005,20,1502,0),(3006,24,1502,0),(3007,20,1503,0),(3008,24,1503,0),(3009,20,1504,0),(3010,24,1504,0),(3011,20,1505,0),(3012,24,1505,0),(3013,20,1506,0),(3014,24,1506,0),(3015,20,1507,0),(3016,24,1507,0),(3017,20,1508,0),(3018,24,1508,0),(3019,20,1509,0),(3020,24,1509,0),(3021,20,1510,0),(3022,24,1510,0),(3023,20,1511,0),(3024,24,1511,0),(3025,20,1512,0),(3026,24,1512,0),(3027,20,1513,0),(3028,24,1513,0),(3029,20,1514,0),(3030,24,1514,0),(3031,20,1515,0),(3032,24,1515,0),(3033,20,1516,0),(3034,24,1516,0),(3035,20,1517,0),(3036,24,1517,0),(3037,20,1518,0),(3038,24,1518,0),(3039,20,1519,0),(3040,24,1519,0),(3041,20,1520,0),(3042,24,1520,0),(3043,20,1521,0),(3044,24,1521,0),(3045,20,1522,0),(3046,24,1522,0),(3047,20,1523,0),(3048,24,1523,0),(3049,20,1524,0),(3050,24,1524,0),(3051,20,1525,0),(3052,24,1525,0),(3053,20,1526,0),(3054,24,1526,0),(3055,20,1527,0),(3056,23,1527,0),(3057,20,1528,0),(3058,23,1528,0),(3059,20,1529,0),(3060,23,1529,0),(3061,20,1530,0),(3062,23,1530,0),(3063,20,1531,0),(3064,23,1531,0),(3065,20,1532,0),(3066,23,1532,0),(3067,20,1533,0),(3068,23,1533,0),(3069,20,1534,0),(3070,23,1534,0),(3071,20,1535,0),(3072,23,1535,0),(3073,20,1536,0),(3074,24,1536,0),(3075,20,1537,0),(3076,24,1537,0),(3077,20,1538,0),(3078,24,1538,0),(3079,20,1539,0),(3080,24,1539,0),(3081,20,1540,0),(3082,24,1540,0),(3083,20,1541,0),(3084,24,1541,0),(3085,20,1542,0),(3086,24,1542,0),(3087,20,1543,0),(3088,24,1543,0),(3089,20,1544,0),(3090,24,1544,0),(3091,20,1545,0),(3092,24,1545,0),(3093,20,1546,0),(3094,24,1546,0),(3095,20,1547,0),(3096,24,1547,0),(3097,20,1548,0),(3098,24,1548,0),(3099,20,1549,0),(3100,24,1549,0),(3101,20,1550,0),(3102,24,1550,0),(3103,20,1551,0),(3104,24,1551,0),(3105,20,1552,0),(3106,24,1552,0),(3107,20,1553,0),(3108,24,1553,0),(3109,20,1554,0),(3110,24,1554,0),(3111,20,1555,0),(3112,24,1555,0),(3113,20,1556,0),(3114,24,1556,0),(3115,20,1557,0),(3116,24,1557,0),(3117,20,1558,0),(3118,24,1558,0),(3119,20,1559,0),(3120,24,1559,0),(3121,20,1560,0),(3122,24,1560,0),(3123,20,1561,0),(3124,24,1561,0),(3125,20,1562,0),(3126,22,1562,0),(3127,20,1563,0),(3128,22,1563,0),(3129,20,1564,0),(3130,22,1564,0),(3131,20,1565,0),(3132,22,1565,0),(3133,20,1566,0),(3134,22,1566,0),(3135,20,1567,0),(3136,22,1567,0),(3137,20,1568,0),(3138,22,1568,0),(3139,20,1569,0),(3140,23,1569,0),(3141,20,1570,0),(3142,23,1570,0),(3143,20,1571,0),(3144,23,1571,0),(3145,20,1572,0),(3146,23,1572,0),(3147,20,1573,0),(3148,25,1573,0),(3149,20,1574,0),(3150,25,1574,0),(3151,20,1575,0),(3152,23,1575,0),(3153,20,1576,0),(3154,25,1576,0),(3155,20,1577,0),(3156,25,1577,0),(3157,20,1578,0),(3158,25,1578,0),(3159,20,1579,0),(3160,23,1579,0),(3161,20,1580,0),(3162,25,1580,0),(3163,20,1581,0),(3164,25,1581,0),(3165,20,1582,0),(3166,25,1582,0),(3167,20,1583,0),(3168,23,1583,0),(3169,20,1584,0),(3170,25,1584,0),(3171,20,1585,0),(3172,25,1585,0),(3173,20,1586,0),(3174,25,1586,0),(3175,20,1587,0),(3176,25,1587,0),(3177,20,1588,0),(3178,25,1588,0),(3179,20,1589,0),(3180,25,1589,0),(3181,20,1590,0),(3182,25,1590,0),(3183,20,1591,0),(3184,25,1591,0),(3185,20,1592,0),(3186,25,1592,0),(3187,20,1593,0),(3188,25,1593,0),(3189,20,1594,0),(3190,25,1594,0),(3191,20,1595,0),(3192,25,1595,0),(3193,20,1596,0),(3194,25,1596,0),(3195,20,1597,0),(3196,24,1597,0),(3197,20,1598,0),(3198,26,1598,0),(3199,20,1599,0),(3200,26,1599,0),(3201,20,1600,0),(3202,26,1600,0),(3203,20,1601,0),(3204,26,1601,0),(3205,20,1602,0),(3206,26,1602,0),(3207,20,1603,0),(3208,26,1603,0),(3209,20,1604,0),(3210,26,1604,0),(3211,20,1605,0),(3212,24,1605,0),(3213,20,1606,0),(3214,24,1606,0),(3215,20,1607,0),(3216,24,1607,0),(3217,20,1608,0),(3218,24,1608,0),(3219,20,1609,0),(3220,24,1609,0),(3221,20,1610,0),(3222,24,1610,0),(3223,20,1611,0),(3224,24,1611,0),(3225,20,1612,0),(3226,24,1612,0),(3227,20,1613,0),(3228,24,1613,0),(3229,20,1614,0),(3230,24,1614,0),(3231,20,1615,0),(3232,24,1615,0),(3233,20,1616,0),(3234,24,1616,0),(3235,20,1617,0),(3236,24,1617,0),(3237,20,1618,0),(3238,24,1618,0),(3239,20,1619,0),(3240,24,1619,0),(3241,20,1620,0),(3242,26,1620,0),(3243,20,1621,0),(3244,26,1621,0),(3245,20,1622,0),(3246,26,1622,0),(3247,20,1623,0),(3248,26,1623,0),(3249,20,1624,0),(3250,26,1624,0),(3251,20,1625,0),(3252,26,1625,0),(3253,20,1626,0),(3254,26,1626,0),(3255,20,1627,0),(3256,26,1627,0),(3257,20,1628,0),(3258,26,1628,0),(3259,20,1629,0),(3260,26,1629,0),(3261,20,1630,0),(3262,26,1630,0),(3263,20,1631,0),(3264,24,1631,0),(3265,20,1632,0),(3266,24,1632,0),(3267,20,1633,0),(3268,24,1633,0),(3269,20,1634,0),(3270,24,1634,0),(3271,20,1635,0),(3272,24,1635,0),(3273,20,1636,0),(3274,24,1636,0),(3275,20,1637,0),(3276,24,1637,0),(3277,20,1638,0),(3278,24,1638,0),(3279,20,1639,0),(3280,24,1639,0),(3281,20,1640,0),(3282,24,1640,0),(3283,20,1641,0),(3284,24,1641,0),(3285,20,1642,0),(3286,24,1642,0),(3287,20,1643,0),(3288,24,1643,0),(3289,20,1644,0),(3290,23,1644,0),(3291,20,1645,0),(3292,23,1645,0),(3293,20,1646,0),(3294,23,1646,0),(3295,20,1647,0),(3296,23,1647,0),(3297,20,1648,0),(3298,23,1648,0),(3299,20,1649,0),(3300,23,1649,0),(3301,20,1650,0),(3302,23,1650,0),(3303,20,1651,0),(3304,23,1651,0),(3305,20,1652,0),(3306,23,1652,0),(3307,20,1653,0),(3308,23,1653,0),(3309,20,1654,0),(3310,23,1654,0),(3311,20,1655,0),(3312,23,1655,0),(3313,20,1656,0),(3314,23,1656,0),(3315,20,1657,0),(3316,25,1657,0),(3317,20,1658,0),(3318,25,1658,0),(3319,20,1659,0),(3320,25,1659,0),(3321,20,1660,0),(3322,25,1660,0),(3323,20,1661,0),(3324,25,1661,0),(3325,20,1662,0),(3326,25,1662,0),(3327,20,1663,0),(3328,25,1663,0),(3329,20,1664,0),(3330,25,1664,0),(3331,20,1665,0),(3332,25,1665,0),(3333,20,1666,0),(3334,25,1666,0),(3335,20,1667,0),(3336,25,1667,0),(3337,20,1668,0),(3338,25,1668,0),(3339,20,1669,0),(3340,25,1669,0),(3341,20,1670,0),(3342,25,1670,0),(3343,20,1671,0),(3344,25,1671,0),(3345,20,1672,0),(3346,25,1672,0),(3347,20,1673,0),(3348,25,1673,0),(3349,20,1674,0),(3350,25,1674,0),(3351,20,1675,0),(3352,25,1675,0),(3353,20,1676,0),(3354,25,1676,0),(3355,20,1677,0),(3356,25,1677,0),(3357,20,1678,0),(3358,25,1678,0),(3359,20,1679,0),(3360,25,1679,0),(3361,20,1680,0),(3362,25,1680,0),(3363,20,1681,0),(3364,25,1681,0),(3365,20,1682,0),(3366,25,1682,0),(3367,20,1683,0),(3368,25,1683,0),(3369,20,1684,0),(3370,25,1684,0),(3371,20,1685,0),(3372,25,1685,0),(3373,20,1686,0),(3374,25,1686,0),(3375,20,1687,0),(3376,25,1687,0),(3377,20,1688,0),(3378,25,1688,0),(3379,20,1689,0),(3380,25,1689,0),(3381,20,1690,0),(3382,25,1690,0),(3385,20,1692,0),(3386,25,1692,0),(3387,20,1693,0),(3388,25,1693,0),(3389,20,1694,0),(3390,25,1694,0),(3391,20,1695,0),(3392,25,1695,0),(3393,20,1696,0),(3394,25,1696,0),(3395,20,1697,0),(3396,25,1697,0),(3397,20,1698,0),(3398,25,1698,0),(3399,20,1699,0),(3400,25,1699,0),(3401,20,1700,0),(3402,22,1700,0),(3403,20,1701,0),(3404,22,1701,0),(3405,20,1702,0),(3406,22,1702,0),(3407,20,1703,0),(3408,22,1703,0),(3409,20,1704,0),(3410,22,1704,0),(3411,20,1705,0),(3412,22,1705,0),(3413,20,1706,0),(3414,22,1706,0),(3415,20,1707,0),(3416,22,1707,0),(3417,20,1708,0),(3418,22,1708,0),(3419,20,1709,0),(3420,22,1709,0),(3421,20,1710,0),(3422,25,1710,0),(3423,20,1711,0),(3424,25,1711,0),(3425,20,1712,0),(3426,25,1712,0),(3427,20,1713,0),(3428,25,1713,0),(3429,20,1714,0),(3430,25,1714,0),(3431,20,1715,0),(3432,25,1715,0),(3433,20,1716,0),(3434,25,1716,0),(3435,20,1717,0),(3436,25,1717,0),(3437,20,1718,0),(3438,25,1718,0),(3439,20,1719,0),(3440,25,1719,0),(3441,20,1720,0),(3442,25,1720,0),(3443,20,1721,0),(3444,25,1721,0),(3445,20,1722,0),(3446,25,1722,0),(3447,20,1723,0),(3448,25,1723,0),(3449,20,1724,0),(3450,25,1724,0),(3451,20,1725,0),(3452,25,1725,0),(3453,20,1726,0),(3454,23,1726,0),(3455,20,1727,0),(3456,23,1727,0),(3457,20,1728,0),(3458,23,1728,0),(3459,20,1729,0),(3460,23,1729,0),(3461,20,1730,0),(3462,23,1730,0),(3463,20,1731,0),(3464,23,1731,0),(3465,20,1732,0),(3466,23,1732,0),(3467,20,1733,0),(3468,23,1733,0),(3469,20,1734,0),(3470,23,1734,0),(3471,20,1735,0),(3472,23,1735,0),(3473,20,1736,0),(3474,25,1736,0),(3475,20,1737,0),(3476,25,1737,0),(3477,20,1738,0),(3478,25,1738,0),(3479,20,1739,0),(3480,25,1739,0),(3481,20,1740,0),(3482,25,1740,0),(3483,20,1741,0),(3484,25,1741,0),(3485,20,1742,0),(3486,25,1742,0),(3487,20,1743,0),(3488,25,1743,0),(3489,20,1744,0),(3490,25,1744,0),(3491,20,1745,0),(3492,25,1745,0),(3493,20,1746,0),(3494,25,1746,0),(3495,20,1747,0),(3496,25,1747,0),(3497,20,1748,0),(3498,25,1748,0),(3499,20,1749,0),(3500,25,1749,0),(3501,20,1750,0),(3502,25,1750,0),(3503,20,1751,0),(3504,25,1751,0),(3505,20,1752,0),(3506,25,1752,0),(3507,20,1753,0),(3508,25,1753,0),(3509,20,1754,0),(3510,25,1754,0),(3511,20,1755,0),(3512,25,1755,0),(3513,20,1756,0),(3514,25,1756,0),(3515,20,1757,0),(3516,22,1757,0),(3517,20,1758,0),(3518,22,1758,0),(3519,20,1759,0),(3520,22,1759,0),(3521,20,1760,0),(3522,22,1760,0),(3523,20,1761,0),(3524,22,1761,0),(3525,20,1762,0),(3526,22,1762,0),(3527,20,1763,0),(3528,22,1763,0),(3529,20,1764,0),(3530,22,1764,0),(3531,20,1765,0),(3532,22,1765,0),(3533,20,1766,0),(3534,22,1766,0),(3535,20,1767,0),(3536,22,1767,0),(3537,20,1768,0),(3538,22,1768,0),(3539,20,1769,0),(3540,22,1769,0),(3541,20,1770,0),(3542,22,1770,0),(3543,20,1771,0),(3544,22,1771,0),(3545,20,1772,0),(3546,22,1772,0),(3547,20,1773,0),(3548,22,1773,0),(3549,20,1774,0),(3550,22,1774,0),(3551,20,1775,0),(3552,22,1775,0),(3553,20,1776,0),(3554,22,1776,0),(3555,20,1777,0),(3556,22,1777,0),(3557,20,1778,0),(3558,26,1778,0),(3559,20,1779,0),(3560,26,1779,0),(3561,20,1780,0),(3562,26,1780,0),(3563,20,1781,0),(3564,26,1781,0),(3565,20,1782,0),(3566,26,1782,0),(3567,20,1783,0),(3568,26,1783,0),(3569,20,1784,0),(3570,26,1784,0),(3571,20,1785,0),(3572,26,1785,0),(3573,20,1786,0),(3574,26,1786,0),(3575,20,1787,0),(3576,26,1787,0),(3577,20,1788,0),(3578,25,1788,0),(3579,20,1789,0),(3580,25,1789,0),(3581,20,1790,0),(3582,25,1790,0),(3583,20,1791,0),(3584,25,1791,0),(3585,20,1792,0),(3586,25,1792,0),(3587,20,1793,0),(3588,25,1793,0),(3589,20,1794,0),(3590,25,1794,0),(3591,20,1795,0),(3592,25,1795,0),(3593,20,1796,0),(3594,25,1796,0),(3595,20,1797,0),(3596,25,1797,0),(3597,20,1798,0),(3598,25,1798,0),(3599,20,1799,0),(3600,25,1799,0),(3601,20,1800,0),(3602,25,1800,0),(3603,20,1801,0),(3604,25,1801,0),(3605,20,1802,0),(3606,25,1802,0),(3607,20,1803,0),(3608,25,1803,0),(3609,20,1804,0),(3610,25,1804,0),(3611,20,1805,0),(3612,25,1805,0),(3613,20,1806,0),(3614,25,1806,0),(3615,20,1807,0),(3616,25,1807,0),(3617,20,1808,0),(3618,25,1808,0),(3619,20,1809,0),(3620,26,1809,0),(3621,20,1810,0),(3622,26,1810,0),(3623,20,1811,0),(3624,26,1811,0),(3625,20,1812,0),(3626,26,1812,0),(3627,20,1813,0),(3628,26,1813,0),(3629,20,1814,0),(3630,26,1814,0),(3631,20,1815,0),(3632,26,1815,0),(3633,20,1816,0),(3634,26,1816,0),(3635,20,1817,0),(3636,26,1817,0),(3669,20,1834,0),(3670,26,1834,0),(3671,20,1835,0),(3672,26,1835,0),(3673,20,1836,0),(3674,26,1836,0),(3675,20,1837,0),(3676,26,1837,0),(3677,20,1838,0),(3678,26,1838,0),(3679,20,1839,0),(3680,26,1839,0),(3681,20,1840,0),(3682,26,1840,0),(3683,20,1841,0),(3684,25,1841,0),(3685,20,1842,0),(3686,25,1842,0),(3687,20,1843,0),(3688,25,1843,0),(3689,20,1844,0),(3690,25,1844,0),(3691,20,1845,0),(3692,25,1845,0),(3693,20,1846,0),(3694,25,1846,0),(3695,20,1847,0),(3696,25,1847,0),(3697,20,1848,0),(3698,25,1848,0),(3699,20,1849,0),(3700,25,1849,0),(3701,20,1850,0),(3702,25,1850,0),(3703,20,1851,0),(3704,25,1851,0),(3705,20,1852,0),(3706,25,1852,0),(3707,20,1853,0),(3708,25,1853,0),(3709,20,1854,0),(3710,25,1854,0),(3711,20,1855,0),(3712,25,1855,0),(3713,20,1856,0),(3714,25,1856,0),(3715,20,1857,0),(3716,25,1857,0),(3717,20,1858,0),(3718,25,1858,0),(3719,20,1859,0),(3720,25,1859,0),(3721,20,1860,0),(3722,25,1860,0),(3723,20,1861,0),(3724,25,1861,0),(3725,20,1862,0),(3726,25,1862,0),(3727,20,1863,0),(3728,25,1863,0),(3729,20,1864,0),(3730,25,1864,0),(3731,20,1865,0),(3732,25,1865,0),(3733,20,1866,0),(3734,25,1866,0),(3735,20,1867,0),(3736,26,1867,0),(3737,20,1868,0),(3738,26,1868,0),(3739,20,1869,0),(3740,26,1869,0),(3741,20,1870,0),(3742,26,1870,0),(3743,20,1871,0),(3744,26,1871,0),(3745,20,1872,0),(3746,26,1872,0),(3747,20,1873,0),(3748,26,1873,0),(3749,20,1874,0),(3750,26,1874,0),(3751,20,1875,0),(3752,26,1875,0),(3753,20,1876,0),(3754,22,1876,0),(3755,20,1877,0),(3756,22,1877,0),(3757,20,1878,0),(3758,22,1878,0),(3759,20,1879,0),(3760,22,1879,0),(3761,20,1880,0),(3762,22,1880,0),(3763,20,1881,0),(3764,22,1881,0),(3765,20,1882,0),(3766,22,1882,0),(3767,20,1883,0),(3768,22,1883,0),(3769,20,1884,0),(3770,22,1884,0),(3771,20,1885,0),(3772,22,1885,0),(3773,20,1886,0),(3774,22,1886,0),(3775,20,1887,0),(3776,22,1887,0),(3777,20,1888,0),(3778,22,1888,0),(3779,20,1889,0),(3780,26,1889,0),(3781,20,1890,0),(3782,26,1890,0),(3783,20,1891,0),(3784,26,1891,0),(3785,20,1892,0),(3786,26,1892,0),(3787,20,1893,0),(3788,26,1893,0),(3789,20,1894,0),(3790,26,1894,0),(3791,20,1895,0),(3792,26,1895,0),(3793,20,1896,0),(3794,26,1896,0),(3795,20,1897,0),(3796,25,1897,0),(3797,20,1898,0),(3798,25,1898,0),(3799,20,1899,0),(3800,25,1899,0),(3801,20,1900,0),(3802,25,1900,0),(3803,20,1901,0),(3804,25,1901,0),(3805,20,1902,0),(3806,25,1902,0),(3807,20,1903,0),(3808,25,1903,0),(3809,20,1904,0),(3810,22,1904,0),(3811,20,1905,0),(3812,22,1905,0),(3813,20,1906,0),(3814,22,1906,0),(3815,20,1907,0),(3816,22,1907,0),(3817,20,1908,0),(3818,22,1908,0),(3819,20,1909,0),(3820,22,1909,0),(3821,20,1910,0),(3822,22,1910,0),(3823,20,1911,0),(3824,22,1911,0),(3825,20,1912,0),(3826,22,1912,0),(3827,20,1913,0),(3828,22,1913,0),(3829,20,1914,0),(3830,22,1914,0),(3831,20,1915,0),(3832,22,1915,0),(3833,20,1916,0),(3834,22,1916,0),(3835,20,1917,0),(3836,22,1917,0),(3837,20,1918,0),(3838,22,1918,0),(3839,20,1919,0),(3840,22,1919,0),(3841,20,1920,0),(3842,22,1920,0),(3857,20,1928,0),(3858,24,1928,0),(3859,20,1929,0),(3860,24,1929,0),(3861,20,1930,0),(3862,24,1930,0),(3863,20,1931,0),(3864,24,1931,0),(3865,20,1932,0),(3866,24,1932,0),(3867,20,1933,0),(3868,24,1933,0),(3869,20,1934,0),(3870,24,1934,0),(3871,20,1935,0),(3872,24,1935,0),(3873,20,1936,0),(3874,24,1936,0),(3875,20,1937,0),(3876,24,1937,0),(3877,20,1938,0),(3878,24,1938,0),(3879,20,1939,0),(3880,24,1939,0),(3881,20,1940,0),(3882,24,1940,0),(3883,20,1941,0),(3884,24,1941,0),(3885,20,1942,0),(3886,24,1942,0),(3887,20,1943,0),(3888,24,1943,0),(3889,20,1944,0),(3890,24,1944,0),(3891,20,1945,0),(3892,24,1945,0),(3893,20,1946,0),(3894,24,1946,0),(3895,20,1947,0),(3896,24,1947,0),(3897,20,1948,0),(3898,24,1948,0),(3899,20,1949,0),(3900,24,1949,0),(3901,20,1950,0),(3902,24,1950,0),(3903,20,1951,0),(3904,24,1951,0),(3905,20,1952,0),(3906,24,1952,0),(3907,20,1953,0),(3908,24,1953,0),(3909,20,1954,0),(3910,24,1954,0),(3911,20,1955,0),(3912,24,1955,0),(3913,20,1956,0),(3914,24,1956,0),(3915,20,1957,0),(3916,24,1957,0),(3917,20,1958,0),(3918,24,1958,0),(3919,20,1959,0),(3920,24,1959,0),(3921,20,1960,0),(3922,24,1960,0),(3923,20,1961,0),(3924,24,1961,0),(3925,20,1962,0),(3926,24,1962,0),(3927,20,1963,0),(3928,24,1963,0),(3929,20,1964,0),(3930,24,1964,0),(3931,20,1965,0),(3932,24,1965,0),(3933,20,1966,0),(3934,24,1966,0),(3935,20,1967,0),(3936,24,1967,0),(3937,20,1968,0),(3938,24,1968,0),(3939,20,1969,0),(3940,24,1969,0),(3941,20,1970,0),(3942,24,1970,0),(3943,20,1971,0),(3944,24,1971,0),(3945,20,1972,0),(3946,24,1972,0),(3947,20,1973,0),(3948,24,1973,0),(3949,20,1974,0),(3950,24,1974,0),(3951,20,1975,0),(3952,24,1975,0),(3953,20,1976,0),(3954,24,1976,0),(3955,20,1977,0),(3956,24,1977,0),(3957,20,1978,0),(3958,24,1978,0),(3959,20,1979,0),(3960,24,1979,0),(3961,20,1980,0),(3962,24,1980,0),(3963,20,1981,0),(3964,24,1981,0),(3965,20,1982,0),(3966,24,1982,0),(3967,20,1983,0),(3968,24,1983,0),(3969,20,1984,0),(3970,24,1984,0),(3971,20,1985,0),(3972,24,1985,0),(3973,20,1986,0),(3974,24,1986,0),(3975,20,1987,0),(3976,24,1987,0),(3977,20,1988,0),(3978,24,1988,0),(3979,20,1989,0),(3980,24,1989,0),(3981,20,1990,0),(3982,24,1990,0),(3983,20,1991,0),(3984,24,1991,0),(3985,35,44,0),(3986,36,44,0),(3987,20,1992,0),(3988,25,1992,0),(3989,20,1993,0),(3990,25,1993,0),(3991,20,1994,0),(3992,25,1994,0),(3993,20,1995,0),(3994,25,1995,0),(3995,20,1996,0),(3996,25,1996,0),(3997,35,1997,0),(3998,36,1997,0),(3999,35,1998,0),(4000,36,1998,0),(4001,35,1999,0),(4002,36,1999,0),(4003,35,2000,0),(4004,36,2000,0),(4005,35,2001,0),(4006,36,2001,0),(4007,27,2002,0),(4008,32,2002,0),(4009,27,2003,0),(4010,32,2003,0),(4011,27,2004,0),(4012,32,2004,0),(4013,27,2005,0),(4014,32,2005,0),(4015,27,2006,0),(4016,32,2006,0),(4017,27,2007,0),(4018,32,2007,0),(4019,27,2008,0),(4020,32,2008,0),(4021,27,2009,0),(4022,32,2009,0),(4023,27,2010,0),(4024,32,2010,0),(4025,35,116,0),(4026,38,116,0),(4027,27,2011,0),(4028,31,2011,0),(4029,27,2012,0),(4030,31,2012,0),(4031,27,2013,0),(4032,31,2013,0),(4033,27,2014,0),(4034,31,2014,0),(4035,27,2015,0),(4036,31,2015,0),(4037,27,2016,0),(4038,31,2016,0),(4039,27,2017,0),(4040,31,2017,0),(4041,35,2018,0),(4042,38,2018,0),(4043,35,2019,0),(4044,38,2019,0),(4045,35,2020,0),(4046,38,2020,0),(4047,27,2021,0),(4048,31,2021,0),(4049,27,2022,0),(4050,31,2022,0),(4051,27,2023,0),(4052,31,2023,0),(4053,27,2024,0),(4054,31,2024,0),(4055,27,2025,0),(4056,31,2025,0),(4057,27,2026,0),(4058,31,2026,0),(4059,27,2027,0),(4060,31,2027,0),(4061,27,2028,0),(4062,31,2028,0),(4063,27,2029,0),(4064,31,2029,0),(4065,35,2030,0),(4066,38,2030,0),(4067,35,2031,0),(4068,38,2031,0),(4069,35,2032,0),(4070,38,2032,0),(4089,27,2042,0),(4090,31,2042,0),(4091,27,2043,0),(4092,31,2043,0),(4093,27,2044,0),(4094,31,2044,0),(4095,27,2045,0),(4096,31,2045,0),(4097,27,2046,0),(4098,31,2046,0),(4099,27,2047,0),(4100,31,2047,0),(4101,27,2048,0),(4102,31,2048,0),(4103,27,2049,0),(4104,31,2049,0),(4105,27,2050,0),(4106,31,2050,0),(4107,35,2051,0),(4108,36,2051,0),(4109,35,2052,0),(4110,36,2052,0),(4111,35,2053,0),(4112,36,2053,0),(4113,35,2054,0),(4114,36,2054,0),(4115,35,2055,0),(4116,36,2055,0),(4117,27,2056,0),(4118,28,2056,0),(4119,27,2057,0),(4120,28,2057,0),(4121,27,2058,0),(4122,28,2058,0),(4123,27,2059,0),(4124,28,2059,0),(4125,27,2060,0),(4126,28,2060,0),(4127,27,2061,0),(4128,31,2061,0),(4129,27,2062,0),(4130,31,2062,0),(4131,27,2063,0),(4132,31,2063,0),(4133,27,2064,0),(4134,31,2064,0),(4135,27,2065,0),(4136,31,2065,0),(4137,27,2066,0),(4138,28,2066,0),(4139,27,2067,0),(4140,28,2067,0),(4141,27,2068,0),(4142,28,2068,0),(4143,27,2069,0),(4144,28,2069,0),(4145,27,2070,0),(4146,28,2070,0),(4147,27,2071,0),(4148,28,2071,0),(4149,27,2072,0),(4150,28,2072,0),(4151,35,2073,0),(4152,36,2073,0),(4153,35,2074,0),(4154,36,2074,0),(4155,35,2075,0),(4156,36,2075,0),(4157,35,2076,0),(4158,36,2076,0),(4159,35,2077,0),(4160,36,2077,0),(4161,27,2078,0),(4162,30,2078,0),(4163,27,2079,0),(4164,30,2079,0),(4165,27,2080,0),(4166,30,2080,0),(4167,27,2081,0),(4168,30,2081,0),(4169,27,2082,0),(4170,30,2082,0),(4171,27,2083,0),(4172,30,2083,0),(4173,27,2084,0),(4174,30,2084,0),(4175,35,2085,0),(4176,36,2085,0),(4177,35,2086,0),(4178,36,2086,0),(4179,35,2087,0),(4180,36,2087,0),(4181,35,2088,0),(4182,36,2088,0),(4183,35,2089,0),(4184,36,2089,0),(4185,27,2090,0),(4186,30,2090,0),(4187,27,2091,0),(4188,30,2091,0),(4189,27,2092,0),(4190,30,2092,0),(4191,27,2093,0),(4192,30,2093,0),(4193,27,2094,0),(4194,30,2094,0),(4195,27,2095,0),(4196,30,2095,0),(4197,27,2096,0),(4198,30,2096,0),(4199,27,2097,0),(4200,30,2097,0),(4201,27,2098,0),(4202,30,2098,0),(4203,35,2099,0),(4204,36,2099,0),(4205,35,2100,0),(4206,36,2100,0),(4207,35,2101,0),(4208,36,2101,0),(4209,35,2102,0),(4210,36,2102,0),(4211,35,2103,0),(4212,36,2103,0),(4213,35,2104,0),(4214,36,2104,0),(4215,35,2105,0),(4216,36,2105,0),(4217,27,2106,0),(4218,31,2106,0),(4219,27,2107,0),(4220,31,2107,0),(4221,27,2108,0),(4222,31,2108,0),(4223,27,2109,0),(4224,31,2109,0),(4225,27,2110,0),(4226,31,2110,0),(4227,27,2111,0),(4228,31,2111,0),(4229,27,2112,0),(4230,31,2112,0),(4231,27,2113,0),(4232,31,2113,0),(4233,27,2114,0),(4234,31,2114,0),(4235,27,2115,0),(4236,31,2115,0),(4237,27,2116,0),(4238,31,2116,0),(4239,27,2117,0),(4240,29,2117,0),(4241,27,2118,0),(4242,29,2118,0),(4243,27,2119,0),(4244,29,2119,0),(4245,27,2120,0),(4246,29,2120,0),(4247,27,2121,0),(4248,29,2121,0),(4249,27,2122,0),(4250,29,2122,0),(4251,27,2123,0),(4252,29,2123,0),(4253,27,2124,0),(4254,30,2124,0),(4255,27,2125,0),(4256,30,2125,0),(4257,27,2126,0),(4258,30,2126,0),(4259,27,2127,0),(4260,30,2127,0),(4261,27,2128,0),(4262,30,2128,0),(4263,27,2129,0),(4264,30,2129,0),(4265,27,2130,0),(4266,30,2130,0),(4267,27,2131,0),(4268,30,2131,0),(4269,27,2132,0),(4270,30,2132,0),(4271,35,2133,0),(4272,38,2133,0),(4273,35,2134,0),(4274,38,2134,0),(4275,35,2135,0),(4276,38,2135,0),(4277,35,2136,0),(4278,38,2136,0),(4279,35,2137,0),(4280,38,2137,0),(4281,35,2138,0),(4282,38,2138,0),(4283,27,2139,0),(4284,31,2139,0),(4285,27,2140,0),(4286,31,2140,0),(4287,27,2141,0),(4288,31,2141,0),(4289,27,2142,0),(4290,31,2142,0),(4291,27,2143,0),(4292,31,2143,0),(4293,27,2144,0),(4294,31,2144,0),(4295,27,2145,0),(4296,31,2145,0),(4297,35,2146,0),(4298,37,2146,0),(4299,35,2147,0),(4300,37,2147,0),(4301,27,2148,0),(4302,30,2148,0),(4303,35,2149,0),(4304,37,2149,0),(4305,27,2150,0),(4306,30,2150,0),(4307,27,2151,0),(4308,30,2151,0),(4309,27,2152,0),(4310,30,2152,0),(4311,27,2153,0),(4312,30,2153,0),(4313,27,2154,0),(4314,30,2154,0),(4315,27,2155,0),(4316,30,2155,0),(4317,27,2156,0),(4318,30,2156,0),(4319,27,2157,0),(4320,30,2157,0),(4321,27,2158,0),(4322,33,2158,0),(4323,27,2159,0),(4324,33,2159,0),(4325,27,2160,0),(4326,33,2160,0),(4327,27,2161,0),(4328,33,2161,0),(4329,27,2162,0),(4330,33,2162,0),(4331,27,2163,0),(4332,33,2163,0),(4333,27,2164,0),(4334,33,2164,0),(4335,27,2165,0),(4336,33,2165,0),(4337,27,2166,0),(4338,33,2166,0),(4339,27,2167,0),(4340,33,2167,0),(4341,27,2168,0),(4342,33,2168,0),(4343,35,2169,0),(4344,37,2169,0),(4345,35,2170,0),(4346,37,2170,0),(4347,35,2171,0),(4348,37,2171,0),(4349,27,2172,0),(4350,28,2172,0),(4351,27,2173,0),(4352,28,2173,0),(4353,27,2174,0),(4354,28,2174,0),(4355,27,2175,0),(4356,28,2175,0),(4357,27,2176,0),(4358,28,2176,0),(4359,27,2177,0),(4360,28,2177,0),(4361,27,2178,0),(4362,28,2178,0),(4363,27,2179,0),(4364,28,2179,0),(4365,27,2180,0),(4366,28,2180,0),(4367,27,2181,0),(4368,28,2181,0),(4369,27,2182,0),(4370,28,2182,0),(4371,27,2183,0),(4372,28,2183,0),(4373,27,2184,0),(4374,28,2184,0),(4375,27,2185,0),(4376,28,2185,0),(4377,35,2186,0),(4378,36,2186,0),(4379,35,2187,0),(4380,36,2187,0),(4381,35,2188,0),(4382,36,2188,0),(4383,35,2189,0),(4384,36,2189,0),(4385,35,2190,0),(4386,36,2190,0),(4387,27,2191,0),(4388,29,2191,0),(4389,27,2192,0),(4390,29,2192,0),(4391,27,2193,0),(4392,29,2193,0),(4393,27,2194,0),(4394,29,2194,0),(4395,27,2195,0),(4396,29,2195,0),(4397,27,2196,0),(4398,29,2196,0),(4399,27,2197,0),(4400,29,2197,0),(4401,27,2198,0),(4402,28,2198,0),(4403,27,2199,0),(4404,28,2199,0),(4405,27,2200,0),(4406,28,2200,0),(4407,27,2201,0),(4408,28,2201,0),(4409,27,2202,0),(4410,28,2202,0),(4411,27,2203,0),(4412,28,2203,0),(4413,27,2204,0),(4414,28,2204,0),(4415,35,2205,0),(4416,37,2205,0),(4417,35,2206,0),(4418,37,2206,0),(4419,35,2207,0),(4420,37,2207,0),(4421,35,2208,0),(4422,36,2208,0),(4423,35,2209,0),(4424,36,2209,0),(4425,35,2210,0),(4426,36,2210,0),(4427,35,2211,0),(4428,36,2211,0),(4429,35,2212,0),(4430,36,2212,0),(4431,27,2213,0),(4432,28,2213,0),(4433,27,2214,0),(4434,28,2214,0),(4435,27,2215,0),(4436,28,2215,0),(4437,27,2216,0),(4438,28,2216,0),(4439,27,2217,0),(4440,28,2217,0),(4441,27,2218,0),(4442,28,2218,0),(4443,27,2219,0),(4444,28,2219,0),(4445,35,2220,0),(4446,37,2220,0),(4447,35,2221,0),(4448,37,2221,0),(4449,35,2222,0),(4450,37,2222,0),(4451,27,2223,0),(4452,29,2223,0),(4453,27,2224,0),(4454,29,2224,0),(4455,27,2225,0),(4456,29,2225,0),(4457,27,2226,0),(4458,29,2226,0),(4459,27,2227,0),(4460,29,2227,0),(4461,27,2228,0),(4462,29,2228,0),(4463,27,2229,0),(4464,29,2229,0),(4465,35,2230,0),(4466,36,2230,0),(4467,35,2231,0),(4468,36,2231,0),(4469,35,2232,0),(4470,36,2232,0),(4471,35,2233,0),(4472,36,2233,0),(4473,35,2234,0),(4474,36,2234,0),(4475,27,2235,0),(4476,33,2235,0),(4477,27,2236,0),(4478,33,2236,0),(4479,27,2237,0),(4480,33,2237,0),(4481,27,2238,0),(4482,33,2238,0),(4483,27,2239,0),(4484,33,2239,0),(4485,27,2240,0),(4486,33,2240,0),(4487,27,2241,0),(4488,33,2241,0),(4489,27,2242,0),(4490,33,2242,0),(4491,27,2243,0),(4492,33,2243,0),(4493,27,2244,0),(4494,33,2244,0),(4495,27,2245,0),(4496,33,2245,0),(4497,27,2246,0),(4498,31,2246,0),(4499,27,2247,0),(4500,31,2247,0),(4501,27,2248,0),(4502,31,2248,0),(4503,27,2249,0),(4504,31,2249,0),(4505,27,2250,0),(4506,31,2250,0),(4507,27,2251,0),(4508,31,2251,0),(4509,27,2252,0),(4510,31,2252,0),(4511,35,2253,0),(4512,38,2253,0),(4513,35,2254,0),(4514,38,2254,0),(4515,35,2255,0),(4516,38,2255,0),(4517,27,2256,0),(4518,33,2256,0),(4519,27,2257,0),(4520,33,2257,0),(4521,27,2258,0),(4522,33,2258,0),(4523,27,2259,0),(4524,33,2259,0),(4525,27,2260,0),(4526,33,2260,0),(4527,27,2261,0),(4528,33,2261,0),(4529,27,2262,0),(4530,33,2262,0),(4531,27,2263,0),(4532,33,2263,0),(4533,27,2264,0),(4534,33,2264,0),(4535,27,2265,0),(4536,33,2265,0),(4537,27,2266,0),(4538,33,2266,0),(4539,27,2267,0),(4540,33,2267,0),(4541,27,2268,0),(4542,33,2268,0),(4561,27,2278,0),(4562,30,2278,0),(4563,27,2279,0),(4564,30,2279,0),(4565,27,2280,0),(4566,30,2280,0),(4567,27,2281,0),(4568,30,2281,0),(4569,27,2282,0),(4570,30,2282,0),(4571,27,2283,0),(4572,30,2283,0),(4573,27,2284,0),(4574,30,2284,0),(4575,27,2285,0),(4576,28,2285,0),(4577,27,2286,0),(4578,28,2286,0),(4579,27,2287,0),(4580,28,2287,0),(4581,27,2288,0),(4582,28,2288,0),(4583,27,2289,0),(4584,28,2289,0),(4585,27,2290,0),(4586,28,2290,0),(4587,27,2291,0),(4588,28,2291,0),(4589,27,2292,0),(4590,30,2292,0),(4591,27,2293,0),(4592,30,2293,0),(4593,27,2294,0),(4594,30,2294,0),(4595,27,2295,0),(4596,30,2295,0),(4597,27,2296,0),(4598,30,2296,0),(4599,27,2297,0),(4600,30,2297,0),(4601,27,2298,0),(4602,30,2298,0),(4603,27,2299,0),(4604,30,2299,0),(4605,27,2300,0),(4606,30,2300,0),(4607,27,2301,0),(4608,32,2301,0),(4609,27,2302,0),(4610,32,2302,0),(4611,27,2303,0),(4612,32,2303,0),(4613,27,2304,0),(4614,32,2304,0),(4615,27,2305,0),(4616,32,2305,0),(4617,27,2306,0),(4618,32,2306,0),(4619,27,2307,0),(4620,32,2307,0),(4621,27,2308,0),(4622,32,2308,0),(4623,27,2309,0),(4624,32,2309,0),(4625,27,2310,0),(4626,32,2310,0),(4627,27,2311,0),(4628,32,2311,0),(4629,27,2312,0),(4630,32,2312,0),(4631,27,2313,0),(4632,32,2313,0),(4633,27,2314,0),(4634,32,2314,0),(4635,27,2315,0),(4636,32,2315,0),(4637,27,2316,0),(4638,32,2316,0),(4639,27,2317,0),(4640,32,2317,0),(4641,27,2318,0),(4642,32,2318,0),(4643,27,2319,0),(4644,32,2319,0),(4645,27,2320,0),(4646,32,2320,0),(4665,20,2330,0),(4666,23,2330,0),(4667,20,2331,0),(4668,23,2331,0),(4669,20,2332,0),(4670,23,2332,0),(4671,20,2333,0),(4672,23,2333,0),(4673,20,2334,0),(4674,23,2334,0),(4675,20,2335,0),(4676,23,2335,0),(4677,20,2336,0),(4678,23,2336,0),(4679,20,2337,0),(4680,23,2337,0),(4681,20,2338,0),(4682,23,2338,0),(4683,20,2339,0),(4684,23,2339,0),(4685,20,2340,0),(4686,23,2340,0),(4687,20,2341,0),(4688,23,2341,0),(4689,20,2342,0),(4690,23,2342,0),(4691,20,2343,0),(4692,23,2343,0),(4693,27,2344,0),(4694,31,2344,0),(4695,27,2345,0),(4696,31,2345,0),(4697,27,2346,0),(4698,31,2346,0),(4699,27,2347,0),(4700,31,2347,0),(4701,27,2348,0),(4702,31,2348,0),(4703,27,2349,0),(4704,31,2349,0),(4705,27,2350,0),(4706,31,2350,0),(4707,27,2351,0),(4708,28,2351,0),(4709,27,2352,0),(4710,28,2352,0),(4711,27,2353,0),(4712,28,2353,0),(4713,27,2354,0),(4714,28,2354,0),(4715,27,2355,0),(4716,28,2355,0),(4717,27,2356,0),(4718,28,2356,0),(4719,27,2357,0),(4720,28,2357,0),(4721,27,2358,0),(4722,30,2358,0),(4723,27,2359,0),(4724,30,2359,0),(4725,27,2360,0),(4726,30,2360,0),(4727,27,2361,0),(4728,30,2361,0),(4729,27,2362,0),(4730,30,2362,0),(4731,27,2363,0),(4732,30,2363,0),(4733,27,2364,0),(4734,30,2364,0),(4735,27,2365,0),(4736,30,2365,0),(4737,27,2366,0),(4738,30,2366,0),(4739,27,2367,0),(4740,28,2367,0),(4741,27,2368,0),(4742,28,2368,0),(4743,27,2369,0),(4744,28,2369,0),(4745,27,2370,0),(4746,28,2370,0),(4747,27,2371,0),(4748,28,2371,0),(4749,27,2372,0),(4750,28,2372,0),(4751,27,2373,0),(4752,28,2373,0),(4753,20,2374,0),(4754,25,2374,0),(4755,20,2375,0),(4756,25,2375,0),(4757,20,2376,0),(4758,25,2376,0),(4759,20,2377,0),(4760,25,2377,0),(4761,20,2378,0),(4762,25,2378,0),(4763,20,2379,0),(4764,25,2379,0),(4765,20,2380,0),(4766,25,2380,0),(4767,20,2381,0),(4768,25,2381,0),(4769,20,2382,0),(4770,25,2382,0),(4771,20,2383,0),(4772,25,2383,0),(4773,20,2384,0),(4774,25,2384,0),(4775,20,2385,0),(4776,25,2385,0),(4777,20,2386,0),(4778,25,2386,0),(4779,20,2387,0),(4780,25,2387,0),(4781,20,2388,0),(4782,25,2388,0),(4783,20,2389,0),(4784,25,2389,0),(4785,27,2390,0),(4786,28,2390,0),(4787,27,2391,0),(4788,28,2391,0),(4789,27,2392,0),(4790,28,2392,0),(4791,27,2393,0),(4792,28,2393,0),(4793,27,2394,0),(4794,28,2394,0),(4795,27,2395,0),(4796,28,2395,0),(4797,27,2396,0),(4798,28,2396,0),(4799,27,2397,0),(4800,32,2397,0),(4801,27,2398,0),(4802,32,2398,0),(4803,27,2399,0),(4804,32,2399,0),(4805,27,2400,0),(4806,32,2400,0),(4807,27,2401,0),(4808,32,2401,0),(4809,27,2402,0),(4810,32,2402,0),(4811,27,2403,0),(4812,32,2403,0),(4813,27,2404,0),(4814,31,2404,0),(4815,27,2405,0),(4816,31,2405,0),(4817,27,2406,0),(4818,31,2406,0),(4819,27,2407,0),(4820,31,2407,0),(4821,27,2408,0),(4822,31,2408,0),(4823,27,2409,0),(4824,31,2409,0),(4825,27,2410,0),(4826,31,2410,0),(4827,27,2411,0),(4828,29,2411,0),(4829,27,2412,0),(4830,29,2412,0),(4831,27,2413,0),(4832,29,2413,0),(4833,27,2414,0),(4834,29,2414,0),(4835,27,2415,0),(4836,29,2415,0),(4837,27,2416,0),(4838,29,2416,0),(4839,27,2417,0),(4840,29,2417,0),(4841,27,2418,0),(4842,30,2418,0),(4843,27,2419,0),(4844,30,2419,0),(4845,27,2420,0),(4846,30,2420,0),(4847,27,2421,0),(4848,30,2421,0),(4849,27,2422,0),(4850,30,2422,0),(4851,27,2423,0),(4852,30,2423,0),(4853,27,2424,0),(4854,30,2424,0),(4855,27,2425,0),(4856,30,2425,0),(4857,27,2426,0),(4858,30,2426,0),(4859,27,2427,0),(4860,30,2427,0),(4861,27,2428,0),(4862,30,2428,0),(4863,27,2429,0),(4864,30,2429,0),(4865,27,2430,0),(4866,30,2430,0),(4867,27,2431,0),(4868,30,2431,0),(4869,27,2432,0),(4870,32,2432,0),(4871,27,2433,0),(4872,32,2433,0),(4873,27,2434,0),(4874,32,2434,0),(4875,27,2435,0),(4876,32,2435,0),(4877,27,2436,0),(4878,32,2436,0),(4879,27,2437,0),(4880,32,2437,0),(4881,27,2438,0),(4882,32,2438,0),(4883,27,2439,0),(4884,32,2439,0),(4885,27,2440,0),(4886,32,2440,0),(4887,27,2441,0),(4888,33,2441,0),(4889,27,2442,0),(4890,33,2442,0),(4891,27,2443,0),(4892,33,2443,0),(4893,27,2444,0),(4894,33,2444,0),(4895,27,2445,0),(4896,33,2445,0),(4897,27,2446,0),(4898,33,2446,0),(4899,27,2447,0),(4900,33,2447,0),(4901,27,2448,0),(4902,33,2448,0),(4903,27,2449,0),(4904,33,2449,0),(4905,27,2450,0),(4906,33,2450,0),(4907,27,2451,0),(4908,33,2451,0),(4909,27,2452,0),(4910,33,2452,0),(4911,27,2453,0),(4912,33,2453,0),(4913,27,2454,0),(4914,33,2454,0),(4915,27,2455,0),(4916,33,2455,0),(4917,27,2456,0),(4918,33,2456,0),(4919,27,2457,0),(4920,33,2457,0),(4921,27,2458,0),(4922,33,2458,0),(4923,27,2459,0),(4924,33,2459,0),(4925,27,2460,0),(4926,33,2460,0),(4927,27,2461,0),(4928,33,2461,0),(4929,27,2462,0),(4930,33,2462,0),(4931,27,2463,0),(4932,33,2463,0),(4933,27,2464,0),(4934,33,2464,0),(4935,27,2465,0),(4936,33,2465,0),(4937,27,2466,0),(4938,33,2466,0),(4939,27,2467,0),(4940,33,2467,0),(4941,27,2468,0),(4942,33,2468,0),(4943,27,2469,0),(4944,33,2469,0),(4945,27,2470,0),(4946,33,2470,0),(4947,27,2471,0),(4948,33,2471,0),(4949,27,2472,0),(4950,33,2472,0),(4951,27,2473,0),(4952,33,2473,0),(4953,27,2474,0),(4954,33,2474,0),(4955,27,2475,0),(4956,33,2475,0),(4957,27,2476,0),(4958,33,2476,0),(4959,27,2477,0),(4960,33,2477,0),(4961,27,2478,0),(4962,33,2478,0),(4963,27,2479,0),(4964,32,2479,0),(4965,27,2480,0),(4966,32,2480,0),(4967,27,2481,0),(4968,32,2481,0),(4969,27,2482,0),(4970,32,2482,0),(4971,27,2483,0),(4972,32,2483,0),(4973,27,2484,0),(4974,32,2484,0),(4975,27,2485,0),(4976,32,2485,0),(4977,27,2486,0),(4978,32,2486,0),(4979,27,2487,0),(4980,32,2487,0),(4981,27,2488,0),(4982,33,2488,0),(4983,27,2489,0),(4984,33,2489,0),(4985,27,2490,0),(4986,33,2490,0),(4987,27,2491,0),(4988,33,2491,0),(4989,27,2492,0),(4990,33,2492,0),(4991,27,2493,0),(4992,33,2493,0),(4993,27,2494,0),(4994,33,2494,0),(4995,27,2495,0),(4996,33,2495,0),(4997,27,2496,0),(4998,33,2496,0),(4999,27,2497,0),(5000,33,2497,0),(5001,27,2498,0),(5002,33,2498,0),(5003,27,2499,0),(5004,33,2499,0),(5005,27,2500,0),(5006,33,2500,0),(5007,20,2501,0),(5008,26,2501,0),(5009,20,2502,0),(5010,26,2502,0),(5011,20,2503,0),(5012,26,2503,0),(5013,20,2504,0),(5014,26,2504,0),(5015,20,2505,0),(5016,26,2505,0),(5017,20,2506,0),(5018,26,2506,0),(5019,20,2507,0),(5020,26,2507,0),(5021,20,2508,0),(5022,26,2508,0),(5023,20,2509,0),(5024,26,2509,0),(5025,20,2510,0),(5026,26,2510,0),(5027,20,2511,0),(5028,26,2511,0),(5029,20,2512,0),(5030,26,2512,0),(5031,20,2513,0),(5032,26,2513,0),(5033,20,2514,0),(5034,26,2514,0),(5035,20,2515,0),(5036,26,2515,0),(5037,20,2516,0),(5038,26,2516,0),(5039,20,2517,0),(5040,26,2517,0),(5041,20,2518,0),(5042,25,2518,0),(5043,20,2519,0),(5044,25,2519,0),(5045,20,2520,0),(5046,25,2520,0),(5047,20,2521,0),(5048,25,2521,0),(5049,20,2522,0),(5050,25,2522,0),(5051,20,2523,0),(5052,25,2523,0),(5053,20,2524,0),(5054,25,2524,0),(5055,27,2525,0),(5056,33,2525,0),(5057,27,2526,0),(5058,33,2526,0),(5059,27,2527,0),(5060,33,2527,0),(5061,27,2528,0),(5062,33,2528,0),(5063,27,2529,0),(5064,33,2529,0),(5065,27,2530,0),(5066,33,2530,0),(5067,27,2531,0),(5068,33,2531,0),(5069,27,2532,0),(5070,33,2532,0),(5071,27,2533,0),(5072,33,2533,0),(5073,27,2534,0),(5074,30,2534,0),(5075,27,2535,0),(5076,30,2535,0),(5077,27,2536,0),(5078,30,2536,0),(5079,27,2537,0),(5080,30,2537,0),(5081,27,2538,0),(5082,30,2538,0),(5083,27,2539,0),(5084,30,2539,0),(5085,27,2540,0),(5086,30,2540,0),(5087,27,2541,0),(5088,30,2541,0),(5089,27,2542,0),(5090,30,2542,0);
/*!40000 ALTER TABLE `catalog_category_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product_index`
--

DROP TABLE IF EXISTS `catalog_category_product_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product_index` (
  `category_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `position` int(11) DEFAULT NULL COMMENT 'Position',
  `is_parent` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `visibility` smallint(5) unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `CAT_CTGR_PRD_IDX_STORE_ID_CTGR_ID_VISIBILITY_IS_PARENT_POSITION` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Index';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_product_index`
--

LOCK TABLES `catalog_category_product_index` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product_index_replica`
--

DROP TABLE IF EXISTS `catalog_category_product_index_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product_index_replica` (
  `category_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `position` int(11) DEFAULT NULL COMMENT 'Position',
  `is_parent` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `visibility` smallint(5) unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `CAT_CTGR_PRD_IDX_STORE_ID_CTGR_ID_VISIBILITY_IS_PARENT_POSITION` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Index';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_product_index_replica`
--

LOCK TABLES `catalog_category_product_index_replica` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product_index_store1`
--

DROP TABLE IF EXISTS `catalog_category_product_index_store1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product_index_store1` (
  `category_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Category Id',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product Id',
  `position` int(11) DEFAULT NULL COMMENT 'Position',
  `is_parent` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `visibility` smallint(5) unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `IDX_4B965DC45C352D6E4C9DC0FF50B1FCF5` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `IDX_47AB760CD6A893ACEA69A9C2E0112C60` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Index Store1 Replica';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_product_index_store1`
--

LOCK TABLES `catalog_category_product_index_store1` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index_store1` DISABLE KEYS */;
INSERT INTO `catalog_category_product_index_store1` VALUES (2,1351,10000,0,1,4),(2,1413,10000,0,1,4),(2,1455,10000,0,1,4),(2,1464,10000,0,1,4),(2,1495,10000,0,1,4),(2,1526,10000,0,1,4),(2,1535,10000,0,1,4),(2,1561,10000,0,1,4),(2,1568,10000,0,1,4),(2,1583,10000,0,1,4),(2,1596,10000,0,1,4),(2,1597,10000,0,1,4),(2,1604,10000,0,1,4),(2,1630,10000,0,1,4),(2,1643,10000,0,1,4),(2,1656,10000,0,1,4),(2,1677,10000,0,1,4),(2,1699,10000,0,1,4),(2,1709,10000,0,1,4),(2,1725,10000,0,1,4),(2,1735,10000,0,1,4),(2,1756,10000,0,1,4),(2,1777,10000,0,1,4),(2,1787,10000,0,1,4),(2,1808,10000,0,1,4),(2,1817,10000,0,1,4),(2,1840,10000,0,1,4),(2,1866,10000,0,1,4),(2,1875,10000,0,1,4),(2,1888,10000,0,1,4),(2,1892,10000,0,1,4),(2,1896,10000,0,1,4),(2,1903,10000,0,1,4),(2,1910,10000,0,1,4),(2,1920,10000,0,1,4),(2,1943,10000,0,1,4),(2,1946,10000,0,1,4),(2,1961,10000,0,1,4),(2,1972,10000,0,1,4),(2,1991,10000,0,1,4),(2,1996,10000,0,1,4),(2,2001,10000,0,1,4),(2,2010,10000,0,1,4),(2,2017,10000,0,1,4),(2,2020,10000,0,1,4),(2,2029,10000,0,1,4),(2,2032,10000,0,1,4),(2,2050,10000,0,1,4),(2,2055,10000,0,1,4),(2,2060,10000,0,1,4),(2,2065,10000,0,1,4),(2,2072,10000,0,1,4),(2,2077,10000,0,1,4),(2,2084,10000,0,1,4),(2,2089,10000,0,1,4),(2,2098,10000,0,1,4),(2,2105,10000,0,1,4),(2,2116,10000,0,1,4),(2,2123,10000,0,1,4),(2,2132,10000,0,1,4),(2,2135,10000,0,1,4),(2,2138,10000,0,1,4),(2,2145,10000,0,1,4),(2,2149,10000,0,1,4),(2,2157,10000,0,1,4),(2,2168,10000,0,1,4),(2,2171,10000,0,1,4),(2,2178,10000,0,1,4),(2,2185,10000,0,1,4),(2,2190,10000,0,1,4),(2,2197,10000,0,1,4),(2,2204,10000,0,1,4),(2,2207,10000,0,1,4),(2,2212,10000,0,1,4),(2,2219,10000,0,1,4),(2,2222,10000,0,1,4),(2,2229,10000,0,1,4),(2,2234,10000,0,1,4),(2,2245,10000,0,1,4),(2,2252,10000,0,1,4),(2,2255,10000,0,1,4),(2,2268,10000,0,1,4),(2,2284,10000,0,1,4),(2,2291,10000,0,1,4),(2,2300,10000,0,1,4),(2,2309,10000,0,1,4),(2,2320,10000,0,1,4),(2,2336,10000,0,1,4),(2,2343,10000,0,1,4),(2,2350,10000,0,1,4),(2,2357,10000,0,1,4),(2,2366,10000,0,1,4),(2,2373,10000,0,1,4),(2,2389,10000,0,1,4),(2,2396,10000,0,1,4),(2,2403,10000,0,1,4),(2,2410,10000,0,1,4),(2,2417,10000,0,1,4),(2,2424,10000,0,1,4),(2,2431,10000,0,1,4),(2,2440,10000,0,1,4),(2,2456,10000,0,1,4),(2,2465,10000,0,1,4),(2,2478,10000,0,1,4),(2,2487,10000,0,1,4),(2,2500,10000,0,1,4),(2,2507,10000,0,1,4),(2,2517,10000,0,1,4),(2,2524,10000,0,1,4),(2,2533,10000,0,1,4),(2,2542,10000,0,1,4),(20,1351,0,1,1,4),(20,1413,0,1,1,4),(20,1455,0,1,1,4),(20,1464,0,1,1,4),(20,1495,0,1,1,4),(20,1526,0,1,1,4),(20,1535,0,1,1,4),(20,1561,0,1,1,4),(20,1568,0,1,1,4),(20,1583,0,1,1,4),(20,1596,0,1,1,4),(20,1597,0,1,1,4),(20,1604,0,1,1,4),(20,1630,0,1,1,4),(20,1643,0,1,1,4),(20,1656,0,1,1,4),(20,1677,0,1,1,4),(20,1699,0,1,1,4),(20,1709,0,1,1,4),(20,1725,0,1,1,4),(20,1735,0,1,1,4),(20,1756,0,1,1,4),(20,1777,0,1,1,4),(20,1787,0,1,1,4),(20,1808,0,1,1,4),(20,1817,0,1,1,4),(20,1840,0,1,1,4),(20,1866,0,1,1,4),(20,1875,0,1,1,4),(20,1888,0,1,1,4),(20,1892,0,1,1,4),(20,1896,0,1,1,4),(20,1903,0,1,1,4),(20,1910,0,1,1,4),(20,1920,0,1,1,4),(20,1943,0,1,1,4),(20,1946,0,1,1,4),(20,1961,0,1,1,4),(20,1972,0,1,1,4),(20,1991,0,1,1,4),(20,1996,0,1,1,4),(20,2336,0,1,1,4),(20,2343,0,1,1,4),(20,2389,0,1,1,4),(20,2507,0,1,1,4),(20,2517,0,1,1,4),(20,2524,0,1,1,4),(22,1568,0,1,1,4),(22,1709,0,1,1,4),(22,1777,0,1,1,4),(22,1888,0,1,1,4),(22,1910,0,1,1,4),(22,1920,0,1,1,4),(23,1351,0,1,1,4),(23,1464,0,1,1,4),(23,1535,0,1,1,4),(23,1583,0,1,1,4),(23,1656,0,1,1,4),(23,1735,0,1,1,4),(23,2336,0,1,1,4),(23,2343,0,1,1,4),(24,1413,0,1,1,4),(24,1455,0,1,1,4),(24,1495,0,1,1,4),(24,1526,0,1,1,4),(24,1561,0,1,1,4),(24,1597,0,1,1,4),(24,1643,0,1,1,4),(24,1943,0,1,1,4),(24,1946,0,1,1,4),(24,1961,0,1,1,4),(24,1972,0,1,1,4),(24,1991,0,1,1,4),(25,1596,0,1,1,4),(25,1677,0,1,1,4),(25,1699,0,1,1,4),(25,1725,0,1,1,4),(25,1756,0,1,1,4),(25,1808,0,1,1,4),(25,1866,0,1,1,4),(25,1903,0,1,1,4),(25,1996,0,1,1,4),(25,2389,0,1,1,4),(25,2524,0,1,1,4),(26,1604,0,1,1,4),(26,1630,0,1,1,4),(26,1787,0,1,1,4),(26,1817,0,1,1,4),(26,1840,0,1,1,4),(26,1875,0,1,1,4),(26,1892,0,1,1,4),(26,1896,0,1,1,4),(26,2507,0,1,1,4),(26,2517,0,1,1,4),(27,2010,0,1,1,4),(27,2017,0,1,1,4),(27,2029,0,1,1,4),(27,2050,0,1,1,4),(27,2060,0,1,1,4),(27,2065,0,1,1,4),(27,2072,0,1,1,4),(27,2084,0,1,1,4),(27,2098,0,1,1,4),(27,2116,0,1,1,4),(27,2123,0,1,1,4),(27,2132,0,1,1,4),(27,2145,0,1,1,4),(27,2157,0,1,1,4),(27,2168,0,1,1,4),(27,2178,0,1,1,4),(27,2185,0,1,1,4),(27,2197,0,1,1,4),(27,2204,0,1,1,4),(27,2219,0,1,1,4),(27,2229,0,1,1,4),(27,2245,0,1,1,4),(27,2252,0,1,1,4),(27,2268,0,1,1,4),(27,2284,0,1,1,4),(27,2291,0,1,1,4),(27,2300,0,1,1,4),(27,2309,0,1,1,4),(27,2320,0,1,1,4),(27,2350,0,1,1,4),(27,2357,0,1,1,4),(27,2366,0,1,1,4),(27,2373,0,1,1,4),(27,2396,0,1,1,4),(27,2403,0,1,1,4),(27,2410,0,1,1,4),(27,2417,0,1,1,4),(27,2424,0,1,1,4),(27,2431,0,1,1,4),(27,2440,0,1,1,4),(27,2456,0,1,1,4),(27,2465,0,1,1,4),(27,2478,0,1,1,4),(27,2487,0,1,1,4),(27,2500,0,1,1,4),(27,2533,0,1,1,4),(27,2542,0,1,1,4),(28,2060,0,1,1,4),(28,2072,0,1,1,4),(28,2178,0,1,1,4),(28,2185,0,1,1,4),(28,2204,0,1,1,4),(28,2219,0,1,1,4),(28,2291,0,1,1,4),(28,2357,0,1,1,4),(28,2373,0,1,1,4),(28,2396,0,1,1,4),(29,2123,0,1,1,4),(29,2197,0,1,1,4),(29,2229,0,1,1,4),(29,2417,0,1,1,4),(30,2084,0,1,1,4),(30,2098,0,1,1,4),(30,2132,0,1,1,4),(30,2157,0,1,1,4),(30,2284,0,1,1,4),(30,2300,0,1,1,4),(30,2366,0,1,1,4),(30,2424,0,1,1,4),(30,2431,0,1,1,4),(30,2542,0,1,1,4),(31,2017,0,1,1,4),(31,2029,0,1,1,4),(31,2050,0,1,1,4),(31,2065,0,1,1,4),(31,2116,0,1,1,4),(31,2145,0,1,1,4),(31,2252,0,1,1,4),(31,2350,0,1,1,4),(31,2410,0,1,1,4),(32,2010,0,1,1,4),(32,2309,0,1,1,4),(32,2320,0,1,1,4),(32,2403,0,1,1,4),(32,2440,0,1,1,4),(32,2487,0,1,1,4),(33,2168,0,1,1,4),(33,2245,0,1,1,4),(33,2268,0,1,1,4),(33,2456,0,1,1,4),(33,2465,0,1,1,4),(33,2478,0,1,1,4),(33,2500,0,1,1,4),(33,2533,0,1,1,4),(35,2001,0,1,1,4),(35,2020,0,1,1,4),(35,2032,0,1,1,4),(35,2055,0,1,1,4),(35,2077,0,1,1,4),(35,2089,0,1,1,4),(35,2105,0,1,1,4),(35,2135,0,1,1,4),(35,2138,0,1,1,4),(35,2149,0,1,1,4),(35,2171,0,1,1,4),(35,2190,0,1,1,4),(35,2207,0,1,1,4),(35,2212,0,1,1,4),(35,2222,0,1,1,4),(35,2234,0,1,1,4),(35,2255,0,1,1,4),(36,2001,0,1,1,4),(36,2055,0,1,1,4),(36,2077,0,1,1,4),(36,2089,0,1,1,4),(36,2105,0,1,1,4),(36,2190,0,1,1,4),(36,2212,0,1,1,4),(36,2234,0,1,1,4),(37,2149,0,1,1,4),(37,2171,0,1,1,4),(37,2207,0,1,1,4),(37,2222,0,1,1,4),(38,2020,0,1,1,4),(38,2032,0,1,1,4),(38,2135,0,1,1,4),(38,2138,0,1,1,4),(38,2255,0,1,1,4);
/*!40000 ALTER TABLE `catalog_category_product_index_store1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product_index_store1_replica`
--

DROP TABLE IF EXISTS `catalog_category_product_index_store1_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product_index_store1_replica` (
  `category_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Category Id',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product Id',
  `position` int(11) DEFAULT NULL COMMENT 'Position',
  `is_parent` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `visibility` smallint(5) unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `CAT_CTGR_PRD_IDX_STORE1_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `IDX_216E521C8AD125E066D2B0BAB4A08412` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Index Store1';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_product_index_store1_replica`
--

LOCK TABLES `catalog_category_product_index_store1_replica` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index_store1_replica` DISABLE KEYS */;
INSERT INTO `catalog_category_product_index_store1_replica` VALUES (2,44,0,0,1,4),(2,116,0,0,1,4),(2,1,10000,0,1,4),(2,2,10000,0,1,4),(2,3,10000,0,1,4),(2,4,10000,0,1,4),(2,5,10000,0,1,4),(2,6,10000,0,1,4),(2,7,10000,0,1,4),(2,8,10000,0,1,4),(2,9,10000,0,1,4),(2,10,10000,0,1,4),(2,11,10000,0,1,4),(2,12,10000,0,1,4),(2,15,10000,0,1,4),(2,16,10000,0,1,4),(2,17,10000,0,1,4),(2,18,10000,0,1,4),(2,19,10000,0,1,4),(2,20,10000,0,1,4),(2,22,10000,0,1,4),(2,24,10000,0,1,4),(2,25,10000,0,1,4),(2,26,10000,0,1,4),(2,29,10000,0,1,4),(2,30,10000,0,1,4),(2,31,10000,0,1,4),(2,32,10000,0,1,4),(2,33,10000,0,1,4),(2,34,10000,0,1,4),(2,35,10000,0,1,4),(2,36,10000,0,1,4),(2,38,10000,0,1,4),(2,41,10000,0,1,4),(2,42,10000,0,1,4),(2,43,10000,0,1,4),(2,45,10000,0,1,4),(2,46,10000,0,1,4),(2,47,10000,0,1,4),(2,48,10000,0,1,4),(2,49,10000,0,1,4),(2,50,10000,0,1,4),(2,51,10000,0,1,4),(2,53,10000,0,1,4),(2,54,10000,0,1,4),(2,55,10000,0,1,4),(2,56,10000,0,1,4),(2,57,10000,0,1,4),(2,58,10000,0,1,4),(2,59,10000,0,1,4),(2,60,10000,0,1,4),(2,61,10000,0,1,4),(2,63,10000,0,1,4),(2,64,10000,0,1,4),(2,65,10000,0,1,4),(2,66,10000,0,1,4),(2,68,10000,0,1,4),(2,69,10000,0,1,4),(2,70,10000,0,1,4),(2,71,10000,0,1,4),(2,72,10000,0,1,4),(2,73,10000,0,1,4),(2,74,10000,0,1,4),(2,75,10000,0,1,4),(2,76,10000,0,1,4),(2,77,10000,0,1,4),(2,78,10000,0,1,4),(2,79,10000,0,1,4),(2,80,10000,0,1,4),(2,82,10000,0,1,4),(2,83,10000,0,1,4),(2,84,10000,0,1,4),(2,85,10000,0,1,4),(2,86,10000,0,1,4),(2,87,10000,0,1,4),(2,88,10000,0,1,4),(2,89,10000,0,1,4),(2,91,10000,0,1,4),(2,92,10000,0,1,4),(2,93,10000,0,1,4),(2,95,10000,0,1,4),(2,97,10000,0,1,4),(2,98,10000,0,1,4),(2,99,10000,0,1,4),(2,100,10000,0,1,4),(2,101,10000,0,1,4),(2,102,10000,0,1,4),(2,103,10000,0,1,4),(2,104,10000,0,1,4),(2,105,10000,0,1,4),(2,106,10000,0,1,4),(2,107,10000,0,1,4),(2,108,10000,0,1,4),(2,109,10000,0,1,4),(2,110,10000,0,1,4),(2,111,10000,0,1,4),(2,112,10000,0,1,4),(2,113,10000,0,1,4),(2,114,10000,0,1,4),(2,115,10000,0,1,4),(2,117,10000,0,1,4),(2,118,10000,0,1,4),(2,119,10000,0,1,4),(2,120,10000,0,1,4),(2,121,10000,0,1,4),(2,122,10000,0,1,4),(2,123,10000,0,1,4),(2,124,10000,0,1,4),(2,125,10000,0,1,4),(2,126,10000,0,1,4),(2,127,10000,0,1,4),(2,128,10000,0,1,4),(2,523,10000,0,1,4),(2,545,10000,0,1,4),(20,1,0,1,1,4),(20,2,0,1,1,4),(20,3,0,1,1,4),(20,4,0,1,1,4),(20,5,0,1,1,4),(20,6,0,1,1,4),(20,8,0,1,1,4),(20,15,0,1,1,4),(20,16,0,1,1,4),(20,20,0,1,1,4),(20,25,0,1,1,4),(20,29,0,1,1,4),(20,34,0,1,1,4),(20,35,0,1,1,4),(20,36,0,1,1,4),(20,38,0,1,1,4),(20,42,0,1,1,4),(20,43,0,1,1,4),(20,46,0,1,1,4),(20,47,0,1,1,4),(20,49,0,1,1,4),(20,51,0,1,1,4),(20,53,0,1,1,4),(20,55,0,1,1,4),(20,63,0,1,1,4),(20,66,0,1,1,4),(20,68,0,1,1,4),(20,71,0,1,1,4),(20,76,0,1,1,4),(20,78,0,1,1,4),(20,79,0,1,1,4),(20,83,0,1,1,4),(20,85,0,1,1,4),(20,87,0,1,1,4),(20,88,0,1,1,4),(20,91,0,1,1,4),(20,92,0,1,1,4),(20,93,0,1,1,4),(20,95,0,1,1,4),(20,97,0,1,1,4),(20,98,0,1,1,4),(20,99,0,1,1,4),(20,100,0,1,1,4),(20,101,0,1,1,4),(20,102,0,1,1,4),(20,103,0,1,1,4),(20,104,0,1,1,4),(22,1,0,1,1,4),(22,2,0,1,1,4),(22,101,0,1,1,4),(22,102,0,1,1,4),(22,103,0,1,1,4),(22,104,0,1,1,4),(23,83,0,1,1,4),(23,87,0,1,1,4),(23,91,0,1,1,4),(23,92,0,1,1,4),(23,93,0,1,1,4),(23,95,0,1,1,4),(23,98,0,1,1,4),(23,100,0,1,1,4),(24,3,0,1,1,4),(24,4,0,1,1,4),(24,5,0,1,1,4),(24,6,0,1,1,4),(24,8,0,1,1,4),(24,15,0,1,1,4),(24,16,0,1,1,4),(24,20,0,1,1,4),(24,25,0,1,1,4),(24,29,0,1,1,4),(24,35,0,1,1,4),(24,43,0,1,1,4),(25,34,0,1,1,4),(25,36,0,1,1,4),(25,38,0,1,1,4),(25,42,0,1,1,4),(25,46,0,1,1,4),(25,47,0,1,1,4),(25,49,0,1,1,4),(25,51,0,1,1,4),(25,53,0,1,1,4),(25,55,0,1,1,4),(25,78,0,1,1,4),(26,63,0,1,1,4),(26,66,0,1,1,4),(26,68,0,1,1,4),(26,71,0,1,1,4),(26,76,0,1,1,4),(26,79,0,1,1,4),(26,85,0,1,1,4),(26,88,0,1,1,4),(26,97,0,1,1,4),(26,99,0,1,1,4),(27,7,0,1,1,4),(27,9,0,1,1,4),(27,10,0,1,1,4),(27,11,0,1,1,4),(27,12,0,1,1,4),(27,17,0,1,1,4),(27,18,0,1,1,4),(27,19,0,1,1,4),(27,22,0,1,1,4),(27,24,0,1,1,4),(27,26,0,1,1,4),(27,30,0,1,1,4),(27,33,0,1,1,4),(27,41,0,1,1,4),(27,45,0,1,1,4),(27,50,0,1,1,4),(27,54,0,1,1,4),(27,56,0,1,1,4),(27,57,0,1,1,4),(27,59,0,1,1,4),(27,60,0,1,1,4),(27,64,0,1,1,4),(27,69,0,1,1,4),(27,70,0,1,1,4),(27,72,0,1,1,4),(27,73,0,1,1,4),(27,75,0,1,1,4),(27,77,0,1,1,4),(27,80,0,1,1,4),(27,82,0,1,1,4),(27,84,0,1,1,4),(27,86,0,1,1,4),(27,89,0,1,1,4),(27,105,0,1,1,4),(27,106,0,1,1,4),(27,107,0,1,1,4),(27,108,0,1,1,4),(27,109,0,1,1,4),(27,110,0,1,1,4),(27,112,0,1,1,4),(27,113,0,1,1,4),(27,115,0,1,1,4),(27,117,0,1,1,4),(27,119,0,1,1,4),(27,120,0,1,1,4),(27,122,0,1,1,4),(27,123,0,1,1,4),(28,109,0,1,1,4),(28,110,0,1,1,4),(28,112,0,1,1,4),(28,113,0,1,1,4),(28,115,0,1,1,4),(28,117,0,1,1,4),(28,119,0,1,1,4),(28,120,0,1,1,4),(28,122,0,1,1,4),(28,123,0,1,1,4),(29,105,0,1,1,4),(29,106,0,1,1,4),(29,107,0,1,1,4),(29,108,0,1,1,4),(30,41,0,1,1,4),(30,50,0,1,1,4),(30,56,0,1,1,4),(30,59,0,1,1,4),(30,64,0,1,1,4),(30,70,0,1,1,4),(30,72,0,1,1,4),(30,73,0,1,1,4),(30,77,0,1,1,4),(30,80,0,1,1,4),(31,7,0,1,1,4),(31,9,0,1,1,4),(31,10,0,1,1,4),(31,11,0,1,1,4),(31,12,0,1,1,4),(31,17,0,1,1,4),(31,19,0,1,1,4),(31,24,0,1,1,4),(31,26,0,1,1,4),(32,18,0,1,1,4),(32,22,0,1,1,4),(32,30,0,1,1,4),(32,33,0,1,1,4),(32,45,0,1,1,4),(32,57,0,1,1,4),(33,54,0,1,1,4),(33,60,0,1,1,4),(33,69,0,1,1,4),(33,75,0,1,1,4),(33,82,0,1,1,4),(33,84,0,1,1,4),(33,86,0,1,1,4),(33,89,0,1,1,4),(35,31,0,1,1,4),(35,32,0,1,1,4),(35,48,0,1,1,4),(35,58,0,1,1,4),(35,61,0,1,1,4),(35,65,0,1,1,4),(35,74,0,1,1,4),(35,111,0,1,1,4),(35,114,0,1,1,4),(35,118,0,1,1,4),(35,121,0,1,1,4),(35,124,0,1,1,4),(35,125,0,1,1,4),(35,126,0,1,1,4),(35,127,0,1,1,4),(35,128,0,1,1,4),(35,523,0,1,1,4),(35,545,0,1,1,4),(36,31,0,1,1,4),(36,32,0,1,1,4),(36,48,0,1,1,4),(36,58,0,1,1,4),(36,61,0,1,1,4),(36,65,0,1,1,4),(36,74,0,1,1,4),(37,124,0,1,1,4),(37,125,0,1,1,4),(37,126,0,1,1,4),(37,127,0,1,1,4),(37,128,0,1,1,4),(37,545,0,1,1,4),(38,111,0,1,1,4),(38,114,0,1,1,4),(38,118,0,1,1,4),(38,121,0,1,1,4),(38,523,0,1,1,4);
/*!40000 ALTER TABLE `catalog_category_product_index_store1_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product_index_tmp`
--

DROP TABLE IF EXISTS `catalog_category_product_index_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product_index_tmp` (
  `category_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `position` int(11) NOT NULL DEFAULT '0' COMMENT 'Position',
  `is_parent` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `visibility` smallint(5) unsigned NOT NULL COMMENT 'Visibility',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `CAT_CTGR_PRD_IDX_TMP_PRD_ID_CTGR_ID_STORE_ID` (`product_id`,`category_id`,`store_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Indexer temporary table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_product_index_tmp`
--

LOCK TABLES `catalog_category_product_index_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_compare_item`
--

DROP TABLE IF EXISTS `catalog_compare_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_compare_item` (
  `catalog_compare_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Compare Item ID',
  `visitor_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Visitor ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  PRIMARY KEY (`catalog_compare_item_id`),
  KEY `CATALOG_COMPARE_ITEM_PRODUCT_ID` (`product_id`),
  KEY `CATALOG_COMPARE_ITEM_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  KEY `CATALOG_COMPARE_ITEM_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  KEY `CATALOG_COMPARE_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_COMPARE_ITEM_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CATALOG_COMPARE_ITEM_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CATALOG_COMPARE_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Compare Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_compare_item`
--

LOCK TABLES `catalog_compare_item` WRITE;
/*!40000 ALTER TABLE `catalog_compare_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_compare_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_eav_attribute`
--

DROP TABLE IF EXISTS `catalog_eav_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_eav_attribute` (
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `frontend_input_renderer` varchar(255) DEFAULT NULL COMMENT 'Frontend Input Renderer',
  `is_global` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Is Global',
  `is_visible` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Is Visible',
  `is_searchable` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Searchable',
  `is_filterable` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Filterable',
  `is_comparable` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Comparable',
  `is_visible_on_front` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front',
  `is_html_allowed_on_front` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is HTML Allowed On Front',
  `is_used_for_price_rules` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used For Price Rules',
  `is_filterable_in_search` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Filterable In Search',
  `used_in_product_listing` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used In Product Listing',
  `used_for_sort_by` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used For Sorting',
  `apply_to` varchar(255) DEFAULT NULL COMMENT 'Apply To',
  `is_visible_in_advanced_search` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible In Advanced Search',
  `position` int(11) NOT NULL DEFAULT '0' COMMENT 'Position',
  `is_wysiwyg_enabled` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is WYSIWYG Enabled',
  `is_used_for_promo_rules` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used For Promo Rules',
  `is_required_in_admin_store` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Required In Admin Store',
  `is_used_in_grid` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used in Grid',
  `is_visible_in_grid` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible in Grid',
  `is_filterable_in_grid` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Filterable in Grid',
  `search_weight` float NOT NULL DEFAULT '1' COMMENT 'Search Weight',
  `additional_data` text COMMENT 'Additional swatch attributes data',
  PRIMARY KEY (`attribute_id`),
  KEY `CATALOG_EAV_ATTRIBUTE_USED_FOR_SORT_BY` (`used_for_sort_by`),
  KEY `CATALOG_EAV_ATTRIBUTE_USED_IN_PRODUCT_LISTING` (`used_in_product_listing`),
  CONSTRAINT `CATALOG_EAV_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog EAV Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_eav_attribute`
--

LOCK TABLES `catalog_eav_attribute` WRITE;
/*!40000 ALTER TABLE `catalog_eav_attribute` DISABLE KEYS */;
INSERT INTO `catalog_eav_attribute` VALUES (45,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(46,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(47,NULL,0,1,0,0,0,0,1,0,0,0,0,NULL,0,0,1,0,0,0,0,0,1,NULL),(48,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(49,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(50,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(51,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(52,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(53,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(54,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(55,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(56,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(57,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(58,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(59,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(60,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(61,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(62,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(63,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(64,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(65,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(66,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(67,'Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Sortby\\Available',0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(68,'Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Sortby\\DefaultSortby',0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(69,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(70,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(71,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(72,'Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Pricestep',0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(73,NULL,0,1,1,0,0,0,0,0,0,1,1,NULL,1,0,0,0,0,0,0,0,5,NULL),(74,NULL,1,1,1,0,1,0,0,0,0,0,0,NULL,1,0,0,0,0,0,0,0,6,NULL),(75,NULL,0,1,1,0,1,0,1,0,0,0,0,NULL,1,0,1,0,0,0,0,0,1,NULL),(76,NULL,0,1,1,0,1,0,1,0,0,1,0,NULL,1,0,1,0,0,1,0,0,1,NULL),(77,NULL,1,1,1,0,0,0,0,0,0,1,1,'simple,virtual,bundle,downloadable,configurable',1,0,0,0,0,0,0,0,1,NULL),(78,NULL,1,1,0,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,1,1,NULL),(79,NULL,2,1,0,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,0,1,NULL),(80,NULL,2,1,0,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,0,1,NULL),(82,'Magento\\Catalog\\Block\\Adminhtml\\Product\\Helper\\Form\\Weight',1,1,0,0,0,0,0,0,0,0,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,1,1,NULL),(84,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,NULL),(85,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,NULL),(86,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,NULL),(87,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(88,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(89,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(90,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(91,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(92,NULL,2,1,0,0,0,0,0,0,0,0,0,'simple,virtual,bundle,downloadable',0,0,0,0,0,0,0,0,1,NULL),(93,NULL,1,1,1,1,1,1,0,0,0,0,0,'simple,virtual,configurable',1,0,0,0,0,1,0,1,1,'{\"swatch_input_type\":\"visual\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":\"0\"}'),(94,NULL,2,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,0,1,NULL),(95,NULL,2,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,0,1,NULL),(96,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(97,'Magento\\Framework\\Data\\Form\\Element\\Hidden',2,1,1,0,0,0,0,0,0,1,0,NULL,0,0,0,0,1,0,0,0,1,NULL),(98,NULL,1,0,0,0,0,0,0,0,0,0,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,0,0,0,1,NULL),(99,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,1,0,0,0,1,NULL),(100,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,NULL),(101,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,NULL),(102,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,NULL),(103,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(104,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,NULL),(105,'Magento\\Catalog\\Block\\Adminhtml\\Product\\Helper\\Form\\Category',1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(106,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(107,NULL,1,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(108,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(109,NULL,0,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(110,NULL,0,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(111,NULL,0,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(112,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(113,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(114,NULL,2,1,0,0,0,0,0,0,0,0,0,'simple,bundle,configurable,grouped',0,0,0,0,0,1,0,1,1,NULL),(115,'Magento\\CatalogInventory\\Block\\Adminhtml\\Form\\Field\\Stock',1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(116,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,NULL),(117,'Magento\\Msrp\\Block\\Adminhtml\\Product\\Helper\\Form\\Type',1,1,0,0,0,0,0,0,0,1,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,1,0,1,1,NULL),(118,'Magento\\Msrp\\Block\\Adminhtml\\Product\\Helper\\Form\\Type\\Price',2,1,0,0,0,0,0,0,0,1,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,0,0,0,1,NULL),(119,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(120,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(121,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,1,1,NULL),(122,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(123,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,NULL),(124,NULL,1,1,0,0,0,0,0,0,0,0,0,'bundle',0,0,0,0,0,0,0,0,1,NULL),(125,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,NULL),(126,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,NULL),(127,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,NULL),(128,NULL,1,0,0,0,0,0,0,0,0,1,0,'downloadable',0,0,0,0,0,0,0,0,1,NULL),(129,NULL,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0,0,0,0,0,1,NULL),(130,NULL,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0,0,0,0,0,1,NULL),(131,NULL,1,0,0,0,0,0,0,0,0,1,0,'downloadable',0,0,0,0,0,0,0,0,1,NULL),(132,'Magento\\GiftMessage\\Block\\Adminhtml\\Product\\Helper\\Form\\Config',1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,NULL),(133,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL),(134,NULL,2,1,1,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,1,1,NULL),(139,NULL,1,1,0,0,0,1,0,0,0,0,0,NULL,0,0,0,0,0,0,0,1,1,NULL),(141,NULL,1,1,0,1,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,1,1,NULL),(206,NULL,0,1,0,0,0,1,1,0,0,1,0,NULL,0,0,0,0,0,1,1,1,1,NULL),(208,NULL,1,1,0,1,0,1,1,0,0,1,0,NULL,0,0,0,0,0,1,1,1,1,'{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}'),(209,NULL,0,1,0,0,0,0,0,0,0,0,0,'simple,bundle,configurable',0,0,0,0,0,0,0,0,1,NULL),(210,NULL,0,1,0,0,0,0,0,0,0,0,0,'simple,bundle,configurable',0,0,0,0,0,0,0,0,1,NULL),(211,NULL,0,1,0,0,0,0,0,0,0,0,0,'simple,bundle,configurable',0,0,0,0,0,0,0,0,1,NULL),(212,NULL,1,1,0,1,0,1,1,0,0,1,1,NULL,0,0,0,0,0,1,1,1,1,'{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}'),(213,NULL,1,0,0,0,0,0,0,0,0,0,0,'simple,downloadable,virtual,bundle,configurable',0,0,0,0,0,0,0,0,1,NULL),(214,NULL,1,1,0,0,0,0,0,0,0,0,0,'simple,bundle,configurable',0,0,0,0,0,0,0,0,1,NULL),(215,NULL,1,1,0,0,0,0,0,0,0,0,0,'simple,bundle,configurable',0,0,0,0,0,0,0,0,1,NULL),(216,NULL,1,1,0,0,0,0,0,0,0,0,0,'simple,bundle,configurable',0,0,0,0,0,0,0,0,1,NULL),(217,NULL,1,1,0,0,0,0,0,0,0,0,0,'simple,bundle,configurable',0,0,0,0,0,0,0,0,1,NULL);
/*!40000 ALTER TABLE `catalog_eav_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_bundle_option`
--

DROP TABLE IF EXISTS `catalog_product_bundle_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_bundle_option` (
  `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Id',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id',
  `required` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Required',
  `position` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Position',
  `type` varchar(255) DEFAULT NULL COMMENT 'Type',
  PRIMARY KEY (`option_id`),
  KEY `CATALOG_PRODUCT_BUNDLE_OPTION_PARENT_ID` (`parent_id`),
  CONSTRAINT `CAT_PRD_BNDL_OPT_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Option';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_bundle_option`
--

LOCK TABLES `catalog_product_bundle_option` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_option` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_bundle_option_value`
--

DROP TABLE IF EXISTS `catalog_product_bundle_option_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_bundle_option_value` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value Id',
  `option_id` int(10) unsigned NOT NULL COMMENT 'Option Id',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `parent_product_id` int(10) unsigned NOT NULL COMMENT 'Parent Product Id',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CAT_PRD_BNDL_OPT_VAL_OPT_ID_PARENT_PRD_ID_STORE_ID` (`option_id`,`parent_product_id`,`store_id`),
  CONSTRAINT `CAT_PRD_BNDL_OPT_VAL_OPT_ID_CAT_PRD_BNDL_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Option Value';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_bundle_option_value`
--

LOCK TABLES `catalog_product_bundle_option_value` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_option_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_option_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_bundle_price_index`
--

DROP TABLE IF EXISTS `catalog_product_bundle_price_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_bundle_price_index` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  `min_price` decimal(20,6) NOT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) NOT NULL COMMENT 'Max Price',
  PRIMARY KEY (`entity_id`,`website_id`,`customer_group_id`),
  KEY `CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_WEBSITE_ID` (`website_id`),
  KEY `CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_CUSTOMER_GROUP_ID` (`customer_group_id`),
  CONSTRAINT `CAT_PRD_BNDL_PRICE_IDX_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_BNDL_PRICE_IDX_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_BNDL_PRICE_IDX_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Price Index';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_bundle_price_index`
--

LOCK TABLES `catalog_product_bundle_price_index` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_price_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_price_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_bundle_selection`
--

DROP TABLE IF EXISTS `catalog_product_bundle_selection`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_bundle_selection` (
  `selection_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Selection Id',
  `option_id` int(10) unsigned NOT NULL COMMENT 'Option Id',
  `parent_product_id` int(10) unsigned NOT NULL COMMENT 'Parent Product Id',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `position` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Position',
  `is_default` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Default',
  `selection_price_type` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Selection Price Type',
  `selection_price_value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Selection Price Value',
  `selection_qty` decimal(12,4) DEFAULT NULL COMMENT 'Selection Qty',
  `selection_can_change_qty` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Selection Can Change Qty',
  PRIMARY KEY (`selection_id`),
  KEY `CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION_ID` (`option_id`),
  KEY `CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT_ID` (`product_id`),
  CONSTRAINT `CAT_PRD_BNDL_SELECTION_OPT_ID_CAT_PRD_BNDL_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_BNDL_SELECTION_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Selection';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_bundle_selection`
--

LOCK TABLES `catalog_product_bundle_selection` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_selection` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_selection` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_bundle_selection_price`
--

DROP TABLE IF EXISTS `catalog_product_bundle_selection_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_bundle_selection_price` (
  `selection_id` int(10) unsigned NOT NULL COMMENT 'Selection Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `selection_price_type` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Selection Price Type',
  `selection_price_value` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Selection Price Value',
  `parent_product_id` int(10) unsigned NOT NULL COMMENT 'Parent Product Id',
  PRIMARY KEY (`selection_id`,`parent_product_id`,`website_id`),
  KEY `CATALOG_PRODUCT_BUNDLE_SELECTION_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CAT_PRD_BNDL_SELECTION_PRICE_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_DCF37523AA05D770A70AA4ED7C2616E4` FOREIGN KEY (`selection_id`) REFERENCES `catalog_product_bundle_selection` (`selection_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Selection Price';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_bundle_selection_price`
--

LOCK TABLES `catalog_product_bundle_selection_price` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_selection_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_selection_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_bundle_stock_index`
--

DROP TABLE IF EXISTS `catalog_product_bundle_stock_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_bundle_stock_index` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Option Id',
  `stock_status` smallint(6) DEFAULT '0' COMMENT 'Stock Status',
  PRIMARY KEY (`entity_id`,`website_id`,`stock_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Stock Index';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_bundle_stock_index`
--

LOCK TABLES `catalog_product_bundle_stock_index` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_stock_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_stock_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity`
--

DROP TABLE IF EXISTS `catalog_product_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set ID',
  `type_id` varchar(32) NOT NULL DEFAULT 'simple' COMMENT 'Type ID',
  `sku` varchar(64) DEFAULT NULL COMMENT 'SKU',
  `has_options` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Has Options',
  `required_options` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Required Options',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time',
  PRIMARY KEY (`entity_id`),
  KEY `CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` (`attribute_set_id`),
  KEY `CATALOG_PRODUCT_ENTITY_SKU` (`sku`)
) ENGINE=InnoDB AUTO_INCREMENT=2543 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity`
--

LOCK TABLES `catalog_product_entity` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity` DISABLE KEYS */;
INSERT INTO `catalog_product_entity` VALUES (1,4,'configurable','2313434',1,1,'2018-11-30 16:23:00','2019-03-07 13:12:58'),(2,4,'configurable','31190954',1,1,'2018-11-30 16:29:36','2019-03-07 13:12:55'),(3,4,'configurable','31091133',1,1,'2018-11-30 16:52:17','2019-03-04 10:42:00'),(4,4,'configurable','31332981',1,1,'2018-11-30 17:04:32','2019-03-04 07:38:30'),(5,4,'configurable','31276018',1,1,'2018-11-30 17:10:24','2019-03-07 13:12:21'),(6,4,'configurable','31141265',1,1,'2018-11-30 17:21:24','2019-03-04 06:52:49'),(7,4,'configurable','30977134',1,1,'2018-11-30 17:37:13','2019-03-07 13:22:25'),(8,4,'configurable','31276018-1',1,1,'2018-11-30 17:40:06','2019-03-07 13:12:24'),(9,4,'configurable','31241601',1,1,'2018-11-30 17:40:46','2019-03-06 07:15:52'),(10,4,'configurable','30977108',1,1,'2018-11-30 17:42:45','2019-03-07 13:22:27'),(11,4,'configurable','31240220',1,1,'2018-11-30 17:49:09','2019-03-07 13:22:39'),(12,4,'configurable','31331004',1,1,'2018-11-30 17:52:28','2019-03-07 13:27:13'),(15,4,'configurable','31091010',1,1,'2018-11-30 18:04:46','2019-03-07 13:12:16'),(16,4,'configurable','31085465',1,1,'2018-11-30 18:11:48','2019-03-04 07:23:56'),(17,4,'configurable','31340162',1,1,'2018-11-30 18:14:12','2019-03-07 13:22:32'),(18,4,'configurable','31125033',1,1,'2018-11-30 18:15:14','2019-03-07 13:27:56'),(19,4,'configurable','31483900',1,1,'2018-11-30 18:16:34','2019-03-07 13:27:40'),(20,4,'configurable','30807043',1,1,'2018-11-30 18:17:13','2019-03-07 13:01:05'),(22,4,'configurable','31125034',1,1,'2018-11-30 18:19:49','2019-03-06 06:45:01'),(24,4,'configurable','310046545',1,1,'2018-11-30 18:22:02','2019-03-06 07:41:38'),(25,4,'configurable','31179106',1,1,'2018-11-30 18:22:18','2019-03-04 07:14:57'),(26,4,'configurable','30977037',1,1,'2018-11-30 18:23:50','2019-03-07 13:27:05'),(29,4,'configurable','31149594',1,1,'2018-11-30 18:26:45','2019-03-07 13:12:13'),(30,4,'configurable','31125036',1,1,'2018-11-30 18:27:15','2019-03-06 07:21:17'),(31,4,'configurable','31289374',1,1,'2018-11-30 18:27:34','2019-03-06 08:03:56'),(32,4,'configurable','31160332',1,1,'2018-11-30 18:33:47','2019-03-06 09:40:02'),(33,4,'configurable','31125037',1,1,'2018-11-30 18:34:48','2019-03-07 13:22:23'),(34,4,'configurable','31189007',1,1,'2018-11-30 18:35:20','2019-03-07 13:12:40'),(35,4,'configurable','30986434',1,1,'2018-11-30 18:35:29','2019-03-07 13:12:10'),(36,4,'configurable','31231300',1,1,'2018-11-30 18:37:17','2019-03-07 13:12:45'),(38,4,'configurable','31189077',1,1,'2018-11-30 18:40:07','2019-03-07 13:12:42'),(41,4,'configurable','31261586',1,1,'2018-11-30 18:41:23','2019-03-07 13:27:54'),(42,4,'configurable','31189077-1',1,1,'2018-11-30 18:41:45','2019-03-07 13:12:34'),(43,4,'configurable','30947478',1,1,'2018-11-30 18:42:17','2019-03-04 06:44:01'),(44,4,'configurable','31178507',1,1,'2018-11-30 18:42:25','2019-03-07 08:02:26'),(45,4,'configurable','31125039',1,1,'2018-11-30 18:43:14','2019-03-07 13:27:58'),(46,4,'configurable','31134483',1,1,'2018-11-30 18:43:26','2019-03-07 13:12:19'),(47,4,'configurable','31135088',1,1,'2018-11-30 18:44:53','2019-03-07 13:12:26'),(48,4,'configurable','31258335',1,1,'2018-11-30 18:46:09','2019-03-06 08:19:35'),(49,4,'configurable','31231300-1',1,1,'2018-11-30 18:46:58','2019-03-07 13:12:32'),(50,4,'configurable','31220278',1,1,'2018-11-30 18:48:26','2019-03-07 13:27:48'),(51,4,'configurable','31264080',1,1,'2018-11-30 18:48:27','2019-03-07 13:22:10'),(53,4,'configurable','31207422',1,1,'2018-11-30 18:50:07','2019-03-07 13:12:30'),(54,4,'configurable','31085354',1,1,'2018-11-30 18:50:18','2019-03-07 13:27:42'),(55,4,'configurable','31202421',1,1,'2018-11-30 18:51:36','2019-03-04 08:55:41'),(56,4,'configurable','30811612',1,1,'2018-11-30 18:51:50','2019-03-06 06:58:52'),(57,4,'configurable','31125042',1,1,'2018-11-30 18:52:37','2019-03-06 06:14:23'),(58,4,'configurable','31045897',1,1,'2018-11-30 18:54:48','2019-03-06 07:54:53'),(59,4,'configurable','30838511',1,1,'2018-11-30 18:54:57','2019-03-07 13:27:16'),(60,4,'configurable','31074190',1,1,'2018-11-30 18:55:21','2019-03-06 06:08:13'),(61,4,'configurable','31300702',1,1,'2018-11-30 18:55:52','2019-03-06 09:45:33'),(63,4,'configurable','31253491',1,1,'2018-11-30 18:57:22','2019-03-04 12:05:31'),(64,4,'configurable','31266871',1,1,'2018-11-30 18:57:56','2019-03-07 13:27:10'),(65,4,'configurable','31160296',1,1,'2018-11-30 18:58:34','2019-03-06 09:24:27'),(66,4,'configurable','31253492',1,1,'2018-11-30 19:00:08','2019-03-05 11:32:55'),(68,4,'configurable','31253493',1,1,'2018-11-30 19:01:47','2019-03-04 09:38:46'),(69,4,'configurable','31103364',1,1,'2018-11-30 19:06:23','2019-03-07 13:28:01'),(70,4,'configurable','31291013',1,1,'2018-11-30 19:06:26','2019-03-07 13:22:30'),(71,4,'configurable','31253494',1,1,'2018-11-30 19:07:33','2019-03-06 11:21:46'),(72,4,'configurable','31319864',1,1,'2018-11-30 19:08:26','2019-03-07 13:27:00'),(73,4,'configurable','31151579',1,1,'2018-11-30 19:10:16','2019-03-07 13:27:46'),(74,4,'configurable','31160298',1,1,'2018-11-30 19:10:36','2019-03-06 09:33:38'),(75,4,'configurable','31196404',1,1,'2018-11-30 19:11:13','2019-03-07 13:27:37'),(76,4,'configurable','31253495',1,1,'2018-11-30 19:11:45','2019-03-06 11:04:13'),(77,4,'configurable','31292416',1,1,'2018-11-30 19:12:33','2019-03-06 07:06:25'),(78,4,'configurable','31253496',1,1,'2018-11-30 19:13:25','2019-03-04 08:40:17'),(79,4,'configurable','31324632',1,1,'2018-11-30 19:14:58','2019-03-05 12:13:59'),(80,4,'configurable','31239294',1,1,'2018-11-30 19:15:05','2019-03-07 13:27:03'),(81,4,'configurable','30805166',1,1,'2018-11-30 19:17:28','2019-02-11 07:40:23'),(82,4,'configurable','31197648',1,1,'2018-11-30 19:19:17','2019-03-07 13:27:20'),(83,4,'configurable','30988045',1,1,'2018-11-30 19:19:28','2019-03-05 11:50:16'),(84,4,'configurable','31093629',1,1,'2018-11-30 19:22:20','2019-03-06 06:24:36'),(85,4,'configurable','31253498',1,1,'2018-11-30 19:26:12','2019-03-04 11:24:54'),(86,4,'configurable','31333018',1,1,'2018-11-30 19:27:00','2019-03-06 06:39:05'),(87,4,'configurable','31302817',1,1,'2018-11-30 19:27:49','2019-03-05 12:40:03'),(88,4,'configurable','31253499',1,1,'2018-11-30 19:29:43','2019-03-05 11:40:50'),(89,4,'configurable','30945868',1,1,'2018-11-30 19:31:12','2019-03-06 06:29:28'),(91,4,'configurable','31091479',1,1,'2018-11-30 19:37:11','2019-03-07 14:03:08'),(92,4,'configurable','31250794',1,1,'2018-11-30 19:40:00','2019-03-05 11:57:43'),(93,4,'configurable','31219211',1,1,'2018-11-30 19:42:21','2019-03-05 13:37:28'),(95,4,'configurable','31166144',1,1,'2018-11-30 19:44:28','2019-03-07 13:22:07'),(97,4,'configurable','31253501',1,1,'2018-11-30 19:46:51','2019-03-07 13:12:52'),(98,4,'configurable','31176055',1,1,'2018-11-30 19:47:42','2019-03-05 13:19:38'),(99,4,'configurable','31253502',1,1,'2018-11-30 19:48:08','2019-03-07 13:12:50'),(100,4,'configurable','31207365',1,1,'2018-11-30 19:49:42','2019-03-07 13:22:04'),(101,4,'configurable','31167823',1,1,'2018-11-30 20:05:03','2019-03-07 13:12:37'),(102,4,'configurable','31226241',1,1,'2018-11-30 20:05:42','2019-03-05 11:53:48'),(103,4,'configurable','31231309',1,1,'2018-11-30 20:07:45','2019-03-05 12:53:23'),(104,4,'configurable','31273656',1,1,'2018-11-30 20:09:24','2019-03-07 13:12:48'),(105,4,'configurable','31343872',1,1,'2018-11-30 20:11:42','2019-03-07 13:22:13'),(106,4,'configurable','31145394',1,1,'2018-11-30 20:30:31','2019-03-07 13:22:15'),(107,4,'configurable','31218012',1,1,'2018-11-30 20:32:34','2019-03-07 13:22:18'),(108,4,'configurable','31043406',1,1,'2018-11-30 20:35:28','2019-03-07 13:22:20'),(109,4,'configurable','31262293',1,1,'2018-11-30 20:43:31','2019-03-06 07:32:22'),(110,4,'configurable','31262295',1,1,'2018-11-30 20:43:43','2019-03-06 07:27:06'),(111,4,'configurable','31162615',1,1,'2018-11-30 20:47:16','2019-03-06 09:49:53'),(112,4,'configurable','31268637',1,1,'2018-11-30 20:48:50','2019-03-06 07:36:53'),(113,4,'configurable','31001803',1,1,'2018-11-30 20:51:21','2019-03-07 13:27:32'),(114,4,'configurable','31191497',1,1,'2018-11-30 20:52:08','2019-03-06 07:45:48'),(115,4,'configurable','310018035',1,1,'2018-11-30 20:53:13','2019-03-07 13:27:23'),(116,4,'configurable','31146614',1,1,'2018-11-30 20:55:33','2019-03-07 08:15:48'),(117,4,'configurable','310018033',1,1,'2018-11-30 20:55:58','2019-03-07 13:27:29'),(118,4,'configurable','31034537',1,1,'2018-11-30 20:58:28','2019-03-06 09:00:39'),(119,4,'configurable','31350778',1,1,'2018-11-30 20:59:10','2019-03-07 13:27:51'),(120,4,'configurable','31350783',1,1,'2018-11-30 20:59:34','2019-03-07 13:26:57'),(121,4,'configurable','31062218',1,1,'2018-11-30 21:06:05','2019-03-06 08:52:42'),(122,4,'configurable','31292042',1,1,'2018-11-30 21:06:25','2019-03-07 13:27:25'),(123,4,'configurable','31305260',1,1,'2018-11-30 21:12:15','2019-03-07 13:22:34'),(124,4,'configurable','31223382',1,1,'2018-11-30 21:32:28','2019-03-06 08:48:26'),(125,4,'configurable','31304473',1,1,'2018-11-30 21:38:29','2019-03-06 08:42:50'),(126,4,'configurable','31327540',1,1,'2018-11-30 21:45:50','2019-03-06 08:27:49'),(127,4,'configurable','31175794',1,1,'2018-11-30 22:02:09','2019-03-06 08:09:04'),(128,4,'configurable','31005341',1,1,'2018-12-03 09:33:36','2019-03-06 07:59:39'),(129,4,'simple','31264080-brown',0,0,'2019-02-08 08:12:04','2019-04-15 09:04:01'),(130,4,'simple','31264080-brown-Large size',0,0,'2019-02-08 12:14:48','2019-04-15 09:04:01'),(131,4,'simple','31264080-brown-Medium size',0,0,'2019-02-08 12:14:49','2019-04-15 09:04:01'),(132,4,'simple','2313434-grey-Large size',0,0,'2019-02-08 14:39:09','2019-04-15 09:04:01'),(133,4,'simple','2313434-grey-Small size',0,0,'2019-02-08 14:39:09','2019-04-15 09:04:01'),(134,4,'simple','2313434-grey-Medium size',0,0,'2019-02-08 14:39:10','2019-04-15 09:04:01'),(135,4,'simple','31190954-grey-Large size',0,0,'2019-02-08 14:54:37','2019-04-15 09:04:01'),(136,4,'simple','31190954-grey-Small size',0,0,'2019-02-08 14:54:37','2019-04-15 09:04:01'),(137,4,'simple','31190954-grey-Medium size',0,0,'2019-02-08 14:54:38','2019-04-15 09:04:01'),(138,4,'simple','31091133-grey-EU 42',0,0,'2019-02-08 15:07:20','2019-04-15 09:04:01'),(139,4,'simple','31091133-grey-EU 45',0,0,'2019-02-08 15:07:21','2019-04-15 09:04:01'),(140,4,'simple','31091133-grey-EU 37',0,0,'2019-02-08 15:07:21','2019-04-15 09:04:01'),(141,4,'simple','31091133-grey-EU 40',0,0,'2019-02-08 15:07:21','2019-04-15 09:04:01'),(142,4,'simple','31091133-grey-EU 38',0,0,'2019-02-08 15:07:22','2019-04-15 09:04:01'),(143,4,'simple','31091133-grey-EU 41',0,0,'2019-02-08 15:07:22','2019-04-15 09:04:01'),(144,4,'simple','31091133-grey-EU 43',0,0,'2019-02-08 15:07:22','2019-04-15 09:04:01'),(145,4,'simple','31332981-EU 39-brown',0,0,'2019-02-08 16:20:29','2019-04-15 09:04:01'),(146,4,'simple','31332981-EU 42-brown',0,0,'2019-02-08 16:20:30','2019-04-15 09:04:01'),(147,4,'simple','31332981-EU 40-brown',0,0,'2019-02-08 16:20:30','2019-04-15 09:04:01'),(148,4,'simple','31332981-EU 43-brown',0,0,'2019-02-08 16:20:30','2019-04-15 09:04:01'),(149,4,'simple','31332981-EU 41-brown',0,0,'2019-02-08 16:20:30','2019-04-15 09:04:01'),(150,4,'simple','31276018-EU 40-black',0,0,'2019-02-08 16:22:14','2019-04-15 09:04:01'),(151,4,'simple','31276018-EU 41-black',0,0,'2019-02-08 16:22:14','2019-04-15 09:04:01'),(152,4,'simple','31276018-EU 42-black',0,0,'2019-02-08 16:22:14','2019-04-15 09:04:01'),(153,4,'simple','31141265-blue-EU 40',0,0,'2019-02-08 16:23:50','2019-04-15 09:04:01'),(154,4,'simple','31141265-blue-EU 41',0,0,'2019-02-08 16:23:51','2019-04-15 09:04:01'),(155,4,'simple','31141265-white-EU 40',0,0,'2019-02-08 16:23:51','2019-04-15 09:04:01'),(156,4,'simple','31141265-white-EU 41',0,0,'2019-02-08 16:23:51','2019-04-15 09:04:01'),(157,4,'simple','30977134-white-Small size',0,0,'2019-02-08 16:25:44','2019-04-15 09:04:01'),(158,4,'simple','30977134-white-Extra small size',0,0,'2019-02-08 16:25:45','2019-04-15 09:04:01'),(159,4,'simple','30977134-white-Medium size',0,0,'2019-02-08 16:25:45','2019-04-15 09:04:01'),(160,4,'simple','31276018-1-brown-EU 43',0,0,'2019-02-08 16:27:30','2019-04-15 09:04:01'),(161,4,'simple','31276018-1-brown-EU 42',0,0,'2019-02-08 16:27:31','2019-04-15 09:04:01'),(162,4,'simple','31276018-1-brown-EU 44',0,0,'2019-02-08 16:27:31','2019-04-15 09:04:01'),(163,4,'simple','31241601-grey-Small size',0,0,'2019-02-08 16:33:47','2019-04-15 09:04:01'),(164,4,'simple','31241601-grey-Extra small size',0,0,'2019-02-08 16:33:47','2019-04-15 09:04:01'),(165,4,'simple','31241601-grey-Large size',0,0,'2019-02-08 16:33:48','2019-04-15 09:04:01'),(166,4,'simple','30977108-black-Large size',0,0,'2019-02-11 06:49:40','2019-04-15 09:04:01'),(167,4,'simple','30977108-black-Extra small size',0,0,'2019-02-11 06:49:41','2019-04-15 09:04:01'),(168,4,'simple','30977108-black-Small size',0,0,'2019-02-11 06:49:41','2019-04-15 09:04:01'),(169,4,'simple','30977108-black-Medium size',0,0,'2019-02-11 06:49:42','2019-04-15 09:04:01'),(170,4,'simple','31240220-black-Extra small size',0,0,'2019-02-11 06:51:21','2019-04-15 09:04:01'),(171,4,'simple','31240220-black-Small size',0,0,'2019-02-11 06:51:21','2019-04-15 09:04:01'),(172,4,'simple','31331004-black-Large size',0,0,'2019-02-11 06:51:56','2019-04-15 09:04:01'),(173,4,'simple','31331004-black-Small size',0,0,'2019-02-11 06:51:57','2019-04-15 09:04:01'),(174,4,'simple','31331004-black-Medium size',0,0,'2019-02-11 06:51:57','2019-04-15 09:04:01'),(175,4,'simple','31091010-EU 39-blue',0,0,'2019-02-11 06:52:48','2019-04-15 09:04:01'),(176,4,'simple','31091010-EU 40-blue',0,0,'2019-02-11 06:52:49','2019-04-15 09:04:01'),(177,4,'simple','31091010-EU 41-blue',0,0,'2019-02-11 06:52:49','2019-04-15 09:04:01'),(178,4,'simple','31091010-EU 42-blue',0,0,'2019-02-11 06:52:49','2019-04-15 09:04:01'),(179,4,'simple','31091010-EU 43-blue',0,0,'2019-02-11 06:52:50','2019-04-15 09:04:01'),(180,4,'simple','31085465-EU 40-brown',0,0,'2019-02-11 06:53:31','2019-04-15 09:04:01'),(181,4,'simple','31085465-EU 41-brown',0,0,'2019-02-11 06:53:32','2019-04-15 09:04:01'),(182,4,'simple','31085465-EU 42-brown',0,0,'2019-02-11 06:53:32','2019-04-15 09:04:01'),(183,4,'simple','31085465-EU 43-brown',0,0,'2019-02-11 06:53:32','2019-04-15 09:04:01'),(184,4,'simple','31085465-EU 44-brown',0,0,'2019-02-11 06:53:33','2019-04-15 09:04:01'),(185,4,'simple','31085465-EU 39-brown',0,0,'2019-02-11 06:53:33','2019-04-15 09:04:01'),(186,4,'simple','31340162-grey-Extra small size',0,0,'2019-02-11 06:54:08','2019-04-15 09:04:01'),(187,4,'simple','31340162-grey-Small size',0,0,'2019-02-11 06:54:08','2019-04-15 09:04:01'),(188,4,'simple','31340162-grey-Medium size',0,0,'2019-02-11 06:54:09','2019-04-15 09:04:01'),(189,4,'simple','31340162-grey-Large size',0,0,'2019-02-11 06:54:09','2019-04-15 09:04:01'),(190,4,'simple','31125033-black-Extra small size',0,0,'2019-02-11 06:54:49','2019-04-15 09:04:01'),(191,4,'simple','31125033-black-Extra large size',0,0,'2019-02-11 06:54:50','2019-04-15 09:04:01'),(192,4,'simple','31125033-black-Small size',0,0,'2019-02-11 06:54:50','2019-04-15 09:04:01'),(193,4,'simple','31125033-black-Large size',0,0,'2019-02-11 06:54:50','2019-04-15 09:04:01'),(194,4,'simple','31483900-grey-Extra large size',0,0,'2019-02-11 06:55:15','2019-04-15 09:04:01'),(195,4,'simple','31483900-grey-Small size',0,0,'2019-02-11 06:55:15','2019-04-15 09:04:01'),(196,4,'simple','31483900-grey-Medium size',0,0,'2019-02-11 06:55:16','2019-04-15 09:04:01'),(197,4,'simple','30807043-brown-EU 39',0,0,'2019-02-11 06:55:49','2019-04-15 09:04:01'),(198,4,'simple','30807043-brown-EU 40',0,0,'2019-02-11 06:55:50','2019-04-15 09:04:01'),(199,4,'simple','30807043-brown-EU 41',0,0,'2019-02-11 06:55:50','2019-04-15 09:04:01'),(200,4,'simple','30807043-brown-EU 43',0,0,'2019-02-11 06:55:50','2019-04-15 09:04:01'),(201,4,'simple','30807043-brown-EU 42',0,0,'2019-02-11 06:55:51','2019-04-15 09:04:01'),(202,4,'simple','30807043-brown-EU 44',0,0,'2019-02-11 06:55:51','2019-04-15 09:04:01'),(203,4,'simple','31125034-Small size-blue',0,0,'2019-02-11 06:56:40','2019-04-15 09:04:01'),(204,4,'simple','31125034-Extra small size-blue',0,0,'2019-02-11 06:56:41','2019-04-15 09:04:01'),(205,4,'simple','31125034-Large size-blue',0,0,'2019-02-11 06:56:41','2019-04-15 09:04:01'),(206,4,'simple','31125034-Extra large size-blue',0,0,'2019-02-11 06:56:41','2019-04-15 09:04:01'),(207,4,'simple','310046545-black-Small size',0,0,'2019-02-11 06:57:13','2019-04-15 09:04:01'),(208,4,'simple','310046545-black-Extra large size',0,0,'2019-02-11 06:57:14','2019-04-15 09:04:01'),(209,4,'simple','310046545-black-Extra small size',0,0,'2019-02-11 06:57:14','2019-04-15 09:04:01'),(210,4,'simple','31179106-brown-EU 39',0,0,'2019-02-11 06:58:50','2019-04-15 09:04:01'),(211,4,'simple','31179106-brown-EU 40',0,0,'2019-02-11 06:58:50','2019-04-15 09:04:01'),(212,4,'simple','31179106-brown-EU 41',0,0,'2019-02-11 06:58:50','2019-04-15 09:04:01'),(213,4,'simple','31179106-brown-EU 42',0,0,'2019-02-11 06:58:51','2019-04-15 09:04:01'),(214,4,'simple','31179106-brown-EU 43',0,0,'2019-02-11 06:58:51','2019-04-15 09:04:01'),(215,4,'simple','31179106-brown-EU 44',0,0,'2019-02-11 06:58:51','2019-04-15 09:04:01'),(216,4,'simple','31179106-brown-EU 45',0,0,'2019-02-11 06:58:52','2019-04-15 09:04:01'),(217,4,'simple','30977037-white-Large size',0,0,'2019-02-11 06:59:33','2019-04-15 09:04:01'),(218,4,'simple','30977037-white-Extra small size',0,0,'2019-02-11 06:59:34','2019-04-15 09:04:01'),(219,4,'simple','30977037-white-Small size',0,0,'2019-02-11 06:59:34','2019-04-15 09:04:01'),(220,4,'simple','30977037-white-Medium size',0,0,'2019-02-11 06:59:34','2019-04-15 09:04:01'),(221,4,'simple','30977037-white-Extra large size',0,0,'2019-02-11 06:59:35','2019-04-15 09:04:01'),(222,4,'simple','31149594-grey-EU 36',0,0,'2019-02-11 07:00:05','2019-04-15 09:04:01'),(223,4,'simple','31149594-grey-EU 37',0,0,'2019-02-11 07:00:06','2019-04-15 09:04:01'),(224,4,'simple','31149594-grey-EU 38',0,0,'2019-02-11 07:00:06','2019-04-15 09:04:01'),(225,4,'simple','31149594-grey-EU 39',0,0,'2019-02-11 07:00:06','2019-04-15 09:04:01'),(226,4,'simple','31149594-grey-EU 40',0,0,'2019-02-11 07:00:07','2019-04-15 09:04:01'),(227,4,'simple','31149594-grey-EU 41',0,0,'2019-02-11 07:00:07','2019-04-15 09:04:01'),(228,4,'simple','31125036-red-Small size',0,0,'2019-02-11 07:00:37','2019-04-15 09:04:01'),(229,4,'simple','31125036-red-Extra small size',0,0,'2019-02-11 07:00:37','2019-04-15 09:04:01'),(230,4,'simple','31125036-red-Medium size',0,0,'2019-02-11 07:00:38','2019-04-15 09:04:01'),(231,4,'simple','31289374-Small size-brown',0,0,'2019-02-11 07:01:40','2019-04-15 09:04:01'),(232,4,'simple','31289374-Medium size-brown',0,0,'2019-02-11 07:01:40','2019-04-15 09:04:01'),(233,4,'simple','31160332-black-Small size',0,0,'2019-02-11 07:02:27','2019-04-15 09:04:01'),(234,4,'simple','31160332-black-Medium size',0,0,'2019-02-11 07:02:28','2019-04-15 09:04:01'),(235,4,'simple','31125037-blue-Small size',0,0,'2019-02-11 07:02:59','2019-04-15 09:04:01'),(236,4,'simple','31125037-blue-Medium size',0,0,'2019-02-11 07:03:00','2019-04-15 09:04:01'),(237,4,'simple','31125037-blue-Extra small size',0,0,'2019-02-11 07:03:00','2019-04-15 09:04:01'),(238,4,'simple','31125037-blue-Large size',0,0,'2019-02-11 07:03:01','2019-04-15 09:04:01'),(239,4,'simple','31189007-black-Small size',0,0,'2019-02-11 07:03:34','2019-04-15 09:04:01'),(240,4,'simple','31189007-black-Medium size',0,0,'2019-02-11 07:03:34','2019-04-15 09:04:01'),(241,4,'simple','31189007-black-Large size',0,0,'2019-02-11 07:03:35','2019-04-15 09:04:01'),(242,4,'simple','31189007-black-Extra large size',0,0,'2019-02-11 07:03:35','2019-04-15 09:04:01'),(243,4,'simple','30986434-EU 40-brown',0,0,'2019-02-11 07:04:15','2019-04-15 09:04:01'),(244,4,'simple','30986434-EU 39-brown',0,0,'2019-02-11 07:04:15','2019-04-15 09:04:01'),(245,4,'simple','30986434-EU 42-brown',0,0,'2019-02-11 07:04:15','2019-04-15 09:04:01'),(246,4,'simple','30986434-EU 43-brown',0,0,'2019-02-11 07:04:16','2019-04-15 09:04:01'),(247,4,'simple','30986434-EU 45-brown',0,0,'2019-02-11 07:04:16','2019-04-15 09:04:01'),(248,4,'simple','30986434-EU 44-brown',0,0,'2019-02-11 07:04:16','2019-04-15 09:04:01'),(249,4,'simple','31231300-black-Extra small size',0,0,'2019-02-11 07:05:01','2019-04-15 09:04:01'),(250,4,'simple','31231300-black-Small size',0,0,'2019-02-11 07:05:02','2019-04-15 09:04:01'),(251,4,'simple','31231300-black-Medium size',0,0,'2019-02-11 07:05:02','2019-04-15 09:04:01'),(252,4,'simple','31231300-black-Extra large size',0,0,'2019-02-11 07:05:03','2019-04-15 09:04:01'),(253,4,'simple','31231300-black-Large size',0,0,'2019-02-11 07:05:03','2019-04-15 09:04:01'),(254,4,'simple','31189077-grey-Small size',0,0,'2019-02-11 07:05:34','2019-04-15 09:04:01'),(255,4,'simple','31189077-grey-Medium size',0,0,'2019-02-11 07:05:35','2019-04-15 09:04:01'),(256,4,'simple','31189077-grey-Large size',0,0,'2019-02-11 07:05:35','2019-04-15 09:04:01'),(257,4,'simple','31261586-white-Small size',0,0,'2019-02-11 07:06:06','2019-04-15 09:04:01'),(258,4,'simple','31261586-white-Medium size',0,0,'2019-02-11 07:06:07','2019-04-15 09:04:01'),(259,4,'simple','31261586-white-Extra small size',0,0,'2019-02-11 07:06:07','2019-04-15 09:04:01'),(260,4,'simple','31261586-white-Large size',0,0,'2019-02-11 07:06:07','2019-04-15 09:04:01'),(261,4,'simple','31189077-1-black-Small size',0,0,'2019-02-11 07:06:42','2019-04-15 09:04:01'),(262,4,'simple','31189077-1-black-Medium size',0,0,'2019-02-11 07:06:42','2019-04-15 09:04:01'),(263,4,'simple','31189077-1-black-Large size',0,0,'2019-02-11 07:06:43','2019-04-15 09:04:01'),(264,4,'simple','31189077-1-black-Extra large size',0,0,'2019-02-11 07:06:43','2019-04-15 09:04:01'),(265,4,'simple','30947478-black-EU 41',0,0,'2019-02-11 07:09:30','2019-04-15 09:04:01'),(266,4,'simple','30947478-black-EU 42',0,0,'2019-02-11 07:09:31','2019-04-15 09:04:01'),(267,4,'simple','30947478-black-EU 40',0,0,'2019-02-11 07:09:31','2019-04-15 09:04:01'),(268,4,'simple','30947478-black-EU 44',0,0,'2019-02-11 07:09:31','2019-04-15 09:04:01'),(269,4,'simple','30947478-black-EU 43',0,0,'2019-02-11 07:09:31','2019-04-15 09:04:01'),(270,4,'simple','31178507-Medium size-blue',0,0,'2019-02-11 07:09:44','2019-04-15 09:04:01'),(271,4,'simple','31178507-Large size-blue',0,0,'2019-02-11 07:09:45','2019-04-15 09:04:01'),(272,4,'simple','31125039-Small size-blue',0,0,'2019-02-11 07:10:12','2019-04-15 09:04:01'),(273,4,'simple','31125039-Medium size-blue',0,0,'2019-02-11 07:10:12','2019-04-15 09:04:01'),(274,4,'simple','31125039-Extra small size-blue',0,0,'2019-02-11 07:10:13','2019-04-15 09:04:01'),(275,4,'simple','31125039-Large size-blue',0,0,'2019-02-11 07:10:13','2019-04-15 09:04:01'),(276,4,'simple','31125039-Extra large size-blue',0,0,'2019-02-11 07:10:13','2019-04-15 09:04:01'),(277,4,'simple','31134483-grey-Extra small size',0,0,'2019-02-11 07:10:32','2019-04-15 09:04:01'),(278,4,'simple','31134483-grey-Small size',0,0,'2019-02-11 07:10:33','2019-04-15 09:04:01'),(279,4,'simple','31134483-grey-Medium size',0,0,'2019-02-11 07:10:33','2019-04-15 09:04:01'),(280,4,'simple','31134483-grey-Large size',0,0,'2019-02-11 07:10:33','2019-04-15 09:04:01'),(281,4,'simple','31135088-black-Medium size',0,0,'2019-02-11 07:10:57','2019-04-15 09:04:01'),(282,4,'simple','31135088-black-Small size',0,0,'2019-02-11 07:10:58','2019-04-15 09:04:01'),(283,4,'simple','31135088-black-Extra large size',0,0,'2019-02-11 07:10:58','2019-04-15 09:04:01'),(284,4,'simple','31135088-black-Large size',0,0,'2019-02-11 07:10:58','2019-04-15 09:04:01'),(285,4,'simple','31258335-black-Small size',0,0,'2019-02-11 07:11:36','2019-04-15 09:04:01'),(286,4,'simple','31258335-black-Medium size',0,0,'2019-02-11 07:11:36','2019-04-15 09:04:01'),(287,4,'simple','31231300-1-brown-Small size',0,0,'2019-02-11 07:12:06','2019-04-15 09:04:01'),(288,4,'simple','31231300-1-brown-Large size',0,0,'2019-02-11 07:12:07','2019-04-15 09:04:01'),(289,4,'simple','31231300-1-brown-Medium size',0,0,'2019-02-11 07:12:07','2019-04-15 09:04:01'),(290,4,'simple','31220278-brown-Extra small size',0,0,'2019-02-11 07:12:43','2019-04-15 09:04:01'),(291,4,'simple','31220278-brown-Small size',0,0,'2019-02-11 07:12:44','2019-04-15 09:04:01'),(292,4,'simple','31220278-brown-Medium size',0,0,'2019-02-11 07:12:44','2019-04-15 09:04:01'),(293,4,'simple','31220278-white-Extra small size',0,0,'2019-02-11 07:12:44','2019-04-15 09:04:01'),(294,4,'simple','31220278-white-Small size',0,0,'2019-02-11 07:12:45','2019-04-15 09:04:01'),(295,4,'simple','31220278-white-Medium size',0,0,'2019-02-11 07:12:45','2019-04-15 09:04:01'),(296,4,'simple','31207422-brown-Extra small size',0,0,'2019-02-11 07:13:15','2019-04-15 09:04:01'),(297,4,'simple','31207422-brown-Small size',0,0,'2019-02-11 07:13:16','2019-04-15 09:04:01'),(298,4,'simple','31207422-brown-Medium size',0,0,'2019-02-11 07:13:16','2019-04-15 09:04:01'),(299,4,'simple','31207422-brown-Large size',0,0,'2019-02-11 07:13:16','2019-04-15 09:04:01'),(300,4,'simple','31085354-red-EU 37',0,0,'2019-02-11 07:13:46','2019-04-15 09:04:01'),(301,4,'simple','31085354-red-EU 38',0,0,'2019-02-11 07:13:46','2019-04-15 09:04:01'),(302,4,'simple','31085354-red-EU 36',0,0,'2019-02-11 07:13:46','2019-04-15 09:04:01'),(303,4,'simple','31085354-red-EU 39',0,0,'2019-02-11 07:13:47','2019-04-15 09:04:01'),(304,4,'simple','31085354-red-EU 40',0,0,'2019-02-11 07:13:47','2019-04-15 09:04:01'),(305,4,'simple','31085354-red-EU 41',0,0,'2019-02-11 07:13:47','2019-04-15 09:04:01'),(306,4,'simple','31202421-black-Extra small size',0,0,'2019-02-11 07:16:09','2019-04-15 09:04:01'),(307,4,'simple','31202421-black-Small size',0,0,'2019-02-11 07:16:09','2019-04-15 09:04:01'),(308,4,'simple','31202421-black-Medium size',0,0,'2019-02-11 07:16:10','2019-04-15 09:04:01'),(309,4,'simple','30811612-white-Extra small size',0,0,'2019-02-11 07:16:37','2019-04-15 09:04:01'),(310,4,'simple','30811612-white-Small size',0,0,'2019-02-11 07:16:37','2019-04-15 09:04:01'),(311,4,'simple','30811612-white-Medium size',0,0,'2019-02-11 07:16:38','2019-04-15 09:04:01'),(312,4,'simple','31125042-Medium size-black',0,0,'2019-02-11 07:17:32','2019-04-15 09:04:01'),(313,4,'simple','31125042-Large size-black',0,0,'2019-02-11 07:17:32','2019-04-15 09:04:01'),(314,4,'simple','31125042-Small size-black',0,0,'2019-02-11 07:17:33','2019-04-15 09:04:01'),(315,4,'simple','31125042-Extra small size-black',0,0,'2019-02-11 07:17:33','2019-04-15 09:04:01'),(316,4,'simple','31045897-black-Small size',0,0,'2019-02-11 07:24:31','2019-04-15 09:04:01'),(317,4,'simple','31045897-black-Medium size',0,0,'2019-02-11 07:24:31','2019-04-15 09:04:01'),(318,4,'simple','30838511-white-Small size',0,0,'2019-02-11 07:24:59','2019-04-15 09:04:01'),(319,4,'simple','30838511-white-Medium size',0,0,'2019-02-11 07:24:59','2019-04-15 09:04:01'),(320,4,'simple','30838511-white-Extra small size',0,0,'2019-02-11 07:25:00','2019-04-15 09:04:01'),(321,4,'simple','30838511-white-Large size',0,0,'2019-02-11 07:25:00','2019-04-15 09:04:01'),(322,4,'simple','31074190-grey-EU 36',0,0,'2019-02-11 07:25:22','2019-04-15 09:04:01'),(323,4,'simple','31074190-grey-EU 37',0,0,'2019-02-11 07:25:23','2019-04-15 09:04:01'),(324,4,'simple','31074190-grey-EU 38',0,0,'2019-02-11 07:25:23','2019-04-15 09:04:01'),(325,4,'simple','31074190-grey-EU 39',0,0,'2019-02-11 07:25:24','2019-04-15 09:04:01'),(326,4,'simple','31074190-grey-EU 40',0,0,'2019-02-11 07:25:24','2019-04-15 09:04:01'),(327,4,'simple','31074190-grey-EU 41',0,0,'2019-02-11 07:25:24','2019-04-15 09:04:01'),(328,4,'simple','31300702-black-Small size',0,0,'2019-02-11 07:25:54','2019-04-15 09:04:01'),(329,4,'simple','31300702-black-Medium size',0,0,'2019-02-11 07:25:54','2019-04-15 09:04:01'),(330,4,'simple','31253491-blue-Medium size',0,0,'2019-02-11 07:26:13','2019-04-15 09:04:01'),(331,4,'simple','31253491-blue-Extra small size',0,0,'2019-02-11 07:26:14','2019-04-15 09:04:01'),(332,4,'simple','31253491-blue-Small size',0,0,'2019-02-11 07:26:14','2019-04-15 09:04:01'),(333,4,'simple','31253491-blue-Large size',0,0,'2019-02-11 07:26:14','2019-04-15 09:04:01'),(334,4,'simple','31266871-white-Extra small size',0,0,'2019-02-11 07:26:41','2019-04-15 09:04:01'),(335,4,'simple','31266871-white-Small size',0,0,'2019-02-11 07:26:41','2019-04-15 09:04:01'),(336,4,'simple','31266871-white-Medium size',0,0,'2019-02-11 07:26:42','2019-04-15 09:04:01'),(337,4,'simple','31266871-white-Large size',0,0,'2019-02-11 07:26:42','2019-04-15 09:04:01'),(338,4,'simple','31160296-white-Small size',0,0,'2019-02-11 07:27:05','2019-04-15 09:04:01'),(339,4,'simple','31160296-white-Extra small size',0,0,'2019-02-11 07:27:05','2019-04-15 09:04:01'),(340,4,'simple','31160296-white-Medium size',0,0,'2019-02-11 07:27:06','2019-04-15 09:04:01'),(341,4,'simple','31253492-blue-Extra small size',0,0,'2019-02-11 07:27:23','2019-04-15 09:04:01'),(342,4,'simple','31253492-blue-Small size',0,0,'2019-02-11 07:27:24','2019-04-15 09:04:01'),(343,4,'simple','31253492-blue-Medium size',0,0,'2019-02-11 07:27:24','2019-04-15 09:04:01'),(344,4,'simple','31253492-blue-Large size',0,0,'2019-02-11 07:27:24','2019-04-15 09:04:01'),(345,4,'simple','31253492-blue-Extra large size',0,0,'2019-02-11 07:27:25','2019-04-15 09:04:01'),(346,4,'simple','31253493-blue-Small size',0,0,'2019-02-11 07:28:06','2019-04-15 09:04:01'),(347,4,'simple','31253493-blue-Large size',0,0,'2019-02-11 07:28:07','2019-04-15 09:04:01'),(348,4,'simple','31253493-blue-Medium size',0,0,'2019-02-11 07:28:07','2019-04-15 09:04:01'),(349,4,'simple','31253493-blue-Extra large size',0,0,'2019-02-11 07:28:07','2019-04-15 09:04:01'),(350,4,'simple','31103364-brown-EU 37',0,0,'2019-02-11 07:28:40','2019-04-15 09:04:01'),(351,4,'simple','31103364-brown-EU 36',0,0,'2019-02-11 07:28:40','2019-04-15 09:04:01'),(352,4,'simple','31103364-brown-EU 38',0,0,'2019-02-11 07:28:41','2019-04-15 09:04:01'),(353,4,'simple','31103364-brown-EU 40',0,0,'2019-02-11 07:28:41','2019-04-15 09:04:01'),(354,4,'simple','31291013-white-Small size',0,0,'2019-02-11 07:30:27','2019-04-15 09:04:01'),(355,4,'simple','31291013-white-Extra small size',0,0,'2019-02-11 07:30:27','2019-04-15 09:04:01'),(356,4,'simple','31291013-white-Large size',0,0,'2019-02-11 07:30:27','2019-04-15 09:04:01'),(357,4,'simple','31291013-white-Medium size',0,0,'2019-02-11 07:30:28','2019-04-15 09:04:01'),(358,4,'simple','31253494-brown-Small size',0,0,'2019-02-11 07:30:59','2019-04-15 09:04:01'),(359,4,'simple','31253494-brown-Medium size',0,0,'2019-02-11 07:31:00','2019-04-15 09:04:01'),(360,4,'simple','31253494-brown-Large size',0,0,'2019-02-11 07:31:00','2019-04-15 09:04:01'),(361,4,'simple','31253494-black-Small size',0,0,'2019-02-11 07:31:01','2019-04-15 09:04:01'),(362,4,'simple','31253494-black-Medium size',0,0,'2019-02-11 07:31:01','2019-04-15 09:04:01'),(363,4,'simple','31253494-black-Large size',0,0,'2019-02-11 07:31:01','2019-04-15 09:04:01'),(364,4,'simple','31319864-white-Small size',0,0,'2019-02-11 07:31:30','2019-04-15 09:04:01'),(365,4,'simple','31319864-white-Medium size',0,0,'2019-02-11 07:31:30','2019-04-15 09:04:01'),(366,4,'simple','31319864-white-Extra small size',0,0,'2019-02-11 07:31:31','2019-04-15 09:04:01'),(367,4,'simple','31319864-white-Large size',0,0,'2019-02-11 07:31:31','2019-04-15 09:04:01'),(368,4,'simple','31151579-brown-Small size',0,0,'2019-02-11 07:31:58','2019-04-15 09:04:01'),(369,4,'simple','31151579-brown-Extra small size',0,0,'2019-02-11 07:31:58','2019-04-15 09:04:01'),(370,4,'simple','31151579-brown-Medium size',0,0,'2019-02-11 07:31:59','2019-04-15 09:04:01'),(371,4,'simple','31151579-brown-Large size',0,0,'2019-02-11 07:31:59','2019-04-15 09:04:01'),(372,4,'simple','31151579-white-Small size',0,0,'2019-02-11 07:31:59','2019-04-15 09:04:01'),(373,4,'simple','31151579-white-Extra small size',0,0,'2019-02-11 07:32:00','2019-04-15 09:04:01'),(374,4,'simple','31151579-white-Medium size',0,0,'2019-02-11 07:32:00','2019-04-15 09:04:01'),(375,4,'simple','31151579-white-Large size',0,0,'2019-02-11 07:32:00','2019-04-15 09:04:01'),(376,4,'simple','31160298-brown-Small size',0,0,'2019-02-11 07:33:27','2019-04-15 09:04:01'),(377,4,'simple','31160298-brown-Medium size',0,0,'2019-02-11 07:33:28','2019-04-15 09:04:01'),(378,4,'simple','31160298-red-Small size',0,0,'2019-02-11 07:33:28','2019-04-15 09:04:01'),(379,4,'simple','31160298-red-Medium size',0,0,'2019-02-11 07:33:29','2019-04-15 09:04:01'),(380,4,'simple','31196404-brown-EU 36',0,0,'2019-02-11 07:34:02','2019-04-15 09:04:01'),(381,4,'simple','31196404-brown-EU 39',0,0,'2019-02-11 07:34:02','2019-04-15 09:04:01'),(382,4,'simple','31196404-brown-EU 40',0,0,'2019-02-11 07:34:03','2019-04-15 09:04:01'),(383,4,'simple','31196404-brown-EU 41',0,0,'2019-02-11 07:34:03','2019-04-15 09:04:01'),(384,4,'simple','31196404-brown-EU 38',0,0,'2019-02-11 07:34:03','2019-04-15 09:04:01'),(385,4,'simple','31253495-grey-Medium size',0,0,'2019-02-11 07:34:27','2019-04-15 09:04:01'),(386,4,'simple','31253495-grey-Small size',0,0,'2019-02-11 07:34:28','2019-04-15 09:04:01'),(387,4,'simple','31253495-grey-Large size',0,0,'2019-02-11 07:34:28','2019-04-15 09:04:01'),(388,4,'simple','31292416-brown-Small size',0,0,'2019-02-11 07:34:58','2019-04-15 09:04:01'),(389,4,'simple','31292416-brown-Extra small size',0,0,'2019-02-11 07:34:59','2019-04-15 09:04:01'),(390,4,'simple','31292416-brown-Medium size',0,0,'2019-02-11 07:34:59','2019-04-15 09:04:01'),(391,4,'simple','31253496-Medium size-black',0,0,'2019-02-11 07:37:25','2019-04-15 09:04:01'),(392,4,'simple','31253496-Small size-black',0,0,'2019-02-11 07:37:26','2019-04-15 09:04:01'),(393,4,'simple','31253496-Large size-black',0,0,'2019-02-11 07:37:26','2019-04-15 09:04:01'),(394,4,'simple','31324632-blue-Small size',0,0,'2019-02-11 07:38:01','2019-04-15 09:04:01'),(395,4,'simple','31324632-blue-Medium size',0,0,'2019-02-11 07:38:02','2019-04-15 09:04:01'),(396,4,'simple','31324632-blue-Large size',0,0,'2019-02-11 07:38:02','2019-04-15 09:04:01'),(397,4,'simple','31239294-red-Small size',0,0,'2019-02-11 07:38:26','2019-04-15 09:04:01'),(398,4,'simple','31239294-red-Extra small size',0,0,'2019-02-11 07:38:27','2019-04-15 09:04:01'),(399,4,'simple','31239294-red-Extra large size',0,0,'2019-02-11 07:38:27','2019-04-15 09:04:01'),(400,4,'simple','31239294-red-Medium size',0,0,'2019-02-11 07:38:27','2019-04-15 09:04:01'),(401,4,'simple','30805166-white-Small size',0,0,'2019-02-11 07:40:21','2019-04-15 09:04:01'),(402,4,'simple','30805166-white-Medium size',0,0,'2019-02-11 07:40:22','2019-04-15 09:04:01'),(403,4,'simple','30805166-white-Extra small size',0,0,'2019-02-11 07:40:22','2019-04-15 09:04:01'),(404,4,'simple','30805166-brown-Small size',0,0,'2019-02-11 07:40:22','2019-04-15 09:04:01'),(405,4,'simple','30805166-brown-Medium size',0,0,'2019-02-11 07:40:23','2019-04-15 09:04:01'),(406,4,'simple','30805166-brown-Extra small size',0,0,'2019-02-11 07:40:23','2019-04-15 09:04:01'),(407,4,'simple','31197648-EU 37-brown',0,0,'2019-02-11 07:40:51','2019-04-15 09:04:01'),(408,4,'simple','31197648-EU 38-brown',0,0,'2019-02-11 07:40:51','2019-04-15 09:04:01'),(409,4,'simple','31197648-EU 39-brown',0,0,'2019-02-11 07:40:51','2019-04-15 09:04:01'),(410,4,'simple','31197648-EU 40-brown',0,0,'2019-02-11 07:40:52','2019-04-15 09:04:01'),(411,4,'simple','31197648-EU 41-brown',0,0,'2019-02-11 07:40:52','2019-04-15 09:04:01'),(412,4,'simple','30988045-white-Small size',0,0,'2019-02-11 07:41:15','2019-04-15 09:04:01'),(413,4,'simple','30988045-white-Medium size',0,0,'2019-02-11 07:41:15','2019-04-15 09:04:01'),(414,4,'simple','30988045-white-Extra large size',0,0,'2019-02-11 07:41:16','2019-04-15 09:04:01'),(415,4,'simple','30988045-white-Large size',0,0,'2019-02-11 07:41:16','2019-04-15 09:04:01'),(416,4,'simple','31093629-white-EU 37',0,0,'2019-02-11 07:41:49','2019-04-15 09:04:01'),(417,4,'simple','31093629-white-EU 38',0,0,'2019-02-11 07:41:49','2019-04-15 09:04:01'),(418,4,'simple','31093629-white-EU 39',0,0,'2019-02-11 07:41:50','2019-04-15 09:04:01'),(419,4,'simple','31093629-white-EU 41',0,0,'2019-02-11 07:41:50','2019-04-15 09:04:01'),(420,4,'simple','31093629-white-EU 40',0,0,'2019-02-11 07:41:50','2019-04-15 09:04:01'),(421,4,'simple','31093629-grey-EU 37',0,0,'2019-02-11 07:41:51','2019-04-15 09:04:01'),(422,4,'simple','31093629-grey-EU 38',0,0,'2019-02-11 07:41:51','2019-04-15 09:04:01'),(423,4,'simple','31093629-grey-EU 39',0,0,'2019-02-11 07:41:51','2019-04-15 09:04:01'),(424,4,'simple','31093629-grey-EU 41',0,0,'2019-02-11 07:41:52','2019-04-15 09:04:01'),(425,4,'simple','31093629-grey-EU 40',0,0,'2019-02-11 07:41:52','2019-04-15 09:04:01'),(426,4,'simple','31253498-blue-Small size',0,0,'2019-02-11 07:42:16','2019-04-15 09:04:01'),(427,4,'simple','31253498-blue-Large size',0,0,'2019-02-11 07:42:17','2019-04-15 09:04:01'),(428,4,'simple','31253498-blue-Medium size',0,0,'2019-02-11 07:42:17','2019-04-15 09:04:01'),(429,4,'simple','31333018-EU 36-white',0,0,'2019-02-11 07:42:42','2019-04-15 09:04:01'),(430,4,'simple','31333018-EU 36-grey',0,0,'2019-02-11 07:42:43','2019-04-15 09:04:01'),(431,4,'simple','31333018-EU 38-white',0,0,'2019-02-11 07:42:43','2019-04-15 09:04:01'),(432,4,'simple','31333018-EU 38-grey',0,0,'2019-02-11 07:42:44','2019-04-15 09:04:01'),(433,4,'simple','31333018-EU 37-white',0,0,'2019-02-11 07:42:44','2019-04-15 09:04:01'),(434,4,'simple','31333018-EU 37-grey',0,0,'2019-02-11 07:42:44','2019-04-15 09:04:01'),(435,4,'simple','31333018-EU 40-white',0,0,'2019-02-11 07:42:45','2019-04-15 09:04:01'),(436,4,'simple','31333018-EU 40-grey',0,0,'2019-02-11 07:42:45','2019-04-15 09:04:01'),(437,4,'simple','31302817-brown-Small size',0,0,'2019-02-11 07:43:08','2019-04-15 09:04:01'),(438,4,'simple','31302817-brown-Large size',0,0,'2019-02-11 07:43:09','2019-04-15 09:04:01'),(439,4,'simple','31302817-brown-Medium size',0,0,'2019-02-11 07:43:09','2019-04-15 09:04:01'),(440,4,'simple','31253499-blue-Small size',0,0,'2019-02-11 07:43:41','2019-04-15 09:04:01'),(441,4,'simple','31253499-blue-Medium size',0,0,'2019-02-11 07:43:41','2019-04-15 09:04:01'),(442,4,'simple','31253499-blue-Large size',0,0,'2019-02-11 07:43:41','2019-04-15 09:04:01'),(443,4,'simple','30945868-white-EU 36',0,0,'2019-02-11 07:44:08','2019-04-15 09:04:01'),(444,4,'simple','30945868-white-EU 38',0,0,'2019-02-11 07:44:08','2019-04-15 09:04:01'),(445,4,'simple','30945868-white-EU 39',0,0,'2019-02-11 07:44:09','2019-04-15 09:04:01'),(446,4,'simple','30945868-white-EU 41',0,0,'2019-02-11 07:44:09','2019-04-15 09:04:01'),(447,4,'simple','30945868-white-EU 40',0,0,'2019-02-11 07:44:09','2019-04-15 09:04:01'),(448,4,'simple','30945868-white-EU 43',0,0,'2019-02-11 07:44:09','2019-04-15 09:04:01'),(449,4,'simple','30945868-grey-EU 36',0,0,'2019-02-11 07:44:10','2019-04-15 09:04:01'),(450,4,'simple','30945868-grey-EU 38',0,0,'2019-02-11 07:44:10','2019-04-15 09:04:01'),(451,4,'simple','30945868-grey-EU 39',0,0,'2019-02-11 07:44:10','2019-04-15 09:04:01'),(452,4,'simple','30945868-grey-EU 41',0,0,'2019-02-11 07:44:11','2019-04-15 09:04:01'),(453,4,'simple','30945868-grey-EU 40',0,0,'2019-02-11 07:44:11','2019-04-15 09:04:01'),(454,4,'simple','30945868-grey-EU 43',0,0,'2019-02-11 07:44:11','2019-04-15 09:04:01'),(455,4,'simple','31091479-brown-Extra small size',0,0,'2019-02-11 07:44:31','2019-04-15 09:04:01'),(456,4,'simple','31091479-brown-Small size',0,0,'2019-02-11 07:44:31','2019-04-15 09:04:01'),(457,4,'simple','31091479-brown-Medium size',0,0,'2019-02-11 07:44:32','2019-04-15 09:04:01'),(458,4,'simple','31250794-white-Small size',0,0,'2019-02-11 07:44:59','2019-04-15 09:04:01'),(459,4,'simple','31250794-white-Extra large size',0,0,'2019-02-11 07:45:00','2019-04-15 09:04:01'),(460,4,'simple','31250794-white-Medium size',0,0,'2019-02-11 07:45:00','2019-04-15 09:04:01'),(461,4,'simple','31219211-white-Small size',0,0,'2019-02-11 07:45:29','2019-04-15 09:04:01'),(462,4,'simple','31219211-white-Medium size',0,0,'2019-02-11 07:45:29','2019-04-15 09:04:01'),(463,4,'simple','31219211-white-Extra large size',0,0,'2019-02-11 07:45:30','2019-04-15 09:04:01'),(464,4,'simple','31219211-white-Large size',0,0,'2019-02-11 07:45:30','2019-04-15 09:04:01'),(465,4,'simple','31166144-white-Small size',0,0,'2019-02-11 07:45:54','2019-04-15 09:04:01'),(466,4,'simple','31166144-white-Medium size',0,0,'2019-02-11 07:45:55','2019-04-15 09:04:01'),(467,4,'simple','31166144-white-Large size',0,0,'2019-02-11 07:45:55','2019-04-15 09:04:01'),(468,4,'simple','31253501-blue-Small size',0,0,'2019-02-11 07:46:18','2019-04-15 09:04:01'),(469,4,'simple','31253501-blue-Large size',0,0,'2019-02-11 07:46:18','2019-04-15 09:04:01'),(470,4,'simple','31253501-blue-Medium size',0,0,'2019-02-11 07:46:19','2019-04-15 09:04:01'),(471,4,'simple','31176055-brown-Extra small size',0,0,'2019-02-11 07:46:44','2019-04-15 09:04:01'),(472,4,'simple','31176055-brown-Extra large size',0,0,'2019-02-11 07:46:44','2019-04-15 09:04:01'),(473,4,'simple','31176055-brown-Small size',0,0,'2019-02-11 07:46:44','2019-04-15 09:04:01'),(474,4,'simple','31176055-brown-Medium size',0,0,'2019-02-11 07:46:45','2019-04-15 09:04:01'),(475,4,'simple','31253502-black-Medium size',0,0,'2019-02-11 07:47:09','2019-04-15 09:04:01'),(476,4,'simple','31253502-black-Small size',0,0,'2019-02-11 07:47:10','2019-04-15 09:04:01'),(477,4,'simple','31253502-black-Large size',0,0,'2019-02-11 07:47:10','2019-04-15 09:04:01'),(478,4,'simple','31207365-white-Small size',0,0,'2019-02-11 07:47:33','2019-04-15 09:04:01'),(479,4,'simple','31207365-white-Large size',0,0,'2019-02-11 07:47:34','2019-04-15 09:04:01'),(480,4,'simple','31207365-white-Extra large size',0,0,'2019-02-11 07:47:34','2019-04-15 09:04:01'),(481,4,'simple','31167823-brown-Small size',0,0,'2019-02-11 07:51:31','2019-04-15 09:04:01'),(482,4,'simple','31167823-brown-Medium size',0,0,'2019-02-11 07:51:32','2019-04-15 09:04:01'),(483,4,'simple','31167823-brown-Large size',0,0,'2019-02-11 07:51:32','2019-04-15 09:04:01'),(484,4,'simple','31167823-brown-Extra small size',0,0,'2019-02-11 07:51:33','2019-04-15 09:04:01'),(485,4,'simple','31226241-grey-Small size',0,0,'2019-02-11 07:52:00','2019-04-15 09:04:01'),(486,4,'simple','31226241-grey-Large size',0,0,'2019-02-11 07:52:00','2019-04-15 09:04:01'),(487,4,'simple','31226241-grey-Extra small size',0,0,'2019-02-11 07:52:01','2019-04-15 09:04:01'),(488,4,'simple','31231309-brown-Extra small size',0,0,'2019-02-11 07:52:29','2019-04-15 09:04:01'),(489,4,'simple','31231309-brown-Small size',0,0,'2019-02-11 07:52:30','2019-04-15 09:04:01'),(490,4,'simple','31231309-brown-Medium size',0,0,'2019-02-11 07:52:30','2019-04-15 09:04:01'),(491,4,'simple','31273656-white-Small size',0,0,'2019-02-11 07:53:01','2019-04-15 09:04:01'),(492,4,'simple','31273656-white-Extra small size',0,0,'2019-02-11 07:53:02','2019-04-15 09:04:01'),(493,4,'simple','31273656-white-Large size',0,0,'2019-02-11 07:53:02','2019-04-15 09:04:01'),(494,4,'simple','31273656-white-Medium size',0,0,'2019-02-11 07:53:03','2019-04-15 09:04:01'),(495,4,'simple','31343872-brown-Small size',0,0,'2019-02-11 07:53:34','2019-04-15 09:04:01'),(496,4,'simple','31343872-brown-Extra small size',0,0,'2019-02-11 07:53:35','2019-04-15 09:04:01'),(497,4,'simple','31343872-brown-Medium size',0,0,'2019-02-11 07:53:35','2019-04-15 09:04:01'),(498,4,'simple','31145394-brown-Small size',0,0,'2019-02-11 07:54:12','2019-04-15 09:04:01'),(499,4,'simple','31145394-brown-Extra small size',0,0,'2019-02-11 07:54:13','2019-04-15 09:04:01'),(500,4,'simple','31145394-brown-Medium size',0,0,'2019-02-11 07:54:13','2019-04-15 09:04:01'),(501,4,'simple','31043406-Small size-brown',0,0,'2019-02-11 07:55:03','2019-04-15 09:04:01'),(502,4,'simple','31043406-Extra small size-brown',0,0,'2019-02-11 07:55:03','2019-04-15 09:04:01'),(503,4,'simple','31043406-Medium size-brown',0,0,'2019-02-11 07:55:04','2019-04-15 09:04:01'),(504,4,'simple','31218012-brown-Extra small size',0,0,'2019-02-11 07:55:12','2019-04-15 09:04:01'),(505,4,'simple','31218012-brown-Small size',0,0,'2019-02-11 07:55:13','2019-04-15 09:04:01'),(506,4,'simple','31218012-brown-Medium size',0,0,'2019-02-11 07:55:13','2019-04-15 09:04:01'),(507,4,'simple','31218012-white-Extra small size',0,0,'2019-02-11 07:55:13','2019-04-15 09:04:01'),(508,4,'simple','31218012-white-Small size',0,0,'2019-02-11 07:55:14','2019-04-15 09:04:01'),(509,4,'simple','31218012-white-Medium size',0,0,'2019-02-11 07:55:14','2019-04-15 09:04:01'),(510,4,'simple','31262293-brown-Extra small size',0,0,'2019-02-11 07:55:34','2019-04-15 09:04:01'),(511,4,'simple','31262293-brown-Small size',0,0,'2019-02-11 07:55:35','2019-04-15 09:04:01'),(512,4,'simple','31262293-brown-Medium size',0,0,'2019-02-11 07:55:35','2019-04-15 09:04:01'),(513,4,'simple','31262295-grey-Extra small size',0,0,'2019-02-11 07:55:58','2019-04-15 09:04:01'),(514,4,'simple','31262295-grey-Small size',0,0,'2019-02-11 07:55:58','2019-04-15 09:04:01'),(515,4,'simple','31262295-grey-Medium size',0,0,'2019-02-11 07:55:58','2019-04-15 09:04:01'),(516,4,'simple','31162615-brown-Small size',0,0,'2019-02-11 07:56:30','2019-04-15 09:04:01'),(517,4,'simple','31268637-red-Extra small size',0,0,'2019-02-11 07:57:02','2019-04-15 09:04:01'),(518,4,'simple','31268637-red-Small size',0,0,'2019-02-11 07:57:02','2019-04-15 09:04:01'),(519,4,'simple','31268637-red-Medium size',0,0,'2019-02-11 07:57:03','2019-04-15 09:04:01'),(520,4,'simple','31001803-brown-Extra small size',0,0,'2019-02-11 07:57:37','2019-04-15 09:04:01'),(521,4,'simple','31001803-brown-Small size',0,0,'2019-02-11 07:57:37','2019-04-15 09:04:01'),(522,4,'simple','31001803-brown-Large size',0,0,'2019-02-11 07:57:38','2019-04-15 09:04:01'),(523,4,'simple','31191497-brown-Medium size',0,0,'2019-02-11 07:58:06','2019-04-15 09:04:01'),(524,4,'simple','310018035-brown-Extra small size',0,0,'2019-02-11 07:58:31','2019-04-15 09:04:01'),(525,4,'simple','310018035-brown-Small size',0,0,'2019-02-11 07:58:32','2019-04-15 09:04:01'),(526,4,'simple','310018035-brown-Medium size',0,0,'2019-02-11 07:58:32','2019-04-15 09:04:01'),(527,4,'simple','31146614-blue-Small size',0,0,'2019-02-11 07:59:06','2019-04-15 09:04:01'),(528,4,'simple','310018033-grey-Extra small size',0,0,'2019-02-11 07:59:34','2019-04-15 09:04:01'),(529,4,'simple','310018033-grey-Small size',0,0,'2019-02-11 07:59:34','2019-04-15 09:04:01'),(530,4,'simple','310018033-grey-Medium size',0,0,'2019-02-11 07:59:35','2019-04-15 09:04:01'),(531,4,'simple','31034537-grey-Small size',0,0,'2019-02-11 08:00:00','2019-04-15 09:04:01'),(532,4,'simple','31350778-black-Extra small size',0,0,'2019-02-11 08:00:24','2019-04-15 09:04:01'),(533,4,'simple','31350778-black-Small size',0,0,'2019-02-11 08:00:25','2019-04-15 09:04:01'),(534,4,'simple','31350778-black-Medium size',0,0,'2019-02-11 08:00:25','2019-04-15 09:04:01'),(535,4,'simple','31350783-white-Extra small size',0,0,'2019-02-11 08:00:44','2019-04-15 09:04:01'),(536,4,'simple','31350783-white-Small size',0,0,'2019-02-11 08:00:44','2019-04-15 09:04:01'),(537,4,'simple','31350783-white-Medium size',0,0,'2019-02-11 08:00:45','2019-04-15 09:04:01'),(538,4,'simple','31292042-grey-Extra small size',0,0,'2019-02-11 08:01:25','2019-04-15 09:04:01'),(539,4,'simple','31292042-grey-Small size',0,0,'2019-02-11 08:01:25','2019-04-15 09:04:01'),(540,4,'simple','31292042-grey-Medium size',0,0,'2019-02-11 08:01:26','2019-04-15 09:04:01'),(541,4,'simple','31062218-blue-Small size',0,0,'2019-02-11 08:01:40','2019-04-15 09:04:01'),(542,4,'simple','31305260-grey-Small size',0,0,'2019-02-11 08:02:02','2019-04-15 09:04:01'),(543,4,'simple','31305260-grey-Medium size',0,0,'2019-02-11 08:02:02','2019-04-15 09:04:01'),(544,4,'simple','31223382-brown',0,0,'2019-02-11 08:02:24','2019-04-15 09:04:01'),(545,4,'simple','31304473-brown',0,0,'2019-02-11 08:02:42','2019-04-15 09:04:01'),(546,4,'simple','31327540-grey',0,0,'2019-02-11 08:03:09','2019-04-15 09:04:01'),(547,4,'simple','31175794-brown',0,0,'2019-02-11 08:03:24','2019-04-15 09:04:01'),(548,4,'simple','31005341-blue',0,0,'2019-02-11 08:03:46','2019-04-15 09:04:01'),(549,4,'simple','30807043-white-EU 39',0,0,'2019-02-27 11:04:35','2019-04-15 09:04:01'),(550,4,'simple','30807043-white-EU 40',0,0,'2019-02-27 11:04:40','2019-04-15 09:04:01'),(551,4,'simple','30807043-white-EU 41',0,0,'2019-02-27 11:04:41','2019-04-15 09:04:01'),(552,4,'simple','30807043-white-EU 42',0,0,'2019-02-27 11:04:43','2019-04-15 09:04:01'),(553,4,'simple','30807043-white-EU 43',0,0,'2019-02-27 11:04:45','2019-04-15 09:04:01'),(554,4,'simple','30807043-white-EU 44',0,0,'2019-02-27 11:04:47','2019-04-15 09:04:01'),(555,4,'simple','30807043-black-EU 39',0,0,'2019-02-27 11:04:49','2019-04-15 09:04:01'),(556,4,'simple','30807043-black-EU 40',0,0,'2019-02-27 11:04:51','2019-04-15 09:04:01'),(557,4,'simple','30807043-black-EU 41',0,0,'2019-02-27 11:04:53','2019-04-15 09:04:01'),(558,4,'simple','30807043-black-EU 42',0,0,'2019-02-27 11:04:55','2019-04-15 09:04:01'),(559,4,'simple','30807043-black-EU 43',0,0,'2019-02-27 11:04:57','2019-04-15 09:04:01'),(560,4,'simple','30807043-black-EU 44',0,0,'2019-02-27 11:04:59','2019-04-15 09:04:01'),(561,4,'simple','30807043-grey-EU 39',0,0,'2019-02-27 11:05:01','2019-04-15 09:04:01'),(562,4,'simple','30807043-grey-EU 40',0,0,'2019-02-27 11:05:02','2019-04-15 09:04:01'),(563,4,'simple','30807043-grey-EU 41',0,0,'2019-02-27 11:05:04','2019-04-15 09:04:01'),(564,4,'simple','30807043-grey-EU 42',0,0,'2019-02-27 11:05:06','2019-04-15 09:04:01'),(565,4,'simple','30807043-grey-EU 43',0,0,'2019-02-27 11:05:08','2019-04-15 09:04:01'),(566,4,'simple','30807043-grey-EU 44',0,0,'2019-02-27 11:05:10','2019-04-15 09:04:01'),(567,4,'simple','30807043-blue-EU 39',0,0,'2019-02-27 11:05:12','2019-04-15 09:04:01'),(568,4,'simple','30807043-blue-EU 40',0,0,'2019-02-27 11:05:14','2019-04-15 09:04:01'),(569,4,'simple','30807043-blue-EU 41',0,0,'2019-02-27 11:05:16','2019-04-15 09:04:01'),(570,4,'simple','30807043-blue-EU 42',0,0,'2019-02-27 11:05:18','2019-04-15 09:04:01'),(571,4,'simple','30807043-blue-EU 43',0,0,'2019-02-27 11:05:20','2019-04-15 09:04:01'),(572,4,'simple','30807043-blue-EU 44',0,0,'2019-02-27 11:05:22','2019-04-15 09:04:01'),(573,4,'simple','30807043-red-EU 39',0,0,'2019-02-27 11:05:24','2019-04-15 09:04:01'),(574,4,'simple','30807043-red-EU 40',0,0,'2019-02-27 11:05:26','2019-04-15 09:04:01'),(575,4,'simple','30807043-red-EU 41',0,0,'2019-02-27 11:05:28','2019-04-15 09:04:01'),(576,4,'simple','30807043-red-EU 42',0,0,'2019-02-27 11:05:30','2019-04-15 09:04:01'),(577,4,'simple','30807043-red-EU 43',0,0,'2019-02-27 11:05:32','2019-04-15 09:04:01'),(578,4,'simple','30807043-red-EU 44',0,0,'2019-02-27 11:05:34','2019-04-15 09:04:01'),(579,4,'simple','31091133-brown-EU 37',0,0,'2019-02-27 11:29:23','2019-04-15 09:04:01'),(580,4,'simple','31091133-brown-EU 38',0,0,'2019-02-27 11:29:28','2019-04-15 09:04:01'),(581,4,'simple','31091133-brown-EU 40',0,0,'2019-02-27 11:29:31','2019-04-15 09:04:01'),(582,4,'simple','31091133-brown-EU 41',0,0,'2019-02-27 11:29:35','2019-04-15 09:04:01'),(583,4,'simple','31091133-brown-EU 42',0,0,'2019-02-27 11:29:39','2019-04-15 09:04:01'),(584,4,'simple','31091133-brown-EU 43',0,0,'2019-02-27 11:29:42','2019-04-15 09:04:01'),(585,4,'simple','31091133-brown-EU 45',0,0,'2019-02-27 11:29:46','2019-04-15 09:04:01'),(586,4,'simple','31091133-white-EU 37',0,0,'2019-02-27 11:29:49','2019-04-15 09:04:01'),(587,4,'simple','31091133-white-EU 38',0,0,'2019-02-27 11:29:53','2019-04-15 09:04:01'),(588,4,'simple','31091133-white-EU 40',0,0,'2019-02-27 11:29:56','2019-04-15 09:04:01'),(589,4,'simple','31091133-white-EU 41',0,0,'2019-02-27 11:29:59','2019-04-15 09:04:01'),(590,4,'simple','31091133-white-EU 42',0,0,'2019-02-27 11:30:03','2019-04-15 09:04:01'),(591,4,'simple','31091133-white-EU 43',0,0,'2019-02-27 11:30:06','2019-04-15 09:04:01'),(592,4,'simple','31091133-white-EU 45',0,0,'2019-02-27 11:30:09','2019-04-15 09:04:01'),(593,4,'simple','31091133-black-EU 37',0,0,'2019-02-27 11:30:13','2019-04-15 09:04:01'),(594,4,'simple','31091133-black-EU 38',0,0,'2019-02-27 11:30:16','2019-04-15 09:04:01'),(595,4,'simple','31091133-black-EU 40',0,0,'2019-02-27 11:30:20','2019-04-15 09:04:01'),(596,4,'simple','31091133-black-EU 41',0,0,'2019-02-27 11:30:23','2019-04-15 09:04:01'),(597,4,'simple','31091133-black-EU 42',0,0,'2019-02-27 11:30:27','2019-04-15 09:04:01'),(598,4,'simple','31091133-black-EU 43',0,0,'2019-02-27 11:30:30','2019-04-15 09:04:01'),(599,4,'simple','31091133-black-EU 45',0,0,'2019-02-27 11:30:34','2019-04-15 09:04:01'),(600,4,'simple','31091133-blue-EU 37',0,0,'2019-02-27 11:30:37','2019-04-15 09:04:01'),(601,4,'simple','31091133-blue-EU 38',0,0,'2019-02-27 11:30:41','2019-04-15 09:04:01'),(602,4,'simple','31091133-blue-EU 40',0,0,'2019-02-27 11:30:44','2019-04-15 09:04:01'),(603,4,'simple','31091133-blue-EU 41',0,0,'2019-02-27 11:30:48','2019-04-15 09:04:01'),(604,4,'simple','31091133-blue-EU 42',0,0,'2019-02-27 11:30:52','2019-04-15 09:04:01'),(605,4,'simple','31091133-blue-EU 43',0,0,'2019-02-27 11:30:55','2019-04-15 09:04:01'),(606,4,'simple','31091133-blue-EU 45',0,0,'2019-02-27 11:30:59','2019-04-15 09:04:01'),(607,4,'simple','31091133-red-EU 37',0,0,'2019-02-27 11:31:03','2019-04-15 09:04:01'),(608,4,'simple','31091133-red-EU 38',0,0,'2019-02-27 11:31:06','2019-04-15 09:04:01'),(609,4,'simple','31091133-red-EU 40',0,0,'2019-02-27 11:31:10','2019-04-15 09:04:01'),(610,4,'simple','31091133-red-EU 41',0,0,'2019-02-27 11:31:13','2019-04-15 09:04:01'),(611,4,'simple','31091133-red-EU 42',0,0,'2019-02-27 11:31:17','2019-04-15 09:04:01'),(612,4,'simple','31091133-red-EU 43',0,0,'2019-02-27 11:31:21','2019-04-15 09:04:01'),(613,4,'simple','31091133-red-EU 45',0,0,'2019-02-27 11:31:24','2019-04-15 09:04:01'),(614,4,'simple','30986434-EU 39-white',0,0,'2019-02-27 12:22:12','2019-04-15 09:04:01'),(615,4,'simple','30986434-EU 39-black',0,0,'2019-02-27 12:22:14','2019-04-15 09:04:01'),(616,4,'simple','30986434-EU 39-grey',0,0,'2019-02-27 12:22:16','2019-04-15 09:04:01'),(617,4,'simple','30986434-EU 39-blue',0,0,'2019-02-27 12:22:17','2019-04-15 09:04:01'),(618,4,'simple','30986434-EU 39-red',0,0,'2019-02-27 12:22:19','2019-04-15 09:04:01'),(619,4,'simple','30986434-EU 40-white',0,0,'2019-02-27 12:22:20','2019-04-15 09:04:01'),(620,4,'simple','30986434-EU 40-black',0,0,'2019-02-27 12:22:22','2019-04-15 09:04:01'),(621,4,'simple','30986434-EU 40-grey',0,0,'2019-02-27 12:22:23','2019-04-15 09:04:01'),(622,4,'simple','30986434-EU 40-blue',0,0,'2019-02-27 12:22:24','2019-04-15 09:04:01'),(623,4,'simple','30986434-EU 40-red',0,0,'2019-02-27 12:22:26','2019-04-15 09:04:01'),(624,4,'simple','30986434-EU 42-white',0,0,'2019-02-27 12:22:27','2019-04-15 09:04:01'),(625,4,'simple','30986434-EU 42-black',0,0,'2019-02-27 12:22:29','2019-04-15 09:04:01'),(626,4,'simple','30986434-EU 42-grey',0,0,'2019-02-27 12:22:30','2019-04-15 09:04:01'),(627,4,'simple','30986434-EU 42-blue',0,0,'2019-02-27 12:22:32','2019-04-15 09:04:01'),(628,4,'simple','30986434-EU 42-red',0,0,'2019-02-27 12:22:33','2019-04-15 09:04:01'),(629,4,'simple','30986434-EU 43-white',0,0,'2019-02-27 12:22:35','2019-04-15 09:04:01'),(630,4,'simple','30986434-EU 43-black',0,0,'2019-02-27 12:22:36','2019-04-15 09:04:01'),(631,4,'simple','30986434-EU 43-grey',0,0,'2019-02-27 12:22:38','2019-04-15 09:04:01'),(632,4,'simple','30986434-EU 43-blue',0,0,'2019-02-27 12:22:39','2019-04-15 09:04:01'),(633,4,'simple','30986434-EU 43-red',0,0,'2019-02-27 12:22:41','2019-04-15 09:04:01'),(634,4,'simple','30986434-EU 44-white',0,0,'2019-02-27 12:22:42','2019-04-15 09:04:01'),(635,4,'simple','30986434-EU 44-black',0,0,'2019-02-27 12:22:44','2019-04-15 09:04:01'),(636,4,'simple','30986434-EU 44-grey',0,0,'2019-02-27 12:22:45','2019-04-15 09:04:01'),(637,4,'simple','30986434-EU 44-blue',0,0,'2019-02-27 12:22:47','2019-04-15 09:04:01'),(638,4,'simple','30986434-EU 44-red',0,0,'2019-02-27 12:22:48','2019-04-15 09:04:01'),(639,4,'simple','30986434-EU 45-white',0,0,'2019-02-27 12:22:50','2019-04-15 09:04:01'),(640,4,'simple','30986434-EU 45-black',0,0,'2019-02-27 12:22:51','2019-04-15 09:04:01'),(641,4,'simple','30986434-EU 45-grey',0,0,'2019-02-27 12:22:53','2019-04-15 09:04:01'),(642,4,'simple','30986434-EU 45-blue',0,0,'2019-02-27 12:22:54','2019-04-15 09:04:01'),(643,4,'simple','30986434-EU 45-red',0,0,'2019-02-27 12:22:55','2019-04-15 09:04:01'),(644,4,'simple','31149594-brown-EU 36',0,0,'2019-02-27 12:33:22','2019-04-15 09:04:01'),(645,4,'simple','31149594-brown-EU 37',0,0,'2019-02-27 12:33:24','2019-04-15 09:04:01'),(646,4,'simple','31149594-brown-EU 38',0,0,'2019-02-27 12:33:26','2019-04-15 09:04:01'),(647,4,'simple','31149594-brown-EU 39',0,0,'2019-02-27 12:33:28','2019-04-15 09:04:01'),(648,4,'simple','31149594-brown-EU 40',0,0,'2019-02-27 12:33:30','2019-04-15 09:04:01'),(649,4,'simple','31149594-brown-EU 41',0,0,'2019-02-27 12:33:32','2019-04-15 09:04:01'),(650,4,'simple','31149594-white-EU 36',0,0,'2019-02-27 12:33:34','2019-04-15 09:04:01'),(651,4,'simple','31149594-white-EU 37',0,0,'2019-02-27 12:33:36','2019-04-15 09:04:01'),(652,4,'simple','31149594-white-EU 38',0,0,'2019-02-27 12:33:38','2019-04-15 09:04:01'),(653,4,'simple','31149594-white-EU 39',0,0,'2019-02-27 12:33:40','2019-04-15 09:04:01'),(654,4,'simple','31149594-white-EU 40',0,0,'2019-02-27 12:33:42','2019-04-15 09:04:01'),(655,4,'simple','31149594-white-EU 41',0,0,'2019-02-27 12:33:44','2019-04-15 09:04:01'),(656,4,'simple','31149594-black-EU 36',0,0,'2019-02-27 12:33:46','2019-04-15 09:04:01'),(657,4,'simple','31149594-black-EU 37',0,0,'2019-02-27 12:33:48','2019-04-15 09:04:01'),(658,4,'simple','31149594-black-EU 38',0,0,'2019-02-27 12:33:50','2019-04-15 09:04:01'),(659,4,'simple','31149594-black-EU 39',0,0,'2019-02-27 12:33:51','2019-04-15 09:04:01'),(660,4,'simple','31149594-black-EU 40',0,0,'2019-02-27 12:33:53','2019-04-15 09:04:01'),(661,4,'simple','31149594-black-EU 41',0,0,'2019-02-27 12:33:55','2019-04-15 09:04:01'),(662,4,'simple','31149594-blue-EU 36',0,0,'2019-02-27 12:33:57','2019-04-15 09:04:01'),(663,4,'simple','31149594-blue-EU 37',0,0,'2019-02-27 12:33:59','2019-04-15 09:04:01'),(664,4,'simple','31149594-blue-EU 38',0,0,'2019-02-27 12:34:01','2019-04-15 09:04:01'),(665,4,'simple','31149594-blue-EU 39',0,0,'2019-02-27 12:34:03','2019-04-15 09:04:01'),(666,4,'simple','31149594-blue-EU 40',0,0,'2019-02-27 12:34:05','2019-04-15 09:04:01'),(667,4,'simple','31149594-blue-EU 41',0,0,'2019-02-27 12:34:07','2019-04-15 09:04:01'),(668,4,'simple','31149594-red-EU 36',0,0,'2019-02-27 12:34:09','2019-04-15 09:04:01'),(669,4,'simple','31149594-red-EU 37',0,0,'2019-02-27 12:34:11','2019-04-15 09:04:01'),(670,4,'simple','31149594-red-EU 38',0,0,'2019-02-27 12:34:13','2019-04-15 09:04:01'),(671,4,'simple','31149594-red-EU 39',0,0,'2019-02-27 12:34:15','2019-04-15 09:04:01'),(672,4,'simple','31149594-red-EU 40',0,0,'2019-02-27 12:34:17','2019-04-15 09:04:01'),(673,4,'simple','31149594-red-EU 41',0,0,'2019-02-27 12:34:19','2019-04-15 09:04:01'),(674,4,'simple','31091010-EU 39-brown',0,0,'2019-02-27 12:51:21','2019-04-15 09:04:01'),(675,4,'simple','31091010-EU 39-white',0,0,'2019-02-27 12:51:23','2019-04-15 09:04:01'),(676,4,'simple','31091010-EU 39-black',0,0,'2019-02-27 12:51:25','2019-04-15 09:04:01'),(677,4,'simple','31091010-EU 39-grey',0,0,'2019-02-27 12:51:27','2019-04-15 09:04:01'),(678,4,'simple','31091010-EU 39-red',0,0,'2019-02-27 12:51:29','2019-04-15 09:04:01'),(679,4,'simple','31091010-EU 40-brown',0,0,'2019-02-27 12:51:31','2019-04-15 09:04:01'),(680,4,'simple','31091010-EU 40-white',0,0,'2019-02-27 12:51:33','2019-04-15 09:04:01'),(681,4,'simple','31091010-EU 40-black',0,0,'2019-02-27 12:51:35','2019-04-15 09:04:01'),(682,4,'simple','31091010-EU 40-grey',0,0,'2019-02-27 12:51:37','2019-04-15 09:04:01'),(683,4,'simple','31091010-EU 40-red',0,0,'2019-02-27 12:51:39','2019-04-15 09:04:01'),(684,4,'simple','31091010-EU 41-brown',0,0,'2019-02-27 12:51:41','2019-04-15 09:04:01'),(685,4,'simple','31091010-EU 41-white',0,0,'2019-02-27 12:51:43','2019-04-15 09:04:01'),(686,4,'simple','31091010-EU 41-black',0,0,'2019-02-27 12:51:45','2019-04-15 09:04:01'),(687,4,'simple','31091010-EU 41-grey',0,0,'2019-02-27 12:51:47','2019-04-15 09:04:01'),(688,4,'simple','31091010-EU 41-red',0,0,'2019-02-27 12:51:48','2019-04-15 09:04:01'),(689,4,'simple','31091010-EU 42-brown',0,0,'2019-02-27 12:51:50','2019-04-15 09:04:01'),(690,4,'simple','31091010-EU 42-white',0,0,'2019-02-27 12:51:52','2019-04-15 09:04:01'),(691,4,'simple','31091010-EU 42-black',0,0,'2019-02-27 12:51:54','2019-04-15 09:04:01'),(692,4,'simple','31091010-EU 42-grey',0,0,'2019-02-27 12:51:56','2019-04-15 09:04:01'),(693,4,'simple','31091010-EU 42-red',0,0,'2019-02-27 12:51:58','2019-04-15 09:04:01'),(694,4,'simple','31091010-EU 43-brown',0,0,'2019-02-27 12:52:00','2019-04-15 09:04:01'),(695,4,'simple','31091010-EU 43-white',0,0,'2019-02-27 12:52:02','2019-04-15 09:04:01'),(696,4,'simple','31091010-EU 43-black',0,0,'2019-02-27 12:52:04','2019-04-15 09:04:01'),(697,4,'simple','31091010-EU 43-grey',0,0,'2019-02-27 12:52:06','2019-04-15 09:04:01'),(698,4,'simple','31091010-EU 43-red',0,0,'2019-02-27 12:52:08','2019-04-15 09:04:01'),(699,4,'simple','31276018-EU 40-brown',0,0,'2019-02-28 15:45:12','2019-04-15 09:04:01'),(700,4,'simple','31276018-EU 40-white',0,0,'2019-02-28 15:45:15','2019-04-15 09:04:01'),(701,4,'simple','31276018-EU 40-grey',0,0,'2019-02-28 15:45:17','2019-04-15 09:04:01'),(702,4,'simple','31276018-EU 40-blue',0,0,'2019-02-28 15:45:19','2019-04-15 09:04:01'),(703,4,'simple','31276018-EU 40-red',0,0,'2019-02-28 15:45:21','2019-04-15 09:04:01'),(704,4,'simple','31276018-EU 41-brown',0,0,'2019-02-28 15:45:23','2019-04-15 09:04:01'),(705,4,'simple','31276018-EU 41-white',0,0,'2019-02-28 15:45:25','2019-04-15 09:04:01'),(706,4,'simple','31276018-EU 41-grey',0,0,'2019-02-28 15:45:27','2019-04-15 09:04:01'),(707,4,'simple','31276018-EU 41-blue',0,0,'2019-02-28 15:45:29','2019-04-15 09:04:01'),(708,4,'simple','31276018-EU 41-red',0,0,'2019-02-28 15:45:31','2019-04-15 09:04:01'),(709,4,'simple','31276018-EU 42-brown',0,0,'2019-02-28 15:45:33','2019-04-15 09:04:01'),(710,4,'simple','31276018-EU 42-white',0,0,'2019-02-28 15:45:35','2019-04-15 09:04:01'),(711,4,'simple','31276018-EU 42-grey',0,0,'2019-02-28 15:45:37','2019-04-15 09:04:01'),(712,4,'simple','31276018-EU 42-blue',0,0,'2019-02-28 15:45:39','2019-04-15 09:04:01'),(713,4,'simple','31276018-EU 42-red',0,0,'2019-02-28 15:45:41','2019-04-15 09:04:01'),(714,4,'simple','31134483-brown-Extra small size',0,0,'2019-02-28 16:06:54','2019-04-15 09:04:01'),(715,4,'simple','31134483-brown-Small size',0,0,'2019-02-28 16:06:56','2019-04-15 09:04:01'),(716,4,'simple','31134483-brown-Medium size',0,0,'2019-02-28 16:06:58','2019-04-15 09:04:01'),(717,4,'simple','31134483-brown-Large size',0,0,'2019-02-28 16:06:59','2019-04-15 09:04:01'),(718,4,'simple','31134483-white-Extra small size',0,0,'2019-02-28 16:07:01','2019-04-15 09:04:01'),(719,4,'simple','31134483-white-Small size',0,0,'2019-02-28 16:07:03','2019-04-15 09:04:01'),(720,4,'simple','31134483-white-Medium size',0,0,'2019-02-28 16:07:04','2019-04-15 09:04:01'),(721,4,'simple','31134483-white-Large size',0,0,'2019-02-28 16:07:06','2019-04-15 09:04:01'),(722,4,'simple','31134483-black-Extra small size',0,0,'2019-02-28 16:07:07','2019-04-15 09:04:01'),(723,4,'simple','31134483-black-Small size',0,0,'2019-02-28 16:07:09','2019-04-15 09:04:01'),(724,4,'simple','31134483-black-Medium size',0,0,'2019-02-28 16:07:10','2019-04-15 09:04:01'),(725,4,'simple','31134483-black-Large size',0,0,'2019-02-28 16:07:12','2019-04-15 09:04:01'),(726,4,'simple','31134483-blue-Extra small size',0,0,'2019-02-28 16:07:13','2019-04-15 09:04:01'),(727,4,'simple','31134483-blue-Small size',0,0,'2019-02-28 16:07:15','2019-04-15 09:04:01'),(728,4,'simple','31134483-blue-Medium size',0,0,'2019-02-28 16:07:16','2019-04-15 09:04:01'),(729,4,'simple','31134483-blue-Large size',0,0,'2019-02-28 16:07:18','2019-04-15 09:04:01'),(730,4,'simple','31134483-red-Extra small size',0,0,'2019-02-28 16:07:19','2019-04-15 09:04:01'),(731,4,'simple','31134483-red-Small size',0,0,'2019-02-28 16:07:21','2019-04-15 09:04:01'),(732,4,'simple','31134483-red-Medium size',0,0,'2019-02-28 16:07:23','2019-04-15 09:04:01'),(733,4,'simple','31134483-red-Large size',0,0,'2019-02-28 16:07:24','2019-04-15 09:04:01'),(734,4,'simple','31276018-1-white-EU 42',0,0,'2019-02-28 17:09:19','2019-04-15 09:04:01'),(735,4,'simple','31276018-1-white-EU 43',0,0,'2019-02-28 17:09:22','2019-04-15 09:04:01'),(736,4,'simple','31276018-1-white-EU 44',0,0,'2019-02-28 17:09:23','2019-04-15 09:04:01'),(737,4,'simple','31276018-1-black-EU 42',0,0,'2019-02-28 17:09:25','2019-04-15 09:04:01'),(738,4,'simple','31276018-1-black-EU 43',0,0,'2019-02-28 17:09:26','2019-04-15 09:04:01'),(739,4,'simple','31276018-1-black-EU 44',0,0,'2019-02-28 17:09:28','2019-04-15 09:04:01'),(740,4,'simple','31276018-1-grey-EU 42',0,0,'2019-02-28 17:09:29','2019-04-15 09:04:01'),(741,4,'simple','31276018-1-grey-EU 43',0,0,'2019-02-28 17:09:31','2019-04-15 09:04:01'),(742,4,'simple','31276018-1-grey-EU 44',0,0,'2019-02-28 17:09:32','2019-04-15 09:04:01'),(743,4,'simple','31276018-1-blue-EU 42',0,0,'2019-02-28 17:09:34','2019-04-15 09:04:01'),(744,4,'simple','31276018-1-blue-EU 43',0,0,'2019-02-28 17:09:36','2019-04-15 09:04:01'),(745,4,'simple','31276018-1-blue-EU 44',0,0,'2019-02-28 17:09:37','2019-04-15 09:04:01'),(746,4,'simple','31276018-1-red-EU 42',0,0,'2019-02-28 17:09:39','2019-04-15 09:04:01'),(747,4,'simple','31276018-1-red-EU 43',0,0,'2019-02-28 17:09:40','2019-04-15 09:04:01'),(748,4,'simple','31276018-1-red-EU 44',0,0,'2019-02-28 17:09:42','2019-04-15 09:04:01'),(749,4,'simple','31135088-brown-Small size',0,0,'2019-02-28 17:21:28','2019-04-15 09:04:01'),(750,4,'simple','31135088-brown-Medium size',0,0,'2019-02-28 17:21:30','2019-04-15 09:04:01'),(751,4,'simple','31135088-brown-Large size',0,0,'2019-02-28 17:21:32','2019-04-15 09:04:01'),(752,4,'simple','31135088-brown-Extra large size',0,0,'2019-02-28 17:21:33','2019-04-15 09:04:01'),(753,4,'simple','31135088-white-Small size',0,0,'2019-02-28 17:21:35','2019-04-15 09:04:01'),(754,4,'simple','31135088-white-Medium size',0,0,'2019-02-28 17:21:36','2019-04-15 09:04:01'),(755,4,'simple','31135088-white-Large size',0,0,'2019-02-28 17:21:38','2019-04-15 09:04:01'),(756,4,'simple','31135088-white-Extra large size',0,0,'2019-02-28 17:21:39','2019-04-15 09:04:01'),(757,4,'simple','31135088-grey-Small size',0,0,'2019-02-28 17:21:41','2019-04-15 09:04:01'),(758,4,'simple','31135088-grey-Medium size',0,0,'2019-02-28 17:21:43','2019-04-15 09:04:01'),(759,4,'simple','31135088-grey-Large size',0,0,'2019-02-28 17:21:44','2019-04-15 09:04:01'),(760,4,'simple','31135088-grey-Extra large size',0,0,'2019-02-28 17:21:46','2019-04-15 09:04:01'),(761,4,'simple','31135088-blue-Small size',0,0,'2019-02-28 17:21:47','2019-04-15 09:04:01'),(762,4,'simple','31135088-blue-Medium size',0,0,'2019-02-28 17:21:49','2019-04-15 09:04:01'),(763,4,'simple','31135088-blue-Large size',0,0,'2019-02-28 17:21:50','2019-04-15 09:04:01'),(764,4,'simple','31135088-blue-Extra large size',0,0,'2019-02-28 17:21:52','2019-04-15 09:04:01'),(765,4,'simple','31135088-red-Small size',0,0,'2019-02-28 17:21:53','2019-04-15 09:04:01'),(766,4,'simple','31135088-red-Medium size',0,0,'2019-02-28 17:21:55','2019-04-15 09:04:01'),(767,4,'simple','31135088-red-Large size',0,0,'2019-02-28 17:21:56','2019-04-15 09:04:01'),(768,4,'simple','31135088-red-Extra large size',0,0,'2019-02-28 17:21:58','2019-04-15 09:04:01'),(769,4,'simple','31207422-white-Extra small size',0,0,'2019-02-28 17:44:16','2019-04-15 09:04:01'),(770,4,'simple','31207422-white-Small size',0,0,'2019-02-28 17:44:19','2019-04-15 09:04:01'),(771,4,'simple','31207422-white-Medium size',0,0,'2019-02-28 17:44:21','2019-04-15 09:04:01'),(772,4,'simple','31207422-white-Large size',0,0,'2019-02-28 17:44:23','2019-04-15 09:04:01'),(773,4,'simple','31207422-black-Extra small size',0,0,'2019-02-28 17:44:24','2019-04-15 09:04:01'),(774,4,'simple','31207422-black-Small size',0,0,'2019-02-28 17:44:26','2019-04-15 09:04:01'),(775,4,'simple','31207422-black-Medium size',0,0,'2019-02-28 17:44:27','2019-04-15 09:04:01'),(776,4,'simple','31207422-black-Large size',0,0,'2019-02-28 17:44:29','2019-04-15 09:04:01'),(777,4,'simple','31207422-grey-Extra small size',0,0,'2019-02-28 17:44:30','2019-04-15 09:04:01'),(778,4,'simple','31207422-grey-Small size',0,0,'2019-02-28 17:44:32','2019-04-15 09:04:01'),(779,4,'simple','31207422-grey-Medium size',0,0,'2019-02-28 17:44:33','2019-04-15 09:04:01'),(780,4,'simple','31207422-grey-Large size',0,0,'2019-02-28 17:44:35','2019-04-15 09:04:01'),(781,4,'simple','31207422-blue-Extra small size',0,0,'2019-02-28 17:44:37','2019-04-15 09:04:01'),(782,4,'simple','31207422-blue-Small size',0,0,'2019-02-28 17:44:38','2019-04-15 09:04:01'),(783,4,'simple','31207422-blue-Medium size',0,0,'2019-02-28 17:44:40','2019-04-15 09:04:01'),(784,4,'simple','31207422-blue-Large size',0,0,'2019-02-28 17:44:41','2019-04-15 09:04:01'),(785,4,'simple','31207422-red-Extra small size',0,0,'2019-02-28 17:44:43','2019-04-15 09:04:01'),(786,4,'simple','31207422-red-Small size',0,0,'2019-02-28 17:44:44','2019-04-15 09:04:01'),(787,4,'simple','31207422-red-Medium size',0,0,'2019-02-28 17:44:46','2019-04-15 09:04:01'),(788,4,'simple','31207422-red-Large size',0,0,'2019-02-28 17:44:47','2019-04-15 09:04:01'),(789,4,'simple','31231300-1-white-Small size',0,0,'2019-02-28 18:10:56','2019-04-15 09:04:01'),(790,4,'simple','31231300-1-white-Medium size',0,0,'2019-02-28 18:10:58','2019-04-15 09:04:01'),(791,4,'simple','31231300-1-white-Large size',0,0,'2019-02-28 18:11:00','2019-04-15 09:04:01'),(792,4,'simple','31231300-1-black-Small size',0,0,'2019-02-28 18:11:01','2019-04-15 09:04:01'),(793,4,'simple','31231300-1-black-Medium size',0,0,'2019-02-28 18:11:03','2019-04-15 09:04:01'),(794,4,'simple','31231300-1-black-Large size',0,0,'2019-02-28 18:11:04','2019-04-15 09:04:01'),(795,4,'simple','31231300-1-grey-Small size',0,0,'2019-02-28 18:11:06','2019-04-15 09:04:01'),(796,4,'simple','31231300-1-grey-Medium size',0,0,'2019-02-28 18:11:07','2019-04-15 09:04:01'),(797,4,'simple','31231300-1-grey-Large size',0,0,'2019-02-28 18:11:09','2019-04-15 09:04:01'),(798,4,'simple','31231300-1-blue-Small size',0,0,'2019-02-28 18:11:10','2019-04-15 09:04:01'),(799,4,'simple','31231300-1-blue-Medium size',0,0,'2019-02-28 18:11:12','2019-04-15 09:04:01'),(800,4,'simple','31231300-1-blue-Large size',0,0,'2019-02-28 18:11:13','2019-04-15 09:04:01'),(801,4,'simple','31231300-1-red-Small size',0,0,'2019-02-28 18:11:15','2019-04-15 09:04:01'),(802,4,'simple','31231300-1-red-Medium size',0,0,'2019-02-28 18:11:16','2019-04-15 09:04:01'),(803,4,'simple','31231300-1-red-Large size',0,0,'2019-02-28 18:11:18','2019-04-15 09:04:01'),(804,4,'simple','31189077-1-brown-Small size',0,0,'2019-02-28 18:56:44','2019-04-15 09:04:01'),(805,4,'simple','31189077-1-brown-Medium size',0,0,'2019-02-28 18:56:47','2019-04-15 09:04:01'),(806,4,'simple','31189077-1-brown-Large size',0,0,'2019-02-28 18:56:48','2019-04-15 09:04:01'),(807,4,'simple','31189077-1-brown-Extra large size',0,0,'2019-02-28 18:56:50','2019-04-15 09:04:01'),(808,4,'simple','31189077-1-white-Small size',0,0,'2019-02-28 18:56:51','2019-04-15 09:04:01'),(809,4,'simple','31189077-1-white-Medium size',0,0,'2019-02-28 18:56:53','2019-04-15 09:04:01'),(810,4,'simple','31189077-1-white-Large size',0,0,'2019-02-28 18:56:54','2019-04-15 09:04:01'),(811,4,'simple','31189077-1-white-Extra large size',0,0,'2019-02-28 18:56:56','2019-04-15 09:04:01'),(812,4,'simple','31189077-1-grey-Small size',0,0,'2019-02-28 18:56:57','2019-04-15 09:04:01'),(813,4,'simple','31189077-1-grey-Medium size',0,0,'2019-02-28 18:56:59','2019-04-15 09:04:01'),(814,4,'simple','31189077-1-grey-Large size',0,0,'2019-02-28 18:57:01','2019-04-15 09:04:01'),(815,4,'simple','31189077-1-grey-Extra large size',0,0,'2019-02-28 18:57:02','2019-04-15 09:04:01'),(816,4,'simple','31189077-1-blue-Small size',0,0,'2019-02-28 18:57:04','2019-04-15 09:04:01'),(817,4,'simple','31189077-1-blue-Medium size',0,0,'2019-02-28 18:57:05','2019-04-15 09:04:01'),(818,4,'simple','31189077-1-blue-Large size',0,0,'2019-02-28 18:57:07','2019-04-15 09:04:01'),(819,4,'simple','31189077-1-blue-Extra large size',0,0,'2019-02-28 18:57:08','2019-04-15 09:04:01'),(820,4,'simple','31189077-1-red-Small size',0,0,'2019-02-28 18:57:10','2019-04-15 09:04:01'),(821,4,'simple','31189077-1-red-Medium size',0,0,'2019-02-28 18:57:11','2019-04-15 09:04:01'),(822,4,'simple','31189077-1-red-Large size',0,0,'2019-02-28 18:57:13','2019-04-15 09:04:01'),(823,4,'simple','31189077-1-red-Extra large size',0,0,'2019-02-28 18:57:14','2019-04-15 09:04:01'),(824,4,'simple','31167823-white-Extra small size',0,0,'2019-03-01 07:00:47','2019-04-15 09:04:01'),(825,4,'simple','31167823-white-Small size',0,0,'2019-03-01 07:00:52','2019-04-15 09:04:01'),(826,4,'simple','31167823-white-Medium size',0,0,'2019-03-01 07:00:56','2019-04-15 09:04:01'),(827,4,'simple','31167823-white-Large size',0,0,'2019-03-01 07:01:00','2019-04-15 09:04:01'),(828,4,'simple','31167823-black-Extra small size',0,0,'2019-03-01 07:01:04','2019-04-15 09:04:01'),(829,4,'simple','31167823-black-Small size',0,0,'2019-03-01 07:01:08','2019-04-15 09:04:01'),(830,4,'simple','31167823-black-Medium size',0,0,'2019-03-01 07:01:12','2019-04-15 09:04:01'),(831,4,'simple','31167823-black-Large size',0,0,'2019-03-01 07:01:15','2019-04-15 09:04:01'),(832,4,'simple','31167823-grey-Extra small size',0,0,'2019-03-01 07:01:19','2019-04-15 09:04:01'),(833,4,'simple','31167823-grey-Small size',0,0,'2019-03-01 07:01:23','2019-04-15 09:04:01'),(834,4,'simple','31167823-grey-Medium size',0,0,'2019-03-01 07:01:27','2019-04-15 09:04:01'),(835,4,'simple','31167823-grey-Large size',0,0,'2019-03-01 07:01:31','2019-04-15 09:04:01'),(836,4,'simple','31167823-blue-Extra small size',0,0,'2019-03-01 07:01:35','2019-04-15 09:04:01'),(837,4,'simple','31167823-blue-Small size',0,0,'2019-03-01 07:01:39','2019-04-15 09:04:01'),(838,4,'simple','31167823-blue-Medium size',0,0,'2019-03-01 07:01:43','2019-04-15 09:04:01'),(839,4,'simple','31167823-blue-Large size',0,0,'2019-03-01 07:01:47','2019-04-15 09:04:01'),(840,4,'simple','31167823-red-Extra small size',0,0,'2019-03-01 07:01:51','2019-04-15 09:04:01'),(841,4,'simple','31167823-red-Small size',0,0,'2019-03-01 07:01:55','2019-04-15 09:04:01'),(842,4,'simple','31167823-red-Medium size',0,0,'2019-03-01 07:01:59','2019-04-15 09:04:01'),(843,4,'simple','31167823-red-Large size',0,0,'2019-03-01 07:02:03','2019-04-15 09:04:01'),(844,4,'simple','31189007-brown-Small size',0,0,'2019-03-01 08:21:20','2019-04-15 09:04:01'),(845,4,'simple','31189007-brown-Medium size',0,0,'2019-03-01 08:21:25','2019-04-15 09:04:01'),(846,4,'simple','31189007-brown-Large size',0,0,'2019-03-01 08:21:27','2019-04-15 09:04:01'),(847,4,'simple','31189007-brown-Extra large size',0,0,'2019-03-01 08:21:30','2019-04-15 09:04:01'),(848,4,'simple','31189007-white-Small size',0,0,'2019-03-01 08:21:33','2019-04-15 09:04:01'),(849,4,'simple','31189007-white-Medium size',0,0,'2019-03-01 08:21:36','2019-04-15 09:04:01'),(850,4,'simple','31189007-white-Large size',0,0,'2019-03-01 08:21:38','2019-04-15 09:04:01'),(851,4,'simple','31189007-white-Extra large size',0,0,'2019-03-01 08:21:41','2019-04-15 09:04:01'),(852,4,'simple','31189007-grey-Small size',0,0,'2019-03-01 08:21:44','2019-04-15 09:04:01'),(853,4,'simple','31189007-grey-Medium size',0,0,'2019-03-01 08:21:47','2019-04-15 09:04:01'),(854,4,'simple','31189007-grey-Large size',0,0,'2019-03-01 08:21:49','2019-04-15 09:04:01'),(855,4,'simple','31189007-grey-Extra large size',0,0,'2019-03-01 08:21:52','2019-04-15 09:04:01'),(856,4,'simple','31189007-blue-Small size',0,0,'2019-03-01 08:21:55','2019-04-15 09:04:01'),(857,4,'simple','31189007-blue-Medium size',0,0,'2019-03-01 08:21:58','2019-04-15 09:04:01'),(858,4,'simple','31189007-blue-Large size',0,0,'2019-03-01 08:22:00','2019-04-15 09:04:01'),(859,4,'simple','31189007-blue-Extra large size',0,0,'2019-03-01 08:22:03','2019-04-15 09:04:01'),(860,4,'simple','31189007-red-Small size',0,0,'2019-03-01 08:22:06','2019-04-15 09:04:01'),(861,4,'simple','31189007-red-Medium size',0,0,'2019-03-01 08:22:10','2019-04-15 09:04:01'),(862,4,'simple','31189007-red-Large size',0,0,'2019-03-01 08:22:14','2019-04-15 09:04:01'),(863,4,'simple','31189007-red-Extra large size',0,0,'2019-03-01 08:22:16','2019-04-15 09:04:01'),(864,4,'simple','31189077-brown-Small size',0,0,'2019-03-01 08:56:57','2019-04-15 09:04:01'),(865,4,'simple','31189077-brown-Medium size',0,0,'2019-03-01 08:57:00','2019-04-15 09:04:01'),(866,4,'simple','31189077-brown-Large size',0,0,'2019-03-01 08:57:02','2019-04-15 09:04:01'),(867,4,'simple','31189077-white-Small size',0,0,'2019-03-01 08:57:03','2019-04-15 09:04:01'),(868,4,'simple','31189077-white-Medium size',0,0,'2019-03-01 08:57:05','2019-04-15 09:04:01'),(869,4,'simple','31189077-white-Large size',0,0,'2019-03-01 08:57:06','2019-04-15 09:04:01'),(870,4,'simple','31189077-black-Small size',0,0,'2019-03-01 08:57:08','2019-04-15 09:04:01'),(871,4,'simple','31189077-black-Medium size',0,0,'2019-03-01 08:57:09','2019-04-15 09:04:01'),(872,4,'simple','31189077-black-Large size',0,0,'2019-03-01 08:57:11','2019-04-15 09:04:01'),(873,4,'simple','31189077-blue-Small size',0,0,'2019-03-01 08:57:12','2019-04-15 09:04:01'),(874,4,'simple','31189077-blue-Medium size',0,0,'2019-03-01 08:57:14','2019-04-15 09:04:01'),(875,4,'simple','31189077-blue-Large size',0,0,'2019-03-01 08:57:16','2019-04-15 09:04:01'),(876,4,'simple','31189077-red-Small size',0,0,'2019-03-01 08:57:18','2019-04-15 09:04:01'),(877,4,'simple','31189077-red-Medium size',0,0,'2019-03-01 08:57:20','2019-04-15 09:04:01'),(878,4,'simple','31189077-red-Large size',0,0,'2019-03-01 08:57:21','2019-04-15 09:04:01'),(879,4,'simple','31231300-brown-Extra small size',0,0,'2019-03-01 10:10:00','2019-04-15 09:04:01'),(880,4,'simple','31231300-brown-Small size',0,0,'2019-03-01 10:10:03','2019-04-15 09:04:01'),(881,4,'simple','31231300-brown-Medium size',0,0,'2019-03-01 10:10:06','2019-04-15 09:04:01'),(882,4,'simple','31231300-brown-Large size',0,0,'2019-03-01 10:10:08','2019-04-15 09:04:01'),(883,4,'simple','31231300-brown-Extra large size',0,0,'2019-03-01 10:10:10','2019-04-15 09:04:01'),(884,4,'simple','31231300-white-Extra small size',0,0,'2019-03-01 10:10:13','2019-04-15 09:04:01'),(885,4,'simple','31231300-white-Small size',0,0,'2019-03-01 10:10:15','2019-04-15 09:04:01'),(886,4,'simple','31231300-white-Medium size',0,0,'2019-03-01 10:10:18','2019-04-15 09:04:01'),(887,4,'simple','31231300-white-Large size',0,0,'2019-03-01 10:10:20','2019-04-15 09:04:01'),(888,4,'simple','31231300-white-Extra large size',0,0,'2019-03-01 10:10:22','2019-04-15 09:04:01'),(889,4,'simple','31231300-grey-Extra small size',0,0,'2019-03-01 10:10:25','2019-04-15 09:04:01'),(890,4,'simple','31231300-grey-Small size',0,0,'2019-03-01 10:10:27','2019-04-15 09:04:01'),(891,4,'simple','31231300-grey-Medium size',0,0,'2019-03-01 10:10:29','2019-04-15 09:04:01'),(892,4,'simple','31231300-grey-Large size',0,0,'2019-03-01 10:10:32','2019-04-15 09:04:01'),(893,4,'simple','31231300-grey-Extra large size',0,0,'2019-03-01 10:10:34','2019-04-15 09:04:01'),(894,4,'simple','31231300-blue-Extra small size',0,0,'2019-03-01 10:10:37','2019-04-15 09:04:01'),(895,4,'simple','31231300-blue-Small size',0,0,'2019-03-01 10:10:39','2019-04-15 09:04:01'),(896,4,'simple','31231300-blue-Medium size',0,0,'2019-03-01 10:10:41','2019-04-15 09:04:01'),(897,4,'simple','31231300-blue-Large size',0,0,'2019-03-01 10:10:44','2019-04-15 09:04:01'),(898,4,'simple','31231300-blue-Extra large size',0,0,'2019-03-01 10:10:46','2019-04-15 09:04:01'),(899,4,'simple','31231300-red-Extra small size',0,0,'2019-03-01 10:10:48','2019-04-15 09:04:01'),(900,4,'simple','31231300-red-Small size',0,0,'2019-03-01 10:10:51','2019-04-15 09:04:01'),(901,4,'simple','31231300-red-Medium size',0,0,'2019-03-01 10:10:53','2019-04-15 09:04:01'),(902,4,'simple','31231300-red-Large size',0,0,'2019-03-01 10:10:56','2019-04-15 09:04:01'),(903,4,'simple','31231300-red-Extra large size',0,0,'2019-03-01 10:10:58','2019-04-15 09:04:01'),(904,4,'simple','31273656-brown-Extra small size',0,0,'2019-03-01 11:08:57','2019-04-15 09:04:01'),(905,4,'simple','31273656-brown-Small size',0,0,'2019-03-01 11:09:03','2019-04-15 09:04:01'),(906,4,'simple','31273656-brown-Medium size',0,0,'2019-03-01 11:09:07','2019-04-15 09:04:01'),(907,4,'simple','31273656-brown-Large size',0,0,'2019-03-01 11:09:11','2019-04-15 09:04:01'),(908,4,'simple','31273656-black-Extra small size',0,0,'2019-03-01 11:09:14','2019-04-15 09:04:01'),(909,4,'simple','31273656-black-Small size',0,0,'2019-03-01 11:09:18','2019-04-15 09:04:01'),(910,4,'simple','31273656-black-Medium size',0,0,'2019-03-01 11:09:22','2019-04-15 09:04:01'),(911,4,'simple','31273656-black-Large size',0,0,'2019-03-01 11:09:26','2019-04-15 09:04:01'),(912,4,'simple','31273656-grey-Extra small size',0,0,'2019-03-01 11:09:30','2019-04-15 09:04:01'),(913,4,'simple','31273656-grey-Small size',0,0,'2019-03-01 11:09:34','2019-04-15 09:04:01'),(914,4,'simple','31273656-grey-Medium size',0,0,'2019-03-01 11:09:38','2019-04-15 09:04:01'),(915,4,'simple','31273656-grey-Large size',0,0,'2019-03-01 11:09:41','2019-04-15 09:04:01'),(924,4,'simple','31253502-grey-Small size',0,0,'2019-03-01 11:36:24','2019-04-15 09:04:01'),(925,4,'simple','31253502-grey-Medium size',0,0,'2019-03-01 11:36:27','2019-04-15 09:04:01'),(926,4,'simple','31253502-grey-Large size',0,0,'2019-03-01 11:36:28','2019-04-15 09:04:01'),(927,4,'simple','31253502-blue-Small size',0,0,'2019-03-01 11:36:30','2019-04-15 09:04:01'),(928,4,'simple','31253502-blue-Medium size',0,0,'2019-03-01 11:36:31','2019-04-15 09:04:01'),(929,4,'simple','31253502-blue-Large size',0,0,'2019-03-01 11:36:33','2019-04-15 09:04:01'),(930,4,'simple','31253502-black-Small size-1',0,0,'2019-03-04 05:42:40','2019-04-15 09:04:01'),(931,4,'simple','31253502-black-Medium size-1',0,0,'2019-03-04 05:42:43','2019-04-15 09:04:01'),(932,4,'simple','31253502-black-Large size-1',0,0,'2019-03-04 05:42:44','2019-04-15 09:04:01'),(933,4,'simple','31253501-grey-Small size',0,0,'2019-03-04 05:57:35','2019-04-15 09:04:01'),(934,4,'simple','31253501-grey-Medium size',0,0,'2019-03-04 05:57:37','2019-04-15 09:04:01'),(935,4,'simple','31253501-grey-Large size',0,0,'2019-03-04 05:57:39','2019-04-15 09:04:01'),(936,4,'simple','31253501-black-Small size',0,0,'2019-03-04 05:57:40','2019-04-15 09:04:01'),(937,4,'simple','31253501-black-Medium size',0,0,'2019-03-04 05:57:42','2019-04-15 09:04:01'),(938,4,'simple','31253501-black-Large size',0,0,'2019-03-04 05:57:43','2019-04-15 09:04:01'),(939,4,'simple','31253501-blue-Small size-1',0,0,'2019-03-04 06:04:06','2019-04-15 09:04:01'),(940,4,'simple','31253501-blue-Medium size-1',0,0,'2019-03-04 06:04:09','2019-04-15 09:04:01'),(941,4,'simple','31253501-blue-Large size-1',0,0,'2019-03-04 06:04:10','2019-04-15 09:04:01'),(942,4,'simple','31190954-blue-Small size',0,0,'2019-03-04 06:19:25','2019-04-15 09:04:01'),(943,4,'simple','31190954-blue-Medium size',0,0,'2019-03-04 06:19:28','2019-04-15 09:04:01'),(944,4,'simple','31190954-blue-Large size',0,0,'2019-03-04 06:19:31','2019-04-15 09:04:01'),(945,4,'simple','31190954-red-Small size',0,0,'2019-03-04 06:19:34','2019-04-15 09:04:01'),(946,4,'simple','31190954-red-Medium size',0,0,'2019-03-04 06:19:36','2019-04-15 09:04:01'),(947,4,'simple','31190954-red-Large size',0,0,'2019-03-04 06:19:39','2019-04-15 09:04:01'),(948,4,'simple','30947478-blue-EU 40',0,0,'2019-03-04 06:43:17','2019-04-15 09:04:01'),(949,4,'simple','30947478-blue-EU 41',0,0,'2019-03-04 06:43:22','2019-04-15 09:04:01'),(950,4,'simple','30947478-blue-EU 42',0,0,'2019-03-04 06:43:25','2019-04-15 09:04:01'),(951,4,'simple','30947478-blue-EU 43',0,0,'2019-03-04 06:43:27','2019-04-15 09:04:01'),(952,4,'simple','30947478-blue-EU 44',0,0,'2019-03-04 06:43:30','2019-04-15 09:04:01'),(953,4,'simple','30947478-brown-EU 40',0,0,'2019-03-04 06:43:33','2019-04-15 09:04:01'),(954,4,'simple','30947478-brown-EU 41',0,0,'2019-03-04 06:43:36','2019-04-15 09:04:01'),(955,4,'simple','30947478-brown-EU 42',0,0,'2019-03-04 06:43:39','2019-04-15 09:04:01'),(956,4,'simple','30947478-brown-EU 43',0,0,'2019-03-04 06:43:41','2019-04-15 09:04:01'),(957,4,'simple','30947478-brown-EU 44',0,0,'2019-03-04 06:43:44','2019-04-15 09:04:01'),(958,4,'simple','31141265-red-EU 40',0,0,'2019-03-04 06:52:45','2019-04-15 09:04:01'),(959,4,'simple','31141265-red-EU 41',0,0,'2019-03-04 06:52:47','2019-04-15 09:04:01'),(972,4,'simple','31179106-red-EU 39',0,0,'2019-03-04 07:14:28','2019-04-15 09:04:01'),(973,4,'simple','31179106-red-EU 40',0,0,'2019-03-04 07:14:32','2019-04-15 09:04:01'),(974,4,'simple','31179106-red-EU 41',0,0,'2019-03-04 07:14:34','2019-04-15 09:04:01'),(975,4,'simple','31179106-red-EU 42',0,0,'2019-03-04 07:14:35','2019-04-15 09:04:01'),(976,4,'simple','31179106-red-EU 43',0,0,'2019-03-04 07:14:37','2019-04-15 09:04:01'),(977,4,'simple','31179106-red-EU 44',0,0,'2019-03-04 07:14:39','2019-04-15 09:04:01'),(978,4,'simple','31179106-red-EU 45',0,0,'2019-03-04 07:14:41','2019-04-15 09:04:01'),(979,4,'simple','31179106-grey-EU 39',0,0,'2019-03-04 07:14:43','2019-04-15 09:04:01'),(980,4,'simple','31179106-grey-EU 40',0,0,'2019-03-04 07:14:45','2019-04-15 09:04:01'),(981,4,'simple','31179106-grey-EU 41',0,0,'2019-03-04 07:14:47','2019-04-15 09:04:01'),(982,4,'simple','31179106-grey-EU 42',0,0,'2019-03-04 07:14:49','2019-04-15 09:04:01'),(983,4,'simple','31179106-grey-EU 43',0,0,'2019-03-04 07:14:51','2019-04-15 09:04:01'),(984,4,'simple','31179106-grey-EU 44',0,0,'2019-03-04 07:14:53','2019-04-15 09:04:01'),(985,4,'simple','31179106-grey-EU 45',0,0,'2019-03-04 07:14:55','2019-04-15 09:04:01'),(986,4,'simple','31085465-brown-EU 39',0,0,'2019-03-04 07:23:21','2019-04-15 09:04:01'),(987,4,'simple','31085465-brown-EU 40',0,0,'2019-03-04 07:23:23','2019-04-15 09:04:01'),(988,4,'simple','31085465-brown-EU 41',0,0,'2019-03-04 07:23:25','2019-04-15 09:04:01'),(989,4,'simple','31085465-brown-EU 42',0,0,'2019-03-04 07:23:27','2019-04-15 09:04:01'),(990,4,'simple','31085465-brown-EU 43',0,0,'2019-03-04 07:23:29','2019-04-15 09:04:01'),(991,4,'simple','31085465-brown-EU 44',0,0,'2019-03-04 07:23:31','2019-04-15 09:04:01'),(992,4,'simple','31085465-grey-EU 39',0,0,'2019-03-04 07:23:33','2019-04-15 09:04:01'),(993,4,'simple','31085465-grey-EU 40',0,0,'2019-03-04 07:23:35','2019-04-15 09:04:01'),(994,4,'simple','31085465-grey-EU 41',0,0,'2019-03-04 07:23:37','2019-04-15 09:04:01'),(995,4,'simple','31085465-grey-EU 42',0,0,'2019-03-04 07:23:39','2019-04-15 09:04:01'),(996,4,'simple','31085465-grey-EU 43',0,0,'2019-03-04 07:23:41','2019-04-15 09:04:01'),(997,4,'simple','31085465-grey-EU 44',0,0,'2019-03-04 07:23:43','2019-04-15 09:04:01'),(998,4,'simple','31085465-black-EU 39',0,0,'2019-03-04 07:23:45','2019-04-15 09:04:01'),(999,4,'simple','31085465-black-EU 40',0,0,'2019-03-04 07:23:47','2019-04-15 09:04:01'),(1000,4,'simple','31085465-black-EU 41',0,0,'2019-03-04 07:23:49','2019-04-15 09:04:01'),(1001,4,'simple','31085465-black-EU 42',0,0,'2019-03-04 07:23:51','2019-04-15 09:04:01'),(1002,4,'simple','31085465-black-EU 43',0,0,'2019-03-04 07:23:53','2019-04-15 09:04:01'),(1003,4,'simple','31085465-black-EU 44',0,0,'2019-03-04 07:23:55','2019-04-15 09:04:01'),(1004,4,'simple','31332981-EU 39-blue',0,0,'2019-03-04 07:38:10','2019-04-15 09:04:01'),(1005,4,'simple','31332981-EU 39-black',0,0,'2019-03-04 07:38:13','2019-04-15 09:04:01'),(1006,4,'simple','31332981-EU 40-blue',0,0,'2019-03-04 07:38:15','2019-04-15 09:04:01'),(1007,4,'simple','31332981-EU 40-black',0,0,'2019-03-04 07:38:16','2019-04-15 09:04:01'),(1008,4,'simple','31332981-EU 41-blue',0,0,'2019-03-04 07:38:18','2019-04-15 09:04:01'),(1009,4,'simple','31332981-EU 41-black',0,0,'2019-03-04 07:38:20','2019-04-15 09:04:01'),(1010,4,'simple','31332981-EU 42-blue',0,0,'2019-03-04 07:38:22','2019-04-15 09:04:01'),(1011,4,'simple','31332981-EU 42-black',0,0,'2019-03-04 07:38:24','2019-04-15 09:04:01'),(1012,4,'simple','31332981-EU 43-blue',0,0,'2019-03-04 07:38:26','2019-04-15 09:04:01'),(1013,4,'simple','31332981-EU 43-black',0,0,'2019-03-04 07:38:28','2019-04-15 09:04:01'),(1014,4,'simple','2313434-grey-Small size-1',0,0,'2019-03-04 07:47:19','2019-04-15 09:04:01'),(1015,4,'simple','2313434-grey-Medium size-1',0,0,'2019-03-04 07:47:22','2019-04-15 09:04:01'),(1016,4,'simple','2313434-grey-Large size-1',0,0,'2019-03-04 07:47:24','2019-04-15 09:04:01'),(1017,4,'simple','2313434-red-Small size',0,0,'2019-03-04 07:47:26','2019-04-15 09:04:01'),(1018,4,'simple','2313434-red-Medium size',0,0,'2019-03-04 07:47:28','2019-04-15 09:04:01'),(1019,4,'simple','2313434-red-Large size',0,0,'2019-03-04 07:47:30','2019-04-15 09:04:01'),(1020,4,'simple','2313434-black-Small size',0,0,'2019-03-04 07:47:32','2019-04-15 09:04:01'),(1021,4,'simple','2313434-black-Medium size',0,0,'2019-03-04 07:47:35','2019-04-15 09:04:01'),(1022,4,'simple','2313434-black-Large size',0,0,'2019-03-04 07:47:37','2019-04-15 09:04:01'),(1023,4,'simple','31253496-Small size-grey',0,0,'2019-03-04 08:39:52','2019-04-15 09:04:01'),(1024,4,'simple','31253496-Small size-brown',0,0,'2019-03-04 08:39:57','2019-04-15 09:04:01'),(1025,4,'simple','31253496-Medium size-grey',0,0,'2019-03-04 08:40:01','2019-04-15 09:04:01'),(1026,4,'simple','31253496-Medium size-brown',0,0,'2019-03-04 08:40:05','2019-04-15 09:04:01'),(1027,4,'simple','31253496-Large size-grey',0,0,'2019-03-04 08:40:09','2019-04-15 09:04:01'),(1028,4,'simple','31253496-Large size-brown',0,0,'2019-03-04 08:40:13','2019-04-15 09:04:01'),(1029,4,'simple','31202421-red-Extra small size',0,0,'2019-03-04 08:55:31','2019-04-15 09:04:01'),(1030,4,'simple','31202421-red-Small size',0,0,'2019-03-04 08:55:33','2019-04-15 09:04:01'),(1031,4,'simple','31202421-red-Medium size',0,0,'2019-03-04 08:55:35','2019-04-15 09:04:01'),(1032,4,'simple','31202421-blue-Extra small size',0,0,'2019-03-04 08:55:37','2019-04-15 09:04:01'),(1033,4,'simple','31202421-blue-Small size',0,0,'2019-03-04 08:55:38','2019-04-15 09:04:01'),(1034,4,'simple','31202421-blue-Medium size',0,0,'2019-03-04 08:55:40','2019-04-15 09:04:01'),(1035,4,'simple','31253493-grey-Small size',0,0,'2019-03-04 09:38:15','2019-04-15 09:04:01'),(1036,4,'simple','31253493-grey-Medium size',0,0,'2019-03-04 09:38:20','2019-04-15 09:04:01'),(1037,4,'simple','31253493-grey-Large size',0,0,'2019-03-04 09:38:24','2019-04-15 09:04:01'),(1038,4,'simple','31253493-grey-Extra large size',0,0,'2019-03-04 09:38:27','2019-04-15 09:04:01'),(1039,4,'simple','31253493-black-Small size',0,0,'2019-03-04 09:38:31','2019-04-15 09:04:01'),(1040,4,'simple','31253493-black-Medium size',0,0,'2019-03-04 09:38:35','2019-04-15 09:04:01'),(1041,4,'simple','31253493-black-Large size',0,0,'2019-03-04 09:38:39','2019-04-15 09:04:01'),(1042,4,'simple','31253493-black-Extra large size',0,0,'2019-03-04 09:38:43','2019-04-15 09:04:01'),(1043,4,'simple','31253498-black-Small size',0,0,'2019-03-04 11:24:43','2019-04-15 09:04:01'),(1044,4,'simple','31253498-black-Medium size',0,0,'2019-03-04 11:24:46','2019-04-15 09:04:01'),(1045,4,'simple','31253498-black-Large size',0,0,'2019-03-04 11:24:48','2019-04-15 09:04:01'),(1046,4,'simple','31253498-grey-Small size',0,0,'2019-03-04 11:24:49','2019-04-15 09:04:01'),(1047,4,'simple','31253498-grey-Medium size',0,0,'2019-03-04 11:24:51','2019-04-15 09:04:01'),(1048,4,'simple','31253498-grey-Large size',0,0,'2019-03-04 11:24:52','2019-04-15 09:04:01'),(1049,4,'simple','31253491-grey-Extra small size',0,0,'2019-03-04 12:04:30','2019-04-15 09:04:01'),(1050,4,'simple','31253491-grey-Small size',0,0,'2019-03-04 12:05:05','2019-04-15 09:04:01'),(1051,4,'simple','31253491-grey-Medium size',0,0,'2019-03-04 12:05:08','2019-04-15 09:04:01'),(1052,4,'simple','31253491-grey-Large size',0,0,'2019-03-04 12:05:12','2019-04-15 09:04:01'),(1053,4,'simple','31253491-brown-Extra small size',0,0,'2019-03-04 12:05:15','2019-04-15 09:04:01'),(1054,4,'simple','31253491-brown-Small size',0,0,'2019-03-04 12:05:19','2019-04-15 09:04:01'),(1055,4,'simple','31253491-brown-Medium size',0,0,'2019-03-04 12:05:23','2019-04-15 09:04:01'),(1056,4,'simple','31253491-brown-Large size',0,0,'2019-03-04 12:05:27','2019-04-15 09:04:01'),(1057,4,'simple','31324632-black-Small size',0,0,'2019-03-04 12:36:41','2019-04-15 09:04:01'),(1058,4,'simple','31324632-black-Medium size',0,0,'2019-03-04 12:36:44','2019-04-15 09:04:01'),(1059,4,'simple','31324632-black-Large size',0,0,'2019-03-04 12:36:45','2019-04-15 09:04:01'),(1060,4,'simple','31324632-grey-Small size',0,0,'2019-03-04 12:36:47','2019-04-15 09:04:01'),(1061,4,'simple','31324632-grey-Medium size',0,0,'2019-03-04 12:36:48','2019-04-15 09:04:01'),(1062,4,'simple','31324632-grey-Large size',0,0,'2019-03-04 12:36:50','2019-04-15 09:04:01'),(1063,4,'simple','31250794-blue-Small size',0,0,'2019-03-04 13:04:58','2019-04-15 09:04:01'),(1064,4,'simple','31250794-blue-Medium size',0,0,'2019-03-04 13:05:04','2019-04-15 09:04:01'),(1065,4,'simple','31250794-blue-Extra large size',0,0,'2019-03-04 13:05:09','2019-04-15 09:04:01'),(1066,4,'simple','31250794-black-Small size',0,0,'2019-03-04 13:05:13','2019-04-15 09:04:01'),(1067,4,'simple','31250794-black-Medium size',0,0,'2019-03-04 13:05:17','2019-04-15 09:04:01'),(1068,4,'simple','31250794-black-Extra large size',0,0,'2019-03-04 13:05:24','2019-04-15 09:04:01'),(1069,4,'simple','31226241-black-Extra small size',0,0,'2019-03-04 13:33:46','2019-04-15 09:04:01'),(1070,4,'simple','31226241-black-Small size',0,0,'2019-03-04 13:33:48','2019-04-15 09:04:01'),(1071,4,'simple','31226241-black-Large size',0,0,'2019-03-04 13:33:50','2019-04-15 09:04:01'),(1072,4,'simple','31226241-red-Extra small size',0,0,'2019-03-04 13:33:51','2019-04-15 09:04:01'),(1073,4,'simple','31226241-red-Small size',0,0,'2019-03-04 13:33:53','2019-04-15 09:04:01'),(1074,4,'simple','31226241-red-Large size',0,0,'2019-03-04 13:33:54','2019-04-15 09:04:01'),(1075,4,'simple','30988045-grey-Small size',0,0,'2019-03-04 14:13:25','2019-04-15 09:04:01'),(1076,4,'simple','30988045-grey-Medium size',0,0,'2019-03-04 14:13:28','2019-04-15 09:04:01'),(1077,4,'simple','30988045-grey-Large size',0,0,'2019-03-04 14:13:29','2019-04-15 09:04:01'),(1078,4,'simple','30988045-grey-Extra large size',0,0,'2019-03-04 14:13:31','2019-04-15 09:04:01'),(1079,4,'simple','30988045-blue-Small size',0,0,'2019-03-04 14:13:32','2019-04-15 09:04:01'),(1080,4,'simple','30988045-blue-Medium size',0,0,'2019-03-04 14:13:34','2019-04-15 09:04:01'),(1081,4,'simple','30988045-blue-Large size',0,0,'2019-03-04 14:13:35','2019-04-15 09:04:01'),(1082,4,'simple','30988045-blue-Extra large size',0,0,'2019-03-04 14:13:37','2019-04-15 09:04:01'),(1083,4,'simple','31253492-black-Extra small size',0,0,'2019-03-05 11:32:37','2019-04-15 09:04:01'),(1084,4,'simple','31253492-black-Small size',0,0,'2019-03-05 11:32:39','2019-04-15 09:04:01'),(1085,4,'simple','31253492-black-Medium size',0,0,'2019-03-05 11:32:41','2019-04-15 09:04:01'),(1086,4,'simple','31253492-black-Large size',0,0,'2019-03-05 11:32:42','2019-04-15 09:04:01'),(1087,4,'simple','31253492-black-Extra large size',0,0,'2019-03-05 11:32:43','2019-04-15 09:04:01'),(1088,4,'simple','31253499-grey-Small size',0,0,'2019-03-05 11:40:39','2019-04-15 09:04:01'),(1089,4,'simple','31253499-grey-Medium size',0,0,'2019-03-05 11:40:42','2019-04-15 09:04:01'),(1090,4,'simple','31253499-grey-Large size',0,0,'2019-03-05 11:40:43','2019-04-15 09:04:01'),(1091,4,'simple','30988045-white-Small size-1',0,0,'2019-03-05 11:49:58','2019-04-15 09:04:01'),(1092,4,'simple','30988045-white-Medium size-1',0,0,'2019-03-05 11:50:00','2019-04-15 09:04:01'),(1093,4,'simple','30988045-white-Large size-1',0,0,'2019-03-05 11:50:01','2019-04-15 09:04:01'),(1094,4,'simple','30988045-white-Extra large size-1',0,0,'2019-03-05 11:50:03','2019-04-15 09:04:01'),(1095,4,'simple','31226241-white-Extra small size',0,0,'2019-03-05 11:53:34','2019-04-15 09:04:01'),(1096,4,'simple','31226241-white-Small size',0,0,'2019-03-05 11:53:36','2019-04-15 09:04:01'),(1097,4,'simple','31226241-white-Large size',0,0,'2019-03-05 11:53:37','2019-04-15 09:04:01'),(1098,4,'simple','31250794-white-Small size-1',0,0,'2019-03-05 11:57:10','2019-04-15 09:04:01'),(1099,4,'simple','31250794-white-Medium size-1',0,0,'2019-03-05 11:57:13','2019-04-15 09:04:01'),(1100,4,'simple','31250794-white-Extra large size-1',0,0,'2019-03-05 11:57:17','2019-04-15 09:04:01'),(1101,4,'simple','31324632-blue-Small size-1',0,0,'2019-03-05 12:13:44','2019-04-15 09:04:01'),(1102,4,'simple','31324632-blue-Medium size-1',0,0,'2019-03-05 12:13:47','2019-04-15 09:04:01'),(1103,4,'simple','31324632-blue-Large size-1',0,0,'2019-03-05 12:13:48','2019-04-15 09:04:01'),(1104,4,'simple','31302817-grey-Small size',0,0,'2019-03-05 12:39:39','2019-04-15 09:04:01'),(1105,4,'simple','31302817-grey-Medium size',0,0,'2019-03-05 12:39:44','2019-04-15 09:04:01'),(1106,4,'simple','31302817-grey-Large size',0,0,'2019-03-05 12:39:48','2019-04-15 09:04:01'),(1107,4,'simple','31231309-blue-Extra small size',0,0,'2019-03-05 12:52:59','2019-04-15 09:04:01'),(1108,4,'simple','31231309-blue-Small size',0,0,'2019-03-05 12:53:04','2019-04-15 09:04:01'),(1109,4,'simple','31231309-blue-Medium size',0,0,'2019-03-05 12:53:08','2019-04-15 09:04:01'),(1110,4,'simple','31176055-white-Extra small size',0,0,'2019-03-05 13:19:07','2019-04-15 09:04:01'),(1111,4,'simple','31176055-white-Small size',0,0,'2019-03-05 13:19:12','2019-04-15 09:04:01'),(1112,4,'simple','31176055-white-Medium size',0,0,'2019-03-05 13:19:16','2019-04-15 09:04:01'),(1113,4,'simple','31176055-white-Extra large size',0,0,'2019-03-05 13:19:19','2019-04-15 09:04:01'),(1114,4,'simple','31219211-blue-Small size',0,0,'2019-03-05 13:36:58','2019-04-15 09:04:01'),(1115,4,'simple','31219211-blue-Medium size',0,0,'2019-03-05 13:37:03','2019-04-15 09:04:01'),(1116,4,'simple','31219211-blue-Large size',0,0,'2019-03-05 13:37:07','2019-04-15 09:04:01'),(1117,4,'simple','31219211-blue-Extra large size',0,0,'2019-03-05 13:37:10','2019-04-15 09:04:01'),(1118,4,'simple','31091479-red-Extra small size',0,0,'2019-03-05 13:53:55','2019-04-15 09:04:01'),(1119,4,'simple','31091479-red-Small size',0,0,'2019-03-05 13:54:00','2019-04-15 09:04:01'),(1120,4,'simple','31091479-red-Medium size',0,0,'2019-03-05 13:54:04','2019-04-15 09:04:01'),(1121,4,'simple','31207365-blue-Small size',0,0,'2019-03-05 14:20:51','2019-04-15 09:04:01'),(1122,4,'simple','31207365-blue-Large size',0,0,'2019-03-05 14:20:56','2019-04-15 09:04:01'),(1123,4,'simple','31207365-blue-Extra large size',0,0,'2019-03-05 14:21:00','2019-04-15 09:04:01'),(1124,4,'simple','31166144-red-Small size',0,0,'2019-03-05 15:03:04','2019-04-15 09:04:01'),(1125,4,'simple','31166144-red-Medium size',0,0,'2019-03-05 15:03:09','2019-04-15 09:04:01'),(1126,4,'simple','31166144-red-Large size',0,0,'2019-03-05 15:03:13','2019-04-15 09:04:01'),(1127,4,'simple','31253495-black-Small size',0,0,'2019-03-05 15:04:53','2019-04-15 09:04:01'),(1128,4,'simple','31253495-black-Medium size',0,0,'2019-03-05 15:04:57','2019-04-15 09:04:01'),(1129,4,'simple','31253495-black-Large size',0,0,'2019-03-05 15:05:01','2019-04-15 09:04:01'),(1130,4,'simple','31253494-blue-Small size',0,0,'2019-03-05 15:15:17','2019-04-15 09:04:01'),(1131,4,'simple','31253494-blue-Medium size',0,0,'2019-03-05 15:15:22','2019-04-15 09:04:01'),(1132,4,'simple','31253494-blue-Large size',0,0,'2019-03-05 15:15:26','2019-04-15 09:04:01'),(1133,4,'simple','31264080-grey-Medium size',0,0,'2019-03-05 15:22:24','2019-04-15 09:04:01'),(1134,4,'simple','31264080-grey-Large size',0,0,'2019-03-05 15:22:26','2019-04-15 09:04:01'),(1135,4,'simple','31253494-black-Small size-1',0,0,'2019-03-05 15:28:52','2019-04-15 09:04:01'),(1136,4,'simple','31253494-black-Medium size-1',0,0,'2019-03-05 15:28:56','2019-04-15 09:04:01'),(1137,4,'simple','31253494-black-Large size-1',0,0,'2019-03-05 15:28:59','2019-04-15 09:04:01'),(1138,4,'simple','31043406-Extra small size-black',0,0,'2019-03-05 16:44:40','2019-04-15 09:04:01'),(1139,4,'simple','31043406-Small size-black',0,0,'2019-03-05 16:44:48','2019-04-15 09:04:01'),(1140,4,'simple','31043406-Medium size-black',0,0,'2019-03-05 16:44:52','2019-04-15 09:04:01'),(1141,4,'simple','31125037-red-Extra small size',0,0,'2019-03-05 17:03:37','2019-04-15 09:04:01'),(1142,4,'simple','31125037-red-Small size',0,0,'2019-03-05 17:03:42','2019-04-15 09:04:01'),(1143,4,'simple','31125037-red-Medium size',0,0,'2019-03-05 17:03:46','2019-04-15 09:04:01'),(1144,4,'simple','31125037-red-Large size',0,0,'2019-03-05 17:03:50','2019-04-15 09:04:01'),(1145,4,'simple','30977134-red-Extra small size',0,0,'2019-03-05 17:24:45','2019-04-15 09:04:01'),(1146,4,'simple','30977134-red-Small size',0,0,'2019-03-05 17:24:47','2019-04-15 09:04:01'),(1147,4,'simple','30977134-red-Medium size',0,0,'2019-03-05 17:24:48','2019-04-15 09:04:01'),(1148,4,'simple','30977108-brown-Extra small size',0,0,'2019-03-05 17:34:03','2019-04-15 09:04:01'),(1149,4,'simple','30977108-brown-Small size',0,0,'2019-03-05 17:34:09','2019-04-15 09:04:01'),(1150,4,'simple','30977108-brown-Medium size',0,0,'2019-03-05 17:34:13','2019-04-15 09:04:01'),(1151,4,'simple','30977108-brown-Large size',0,0,'2019-03-05 17:34:17','2019-04-15 09:04:01'),(1152,4,'simple','31291013-black-Extra small size',0,0,'2019-03-05 17:43:52','2019-04-15 09:04:01'),(1153,4,'simple','31291013-black-Small size',0,0,'2019-03-05 17:43:57','2019-04-15 09:04:01'),(1154,4,'simple','31291013-black-Medium size',0,0,'2019-03-05 17:44:02','2019-04-15 09:04:01'),(1155,4,'simple','31291013-black-Large size',0,0,'2019-03-05 17:44:05','2019-04-15 09:04:01'),(1156,4,'simple','31340162-blue-Extra small size',0,0,'2019-03-05 17:50:41','2019-04-15 09:04:01'),(1157,4,'simple','31340162-blue-Small size',0,0,'2019-03-05 17:50:46','2019-04-15 09:04:01'),(1158,4,'simple','31340162-blue-Medium size',0,0,'2019-03-05 17:50:50','2019-04-15 09:04:01'),(1159,4,'simple','31340162-blue-Large size',0,0,'2019-03-05 17:50:54','2019-04-15 09:04:01'),(1160,4,'simple','31305260-brown-Small size',0,0,'2019-03-05 17:54:55','2019-04-15 09:04:01'),(1161,4,'simple','31305260-brown-Medium size',0,0,'2019-03-05 17:54:56','2019-04-15 09:04:01'),(1162,4,'simple','31240220-grey-Extra small size',0,0,'2019-03-05 18:03:07','2019-04-15 09:04:01'),(1163,4,'simple','31240220-grey-Small size',0,0,'2019-03-05 18:03:11','2019-04-15 09:04:01'),(1164,4,'simple','31350783-red-Extra small size',0,0,'2019-03-05 18:12:30','2019-04-15 09:04:01'),(1165,4,'simple','31350783-red-Small size',0,0,'2019-03-05 18:12:33','2019-04-15 09:04:01'),(1166,4,'simple','31350783-red-Medium size',0,0,'2019-03-05 18:12:34','2019-04-15 09:04:01'),(1167,4,'simple','31319864-blue-Extra small size',0,0,'2019-03-05 18:24:05','2019-04-15 09:04:01'),(1168,4,'simple','31319864-blue-Small size',0,0,'2019-03-05 18:24:09','2019-04-15 09:04:01'),(1169,4,'simple','31319864-blue-Medium size',0,0,'2019-03-05 18:24:14','2019-04-15 09:04:01'),(1170,4,'simple','31319864-blue-Large size',0,0,'2019-03-05 18:24:18','2019-04-15 09:04:01'),(1171,4,'simple','31239294-white-Extra small size',0,0,'2019-03-05 18:31:28','2019-04-15 09:04:01'),(1172,4,'simple','31239294-white-Small size',0,0,'2019-03-05 18:31:32','2019-04-15 09:04:01'),(1173,4,'simple','31239294-white-Medium size',0,0,'2019-03-05 18:31:36','2019-04-15 09:04:01'),(1174,4,'simple','31239294-white-Extra large size',0,0,'2019-03-05 18:31:41','2019-04-15 09:04:01'),(1175,4,'simple','30977037-blue-Extra small size',0,0,'2019-03-05 18:40:42','2019-04-15 09:04:01'),(1176,4,'simple','30977037-blue-Small size',0,0,'2019-03-05 18:40:48','2019-04-15 09:04:01'),(1177,4,'simple','30977037-blue-Medium size',0,0,'2019-03-05 18:40:52','2019-04-15 09:04:01'),(1178,4,'simple','30977037-blue-Large size',0,0,'2019-03-05 18:40:56','2019-04-15 09:04:01'),(1179,4,'simple','30977037-blue-Extra large size',0,0,'2019-03-05 18:40:59','2019-04-15 09:04:01'),(1180,4,'simple','31266871-blue-Extra small size',0,0,'2019-03-05 19:21:05','2019-04-15 09:04:01'),(1181,4,'simple','31266871-blue-Small size',0,0,'2019-03-05 19:21:10','2019-04-15 09:04:01'),(1182,4,'simple','31266871-blue-Medium size',0,0,'2019-03-05 19:21:14','2019-04-15 09:04:01'),(1183,4,'simple','31266871-blue-Large size',0,0,'2019-03-05 19:21:18','2019-04-15 09:04:01'),(1184,4,'simple','31331004-red-Small size',0,0,'2019-03-05 19:38:07','2019-04-15 09:04:01'),(1185,4,'simple','31331004-red-Medium size',0,0,'2019-03-05 19:38:13','2019-04-15 09:04:01'),(1186,4,'simple','31331004-red-Large size',0,0,'2019-03-05 19:38:17','2019-04-15 09:04:01'),(1187,4,'simple','30838511-black-Extra small size',0,0,'2019-03-05 19:47:10','2019-04-15 09:04:01'),(1188,4,'simple','30838511-black-Small size',0,0,'2019-03-05 19:47:14','2019-04-15 09:04:01'),(1189,4,'simple','30838511-black-Medium size',0,0,'2019-03-05 19:47:19','2019-04-15 09:04:01'),(1190,4,'simple','30838511-black-Large size',0,0,'2019-03-05 19:47:23','2019-04-15 09:04:01'),(1191,4,'simple','31197648-EU 37-blue',0,0,'2019-03-05 19:55:17','2019-04-15 09:04:01'),(1192,4,'simple','31197648-EU 38-blue',0,0,'2019-03-05 19:55:19','2019-04-15 09:04:01'),(1193,4,'simple','31197648-EU 39-blue',0,0,'2019-03-05 19:55:21','2019-04-15 09:04:01'),(1194,4,'simple','31197648-EU 40-blue',0,0,'2019-03-05 19:55:22','2019-04-15 09:04:01'),(1195,4,'simple','31197648-EU 41-blue',0,0,'2019-03-05 19:55:24','2019-04-15 09:04:01'),(1196,4,'simple','310018035-red-Extra small size',0,0,'2019-03-05 20:03:43','2019-04-15 09:04:01'),(1197,4,'simple','310018035-red-Small size',0,0,'2019-03-05 20:03:46','2019-04-15 09:04:01'),(1198,4,'simple','310018035-red-Medium size',0,0,'2019-03-05 20:03:49','2019-04-15 09:04:01'),(1199,4,'simple','31292042-red-Extra small size',0,0,'2019-03-05 20:17:20','2019-04-15 09:04:01'),(1200,4,'simple','31292042-red-Small size',0,0,'2019-03-05 20:17:23','2019-04-15 09:04:01'),(1201,4,'simple','31292042-red-Medium size',0,0,'2019-03-05 20:17:24','2019-04-15 09:04:01'),(1202,4,'simple','31145394-grey-Extra small size',0,0,'2019-03-05 20:25:36','2019-04-15 09:04:01'),(1203,4,'simple','31145394-grey-Small size',0,0,'2019-03-05 20:25:41','2019-04-15 09:04:01'),(1204,4,'simple','31145394-grey-Medium size',0,0,'2019-03-05 20:25:45','2019-04-15 09:04:01'),(1205,4,'simple','310018033-blue-Extra small size',0,0,'2019-03-05 20:33:37','2019-04-15 09:04:01'),(1206,4,'simple','310018033-blue-Small size',0,0,'2019-03-05 20:33:42','2019-04-15 09:04:01'),(1207,4,'simple','310018033-blue-Medium size',0,0,'2019-03-05 20:33:46','2019-04-15 09:04:01'),(1208,4,'simple','31001803-black-Extra small size',0,0,'2019-03-05 20:41:15','2019-04-15 09:04:01'),(1209,4,'simple','31001803-black-Small size',0,0,'2019-03-05 20:41:19','2019-04-15 09:04:01'),(1210,4,'simple','31001803-black-Large size',0,0,'2019-03-05 20:41:23','2019-04-15 09:04:01'),(1211,4,'simple','31343872-red-Extra small size',0,0,'2019-03-05 20:48:12','2019-04-15 09:04:01'),(1212,4,'simple','31343872-red-Small size',0,0,'2019-03-05 20:48:16','2019-04-15 09:04:01'),(1213,4,'simple','31343872-red-Medium size',0,0,'2019-03-05 20:48:22','2019-04-15 09:04:01'),(1214,4,'simple','31196404-blue-EU 36',0,0,'2019-03-05 20:54:29','2019-04-15 09:04:01'),(1215,4,'simple','31196404-blue-EU 38',0,0,'2019-03-05 20:54:31','2019-04-15 09:04:01'),(1216,4,'simple','31196404-blue-EU 39',0,0,'2019-03-05 20:54:33','2019-04-15 09:04:01'),(1217,4,'simple','31196404-blue-EU 40',0,0,'2019-03-05 20:54:35','2019-04-15 09:04:01'),(1218,4,'simple','31196404-blue-EU 41',0,0,'2019-03-05 20:54:37','2019-04-15 09:04:01'),(1219,4,'simple','31483900-red-Small size',0,0,'2019-03-05 20:58:23','2019-04-15 09:04:01'),(1220,4,'simple','31483900-red-Medium size',0,0,'2019-03-05 20:58:26','2019-04-15 09:04:01'),(1221,4,'simple','31483900-red-Extra large size',0,0,'2019-03-05 20:58:29','2019-04-15 09:04:01'),(1222,4,'simple','31085354-black-EU 36',0,0,'2019-03-05 21:09:16','2019-04-15 09:04:01'),(1223,4,'simple','31085354-black-EU 37',0,0,'2019-03-05 21:09:18','2019-04-15 09:04:01'),(1224,4,'simple','31085354-black-EU 38',0,0,'2019-03-05 21:09:19','2019-04-15 09:04:01'),(1225,4,'simple','31085354-black-EU 39',0,0,'2019-03-05 21:09:21','2019-04-15 09:04:01'),(1226,4,'simple','31085354-black-EU 40',0,0,'2019-03-05 21:09:22','2019-04-15 09:04:01'),(1227,4,'simple','31085354-black-EU 41',0,0,'2019-03-05 21:09:24','2019-04-15 09:04:01'),(1228,4,'simple','31220278-blue-Extra small size',0,0,'2019-03-05 21:26:35','2019-04-15 09:04:01'),(1229,4,'simple','31220278-blue-Small size',0,0,'2019-03-05 21:26:40','2019-04-15 09:04:01'),(1230,4,'simple','31220278-blue-Medium size',0,0,'2019-03-05 21:26:45','2019-04-15 09:04:01'),(1231,4,'simple','31350778-brown-Extra small size',0,0,'2019-03-05 21:32:46','2019-04-15 09:04:01'),(1232,4,'simple','31350778-brown-Small size',0,0,'2019-03-05 21:32:48','2019-04-15 09:04:01'),(1233,4,'simple','31350778-brown-Medium size',0,0,'2019-03-05 21:32:50','2019-04-15 09:04:01'),(1234,4,'simple','31261586-blue-Extra small size',0,0,'2019-03-05 21:39:22','2019-04-15 09:04:01'),(1235,4,'simple','31261586-blue-Small size',0,0,'2019-03-05 21:39:27','2019-04-15 09:04:01'),(1236,4,'simple','31261586-blue-Medium size',0,0,'2019-03-05 21:39:33','2019-04-15 09:04:01'),(1237,4,'simple','31261586-blue-Large size',0,0,'2019-03-05 21:39:38','2019-04-15 09:04:01'),(1238,4,'simple','31125033-grey-Extra small size',0,0,'2019-03-05 21:45:43','2019-04-15 09:04:01'),(1239,4,'simple','31125033-grey-Small size',0,0,'2019-03-05 21:45:50','2019-04-15 09:04:01'),(1240,4,'simple','31125033-grey-Large size',0,0,'2019-03-05 21:45:55','2019-04-15 09:04:01'),(1241,4,'simple','31125033-grey-Extra large size',0,0,'2019-03-05 21:45:59','2019-04-15 09:04:01'),(1242,4,'simple','31125039-Extra small size-grey',0,0,'2019-03-05 21:51:33','2019-04-15 09:04:01'),(1243,4,'simple','31125039-Small size-grey',0,0,'2019-03-05 21:51:39','2019-04-15 09:04:01'),(1244,4,'simple','31125039-Medium size-grey',0,0,'2019-03-05 21:51:43','2019-04-15 09:04:01'),(1245,4,'simple','31125039-Large size-grey',0,0,'2019-03-05 21:51:48','2019-04-15 09:04:01'),(1246,4,'simple','31125039-Extra large size-grey',0,0,'2019-03-05 21:51:52','2019-04-15 09:04:01'),(1247,4,'simple','31103364-blue-EU 36',0,0,'2019-03-06 06:03:31','2019-04-15 09:04:01'),(1248,4,'simple','31103364-blue-EU 37',0,0,'2019-03-06 06:03:34','2019-04-15 09:04:01'),(1249,4,'simple','31103364-blue-EU 38',0,0,'2019-03-06 06:03:35','2019-04-15 09:04:01'),(1250,4,'simple','31103364-blue-EU 40',0,0,'2019-03-06 06:03:37','2019-04-15 09:04:01'),(1251,4,'simple','31074190-red-EU 36',0,0,'2019-03-06 06:07:53','2019-04-15 09:04:01'),(1252,4,'simple','31074190-red-EU 37',0,0,'2019-03-06 06:07:55','2019-04-15 09:04:01'),(1253,4,'simple','31074190-red-EU 38',0,0,'2019-03-06 06:07:57','2019-04-15 09:04:01'),(1254,4,'simple','31074190-red-EU 39',0,0,'2019-03-06 06:07:58','2019-04-15 09:04:01'),(1255,4,'simple','31074190-red-EU 40',0,0,'2019-03-06 06:08:00','2019-04-15 09:04:01'),(1256,4,'simple','31074190-red-EU 41',0,0,'2019-03-06 06:08:03','2019-04-15 09:04:01'),(1257,4,'simple','31125042-Extra small size-grey',0,0,'2019-03-06 06:13:51','2019-04-15 09:04:01'),(1258,4,'simple','31125042-Small size-grey',0,0,'2019-03-06 06:13:57','2019-04-15 09:04:01'),(1259,4,'simple','31125042-Medium size-grey',0,0,'2019-03-06 06:14:02','2019-04-15 09:04:01'),(1260,4,'simple','31125042-Large size-grey',0,0,'2019-03-06 06:14:05','2019-04-15 09:04:01'),(1261,4,'simple','31093629-blue-EU 37',0,0,'2019-03-06 06:24:09','2019-04-15 09:04:01'),(1262,4,'simple','31093629-blue-EU 38',0,0,'2019-03-06 06:24:12','2019-04-15 09:04:01'),(1263,4,'simple','31093629-blue-EU 39',0,0,'2019-03-06 06:24:13','2019-04-15 09:04:01'),(1264,4,'simple','31093629-blue-EU 40',0,0,'2019-03-06 06:24:14','2019-04-15 09:04:01'),(1265,4,'simple','31093629-blue-EU 41',0,0,'2019-03-06 06:24:16','2019-04-15 09:04:01'),(1266,4,'simple','30945868-black-EU 36',0,0,'2019-03-06 06:29:08','2019-04-15 09:04:01'),(1267,4,'simple','30945868-black-EU 38',0,0,'2019-03-06 06:29:10','2019-04-15 09:04:01'),(1268,4,'simple','30945868-black-EU 39',0,0,'2019-03-06 06:29:12','2019-04-15 09:04:01'),(1269,4,'simple','30945868-black-EU 40',0,0,'2019-03-06 06:29:13','2019-04-15 09:04:01'),(1270,4,'simple','30945868-black-EU 41',0,0,'2019-03-06 06:29:16','2019-04-15 09:04:01'),(1271,4,'simple','30945868-black-EU 43',0,0,'2019-03-06 06:29:17','2019-04-15 09:04:01'),(1272,4,'simple','31333018-EU 36-blue',0,0,'2019-03-06 06:38:53','2019-04-15 09:04:01'),(1273,4,'simple','31333018-EU 36-red',0,0,'2019-03-06 06:38:54','2019-04-15 09:04:01'),(1274,4,'simple','31333018-EU 37-blue',0,0,'2019-03-06 06:38:56','2019-04-15 09:04:01'),(1275,4,'simple','31333018-EU 37-red',0,0,'2019-03-06 06:38:57','2019-04-15 09:04:01'),(1276,4,'simple','31333018-EU 38-blue',0,0,'2019-03-06 06:38:59','2019-04-15 09:04:01'),(1277,4,'simple','31333018-EU 38-red',0,0,'2019-03-06 06:39:00','2019-04-15 09:04:01'),(1278,4,'simple','31333018-EU 40-blue',0,0,'2019-03-06 06:39:02','2019-04-15 09:04:01'),(1279,4,'simple','31333018-EU 40-red',0,0,'2019-03-06 06:39:04','2019-04-15 09:04:01'),(1280,4,'simple','31125034-Extra small size-grey',0,0,'2019-03-06 06:44:26','2019-04-15 09:04:01'),(1281,4,'simple','31125034-Small size-grey',0,0,'2019-03-06 06:44:31','2019-04-15 09:04:01'),(1282,4,'simple','31125034-Large size-grey',0,0,'2019-03-06 06:44:34','2019-04-15 09:04:01'),(1283,4,'simple','31125034-Extra large size-grey',0,0,'2019-03-06 06:44:39','2019-04-15 09:04:01'),(1284,4,'simple','30811612-blue-Extra small size',0,0,'2019-03-06 06:58:28','2019-04-15 09:04:01'),(1285,4,'simple','30811612-blue-Small size',0,0,'2019-03-06 06:58:33','2019-04-15 09:04:01'),(1286,4,'simple','30811612-blue-Medium size',0,0,'2019-03-06 06:58:37','2019-04-15 09:04:01'),(1287,4,'simple','31292416-grey-Extra small size',0,0,'2019-03-06 07:05:52','2019-04-15 09:04:01'),(1288,4,'simple','31292416-grey-Small size',0,0,'2019-03-06 07:06:05','2019-04-15 09:04:01'),(1289,4,'simple','31292416-grey-Medium size',0,0,'2019-03-06 07:06:09','2019-04-15 09:04:01'),(1290,4,'simple','31241601-red-Extra small size',0,0,'2019-03-06 07:15:37','2019-04-15 09:04:01'),(1291,4,'simple','31241601-red-Small size',0,0,'2019-03-06 07:15:40','2019-04-15 09:04:01'),(1292,4,'simple','31241601-red-Large size',0,0,'2019-03-06 07:15:43','2019-04-15 09:04:01'),(1293,4,'simple','31125036-blue-Extra small size',0,0,'2019-03-06 07:20:53','2019-04-15 09:04:01'),(1294,4,'simple','31125036-blue-Small size',0,0,'2019-03-06 07:20:58','2019-04-15 09:04:01'),(1295,4,'simple','31125036-blue-Medium size',0,0,'2019-03-06 07:21:03','2019-04-15 09:04:01'),(1296,4,'simple','31262295-brown-Extra small size',0,0,'2019-03-06 07:26:39','2019-04-15 09:04:01'),(1297,4,'simple','31262295-brown-Small size',0,0,'2019-03-06 07:26:45','2019-04-15 09:04:01'),(1298,4,'simple','31262295-brown-Medium size',0,0,'2019-03-06 07:26:49','2019-04-15 09:04:01'),(1299,4,'simple','31262293-grey-Extra small size',0,0,'2019-03-06 07:31:57','2019-04-15 09:04:01'),(1300,4,'simple','31262293-grey-Small size',0,0,'2019-03-06 07:32:02','2019-04-15 09:04:01'),(1301,4,'simple','31262293-grey-Medium size',0,0,'2019-03-06 07:32:07','2019-04-15 09:04:01'),(1302,4,'simple','31268637-blue-Extra small size',0,0,'2019-03-06 07:36:30','2019-04-15 09:04:01'),(1303,4,'simple','31268637-blue-Small size',0,0,'2019-03-06 07:36:34','2019-04-15 09:04:01'),(1304,4,'simple','31268637-blue-Medium size',0,0,'2019-03-06 07:36:38','2019-04-15 09:04:01'),(1305,4,'simple','310046545-red-Extra small size',0,0,'2019-03-06 07:41:21','2019-04-15 09:04:01'),(1306,4,'simple','310046545-red-Small size',0,0,'2019-03-06 07:41:24','2019-04-15 09:04:01'),(1307,4,'simple','310046545-red-Extra large size',0,0,'2019-03-06 07:41:26','2019-04-15 09:04:01'),(1308,4,'simple','31191497-grey-Medium size',0,0,'2019-03-06 07:45:44','2019-04-15 09:04:01'),(1309,4,'simple','31045897-blue-Small size',0,0,'2019-03-06 07:54:42','2019-04-15 09:04:01'),(1310,4,'simple','31045897-blue-Medium size',0,0,'2019-03-06 07:54:45','2019-04-15 09:04:01'),(1311,4,'simple','31005341-red',0,0,'2019-03-06 07:59:34','2019-04-15 09:04:01'),(1312,4,'simple','31289374-Small size-black',0,0,'2019-03-06 08:03:48','2019-04-15 09:04:01'),(1313,4,'simple','31289374-Medium size-black',0,0,'2019-03-06 08:03:51','2019-04-15 09:04:01'),(1314,4,'simple','31175794-grey',0,0,'2019-03-06 08:08:59','2019-04-15 09:04:01'),(1315,4,'simple','31258335-red-Small size',0,0,'2019-03-06 08:19:27','2019-04-15 09:04:01'),(1316,4,'simple','31258335-red-Medium size',0,0,'2019-03-06 08:19:29','2019-04-15 09:04:01'),(1317,4,'simple','31327540-red',0,0,'2019-03-06 08:27:45','2019-04-15 09:04:01'),(1318,4,'simple','31304473-grey',0,0,'2019-03-06 08:42:46','2019-04-15 09:04:01'),(1319,4,'simple','31223382-black',0,0,'2019-03-06 08:48:21','2019-04-15 09:04:01'),(1320,4,'simple','31062218-red-Small size',0,0,'2019-03-06 08:52:38','2019-04-15 09:04:01'),(1321,4,'simple','31034537-blue-Small size',0,0,'2019-03-06 09:00:35','2019-04-15 09:04:01'),(1322,4,'simple','31160296-red-Extra small size',0,0,'2019-03-06 09:24:13','2019-04-15 09:04:01'),(1323,4,'simple','31160296-red-Small size',0,0,'2019-03-06 09:24:16','2019-04-15 09:04:01'),(1324,4,'simple','31160296-red-Medium size',0,0,'2019-03-06 09:24:18','2019-04-15 09:04:01'),(1325,4,'simple','31160298-blue-Small size',0,0,'2019-03-06 09:33:25','2019-04-15 09:04:01'),(1326,4,'simple','31160298-blue-Medium size',0,0,'2019-03-06 09:33:28','2019-04-15 09:04:01'),(1327,4,'simple','31160332-red-Small size',0,0,'2019-03-06 09:39:53','2019-04-15 09:04:01'),(1328,4,'simple','31160332-red-Medium size',0,0,'2019-03-06 09:39:56','2019-04-15 09:04:01'),(1329,4,'simple','31300702-red-Small size',0,0,'2019-03-06 09:45:25','2019-04-15 09:04:01'),(1330,4,'simple','31300702-red-Medium size',0,0,'2019-03-06 09:45:28','2019-04-15 09:04:01'),(1331,4,'simple','31162615-blue-Small size',0,0,'2019-03-06 09:49:49','2019-04-15 09:04:01'),(1332,4,'simple','31146614-brown-Small size',0,0,'2019-03-06 09:56:29','2019-04-15 09:04:01'),(1333,9,'simple','2313434-black-Medium size-1',0,0,'2019-03-06 10:04:46','2019-04-15 09:04:01'),(1334,9,'simple','2313434-black-Small size-1',0,0,'2019-03-06 10:04:48','2019-04-15 09:04:01'),(1335,9,'simple','2313434-black-Large size-1',0,0,'2019-03-06 10:04:48','2019-04-15 09:04:01'),(1336,9,'simple','2313434-red-Medium size-1',0,0,'2019-03-06 10:04:49','2019-04-15 09:04:01'),(1337,9,'simple','2313434-red-Small size-1',0,0,'2019-03-06 10:04:50','2019-04-15 09:04:01'),(1338,9,'simple','2313434-red-Large size-1',0,0,'2019-03-06 10:04:50','2019-04-15 09:04:01'),(1339,9,'simple','2313434-grey-Medium size-2',0,0,'2019-03-06 10:04:51','2019-04-15 09:04:01'),(1340,9,'simple','2313434-grey-Small size-2',0,0,'2019-03-06 10:04:52','2019-04-15 09:04:01'),(1341,9,'simple','2313434-grey-Large size-2',0,0,'2019-03-06 10:04:53','2019-04-15 09:04:01'),(1343,4,'simple','31178507-Medium size-red',0,0,'2019-03-06 10:22:51','2019-04-15 09:04:01'),(1344,4,'simple','31178507-Large size-red',0,0,'2019-03-06 10:22:55','2019-04-15 09:04:01'),(1345,9,'simple','n31091479-brown-Extra small size',0,0,'2019-03-06 10:42:19','2019-04-15 09:04:01'),(1346,9,'simple','n31091479-brown-Small size',0,0,'2019-03-06 10:42:21','2019-04-15 09:04:01'),(1347,9,'simple','n31091479-brown-Medium size',0,0,'2019-03-06 10:42:22','2019-04-15 09:04:01'),(1348,9,'simple','n31091479-red-Extra small size',0,0,'2019-03-06 10:42:23','2019-04-15 09:04:01'),(1349,9,'simple','n31091479-red-Small size',0,0,'2019-03-06 10:42:24','2019-04-15 09:04:01'),(1350,9,'simple','n31091479-red-Medium size',0,0,'2019-03-06 10:42:25','2019-04-15 09:04:01'),(1351,9,'configurable','n31091479',1,1,'2019-03-06 10:42:26','2019-03-07 14:44:31'),(1352,10,'simple','n30807043-white-EU 39',0,0,'2019-03-06 10:48:28','2019-04-15 09:04:01'),(1353,10,'simple','n30807043-white-EU 42',0,0,'2019-03-06 10:48:29','2019-04-15 09:04:01'),(1354,10,'simple','n30807043-white-EU 40',0,0,'2019-03-06 10:48:30','2019-04-15 09:04:01'),(1355,10,'simple','n30807043-white-EU 43',0,0,'2019-03-06 10:48:31','2019-04-15 09:04:01'),(1356,10,'simple','n30807043-white-EU 41',0,0,'2019-03-06 10:48:31','2019-04-15 09:04:01'),(1357,10,'simple','n30807043-white-EU 44',0,0,'2019-03-06 10:48:32','2019-04-15 09:04:01'),(1358,10,'simple','n30807043-grey-EU 39',0,0,'2019-03-06 10:48:32','2019-04-15 09:04:01'),(1359,10,'simple','n30807043-grey-EU 42',0,0,'2019-03-06 10:48:33','2019-04-15 09:04:01'),(1360,10,'simple','n30807043-grey-EU 40',0,0,'2019-03-06 10:48:33','2019-04-15 09:04:01'),(1361,10,'simple','n30807043-grey-EU 43',0,0,'2019-03-06 10:48:34','2019-04-15 09:04:01'),(1362,10,'simple','n30807043-grey-EU 41',0,0,'2019-03-06 10:48:35','2019-04-15 09:04:01'),(1363,10,'simple','n30807043-grey-EU 44',0,0,'2019-03-06 10:48:35','2019-04-15 09:04:01'),(1364,10,'simple','n30807043-black-EU 39',0,0,'2019-03-06 10:48:36','2019-04-15 09:04:01'),(1365,10,'simple','n30807043-black-EU 42',0,0,'2019-03-06 10:48:36','2019-04-15 09:04:01'),(1366,10,'simple','n30807043-black-EU 40',0,0,'2019-03-06 10:48:37','2019-04-15 09:04:01'),(1367,10,'simple','n30807043-black-EU 43',0,0,'2019-03-06 10:48:38','2019-04-15 09:04:01'),(1368,10,'simple','n30807043-black-EU 41',0,0,'2019-03-06 10:48:38','2019-04-15 09:04:01'),(1369,10,'simple','n30807043-black-EU 44',0,0,'2019-03-06 10:48:39','2019-04-15 09:04:01'),(1370,10,'simple','n30807043-red-EU 39',0,0,'2019-03-06 10:48:39','2019-04-15 09:04:01'),(1371,10,'simple','n30807043-red-EU 42',0,0,'2019-03-06 10:48:40','2019-04-15 09:04:01'),(1372,10,'simple','n30807043-red-EU 40',0,0,'2019-03-06 10:48:40','2019-04-15 09:04:01'),(1373,10,'simple','n30807043-red-EU 43',0,0,'2019-03-06 10:48:40','2019-04-15 09:04:01'),(1374,10,'simple','n30807043-red-EU 41',0,0,'2019-03-06 10:48:41','2019-04-15 09:04:01'),(1375,10,'simple','n30807043-red-EU 44',0,0,'2019-03-06 10:48:41','2019-04-15 09:04:01'),(1376,10,'simple','n30807043-blue-EU 39',0,0,'2019-03-06 10:48:42','2019-04-15 09:04:01'),(1377,10,'simple','n30807043-blue-EU 42',0,0,'2019-03-06 10:48:43','2019-04-15 09:04:01'),(1378,10,'simple','n30807043-blue-EU 40',0,0,'2019-03-06 10:48:44','2019-04-15 09:04:01'),(1379,10,'simple','n30807043-blue-EU 43',0,0,'2019-03-06 10:48:45','2019-04-15 09:04:01'),(1380,10,'simple','n30807043-blue-EU 41',0,0,'2019-03-06 10:48:45','2019-04-15 09:04:01'),(1381,10,'simple','n30807043-blue-EU 44',0,0,'2019-03-06 10:48:46','2019-04-15 09:04:01'),(1383,10,'simple','n30807043-grey-EU 41-1',0,0,'2019-03-06 11:18:30','2019-04-15 09:04:01'),(1384,10,'simple','n30807043-grey-EU 44-1',0,0,'2019-03-06 11:18:36','2019-04-15 09:04:01'),(1385,10,'simple','n30807043-grey-EU 40-1',0,0,'2019-03-06 11:18:37','2019-04-15 09:04:01'),(1386,10,'simple','n30807043-grey-EU 43-1',0,0,'2019-03-06 11:18:39','2019-04-15 09:04:01'),(1387,10,'simple','n30807043-grey-EU 39-1',0,0,'2019-03-06 11:18:40','2019-04-15 09:04:01'),(1388,10,'simple','n30807043-grey-EU 42-1',0,0,'2019-03-06 11:18:41','2019-04-15 09:04:01'),(1389,10,'simple','n30807043-blue-EU 41-1',0,0,'2019-03-06 11:18:43','2019-04-15 09:04:01'),(1390,10,'simple','n30807043-blue-EU 44-1',0,0,'2019-03-06 11:18:44','2019-04-15 09:04:01'),(1391,10,'simple','n30807043-blue-EU 40-1',0,0,'2019-03-06 11:18:45','2019-04-15 09:04:01'),(1392,10,'simple','n30807043-blue-EU 43-1',0,0,'2019-03-06 11:18:47','2019-04-15 09:04:01'),(1393,10,'simple','n30807043-blue-EU 39-1',0,0,'2019-03-06 11:18:48','2019-04-15 09:04:01'),(1394,10,'simple','n30807043-blue-EU 42-1',0,0,'2019-03-06 11:18:49','2019-04-15 09:04:01'),(1395,10,'simple','n30807043-white-EU 41-1',0,0,'2019-03-06 11:18:51','2019-04-15 09:04:01'),(1396,10,'simple','n30807043-white-EU 44-1',0,0,'2019-03-06 11:18:52','2019-04-15 09:04:01'),(1397,10,'simple','n30807043-white-EU 40-1',0,0,'2019-03-06 11:18:53','2019-04-15 09:04:01'),(1398,10,'simple','n30807043-white-EU 43-1',0,0,'2019-03-06 11:18:54','2019-04-15 09:04:01'),(1399,10,'simple','n30807043-white-EU 39-1',0,0,'2019-03-06 11:18:56','2019-04-15 09:04:01'),(1400,10,'simple','n30807043-white-EU 42-1',0,0,'2019-03-06 11:18:57','2019-04-15 09:04:01'),(1401,10,'simple','n30807043-black-EU 41-1',0,0,'2019-03-06 11:18:58','2019-04-15 09:04:01'),(1402,10,'simple','n30807043-black-EU 44-1',0,0,'2019-03-06 11:19:00','2019-04-15 09:04:01'),(1403,10,'simple','n30807043-black-EU 40-1',0,0,'2019-03-06 11:19:01','2019-04-15 09:04:01'),(1404,10,'simple','n30807043-black-EU 43-1',0,0,'2019-03-06 11:19:02','2019-04-15 09:04:01'),(1405,10,'simple','n30807043-black-EU 39-1',0,0,'2019-03-06 11:19:04','2019-04-15 09:04:01'),(1406,10,'simple','n30807043-black-EU 42-1',0,0,'2019-03-06 11:19:05','2019-04-15 09:04:01'),(1407,10,'simple','n30807043-red-EU 41-1',0,0,'2019-03-06 11:19:06','2019-04-15 09:04:01'),(1408,10,'simple','n30807043-red-EU 44-1',0,0,'2019-03-06 11:19:07','2019-04-15 09:04:01'),(1409,10,'simple','n30807043-red-EU 40-1',0,0,'2019-03-06 11:19:08','2019-04-15 09:04:01'),(1410,10,'simple','n30807043-red-EU 43-1',0,0,'2019-03-06 11:19:10','2019-04-15 09:04:01'),(1411,10,'simple','n30807043-red-EU 39-1',0,0,'2019-03-06 11:19:11','2019-04-15 09:04:01'),(1412,10,'simple','n30807043-red-EU 42-1',0,0,'2019-03-06 11:19:12','2019-04-15 09:04:01'),(1413,10,'configurable','n30807043',1,1,'2019-03-06 11:19:13','2019-03-07 15:22:24'),(1414,9,'simple','n31091479-brown-Extra small size-1',0,0,'2019-03-06 12:28:55','2019-04-15 09:04:01'),(1415,9,'simple','n31091479-brown-Small size-1',0,0,'2019-03-06 12:28:57','2019-04-15 09:04:01'),(1416,9,'simple','n31091479-brown-Medium size-1',0,0,'2019-03-06 12:28:58','2019-04-15 09:04:01'),(1417,9,'simple','n31091479-red-Extra small size-1',0,0,'2019-03-06 12:28:59','2019-04-15 09:04:01'),(1418,9,'simple','n31091479-red-Small size-1',0,0,'2019-03-06 12:29:00','2019-04-15 09:04:01'),(1419,9,'simple','n31091479-red-Medium size-1',0,0,'2019-03-06 12:29:01','2019-04-15 09:04:01'),(1420,10,'simple','n31091133-red-EU 45',0,0,'2019-03-06 12:31:10','2019-04-15 09:04:01'),(1421,10,'simple','n31091133-red-EU 43',0,0,'2019-03-06 12:31:16','2019-04-15 09:04:01'),(1422,10,'simple','n31091133-red-EU 42',0,0,'2019-03-06 12:31:20','2019-04-15 09:04:01'),(1423,10,'simple','n31091133-red-EU 41',0,0,'2019-03-06 12:31:25','2019-04-15 09:04:01'),(1424,10,'simple','n31091133-red-EU 40',0,0,'2019-03-06 12:31:30','2019-04-15 09:04:01'),(1425,10,'simple','n31091133-red-EU 38',0,0,'2019-03-06 12:31:35','2019-04-15 09:04:01'),(1426,10,'simple','n31091133-red-EU 37',0,0,'2019-03-06 12:31:39','2019-04-15 09:04:01'),(1427,10,'simple','n31091133-blue-EU 45',0,0,'2019-03-06 12:31:44','2019-04-15 09:04:01'),(1428,10,'simple','n31091133-blue-EU 43',0,0,'2019-03-06 12:31:49','2019-04-15 09:04:01'),(1429,10,'simple','n31091133-blue-EU 42',0,0,'2019-03-06 12:31:53','2019-04-15 09:04:01'),(1430,10,'simple','n31091133-blue-EU 41',0,0,'2019-03-06 12:31:56','2019-04-15 09:04:01'),(1431,10,'simple','n31091133-blue-EU 40',0,0,'2019-03-06 12:32:01','2019-04-15 09:04:01'),(1432,10,'simple','n31091133-blue-EU 38',0,0,'2019-03-06 12:32:06','2019-04-15 09:04:01'),(1433,10,'simple','n31091133-blue-EU 37',0,0,'2019-03-06 12:32:10','2019-04-15 09:04:01'),(1434,10,'simple','n31091133-white-EU 45',0,0,'2019-03-06 12:32:14','2019-04-15 09:04:01'),(1435,10,'simple','n31091133-white-EU 43',0,0,'2019-03-06 12:32:17','2019-04-15 09:04:01'),(1436,10,'simple','n31091133-white-EU 42',0,0,'2019-03-06 12:32:20','2019-04-15 09:04:01'),(1437,10,'simple','n31091133-white-EU 41',0,0,'2019-03-06 12:32:24','2019-04-15 09:04:01'),(1438,10,'simple','n31091133-white-EU 40',0,0,'2019-03-06 12:32:27','2019-04-15 09:04:01'),(1439,10,'simple','n31091133-white-EU 38',0,0,'2019-03-06 12:32:34','2019-04-15 09:04:01'),(1440,10,'simple','n31091133-white-EU 37',0,0,'2019-03-06 12:32:37','2019-04-15 09:04:01'),(1441,10,'simple','n31091133-brown-EU 45',0,0,'2019-03-06 12:32:40','2019-04-15 09:04:01'),(1442,10,'simple','n31091133-brown-EU 43',0,0,'2019-03-06 12:32:44','2019-04-15 09:04:01'),(1443,10,'simple','n31091133-brown-EU 42',0,0,'2019-03-06 12:32:48','2019-04-15 09:04:01'),(1444,10,'simple','n31091133-brown-EU 41',0,0,'2019-03-06 12:32:52','2019-04-15 09:04:01'),(1445,10,'simple','n31091133-brown-EU 40',0,0,'2019-03-06 12:32:55','2019-04-15 09:04:01'),(1446,10,'simple','n31091133-brown-EU 38',0,0,'2019-03-06 12:32:59','2019-04-15 09:04:01'),(1447,10,'simple','n31091133-brown-EU 37',0,0,'2019-03-06 12:33:04','2019-04-15 09:04:01'),(1448,10,'simple','n31091133-black-EU 45',0,0,'2019-03-06 12:33:09','2019-04-15 09:04:01'),(1449,10,'simple','n31091133-black-EU 43',0,0,'2019-03-06 12:33:13','2019-04-15 09:04:01'),(1450,10,'simple','n31091133-black-EU 42',0,0,'2019-03-06 12:33:17','2019-04-15 09:04:01'),(1451,10,'simple','n31091133-black-EU 41',0,0,'2019-03-06 12:33:21','2019-04-15 09:04:01'),(1452,10,'simple','n31091133-black-EU 40',0,0,'2019-03-06 12:33:24','2019-04-15 09:04:01'),(1453,10,'simple','n31091133-black-EU 38',0,0,'2019-03-06 12:33:28','2019-04-15 09:04:01'),(1454,10,'simple','n31091133-black-EU 37',0,0,'2019-03-06 12:33:32','2019-04-15 09:04:01'),(1455,10,'configurable','n31091133',1,1,'2019-03-06 12:33:37','2019-03-07 12:17:37'),(1456,9,'simple','n31219211-white-Small size',0,0,'2019-03-06 12:43:39','2019-04-15 09:04:01'),(1457,9,'simple','n31219211-white-Medium size',0,0,'2019-03-06 12:43:44','2019-04-15 09:04:01'),(1458,9,'simple','n31219211-white-Large size',0,0,'2019-03-06 12:43:48','2019-04-15 09:04:01'),(1459,9,'simple','n31219211-white-Extra large size',0,0,'2019-03-06 12:43:51','2019-04-15 09:04:01'),(1460,9,'simple','n31219211-blue-Small size',0,0,'2019-03-06 12:43:55','2019-04-15 09:04:01'),(1461,9,'simple','n31219211-blue-Medium size',0,0,'2019-03-06 12:43:59','2019-04-15 09:04:01'),(1462,9,'simple','n31219211-blue-Large size',0,0,'2019-03-06 12:44:04','2019-04-15 09:04:01'),(1463,9,'simple','n31219211-blue-Extra large size',0,0,'2019-03-06 12:44:10','2019-04-15 09:04:01'),(1464,9,'configurable','n31219211',1,1,'2019-03-06 12:44:15','2019-03-07 15:01:36'),(1465,10,'simple','n30986434-grey-EU 44',0,0,'2019-03-06 12:51:44','2019-04-15 09:04:01'),(1466,10,'simple','n30986434-grey-EU 40',0,0,'2019-03-06 12:51:46','2019-04-15 09:04:01'),(1467,10,'simple','n30986434-grey-EU 39',0,0,'2019-03-06 12:51:48','2019-04-15 09:04:01'),(1468,10,'simple','n30986434-grey-EU 42',0,0,'2019-03-06 12:51:49','2019-04-15 09:04:01'),(1469,10,'simple','n30986434-grey-EU 45',0,0,'2019-03-06 12:51:51','2019-04-15 09:04:01'),(1470,10,'simple','n30986434-grey-EU 43',0,0,'2019-03-06 12:51:52','2019-04-15 09:04:01'),(1471,10,'simple','n30986434-blue-EU 44',0,0,'2019-03-06 12:51:54','2019-04-15 09:04:01'),(1472,10,'simple','n30986434-blue-EU 40',0,0,'2019-03-06 12:51:56','2019-04-15 09:04:01'),(1473,10,'simple','n30986434-blue-EU 39',0,0,'2019-03-06 12:51:57','2019-04-15 09:04:01'),(1474,10,'simple','n30986434-blue-EU 42',0,0,'2019-03-06 12:51:59','2019-04-15 09:04:01'),(1475,10,'simple','n30986434-blue-EU 45',0,0,'2019-03-06 12:52:02','2019-04-15 09:04:01'),(1476,10,'simple','n30986434-blue-EU 43',0,0,'2019-03-06 12:52:04','2019-04-15 09:04:01'),(1477,10,'simple','n30986434-white-EU 44',0,0,'2019-03-06 12:52:05','2019-04-15 09:04:01'),(1478,10,'simple','n30986434-white-EU 40',0,0,'2019-03-06 12:52:07','2019-04-15 09:04:01'),(1479,10,'simple','n30986434-white-EU 39',0,0,'2019-03-06 12:52:08','2019-04-15 09:04:01'),(1480,10,'simple','n30986434-white-EU 42',0,0,'2019-03-06 12:52:10','2019-04-15 09:04:01'),(1481,10,'simple','n30986434-white-EU 45',0,0,'2019-03-06 12:52:12','2019-04-15 09:04:01'),(1482,10,'simple','n30986434-white-EU 43',0,0,'2019-03-06 12:52:16','2019-04-15 09:04:01'),(1483,10,'simple','n30986434-black-EU 44',0,0,'2019-03-06 12:52:19','2019-04-15 09:04:01'),(1484,10,'simple','n30986434-black-EU 40',0,0,'2019-03-06 12:52:22','2019-04-15 09:04:01'),(1485,10,'simple','n30986434-black-EU 39',0,0,'2019-03-06 12:52:25','2019-04-15 09:04:01'),(1486,10,'simple','n30986434-black-EU 42',0,0,'2019-03-06 12:52:27','2019-04-15 09:04:01'),(1487,10,'simple','n30986434-black-EU 45',0,0,'2019-03-06 12:52:30','2019-04-15 09:04:01'),(1488,10,'simple','n30986434-black-EU 43',0,0,'2019-03-06 12:52:33','2019-04-15 09:04:01'),(1489,10,'simple','n30986434-red-EU 44',0,0,'2019-03-06 12:52:37','2019-04-15 09:04:01'),(1490,10,'simple','n30986434-red-EU 40',0,0,'2019-03-06 12:52:40','2019-04-15 09:04:01'),(1491,10,'simple','n30986434-red-EU 39',0,0,'2019-03-06 12:52:42','2019-04-15 09:04:01'),(1492,10,'simple','n30986434-red-EU 42',0,0,'2019-03-06 12:52:45','2019-04-15 09:04:01'),(1493,10,'simple','n30986434-red-EU 45',0,0,'2019-03-06 12:52:47','2019-04-15 09:04:01'),(1494,10,'simple','n30986434-red-EU 43',0,0,'2019-03-06 12:52:49','2019-04-15 09:04:01'),(1495,10,'configurable','n30986434',1,1,'2019-03-06 12:52:51','2019-03-07 14:53:24'),(1496,10,'simple','n31149594-black-EU 36',0,0,'2019-03-06 13:12:51','2019-04-15 09:04:01'),(1497,10,'simple','n31149594-black-EU 39',0,0,'2019-03-06 13:12:57','2019-04-15 09:04:01'),(1498,10,'simple','n31149594-black-EU 37',0,0,'2019-03-06 13:12:59','2019-04-15 09:04:01'),(1499,10,'simple','n31149594-black-EU 40',0,0,'2019-03-06 13:13:01','2019-04-15 09:04:01'),(1500,10,'simple','n31149594-black-EU 38',0,0,'2019-03-06 13:13:03','2019-04-15 09:04:01'),(1501,10,'simple','n31149594-black-EU 41',0,0,'2019-03-06 13:13:06','2019-04-15 09:04:01'),(1502,10,'simple','n31149594-white-EU 36',0,0,'2019-03-06 13:13:08','2019-04-15 09:04:01'),(1503,10,'simple','n31149594-white-EU 39',0,0,'2019-03-06 13:13:10','2019-04-15 09:04:01'),(1504,10,'simple','n31149594-white-EU 37',0,0,'2019-03-06 13:13:12','2019-04-15 09:04:01'),(1505,10,'simple','n31149594-white-EU 40',0,0,'2019-03-06 13:13:14','2019-04-15 09:04:01'),(1506,10,'simple','n31149594-white-EU 38',0,0,'2019-03-06 13:13:16','2019-04-15 09:04:01'),(1507,10,'simple','n31149594-white-EU 41',0,0,'2019-03-06 13:13:18','2019-04-15 09:04:01'),(1508,10,'simple','n31149594-blue-EU 36',0,0,'2019-03-06 13:13:20','2019-04-15 09:04:01'),(1509,10,'simple','n31149594-blue-EU 39',0,0,'2019-03-06 13:13:22','2019-04-15 09:04:01'),(1510,10,'simple','n31149594-blue-EU 37',0,0,'2019-03-06 13:13:24','2019-04-15 09:04:01'),(1511,10,'simple','n31149594-blue-EU 40',0,0,'2019-03-06 13:13:26','2019-04-15 09:04:01'),(1512,10,'simple','n31149594-blue-EU 38',0,0,'2019-03-06 13:13:28','2019-04-15 09:04:01'),(1513,10,'simple','n31149594-blue-EU 41',0,0,'2019-03-06 13:13:30','2019-04-15 09:04:01'),(1514,10,'simple','n31149594-red-EU 36',0,0,'2019-03-06 13:13:32','2019-04-15 09:04:01'),(1515,10,'simple','n31149594-red-EU 39',0,0,'2019-03-06 13:13:37','2019-04-15 09:04:01'),(1516,10,'simple','n31149594-red-EU 37',0,0,'2019-03-06 13:13:39','2019-04-15 09:04:01'),(1517,10,'simple','n31149594-red-EU 40',0,0,'2019-03-06 13:13:42','2019-04-15 09:04:01'),(1518,10,'simple','n31149594-red-EU 38',0,0,'2019-03-06 13:13:47','2019-04-15 09:04:01'),(1519,10,'simple','n31149594-red-EU 41',0,0,'2019-03-06 13:13:49','2019-04-15 09:04:01'),(1520,10,'simple','n31149594-brown-EU 36',0,0,'2019-03-06 13:13:51','2019-04-15 09:04:01'),(1521,10,'simple','n31149594-brown-EU 39',0,0,'2019-03-06 13:13:53','2019-04-15 09:04:01'),(1522,10,'simple','n31149594-brown-EU 37',0,0,'2019-03-06 13:13:56','2019-04-15 09:04:01'),(1523,10,'simple','n31149594-brown-EU 40',0,0,'2019-03-06 13:13:58','2019-04-15 09:04:01'),(1524,10,'simple','n31149594-brown-EU 38',0,0,'2019-03-06 13:14:00','2019-04-15 09:04:01'),(1525,10,'simple','n31149594-brown-EU 41',0,0,'2019-03-06 13:14:02','2019-04-15 09:04:01'),(1526,10,'configurable','n31149594',1,1,'2019-03-06 13:14:04','2019-03-07 14:57:07'),(1527,9,'simple','n31176055-brown-Extra small size',0,0,'2019-03-06 13:16:31','2019-04-15 09:04:01'),(1528,9,'simple','n31176055-brown-Small size',0,0,'2019-03-06 13:16:36','2019-04-15 09:04:01'),(1529,9,'simple','n31176055-brown-Extra large size',0,0,'2019-03-06 13:16:40','2019-04-15 09:04:01'),(1530,9,'simple','n31176055-brown-Medium size',0,0,'2019-03-06 13:16:43','2019-04-15 09:04:01'),(1531,9,'simple','n31176055-white-Extra small size',0,0,'2019-03-06 13:16:47','2019-04-15 09:04:01'),(1532,9,'simple','n31176055-white-Small size',0,0,'2019-03-06 13:16:51','2019-04-15 09:04:01'),(1533,9,'simple','n31176055-white-Extra large size',0,0,'2019-03-06 13:16:55','2019-04-15 09:04:01'),(1534,9,'simple','n31176055-white-Medium size',0,0,'2019-03-06 13:16:59','2019-04-15 09:04:01'),(1535,9,'configurable','n31176055',1,1,'2019-03-06 13:17:02','2019-03-07 15:04:32'),(1536,10,'simple','n31091010-EU 39-red',0,0,'2019-03-06 13:25:45','2019-04-15 09:04:01'),(1537,10,'simple','n31091010-EU 39-black',0,0,'2019-03-06 13:25:48','2019-04-15 09:04:01'),(1538,10,'simple','n31091010-EU 39-white',0,0,'2019-03-06 13:25:50','2019-04-15 09:04:01'),(1539,10,'simple','n31091010-EU 39-brown',0,0,'2019-03-06 13:25:52','2019-04-15 09:04:01'),(1540,10,'simple','n31091010-EU 39-grey',0,0,'2019-03-06 13:25:54','2019-04-15 09:04:01'),(1541,10,'simple','n31091010-EU 42-red',0,0,'2019-03-06 13:25:56','2019-04-15 09:04:01'),(1542,10,'simple','n31091010-EU 42-black',0,0,'2019-03-06 13:25:58','2019-04-15 09:04:01'),(1543,10,'simple','n31091010-EU 42-white',0,0,'2019-03-06 13:26:00','2019-04-15 09:04:01'),(1544,10,'simple','n31091010-EU 42-brown',0,0,'2019-03-06 13:26:02','2019-04-15 09:04:01'),(1545,10,'simple','n31091010-EU 42-grey',0,0,'2019-03-06 13:26:05','2019-04-15 09:04:01'),(1546,10,'simple','n31091010-EU 40-red',0,0,'2019-03-06 13:26:07','2019-04-15 09:04:01'),(1547,10,'simple','n31091010-EU 40-black',0,0,'2019-03-06 13:26:09','2019-04-15 09:04:01'),(1548,10,'simple','n31091010-EU 40-white',0,0,'2019-03-06 13:26:11','2019-04-15 09:04:01'),(1549,10,'simple','n31091010-EU 40-brown',0,0,'2019-03-06 13:26:13','2019-04-15 09:04:01'),(1550,10,'simple','n31091010-EU 40-grey',0,0,'2019-03-06 13:26:16','2019-04-15 09:04:01'),(1551,10,'simple','n31091010-EU 43-red',0,0,'2019-03-06 13:26:19','2019-04-15 09:04:01'),(1552,10,'simple','n31091010-EU 43-black',0,0,'2019-03-06 13:26:21','2019-04-15 09:04:01'),(1553,10,'simple','n31091010-EU 43-white',0,0,'2019-03-06 13:26:23','2019-04-15 09:04:01'),(1554,10,'simple','n31091010-EU 43-brown',0,0,'2019-03-06 13:26:25','2019-04-15 09:04:01'),(1555,10,'simple','n31091010-EU 43-grey',0,0,'2019-03-06 13:26:26','2019-04-15 09:04:01'),(1556,10,'simple','n31091010-EU 41-red',0,0,'2019-03-06 13:26:28','2019-04-15 09:04:01'),(1557,10,'simple','n31091010-EU 41-black',0,0,'2019-03-06 13:26:30','2019-04-15 09:04:01'),(1558,10,'simple','n31091010-EU 41-white',0,0,'2019-03-06 13:26:32','2019-04-15 09:04:01'),(1559,10,'simple','n31091010-EU 41-brown',0,0,'2019-03-06 13:26:34','2019-04-15 09:04:01'),(1560,10,'simple','n31091010-EU 41-grey',0,0,'2019-03-06 13:26:36','2019-04-15 09:04:01'),(1561,10,'configurable','n31091010',1,1,'2019-03-06 13:26:38','2019-03-07 15:02:17'),(1562,9,'simple','n31231309-brown-Extra small size',0,0,'2019-03-06 13:28:20','2019-04-15 09:04:01'),(1563,9,'simple','n31231309-brown-Small size',0,0,'2019-03-06 13:28:25','2019-04-15 09:04:01'),(1564,9,'simple','n31231309-brown-Medium size',0,0,'2019-03-06 13:28:30','2019-04-15 09:04:01'),(1565,9,'simple','n31231309-blue-Extra small size',0,0,'2019-03-06 13:28:34','2019-04-15 09:04:01'),(1566,9,'simple','n31231309-blue-Small size',0,0,'2019-03-06 13:28:38','2019-04-15 09:04:01'),(1567,9,'simple','n31231309-blue-Medium size',0,0,'2019-03-06 13:28:42','2019-04-15 09:04:01'),(1568,9,'configurable','n31231309',1,1,'2019-03-06 13:28:46','2019-03-07 15:06:43'),(1569,9,'simple','n31302817-brown-Large size',0,0,'2019-03-06 13:37:38','2019-04-15 09:04:01'),(1570,9,'simple','n31302817-brown-Small size',0,0,'2019-03-06 13:37:44','2019-04-15 09:04:01'),(1571,9,'simple','n31302817-brown-Medium size',0,0,'2019-03-06 13:37:48','2019-04-15 09:04:01'),(1572,9,'simple','n31302817-grey-Large size',0,0,'2019-03-06 13:37:52','2019-04-15 09:04:01'),(1573,9,'simple','n31134483-red-Extra small size',0,0,'2019-03-06 13:37:53','2019-04-15 09:04:01'),(1574,9,'simple','n31134483-red-Small size',0,0,'2019-03-06 13:37:57','2019-04-15 09:04:01'),(1575,9,'simple','n31302817-grey-Small size',0,0,'2019-03-06 13:38:00','2019-04-15 09:04:01'),(1576,9,'simple','n31134483-red-Medium size',0,0,'2019-03-06 13:38:00','2019-04-15 09:04:01'),(1577,9,'simple','n31134483-red-Large size',0,0,'2019-03-06 13:38:03','2019-04-15 09:04:01'),(1578,9,'simple','n31134483-black-Extra small size',0,0,'2019-03-06 13:38:06','2019-04-15 09:04:01'),(1579,9,'simple','n31302817-grey-Medium size',0,0,'2019-03-06 13:38:08','2019-04-15 09:04:01'),(1580,9,'simple','n31134483-black-Small size',0,0,'2019-03-06 13:38:09','2019-04-15 09:04:01'),(1581,9,'simple','n31134483-black-Medium size',0,0,'2019-03-06 13:38:12','2019-04-15 09:04:01'),(1582,9,'simple','n31134483-black-Large size',0,0,'2019-03-06 13:38:15','2019-04-15 09:04:01'),(1583,9,'configurable','n31302817',1,1,'2019-03-06 13:38:15','2019-03-07 15:09:17'),(1584,9,'simple','n31134483-blue-Extra small size',0,0,'2019-03-06 13:38:18','2019-04-15 09:04:01'),(1585,9,'simple','n31134483-blue-Small size',0,0,'2019-03-06 13:38:21','2019-04-15 09:04:01'),(1586,9,'simple','n31134483-blue-Medium size',0,0,'2019-03-06 13:38:24','2019-04-15 09:04:01'),(1587,9,'simple','n31134483-blue-Large size',0,0,'2019-03-06 13:38:26','2019-04-15 09:04:01'),(1588,9,'simple','n31134483-white-Extra small size',0,0,'2019-03-06 13:38:28','2019-04-15 09:04:01'),(1589,9,'simple','n31134483-white-Small size',0,0,'2019-03-06 13:38:30','2019-04-15 09:04:01'),(1590,9,'simple','n31134483-white-Medium size',0,0,'2019-03-06 13:38:32','2019-04-15 09:04:01'),(1591,9,'simple','n31134483-white-Large size',0,0,'2019-03-06 13:38:34','2019-04-15 09:04:01'),(1592,9,'simple','n31134483-brown-Extra small size',0,0,'2019-03-06 13:38:36','2019-04-15 09:04:01'),(1593,9,'simple','n31134483-brown-Small size',0,0,'2019-03-06 13:38:40','2019-04-15 09:04:01'),(1594,9,'simple','n31134483-brown-Medium size',0,0,'2019-03-06 13:38:41','2019-04-15 09:04:01'),(1595,9,'simple','n31134483-brown-Large size',0,0,'2019-03-06 13:38:44','2019-04-15 09:04:01'),(1596,9,'configurable','n31134483',1,1,'2019-03-06 13:38:45','2019-03-07 15:22:38'),(1597,10,'configurable','n31276018',1,1,'2019-03-06 14:06:07','2019-03-07 15:21:00'),(1598,9,'simple','n31253499-grey-Large size',0,0,'2019-03-06 14:10:33','2019-04-15 09:04:01'),(1599,9,'simple','n31253499-grey-Small size',0,0,'2019-03-06 14:10:35','2019-04-15 09:04:01'),(1600,9,'simple','n31253499-grey-Medium size',0,0,'2019-03-06 14:10:36','2019-04-15 09:04:01'),(1601,9,'simple','n31253499-blue-Large size',0,0,'2019-03-06 14:10:38','2019-04-15 09:04:01'),(1602,9,'simple','n31253499-blue-Small size',0,0,'2019-03-06 14:10:41','2019-04-15 09:04:01'),(1603,9,'simple','n31253499-blue-Medium size',0,0,'2019-03-06 14:10:42','2019-04-15 09:04:01'),(1604,9,'configurable','n31253499',1,1,'2019-03-06 14:10:46','2019-03-07 15:11:48'),(1605,10,'simple','n31276018-EU 41-red',0,0,'2019-03-06 14:14:58','2019-04-15 09:04:01'),(1606,10,'simple','n31276018-EU 41-blue',0,0,'2019-03-06 14:15:01','2019-04-15 09:04:01'),(1607,10,'simple','n31276018-EU 41-white',0,0,'2019-03-06 14:15:03','2019-04-15 09:04:01'),(1608,10,'simple','n31276018-EU 41-brown',0,0,'2019-03-06 14:15:06','2019-04-15 09:04:01'),(1609,10,'simple','n31276018-EU 41-grey',0,0,'2019-03-06 14:15:10','2019-04-15 09:04:01'),(1610,10,'simple','n31276018-EU 40-red',0,0,'2019-03-06 14:15:12','2019-04-15 09:04:01'),(1611,10,'simple','n31276018-EU 40-blue',0,0,'2019-03-06 14:15:14','2019-04-15 09:04:01'),(1612,10,'simple','n31276018-EU 40-white',0,0,'2019-03-06 14:15:16','2019-04-15 09:04:01'),(1613,10,'simple','n31276018-EU 40-brown',0,0,'2019-03-06 14:15:18','2019-04-15 09:04:01'),(1614,10,'simple','n31276018-EU 40-grey',0,0,'2019-03-06 14:15:21','2019-04-15 09:04:01'),(1615,10,'simple','n31276018-EU 42-red',0,0,'2019-03-06 14:15:23','2019-04-15 09:04:01'),(1616,10,'simple','n31276018-EU 42-blue',0,0,'2019-03-06 14:15:24','2019-04-15 09:04:01'),(1617,10,'simple','n31276018-EU 42-white',0,0,'2019-03-06 14:15:27','2019-04-15 09:04:01'),(1618,10,'simple','n31276018-EU 42-brown',0,0,'2019-03-06 14:15:28','2019-04-15 09:04:01'),(1619,10,'simple','n31276018-EU 42-grey',0,0,'2019-03-06 14:15:30','2019-04-15 09:04:01'),(1620,9,'simple','n31253492-blue-Extra small size',0,0,'2019-03-06 14:20:49','2019-04-15 09:04:01'),(1621,9,'simple','n31253492-blue-Large size',0,0,'2019-03-06 14:20:53','2019-04-15 09:04:01'),(1622,9,'simple','n31253492-blue-Extra large size',0,0,'2019-03-06 14:20:55','2019-04-15 09:04:01'),(1623,9,'simple','n31253492-blue-Small size',0,0,'2019-03-06 14:20:58','2019-04-15 09:04:01'),(1624,9,'simple','n31253492-blue-Medium size',0,0,'2019-03-06 14:21:00','2019-04-15 09:04:01'),(1625,9,'simple','n31253492-black-Extra small size',0,0,'2019-03-06 14:21:02','2019-04-15 09:04:01'),(1626,9,'simple','n31253492-black-Large size',0,0,'2019-03-06 14:21:03','2019-04-15 09:04:01'),(1627,9,'simple','n31253492-black-Extra large size',0,0,'2019-03-06 14:21:05','2019-04-15 09:04:01'),(1628,9,'simple','n31253492-black-Small size',0,0,'2019-03-06 14:21:06','2019-04-15 09:04:01'),(1629,9,'simple','n31253492-black-Medium size',0,0,'2019-03-06 14:21:08','2019-04-15 09:04:01'),(1630,9,'configurable','n31253492',1,1,'2019-03-06 14:21:09','2019-03-07 15:13:53'),(1631,10,'simple','n31276018-1-black-EU 42',0,0,'2019-03-06 14:24:18','2019-04-15 09:04:01'),(1632,10,'simple','n31276018-1-black-EU 43',0,0,'2019-03-06 14:24:20','2019-04-15 09:04:01'),(1633,10,'simple','n31276018-1-black-EU 44',0,0,'2019-03-06 14:24:22','2019-04-15 09:04:01'),(1634,10,'simple','n31276018-1-red-EU 42',0,0,'2019-03-06 14:24:23','2019-04-15 09:04:01'),(1635,10,'simple','n31276018-1-red-EU 43',0,0,'2019-03-06 14:24:25','2019-04-15 09:04:01'),(1636,10,'simple','n31276018-1-red-EU 44',0,0,'2019-03-06 14:24:27','2019-04-15 09:04:01'),(1637,10,'simple','n31276018-1-blue-EU 42',0,0,'2019-03-06 14:24:29','2019-04-15 09:04:01'),(1638,10,'simple','n31276018-1-blue-EU 43',0,0,'2019-03-06 14:24:30','2019-04-15 09:04:01'),(1639,10,'simple','n31276018-1-blue-EU 44',0,0,'2019-03-06 14:24:32','2019-04-15 09:04:01'),(1640,10,'simple','n31276018-1-white-EU 42',0,0,'2019-03-06 14:24:33','2019-04-15 09:04:01'),(1641,10,'simple','n31276018-1-white-EU 43',0,0,'2019-03-06 14:24:35','2019-04-15 09:04:01'),(1642,10,'simple','n31276018-1-white-EU 44',0,0,'2019-03-06 14:24:37','2019-04-15 09:04:01'),(1643,10,'configurable','n31276018-1',1,1,'2019-03-06 14:24:38','2019-03-07 15:08:02'),(1644,9,'simple','n30988045-white-Small size',0,0,'2019-03-06 14:31:37','2019-04-15 09:04:01'),(1645,9,'simple','n30988045-white-Medium size',0,0,'2019-03-06 14:31:39','2019-04-15 09:04:01'),(1646,9,'simple','n30988045-white-Extra large size',0,0,'2019-03-06 14:31:41','2019-04-15 09:04:01'),(1647,9,'simple','n30988045-white-Large size',0,0,'2019-03-06 14:31:42','2019-04-15 09:04:01'),(1648,9,'simple','n30988045-grey-Small size',0,0,'2019-03-06 14:31:43','2019-04-15 09:04:01'),(1649,9,'simple','n30988045-grey-Medium size',0,0,'2019-03-06 14:31:45','2019-04-15 09:04:01'),(1650,9,'simple','n30988045-grey-Extra large size',0,0,'2019-03-06 14:31:46','2019-04-15 09:04:01'),(1651,9,'simple','n30988045-grey-Large size',0,0,'2019-03-06 14:31:48','2019-04-15 09:04:01'),(1652,9,'simple','n30988045-blue-Small size',0,0,'2019-03-06 14:31:49','2019-04-15 09:04:01'),(1653,9,'simple','n30988045-blue-Medium size',0,0,'2019-03-06 14:31:51','2019-04-15 09:04:01'),(1654,9,'simple','n30988045-blue-Extra large size',0,0,'2019-03-06 14:31:52','2019-04-15 09:04:01'),(1655,9,'simple','n30988045-blue-Large size',0,0,'2019-03-06 14:31:54','2019-04-15 09:04:01'),(1656,9,'configurable','n30988045',1,1,'2019-03-06 14:31:55','2019-03-07 15:15:53'),(1657,9,'simple','n31135088-Large size-brown',0,0,'2019-03-06 14:34:30','2019-04-15 09:04:01'),(1658,9,'simple','n31135088-Large size-grey',0,0,'2019-03-06 14:34:33','2019-04-15 09:04:01'),(1659,9,'simple','n31135088-Large size-white',0,0,'2019-03-06 14:34:35','2019-04-15 09:04:01'),(1660,9,'simple','n31135088-Large size-blue',0,0,'2019-03-06 14:34:37','2019-04-15 09:04:01'),(1661,9,'simple','n31135088-Large size-red',0,0,'2019-03-06 14:34:38','2019-04-15 09:04:01'),(1662,9,'simple','n31135088-Extra large size-brown',0,0,'2019-03-06 14:34:40','2019-04-15 09:04:01'),(1663,9,'simple','n31135088-Extra large size-grey',0,0,'2019-03-06 14:34:43','2019-04-15 09:04:01'),(1664,9,'simple','n31135088-Extra large size-white',0,0,'2019-03-06 14:34:44','2019-04-15 09:04:01'),(1665,9,'simple','n31135088-Extra large size-blue',0,0,'2019-03-06 14:34:46','2019-04-15 09:04:01'),(1666,9,'simple','n31135088-Extra large size-red',0,0,'2019-03-06 14:34:48','2019-04-15 09:04:01'),(1667,9,'simple','n31135088-Small size-brown',0,0,'2019-03-06 14:34:50','2019-04-15 09:04:01'),(1668,9,'simple','n31135088-Small size-grey',0,0,'2019-03-06 14:34:53','2019-04-15 09:04:01'),(1669,9,'simple','n31135088-Small size-white',0,0,'2019-03-06 14:34:55','2019-04-15 09:04:01'),(1670,9,'simple','n31135088-Small size-blue',0,0,'2019-03-06 14:34:57','2019-04-15 09:04:01'),(1671,9,'simple','n31135088-Small size-red',0,0,'2019-03-06 14:34:58','2019-04-15 09:04:01'),(1672,9,'simple','n31135088-Medium size-brown',0,0,'2019-03-06 14:35:00','2019-04-15 09:04:01'),(1673,9,'simple','n31135088-Medium size-grey',0,0,'2019-03-06 14:35:01','2019-04-15 09:04:01'),(1674,9,'simple','n31135088-Medium size-white',0,0,'2019-03-06 14:35:03','2019-04-15 09:04:01'),(1675,9,'simple','n31135088-Medium size-blue',0,0,'2019-03-06 14:35:05','2019-04-15 09:04:01'),(1676,9,'simple','n31135088-Medium size-red',0,0,'2019-03-06 14:35:06','2019-04-15 09:04:01'),(1677,9,'configurable','n31135088',1,1,'2019-03-06 14:35:08','2019-03-07 15:09:59'),(1678,9,'simple','n31207422-Large size-black',0,0,'2019-03-06 14:41:31','2019-04-15 09:04:01'),(1679,9,'simple','n31207422-Large size-red',0,0,'2019-03-06 14:41:34','2019-04-15 09:04:01'),(1680,9,'simple','n31207422-Large size-white',0,0,'2019-03-06 14:41:35','2019-04-15 09:04:01'),(1681,9,'simple','n31207422-Large size-blue',0,0,'2019-03-06 14:41:37','2019-04-15 09:04:01'),(1682,9,'simple','n31207422-Large size-grey',0,0,'2019-03-06 14:41:39','2019-04-15 09:04:01'),(1683,9,'simple','n31207422-Extra small size-black',0,0,'2019-03-06 14:41:41','2019-04-15 09:04:01'),(1684,9,'simple','n31207422-Extra small size-red',0,0,'2019-03-06 14:41:42','2019-04-15 09:04:01'),(1685,9,'simple','n31207422-Extra small size-white',0,0,'2019-03-06 14:41:44','2019-04-15 09:04:01'),(1686,9,'simple','n31207422-Extra small size-blue',0,0,'2019-03-06 14:41:45','2019-04-15 09:04:01'),(1687,9,'simple','n31207422-Extra small size-grey',0,0,'2019-03-06 14:41:47','2019-04-15 09:04:01'),(1688,9,'simple','n31207422-Small size-black',0,0,'2019-03-06 14:41:48','2019-04-15 09:04:01'),(1689,9,'simple','n31207422-Small size-red',0,0,'2019-03-06 14:41:50','2019-04-15 09:04:01'),(1690,9,'simple','n31207422-Small size-white',0,0,'2019-03-06 14:41:52','2019-04-15 09:04:01'),(1692,9,'simple','n31207422-Small size-blue',0,0,'2019-03-06 14:41:54','2019-04-15 09:04:01'),(1693,9,'simple','n31207422-Small size-grey',0,0,'2019-03-06 14:41:57','2019-04-15 09:04:01'),(1694,9,'simple','n31207422-Medium size-black',0,0,'2019-03-06 14:41:58','2019-04-15 09:04:01'),(1695,9,'simple','n31207422-Medium size-red',0,0,'2019-03-06 14:42:00','2019-04-15 09:04:01'),(1696,9,'simple','n31207422-Medium size-white',0,0,'2019-03-06 14:42:02','2019-04-15 09:04:01'),(1697,9,'simple','n31207422-Medium size-blue',0,0,'2019-03-06 14:42:04','2019-04-15 09:04:01'),(1698,9,'simple','n31207422-Medium size-grey',0,0,'2019-03-06 14:42:05','2019-04-15 09:04:01'),(1699,9,'configurable','n31207422',1,1,'2019-03-06 14:42:07','2019-03-07 15:12:31'),(1700,9,'simple','n31226241-white-Extra small size',0,0,'2019-03-06 14:47:20','2019-04-15 09:04:01'),(1701,9,'simple','n31226241-white-Small size',0,0,'2019-03-06 14:47:22','2019-04-15 09:04:01'),(1702,9,'simple','n31226241-white-Large size',0,0,'2019-03-06 14:47:24','2019-04-15 09:04:01'),(1703,9,'simple','n31226241-black-Extra small size',0,0,'2019-03-06 14:47:25','2019-04-15 09:04:01'),(1704,9,'simple','n31226241-black-Small size',0,0,'2019-03-06 14:47:27','2019-04-15 09:04:01'),(1705,9,'simple','n31226241-black-Large size',0,0,'2019-03-06 14:47:29','2019-04-15 09:04:01'),(1706,9,'simple','n31226241-red-Extra small size',0,0,'2019-03-06 14:47:31','2019-04-15 09:04:01'),(1707,9,'simple','n31226241-red-Small size',0,0,'2019-03-06 14:47:32','2019-04-15 09:04:01'),(1708,9,'simple','n31226241-red-Large size',0,0,'2019-03-06 14:47:34','2019-04-15 09:04:01'),(1709,9,'configurable','n31226241',1,1,'2019-03-06 14:47:36','2019-03-07 15:18:08'),(1710,9,'simple','n31231300-1-black-Large size',0,0,'2019-03-06 14:51:14','2019-04-15 09:04:01'),(1711,9,'simple','n31231300-1-black-Small size',0,0,'2019-03-06 14:51:17','2019-04-15 09:04:01'),(1712,9,'simple','n31231300-1-black-Medium size',0,0,'2019-03-06 14:51:18','2019-04-15 09:04:01'),(1713,9,'simple','n31231300-1-red-Large size',0,0,'2019-03-06 14:51:20','2019-04-15 09:04:01'),(1714,9,'simple','n31231300-1-red-Small size',0,0,'2019-03-06 14:51:21','2019-04-15 09:04:01'),(1715,9,'simple','n31231300-1-red-Medium size',0,0,'2019-03-06 14:51:23','2019-04-15 09:04:01'),(1716,9,'simple','n31231300-1-white-Large size',0,0,'2019-03-06 14:51:24','2019-04-15 09:04:01'),(1717,9,'simple','n31231300-1-white-Small size',0,0,'2019-03-06 14:51:26','2019-04-15 09:04:01'),(1718,9,'simple','n31231300-1-white-Medium size',0,0,'2019-03-06 14:51:28','2019-04-15 09:04:01'),(1719,9,'simple','n31231300-1-blue-Large size',0,0,'2019-03-06 14:51:29','2019-04-15 09:04:01'),(1720,9,'simple','n31231300-1-blue-Small size',0,0,'2019-03-06 14:51:31','2019-04-15 09:04:01'),(1721,9,'simple','n31231300-1-blue-Medium size',0,0,'2019-03-06 14:51:33','2019-04-15 09:04:01'),(1722,9,'simple','n31231300-1-grey-Large size',0,0,'2019-03-06 14:51:34','2019-04-15 09:04:01'),(1723,9,'simple','n31231300-1-grey-Small size',0,0,'2019-03-06 14:51:36','2019-04-15 09:04:01'),(1724,9,'simple','n31231300-1-grey-Medium size',0,0,'2019-03-06 14:51:37','2019-04-15 09:04:01'),(1725,9,'configurable','n31231300-1',1,1,'2019-03-06 14:51:39','2019-03-07 15:14:05'),(1726,9,'simple','n31250794-white-Extra large size',0,0,'2019-03-06 14:56:21','2019-04-15 09:04:01'),(1727,9,'simple','n31250794-white-Small size',0,0,'2019-03-06 14:56:25','2019-04-15 09:04:01'),(1728,9,'simple','n31250794-white-Medium size',0,0,'2019-03-06 14:56:29','2019-04-15 09:04:01'),(1729,9,'simple','n31250794-blue-Extra large size',0,0,'2019-03-06 14:56:34','2019-04-15 09:04:01'),(1730,9,'simple','n31250794-blue-Small size',0,0,'2019-03-06 14:56:38','2019-04-15 09:04:01'),(1731,9,'simple','n31250794-blue-Medium size',0,0,'2019-03-06 14:56:42','2019-04-15 09:04:01'),(1732,9,'simple','n31250794-black-Extra large size',0,0,'2019-03-06 14:56:50','2019-04-15 09:04:01'),(1733,9,'simple','n31250794-black-Small size',0,0,'2019-03-06 14:56:57','2019-04-15 09:04:01'),(1734,9,'simple','n31250794-black-Medium size',0,0,'2019-03-06 14:57:03','2019-04-15 09:04:01'),(1735,9,'configurable','n31250794',1,1,'2019-03-06 14:57:10','2019-03-07 15:19:56'),(1736,9,'simple','n31189077-1-red-Large size',0,0,'2019-03-06 15:00:22','2019-04-15 09:04:01'),(1737,9,'simple','n31189077-1-red-Small size',0,0,'2019-03-06 15:00:24','2019-04-15 09:04:01'),(1738,9,'simple','n31189077-1-red-Extra large size',0,0,'2019-03-06 15:00:25','2019-04-15 09:04:01'),(1739,9,'simple','n31189077-1-red-Medium size',0,0,'2019-03-06 15:00:27','2019-04-15 09:04:01'),(1740,9,'simple','n31189077-1-white-Large size',0,0,'2019-03-06 15:00:28','2019-04-15 09:04:01'),(1741,9,'simple','n31189077-1-white-Small size',0,0,'2019-03-06 15:00:30','2019-04-15 09:04:01'),(1742,9,'simple','n31189077-1-white-Extra large size',0,0,'2019-03-06 15:00:31','2019-04-15 09:04:01'),(1743,9,'simple','n31189077-1-white-Medium size',0,0,'2019-03-06 15:00:33','2019-04-15 09:04:01'),(1744,9,'simple','n31189077-1-blue-Large size',0,0,'2019-03-06 15:00:34','2019-04-15 09:04:01'),(1745,9,'simple','n31189077-1-blue-Small size',0,0,'2019-03-06 15:00:36','2019-04-15 09:04:01'),(1746,9,'simple','n31189077-1-blue-Extra large size',0,0,'2019-03-06 15:00:37','2019-04-15 09:04:01'),(1747,9,'simple','n31189077-1-blue-Medium size',0,0,'2019-03-06 15:00:39','2019-04-15 09:04:01'),(1748,9,'simple','n31189077-1-brown-Large size',0,0,'2019-03-06 15:00:40','2019-04-15 09:04:01'),(1749,9,'simple','n31189077-1-brown-Small size',0,0,'2019-03-06 15:00:42','2019-04-15 09:04:01'),(1750,9,'simple','n31189077-1-brown-Extra large size',0,0,'2019-03-06 15:00:43','2019-04-15 09:04:01'),(1751,9,'simple','n31189077-1-brown-Medium size',0,0,'2019-03-06 15:00:45','2019-04-15 09:04:01'),(1752,9,'simple','n31189077-1-grey-Large size',0,0,'2019-03-06 15:00:46','2019-04-15 09:04:01'),(1753,9,'simple','n31189077-1-grey-Small size',0,0,'2019-03-06 15:00:48','2019-04-15 09:04:01'),(1754,9,'simple','n31189077-1-grey-Extra large size',0,0,'2019-03-06 15:00:49','2019-04-15 09:04:01'),(1755,9,'simple','n31189077-1-grey-Medium size',0,0,'2019-03-06 15:00:51','2019-04-15 09:04:01'),(1756,9,'configurable','n31189077-1',1,1,'2019-03-06 15:00:52','2019-03-07 15:15:27'),(1757,9,'simple','n31167823-Medium size-white',0,0,'2019-03-06 15:17:39','2019-04-15 09:04:01'),(1758,9,'simple','n31167823-Medium size-red',0,0,'2019-03-06 15:17:44','2019-04-15 09:04:01'),(1759,9,'simple','n31167823-Medium size-black',0,0,'2019-03-06 15:17:48','2019-04-15 09:04:01'),(1760,9,'simple','n31167823-Medium size-blue',0,0,'2019-03-06 15:17:52','2019-04-15 09:04:01'),(1761,9,'simple','n31167823-Medium size-grey',0,0,'2019-03-06 15:17:56','2019-04-15 09:04:01'),(1762,9,'simple','n31167823-Small size-white',0,0,'2019-03-06 15:18:01','2019-04-15 09:04:01'),(1763,9,'simple','n31167823-Small size-red',0,0,'2019-03-06 15:18:05','2019-04-15 09:04:01'),(1764,9,'simple','n31167823-Small size-black',0,0,'2019-03-06 15:18:09','2019-04-15 09:04:01'),(1765,9,'simple','n31167823-Small size-blue',0,0,'2019-03-06 15:18:13','2019-04-15 09:04:01'),(1766,9,'simple','n31167823-Small size-grey',0,0,'2019-03-06 15:18:18','2019-04-15 09:04:01'),(1767,9,'simple','n31167823-Extra small size-white',0,0,'2019-03-06 15:18:22','2019-04-15 09:04:01'),(1768,9,'simple','n31167823-Extra small size-red',0,0,'2019-03-06 15:18:26','2019-04-15 09:04:01'),(1769,9,'simple','n31167823-Extra small size-black',0,0,'2019-03-06 15:18:30','2019-04-15 09:04:01'),(1770,9,'simple','n31167823-Extra small size-blue',0,0,'2019-03-06 15:18:35','2019-04-15 09:04:01'),(1771,9,'simple','n31167823-Extra small size-grey',0,0,'2019-03-06 15:18:39','2019-04-15 09:04:01'),(1772,9,'simple','n31167823-Large size-white',0,0,'2019-03-06 15:18:43','2019-04-15 09:04:01'),(1773,9,'simple','n31167823-Large size-red',0,0,'2019-03-06 15:18:47','2019-04-15 09:04:01'),(1774,9,'simple','n31167823-Large size-black',0,0,'2019-03-06 15:18:51','2019-04-15 09:04:01'),(1775,9,'simple','n31167823-Large size-blue',0,0,'2019-03-06 15:18:55','2019-04-15 09:04:01'),(1776,9,'simple','n31167823-Large size-grey',0,0,'2019-03-06 15:18:59','2019-04-15 09:04:01'),(1777,9,'configurable','n31167823',1,1,'2019-03-06 15:19:03','2019-03-07 15:18:46'),(1778,9,'simple','n31324632-grey-Large size',0,0,'2019-03-06 15:19:46','2019-04-15 09:04:01'),(1779,9,'simple','n31324632-grey-Small size',0,0,'2019-03-06 15:19:48','2019-04-15 09:04:01'),(1780,9,'simple','n31324632-grey-Medium size',0,0,'2019-03-06 15:19:50','2019-04-15 09:04:01'),(1781,9,'simple','n31324632-blue-Large size',0,0,'2019-03-06 15:19:51','2019-04-15 09:04:01'),(1782,9,'simple','n31324632-blue-Small size',0,0,'2019-03-06 15:19:53','2019-04-15 09:04:01'),(1783,9,'simple','n31324632-blue-Medium size',0,0,'2019-03-06 15:19:54','2019-04-15 09:04:01'),(1784,9,'simple','n31324632-black-Large size',0,0,'2019-03-06 15:19:56','2019-04-15 09:04:01'),(1785,9,'simple','n31324632-black-Small size',0,0,'2019-03-06 15:19:57','2019-04-15 09:04:01'),(1786,9,'simple','n31324632-black-Medium size',0,0,'2019-03-06 15:19:59','2019-04-15 09:04:01'),(1787,9,'configurable','n31324632',1,1,'2019-03-06 15:20:00','2019-03-07 15:25:23'),(1788,9,'simple','n31189007-red-Large size',0,0,'2019-03-06 15:24:46','2019-04-15 09:04:01'),(1789,9,'simple','n31189007-red-Small size',0,0,'2019-03-06 15:24:50','2019-04-15 09:04:01'),(1790,9,'simple','n31189007-red-Extra large size',0,0,'2019-03-06 15:24:53','2019-04-15 09:04:01'),(1791,9,'simple','n31189007-red-Medium size',0,0,'2019-03-06 15:24:56','2019-04-15 09:04:01'),(1792,9,'simple','n31189007-white-Large size',0,0,'2019-03-06 15:24:59','2019-04-15 09:04:01'),(1793,9,'simple','n31189007-white-Small size',0,0,'2019-03-06 15:25:02','2019-04-15 09:04:01'),(1794,9,'simple','n31189007-white-Extra large size',0,0,'2019-03-06 15:25:05','2019-04-15 09:04:01'),(1795,9,'simple','n31189007-white-Medium size',0,0,'2019-03-06 15:25:08','2019-04-15 09:04:01'),(1796,9,'simple','n31189007-blue-Large size',0,0,'2019-03-06 15:25:10','2019-04-15 09:04:01'),(1797,9,'simple','n31189007-blue-Small size',0,0,'2019-03-06 15:25:13','2019-04-15 09:04:01'),(1798,9,'simple','n31189007-blue-Extra large size',0,0,'2019-03-06 15:25:16','2019-04-15 09:04:01'),(1799,9,'simple','n31189007-blue-Medium size',0,0,'2019-03-06 15:25:19','2019-04-15 09:04:01'),(1800,9,'simple','n31189007-brown-Large size',0,0,'2019-03-06 15:25:22','2019-04-15 09:04:01'),(1801,9,'simple','n31189007-brown-Small size',0,0,'2019-03-06 15:25:24','2019-04-15 09:04:01'),(1802,9,'simple','n31189007-brown-Extra large size',0,0,'2019-03-06 15:25:27','2019-04-15 09:04:01'),(1803,9,'simple','n31189007-brown-Medium size',0,0,'2019-03-06 15:25:30','2019-04-15 09:04:01'),(1804,9,'simple','n31189007-grey-Large size',0,0,'2019-03-06 15:25:33','2019-04-15 09:04:01'),(1805,9,'simple','n31189007-grey-Small size',0,0,'2019-03-06 15:25:36','2019-04-15 09:04:01'),(1806,9,'simple','n31189007-grey-Extra large size',0,0,'2019-03-06 15:25:38','2019-04-15 09:04:01'),(1807,9,'simple','n31189007-grey-Medium size',0,0,'2019-03-06 15:25:41','2019-04-15 09:04:01'),(1808,9,'configurable','n31189007',1,1,'2019-03-06 15:25:44','2019-03-08 07:38:24'),(1809,9,'simple','n31253491-brown-Extra small size',0,0,'2019-03-06 15:30:56','2019-04-15 09:04:01'),(1810,9,'simple','n31253491-brown-Large size',0,0,'2019-03-06 15:30:58','2019-04-15 09:04:01'),(1811,9,'simple','n31253491-brown-Small size',0,0,'2019-03-06 15:31:01','2019-04-15 09:04:01'),(1812,9,'simple','n31253491-brown-Medium size',0,0,'2019-03-06 15:31:04','2019-04-15 09:04:01'),(1813,9,'simple','n31253491-grey-Extra small size',0,0,'2019-03-06 15:31:05','2019-04-15 09:04:01'),(1814,9,'simple','n31253491-grey-Large size',0,0,'2019-03-06 15:31:06','2019-04-15 09:04:01'),(1815,9,'simple','n31253491-grey-Small size',0,0,'2019-03-06 15:31:07','2019-04-15 09:04:01'),(1816,9,'simple','n31253491-grey-Medium size',0,0,'2019-03-06 15:31:10','2019-04-15 09:04:01'),(1817,9,'configurable','n31253491',1,1,'2019-03-06 15:31:12','2019-03-07 15:35:15'),(1834,9,'simple','n31253498-black-Large size',0,0,'2019-03-06 15:40:35','2019-04-15 09:04:01'),(1835,9,'simple','n31253498-black-Small size',0,0,'2019-03-06 15:40:37','2019-04-15 09:04:01'),(1836,9,'simple','n31253498-black-Medium size',0,0,'2019-03-06 15:40:38','2019-04-15 09:04:01'),(1837,9,'simple','n31253498-grey-Large size',0,0,'2019-03-06 15:40:39','2019-04-15 09:04:01'),(1838,9,'simple','n31253498-grey-Small size',0,0,'2019-03-06 15:40:40','2019-04-15 09:04:01'),(1839,9,'simple','n31253498-grey-Medium size',0,0,'2019-03-06 15:40:40','2019-04-15 09:04:01'),(1840,9,'configurable','n31253498',1,1,'2019-03-06 15:40:41','2019-03-07 15:37:43'),(1841,9,'simple','n31231300-brown-Extra small size',0,0,'2019-03-06 15:44:31','2019-04-15 09:04:01'),(1842,9,'simple','n31231300-brown-Small size',0,0,'2019-03-06 15:44:34','2019-04-15 09:04:01'),(1843,9,'simple','n31231300-brown-Medium size',0,0,'2019-03-06 15:44:37','2019-04-15 09:04:01'),(1844,9,'simple','n31231300-brown-Large size',0,0,'2019-03-06 15:44:39','2019-04-15 09:04:01'),(1845,9,'simple','n31231300-brown-Extra large size',0,0,'2019-03-06 15:44:42','2019-04-15 09:04:01'),(1846,9,'simple','n31231300-white-Extra small size',0,0,'2019-03-06 15:44:44','2019-04-15 09:04:01'),(1847,9,'simple','n31231300-white-Small size',0,0,'2019-03-06 15:44:46','2019-04-15 09:04:01'),(1848,9,'simple','n31231300-white-Medium size',0,0,'2019-03-06 15:44:50','2019-04-15 09:04:01'),(1849,9,'simple','n31231300-white-Large size',0,0,'2019-03-06 15:44:53','2019-04-15 09:04:01'),(1850,9,'simple','n31231300-white-Extra large size',0,0,'2019-03-06 15:44:56','2019-04-15 09:04:01'),(1851,9,'simple','n31231300-grey-Extra small size',0,0,'2019-03-06 15:44:58','2019-04-15 09:04:01'),(1852,9,'simple','n31231300-grey-Small size',0,0,'2019-03-06 15:45:01','2019-04-15 09:04:01'),(1853,9,'simple','n31231300-grey-Medium size',0,0,'2019-03-06 15:45:03','2019-04-15 09:04:01'),(1854,9,'simple','n31231300-grey-Large size',0,0,'2019-03-06 15:45:05','2019-04-15 09:04:01'),(1855,9,'simple','n31231300-grey-Extra large size',0,0,'2019-03-06 15:45:09','2019-04-15 09:04:01'),(1856,9,'simple','n31231300-blue-Extra small size',0,0,'2019-03-06 15:45:11','2019-04-15 09:04:01'),(1857,9,'simple','n31231300-blue-Small size',0,0,'2019-03-06 15:45:14','2019-04-15 09:04:01'),(1858,9,'simple','n31231300-blue-Medium size',0,0,'2019-03-06 15:45:16','2019-04-15 09:04:01'),(1859,9,'simple','n31231300-blue-Large size',0,0,'2019-03-06 15:45:18','2019-04-15 09:04:01'),(1860,9,'simple','n31231300-blue-Extra large size',0,0,'2019-03-06 15:45:21','2019-04-15 09:04:01'),(1861,9,'simple','n31231300-red-Extra small size',0,0,'2019-03-06 15:45:23','2019-04-15 09:04:01'),(1862,9,'simple','n31231300-red-Small size',0,0,'2019-03-06 15:45:26','2019-04-15 09:04:01'),(1863,9,'simple','n31231300-red-Medium size',0,0,'2019-03-06 15:45:28','2019-04-15 09:04:01'),(1864,9,'simple','n31231300-red-Large size',0,0,'2019-03-06 15:45:31','2019-04-15 09:04:01'),(1865,9,'simple','n31231300-red-Extra large size',0,0,'2019-03-06 15:45:33','2019-04-15 09:04:01'),(1866,9,'configurable','n31231300',1,1,'2019-03-06 15:45:35','2019-03-08 07:41:18'),(1867,9,'simple','n31253493-black-Small size',0,0,'2019-03-06 15:50:31','2019-04-15 09:04:01'),(1868,9,'simple','n31253493-black-Medium size',0,0,'2019-03-06 15:50:33','2019-04-15 09:04:01'),(1869,9,'simple','n31253493-black-Extra large size',0,0,'2019-03-06 15:50:35','2019-04-15 09:04:01'),(1870,9,'simple','n31253493-black-Large size',0,0,'2019-03-06 15:50:36','2019-04-15 09:04:01'),(1871,9,'simple','n31253493-grey-Small size',0,0,'2019-03-06 15:50:37','2019-04-15 09:04:01'),(1872,9,'simple','n31253493-grey-Medium size',0,0,'2019-03-06 15:50:38','2019-04-15 09:04:01'),(1873,9,'simple','n31253493-grey-Extra large size',0,0,'2019-03-06 15:50:40','2019-04-15 09:04:01'),(1874,9,'simple','n31253493-grey-Large size',0,0,'2019-03-06 15:50:41','2019-04-15 09:04:01'),(1875,9,'configurable','n31253493',1,1,'2019-03-06 15:50:42','2019-03-07 15:39:46'),(1876,9,'simple','n31273656-Large size-black',0,0,'2019-03-06 15:52:05','2019-04-15 09:04:01'),(1877,9,'simple','n31273656-Large size-brown',0,0,'2019-03-06 15:52:11','2019-04-15 09:04:01'),(1878,9,'simple','n31273656-Large size-grey',0,0,'2019-03-06 15:52:15','2019-04-15 09:04:01'),(1879,9,'simple','n31273656-Extra small size-black',0,0,'2019-03-06 15:52:18','2019-04-15 09:04:01'),(1880,9,'simple','n31273656-Extra small size-brown',0,0,'2019-03-06 15:52:22','2019-04-15 09:04:01'),(1881,9,'simple','n31273656-Extra small size-grey',0,0,'2019-03-06 15:52:26','2019-04-15 09:04:01'),(1882,9,'simple','n31273656-Small size-black',0,0,'2019-03-06 15:52:30','2019-04-15 09:04:01'),(1883,9,'simple','n31273656-Small size-brown',0,0,'2019-03-06 15:52:34','2019-04-15 09:04:01'),(1884,9,'simple','n31273656-Small size-grey',0,0,'2019-03-06 15:52:38','2019-04-15 09:04:01'),(1885,9,'simple','n31273656-Medium size-black',0,0,'2019-03-06 15:52:41','2019-04-15 09:04:01'),(1886,9,'simple','n31273656-Medium size-brown',0,0,'2019-03-06 15:52:45','2019-04-15 09:04:01'),(1887,9,'simple','n31273656-Medium size-grey',0,0,'2019-03-06 15:52:49','2019-04-15 09:04:01'),(1888,9,'configurable','n31273656',1,1,'2019-03-06 15:52:53','2019-03-08 07:43:16'),(1889,9,'simple','n31253502-Large size-black',0,0,'2019-03-06 15:57:33','2019-04-15 09:04:01'),(1890,9,'simple','n31253502-Small size-black',0,0,'2019-03-06 15:57:36','2019-04-15 09:04:01'),(1891,9,'simple','n31253502-Medium size-black',0,0,'2019-03-06 15:57:37','2019-04-15 09:04:01'),(1892,9,'configurable','n31253502',1,1,'2019-03-06 15:57:39','2019-03-08 07:45:35'),(1893,9,'simple','n31253501-blue-Small size',0,0,'2019-03-06 16:01:16','2019-04-15 09:04:01'),(1894,9,'simple','n31253501-blue-Large size',0,0,'2019-03-06 16:01:18','2019-04-15 09:04:01'),(1895,9,'simple','n31253501-blue-Medium size',0,0,'2019-03-06 16:01:20','2019-04-15 09:04:01'),(1896,9,'configurable','n31253501',1,1,'2019-03-06 16:01:21','2019-03-08 07:47:55'),(1897,9,'simple','n31202421-blue-Extra small size',0,0,'2019-03-06 16:01:53','2019-04-15 09:04:01'),(1898,9,'simple','n31202421-blue-Small size',0,0,'2019-03-06 16:01:54','2019-04-15 09:04:01'),(1899,9,'simple','n31202421-blue-Medium size',0,0,'2019-03-06 16:01:55','2019-04-15 09:04:01'),(1900,9,'simple','n31202421-red-Extra small size',0,0,'2019-03-06 16:01:57','2019-04-15 09:04:01'),(1901,9,'simple','n31202421-red-Small size',0,0,'2019-03-06 16:01:58','2019-04-15 09:04:01'),(1902,9,'simple','n31202421-red-Medium size',0,0,'2019-03-06 16:01:59','2019-04-15 09:04:01'),(1903,9,'configurable','n31202421',1,1,'2019-03-06 16:02:00','2019-03-07 15:41:36'),(1904,9,'simple','n31190954-red-Small size',0,0,'2019-03-06 16:06:00','2019-04-15 09:04:01'),(1905,9,'simple','n31190954-red-Large size',0,0,'2019-03-06 16:06:04','2019-04-15 09:04:01'),(1906,9,'simple','n31190954-red-Medium size',0,0,'2019-03-06 16:06:07','2019-04-15 09:04:01'),(1907,9,'simple','n31190954-blue-Small size',0,0,'2019-03-06 16:06:10','2019-04-15 09:04:01'),(1908,9,'simple','n31190954-blue-Large size',0,0,'2019-03-06 16:06:12','2019-04-15 09:04:01'),(1909,9,'simple','n31190954-blue-Medium size',0,0,'2019-03-06 16:06:16','2019-04-15 09:04:01'),(1910,9,'configurable','n31190954',1,1,'2019-03-06 16:06:18','2019-03-08 07:49:55'),(1911,9,'simple','n2313434-black-Medium size',0,0,'2019-03-06 16:11:13','2019-04-15 09:04:01'),(1912,9,'simple','n2313434-black-Small size',0,0,'2019-03-06 16:11:17','2019-04-15 09:04:01'),(1913,9,'simple','n2313434-black-Large size',0,0,'2019-03-06 16:11:20','2019-04-15 09:04:01'),(1914,9,'simple','n2313434-red-Medium size',0,0,'2019-03-06 16:11:22','2019-04-15 09:04:01'),(1915,9,'simple','n2313434-red-Small size',0,0,'2019-03-06 16:11:24','2019-04-15 09:04:01'),(1916,9,'simple','n2313434-red-Large size',0,0,'2019-03-06 16:11:26','2019-04-15 09:04:01'),(1917,9,'simple','n2313434-grey-Medium size',0,0,'2019-03-06 16:11:29','2019-04-15 09:04:01'),(1918,9,'simple','n2313434-grey-Small size',0,0,'2019-03-06 16:11:31','2019-04-15 09:04:01'),(1919,9,'simple','n2313434-grey-Large size',0,0,'2019-03-06 16:11:33','2019-04-15 09:04:01'),(1920,9,'configurable','n2313434',1,1,'2019-03-06 16:11:35','2019-03-08 07:51:26'),(1928,10,'simple','n30947478-EU 42-brown',0,0,'2019-03-06 16:35:32','2019-04-15 09:04:01'),(1929,10,'simple','n30947478-EU 42-blue',0,0,'2019-03-06 16:35:34','2019-04-15 09:04:01'),(1930,10,'simple','n30947478-EU 42-black',0,0,'2019-03-06 16:35:35','2019-04-15 09:04:01'),(1931,10,'simple','n30947478-EU 40-brown',0,0,'2019-03-06 16:35:36','2019-04-15 09:04:01'),(1932,10,'simple','n30947478-EU 40-blue',0,0,'2019-03-06 16:35:37','2019-04-15 09:04:01'),(1933,10,'simple','n30947478-EU 40-black',0,0,'2019-03-06 16:35:38','2019-04-15 09:04:01'),(1934,10,'simple','n30947478-EU 43-brown',0,0,'2019-03-06 16:35:39','2019-04-15 09:04:01'),(1935,10,'simple','n30947478-EU 43-blue',0,0,'2019-03-06 16:35:40','2019-04-15 09:04:01'),(1936,10,'simple','n30947478-EU 43-black',0,0,'2019-03-06 16:35:41','2019-04-15 09:04:01'),(1937,10,'simple','n30947478-EU 41-brown',0,0,'2019-03-06 16:35:42','2019-04-15 09:04:01'),(1938,10,'simple','n30947478-EU 41-blue',0,0,'2019-03-06 16:35:42','2019-04-15 09:04:01'),(1939,10,'simple','n30947478-EU 41-black',0,0,'2019-03-06 16:35:43','2019-04-15 09:04:01'),(1940,10,'simple','n30947478-EU 44-brown',0,0,'2019-03-06 16:35:44','2019-04-15 09:04:01'),(1941,10,'simple','n30947478-EU 44-blue',0,0,'2019-03-06 16:35:45','2019-04-15 09:04:01'),(1942,10,'simple','n30947478-EU 44-black',0,0,'2019-03-06 16:35:46','2019-04-15 09:04:01'),(1943,10,'configurable','n30947478',1,1,'2019-03-06 16:35:47','2019-03-07 15:46:23'),(1944,10,'simple','n31141265-red-EU 40',0,0,'2019-03-06 16:42:25','2019-04-15 09:04:01'),(1945,10,'simple','n31141265-red-EU 41',0,0,'2019-03-06 16:42:27','2019-04-15 09:04:01'),(1946,10,'configurable','n31141265',1,1,'2019-03-06 16:42:29','2019-03-07 15:48:46'),(1947,10,'simple','n31179106-red-EU 39',0,0,'2019-03-06 16:50:12','2019-04-15 09:04:01'),(1948,10,'simple','n31179106-red-EU 42',0,0,'2019-03-06 16:50:13','2019-04-15 09:04:01'),(1949,10,'simple','n31179106-red-EU 45',0,0,'2019-03-06 16:50:15','2019-04-15 09:04:01'),(1950,10,'simple','n31179106-red-EU 40',0,0,'2019-03-06 16:50:16','2019-04-15 09:04:01'),(1951,10,'simple','n31179106-red-EU 43',0,0,'2019-03-06 16:50:17','2019-04-15 09:04:01'),(1952,10,'simple','n31179106-red-EU 41',0,0,'2019-03-06 16:50:18','2019-04-15 09:04:01'),(1953,10,'simple','n31179106-red-EU 44',0,0,'2019-03-06 16:50:19','2019-04-15 09:04:01'),(1954,10,'simple','n31179106-grey-EU 39',0,0,'2019-03-06 16:50:20','2019-04-15 09:04:01'),(1955,10,'simple','n31179106-grey-EU 42',0,0,'2019-03-06 16:50:21','2019-04-15 09:04:01'),(1956,10,'simple','n31179106-grey-EU 45',0,0,'2019-03-06 16:50:23','2019-04-15 09:04:01'),(1957,10,'simple','n31179106-grey-EU 40',0,0,'2019-03-06 16:50:24','2019-04-15 09:04:01'),(1958,10,'simple','n31179106-grey-EU 43',0,0,'2019-03-06 16:50:25','2019-04-15 09:04:01'),(1959,10,'simple','n31179106-grey-EU 41',0,0,'2019-03-06 16:50:26','2019-04-15 09:04:01'),(1960,10,'simple','n31179106-grey-EU 44',0,0,'2019-03-06 16:50:27','2019-04-15 09:04:01'),(1961,10,'configurable','n31179106',1,1,'2019-03-06 16:50:28','2019-03-08 07:49:50'),(1962,10,'simple','n31332981-blue-EU 39',0,0,'2019-03-06 16:58:40','2019-04-15 09:04:01'),(1963,10,'simple','n31332981-blue-EU 42',0,0,'2019-03-06 16:58:42','2019-04-15 09:04:01'),(1964,10,'simple','n31332981-blue-EU 40',0,0,'2019-03-06 16:58:43','2019-04-15 09:04:01'),(1965,10,'simple','n31332981-blue-EU 43',0,0,'2019-03-06 16:58:44','2019-04-15 09:04:01'),(1966,10,'simple','n31332981-blue-EU 41',0,0,'2019-03-06 16:58:45','2019-04-15 09:04:01'),(1967,10,'simple','n31332981-black-EU 39',0,0,'2019-03-06 16:58:46','2019-04-15 09:04:01'),(1968,10,'simple','n31332981-black-EU 42',0,0,'2019-03-06 16:58:47','2019-04-15 09:04:01'),(1969,10,'simple','n31332981-black-EU 40',0,0,'2019-03-06 16:58:48','2019-04-15 09:04:01'),(1970,10,'simple','n31332981-black-EU 43',0,0,'2019-03-06 16:58:49','2019-04-15 09:04:01'),(1971,10,'simple','n31332981-black-EU 41',0,0,'2019-03-06 16:58:50','2019-04-15 09:04:01'),(1972,10,'configurable','n31332981',1,1,'2019-03-06 16:58:52','2019-03-08 07:52:09'),(1973,10,'simple','n31085465-EU 39-brown',0,0,'2019-03-06 17:08:39','2019-04-15 09:04:01'),(1974,10,'simple','n31085465-EU 39-grey',0,0,'2019-03-06 17:08:41','2019-04-15 09:04:01'),(1975,10,'simple','n31085465-EU 39-black',0,0,'2019-03-06 17:08:42','2019-04-15 09:04:01'),(1976,10,'simple','n31085465-EU 42-brown',0,0,'2019-03-06 17:08:43','2019-04-15 09:04:01'),(1977,10,'simple','n31085465-EU 42-grey',0,0,'2019-03-06 17:08:44','2019-04-15 09:04:01'),(1978,10,'simple','n31085465-EU 42-black',0,0,'2019-03-06 17:08:45','2019-04-15 09:04:01'),(1979,10,'simple','n31085465-EU 40-brown',0,0,'2019-03-06 17:08:46','2019-04-15 09:04:01'),(1980,10,'simple','n31085465-EU 40-grey',0,0,'2019-03-06 17:08:48','2019-04-15 09:04:01'),(1981,10,'simple','n31085465-EU 40-black',0,0,'2019-03-06 17:08:49','2019-04-15 09:04:01'),(1982,10,'simple','n31085465-EU 43-brown',0,0,'2019-03-06 17:08:50','2019-04-15 09:04:01'),(1983,10,'simple','n31085465-EU 43-grey',0,0,'2019-03-06 17:08:51','2019-04-15 09:04:01'),(1984,10,'simple','n31085465-EU 43-black',0,0,'2019-03-06 17:08:52','2019-04-15 09:04:01'),(1985,10,'simple','n31085465-EU 41-brown',0,0,'2019-03-06 17:08:53','2019-04-15 09:04:01'),(1986,10,'simple','n31085465-EU 41-grey',0,0,'2019-03-06 17:08:54','2019-04-15 09:04:01'),(1987,10,'simple','n31085465-EU 41-black',0,0,'2019-03-06 17:08:55','2019-04-15 09:04:01'),(1988,10,'simple','n31085465-EU 44-brown',0,0,'2019-03-06 17:08:56','2019-04-15 09:04:01'),(1989,10,'simple','n31085465-EU 44-grey',0,0,'2019-03-06 17:08:57','2019-04-15 09:04:01'),(1990,10,'simple','n31085465-EU 44-black',0,0,'2019-03-06 17:08:58','2019-04-15 09:04:01'),(1991,10,'configurable','n31085465',1,1,'2019-03-06 17:09:00','2019-03-08 07:54:44'),(1992,9,'simple','n31264080-grey-Medium size',0,0,'2019-03-07 08:06:45','2019-04-15 09:04:01'),(1993,9,'simple','n31264080-grey-Large size',0,0,'2019-03-07 08:06:46','2019-04-15 09:04:01'),(1994,9,'simple','n31264080-brown-Medium size',0,0,'2019-03-07 08:06:48','2019-04-15 09:04:01'),(1995,9,'simple','n31264080-brown-Large size',0,0,'2019-03-07 08:06:49','2019-04-15 09:04:01'),(1996,9,'configurable','n31264080',1,1,'2019-03-07 08:06:51','2019-03-08 09:42:17'),(1997,9,'simple','n31178507-blue-Large size',0,0,'2019-03-07 08:11:15','2019-04-15 09:04:01'),(1998,9,'simple','n31178507-blue-Medium size',0,0,'2019-03-07 08:11:17','2019-04-15 09:04:01'),(1999,9,'simple','n31178507-red-Large size',0,0,'2019-03-07 08:11:18','2019-04-15 09:04:01'),(2000,9,'simple','n31178507-red-Medium size',0,0,'2019-03-07 08:11:20','2019-04-15 09:04:01'),(2001,9,'configurable','n31178507',1,1,'2019-03-07 08:11:22','2019-03-08 08:03:29'),(2002,9,'simple','n31125037-red-Extra small size',0,0,'2019-03-07 08:14:46','2019-04-15 09:04:01'),(2003,9,'simple','n31125037-red-Large size',0,0,'2019-03-07 08:14:50','2019-04-15 09:04:01'),(2004,9,'simple','n31125037-red-Small size',0,0,'2019-03-07 08:14:54','2019-04-15 09:04:01'),(2005,9,'simple','n31125037-red-Medium size',0,0,'2019-03-07 08:14:58','2019-04-15 09:04:01'),(2006,9,'simple','n31125037-blue-Extra small size',0,0,'2019-03-07 08:15:01','2019-04-15 09:04:01'),(2007,9,'simple','n31125037-blue-Large size',0,0,'2019-03-07 08:15:05','2019-04-15 09:04:01'),(2008,9,'simple','n31125037-blue-Small size',0,0,'2019-03-07 08:15:09','2019-04-15 09:04:01'),(2009,9,'simple','n31125037-blue-Medium size',0,0,'2019-03-07 08:15:14','2019-04-15 09:04:01'),(2010,9,'configurable','n31125037',1,1,'2019-03-07 08:15:18','2019-03-08 08:06:44'),(2011,9,'simple','n30977134-white-Medium size',0,0,'2019-03-07 08:19:41','2019-04-15 09:04:01'),(2012,9,'simple','n30977134-white-Small size',0,0,'2019-03-07 08:19:42','2019-04-15 09:04:01'),(2013,9,'simple','n30977134-white-Extra small size',0,0,'2019-03-07 08:19:43','2019-04-15 09:04:01'),(2014,9,'simple','n30977134-red-Medium size',0,0,'2019-03-07 08:19:44','2019-04-15 09:04:01'),(2015,9,'simple','n30977134-red-Small size',0,0,'2019-03-07 08:19:46','2019-04-15 09:04:01'),(2016,9,'simple','n30977134-red-Extra small size',0,0,'2019-03-07 08:19:47','2019-04-15 09:04:01'),(2017,9,'configurable','n30977134',1,1,'2019-03-07 08:19:48','2019-03-08 08:13:22'),(2018,9,'simple','n31146614-brown-Small size',0,0,'2019-03-07 08:23:14','2019-04-15 09:04:01'),(2019,9,'simple','n31146614-blue-Small size',0,0,'2019-03-07 08:23:16','2019-04-15 09:04:01'),(2020,9,'configurable','n31146614',1,1,'2019-03-07 08:23:17','2019-03-08 08:05:36'),(2021,9,'simple','n30977108-black-Medium size',0,0,'2019-03-07 08:24:21','2019-04-15 09:04:01'),(2022,9,'simple','n30977108-black-Small size',0,0,'2019-03-07 08:24:25','2019-04-15 09:04:01'),(2023,9,'simple','n30977108-black-Extra small size',0,0,'2019-03-07 08:24:28','2019-04-15 09:04:01'),(2024,9,'simple','n30977108-black-Large size',0,0,'2019-03-07 08:24:32','2019-04-15 09:04:01'),(2025,9,'simple','n30977108-brown-Medium size',0,0,'2019-03-07 08:24:35','2019-04-15 09:04:01'),(2026,9,'simple','n30977108-brown-Small size',0,0,'2019-03-07 08:24:39','2019-04-15 09:04:01'),(2027,9,'simple','n30977108-brown-Extra small size',0,0,'2019-03-07 08:24:43','2019-04-15 09:04:01'),(2028,9,'simple','n30977108-brown-Large size',0,0,'2019-03-07 08:24:47','2019-04-15 09:04:01'),(2029,9,'configurable','n30977108',1,1,'2019-03-07 08:24:51','2019-03-08 08:11:18'),(2030,9,'simple','n31162615-brown-Small size',0,0,'2019-03-07 08:29:38','2019-04-15 09:04:01'),(2031,9,'simple','n31162615-blue-Small size',0,0,'2019-03-07 08:29:39','2019-04-15 09:04:01'),(2032,9,'configurable','n31162615',1,1,'2019-03-07 08:29:41','2019-03-08 08:08:01'),(2042,9,'simple','n31340162-blue-Extra small size',0,0,'2019-03-07 08:36:30','2019-04-15 09:04:01'),(2043,9,'simple','n31340162-blue-Large size',0,0,'2019-03-07 08:36:34','2019-04-15 09:04:01'),(2044,9,'simple','n31340162-blue-Small size',0,0,'2019-03-07 08:36:38','2019-04-15 09:04:01'),(2045,9,'simple','n31340162-blue-Medium size',0,0,'2019-03-07 08:36:42','2019-04-15 09:04:01'),(2046,9,'simple','n31340162-grey-Extra small size',0,0,'2019-03-07 08:36:46','2019-04-15 09:04:01'),(2047,9,'simple','n31340162-grey-Large size',0,0,'2019-03-07 08:36:50','2019-04-15 09:04:01'),(2048,9,'simple','n31340162-grey-Small size',0,0,'2019-03-07 08:36:54','2019-04-15 09:04:01'),(2049,9,'simple','n31340162-grey-Medium size',0,0,'2019-03-07 08:36:57','2019-04-15 09:04:01'),(2050,9,'configurable','n31340162',1,1,'2019-03-07 08:37:01','2019-03-08 08:16:46'),(2051,9,'simple','n31300702-black-Small size',0,0,'2019-03-07 08:38:51','2019-04-15 09:04:01'),(2052,9,'simple','n31300702-black-Medium size',0,0,'2019-03-07 08:38:53','2019-04-15 09:04:01'),(2053,9,'simple','n31300702-red-Small size',0,0,'2019-03-07 08:38:55','2019-04-15 09:04:01'),(2054,9,'simple','n31300702-red-Medium size',0,0,'2019-03-07 08:38:57','2019-04-15 09:04:01'),(2055,9,'configurable','n31300702',1,1,'2019-03-07 08:38:58','2019-03-08 08:10:23'),(2056,9,'simple','n31305260-Small size-brown',0,0,'2019-03-07 08:40:36','2019-04-15 09:04:01'),(2057,9,'simple','n31305260-Small size-grey',0,0,'2019-03-07 08:40:37','2019-04-15 09:04:01'),(2058,9,'simple','n31305260-Medium size-brown',0,0,'2019-03-07 08:40:38','2019-04-15 09:04:01'),(2059,9,'simple','n31305260-Medium size-grey',0,0,'2019-03-07 08:40:39','2019-04-15 09:04:01'),(2060,9,'configurable','n31305260',1,1,'2019-03-07 08:40:40','2019-03-08 08:19:07'),(2061,9,'simple','n31240220-black-Extra small size',0,0,'2019-03-07 08:45:17','2019-04-15 09:04:01'),(2062,9,'simple','n31240220-black-Small size',0,0,'2019-03-07 08:45:21','2019-04-15 09:04:01'),(2063,9,'simple','n31240220-grey-Extra small size',0,0,'2019-03-07 08:45:24','2019-04-15 09:04:01'),(2064,9,'simple','n31240220-grey-Small size',0,0,'2019-03-07 08:45:28','2019-04-15 09:04:01'),(2065,9,'configurable','n31240220',1,1,'2019-03-07 08:45:32','2019-03-08 08:21:21'),(2066,9,'simple','n31350783-red-Extra small size',0,0,'2019-03-07 08:49:03','2019-04-15 09:04:01'),(2067,9,'simple','n31350783-red-Small size',0,0,'2019-03-07 08:49:05','2019-04-15 09:04:01'),(2068,9,'simple','n31350783-red-Medium size',0,0,'2019-03-07 08:49:06','2019-04-15 09:04:01'),(2069,9,'simple','n31350783-white-Extra small size',0,0,'2019-03-07 08:49:08','2019-04-15 09:04:01'),(2070,9,'simple','n31350783-white-Small size',0,0,'2019-03-07 08:49:09','2019-04-15 09:04:01'),(2071,9,'simple','n31350783-white-Medium size',0,0,'2019-03-07 08:49:11','2019-04-15 09:04:01'),(2072,9,'configurable','n31350783',1,1,'2019-03-07 08:49:12','2019-03-08 08:23:36'),(2073,9,'simple','n31160332-black-Small size',0,0,'2019-03-07 08:50:02','2019-04-15 09:04:01'),(2074,9,'simple','n31160332-black-Medium size',0,0,'2019-03-07 08:50:04','2019-04-15 09:04:01'),(2075,9,'simple','n31160332-red-Small size',0,0,'2019-03-07 08:50:06','2019-04-15 09:04:01'),(2076,9,'simple','n31160332-red-Medium size',0,0,'2019-03-07 08:50:08','2019-04-15 09:04:01'),(2077,9,'configurable','n31160332',1,1,'2019-03-07 08:50:10','2019-03-08 08:16:34'),(2078,9,'simple','n31319864-blue-Extra small size',0,0,'2019-03-07 08:53:07','2019-04-15 09:04:01'),(2079,9,'simple','n31319864-blue-Large size',0,0,'2019-03-07 08:53:11','2019-04-15 09:04:01'),(2080,9,'simple','n31319864-blue-Medium size',0,0,'2019-03-07 08:53:15','2019-04-15 09:04:01'),(2081,9,'simple','n31319864-white-Extra small size',0,0,'2019-03-07 08:53:18','2019-04-15 09:04:01'),(2082,9,'simple','n31319864-white-Large size',0,0,'2019-03-07 08:53:22','2019-04-15 09:04:01'),(2083,9,'simple','n31319864-white-Medium size',0,0,'2019-03-07 08:53:25','2019-04-15 09:04:01'),(2084,9,'configurable','n31319864',1,1,'2019-03-07 08:53:28','2019-03-08 08:25:21'),(2085,9,'simple','n31160298-blue-Small size',0,0,'2019-03-07 08:56:19','2019-04-15 09:04:01'),(2086,9,'simple','n31160298-blue-Medium size',0,0,'2019-03-07 08:56:21','2019-04-15 09:04:01'),(2087,9,'simple','n31160298-red-Small size',0,0,'2019-03-07 08:56:23','2019-04-15 09:04:01'),(2088,9,'simple','n31160298-red-Medium size',0,0,'2019-03-07 08:56:25','2019-04-15 09:04:01'),(2089,9,'configurable','n31160298',1,1,'2019-03-07 08:56:26','2019-03-08 08:18:49'),(2090,9,'simple','n31239294-red-Extra small size',0,0,'2019-03-07 08:57:36','2019-04-15 09:04:01'),(2091,9,'simple','n31239294-red-Small size',0,0,'2019-03-07 08:57:39','2019-04-15 09:04:01'),(2092,9,'simple','n31239294-red-Extra large size',0,0,'2019-03-07 08:57:42','2019-04-15 09:04:01'),(2093,9,'simple','n31239294-red-Medium size',0,0,'2019-03-07 08:57:46','2019-04-15 09:04:01'),(2094,9,'simple','n31239294-white-Extra small size',0,0,'2019-03-07 08:57:49','2019-04-15 09:04:01'),(2095,9,'simple','n31239294-white-Small size',0,0,'2019-03-07 08:57:53','2019-04-15 09:04:01'),(2096,9,'simple','n31239294-white-Extra large size',0,0,'2019-03-07 08:57:56','2019-04-15 09:04:01'),(2097,9,'simple','n31239294-white-Medium size',0,0,'2019-03-07 08:58:00','2019-04-15 09:04:01'),(2098,9,'configurable','n31239294',1,1,'2019-03-07 08:58:04','2019-03-08 08:26:38'),(2099,9,'simple','n31160296-white-Extra small size',0,0,'2019-03-07 09:04:08','2019-04-15 09:04:01'),(2100,9,'simple','n31160296-white-Small size',0,0,'2019-03-07 09:04:10','2019-04-15 09:04:01'),(2101,9,'simple','n31160296-white-Medium size',0,0,'2019-03-07 09:04:11','2019-04-15 09:04:01'),(2102,9,'simple','n31160296-red-Extra small size',0,0,'2019-03-07 09:04:13','2019-04-15 09:04:01'),(2103,9,'simple','n31160296-red-Small size',0,0,'2019-03-07 09:04:15','2019-04-15 09:04:01'),(2104,9,'simple','n31160296-red-Medium size',0,0,'2019-03-07 09:04:17','2019-04-15 09:04:01'),(2105,9,'configurable','n31160296',1,1,'2019-03-07 09:04:19','2019-03-08 08:20:51'),(2106,9,'simple','n30977037-white-Extra small size',0,0,'2019-03-07 09:05:27','2019-04-15 09:04:01'),(2107,9,'simple','n30977037-white-Small size',0,0,'2019-03-07 09:05:30','2019-04-15 09:04:01'),(2108,9,'simple','n30977037-white-Medium size',0,0,'2019-03-07 09:05:33','2019-04-15 09:04:01'),(2109,9,'simple','n30977037-white-Large size',0,0,'2019-03-07 09:05:37','2019-04-15 09:04:01'),(2110,9,'simple','n30977037-white-Extra large size',0,0,'2019-03-07 09:05:40','2019-04-15 09:04:01'),(2111,9,'simple','n30977037-blue-Extra small size',0,0,'2019-03-07 09:05:43','2019-04-15 09:04:01'),(2112,9,'simple','n30977037-blue-Small size',0,0,'2019-03-07 09:05:47','2019-04-15 09:04:01'),(2113,9,'simple','n30977037-blue-Medium size',0,0,'2019-03-07 09:05:50','2019-04-15 09:04:01'),(2114,9,'simple','n30977037-blue-Large size',0,0,'2019-03-07 09:05:54','2019-04-15 09:04:01'),(2115,9,'simple','n30977037-blue-Extra large size',0,0,'2019-03-07 09:05:57','2019-04-15 09:04:01'),(2116,9,'configurable','n30977037',1,1,'2019-03-07 09:06:01','2019-03-08 08:28:07'),(2117,9,'simple','n31218012-brown-Medium size',0,0,'2019-03-07 09:12:32','2019-04-15 09:04:01'),(2118,9,'simple','n31218012-brown-Small size',0,0,'2019-03-07 09:12:35','2019-04-15 09:04:01'),(2119,9,'simple','n31218012-brown-Extra small size',0,0,'2019-03-07 09:12:39','2019-04-15 09:04:01'),(2120,9,'simple','n31218012-white-Medium size',0,0,'2019-03-07 09:12:43','2019-04-15 09:04:01'),(2121,9,'simple','n31218012-white-Small size',0,0,'2019-03-07 09:12:47','2019-04-15 09:04:01'),(2122,9,'simple','n31218012-white-Extra small size',0,0,'2019-03-07 09:12:50','2019-04-15 09:04:01'),(2123,9,'configurable','n31218012',1,1,'2019-03-07 09:12:54','2019-03-08 08:30:06'),(2124,9,'simple','n31266871-white-Extra small size',0,0,'2019-03-07 09:18:01','2019-04-15 09:04:01'),(2125,9,'simple','n31266871-white-Large size',0,0,'2019-03-07 09:18:04','2019-04-15 09:04:01'),(2126,9,'simple','n31266871-white-Small size',0,0,'2019-03-07 09:18:07','2019-04-15 09:04:01'),(2127,9,'simple','n31266871-white-Medium size',0,0,'2019-03-07 09:18:11','2019-04-15 09:04:01'),(2128,9,'simple','n31266871-blue-Extra small size',0,0,'2019-03-07 09:18:14','2019-04-15 09:04:01'),(2129,9,'simple','n31266871-blue-Large size',0,0,'2019-03-07 09:18:18','2019-04-15 09:04:01'),(2130,9,'simple','n31266871-blue-Small size',0,0,'2019-03-07 09:18:21','2019-04-15 09:04:01'),(2131,9,'simple','n31266871-blue-Medium size',0,0,'2019-03-07 09:18:25','2019-04-15 09:04:01'),(2132,9,'configurable','n31266871',1,1,'2019-03-07 09:18:28','2019-03-08 08:33:15'),(2133,9,'simple','n31034537-grey-Small size',0,0,'2019-03-07 09:19:01','2019-04-15 09:04:01'),(2134,9,'simple','n31034537-blue-Small size',0,0,'2019-03-07 09:19:03','2019-04-15 09:04:01'),(2135,9,'configurable','n31034537',1,1,'2019-03-07 09:19:04','2019-03-08 12:25:43'),(2136,9,'simple','n31062218-blue-Small size',0,0,'2019-03-07 09:23:28','2019-04-15 09:04:01'),(2137,9,'simple','n31062218-red-Small size',0,0,'2019-03-07 09:23:30','2019-04-15 09:04:01'),(2138,9,'configurable','n31062218',1,1,'2019-03-07 09:23:31','2019-03-08 08:25:17'),(2139,9,'simple','n31331004-black-Large size',0,0,'2019-03-07 09:24:44','2019-04-15 09:04:01'),(2140,9,'simple','n31331004-black-Small size',0,0,'2019-03-07 09:24:48','2019-04-15 09:04:01'),(2141,9,'simple','n31331004-black-Medium size',0,0,'2019-03-07 09:24:51','2019-04-15 09:04:01'),(2142,9,'simple','n31331004-red-Large size',0,0,'2019-03-07 09:24:55','2019-04-15 09:04:01'),(2143,9,'simple','n31331004-red-Small size',0,0,'2019-03-07 09:24:59','2019-04-15 09:04:01'),(2144,9,'simple','n31331004-red-Medium size',0,0,'2019-03-07 09:25:03','2019-04-15 09:04:01'),(2145,9,'configurable','n31331004',1,1,'2019-03-07 09:25:06','2019-03-08 08:34:57'),(2146,11,'simple','n31304473-grey',0,0,'2019-03-07 09:29:29','2019-04-15 09:04:01'),(2147,11,'simple','n31304473-brown',0,0,'2019-03-07 09:29:31','2019-04-15 09:04:01'),(2148,9,'simple','n30838511-white-Extra small size',0,0,'2019-03-07 09:29:32','2019-04-15 09:04:01'),(2149,11,'configurable','n31304473',1,1,'2019-03-07 09:29:33','2019-03-08 08:27:43'),(2150,9,'simple','n30838511-white-Large size',0,0,'2019-03-07 09:29:35','2019-04-15 09:04:01'),(2151,9,'simple','n30838511-white-Small size',0,0,'2019-03-07 09:29:39','2019-04-15 09:04:01'),(2152,9,'simple','n30838511-white-Medium size',0,0,'2019-03-07 09:29:42','2019-04-15 09:04:01'),(2153,9,'simple','n30838511-black-Extra small size',0,0,'2019-03-07 09:29:45','2019-04-15 09:04:01'),(2154,9,'simple','n30838511-black-Large size',0,0,'2019-03-07 09:29:49','2019-04-15 09:04:01'),(2155,9,'simple','n30838511-black-Small size',0,0,'2019-03-07 09:29:52','2019-04-15 09:04:01'),(2156,9,'simple','n30838511-black-Medium size',0,0,'2019-03-07 09:29:56','2019-04-15 09:04:01'),(2157,9,'configurable','n30838511',1,1,'2019-03-07 09:30:00','2019-03-08 08:36:13'),(2158,10,'simple','n31197648-brown-EU 39',0,0,'2019-03-07 09:33:29','2019-04-15 09:04:01'),(2159,10,'simple','n31197648-brown-EU 37',0,0,'2019-03-07 09:33:31','2019-04-15 09:04:01'),(2160,10,'simple','n31197648-brown-EU 40',0,0,'2019-03-07 09:33:32','2019-04-15 09:04:01'),(2161,10,'simple','n31197648-brown-EU 38',0,0,'2019-03-07 09:33:34','2019-04-15 09:04:01'),(2162,10,'simple','n31197648-brown-EU 41',0,0,'2019-03-07 09:33:35','2019-04-15 09:04:01'),(2163,10,'simple','n31197648-blue-EU 39',0,0,'2019-03-07 09:33:37','2019-04-15 09:04:01'),(2164,10,'simple','n31197648-blue-EU 37',0,0,'2019-03-07 09:33:38','2019-04-15 09:04:01'),(2165,10,'simple','n31197648-blue-EU 40',0,0,'2019-03-07 09:33:40','2019-04-15 09:04:01'),(2166,10,'simple','n31197648-blue-EU 38',0,0,'2019-03-07 09:33:41','2019-04-15 09:04:01'),(2167,10,'simple','n31197648-blue-EU 41',0,0,'2019-03-07 09:33:43','2019-04-15 09:04:01'),(2168,10,'configurable','n31197648',1,1,'2019-03-07 09:33:44','2019-03-08 08:37:44'),(2169,11,'simple','n31327540-grey',0,0,'2019-03-07 09:35:49','2019-04-15 09:04:01'),(2170,11,'simple','n31327540-red',0,0,'2019-03-07 09:35:51','2019-04-15 09:04:01'),(2171,11,'configurable','n31327540',1,1,'2019-03-07 09:35:53','2019-03-08 08:29:44'),(2172,9,'simple','n310018035-red-Extra small size',0,0,'2019-03-07 09:37:37','2019-04-15 09:04:01'),(2173,9,'simple','n310018035-red-Small size',0,0,'2019-03-07 09:37:40','2019-04-15 09:04:01'),(2174,9,'simple','n310018035-red-Medium size',0,0,'2019-03-07 09:37:43','2019-04-15 09:04:01'),(2175,9,'simple','n310018035-brown-Extra small size',0,0,'2019-03-07 09:37:45','2019-04-15 09:04:01'),(2176,9,'simple','n310018035-brown-Small size',0,0,'2019-03-07 09:37:48','2019-04-15 09:04:01'),(2177,9,'simple','n310018035-brown-Medium size',0,0,'2019-03-07 09:37:50','2019-04-15 09:04:01'),(2178,9,'configurable','n310018035',1,1,'2019-03-07 09:37:53','2019-03-08 08:40:26'),(2179,9,'simple','n31292042-red-Extra small size',0,0,'2019-03-07 09:40:43','2019-04-15 09:04:01'),(2180,9,'simple','n31292042-red-Small size',0,0,'2019-03-07 09:40:44','2019-04-15 09:04:01'),(2181,9,'simple','n31292042-red-Medium size',0,0,'2019-03-07 09:40:46','2019-04-15 09:04:01'),(2182,9,'simple','n31292042-grey-Extra small size',0,0,'2019-03-07 09:40:48','2019-04-15 09:04:01'),(2183,9,'simple','n31292042-grey-Small size',0,0,'2019-03-07 09:40:50','2019-04-15 09:04:01'),(2184,9,'simple','n31292042-grey-Medium size',0,0,'2019-03-07 09:40:52','2019-04-15 09:04:01'),(2185,9,'configurable','n31292042',1,1,'2019-03-07 09:40:53','2019-03-08 08:41:56'),(2186,9,'simple','n31258335-black-Small size',0,0,'2019-03-07 09:41:48','2019-04-15 09:04:01'),(2187,9,'simple','n31258335-black-Medium size',0,0,'2019-03-07 09:41:50','2019-04-15 09:04:01'),(2188,9,'simple','n31258335-red-Small size',0,0,'2019-03-07 09:41:52','2019-04-15 09:04:01'),(2189,9,'simple','n31258335-red-Medium size',0,0,'2019-03-07 09:41:54','2019-04-15 09:04:01'),(2190,9,'configurable','n31258335',1,1,'2019-03-07 09:41:56','2019-03-08 08:31:53'),(2191,9,'simple','n31145394-brown-Extra small size',0,0,'2019-03-07 09:48:04','2019-04-15 09:04:01'),(2192,9,'simple','n31145394-brown-Small size',0,0,'2019-03-07 09:48:08','2019-04-15 09:04:01'),(2193,9,'simple','n31145394-brown-Medium size',0,0,'2019-03-07 09:48:12','2019-04-15 09:04:01'),(2194,9,'simple','n31145394-grey-Extra small size',0,0,'2019-03-07 09:48:16','2019-04-15 09:04:01'),(2195,9,'simple','n31145394-grey-Small size',0,0,'2019-03-07 09:48:20','2019-04-15 09:04:01'),(2196,9,'simple','n31145394-grey-Medium size',0,0,'2019-03-07 09:48:24','2019-04-15 09:04:01'),(2197,9,'configurable','n31145394',1,1,'2019-03-07 09:48:28','2019-03-08 08:43:05'),(2198,9,'simple','n310018033-grey-Extra small size',0,0,'2019-03-07 09:52:09','2019-04-15 09:04:01'),(2199,9,'simple','n310018033-grey-Small size',0,0,'2019-03-07 09:52:12','2019-04-15 09:04:01'),(2200,9,'simple','n310018033-grey-Medium size',0,0,'2019-03-07 09:52:16','2019-04-15 09:04:01'),(2201,9,'simple','n310018033-blue-Extra small size',0,0,'2019-03-07 09:52:19','2019-04-15 09:04:01'),(2202,9,'simple','n310018033-blue-Small size',0,0,'2019-03-07 09:52:23','2019-04-15 09:04:01'),(2203,9,'simple','n310018033-blue-Medium size',0,0,'2019-03-07 09:52:26','2019-04-15 09:04:01'),(2204,9,'configurable','n310018033',1,1,'2019-03-07 09:52:30','2019-03-08 08:44:42'),(2205,11,'simple','n31175794-brown',0,0,'2019-03-07 10:10:45','2019-04-15 09:04:01'),(2206,11,'simple','n31175794-grey',0,0,'2019-03-07 10:10:47','2019-04-15 09:04:01'),(2207,11,'configurable','n31175794',1,1,'2019-03-07 10:10:49','2019-03-08 08:33:37'),(2208,9,'simple','n31289374-brown-Small size',0,0,'2019-03-07 10:16:32','2019-04-15 09:04:01'),(2209,9,'simple','n31289374-brown-Medium size',0,0,'2019-03-07 10:16:34','2019-04-15 09:04:01'),(2210,9,'simple','n31289374-black-Small size',0,0,'2019-03-07 10:16:36','2019-04-15 09:04:01'),(2211,9,'simple','n31289374-black-Medium size',0,0,'2019-03-07 10:16:38','2019-04-15 09:04:01'),(2212,9,'configurable','n31289374',1,1,'2019-03-07 10:16:40','2019-03-08 08:35:54'),(2213,9,'simple','n31001803-black-Extra small size',0,0,'2019-03-07 10:21:37','2019-04-15 09:04:01'),(2214,9,'simple','n31001803-black-Large size',0,0,'2019-03-07 10:21:41','2019-04-15 09:04:01'),(2215,9,'simple','n31001803-black-Small size',0,0,'2019-03-07 10:21:45','2019-04-15 09:04:01'),(2216,9,'simple','n31001803-brown-Extra small size',0,0,'2019-03-07 10:21:49','2019-04-15 09:04:01'),(2217,9,'simple','n31001803-brown-Large size',0,0,'2019-03-07 10:21:54','2019-04-15 09:04:01'),(2218,9,'simple','n31001803-brown-Small size',0,0,'2019-03-07 10:21:58','2019-04-15 09:04:01'),(2219,9,'configurable','n31001803',1,1,'2019-03-07 10:22:01','2019-03-08 08:46:11'),(2220,11,'simple','n31005341-blue',0,0,'2019-03-07 10:23:23','2019-04-15 09:04:01'),(2221,11,'simple','n31005341-red',0,0,'2019-03-07 10:23:25','2019-04-15 09:04:01'),(2222,11,'configurable','n31005341',1,1,'2019-03-07 10:23:27','2019-03-08 08:37:56'),(2223,9,'simple','n31343872-Extra small size-red',0,0,'2019-03-07 10:26:04','2019-04-15 09:04:01'),(2224,9,'simple','n31343872-Extra small size-brown',0,0,'2019-03-07 10:26:08','2019-04-15 09:04:01'),(2225,9,'simple','n31343872-Small size-red',0,0,'2019-03-07 10:26:11','2019-04-15 09:04:01'),(2226,9,'simple','n31343872-Small size-brown',0,0,'2019-03-07 10:26:15','2019-04-15 09:04:01'),(2227,9,'simple','n31343872-Medium size-red',0,0,'2019-03-07 10:26:18','2019-04-15 09:04:01'),(2228,9,'simple','n31343872-Medium size-brown',0,0,'2019-03-07 10:26:22','2019-04-15 09:04:01'),(2229,9,'configurable','n31343872',1,1,'2019-03-07 10:26:25','2019-03-08 08:48:30'),(2230,9,'simple','n31045897-blue-Small size',0,0,'2019-03-07 10:30:39','2019-04-15 09:04:01'),(2231,9,'simple','n31045897-blue-Medium size',0,0,'2019-03-07 10:30:41','2019-04-15 09:04:01'),(2232,9,'simple','n31045897-black-Small size',0,0,'2019-03-07 10:30:43','2019-04-15 09:04:01'),(2233,9,'simple','n31045897-black-Medium size',0,0,'2019-03-07 10:30:45','2019-04-15 09:04:01'),(2234,9,'configurable','n31045897',1,1,'2019-03-07 10:30:47','2019-03-08 08:40:23'),(2235,10,'simple','n31196404-brown-EU 36',0,0,'2019-03-07 10:31:13','2019-04-15 09:04:01'),(2236,10,'simple','n31196404-brown-EU 39',0,0,'2019-03-07 10:31:15','2019-04-15 09:04:01'),(2237,10,'simple','n31196404-brown-EU 40',0,0,'2019-03-07 10:31:16','2019-04-15 09:04:01'),(2238,10,'simple','n31196404-brown-EU 41',0,0,'2019-03-07 10:31:17','2019-04-15 09:04:01'),(2239,10,'simple','n31196404-brown-EU 38',0,0,'2019-03-07 10:31:19','2019-04-15 09:04:01'),(2240,10,'simple','n31196404-blue-EU 36',0,0,'2019-03-07 10:31:20','2019-04-15 09:04:01'),(2241,10,'simple','n31196404-blue-EU 39',0,0,'2019-03-07 10:31:22','2019-04-15 09:04:01'),(2242,10,'simple','n31196404-blue-EU 40',0,0,'2019-03-07 10:31:23','2019-04-15 09:04:01'),(2243,10,'simple','n31196404-blue-EU 41',0,0,'2019-03-07 10:31:25','2019-04-15 09:04:01'),(2244,10,'simple','n31196404-blue-EU 38',0,0,'2019-03-07 10:31:26','2019-04-15 09:04:01'),(2245,10,'configurable','n31196404',1,1,'2019-03-07 10:31:28','2019-03-08 08:49:34'),(2246,9,'simple','n31483900-red-Small size',0,0,'2019-03-07 10:34:27','2019-04-15 09:04:01'),(2247,9,'simple','n31483900-red-Extra large size',0,0,'2019-03-07 10:34:30','2019-04-15 09:04:01'),(2248,9,'simple','n31483900-red-Medium size',0,0,'2019-03-07 10:34:32','2019-04-15 09:04:01'),(2249,9,'simple','n31483900-grey-Small size',0,0,'2019-03-07 10:34:35','2019-04-15 09:04:01'),(2250,9,'simple','n31483900-grey-Extra large size',0,0,'2019-03-07 10:34:38','2019-04-15 09:04:01'),(2251,9,'simple','n31483900-grey-Medium size',0,0,'2019-03-07 10:34:41','2019-04-15 09:04:01'),(2252,9,'configurable','n31483900',1,1,'2019-03-07 10:34:43','2019-03-08 08:50:45'),(2253,9,'simple','n31191497-brown-Medium size',0,0,'2019-03-07 10:42:31','2019-04-15 09:04:01'),(2254,9,'simple','n31191497-grey-Medium size',0,0,'2019-03-07 10:42:33','2019-04-15 09:04:01'),(2255,9,'configurable','n31191497',1,1,'2019-03-07 10:42:35','2019-03-08 08:42:19'),(2256,10,'simple','n31085354-black-EU 38',0,0,'2019-03-07 10:42:56','2019-04-15 09:04:01'),(2257,10,'simple','n31085354-black-EU 41',0,0,'2019-03-07 10:42:57','2019-04-15 09:04:01'),(2258,10,'simple','n31085354-black-EU 37',0,0,'2019-03-07 10:42:59','2019-04-15 09:04:01'),(2259,10,'simple','n31085354-black-EU 40',0,0,'2019-03-07 10:43:00','2019-04-15 09:04:01'),(2260,10,'simple','n31085354-black-EU 39',0,0,'2019-03-07 10:43:02','2019-04-15 09:04:01'),(2261,10,'simple','n31085354-black-EU 36',0,0,'2019-03-07 10:43:03','2019-04-15 09:04:01'),(2262,10,'simple','n31085354-red-EU 38',0,0,'2019-03-07 10:43:05','2019-04-15 09:04:01'),(2263,10,'simple','n31085354-red-EU 41',0,0,'2019-03-07 10:43:06','2019-04-15 09:04:01'),(2264,10,'simple','n31085354-red-EU 37',0,0,'2019-03-07 10:43:08','2019-04-15 09:04:01'),(2265,10,'simple','n31085354-red-EU 40',0,0,'2019-03-07 10:43:09','2019-04-15 09:04:01'),(2266,10,'simple','n31085354-red-EU 39',0,0,'2019-03-07 10:43:11','2019-04-15 09:04:01'),(2267,10,'simple','n31085354-red-EU 36',0,0,'2019-03-07 10:43:12','2019-04-15 09:04:01'),(2268,10,'configurable','n31085354',1,1,'2019-03-07 10:43:14','2019-03-08 08:52:42'),(2278,9,'simple','n31220278-brown-Extra small size',0,0,'2019-03-07 10:50:50','2019-04-15 09:04:01'),(2279,9,'simple','n31220278-brown-Small size',0,0,'2019-03-07 10:50:53','2019-04-15 09:04:01'),(2280,9,'simple','n31220278-brown-Medium size',0,0,'2019-03-07 10:50:57','2019-04-15 09:04:01'),(2281,9,'simple','n31220278-blue-Extra small size',0,0,'2019-03-07 10:51:00','2019-04-15 09:04:01'),(2282,9,'simple','n31220278-blue-Small size',0,0,'2019-03-07 10:51:04','2019-04-15 09:04:01'),(2283,9,'simple','n31220278-blue-Medium size',0,0,'2019-03-07 10:51:08','2019-04-15 09:04:01'),(2284,9,'configurable','n31220278',1,1,'2019-03-07 10:51:12','2019-03-08 09:01:02'),(2285,9,'simple','n31350778-brown-Medium size',0,0,'2019-03-07 10:55:46','2019-04-15 09:04:01'),(2286,9,'simple','n31350778-brown-Small size',0,0,'2019-03-07 10:55:48','2019-04-15 09:04:01'),(2287,9,'simple','n31350778-brown-Extra small size',0,0,'2019-03-07 10:55:50','2019-04-15 09:04:01'),(2288,9,'simple','n31350778-black-Medium size',0,0,'2019-03-07 10:55:51','2019-04-15 09:04:01'),(2289,9,'simple','n31350778-black-Small size',0,0,'2019-03-07 10:55:53','2019-04-15 09:04:01'),(2290,9,'simple','n31350778-black-Extra small size',0,0,'2019-03-07 10:55:55','2019-04-15 09:04:01'),(2291,9,'configurable','n31350778',1,1,'2019-03-07 10:55:56','2019-03-08 09:03:29'),(2292,9,'simple','n31261586-Extra small size-white',0,0,'2019-03-07 11:03:05','2019-04-15 09:04:01'),(2293,9,'simple','n31261586-Extra small size-blue',0,0,'2019-03-07 11:03:09','2019-04-15 09:04:01'),(2294,9,'simple','n31261586-Large size-white',0,0,'2019-03-07 11:03:12','2019-04-15 09:04:01'),(2295,9,'simple','n31261586-Large size-blue',0,0,'2019-03-07 11:03:16','2019-04-15 09:04:01'),(2296,9,'simple','n31261586-Small size-white',0,0,'2019-03-07 11:03:19','2019-04-15 09:04:01'),(2297,9,'simple','n31261586-Small size-blue',0,0,'2019-03-07 11:03:23','2019-04-15 09:04:01'),(2298,9,'simple','n31261586-Medium size-white',0,0,'2019-03-07 11:03:26','2019-04-15 09:04:01'),(2299,9,'simple','n31261586-Medium size-blue',0,0,'2019-03-07 11:03:30','2019-04-15 09:04:01'),(2300,9,'configurable','n31261586',1,1,'2019-03-07 11:03:33','2019-03-08 12:26:12'),(2301,9,'simple','n31125033-black-Extra small size',0,0,'2019-03-07 11:07:21','2019-04-15 09:04:01'),(2302,9,'simple','n31125033-black-Large size',0,0,'2019-03-07 11:07:24','2019-04-15 09:04:01'),(2303,9,'simple','n31125033-black-Small size',0,0,'2019-03-07 11:07:27','2019-04-15 09:04:01'),(2304,9,'simple','n31125033-black-Extra large size',0,0,'2019-03-07 11:07:31','2019-04-15 09:04:01'),(2305,9,'simple','n31125033-grey-Extra small size',0,0,'2019-03-07 11:07:34','2019-04-15 09:04:01'),(2306,9,'simple','n31125033-grey-Large size',0,0,'2019-03-07 11:07:38','2019-04-15 09:04:01'),(2307,9,'simple','n31125033-grey-Small size',0,0,'2019-03-07 11:07:41','2019-04-15 09:04:01'),(2308,9,'simple','n31125033-grey-Extra large size',0,0,'2019-03-07 11:07:45','2019-04-15 09:04:01'),(2309,9,'configurable','n31125033',1,1,'2019-03-07 11:07:49','2019-03-08 12:47:45'),(2310,9,'simple','n31125039-grey-Extra small size',0,0,'2019-03-07 11:14:14','2019-04-15 09:04:01'),(2311,9,'simple','n31125039-grey-Small size',0,0,'2019-03-07 11:14:18','2019-04-15 09:04:01'),(2312,9,'simple','n31125039-grey-Medium size',0,0,'2019-03-07 11:14:21','2019-04-15 09:04:01'),(2313,9,'simple','n31125039-grey-Large size',0,0,'2019-03-07 11:14:25','2019-04-15 09:04:01'),(2314,9,'simple','n31125039-grey-Extra large size',0,0,'2019-03-07 11:14:29','2019-04-15 09:04:01'),(2315,9,'simple','n31125039-blue-Extra small size',0,0,'2019-03-07 11:14:32','2019-04-15 09:04:01'),(2316,9,'simple','n31125039-blue-Small size',0,0,'2019-03-07 11:14:36','2019-04-15 09:04:01'),(2317,9,'simple','n31125039-blue-Medium size',0,0,'2019-03-07 11:14:40','2019-04-15 09:04:01'),(2318,9,'simple','n31125039-blue-Large size',0,0,'2019-03-07 11:14:43','2019-04-15 09:04:01'),(2319,9,'simple','n31125039-blue-Extra large size',0,0,'2019-03-07 11:14:46','2019-04-15 09:04:01'),(2320,9,'configurable','n31125039',1,1,'2019-03-07 11:14:50','2019-03-08 09:09:01'),(2330,9,'simple','n31207365-white-Small size',0,0,'2019-03-07 11:28:47','2019-04-15 09:04:01'),(2331,9,'simple','n31207365-white-Extra large size',0,0,'2019-03-07 11:28:51','2019-04-15 09:04:01'),(2332,9,'simple','n31207365-white-Large size',0,0,'2019-03-07 11:28:54','2019-04-15 09:04:01'),(2333,9,'simple','n31207365-blue-Small size',0,0,'2019-03-07 11:28:57','2019-04-15 09:04:01'),(2334,9,'simple','n31207365-blue-Extra large size',0,0,'2019-03-07 11:29:01','2019-04-15 09:04:01'),(2335,9,'simple','n31207365-blue-Large size',0,0,'2019-03-07 11:29:05','2019-04-15 09:04:01'),(2336,9,'configurable','n31207365',1,1,'2019-03-07 11:29:08','2019-03-08 07:53:04'),(2337,9,'simple','n31166144-red-Small size',0,0,'2019-03-07 11:36:20','2019-04-15 09:04:01'),(2338,9,'simple','n31166144-red-Medium size',0,0,'2019-03-07 11:36:24','2019-04-15 09:04:01'),(2339,9,'simple','n31166144-red-Large size',0,0,'2019-03-07 11:36:28','2019-04-15 09:04:01'),(2340,9,'simple','n31166144-white-Small size',0,0,'2019-03-07 11:36:31','2019-04-15 09:04:01'),(2341,9,'simple','n31166144-white-Medium size',0,0,'2019-03-07 11:36:35','2019-04-15 09:04:01'),(2342,9,'simple','n31166144-white-Large size',0,0,'2019-03-07 11:36:38','2019-04-15 09:04:01'),(2343,9,'configurable','n31166144',1,1,'2019-03-07 11:36:41','2019-03-08 07:55:02'),(2344,9,'simple','n310046545-black-Extra small size',0,0,'2019-03-07 11:38:27','2019-04-15 09:04:01'),(2345,9,'simple','n310046545-black-Small size',0,0,'2019-03-07 11:38:29','2019-04-15 09:04:01'),(2346,9,'simple','n310046545-black-Extra large size',0,0,'2019-03-07 11:38:31','2019-04-15 09:04:01'),(2347,9,'simple','n310046545-red-Extra small size',0,0,'2019-03-07 11:38:34','2019-04-15 09:04:01'),(2348,9,'simple','n310046545-red-Small size',0,0,'2019-03-07 11:38:36','2019-04-15 09:04:01'),(2349,9,'simple','n310046545-red-Extra large size',0,0,'2019-03-07 11:38:38','2019-04-15 09:04:01'),(2350,9,'configurable','n310046545',1,1,'2019-03-07 11:38:40','2019-03-08 08:44:09'),(2351,9,'simple','n31268637-blue-Extra small size',0,0,'2019-03-07 11:43:43','2019-04-15 09:04:01'),(2352,9,'simple','n31268637-blue-Small size',0,0,'2019-03-07 11:43:46','2019-04-15 09:04:01'),(2353,9,'simple','n31268637-blue-Medium size',0,0,'2019-03-07 11:43:50','2019-04-15 09:04:01'),(2354,9,'simple','n31268637-red-Extra small size',0,0,'2019-03-07 11:43:54','2019-04-15 09:04:01'),(2355,9,'simple','n31268637-red-Small size',0,0,'2019-03-07 11:43:58','2019-04-15 09:04:01'),(2356,9,'simple','n31268637-red-Medium size',0,0,'2019-03-07 11:44:01','2019-04-15 09:04:01'),(2357,9,'configurable','n31268637',1,1,'2019-03-07 11:44:05','2019-03-08 09:11:10'),(2358,9,'simple','n31291013-Medium size-white',0,0,'2019-03-07 11:48:17','2019-04-15 09:04:01'),(2359,9,'simple','n31291013-Medium size-black',0,0,'2019-03-07 11:48:21','2019-04-15 09:04:01'),(2360,9,'simple','n31291013-Small size-white',0,0,'2019-03-07 11:48:24','2019-04-15 09:04:01'),(2361,9,'simple','n31291013-Small size-black',0,0,'2019-03-07 11:48:28','2019-04-15 09:04:01'),(2362,9,'simple','n31291013-Extra small size-white',0,0,'2019-03-07 11:48:31','2019-04-15 09:04:01'),(2363,9,'simple','n31291013-Extra small size-black',0,0,'2019-03-07 11:48:35','2019-04-15 09:04:01'),(2364,9,'simple','n31291013-Large size-white',0,0,'2019-03-07 11:48:38','2019-04-15 09:04:01'),(2365,9,'simple','n31291013-Large size-black',0,0,'2019-03-07 11:48:42','2019-04-15 09:04:01'),(2366,9,'configurable','n31291013',1,1,'2019-03-07 11:48:45','2019-03-08 08:15:28'),(2367,9,'simple','n31262293-brown-Extra small size',0,0,'2019-03-07 11:49:13','2019-04-15 09:04:01'),(2368,9,'simple','n31262293-brown-Small size',0,0,'2019-03-07 11:49:17','2019-04-15 09:04:01'),(2369,9,'simple','n31262293-brown-Medium size',0,0,'2019-03-07 11:49:20','2019-04-15 09:04:01'),(2370,9,'simple','n31262293-grey-Extra small size',0,0,'2019-03-07 11:49:24','2019-04-15 09:04:01'),(2371,9,'simple','n31262293-grey-Small size',0,0,'2019-03-07 11:49:27','2019-04-15 09:04:01'),(2372,9,'simple','n31262293-grey-Medium size',0,0,'2019-03-07 11:49:31','2019-04-15 09:04:01'),(2373,9,'configurable','n31262293',1,1,'2019-03-07 11:49:35','2019-03-08 08:49:18'),(2374,9,'simple','n31189077-black-Large size',0,0,'2019-03-07 11:56:28','2019-04-15 09:04:01'),(2375,9,'simple','n31189077-black-Small size',0,0,'2019-03-07 11:56:29','2019-04-15 09:04:01'),(2376,9,'simple','n31189077-black-Medium size',0,0,'2019-03-07 11:56:31','2019-04-15 09:04:01'),(2377,9,'simple','n31189077-red-Large size',0,0,'2019-03-07 11:56:32','2019-04-15 09:04:01'),(2378,9,'simple','n31189077-red-Small size',0,0,'2019-03-07 11:56:34','2019-04-15 09:04:01'),(2379,9,'simple','n31189077-red-Medium size',0,0,'2019-03-07 11:56:35','2019-04-15 09:04:01'),(2380,9,'simple','n31189077-white-Large size',0,0,'2019-03-07 11:56:37','2019-04-15 09:04:01'),(2381,9,'simple','n31189077-white-Small size',0,0,'2019-03-07 11:56:38','2019-04-15 09:04:01'),(2382,9,'simple','n31189077-white-Medium size',0,0,'2019-03-07 11:56:39','2019-04-15 09:04:01'),(2383,9,'simple','n31189077-blue-Large size',0,0,'2019-03-07 11:56:41','2019-04-15 09:04:01'),(2384,9,'simple','n31189077-blue-Small size',0,0,'2019-03-07 11:56:42','2019-04-15 09:04:01'),(2385,9,'simple','n31189077-blue-Medium size',0,0,'2019-03-07 11:56:44','2019-04-15 09:04:01'),(2386,9,'simple','n31189077-brown-Large size',0,0,'2019-03-07 11:56:45','2019-04-15 09:04:01'),(2387,9,'simple','n31189077-brown-Small size',0,0,'2019-03-07 11:56:47','2019-04-15 09:04:01'),(2388,9,'simple','n31189077-brown-Medium size',0,0,'2019-03-07 11:56:48','2019-04-15 09:04:01'),(2389,9,'configurable','n31189077',1,1,'2019-03-07 11:56:50','2019-03-08 07:36:26'),(2390,9,'simple','n31262295-brown-Extra small size',0,0,'2019-03-07 11:57:05','2019-04-15 09:04:01'),(2391,9,'simple','n31262295-brown-Small size',0,0,'2019-03-07 11:57:09','2019-04-15 09:04:01'),(2392,9,'simple','n31262295-brown-Medium size',0,0,'2019-03-07 11:57:13','2019-04-15 09:04:01'),(2393,9,'simple','n31262295-grey-Extra small size',0,0,'2019-03-07 11:57:17','2019-04-15 09:04:01'),(2394,9,'simple','n31262295-grey-Small size',0,0,'2019-03-07 11:57:21','2019-04-15 09:04:01'),(2395,9,'simple','n31262295-grey-Medium size',0,0,'2019-03-07 11:57:24','2019-04-15 09:04:01'),(2396,9,'configurable','n31262295',1,1,'2019-03-07 11:57:28','2019-03-08 08:52:32'),(2397,9,'simple','n31125036-blue-Extra small size',0,0,'2019-03-07 12:24:14','2019-04-15 09:04:01'),(2398,9,'simple','n31125036-blue-Small size',0,0,'2019-03-07 12:24:17','2019-04-15 09:04:01'),(2399,9,'simple','n31125036-blue-Medium size',0,0,'2019-03-07 12:24:21','2019-04-15 09:04:01'),(2400,9,'simple','n31125036-red-Extra small size',0,0,'2019-03-07 12:24:24','2019-04-15 09:04:01'),(2401,9,'simple','n31125036-red-Small size',0,0,'2019-03-07 12:24:28','2019-04-15 09:04:01'),(2402,9,'simple','n31125036-red-Medium size',0,0,'2019-03-07 12:24:31','2019-04-15 09:04:01'),(2403,9,'configurable','n31125036',1,1,'2019-03-07 12:24:35','2019-03-08 08:54:55'),(2404,9,'simple','n31241601-grey-Extra small size',0,0,'2019-03-07 12:29:45','2019-04-15 09:04:01'),(2405,9,'simple','n31241601-grey-Large size',0,0,'2019-03-07 12:29:47','2019-04-15 09:04:01'),(2406,9,'simple','n31241601-grey-Small size',0,0,'2019-03-07 12:29:49','2019-04-15 09:04:01'),(2407,9,'simple','n31241601-red-Extra small size',0,0,'2019-03-07 12:29:51','2019-04-15 09:04:01'),(2408,9,'simple','n31241601-red-Large size',0,0,'2019-03-07 12:29:53','2019-04-15 09:04:01'),(2409,9,'simple','n31241601-red-Small size',0,0,'2019-03-07 12:29:55','2019-04-15 09:04:01'),(2410,9,'configurable','n31241601',1,1,'2019-03-07 12:29:57','2019-03-08 08:58:30'),(2411,9,'simple','n31043406-brown-Medium size',0,0,'2019-03-07 12:32:19','2019-04-15 09:04:01'),(2412,9,'simple','n31043406-brown-Extra small size',0,0,'2019-03-07 12:32:23','2019-04-15 09:04:01'),(2413,9,'simple','n31043406-brown-Small size',0,0,'2019-03-07 12:32:26','2019-04-15 09:04:01'),(2414,9,'simple','n31043406-black-Medium size',0,0,'2019-03-07 12:32:30','2019-04-15 09:04:01'),(2415,9,'simple','n31043406-black-Extra small size',0,0,'2019-03-07 12:32:33','2019-04-15 09:04:01'),(2416,9,'simple','n31043406-black-Small size',0,0,'2019-03-07 12:32:37','2019-04-15 09:04:01'),(2417,9,'configurable','n31043406',1,1,'2019-03-07 12:32:41','2019-03-08 07:57:14'),(2418,9,'simple','n31292416-brown-Extra small size',0,0,'2019-03-07 12:34:33','2019-04-15 09:04:01'),(2419,9,'simple','n31292416-brown-Small size',0,0,'2019-03-07 12:34:37','2019-04-15 09:04:01'),(2420,9,'simple','n31292416-brown-Medium size',0,0,'2019-03-07 12:34:40','2019-04-15 09:04:01'),(2421,9,'simple','n31292416-grey-Extra small size',0,0,'2019-03-07 12:34:44','2019-04-15 09:04:01'),(2422,9,'simple','n31292416-grey-Small size',0,0,'2019-03-07 12:34:47','2019-04-15 09:04:01'),(2423,9,'simple','n31292416-grey-Medium size',0,0,'2019-03-07 12:34:51','2019-04-15 09:04:01'),(2424,9,'configurable','n31292416',1,1,'2019-03-07 12:34:55','2019-03-08 09:17:24'),(2425,9,'simple','n30811612-white-Extra small size',0,0,'2019-03-07 12:42:48','2019-04-15 09:04:01'),(2426,9,'simple','n30811612-white-Small size',0,0,'2019-03-07 12:42:52','2019-04-15 09:04:01'),(2427,9,'simple','n30811612-white-Medium size',0,0,'2019-03-07 12:42:55','2019-04-15 09:04:01'),(2428,9,'simple','n30811612-blue-Extra small size',0,0,'2019-03-07 12:42:59','2019-04-15 09:04:01'),(2429,9,'simple','n30811612-blue-Small size',0,0,'2019-03-07 12:43:02','2019-04-15 09:04:01'),(2430,9,'simple','n30811612-blue-Medium size',0,0,'2019-03-07 12:43:06','2019-04-15 09:04:01'),(2431,9,'configurable','n30811612',1,1,'2019-03-07 12:43:10','2019-03-08 09:19:26'),(2432,9,'simple','n31125034-grey-Extra large size',0,0,'2019-03-07 12:49:38','2019-04-15 09:04:01'),(2433,9,'simple','n31125034-grey-Small size',0,0,'2019-03-07 12:49:42','2019-04-15 09:04:01'),(2434,9,'simple','n31125034-grey-Extra small size',0,0,'2019-03-07 12:49:45','2019-04-15 09:04:01'),(2435,9,'simple','n31125034-grey-Large size',0,0,'2019-03-07 12:49:49','2019-04-15 09:04:01'),(2436,9,'simple','n31125034-blue-Extra large size',0,0,'2019-03-07 12:49:53','2019-04-15 09:04:01'),(2437,9,'simple','n31125034-blue-Small size',0,0,'2019-03-07 12:49:56','2019-04-15 09:04:01'),(2438,9,'simple','n31125034-blue-Extra small size',0,0,'2019-03-07 12:50:00','2019-04-15 09:04:01'),(2439,9,'simple','n31125034-blue-Large size',0,0,'2019-03-07 12:50:03','2019-04-15 09:04:01'),(2440,9,'configurable','n31125034',1,1,'2019-03-07 12:50:07','2019-03-08 09:21:38'),(2441,10,'simple','n31093629-grey-EU 39',0,0,'2019-03-07 12:59:42','2019-04-15 09:04:01'),(2442,10,'simple','n31093629-grey-EU 40',0,0,'2019-03-07 12:59:44','2019-04-15 09:04:01'),(2443,10,'simple','n31093629-grey-EU 37',0,0,'2019-03-07 12:59:46','2019-04-15 09:04:01'),(2444,10,'simple','n31093629-grey-EU 38',0,0,'2019-03-07 12:59:47','2019-04-15 09:04:01'),(2445,10,'simple','n31093629-grey-EU 41',0,0,'2019-03-07 12:59:49','2019-04-15 09:04:01'),(2446,10,'simple','n31093629-white-EU 39',0,0,'2019-03-07 12:59:50','2019-04-15 09:04:01'),(2447,10,'simple','n31093629-white-EU 40',0,0,'2019-03-07 12:59:52','2019-04-15 09:04:01'),(2448,10,'simple','n31093629-white-EU 37',0,0,'2019-03-07 12:59:53','2019-04-15 09:04:01'),(2449,10,'simple','n31093629-white-EU 38',0,0,'2019-03-07 12:59:55','2019-04-15 09:04:01'),(2450,10,'simple','n31093629-white-EU 41',0,0,'2019-03-07 12:59:56','2019-04-15 09:04:01'),(2451,10,'simple','n31093629-blue-EU 39',0,0,'2019-03-07 12:59:58','2019-04-15 09:04:01'),(2452,10,'simple','n31093629-blue-EU 40',0,0,'2019-03-07 12:59:59','2019-04-15 09:04:01'),(2453,10,'simple','n31093629-blue-EU 37',0,0,'2019-03-07 13:00:01','2019-04-15 09:04:01'),(2454,10,'simple','n31093629-blue-EU 38',0,0,'2019-03-07 13:00:03','2019-04-15 09:04:01'),(2455,10,'simple','n31093629-blue-EU 41',0,0,'2019-03-07 13:00:04','2019-04-15 09:04:01'),(2456,10,'configurable','n31093629',1,1,'2019-03-07 13:00:06','2019-03-08 09:23:30'),(2457,10,'simple','n31333018-blue-EU 36',0,0,'2019-03-07 13:05:59','2019-04-15 09:04:01'),(2458,10,'simple','n31333018-blue-EU 37',0,0,'2019-03-07 13:06:01','2019-04-15 09:04:01'),(2459,10,'simple','n31333018-blue-EU 40',0,0,'2019-03-07 13:06:03','2019-04-15 09:04:01'),(2460,10,'simple','n31333018-blue-EU 38',0,0,'2019-03-07 13:06:04','2019-04-15 09:04:01'),(2461,10,'simple','n31333018-red-EU 36',0,0,'2019-03-07 13:06:06','2019-04-15 09:04:01'),(2462,10,'simple','n31333018-red-EU 37',0,0,'2019-03-07 13:06:07','2019-04-15 09:04:01'),(2463,10,'simple','n31333018-red-EU 40',0,0,'2019-03-07 13:06:08','2019-04-15 09:04:01'),(2464,10,'simple','n31333018-red-EU 38',0,0,'2019-03-07 13:06:10','2019-04-15 09:04:01'),(2465,10,'configurable','n31333018',1,1,'2019-03-07 13:06:11','2019-03-08 09:25:19'),(2466,10,'simple','n30945868-grey-EU 36',0,0,'2019-03-07 13:12:03','2019-04-15 09:04:01'),(2467,10,'simple','n30945868-grey-EU 39',0,0,'2019-03-07 13:12:04','2019-04-15 09:04:01'),(2468,10,'simple','n30945868-grey-EU 40',0,0,'2019-03-07 13:12:06','2019-04-15 09:04:01'),(2469,10,'simple','n30945868-grey-EU 43',0,0,'2019-03-07 13:12:07','2019-04-15 09:04:01'),(2470,10,'simple','n30945868-grey-EU 38',0,0,'2019-03-07 13:12:09','2019-04-15 09:04:01'),(2471,10,'simple','n30945868-grey-EU 41',0,0,'2019-03-07 13:12:10','2019-04-15 09:04:01'),(2472,10,'simple','n30945868-black-EU 36',0,0,'2019-03-07 13:12:12','2019-04-15 09:04:01'),(2473,10,'simple','n30945868-black-EU 39',0,0,'2019-03-07 13:12:14','2019-04-15 09:04:01'),(2474,10,'simple','n30945868-black-EU 40',0,0,'2019-03-07 13:12:15','2019-04-15 09:04:01'),(2475,10,'simple','n30945868-black-EU 43',0,0,'2019-03-07 13:12:17','2019-04-15 09:04:01'),(2476,10,'simple','n30945868-black-EU 38',0,0,'2019-03-07 13:12:18','2019-04-15 09:04:01'),(2477,10,'simple','n30945868-black-EU 41',0,0,'2019-03-07 13:12:20','2019-04-15 09:04:01'),(2478,10,'configurable','n30945868',1,1,'2019-03-07 13:12:22','2019-03-08 09:27:14'),(2479,9,'simple','n31125042-grey-Large size',0,0,'2019-03-07 13:35:46','2019-04-15 09:04:01'),(2480,9,'simple','n31125042-grey-Extra small size',0,0,'2019-03-07 13:35:50','2019-04-15 09:04:01'),(2481,9,'simple','n31125042-grey-Small size',0,0,'2019-03-07 13:35:54','2019-04-15 09:04:01'),(2482,9,'simple','n31125042-grey-Medium size',0,0,'2019-03-07 13:35:58','2019-04-15 09:04:01'),(2483,9,'simple','n31125042-black-Large size',0,0,'2019-03-07 13:36:02','2019-04-15 09:04:01'),(2484,9,'simple','n31125042-black-Extra small size',0,0,'2019-03-07 13:36:05','2019-04-15 09:04:01'),(2485,9,'simple','n31125042-black-Small size',0,0,'2019-03-07 13:36:09','2019-04-15 09:04:01'),(2486,9,'simple','n31125042-black-Medium size',0,0,'2019-03-07 13:36:12','2019-04-15 09:04:01'),(2487,9,'configurable','n31125042',1,1,'2019-03-07 13:36:16','2019-03-08 09:29:40'),(2488,10,'simple','n31074190-grey-EU 36',0,0,'2019-03-07 13:41:34','2019-04-15 09:04:01'),(2489,10,'simple','n31074190-grey-EU 39',0,0,'2019-03-07 13:41:36','2019-04-15 09:04:01'),(2490,10,'simple','n31074190-grey-EU 37',0,0,'2019-03-07 13:41:37','2019-04-15 09:04:01'),(2491,10,'simple','n31074190-grey-EU 40',0,0,'2019-03-07 13:41:39','2019-04-15 09:04:01'),(2492,10,'simple','n31074190-grey-EU 38',0,0,'2019-03-07 13:41:40','2019-04-15 09:04:01'),(2493,10,'simple','n31074190-grey-EU 41',0,0,'2019-03-07 13:41:42','2019-04-15 09:04:01'),(2494,10,'simple','n31074190-red-EU 36',0,0,'2019-03-07 13:41:43','2019-04-15 09:04:01'),(2495,10,'simple','n31074190-red-EU 39',0,0,'2019-03-07 13:41:45','2019-04-15 09:04:01'),(2496,10,'simple','n31074190-red-EU 37',0,0,'2019-03-07 13:41:46','2019-04-15 09:04:01'),(2497,10,'simple','n31074190-red-EU 40',0,0,'2019-03-07 13:41:48','2019-04-15 09:04:01'),(2498,10,'simple','n31074190-red-EU 38',0,0,'2019-03-07 13:41:49','2019-04-15 09:04:01'),(2499,10,'simple','n31074190-red-EU 41',0,0,'2019-03-07 13:41:51','2019-04-15 09:04:01'),(2500,10,'configurable','n31074190',1,1,'2019-03-07 13:41:52','2019-03-08 09:33:13'),(2501,9,'simple','n31253495-grey-Large size',0,0,'2019-03-07 13:47:11','2019-04-15 09:04:01'),(2502,9,'simple','n31253495-grey-Small size',0,0,'2019-03-07 13:47:15','2019-04-15 09:04:01'),(2503,9,'simple','n31253495-grey-Medium size',0,0,'2019-03-07 13:47:18','2019-04-15 09:04:01'),(2504,9,'simple','n31253495-black-Large size',0,0,'2019-03-07 13:47:22','2019-04-15 09:04:01'),(2505,9,'simple','n31253495-black-Small size',0,0,'2019-03-07 13:47:25','2019-04-15 09:04:01'),(2506,9,'simple','n31253495-black-Medium size',0,0,'2019-03-07 13:47:29','2019-04-15 09:04:01'),(2507,9,'configurable','n31253495',1,1,'2019-03-07 13:47:32','2019-03-08 07:59:31'),(2508,9,'simple','n31253494-brown-Large size',0,0,'2019-03-07 13:53:47','2019-04-15 09:04:01'),(2509,9,'simple','n31253494-brown-Small size',0,0,'2019-03-07 13:53:51','2019-04-15 09:04:01'),(2510,9,'simple','n31253494-brown-Medium size',0,0,'2019-03-07 13:53:55','2019-04-15 09:04:01'),(2511,9,'simple','n31253494-blue-Large size',0,0,'2019-03-07 13:53:58','2019-04-15 09:04:01'),(2512,9,'simple','n31253494-blue-Small size',0,0,'2019-03-07 13:54:02','2019-04-15 09:04:01'),(2513,9,'simple','n31253494-blue-Medium size',0,0,'2019-03-07 13:54:06','2019-04-15 09:04:01'),(2514,9,'simple','n31253494-black-Large size',0,0,'2019-03-07 13:54:10','2019-04-15 09:04:01'),(2515,9,'simple','n31253494-black-Small size',0,0,'2019-03-07 13:54:13','2019-04-15 09:04:01'),(2516,9,'simple','n31253494-black-Medium size',0,0,'2019-03-07 13:54:17','2019-04-15 09:04:01'),(2517,9,'configurable','n31253494',1,1,'2019-03-07 13:54:20','2019-03-08 08:01:24'),(2518,9,'simple','n31253496-grey-Large size',0,0,'2019-03-07 14:15:32','2019-04-15 09:04:01'),(2519,9,'simple','n31253496-grey-Small size',0,0,'2019-03-07 14:15:35','2019-04-15 09:04:01'),(2520,9,'simple','n31253496-grey-Medium size',0,0,'2019-03-07 14:15:39','2019-04-15 09:04:01'),(2521,9,'simple','n31253496-brown-Large size',0,0,'2019-03-07 14:15:42','2019-04-15 09:04:01'),(2522,9,'simple','n31253496-brown-Small size',0,0,'2019-03-07 14:15:47','2019-04-15 09:04:01'),(2523,9,'simple','n31253496-brown-Medium size',0,0,'2019-03-07 14:15:51','2019-04-15 09:04:01'),(2524,9,'configurable','n31253496',1,1,'2019-03-07 14:15:56','2019-03-07 15:43:36'),(2525,10,'simple','n31103364-brown-EU 36',0,0,'2019-03-07 14:30:18','2019-04-15 09:04:01'),(2526,10,'simple','n31103364-brown-EU 37',0,0,'2019-03-07 14:30:20','2019-04-15 09:04:01'),(2527,10,'simple','n31103364-brown-EU 40',0,0,'2019-03-07 14:30:21','2019-04-15 09:04:01'),(2528,10,'simple','n31103364-brown-EU 38',0,0,'2019-03-07 14:30:23','2019-04-15 09:04:01'),(2529,10,'simple','n31103364-blue-EU 36',0,0,'2019-03-07 14:30:24','2019-04-15 09:04:01'),(2530,10,'simple','n31103364-blue-EU 37',0,0,'2019-03-07 14:30:27','2019-04-15 09:04:01'),(2531,10,'simple','n31103364-blue-EU 40',0,0,'2019-03-07 14:30:28','2019-04-15 09:04:01'),(2532,10,'simple','n31103364-blue-EU 38',0,0,'2019-03-07 14:30:30','2019-04-15 09:04:01'),(2533,10,'configurable','n31103364',1,1,'2019-03-07 14:30:31','2019-03-08 09:09:59'),(2534,9,'simple','n31151579-brown-Extra small size',0,0,'2019-03-07 14:34:13','2019-04-15 09:04:01'),(2535,9,'simple','n31151579-brown-Large size',0,0,'2019-03-07 14:34:17','2019-04-15 09:04:01'),(2536,9,'simple','n31151579-brown-Small size',0,0,'2019-03-07 14:34:20','2019-04-15 09:04:01'),(2537,9,'simple','n31151579-brown-Medium size',0,0,'2019-03-07 14:34:24','2019-04-15 09:04:01'),(2538,9,'simple','n31151579-white-Extra small size',0,0,'2019-03-07 14:34:27','2019-04-15 09:04:01'),(2539,9,'simple','n31151579-white-Large size',0,0,'2019-03-07 14:34:31','2019-04-15 09:04:01'),(2540,9,'simple','n31151579-white-Small size',0,0,'2019-03-07 14:34:35','2019-04-15 09:04:01'),(2541,9,'simple','n31151579-white-Medium size',0,0,'2019-03-07 14:34:39','2019-04-15 09:04:01'),(2542,9,'configurable','n31151579',1,1,'2019-03-07 14:34:43','2019-03-08 08:54:18');
/*!40000 ALTER TABLE `catalog_product_entity` ENABLE KEYS */;
UNLOCK TABLES;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_after_insert AFTER INSERT ON catalog_product_entity FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_after_update AFTER UPDATE ON catalog_product_entity FOR EACH ROW
BEGIN
IF (NEW.`entity_id` <=> OLD.`entity_id` OR NEW.`attribute_set_id` <=> OLD.`attribute_set_id` OR NEW.`type_id` <=> OLD.`type_id` OR NEW.`sku` <=> OLD.`sku` OR NEW.`has_options` <=> OLD.`has_options` OR NEW.`required_options` <=> OLD.`required_options` OR NEW.`created_at` <=> OLD.`created_at`) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NEW.`entity_id` <=> OLD.`entity_id` OR NEW.`attribute_set_id` <=> OLD.`attribute_set_id` OR NEW.`type_id` <=> OLD.`type_id` OR NEW.`sku` <=> OLD.`sku` OR NEW.`has_options` <=> OLD.`has_options` OR NEW.`required_options` <=> OLD.`required_options` OR NEW.`created_at` <=> OLD.`created_at`) THEN INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_after_delete AFTER DELETE ON catalog_product_entity FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

--
-- Table structure for table `catalog_product_entity_datetime`
--

DROP TABLE IF EXISTS `catalog_product_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_entity_datetime` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_PRODUCT_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_DTIME_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Datetime Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_datetime`
--

LOCK TABLES `catalog_product_entity_datetime` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_datetime` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_datetime` VALUES (1,79,0,18,'2018-11-30 00:00:00'),(2,79,0,22,'2018-11-30 00:00:00'),(3,79,0,30,'2018-11-30 00:00:00'),(4,79,0,45,'2018-11-30 00:00:00'),(5,79,0,57,'2018-11-30 00:00:00'),(6,79,0,190,'2018-11-30 00:00:00'),(7,79,0,191,'2018-11-30 00:00:00'),(8,79,0,192,'2018-11-30 00:00:00'),(9,79,0,193,'2018-11-30 00:00:00'),(10,79,0,203,'2018-11-30 00:00:00'),(11,79,0,204,'2018-11-30 00:00:00'),(12,79,0,205,'2018-11-30 00:00:00'),(13,79,0,206,'2018-11-30 00:00:00'),(14,79,0,228,'2018-11-30 00:00:00'),(15,79,0,229,'2018-11-30 00:00:00'),(16,79,0,230,'2018-11-30 00:00:00'),(17,79,0,272,'2018-11-30 00:00:00'),(18,79,0,273,'2018-11-30 00:00:00'),(19,79,0,274,'2018-11-30 00:00:00'),(20,79,0,275,'2018-11-30 00:00:00'),(21,79,0,276,'2018-11-30 00:00:00'),(22,79,0,312,'2018-11-30 00:00:00'),(23,79,0,313,'2018-11-30 00:00:00'),(24,79,0,314,'2018-11-30 00:00:00'),(25,79,0,315,'2018-11-30 00:00:00'),(26,79,0,1238,'2018-11-30 00:00:00'),(27,79,0,1239,'2018-11-30 00:00:00'),(28,79,0,1240,'2018-11-30 00:00:00'),(29,79,0,1241,'2018-11-30 00:00:00'),(30,79,0,1242,'2018-11-30 00:00:00'),(31,79,0,1243,'2018-11-30 00:00:00'),(32,79,0,1244,'2018-11-30 00:00:00'),(33,79,0,1245,'2018-11-30 00:00:00'),(34,79,0,1246,'2018-11-30 00:00:00'),(35,79,0,1257,'2018-11-30 00:00:00'),(36,79,0,1258,'2018-11-30 00:00:00'),(37,79,0,1259,'2018-11-30 00:00:00'),(38,79,0,1260,'2018-11-30 00:00:00'),(39,79,0,1280,'2018-11-30 00:00:00'),(40,79,0,1281,'2018-11-30 00:00:00'),(41,79,0,1282,'2018-11-30 00:00:00'),(42,79,0,1283,'2018-11-30 00:00:00'),(43,79,0,1293,'2018-11-30 00:00:00'),(44,79,0,1294,'2018-11-30 00:00:00'),(45,79,0,1295,'2018-11-30 00:00:00');
/*!40000 ALTER TABLE `catalog_product_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_datetime_after_insert AFTER INSERT ON catalog_product_entity_datetime FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_datetime_after_update AFTER UPDATE ON catalog_product_entity_datetime FOR EACH ROW
BEGIN
IF (NEW.`value_id` <=> OLD.`value_id` OR NEW.`attribute_id` <=> OLD.`attribute_id` OR NEW.`store_id` <=> OLD.`store_id` OR NEW.`entity_id` <=> OLD.`entity_id` OR NEW.`value` <=> OLD.`value`) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_datetime_after_delete AFTER DELETE ON catalog_product_entity_datetime FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

--
-- Table structure for table `catalog_product_entity_decimal`
--

DROP TABLE IF EXISTS `catalog_product_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_entity_decimal` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` decimal(20,6) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_PRODUCT_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_DEC_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2590 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Decimal Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_decimal`
--

LOCK TABLES `catalog_product_entity_decimal` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_decimal` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_decimal` VALUES (16,82,0,15,0.000000),(20,78,0,18,19.900000),(25,78,0,22,19.900000),(34,78,0,30,49.900000),(50,82,0,44,0.000000),(52,78,0,45,12.900000),(67,78,0,57,14.900000),(106,77,0,81,NULL),(183,77,0,129,59.900000),(184,77,0,132,59.990000),(185,77,0,133,59.990000),(186,77,0,134,59.990000),(187,77,0,135,79.900000),(188,77,0,136,79.900000),(189,77,0,137,79.900000),(190,77,0,138,89.900000),(191,77,0,139,89.900000),(192,77,0,140,89.900000),(193,77,0,141,89.900000),(194,77,0,142,89.900000),(195,77,0,143,89.900000),(196,77,0,144,89.900000),(197,77,0,145,89.900000),(198,77,0,146,89.900000),(199,77,0,147,89.900000),(200,77,0,148,89.900000),(201,77,0,149,89.900000),(202,77,0,150,102.000000),(203,77,0,151,102.000000),(204,77,0,152,102.000000),(205,77,0,153,59.990000),(206,77,0,154,59.990000),(207,77,0,155,59.990000),(208,77,0,156,59.990000),(209,77,0,157,105.000000),(210,77,0,158,105.000000),(211,77,0,159,105.000000),(212,77,0,160,120.000000),(213,77,0,161,120.000000),(214,77,0,162,120.000000),(215,77,0,163,129.950000),(216,77,0,164,129.950000),(217,77,0,165,129.950000),(218,77,0,166,119.000000),(219,77,0,167,119.000000),(220,77,0,168,119.000000),(221,77,0,169,119.000000),(222,77,0,170,109.900000),(223,77,0,171,109.900000),(224,77,0,172,99.950000),(225,77,0,173,99.950000),(226,77,0,174,99.950000),(227,77,0,175,69.900000),(228,82,0,175,0.000000),(229,77,0,176,69.900000),(230,82,0,176,0.000000),(231,77,0,177,69.900000),(232,82,0,177,0.000000),(233,77,0,178,69.900000),(234,82,0,178,0.000000),(235,77,0,179,69.900000),(236,82,0,179,0.000000),(237,77,0,180,119.950000),(238,77,0,181,119.950000),(239,77,0,182,119.950000),(240,77,0,183,119.950000),(241,77,0,184,119.950000),(242,77,0,185,119.950000),(243,77,0,186,99.900000),(244,77,0,187,99.900000),(245,77,0,188,99.900000),(246,77,0,189,99.900000),(247,77,0,190,59.950000),(248,78,0,190,19.900000),(249,77,0,191,59.950000),(250,78,0,191,19.900000),(251,77,0,192,59.950000),(252,78,0,192,19.900000),(253,77,0,193,59.950000),(254,78,0,193,19.900000),(255,77,0,194,89.950000),(256,77,0,195,89.950000),(257,77,0,196,89.950000),(258,77,0,197,79.900000),(259,77,0,198,79.900000),(260,77,0,199,79.900000),(261,77,0,200,79.900000),(262,77,0,201,79.900000),(263,77,0,202,79.900000),(264,77,0,203,69.990000),(265,78,0,203,19.900000),(266,77,0,204,69.990000),(267,78,0,204,19.900000),(268,77,0,205,69.990000),(269,78,0,205,19.900000),(270,77,0,206,69.990000),(271,78,0,206,19.900000),(272,77,0,207,250.000000),(273,77,0,208,250.000000),(274,77,0,209,250.000000),(275,77,0,210,127.000000),(276,77,0,211,127.000000),(277,77,0,212,127.000000),(278,77,0,213,127.000000),(279,77,0,214,127.000000),(280,77,0,215,127.000000),(281,77,0,216,127.000000),(282,77,0,217,65.950000),(283,77,0,218,65.950000),(284,77,0,219,65.950000),(285,77,0,220,65.950000),(286,77,0,221,65.950000),(287,77,0,222,128.000000),(288,77,0,223,128.000000),(289,77,0,224,128.000000),(290,77,0,225,128.000000),(291,77,0,226,128.000000),(292,77,0,227,128.000000),(293,77,0,228,240.000000),(294,78,0,228,49.900000),(295,77,0,229,240.000000),(296,78,0,229,49.900000),(297,77,0,230,240.000000),(298,78,0,230,49.900000),(299,77,0,231,250.000000),(300,77,0,232,250.000000),(301,77,0,233,235.000000),(302,77,0,234,235.000000),(303,77,0,235,69.950000),(304,77,0,236,69.950000),(305,77,0,237,69.950000),(306,77,0,238,69.950000),(307,77,0,239,99.900000),(308,77,0,240,99.900000),(309,77,0,241,99.900000),(310,77,0,242,99.900000),(311,77,0,243,109.900000),(312,77,0,244,109.900000),(313,77,0,245,109.900000),(314,77,0,246,109.900000),(315,77,0,247,109.900000),(316,77,0,248,109.900000),(317,77,0,249,99.900000),(318,77,0,250,99.900000),(319,77,0,251,99.900000),(320,77,0,252,99.900000),(321,77,0,253,99.900000),(322,77,0,254,99.900000),(323,77,0,255,99.900000),(324,77,0,256,99.900000),(325,77,0,257,199.900000),(326,77,0,258,199.900000),(327,77,0,259,199.900000),(328,77,0,260,199.900000),(329,77,0,261,99.900000),(330,77,0,262,99.900000),(331,77,0,263,99.900000),(332,77,0,264,99.900000),(333,77,0,265,185.000000),(334,77,0,266,185.000000),(335,77,0,267,185.000000),(336,77,0,268,185.000000),(337,77,0,269,185.000000),(338,77,0,270,280.000000),(339,82,0,270,0.000000),(340,77,0,271,280.000000),(341,82,0,271,0.000000),(342,77,0,272,79.950000),(343,78,0,272,12.900000),(344,77,0,273,79.950000),(345,78,0,273,12.900000),(346,77,0,274,79.950000),(347,78,0,274,12.900000),(348,77,0,275,79.950000),(349,78,0,275,12.900000),(350,77,0,276,79.950000),(351,78,0,276,12.900000),(352,77,0,277,79.900000),(353,77,0,278,79.900000),(354,77,0,279,79.900000),(355,77,0,280,79.900000),(356,77,0,281,89.900000),(357,77,0,282,89.900000),(358,77,0,283,89.900000),(359,77,0,284,89.900000),(360,77,0,285,209.000000),(361,77,0,286,209.000000),(362,77,0,287,99.900000),(363,77,0,288,99.900000),(364,77,0,289,99.900000),(365,77,0,290,89.900000),(366,77,0,291,89.900000),(367,77,0,292,89.900000),(368,77,0,293,89.900000),(369,77,0,294,89.900000),(370,77,0,295,89.900000),(371,77,0,296,74.900000),(372,77,0,297,74.900000),(373,77,0,298,74.900000),(374,77,0,299,74.900000),(375,77,0,300,198.000000),(376,77,0,301,198.000000),(377,77,0,302,198.000000),(378,77,0,303,198.000000),(379,77,0,304,198.000000),(380,77,0,305,198.000000),(381,77,0,306,102.000000),(382,77,0,307,102.000000),(383,77,0,308,102.000000),(384,77,0,309,119.000000),(385,77,0,310,119.000000),(386,77,0,311,119.000000),(387,77,0,312,89.990000),(388,78,0,312,14.900000),(389,77,0,313,89.990000),(390,78,0,313,14.900000),(391,77,0,314,89.990000),(392,78,0,314,14.900000),(393,77,0,315,89.990000),(394,78,0,315,14.900000),(395,77,0,316,140.000000),(396,77,0,317,140.000000),(397,77,0,318,239.000000),(398,77,0,319,239.000000),(399,77,0,320,239.000000),(400,77,0,321,239.000000),(401,77,0,322,99.900000),(402,77,0,323,99.900000),(403,77,0,324,99.900000),(404,77,0,325,99.900000),(405,77,0,326,99.900000),(406,77,0,327,99.900000),(407,77,0,328,111.000000),(408,77,0,329,111.000000),(409,77,0,330,89.990000),(410,77,0,331,89.990000),(411,77,0,332,89.990000),(412,77,0,333,89.990000),(413,77,0,334,139.000000),(414,77,0,335,139.000000),(415,77,0,336,139.000000),(416,77,0,337,139.000000),(417,77,0,338,283.000000),(418,77,0,339,283.000000),(419,77,0,340,283.000000),(420,77,0,341,99.900000),(421,77,0,342,99.900000),(422,77,0,343,99.900000),(423,77,0,344,99.900000),(424,77,0,345,99.900000),(425,77,0,346,169.000000),(426,77,0,347,169.000000),(427,77,0,348,169.000000),(428,77,0,349,169.000000),(429,77,0,350,99.900000),(430,77,0,351,99.900000),(431,77,0,352,99.900000),(432,77,0,353,99.900000),(433,77,0,354,229.000000),(434,77,0,355,229.000000),(435,77,0,356,229.000000),(436,77,0,357,229.000000),(437,77,0,358,84.900000),(438,77,0,359,84.900000),(439,77,0,360,84.900000),(440,77,0,361,84.900000),(441,77,0,362,84.900000),(442,77,0,363,84.900000),(443,77,0,364,159.000000),(444,77,0,365,159.000000),(445,77,0,366,159.000000),(446,77,0,367,159.000000),(447,77,0,368,77.900000),(448,77,0,369,77.900000),(449,77,0,370,77.900000),(450,77,0,371,77.900000),(451,77,0,372,77.900000),(452,77,0,373,77.900000),(453,77,0,374,77.900000),(454,77,0,375,77.900000),(455,77,0,376,250.000000),(456,77,0,377,250.000000),(457,77,0,378,250.000000),(458,77,0,379,250.000000),(459,77,0,380,89.900000),(460,77,0,381,89.900000),(461,77,0,382,89.900000),(462,77,0,383,89.900000),(463,77,0,384,89.900000),(464,77,0,385,99.900000),(465,77,0,386,99.900000),(466,77,0,387,99.900000),(467,77,0,388,99.900000),(468,77,0,389,99.900000),(469,77,0,390,99.900000),(470,77,0,391,79.900000),(471,77,0,392,79.900000),(472,77,0,393,79.900000),(473,77,0,394,109.900000),(474,77,0,395,109.900000),(475,77,0,396,109.900000),(476,77,0,397,74.900000),(477,77,0,398,74.900000),(478,77,0,399,74.900000),(479,77,0,400,74.900000),(480,77,0,401,109.900000),(481,77,0,402,109.900000),(482,77,0,403,109.900000),(483,77,0,404,109.900000),(484,77,0,405,109.900000),(485,77,0,406,109.900000),(486,77,0,407,84.900000),(487,77,0,408,84.900000),(488,77,0,409,84.900000),(489,77,0,410,84.900000),(490,77,0,411,84.900000),(491,77,0,412,69.900000),(492,77,0,413,69.900000),(493,77,0,414,69.900000),(494,77,0,415,69.900000),(495,77,0,416,99.900000),(496,77,0,417,99.900000),(497,77,0,418,99.900000),(498,77,0,419,99.900000),(499,77,0,420,99.900000),(500,77,0,421,99.900000),(501,77,0,422,99.900000),(502,77,0,423,99.900000),(503,77,0,424,99.900000),(504,77,0,425,99.900000),(505,77,0,426,89.900000),(506,77,0,427,89.900000),(507,77,0,428,89.900000),(508,77,0,429,99.900000),(509,77,0,430,99.900000),(510,77,0,431,99.900000),(511,77,0,432,99.900000),(512,77,0,433,99.900000),(513,77,0,434,99.900000),(514,77,0,435,99.900000),(515,77,0,436,99.900000),(516,77,0,437,99.900000),(517,77,0,438,99.900000),(518,77,0,439,99.900000),(519,77,0,440,89.900000),(520,77,0,441,89.900000),(521,77,0,442,89.900000),(522,77,0,443,79.900000),(523,77,0,444,79.900000),(524,77,0,445,79.900000),(525,77,0,446,79.900000),(526,77,0,447,79.900000),(527,77,0,448,79.900000),(528,77,0,449,79.900000),(529,77,0,450,79.900000),(530,77,0,451,79.900000),(531,77,0,452,79.900000),(532,77,0,453,79.900000),(533,77,0,454,79.900000),(534,77,0,455,109.900000),(535,77,0,456,109.900000),(536,77,0,457,109.900000),(537,77,0,458,139.000000),(538,77,0,459,139.000000),(539,77,0,460,139.000000),(540,77,0,461,102.000000),(541,77,0,462,102.000000),(542,77,0,463,102.000000),(543,77,0,464,102.000000),(544,77,0,465,109.900000),(545,77,0,466,109.900000),(546,77,0,467,109.900000),(547,77,0,468,74.900000),(548,77,0,469,74.900000),(549,77,0,470,74.900000),(550,77,0,471,99.900000),(551,77,0,472,99.900000),(552,77,0,473,99.900000),(553,77,0,474,99.900000),(554,77,0,475,69.900000),(555,77,0,476,69.900000),(556,77,0,477,69.900000),(557,77,0,478,66.900000),(558,77,0,479,66.900000),(559,77,0,480,66.900000),(560,77,0,481,99.900000),(561,77,0,482,99.900000),(562,77,0,483,99.900000),(563,77,0,484,99.900000),(564,77,0,485,89.900000),(565,77,0,486,89.900000),(566,77,0,487,89.900000),(567,77,0,488,69.900000),(568,77,0,489,69.900000),(569,77,0,490,69.900000),(570,77,0,491,84.900000),(571,77,0,492,84.900000),(572,77,0,493,84.900000),(573,77,0,494,84.900000),(574,77,0,495,169.900000),(575,77,0,496,169.900000),(576,77,0,497,169.900000),(577,77,0,501,89.900000),(578,77,0,502,89.900000),(579,77,0,503,89.900000),(580,77,0,504,109.900000),(581,77,0,505,109.900000),(582,77,0,506,109.900000),(583,77,0,507,109.900000),(584,77,0,508,109.900000),(585,77,0,509,109.900000),(586,77,0,510,69.900000),(587,77,0,511,69.900000),(588,77,0,512,69.900000),(589,77,0,513,79.900000),(590,77,0,514,79.900000),(591,77,0,515,79.900000),(592,77,0,516,64.000000),(593,77,0,517,109.900000),(594,77,0,518,109.900000),(595,77,0,519,109.900000),(596,77,0,520,109.900000),(597,77,0,521,109.900000),(598,77,0,522,109.900000),(599,77,0,523,89.900000),(600,77,0,524,69.900000),(601,77,0,525,69.900000),(602,77,0,526,69.900000),(603,77,0,527,89.900000),(604,77,0,528,109.900000),(605,77,0,529,109.900000),(606,77,0,530,109.900000),(607,77,0,531,102.000000),(608,77,0,532,119.000000),(609,77,0,533,119.000000),(610,77,0,534,119.000000),(611,77,0,535,119.000000),(612,77,0,536,119.000000),(613,77,0,537,119.000000),(614,77,0,538,109.900000),(615,77,0,539,109.900000),(616,77,0,540,109.900000),(617,77,0,541,89.900000),(618,77,0,542,79.900000),(619,77,0,543,79.900000),(620,77,0,544,219.000000),(621,77,0,545,169.000000),(622,77,0,546,258.000000),(623,77,0,547,299.000000),(624,77,0,548,299.000000),(625,77,0,549,79.900000),(626,77,0,550,79.900000),(627,77,0,551,79.900000),(628,77,0,552,79.900000),(629,77,0,553,79.900000),(630,77,0,554,79.900000),(631,77,0,555,79.900000),(632,77,0,556,79.900000),(633,77,0,557,79.900000),(634,77,0,558,79.900000),(635,77,0,559,79.900000),(636,77,0,560,79.900000),(637,77,0,561,79.900000),(638,77,0,562,79.900000),(639,77,0,563,79.900000),(640,77,0,564,79.900000),(641,77,0,565,79.900000),(642,77,0,566,79.900000),(643,77,0,567,79.900000),(644,77,0,568,79.900000),(645,77,0,569,79.900000),(646,77,0,570,79.900000),(647,77,0,571,79.900000),(648,77,0,572,79.900000),(649,77,0,573,79.900000),(650,77,0,574,79.900000),(651,77,0,575,79.900000),(652,77,0,576,79.900000),(653,77,0,577,79.900000),(654,77,0,578,79.900000),(655,77,0,579,89.900000),(656,77,0,580,89.900000),(657,77,0,581,89.900000),(658,77,0,582,89.900000),(659,77,0,583,89.900000),(660,77,0,584,89.900000),(661,77,0,585,89.900000),(662,77,0,586,89.900000),(663,77,0,587,89.900000),(664,77,0,588,89.900000),(665,77,0,589,89.900000),(666,77,0,590,89.900000),(667,77,0,591,89.900000),(668,77,0,592,89.900000),(669,77,0,593,89.900000),(670,77,0,594,89.900000),(671,77,0,595,89.900000),(672,77,0,596,89.900000),(673,77,0,597,89.900000),(674,77,0,598,89.900000),(675,77,0,599,89.900000),(676,77,0,600,89.900000),(677,77,0,601,89.900000),(678,77,0,602,89.900000),(679,77,0,603,89.900000),(680,77,0,604,89.900000),(681,77,0,605,89.900000),(682,77,0,606,89.900000),(683,77,0,607,89.900000),(684,77,0,608,89.900000),(685,77,0,609,89.900000),(686,77,0,610,89.900000),(687,77,0,611,89.900000),(688,77,0,612,89.900000),(689,77,0,613,89.900000),(690,77,0,614,109.900000),(691,77,0,615,109.900000),(692,77,0,616,109.900000),(693,77,0,617,109.900000),(694,77,0,618,109.900000),(695,77,0,619,109.900000),(696,77,0,620,109.900000),(697,77,0,621,109.900000),(698,77,0,622,109.900000),(699,77,0,623,109.900000),(700,77,0,624,109.900000),(701,77,0,625,109.900000),(702,77,0,626,109.900000),(703,77,0,627,109.900000),(704,77,0,628,109.900000),(705,77,0,629,109.900000),(706,77,0,630,109.900000),(707,77,0,631,109.900000),(708,77,0,632,109.900000),(709,77,0,633,109.900000),(710,77,0,634,109.900000),(711,77,0,635,109.900000),(712,77,0,636,109.900000),(713,77,0,637,109.900000),(714,77,0,638,109.900000),(715,77,0,639,109.900000),(716,77,0,640,109.900000),(717,77,0,641,109.900000),(718,77,0,642,109.900000),(719,77,0,643,109.900000),(720,77,0,644,128.000000),(721,77,0,645,128.000000),(722,77,0,646,128.000000),(723,77,0,647,128.000000),(724,77,0,648,128.000000),(725,77,0,649,128.000000),(726,77,0,650,128.000000),(727,77,0,651,128.000000),(728,77,0,652,128.000000),(729,77,0,653,128.000000),(730,77,0,654,128.000000),(731,77,0,655,128.000000),(732,77,0,656,128.000000),(733,77,0,657,128.000000),(734,77,0,658,128.000000),(735,77,0,659,128.000000),(736,77,0,660,128.000000),(737,77,0,661,128.000000),(738,77,0,662,128.000000),(739,77,0,663,128.000000),(740,77,0,664,128.000000),(741,77,0,665,128.000000),(742,77,0,666,128.000000),(743,77,0,667,128.000000),(744,77,0,668,128.000000),(745,77,0,669,128.000000),(746,77,0,670,128.000000),(747,77,0,671,128.000000),(748,77,0,672,128.000000),(749,77,0,673,128.000000),(750,77,0,674,69.900000),(751,82,0,674,0.000000),(752,77,0,675,69.900000),(753,82,0,675,0.000000),(754,77,0,676,69.900000),(755,82,0,676,0.000000),(756,77,0,677,69.900000),(757,82,0,677,0.000000),(758,77,0,678,69.900000),(759,82,0,678,0.000000),(760,77,0,679,69.900000),(761,82,0,679,0.000000),(762,77,0,680,69.900000),(763,82,0,680,0.000000),(764,77,0,681,69.900000),(765,82,0,681,0.000000),(766,77,0,682,69.900000),(767,82,0,682,0.000000),(768,77,0,683,69.900000),(769,82,0,683,0.000000),(770,77,0,684,69.900000),(771,82,0,684,0.000000),(772,77,0,685,69.900000),(773,82,0,685,0.000000),(774,77,0,686,69.900000),(775,82,0,686,0.000000),(776,77,0,687,69.900000),(777,82,0,687,0.000000),(778,77,0,688,69.900000),(779,82,0,688,0.000000),(780,77,0,689,69.900000),(781,82,0,689,0.000000),(782,77,0,690,69.900000),(783,82,0,690,0.000000),(784,77,0,691,69.900000),(785,82,0,691,0.000000),(786,77,0,692,69.900000),(787,82,0,692,0.000000),(788,77,0,693,69.900000),(789,82,0,693,0.000000),(790,77,0,694,69.900000),(791,82,0,694,0.000000),(792,77,0,695,69.900000),(793,82,0,695,0.000000),(794,77,0,696,69.900000),(795,82,0,696,0.000000),(796,77,0,697,69.900000),(797,82,0,697,0.000000),(798,77,0,698,69.900000),(799,82,0,698,0.000000),(800,77,0,699,102.000000),(801,77,0,700,102.000000),(802,77,0,701,102.000000),(803,77,0,702,102.000000),(804,77,0,703,102.000000),(805,77,0,704,102.000000),(806,77,0,705,102.000000),(807,77,0,706,102.000000),(808,77,0,707,102.000000),(809,77,0,708,102.000000),(810,77,0,709,102.000000),(811,77,0,710,102.000000),(812,77,0,711,102.000000),(813,77,0,712,102.000000),(814,77,0,713,102.000000),(815,77,0,714,79.900000),(816,77,0,715,79.900000),(817,77,0,716,79.900000),(818,77,0,717,79.900000),(819,77,0,718,79.900000),(820,77,0,719,79.900000),(821,77,0,720,79.900000),(822,77,0,721,79.900000),(823,77,0,722,79.900000),(824,77,0,723,79.900000),(825,77,0,724,79.900000),(826,77,0,725,79.900000),(827,77,0,726,79.900000),(828,77,0,727,79.900000),(829,77,0,728,79.900000),(830,77,0,729,79.900000),(831,77,0,730,79.900000),(832,77,0,731,79.900000),(833,77,0,732,79.900000),(834,77,0,733,79.900000),(835,77,0,734,120.000000),(836,77,0,735,120.000000),(837,77,0,736,120.000000),(838,77,0,737,120.000000),(839,77,0,738,120.000000),(840,77,0,739,120.000000),(841,77,0,740,120.000000),(842,77,0,741,120.000000),(843,77,0,742,120.000000),(844,77,0,743,120.000000),(845,77,0,744,120.000000),(846,77,0,745,120.000000),(847,77,0,746,120.000000),(848,77,0,747,120.000000),(849,77,0,748,120.000000),(850,77,0,749,89.900000),(851,77,0,750,89.900000),(852,77,0,751,89.900000),(853,77,0,752,89.900000),(854,77,0,753,89.900000),(855,77,0,754,89.900000),(856,77,0,755,89.900000),(857,77,0,756,89.900000),(858,77,0,757,89.900000),(859,77,0,758,89.900000),(860,77,0,759,89.900000),(861,77,0,760,89.900000),(862,77,0,761,89.900000),(863,77,0,762,89.900000),(864,77,0,763,89.900000),(865,77,0,764,89.900000),(866,77,0,765,89.900000),(867,77,0,766,89.900000),(868,77,0,767,89.900000),(869,77,0,768,89.900000),(870,77,0,769,74.900000),(871,77,0,770,74.900000),(872,77,0,771,74.900000),(873,77,0,772,74.900000),(874,77,0,773,74.900000),(875,77,0,774,74.900000),(876,77,0,775,74.900000),(877,77,0,776,74.900000),(878,77,0,777,74.900000),(879,77,0,778,74.900000),(880,77,0,779,74.900000),(881,77,0,780,74.900000),(882,77,0,781,74.900000),(883,77,0,782,74.900000),(884,77,0,783,74.900000),(885,77,0,784,74.900000),(886,77,0,785,74.900000),(887,77,0,786,74.900000),(888,77,0,787,74.900000),(889,77,0,788,74.900000),(890,77,0,789,99.900000),(891,77,0,790,99.900000),(892,77,0,791,99.900000),(893,77,0,792,99.900000),(894,77,0,793,99.900000),(895,77,0,794,99.900000),(896,77,0,795,99.900000),(897,77,0,796,99.900000),(898,77,0,797,99.900000),(899,77,0,798,99.900000),(900,77,0,799,99.900000),(901,77,0,800,99.900000),(902,77,0,801,99.900000),(903,77,0,802,99.900000),(904,77,0,803,99.900000),(905,77,0,804,99.900000),(906,77,0,805,99.900000),(907,77,0,806,99.900000),(908,77,0,807,99.900000),(909,77,0,808,99.900000),(910,77,0,809,99.900000),(911,77,0,810,99.900000),(912,77,0,811,99.900000),(913,77,0,812,99.900000),(914,77,0,813,99.900000),(915,77,0,814,99.900000),(916,77,0,815,99.900000),(917,77,0,816,99.900000),(918,77,0,817,99.900000),(919,77,0,818,99.900000),(920,77,0,819,99.900000),(921,77,0,820,99.900000),(922,77,0,821,99.900000),(923,77,0,822,99.900000),(924,77,0,823,99.900000),(925,77,0,824,99.900000),(926,77,0,825,99.900000),(927,77,0,826,99.900000),(928,77,0,827,99.900000),(929,77,0,828,99.900000),(930,77,0,829,99.900000),(931,77,0,830,99.900000),(932,77,0,831,99.900000),(933,77,0,832,99.900000),(934,77,0,833,99.900000),(935,77,0,834,99.900000),(936,77,0,835,99.900000),(937,77,0,836,99.900000),(938,77,0,837,99.900000),(939,77,0,838,99.900000),(940,77,0,839,99.900000),(941,77,0,840,99.900000),(942,77,0,841,99.900000),(943,77,0,842,99.900000),(944,77,0,843,99.900000),(945,77,0,844,99.900000),(946,77,0,845,99.900000),(947,77,0,846,99.900000),(948,77,0,847,99.900000),(949,77,0,848,99.900000),(950,77,0,849,99.900000),(951,77,0,850,99.900000),(952,77,0,851,99.900000),(953,77,0,852,99.900000),(954,77,0,853,99.900000),(955,77,0,854,99.900000),(956,77,0,855,99.900000),(957,77,0,856,99.900000),(958,77,0,857,99.900000),(959,77,0,858,99.900000),(960,77,0,859,99.900000),(961,77,0,860,99.900000),(962,77,0,861,99.900000),(963,77,0,862,99.900000),(964,77,0,863,99.900000),(965,77,0,864,99.900000),(966,77,0,865,99.900000),(967,77,0,866,99.900000),(968,77,0,867,99.900000),(969,77,0,868,99.900000),(970,77,0,869,99.900000),(971,77,0,870,99.900000),(972,77,0,871,99.900000),(973,77,0,872,99.900000),(974,77,0,873,99.900000),(975,77,0,874,99.900000),(976,77,0,875,99.900000),(977,77,0,876,99.900000),(978,77,0,877,99.900000),(979,77,0,878,99.900000),(980,77,0,879,99.900000),(981,77,0,880,99.900000),(982,77,0,881,99.900000),(983,77,0,882,99.900000),(984,77,0,883,99.900000),(985,77,0,884,99.900000),(986,77,0,885,99.900000),(987,77,0,886,99.900000),(988,77,0,887,99.900000),(989,77,0,888,99.900000),(990,77,0,889,99.900000),(991,77,0,890,99.900000),(992,77,0,891,99.900000),(993,77,0,892,99.900000),(994,77,0,893,99.900000),(995,77,0,894,99.900000),(996,77,0,895,99.900000),(997,77,0,896,99.900000),(998,77,0,897,99.900000),(999,77,0,898,99.900000),(1000,77,0,899,99.900000),(1001,77,0,900,99.900000),(1002,77,0,901,99.900000),(1003,77,0,902,99.900000),(1004,77,0,903,99.900000),(1005,77,0,904,84.900000),(1006,77,0,905,84.900000),(1007,77,0,906,84.900000),(1008,77,0,907,84.900000),(1009,77,0,908,84.900000),(1010,77,0,909,84.900000),(1011,77,0,910,84.900000),(1012,77,0,911,84.900000),(1013,77,0,912,84.900000),(1014,77,0,913,84.900000),(1015,77,0,914,84.900000),(1016,77,0,915,84.900000),(1025,77,0,924,69.900000),(1026,77,0,925,69.900000),(1027,77,0,926,69.900000),(1028,77,0,927,69.900000),(1029,77,0,928,69.900000),(1030,77,0,929,69.900000),(1031,77,0,930,69.900000),(1032,77,0,931,69.900000),(1033,77,0,932,69.900000),(1034,77,0,933,74.900000),(1035,77,0,934,74.900000),(1036,77,0,935,74.900000),(1037,77,0,936,74.900000),(1038,77,0,937,74.900000),(1039,77,0,938,74.900000),(1040,77,0,939,74.900000),(1041,77,0,940,74.900000),(1042,77,0,941,74.900000),(1043,77,0,942,79.900000),(1044,77,0,943,79.900000),(1045,77,0,944,79.900000),(1046,77,0,945,79.900000),(1047,77,0,946,79.900000),(1048,77,0,947,79.900000),(1049,77,0,948,185.000000),(1050,77,0,949,185.000000),(1051,77,0,950,185.000000),(1052,77,0,951,185.000000),(1053,77,0,952,185.000000),(1054,77,0,953,185.000000),(1055,77,0,954,185.000000),(1056,77,0,955,185.000000),(1057,77,0,956,185.000000),(1058,77,0,957,185.000000),(1059,82,0,267,NULL),(1060,82,0,265,NULL),(1061,82,0,266,NULL),(1062,82,0,269,NULL),(1063,82,0,268,NULL),(1064,77,0,958,59.990000),(1065,77,0,959,59.990000),(1078,77,0,972,127.000000),(1079,77,0,973,127.000000),(1080,77,0,974,127.000000),(1081,77,0,975,127.000000),(1082,77,0,976,127.000000),(1083,77,0,977,127.000000),(1084,77,0,978,127.000000),(1085,77,0,979,127.000000),(1086,77,0,980,127.000000),(1087,77,0,981,127.000000),(1088,77,0,982,127.000000),(1089,77,0,983,127.000000),(1090,77,0,984,127.000000),(1091,77,0,985,127.000000),(1092,77,0,986,119.950000),(1093,77,0,987,119.950000),(1094,77,0,988,119.950000),(1095,77,0,989,119.950000),(1096,77,0,990,119.950000),(1097,77,0,991,119.950000),(1098,77,0,992,119.950000),(1099,77,0,993,119.950000),(1100,77,0,994,119.950000),(1101,77,0,995,119.950000),(1102,77,0,996,119.950000),(1103,77,0,997,119.950000),(1104,77,0,998,119.950000),(1105,77,0,999,119.950000),(1106,77,0,1000,119.950000),(1107,77,0,1001,119.950000),(1108,77,0,1002,119.950000),(1109,77,0,1003,119.950000),(1110,77,0,1004,89.900000),(1111,77,0,1005,89.900000),(1112,77,0,1006,89.900000),(1113,77,0,1007,89.900000),(1114,77,0,1008,89.900000),(1115,77,0,1009,89.900000),(1116,77,0,1010,89.900000),(1117,77,0,1011,89.900000),(1118,77,0,1012,89.900000),(1119,77,0,1013,89.900000),(1120,77,0,1014,59.990000),(1121,77,0,1015,59.990000),(1122,77,0,1016,59.990000),(1123,77,0,1017,59.990000),(1124,77,0,1018,59.990000),(1125,77,0,1019,59.990000),(1126,77,0,1020,59.990000),(1127,77,0,1021,59.990000),(1128,77,0,1022,59.990000),(1129,77,0,1023,79.900000),(1130,77,0,1024,79.900000),(1131,77,0,1025,79.900000),(1132,77,0,1026,79.900000),(1133,77,0,1027,79.900000),(1134,77,0,1028,79.900000),(1135,77,0,1029,102.000000),(1136,77,0,1030,102.000000),(1137,77,0,1031,102.000000),(1138,77,0,1032,102.000000),(1139,77,0,1033,102.000000),(1140,77,0,1034,102.000000),(1141,77,0,1035,169.000000),(1142,77,0,1036,169.000000),(1143,77,0,1037,169.000000),(1144,77,0,1038,169.000000),(1145,77,0,1039,169.000000),(1146,77,0,1040,169.000000),(1147,77,0,1041,169.000000),(1148,77,0,1042,169.000000),(1149,77,0,1043,89.900000),(1150,77,0,1044,89.900000),(1151,77,0,1045,89.900000),(1152,77,0,1046,89.900000),(1153,77,0,1047,89.900000),(1154,77,0,1048,89.900000),(1155,77,0,1049,89.990000),(1156,77,0,1050,89.990000),(1157,77,0,1051,89.990000),(1158,77,0,1052,89.990000),(1159,77,0,1053,89.990000),(1160,77,0,1054,89.990000),(1161,77,0,1055,89.990000),(1162,77,0,1056,89.990000),(1163,77,0,1057,109.900000),(1164,77,0,1058,109.900000),(1165,77,0,1059,109.900000),(1166,77,0,1060,109.900000),(1167,77,0,1061,109.900000),(1168,77,0,1062,109.900000),(1169,77,0,1063,139.000000),(1170,77,0,1064,139.000000),(1171,77,0,1065,139.000000),(1172,77,0,1066,139.000000),(1173,77,0,1067,139.000000),(1174,77,0,1068,139.000000),(1175,77,0,1069,89.900000),(1176,77,0,1070,89.900000),(1177,77,0,1071,89.900000),(1178,77,0,1072,89.900000),(1179,77,0,1073,89.900000),(1180,77,0,1074,89.900000),(1181,77,0,1075,69.900000),(1182,77,0,1076,69.900000),(1183,77,0,1077,69.900000),(1184,77,0,1078,69.900000),(1185,77,0,1079,69.900000),(1186,77,0,1080,69.900000),(1187,77,0,1081,69.900000),(1188,77,0,1082,69.900000),(1189,77,0,1083,99.900000),(1190,77,0,1084,99.900000),(1191,77,0,1085,99.900000),(1192,77,0,1086,99.900000),(1193,77,0,1087,99.900000),(1194,77,0,1088,89.900000),(1195,77,0,1089,89.900000),(1196,77,0,1090,89.900000),(1197,77,0,1091,69.900000),(1198,77,0,1092,69.900000),(1199,77,0,1093,69.900000),(1200,77,0,1094,69.900000),(1201,77,0,1095,89.900000),(1202,77,0,1096,89.900000),(1203,77,0,1097,89.900000),(1204,77,0,1098,139.000000),(1205,77,0,1099,139.000000),(1206,77,0,1100,139.000000),(1207,77,0,1101,109.900000),(1208,77,0,1102,109.900000),(1209,77,0,1103,109.900000),(1210,77,0,1104,99.900000),(1211,77,0,1105,99.900000),(1212,77,0,1106,99.900000),(1213,77,0,1107,69.900000),(1214,77,0,1108,69.900000),(1215,77,0,1109,69.900000),(1216,77,0,1110,99.900000),(1217,77,0,1111,99.900000),(1218,77,0,1112,99.900000),(1219,77,0,1113,99.900000),(1220,77,0,1114,102.000000),(1221,77,0,1115,102.000000),(1222,77,0,1116,102.000000),(1223,77,0,1117,102.000000),(1224,77,0,1118,109.900000),(1225,77,0,1119,109.900000),(1226,77,0,1120,109.900000),(1227,77,0,1121,66.900000),(1228,77,0,1122,66.900000),(1229,77,0,1123,66.900000),(1230,77,0,1124,109.900000),(1231,77,0,1125,109.900000),(1232,77,0,1126,109.900000),(1233,77,0,1127,99.900000),(1234,77,0,1128,99.900000),(1235,77,0,1129,99.900000),(1236,77,0,1130,84.900000),(1237,77,0,1131,84.900000),(1238,77,0,1132,84.900000),(1239,77,0,1133,59.900000),(1240,77,0,1134,59.900000),(1241,77,0,131,59.900000),(1242,77,0,130,59.900000),(1243,77,0,1135,84.900000),(1244,77,0,1136,84.900000),(1245,77,0,1137,84.900000),(1246,77,0,1138,89.900000),(1247,77,0,1139,89.900000),(1248,77,0,1140,89.900000),(1249,82,0,503,NULL),(1250,77,0,1141,69.950000),(1251,77,0,1142,69.950000),(1252,77,0,1143,69.950000),(1253,77,0,1144,69.950000),(1254,77,0,1145,105.000000),(1255,77,0,1146,105.000000),(1256,77,0,1147,105.000000),(1257,77,0,1148,119.000000),(1258,77,0,1149,119.000000),(1259,77,0,1150,119.000000),(1260,77,0,1151,119.000000),(1261,77,0,1152,229.000000),(1262,77,0,1153,229.000000),(1263,77,0,1154,229.000000),(1264,77,0,1155,229.000000),(1265,77,0,1156,99.900000),(1266,77,0,1157,99.900000),(1267,77,0,1158,99.900000),(1268,77,0,1159,99.900000),(1269,77,0,1160,79.900000),(1270,77,0,1161,79.900000),(1271,77,0,1162,109.900000),(1272,77,0,1163,109.900000),(1273,77,0,1164,119.000000),(1274,77,0,1165,119.000000),(1275,77,0,1166,119.000000),(1276,77,0,1167,159.000000),(1277,77,0,1168,159.000000),(1278,77,0,1169,159.000000),(1279,77,0,1170,159.000000),(1280,77,0,1171,74.900000),(1281,77,0,1172,74.900000),(1282,77,0,1173,74.900000),(1283,77,0,1174,74.900000),(1284,77,0,1175,65.950000),(1285,77,0,1176,65.950000),(1286,77,0,1177,65.950000),(1287,77,0,1178,65.950000),(1288,77,0,1179,65.950000),(1289,77,0,1180,139.000000),(1290,77,0,1181,139.000000),(1291,77,0,1182,139.000000),(1292,77,0,1183,139.000000),(1293,77,0,1184,99.950000),(1294,77,0,1185,99.950000),(1295,77,0,1186,99.950000),(1296,77,0,1187,239.000000),(1297,77,0,1188,239.000000),(1298,77,0,1189,239.000000),(1299,77,0,1190,239.000000),(1300,77,0,1191,84.900000),(1301,77,0,1192,84.900000),(1302,77,0,1193,84.900000),(1303,77,0,1194,84.900000),(1304,77,0,1195,84.900000),(1305,82,0,410,NULL),(1306,82,0,411,NULL),(1307,77,0,1196,69.900000),(1308,77,0,1197,69.900000),(1309,77,0,1198,69.900000),(1310,77,0,1199,109.900000),(1311,77,0,1200,109.900000),(1312,77,0,1201,109.900000),(1313,77,0,1202,99.900000),(1314,77,0,1203,99.900000),(1315,77,0,1204,99.900000),(1316,77,0,499,99.900000),(1317,77,0,498,99.900000),(1318,77,0,500,99.900000),(1319,77,0,1205,109.900000),(1320,77,0,1206,109.900000),(1321,77,0,1207,109.900000),(1322,77,0,1208,109.900000),(1323,77,0,1209,109.900000),(1324,77,0,1210,109.900000),(1325,77,0,1211,169.900000),(1326,77,0,1212,169.900000),(1327,77,0,1213,169.900000),(1328,77,0,1214,89.900000),(1329,77,0,1215,89.900000),(1330,77,0,1216,89.900000),(1331,77,0,1217,89.900000),(1332,77,0,1218,89.900000),(1333,77,0,1219,89.950000),(1334,77,0,1220,89.950000),(1335,77,0,1221,89.950000),(1336,77,0,1222,198.000000),(1337,77,0,1223,198.000000),(1338,77,0,1224,198.000000),(1339,77,0,1225,198.000000),(1340,77,0,1226,198.000000),(1341,77,0,1227,198.000000),(1342,77,0,1228,89.900000),(1343,77,0,1229,89.900000),(1344,77,0,1230,89.900000),(1345,77,0,1231,119.000000),(1346,77,0,1232,119.000000),(1347,77,0,1233,119.000000),(1348,77,0,1234,199.900000),(1349,77,0,1235,199.900000),(1350,77,0,1236,199.900000),(1351,77,0,1237,199.900000),(1352,77,0,1238,59.950000),(1353,78,0,1238,19.900000),(1354,77,0,1239,59.950000),(1355,78,0,1239,19.900000),(1356,77,0,1240,59.950000),(1357,78,0,1240,19.900000),(1358,77,0,1241,59.950000),(1359,78,0,1241,19.900000),(1360,77,0,1242,79.950000),(1361,78,0,1242,12.900000),(1362,77,0,1243,79.950000),(1363,78,0,1243,12.900000),(1364,77,0,1244,79.950000),(1365,78,0,1244,12.900000),(1366,77,0,1245,79.950000),(1367,78,0,1245,12.900000),(1368,77,0,1246,79.950000),(1369,78,0,1246,12.900000),(1370,82,0,275,NULL),(1371,82,0,276,NULL),(1372,77,0,1247,99.900000),(1373,77,0,1248,99.900000),(1374,77,0,1249,99.900000),(1375,77,0,1250,99.900000),(1376,77,0,1251,99.900000),(1377,77,0,1252,99.900000),(1378,77,0,1253,99.900000),(1379,77,0,1254,99.900000),(1380,77,0,1255,99.900000),(1381,77,0,1256,99.900000),(1382,77,0,1257,89.990000),(1383,78,0,1257,14.900000),(1384,77,0,1258,89.990000),(1385,78,0,1258,14.900000),(1386,77,0,1259,89.990000),(1387,78,0,1259,14.900000),(1388,77,0,1260,89.990000),(1389,78,0,1260,14.900000),(1390,82,0,312,NULL),(1391,82,0,313,NULL),(1392,77,0,1261,99.900000),(1393,77,0,1262,99.900000),(1394,77,0,1263,99.900000),(1395,77,0,1264,99.900000),(1396,77,0,1265,99.900000),(1397,82,0,421,NULL),(1398,82,0,422,NULL),(1399,82,0,423,NULL),(1400,82,0,425,NULL),(1401,82,0,424,NULL),(1402,77,0,1266,79.900000),(1403,77,0,1267,79.900000),(1404,77,0,1268,79.900000),(1405,77,0,1269,79.900000),(1406,77,0,1270,79.900000),(1407,77,0,1271,79.900000),(1408,77,0,1272,99.900000),(1409,77,0,1273,99.900000),(1410,77,0,1274,99.900000),(1411,77,0,1275,99.900000),(1412,77,0,1276,99.900000),(1413,77,0,1277,99.900000),(1414,77,0,1278,99.900000),(1415,77,0,1279,99.900000),(1416,77,0,1280,69.990000),(1417,78,0,1280,19.900000),(1418,77,0,1281,69.990000),(1419,78,0,1281,19.900000),(1420,77,0,1282,69.990000),(1421,78,0,1282,19.900000),(1422,77,0,1283,69.990000),(1423,78,0,1283,19.900000),(1424,82,0,205,NULL),(1425,82,0,206,NULL),(1426,77,0,1284,119.000000),(1427,77,0,1285,119.000000),(1428,77,0,1286,119.000000),(1429,77,0,1287,99.900000),(1430,77,0,1288,99.900000),(1431,77,0,1289,99.900000),(1432,77,0,1290,129.950000),(1433,77,0,1291,129.950000),(1434,77,0,1292,129.950000),(1435,77,0,1293,240.000000),(1436,78,0,1293,49.900000),(1437,77,0,1294,240.000000),(1438,78,0,1294,49.900000),(1439,77,0,1295,240.000000),(1440,78,0,1295,49.900000),(1441,77,0,1296,79.900000),(1442,77,0,1297,79.900000),(1443,77,0,1298,79.900000),(1444,77,0,1299,69.900000),(1445,77,0,1300,69.900000),(1446,77,0,1301,69.900000),(1447,77,0,1302,109.900000),(1448,77,0,1303,109.900000),(1449,77,0,1304,109.900000),(1450,77,0,1305,250.000000),(1451,77,0,1306,250.000000),(1452,77,0,1307,250.000000),(1453,77,0,1308,89.900000),(1454,77,0,1309,140.000000),(1455,77,0,1310,140.000000),(1456,77,0,1311,299.000000),(1457,77,0,1312,250.000000),(1458,77,0,1313,250.000000),(1459,82,0,232,NULL),(1460,77,0,1314,299.000000),(1461,77,0,1315,209.000000),(1462,77,0,1316,209.000000),(1463,77,0,1317,258.000000),(1464,77,0,1318,169.000000),(1465,77,0,1319,219.000000),(1466,77,0,1320,89.900000),(1467,77,0,1321,102.000000),(1468,77,0,1322,283.000000),(1469,77,0,1323,283.000000),(1470,77,0,1324,283.000000),(1471,77,0,1325,250.000000),(1472,77,0,1326,250.000000),(1473,77,0,1327,235.000000),(1474,77,0,1328,235.000000),(1475,77,0,1329,111.000000),(1476,77,0,1330,111.000000),(1477,77,0,1331,64.000000),(1478,77,0,1332,89.900000),(1479,77,0,1333,59.990000),(1480,77,0,1334,59.990000),(1481,77,0,1335,59.990000),(1482,77,0,1336,59.990000),(1483,77,0,1337,59.990000),(1484,77,0,1338,59.990000),(1485,77,0,1339,59.990000),(1486,77,0,1340,59.990000),(1487,77,0,1341,59.990000),(1488,77,0,1343,280.000000),(1489,82,0,1343,0.000000),(1490,77,0,1344,280.000000),(1491,82,0,1344,0.000000),(1492,77,0,1345,109.900000),(1493,77,0,1346,109.900000),(1494,77,0,1347,109.900000),(1495,77,0,1348,109.900000),(1496,77,0,1349,109.900000),(1497,77,0,1350,109.900000),(1498,77,0,1352,79.900000),(1499,77,0,1353,79.900000),(1500,77,0,1354,79.900000),(1501,77,0,1355,79.900000),(1502,77,0,1356,79.900000),(1503,77,0,1357,79.900000),(1504,77,0,1358,79.900000),(1505,77,0,1359,79.900000),(1506,77,0,1360,79.900000),(1507,77,0,1361,79.900000),(1508,77,0,1362,79.900000),(1509,77,0,1363,79.900000),(1510,77,0,1364,79.900000),(1511,77,0,1365,79.900000),(1512,77,0,1366,79.900000),(1513,77,0,1367,79.900000),(1514,77,0,1368,79.900000),(1515,77,0,1369,79.900000),(1516,77,0,1370,79.900000),(1517,77,0,1371,79.900000),(1518,77,0,1372,79.900000),(1519,77,0,1373,79.900000),(1520,77,0,1374,79.900000),(1521,77,0,1375,79.900000),(1522,77,0,1376,79.900000),(1523,77,0,1377,79.900000),(1524,77,0,1378,79.900000),(1525,77,0,1379,79.900000),(1526,77,0,1380,79.900000),(1527,77,0,1381,79.900000),(1528,77,0,1383,79.900000),(1529,77,0,1384,79.900000),(1530,77,0,1385,79.900000),(1531,77,0,1386,79.900000),(1532,77,0,1387,79.900000),(1533,77,0,1388,79.900000),(1534,77,0,1389,79.900000),(1535,77,0,1390,79.900000),(1536,77,0,1391,79.900000),(1537,77,0,1392,79.900000),(1538,77,0,1393,79.900000),(1539,77,0,1394,79.900000),(1540,77,0,1395,79.900000),(1541,77,0,1396,79.900000),(1542,77,0,1397,79.900000),(1543,77,0,1398,79.900000),(1544,77,0,1399,79.900000),(1545,77,0,1400,79.900000),(1546,77,0,1401,79.900000),(1547,77,0,1402,79.900000),(1548,77,0,1403,79.900000),(1549,77,0,1404,79.900000),(1550,77,0,1405,79.900000),(1551,77,0,1406,79.900000),(1552,77,0,1407,79.900000),(1553,77,0,1408,79.900000),(1554,77,0,1409,79.900000),(1555,77,0,1410,79.900000),(1556,77,0,1411,79.900000),(1557,77,0,1412,79.900000),(1558,77,0,1414,109.900000),(1559,77,0,1415,109.900000),(1560,77,0,1416,109.900000),(1561,77,0,1417,109.900000),(1562,77,0,1418,109.900000),(1563,77,0,1419,109.900000),(1564,77,0,1420,89.900000),(1565,77,0,1421,89.900000),(1566,77,0,1422,89.900000),(1567,77,0,1423,89.900000),(1568,77,0,1424,89.900000),(1569,77,0,1425,89.900000),(1570,77,0,1426,89.900000),(1571,77,0,1427,89.900000),(1572,77,0,1428,89.900000),(1573,77,0,1429,89.900000),(1574,77,0,1430,89.900000),(1575,77,0,1431,89.900000),(1576,77,0,1432,89.900000),(1577,77,0,1433,89.900000),(1578,77,0,1434,89.900000),(1579,77,0,1435,89.900000),(1580,77,0,1436,89.900000),(1581,77,0,1437,89.900000),(1582,77,0,1438,89.900000),(1583,77,0,1439,89.900000),(1584,77,0,1440,89.900000),(1585,77,0,1441,89.900000),(1586,77,0,1442,89.900000),(1587,77,0,1443,89.900000),(1588,77,0,1444,89.900000),(1589,77,0,1445,89.900000),(1590,77,0,1446,89.900000),(1591,77,0,1447,89.900000),(1592,77,0,1448,89.900000),(1593,77,0,1449,89.900000),(1594,77,0,1450,89.900000),(1595,77,0,1451,89.900000),(1596,77,0,1452,89.900000),(1597,77,0,1453,89.900000),(1598,77,0,1454,89.900000),(1599,77,0,1456,102.000000),(1600,77,0,1457,102.000000),(1601,77,0,1458,102.000000),(1602,77,0,1459,102.000000),(1603,77,0,1460,102.000000),(1604,77,0,1461,102.000000),(1605,77,0,1462,102.000000),(1606,77,0,1463,102.000000),(1607,77,0,1465,109.900000),(1608,77,0,1466,109.900000),(1609,77,0,1467,109.900000),(1610,77,0,1468,109.900000),(1611,77,0,1469,109.900000),(1612,77,0,1470,109.900000),(1613,77,0,1471,109.900000),(1614,77,0,1472,109.900000),(1615,77,0,1473,109.900000),(1616,77,0,1474,109.900000),(1617,77,0,1475,109.900000),(1618,77,0,1476,109.900000),(1619,77,0,1477,109.900000),(1620,77,0,1478,109.900000),(1621,77,0,1479,109.900000),(1622,77,0,1480,109.900000),(1623,77,0,1481,109.900000),(1624,77,0,1482,109.900000),(1625,77,0,1483,109.900000),(1626,77,0,1484,109.900000),(1627,77,0,1485,109.900000),(1628,77,0,1486,109.900000),(1629,77,0,1487,109.900000),(1630,77,0,1488,109.900000),(1631,77,0,1489,109.900000),(1632,77,0,1490,109.900000),(1633,77,0,1491,109.900000),(1634,77,0,1492,109.900000),(1635,77,0,1493,109.900000),(1636,77,0,1494,109.900000),(1637,82,0,1414,NULL),(1638,82,0,1415,NULL),(1639,82,0,1416,NULL),(1640,82,0,1417,NULL),(1641,82,0,1418,NULL),(1642,82,0,1419,NULL),(1643,77,0,1496,128.000000),(1644,77,0,1497,128.000000),(1645,77,0,1498,128.000000),(1646,77,0,1499,128.000000),(1647,77,0,1500,128.000000),(1648,77,0,1501,128.000000),(1649,77,0,1502,128.000000),(1650,77,0,1503,128.000000),(1651,77,0,1504,128.000000),(1652,77,0,1505,128.000000),(1653,77,0,1506,128.000000),(1654,77,0,1507,128.000000),(1655,77,0,1508,128.000000),(1656,77,0,1509,128.000000),(1657,77,0,1510,128.000000),(1658,77,0,1511,128.000000),(1659,77,0,1512,128.000000),(1660,77,0,1513,128.000000),(1661,77,0,1514,128.000000),(1662,77,0,1515,128.000000),(1663,77,0,1516,128.000000),(1664,77,0,1517,128.000000),(1665,77,0,1518,128.000000),(1666,77,0,1519,128.000000),(1667,77,0,1520,128.000000),(1668,77,0,1521,128.000000),(1669,77,0,1522,128.000000),(1670,77,0,1523,128.000000),(1671,77,0,1524,128.000000),(1672,77,0,1525,128.000000),(1673,77,0,1527,99.900000),(1674,77,0,1528,99.900000),(1675,77,0,1529,99.900000),(1676,77,0,1530,99.900000),(1677,77,0,1531,99.900000),(1678,77,0,1532,99.900000),(1679,77,0,1533,99.900000),(1680,77,0,1534,99.900000),(1681,77,0,1536,69.900000),(1682,77,0,1537,69.900000),(1683,77,0,1538,69.900000),(1684,77,0,1539,69.900000),(1685,77,0,1540,69.900000),(1686,77,0,1541,69.900000),(1687,77,0,1542,69.900000),(1688,77,0,1543,69.900000),(1689,77,0,1544,69.900000),(1690,77,0,1545,69.900000),(1691,77,0,1546,69.900000),(1692,77,0,1547,69.900000),(1693,77,0,1548,69.900000),(1694,77,0,1549,69.900000),(1695,77,0,1550,69.900000),(1696,77,0,1551,69.900000),(1697,77,0,1552,69.900000),(1698,77,0,1553,69.900000),(1699,77,0,1554,69.900000),(1700,77,0,1555,69.900000),(1701,77,0,1556,69.900000),(1702,77,0,1557,69.900000),(1703,77,0,1558,69.900000),(1704,77,0,1559,69.900000),(1705,77,0,1560,69.900000),(1706,77,0,1562,69.900000),(1707,77,0,1563,69.900000),(1708,77,0,1564,69.900000),(1709,77,0,1565,69.900000),(1710,77,0,1566,69.900000),(1711,77,0,1567,69.900000),(1712,77,0,1569,99.900000),(1713,77,0,1570,99.900000),(1714,77,0,1571,99.900000),(1715,77,0,1572,99.900000),(1716,77,0,1573,79.900000),(1717,77,0,1574,79.900000),(1718,77,0,1575,99.900000),(1719,77,0,1576,79.900000),(1720,77,0,1577,79.900000),(1721,77,0,1578,79.900000),(1722,77,0,1579,99.900000),(1723,77,0,1580,79.900000),(1724,77,0,1581,79.900000),(1725,77,0,1582,79.900000),(1726,77,0,1584,79.900000),(1727,77,0,1585,79.900000),(1728,77,0,1586,79.900000),(1729,77,0,1587,79.900000),(1730,77,0,1588,79.900000),(1731,77,0,1589,79.900000),(1732,77,0,1590,79.900000),(1733,77,0,1591,79.900000),(1734,77,0,1592,79.900000),(1735,77,0,1593,79.900000),(1736,77,0,1594,79.900000),(1737,77,0,1595,79.900000),(1739,77,0,1598,89.900000),(1740,77,0,1599,89.900000),(1741,77,0,1600,89.900000),(1742,77,0,1601,89.900000),(1743,77,0,1602,89.900000),(1744,77,0,1603,89.900000),(1745,77,0,1605,102.000000),(1746,77,0,1606,102.000000),(1747,77,0,1607,102.000000),(1748,77,0,1608,102.000000),(1749,77,0,1609,102.000000),(1750,77,0,1610,102.000000),(1751,77,0,1611,102.000000),(1752,77,0,1612,102.000000),(1753,77,0,1613,102.000000),(1754,77,0,1614,102.000000),(1755,77,0,1615,102.000000),(1756,77,0,1616,102.000000),(1757,77,0,1617,102.000000),(1758,77,0,1618,102.000000),(1759,77,0,1619,102.000000),(1760,77,0,1620,99.900000),(1761,77,0,1621,99.900000),(1762,77,0,1622,99.900000),(1763,77,0,1623,99.900000),(1764,77,0,1624,99.900000),(1765,77,0,1625,99.900000),(1766,77,0,1626,99.900000),(1767,77,0,1627,99.900000),(1768,77,0,1628,99.900000),(1769,77,0,1629,99.900000),(1770,77,0,1631,120.000000),(1771,77,0,1632,120.000000),(1772,77,0,1633,120.000000),(1773,77,0,1634,120.000000),(1774,77,0,1635,120.000000),(1775,77,0,1636,120.000000),(1776,77,0,1637,120.000000),(1777,77,0,1638,120.000000),(1778,77,0,1639,120.000000),(1779,77,0,1640,120.000000),(1780,77,0,1641,120.000000),(1781,77,0,1642,120.000000),(1782,77,0,1644,69.900000),(1783,77,0,1645,69.900000),(1784,77,0,1646,69.900000),(1785,77,0,1647,69.900000),(1786,77,0,1648,69.900000),(1787,77,0,1649,69.900000),(1788,77,0,1650,69.900000),(1789,77,0,1651,69.900000),(1790,77,0,1652,69.900000),(1791,77,0,1653,69.900000),(1792,77,0,1654,69.900000),(1793,77,0,1655,69.900000),(1794,77,0,1657,89.900000),(1795,77,0,1658,89.900000),(1796,77,0,1659,89.900000),(1797,77,0,1660,89.900000),(1798,77,0,1661,89.900000),(1799,77,0,1662,89.900000),(1800,77,0,1663,89.900000),(1801,77,0,1664,89.900000),(1802,77,0,1665,89.900000),(1803,77,0,1666,89.900000),(1804,77,0,1667,89.900000),(1805,77,0,1668,89.900000),(1806,77,0,1669,89.900000),(1807,77,0,1670,89.900000),(1808,77,0,1671,89.900000),(1809,77,0,1672,89.900000),(1810,77,0,1673,89.900000),(1811,77,0,1674,89.900000),(1812,77,0,1675,89.900000),(1813,77,0,1676,89.900000),(1814,77,0,1678,74.900000),(1815,77,0,1679,74.900000),(1816,77,0,1680,74.900000),(1817,77,0,1681,74.900000),(1818,77,0,1682,74.900000),(1819,77,0,1683,74.900000),(1820,77,0,1684,74.900000),(1821,77,0,1685,74.900000),(1822,77,0,1686,74.900000),(1823,77,0,1687,74.900000),(1824,77,0,1688,74.900000),(1825,77,0,1689,74.900000),(1826,77,0,1690,74.900000),(1828,77,0,1692,74.900000),(1829,77,0,1693,74.900000),(1830,77,0,1694,74.900000),(1831,77,0,1695,74.900000),(1832,77,0,1696,74.900000),(1833,77,0,1697,74.900000),(1834,77,0,1698,74.900000),(1835,77,0,1700,89.900000),(1836,82,0,1700,0.000000),(1837,77,0,1701,89.900000),(1838,82,0,1701,0.000000),(1839,77,0,1702,89.900000),(1840,82,0,1702,0.000000),(1841,77,0,1703,89.900000),(1842,82,0,1703,0.000000),(1843,77,0,1704,89.900000),(1844,82,0,1704,0.000000),(1845,77,0,1705,89.900000),(1846,82,0,1705,0.000000),(1847,77,0,1706,89.900000),(1848,82,0,1706,0.000000),(1849,77,0,1707,89.900000),(1850,82,0,1707,0.000000),(1851,77,0,1708,89.900000),(1852,82,0,1708,0.000000),(1853,82,0,1709,0.000000),(1854,77,0,1710,99.900000),(1855,77,0,1711,99.900000),(1856,77,0,1712,99.900000),(1857,77,0,1713,99.900000),(1858,77,0,1714,99.900000),(1859,77,0,1715,99.900000),(1860,77,0,1716,99.900000),(1861,77,0,1717,99.900000),(1862,77,0,1718,99.900000),(1863,77,0,1719,99.900000),(1864,77,0,1720,99.900000),(1865,77,0,1721,99.900000),(1866,77,0,1722,99.900000),(1867,77,0,1723,99.900000),(1868,77,0,1724,99.900000),(1869,77,0,1726,139.000000),(1870,77,0,1727,139.000000),(1871,77,0,1728,139.000000),(1872,77,0,1729,139.000000),(1873,77,0,1730,139.000000),(1874,77,0,1731,139.000000),(1875,77,0,1732,139.000000),(1876,77,0,1733,139.000000),(1877,77,0,1734,139.000000),(1878,77,0,1736,99.900000),(1879,77,0,1737,99.900000),(1880,77,0,1738,99.900000),(1881,77,0,1739,99.900000),(1882,77,0,1740,99.900000),(1883,77,0,1741,99.900000),(1884,77,0,1742,99.900000),(1885,77,0,1743,99.900000),(1886,77,0,1744,99.900000),(1887,77,0,1745,99.900000),(1888,77,0,1746,99.900000),(1889,77,0,1747,99.900000),(1890,77,0,1748,99.900000),(1891,77,0,1749,99.900000),(1892,77,0,1750,99.900000),(1893,77,0,1751,99.900000),(1894,77,0,1752,99.900000),(1895,77,0,1753,99.900000),(1896,77,0,1754,99.900000),(1897,77,0,1755,99.900000),(1898,77,0,1757,99.900000),(1899,77,0,1758,99.900000),(1900,77,0,1759,99.900000),(1901,77,0,1760,99.900000),(1902,77,0,1761,99.900000),(1903,77,0,1762,99.900000),(1904,77,0,1763,99.900000),(1905,77,0,1764,99.900000),(1906,77,0,1765,99.900000),(1907,77,0,1766,99.900000),(1908,77,0,1767,99.900000),(1909,77,0,1768,99.900000),(1910,77,0,1769,99.900000),(1911,77,0,1770,99.900000),(1912,77,0,1771,99.900000),(1913,77,0,1772,99.900000),(1914,77,0,1773,99.900000),(1915,77,0,1774,99.900000),(1916,77,0,1775,99.900000),(1917,77,0,1776,99.900000),(1918,77,0,1778,109.900000),(1919,77,0,1779,109.900000),(1920,77,0,1780,109.900000),(1921,77,0,1781,109.900000),(1922,77,0,1782,109.900000),(1923,77,0,1783,109.900000),(1924,77,0,1784,109.900000),(1925,77,0,1785,109.900000),(1926,77,0,1786,109.900000),(1927,77,0,1788,99.900000),(1928,77,0,1789,99.900000),(1929,77,0,1790,99.900000),(1930,77,0,1791,99.900000),(1931,77,0,1792,99.900000),(1932,77,0,1793,99.900000),(1933,77,0,1794,99.900000),(1934,77,0,1795,99.900000),(1935,77,0,1796,99.900000),(1936,77,0,1797,99.900000),(1937,77,0,1798,99.900000),(1938,77,0,1799,99.900000),(1939,77,0,1800,99.900000),(1940,77,0,1801,99.900000),(1941,77,0,1802,99.900000),(1942,77,0,1803,99.900000),(1943,77,0,1804,99.900000),(1944,77,0,1805,99.900000),(1945,77,0,1806,99.900000),(1946,77,0,1807,99.900000),(1947,77,0,1809,89.990000),(1948,77,0,1810,89.990000),(1949,77,0,1811,89.990000),(1950,77,0,1812,89.990000),(1951,77,0,1813,89.990000),(1952,77,0,1814,89.990000),(1953,77,0,1815,89.990000),(1954,77,0,1816,89.990000),(1970,77,0,1834,89.900000),(1971,77,0,1835,89.900000),(1972,77,0,1836,89.900000),(1973,77,0,1837,89.900000),(1974,77,0,1838,89.900000),(1975,77,0,1839,89.900000),(1976,77,0,1841,99.900000),(1977,77,0,1842,99.900000),(1978,77,0,1843,99.900000),(1979,77,0,1844,99.900000),(1980,77,0,1845,99.900000),(1981,77,0,1846,99.900000),(1982,77,0,1847,99.900000),(1983,77,0,1848,99.900000),(1984,77,0,1849,99.900000),(1985,77,0,1850,99.900000),(1986,77,0,1851,99.900000),(1987,77,0,1852,99.900000),(1988,77,0,1853,99.900000),(1989,77,0,1854,99.900000),(1990,77,0,1855,99.900000),(1991,77,0,1856,99.900000),(1992,77,0,1857,99.900000),(1993,77,0,1858,99.900000),(1994,77,0,1859,99.900000),(1995,77,0,1860,99.900000),(1996,77,0,1861,99.900000),(1997,77,0,1862,99.900000),(1998,77,0,1863,99.900000),(1999,77,0,1864,99.900000),(2000,77,0,1865,99.900000),(2001,77,0,1867,169.000000),(2002,77,0,1868,169.000000),(2003,77,0,1869,169.000000),(2004,77,0,1870,169.000000),(2005,77,0,1871,169.000000),(2006,77,0,1872,169.000000),(2007,77,0,1873,169.000000),(2008,77,0,1874,169.000000),(2009,77,0,1876,84.900000),(2010,77,0,1877,84.900000),(2011,77,0,1878,84.900000),(2012,77,0,1879,84.900000),(2013,77,0,1880,84.900000),(2014,77,0,1881,84.900000),(2015,77,0,1882,84.900000),(2016,77,0,1883,84.900000),(2017,77,0,1884,84.900000),(2018,77,0,1885,84.900000),(2019,77,0,1886,84.900000),(2020,77,0,1887,84.900000),(2021,77,0,1889,69.900000),(2022,77,0,1890,69.900000),(2023,77,0,1891,69.900000),(2024,77,0,1893,74.900000),(2025,77,0,1894,74.900000),(2026,77,0,1895,74.900000),(2027,77,0,1897,102.000000),(2028,77,0,1898,102.000000),(2029,77,0,1899,102.000000),(2030,77,0,1900,102.000000),(2031,77,0,1901,102.000000),(2032,77,0,1902,102.000000),(2033,77,0,1904,79.900000),(2034,77,0,1905,79.900000),(2035,77,0,1906,79.900000),(2036,77,0,1907,79.900000),(2037,77,0,1908,79.900000),(2038,77,0,1909,79.900000),(2039,77,0,1911,59.990000),(2040,77,0,1912,59.990000),(2041,77,0,1913,59.990000),(2042,77,0,1914,59.990000),(2043,77,0,1915,59.990000),(2044,77,0,1916,59.990000),(2045,77,0,1917,59.990000),(2046,77,0,1918,59.990000),(2047,77,0,1919,59.990000),(2054,77,0,1928,185.000000),(2055,77,0,1929,185.000000),(2056,77,0,1930,185.000000),(2057,77,0,1931,185.000000),(2058,77,0,1932,185.000000),(2059,77,0,1933,185.000000),(2060,77,0,1934,185.000000),(2061,77,0,1935,185.000000),(2062,77,0,1936,185.000000),(2063,77,0,1937,185.000000),(2064,77,0,1938,185.000000),(2065,77,0,1939,185.000000),(2066,77,0,1940,185.000000),(2067,77,0,1941,185.000000),(2068,77,0,1942,185.000000),(2069,77,0,1944,59.990000),(2070,77,0,1945,59.990000),(2071,77,0,1947,127.000000),(2072,77,0,1948,127.000000),(2073,77,0,1949,127.000000),(2074,77,0,1950,127.000000),(2075,77,0,1951,127.000000),(2076,77,0,1952,127.000000),(2077,77,0,1953,127.000000),(2078,77,0,1954,127.000000),(2079,77,0,1955,127.000000),(2080,77,0,1956,127.000000),(2081,77,0,1957,127.000000),(2082,77,0,1958,127.000000),(2083,77,0,1959,127.000000),(2084,77,0,1960,127.000000),(2085,77,0,1962,89.900000),(2086,77,0,1963,89.900000),(2087,77,0,1964,89.900000),(2088,77,0,1965,89.900000),(2089,77,0,1966,89.900000),(2090,77,0,1967,89.900000),(2091,77,0,1968,89.900000),(2092,77,0,1969,89.900000),(2093,77,0,1970,89.900000),(2094,77,0,1971,89.900000),(2095,77,0,1973,119.950000),(2096,77,0,1974,119.950000),(2097,77,0,1975,119.950000),(2098,77,0,1976,119.950000),(2099,77,0,1977,119.950000),(2100,77,0,1978,119.950000),(2101,77,0,1979,119.950000),(2102,77,0,1980,119.950000),(2103,77,0,1981,119.950000),(2104,77,0,1982,119.950000),(2105,77,0,1983,119.950000),(2106,77,0,1984,119.950000),(2107,77,0,1985,119.950000),(2108,77,0,1986,119.950000),(2109,77,0,1987,119.950000),(2110,77,0,1988,119.950000),(2111,77,0,1989,119.950000),(2112,77,0,1990,119.950000),(2113,77,0,1992,59.900000),(2114,77,0,1993,59.900000),(2115,77,0,1994,59.900000),(2116,77,0,1995,59.900000),(2117,77,0,1997,280.000000),(2118,77,0,1998,280.000000),(2119,77,0,1999,280.000000),(2120,77,0,2000,280.000000),(2121,77,0,2002,69.950000),(2122,77,0,2003,69.950000),(2123,77,0,2004,69.950000),(2124,77,0,2005,69.950000),(2125,77,0,2006,69.950000),(2126,77,0,2007,69.950000),(2127,77,0,2008,69.950000),(2128,77,0,2009,69.950000),(2129,77,0,2011,105.000000),(2130,77,0,2012,105.000000),(2131,77,0,2013,105.000000),(2132,77,0,2014,105.000000),(2133,77,0,2015,105.000000),(2134,77,0,2016,105.000000),(2135,77,0,2018,89.900000),(2136,77,0,2019,89.900000),(2137,77,0,2021,119.000000),(2138,77,0,2022,119.000000),(2139,77,0,2023,119.000000),(2140,77,0,2024,119.000000),(2141,77,0,2025,119.000000),(2142,77,0,2026,119.000000),(2143,77,0,2027,119.000000),(2144,77,0,2028,119.000000),(2145,77,0,2030,64.000000),(2146,77,0,2031,64.000000),(2155,77,0,2042,99.900000),(2156,77,0,2043,99.900000),(2157,77,0,2044,99.900000),(2158,77,0,2045,99.900000),(2159,77,0,2046,99.900000),(2160,77,0,2047,99.900000),(2161,77,0,2048,99.900000),(2162,77,0,2049,99.900000),(2163,77,0,2051,111.000000),(2164,77,0,2052,111.000000),(2165,77,0,2053,111.000000),(2166,77,0,2054,111.000000),(2167,77,0,2056,79.900000),(2168,77,0,2057,79.900000),(2169,77,0,2058,79.900000),(2170,77,0,2059,79.900000),(2171,77,0,2061,109.900000),(2172,77,0,2062,109.900000),(2173,77,0,2063,109.900000),(2174,77,0,2064,109.900000),(2175,77,0,2066,119.000000),(2176,77,0,2067,119.000000),(2177,77,0,2068,119.000000),(2178,77,0,2069,119.000000),(2179,77,0,2070,119.000000),(2180,77,0,2071,119.000000),(2181,77,0,2073,235.000000),(2182,77,0,2074,235.000000),(2183,77,0,2075,235.000000),(2184,77,0,2076,235.000000),(2185,77,0,2078,159.000000),(2186,77,0,2079,159.000000),(2187,77,0,2080,159.000000),(2188,77,0,2081,159.000000),(2189,77,0,2082,159.000000),(2190,77,0,2083,159.000000),(2191,77,0,2085,250.000000),(2192,77,0,2086,250.000000),(2193,77,0,2087,250.000000),(2194,77,0,2088,250.000000),(2195,77,0,2090,74.900000),(2196,77,0,2091,74.900000),(2197,77,0,2092,74.900000),(2198,77,0,2093,74.900000),(2199,77,0,2094,74.900000),(2200,77,0,2095,74.900000),(2201,77,0,2096,74.900000),(2202,77,0,2097,74.900000),(2203,77,0,2099,283.000000),(2204,77,0,2100,283.000000),(2205,77,0,2101,283.000000),(2206,77,0,2102,283.000000),(2207,77,0,2103,283.000000),(2208,77,0,2104,283.000000),(2209,77,0,2106,65.950000),(2210,77,0,2107,65.950000),(2211,77,0,2108,65.950000),(2212,77,0,2109,65.950000),(2213,77,0,2110,65.950000),(2214,77,0,2111,65.950000),(2215,77,0,2112,65.950000),(2216,77,0,2113,65.950000),(2217,77,0,2114,65.950000),(2218,77,0,2115,65.950000),(2219,77,0,2117,109.900000),(2220,77,0,2118,109.900000),(2221,77,0,2119,109.900000),(2222,77,0,2120,109.900000),(2223,77,0,2121,109.900000),(2224,77,0,2122,109.900000),(2225,77,0,2124,139.000000),(2226,77,0,2125,139.000000),(2227,77,0,2126,139.000000),(2228,77,0,2127,139.000000),(2229,77,0,2128,139.000000),(2230,77,0,2129,139.000000),(2231,77,0,2130,139.000000),(2232,77,0,2131,139.000000),(2233,77,0,2133,102.000000),(2234,77,0,2134,102.000000),(2235,77,0,2136,89.900000),(2236,77,0,2137,89.900000),(2237,77,0,2139,99.950000),(2238,77,0,2140,99.950000),(2239,77,0,2141,99.950000),(2240,77,0,2142,99.950000),(2241,77,0,2143,99.950000),(2242,77,0,2144,99.950000),(2243,77,0,2146,169.000000),(2244,77,0,2147,169.000000),(2245,77,0,2148,239.000000),(2246,77,0,2150,239.000000),(2247,77,0,2151,239.000000),(2248,77,0,2152,239.000000),(2249,77,0,2153,239.000000),(2250,77,0,2154,239.000000),(2251,77,0,2155,239.000000),(2252,77,0,2156,239.000000),(2253,77,0,2158,84.900000),(2254,77,0,2159,84.900000),(2255,77,0,2160,84.900000),(2256,77,0,2161,84.900000),(2257,77,0,2162,84.900000),(2258,77,0,2163,84.900000),(2259,77,0,2164,84.900000),(2260,77,0,2165,84.900000),(2261,77,0,2166,84.900000),(2262,77,0,2167,84.900000),(2263,77,0,2169,258.000000),(2264,77,0,2170,258.000000),(2265,77,0,2172,69.900000),(2266,77,0,2173,69.900000),(2267,77,0,2174,69.900000),(2268,77,0,2175,69.900000),(2269,77,0,2176,69.900000),(2270,77,0,2177,69.900000),(2271,77,0,2179,109.900000),(2272,77,0,2180,109.900000),(2273,77,0,2181,109.900000),(2274,77,0,2182,109.900000),(2275,77,0,2183,109.900000),(2276,77,0,2184,109.900000),(2277,77,0,2186,209.000000),(2278,77,0,2187,209.000000),(2279,77,0,2188,209.000000),(2280,77,0,2189,209.000000),(2281,77,0,2191,99.900000),(2282,77,0,2192,99.900000),(2283,77,0,2193,99.900000),(2284,77,0,2194,99.900000),(2285,77,0,2195,99.900000),(2286,77,0,2196,99.900000),(2287,77,0,2198,109.900000),(2288,77,0,2199,109.900000),(2289,77,0,2200,109.900000),(2290,77,0,2201,109.900000),(2291,77,0,2202,109.900000),(2292,77,0,2203,109.900000),(2293,77,0,2205,299.000000),(2294,77,0,2206,299.000000),(2295,77,0,2208,250.000000),(2296,77,0,2209,250.000000),(2297,77,0,2210,250.000000),(2298,77,0,2211,250.000000),(2299,77,0,2213,109.900000),(2300,77,0,2214,109.900000),(2301,77,0,2215,109.900000),(2302,77,0,2216,109.900000),(2303,77,0,2217,109.900000),(2304,77,0,2218,109.900000),(2305,77,0,2220,299.000000),(2306,77,0,2221,299.000000),(2307,77,0,2223,169.900000),(2308,77,0,2224,169.900000),(2309,77,0,2225,169.900000),(2310,77,0,2226,169.900000),(2311,77,0,2227,169.900000),(2312,77,0,2228,169.900000),(2313,77,0,2230,140.000000),(2314,77,0,2231,140.000000),(2315,77,0,2232,140.000000),(2316,77,0,2233,140.000000),(2317,77,0,2235,89.900000),(2318,77,0,2236,89.900000),(2319,77,0,2237,89.900000),(2320,77,0,2238,89.900000),(2321,77,0,2239,89.900000),(2322,77,0,2240,89.900000),(2323,77,0,2241,89.900000),(2324,77,0,2242,89.900000),(2325,77,0,2243,89.900000),(2326,77,0,2244,89.900000),(2327,77,0,2246,89.950000),(2328,77,0,2247,89.950000),(2329,77,0,2248,89.950000),(2330,77,0,2249,89.950000),(2331,77,0,2250,89.950000),(2332,77,0,2251,89.950000),(2333,77,0,2253,89.900000),(2334,77,0,2254,89.900000),(2335,77,0,2256,198.000000),(2336,77,0,2257,198.000000),(2337,77,0,2258,198.000000),(2338,77,0,2259,198.000000),(2339,77,0,2260,198.000000),(2340,77,0,2261,198.000000),(2341,77,0,2262,198.000000),(2342,77,0,2263,198.000000),(2343,77,0,2264,198.000000),(2344,77,0,2265,198.000000),(2345,77,0,2266,198.000000),(2346,77,0,2267,198.000000),(2355,77,0,2278,89.900000),(2356,77,0,2279,89.900000),(2357,77,0,2280,89.900000),(2358,77,0,2281,89.900000),(2359,77,0,2282,89.900000),(2360,77,0,2283,89.900000),(2361,77,0,2285,119.000000),(2362,77,0,2286,119.000000),(2363,77,0,2287,119.000000),(2364,77,0,2288,119.000000),(2365,77,0,2289,119.000000),(2366,77,0,2290,119.000000),(2367,77,0,2292,199.900000),(2368,77,0,2293,199.900000),(2369,77,0,2294,199.900000),(2370,77,0,2295,199.900000),(2371,77,0,2296,199.900000),(2372,77,0,2297,199.900000),(2373,77,0,2298,199.900000),(2374,77,0,2299,199.900000),(2375,77,0,2301,59.950000),(2376,77,0,2302,59.950000),(2377,77,0,2303,59.950000),(2378,77,0,2304,59.950000),(2379,77,0,2305,59.950000),(2380,77,0,2306,59.950000),(2381,77,0,2307,59.950000),(2382,77,0,2308,59.950000),(2383,77,0,2310,79.950000),(2384,77,0,2311,79.950000),(2385,77,0,2312,79.950000),(2386,77,0,2313,79.950000),(2387,77,0,2314,79.950000),(2388,77,0,2315,79.950000),(2389,77,0,2316,79.950000),(2390,77,0,2317,79.950000),(2391,77,0,2318,79.950000),(2392,77,0,2319,79.950000),(2401,77,0,2330,66.900000),(2402,77,0,2331,66.900000),(2403,77,0,2332,66.900000),(2404,77,0,2333,66.900000),(2405,77,0,2334,66.900000),(2406,77,0,2335,66.900000),(2407,77,0,2337,109.900000),(2408,77,0,2338,109.900000),(2409,77,0,2339,109.900000),(2410,77,0,2340,109.900000),(2411,77,0,2341,109.900000),(2412,77,0,2342,109.900000),(2413,77,0,2344,250.000000),(2414,77,0,2345,250.000000),(2415,77,0,2346,250.000000),(2416,77,0,2347,250.000000),(2417,77,0,2348,250.000000),(2418,77,0,2349,250.000000),(2419,77,0,2351,109.900000),(2420,77,0,2352,109.900000),(2421,77,0,2353,109.900000),(2422,77,0,2354,109.900000),(2423,77,0,2355,109.900000),(2424,77,0,2356,109.900000),(2425,77,0,2358,229.000000),(2426,77,0,2359,229.000000),(2427,77,0,2360,229.000000),(2428,77,0,2361,229.000000),(2429,77,0,2362,229.000000),(2430,77,0,2363,229.000000),(2431,77,0,2364,229.000000),(2432,77,0,2365,229.000000),(2433,77,0,2367,69.900000),(2434,77,0,2368,69.900000),(2435,77,0,2369,69.900000),(2436,77,0,2370,69.900000),(2437,77,0,2371,69.900000),(2438,77,0,2372,69.900000),(2439,77,0,2374,99.900000),(2440,77,0,2375,99.900000),(2441,77,0,2376,99.900000),(2442,77,0,2377,99.900000),(2443,77,0,2378,99.900000),(2444,77,0,2379,99.900000),(2445,77,0,2380,99.900000),(2446,77,0,2381,99.900000),(2447,77,0,2382,99.900000),(2448,77,0,2383,99.900000),(2449,77,0,2384,99.900000),(2450,77,0,2385,99.900000),(2451,77,0,2386,99.900000),(2452,77,0,2387,99.900000),(2453,77,0,2388,99.900000),(2454,77,0,2390,79.900000),(2455,77,0,2391,79.900000),(2456,77,0,2392,79.900000),(2457,77,0,2393,79.900000),(2458,77,0,2394,79.900000),(2459,77,0,2395,79.900000),(2460,77,0,2397,49.900000),(2461,77,0,2398,49.900000),(2462,77,0,2399,49.900000),(2463,77,0,2400,49.900000),(2464,77,0,2401,49.900000),(2465,77,0,2402,49.900000),(2466,77,0,2404,129.950000),(2467,77,0,2405,129.950000),(2468,77,0,2406,129.950000),(2469,77,0,2407,129.950000),(2470,77,0,2408,129.950000),(2471,77,0,2409,129.950000),(2472,77,0,2411,89.900000),(2473,77,0,2412,89.900000),(2474,77,0,2413,89.900000),(2475,77,0,2414,89.900000),(2476,77,0,2415,89.900000),(2477,77,0,2416,89.900000),(2478,77,0,2418,99.900000),(2479,77,0,2419,99.900000),(2480,77,0,2420,99.900000),(2481,77,0,2421,99.900000),(2482,77,0,2422,99.900000),(2483,77,0,2423,99.900000),(2484,77,0,2425,119.000000),(2485,77,0,2426,119.000000),(2486,77,0,2427,119.000000),(2487,77,0,2428,119.000000),(2488,77,0,2429,119.000000),(2489,77,0,2430,119.000000),(2490,77,0,2432,19.900000),(2491,77,0,2433,19.900000),(2492,77,0,2434,19.900000),(2493,77,0,2435,19.900000),(2494,77,0,2436,19.900000),(2495,77,0,2437,19.900000),(2496,77,0,2438,19.900000),(2497,77,0,2439,19.900000),(2498,77,0,2441,99.900000),(2499,77,0,2442,99.900000),(2500,77,0,2443,99.900000),(2501,77,0,2444,99.900000),(2502,77,0,2445,99.900000),(2503,77,0,2446,99.900000),(2504,77,0,2447,99.900000),(2505,77,0,2448,99.900000),(2506,77,0,2449,99.900000),(2507,77,0,2450,99.900000),(2508,77,0,2451,99.900000),(2509,77,0,2452,99.900000),(2510,77,0,2453,99.900000),(2511,77,0,2454,99.900000),(2512,77,0,2455,99.900000),(2513,77,0,2457,99.900000),(2514,77,0,2458,99.900000),(2515,77,0,2459,99.900000),(2516,77,0,2460,99.900000),(2517,77,0,2461,99.900000),(2518,77,0,2462,99.900000),(2519,77,0,2463,99.900000),(2520,77,0,2464,99.900000),(2521,77,0,2466,79.900000),(2522,77,0,2467,79.900000),(2523,77,0,2468,79.900000),(2524,77,0,2469,79.900000),(2525,77,0,2470,79.900000),(2526,77,0,2471,79.900000),(2527,77,0,2472,79.900000),(2528,77,0,2473,79.900000),(2529,77,0,2474,79.900000),(2530,77,0,2475,79.900000),(2531,77,0,2476,79.900000),(2532,77,0,2477,79.900000),(2533,77,0,2479,14.900000),(2534,77,0,2480,14.900000),(2535,77,0,2481,14.900000),(2536,77,0,2482,14.900000),(2537,77,0,2483,14.900000),(2538,77,0,2484,14.900000),(2539,77,0,2485,14.900000),(2540,77,0,2486,14.900000),(2541,77,0,2488,99.900000),(2542,77,0,2489,99.900000),(2543,77,0,2490,99.900000),(2544,77,0,2491,99.900000),(2545,77,0,2492,99.900000),(2546,77,0,2493,99.900000),(2547,77,0,2494,99.900000),(2548,77,0,2495,99.900000),(2549,77,0,2496,99.900000),(2550,77,0,2497,99.900000),(2551,77,0,2498,99.900000),(2552,77,0,2499,99.900000),(2553,77,0,2501,99.900000),(2554,77,0,2502,99.900000),(2555,77,0,2503,99.900000),(2556,77,0,2504,99.900000),(2557,77,0,2505,99.900000),(2558,77,0,2506,99.900000),(2559,77,0,2508,84.900000),(2560,77,0,2509,84.900000),(2561,77,0,2510,84.900000),(2562,77,0,2511,84.900000),(2563,77,0,2512,84.900000),(2564,77,0,2513,84.900000),(2565,77,0,2514,84.900000),(2566,77,0,2515,84.900000),(2567,77,0,2516,84.900000),(2568,77,0,2518,79.900000),(2569,77,0,2519,79.900000),(2570,77,0,2520,79.900000),(2571,77,0,2521,79.900000),(2572,77,0,2522,79.900000),(2573,77,0,2523,79.900000),(2574,77,0,2525,99.900000),(2575,77,0,2526,99.900000),(2576,77,0,2527,99.900000),(2577,77,0,2528,99.900000),(2578,77,0,2529,99.900000),(2579,77,0,2530,99.900000),(2580,77,0,2531,99.900000),(2581,77,0,2532,99.900000),(2582,77,0,2534,77.900000),(2583,77,0,2535,77.900000),(2584,77,0,2536,77.900000),(2585,77,0,2537,77.900000),(2586,77,0,2538,77.900000),(2587,77,0,2539,77.900000),(2588,77,0,2540,77.900000),(2589,77,0,2541,77.900000);
/*!40000 ALTER TABLE `catalog_product_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_decimal_after_insert AFTER INSERT ON catalog_product_entity_decimal FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_decimal_after_update AFTER UPDATE ON catalog_product_entity_decimal FOR EACH ROW
BEGIN
IF (NEW.`value_id` <=> OLD.`value_id` OR NEW.`attribute_id` <=> OLD.`attribute_id` OR NEW.`store_id` <=> OLD.`store_id` OR NEW.`entity_id` <=> OLD.`entity_id` OR NEW.`value` <=> OLD.`value`) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_decimal_after_delete AFTER DELETE ON catalog_product_entity_decimal FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

--
-- Table structure for table `catalog_product_entity_gallery`
--

DROP TABLE IF EXISTS `catalog_product_entity_gallery`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_entity_gallery` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `position` int(11) NOT NULL DEFAULT '0' COMMENT 'Position',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_PRODUCT_ENTITY_GALLERY_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_GLR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_GLR_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Gallery Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_gallery`
--

LOCK TABLES `catalog_product_entity_gallery` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_gallery` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_entity_gallery` ENABLE KEYS */;
UNLOCK TABLES;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_gallery_after_insert AFTER INSERT ON catalog_product_entity_gallery FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_gallery_after_update AFTER UPDATE ON catalog_product_entity_gallery FOR EACH ROW
BEGIN
IF (NEW.`value_id` <=> OLD.`value_id` OR NEW.`attribute_id` <=> OLD.`attribute_id` OR NEW.`store_id` <=> OLD.`store_id` OR NEW.`entity_id` <=> OLD.`entity_id` OR NEW.`position` <=> OLD.`position` OR NEW.`value` <=> OLD.`value`) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_gallery_after_delete AFTER DELETE ON catalog_product_entity_gallery FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

--
-- Table structure for table `catalog_product_entity_int`
--

DROP TABLE IF EXISTS `catalog_product_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` int(11) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_PRODUCT_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_ENTITY_INT_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_INT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=13190 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Integer Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_int`
--

LOCK TABLES `catalog_product_entity_int` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_int` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_int` VALUES (1,97,0,1,2),(2,99,0,1,4),(3,134,0,1,0),(5,97,0,2,2),(6,99,0,2,4),(7,134,0,2,0),(9,97,0,3,2),(10,99,0,3,4),(11,134,0,3,0),(14,97,0,4,2),(15,99,0,4,4),(16,134,0,4,2),(19,97,0,5,2),(20,99,0,5,4),(21,134,0,5,2),(24,97,0,6,2),(25,99,0,6,4),(26,134,0,6,2),(29,97,0,7,2),(30,99,0,7,4),(31,134,0,7,2),(34,97,0,8,2),(35,99,0,8,4),(36,134,0,8,2),(39,97,0,9,2),(40,99,0,9,4),(41,134,0,9,2),(44,97,0,10,2),(45,99,0,10,4),(46,134,0,10,2),(49,97,0,11,2),(50,99,0,11,4),(51,134,0,11,2),(54,97,0,12,2),(55,99,0,12,4),(56,134,0,12,2),(69,97,0,15,2),(70,99,0,15,4),(71,134,0,15,2),(74,97,0,16,2),(75,99,0,16,4),(76,134,0,16,2),(79,97,0,17,2),(80,99,0,17,4),(81,134,0,17,2),(84,97,0,18,2),(85,99,0,18,4),(86,134,0,18,2),(89,97,0,19,2),(90,99,0,19,4),(91,134,0,19,2),(94,97,0,20,2),(95,99,0,20,4),(96,134,0,20,2),(104,97,0,22,2),(105,99,0,22,4),(106,134,0,22,2),(114,97,0,24,2),(115,99,0,24,4),(116,134,0,24,2),(119,97,0,25,2),(120,99,0,25,4),(121,134,0,25,2),(124,97,0,26,2),(125,99,0,26,4),(126,134,0,26,2),(139,97,0,29,2),(140,99,0,29,4),(141,134,0,29,2),(144,97,0,30,2),(145,99,0,30,4),(146,134,0,30,2),(149,97,0,31,2),(150,99,0,31,4),(151,134,0,31,2),(155,97,0,32,2),(156,99,0,32,4),(157,134,0,32,2),(160,97,0,33,2),(161,99,0,33,4),(162,134,0,33,2),(165,97,0,34,2),(166,99,0,34,4),(167,134,0,34,2),(170,97,0,35,2),(171,99,0,35,4),(172,134,0,35,2),(175,97,0,36,2),(176,99,0,36,4),(177,134,0,36,2),(185,97,0,38,2),(186,99,0,38,4),(187,134,0,38,2),(200,97,0,41,2),(201,99,0,41,4),(202,134,0,41,0),(205,97,0,42,2),(206,99,0,42,4),(207,134,0,42,2),(210,97,0,43,2),(211,99,0,43,4),(212,134,0,43,2),(215,97,0,44,2),(216,99,0,44,4),(217,134,0,44,2),(220,97,0,45,2),(221,99,0,45,4),(222,134,0,45,2),(225,97,0,46,2),(226,99,0,46,4),(227,134,0,46,2),(230,97,0,47,2),(231,99,0,47,4),(232,134,0,47,2),(235,97,0,48,2),(236,99,0,48,4),(237,134,0,48,2),(240,97,0,49,2),(241,99,0,49,4),(242,134,0,49,2),(245,97,0,50,2),(246,99,0,50,4),(247,115,0,50,1),(248,134,0,50,0),(250,97,0,51,2),(251,99,0,51,4),(252,134,0,51,2),(262,97,0,53,2),(263,99,0,53,4),(264,134,0,53,2),(267,97,0,54,2),(268,99,0,54,4),(269,134,0,54,2),(272,97,0,55,2),(273,99,0,55,4),(274,134,0,55,2),(277,97,0,56,2),(278,99,0,56,4),(279,115,0,56,1),(280,134,0,56,0),(284,97,0,57,2),(285,99,0,57,4),(286,134,0,57,2),(289,97,0,58,2),(290,99,0,58,4),(291,134,0,58,2),(295,97,0,59,2),(296,99,0,59,4),(297,115,0,59,1),(298,134,0,59,0),(302,97,0,60,2),(303,99,0,60,4),(304,115,0,60,1),(305,134,0,60,2),(309,97,0,61,2),(310,99,0,61,4),(311,115,0,61,1),(312,134,0,61,2),(319,97,0,63,2),(320,99,0,63,4),(321,134,0,63,2),(325,97,0,64,2),(326,99,0,64,4),(327,115,0,64,1),(328,134,0,64,0),(334,97,0,65,2),(335,99,0,65,4),(336,115,0,65,1),(337,134,0,65,2),(341,97,0,66,2),(342,99,0,66,4),(343,134,0,66,2),(351,97,0,68,2),(352,99,0,68,4),(353,134,0,68,2),(357,97,0,69,2),(358,99,0,69,4),(359,115,0,69,1),(360,134,0,69,2),(379,97,0,70,2),(380,99,0,70,4),(381,115,0,70,1),(382,134,0,70,0),(385,97,0,71,2),(386,99,0,71,4),(387,134,0,71,2),(391,97,0,72,2),(392,99,0,72,4),(393,115,0,72,1),(394,134,0,72,0),(398,97,0,73,2),(399,99,0,73,4),(400,115,0,73,1),(401,134,0,73,0),(404,97,0,74,2),(405,99,0,74,4),(406,134,0,74,2),(409,97,0,75,2),(410,99,0,75,4),(411,115,0,75,1),(412,134,0,75,0),(416,97,0,76,2),(417,99,0,76,4),(418,134,0,76,2),(422,97,0,77,2),(423,99,0,77,4),(424,115,0,77,1),(425,134,0,77,0),(429,97,0,78,2),(430,99,0,78,4),(431,134,0,78,2),(434,97,0,79,2),(435,99,0,79,4),(436,134,0,79,2),(439,97,0,80,2),(440,99,0,80,4),(441,115,0,80,1),(442,134,0,80,0),(446,97,0,81,2),(447,99,0,81,4),(448,115,0,81,1),(449,134,0,81,0),(458,97,0,82,2),(459,99,0,82,4),(460,115,0,82,1),(461,134,0,82,2),(464,97,0,83,2),(465,99,0,83,4),(466,115,0,83,1),(467,134,0,83,0),(472,97,0,84,2),(473,99,0,84,4),(474,115,0,84,1),(475,134,0,84,2),(480,97,0,85,2),(481,99,0,85,4),(482,134,0,85,2),(485,97,0,86,2),(486,99,0,86,4),(487,115,0,86,1),(488,134,0,86,2),(493,97,0,87,2),(494,99,0,87,4),(495,115,0,87,1),(496,134,0,87,0),(500,97,0,88,2),(501,99,0,88,4),(502,134,0,88,2),(505,97,0,89,2),(506,99,0,89,4),(507,115,0,89,1),(508,134,0,89,2),(522,97,0,91,2),(523,99,0,91,4),(524,115,0,91,1),(525,134,0,91,0),(529,97,0,92,2),(530,99,0,92,4),(531,115,0,92,1),(532,134,0,92,0),(536,97,0,93,2),(537,99,0,93,4),(538,115,0,93,1),(539,134,0,93,0),(548,97,0,95,2),(549,99,0,95,4),(550,115,0,95,1),(551,134,0,95,0),(559,97,0,97,2),(560,99,0,97,4),(561,134,0,97,2),(565,97,0,98,2),(566,99,0,98,4),(567,115,0,98,1),(568,134,0,98,0),(571,97,0,99,2),(572,99,0,99,4),(573,134,0,99,2),(577,97,0,100,2),(578,99,0,100,4),(579,115,0,100,1),(580,134,0,100,0),(585,97,0,101,2),(586,99,0,101,4),(587,134,0,101,0),(590,97,0,102,2),(591,99,0,102,4),(592,115,0,102,1),(593,134,0,102,0),(597,97,0,103,2),(598,99,0,103,4),(599,115,0,103,1),(600,134,0,103,0),(604,97,0,104,2),(605,99,0,104,4),(606,115,0,104,1),(607,134,0,104,0),(611,97,0,105,2),(612,99,0,105,4),(613,115,0,105,1),(614,134,0,105,0),(618,97,0,106,2),(619,99,0,106,4),(620,115,0,106,1),(621,134,0,106,0),(625,97,0,107,2),(626,99,0,107,4),(627,115,0,107,1),(628,134,0,107,0),(632,97,0,108,2),(633,99,0,108,4),(634,115,0,108,1),(635,134,0,108,0),(639,97,0,109,2),(640,99,0,109,4),(641,134,0,109,0),(644,97,0,110,2),(645,99,0,110,4),(646,115,0,110,1),(647,134,0,110,0),(651,97,0,111,2),(652,99,0,111,4),(653,134,0,111,2),(662,97,0,112,2),(663,99,0,112,4),(664,115,0,112,1),(665,134,0,112,0),(669,97,0,113,2),(670,99,0,113,4),(671,115,0,113,1),(672,134,0,113,0),(675,97,0,114,2),(676,99,0,114,4),(677,134,0,114,2),(682,97,0,115,2),(683,99,0,115,4),(684,115,0,115,1),(685,134,0,115,0),(689,97,0,116,2),(690,99,0,116,4),(691,134,0,116,2),(694,97,0,117,2),(695,99,0,117,4),(696,115,0,117,1),(697,134,0,117,0),(700,97,0,118,2),(701,99,0,118,4),(702,134,0,118,2),(705,97,0,119,2),(706,99,0,119,4),(707,134,0,119,2),(711,97,0,120,2),(712,99,0,120,4),(713,115,0,120,1),(714,134,0,120,2),(721,97,0,121,2),(722,99,0,121,4),(723,134,0,121,2),(726,97,0,122,2),(727,99,0,122,4),(728,115,0,122,1),(729,134,0,122,2),(734,97,0,123,2),(735,99,0,123,4),(736,115,0,123,1),(737,134,0,123,2),(742,208,0,65,NULL),(745,97,0,124,2),(746,99,0,124,4),(747,134,0,124,2),(750,97,0,125,2),(751,99,0,125,4),(752,134,0,125,2),(755,97,0,126,2),(756,99,0,126,4),(757,134,0,126,2),(761,97,0,127,2),(762,99,0,127,4),(763,134,0,127,2),(764,97,0,128,2),(765,99,0,128,4),(766,134,0,128,2),(771,208,0,128,NULL),(774,208,0,61,NULL),(799,93,0,129,71),(800,97,0,129,2),(801,99,0,129,1),(802,134,0,129,2),(803,208,0,129,60),(805,93,0,130,71),(806,97,0,130,2),(807,99,0,130,1),(808,134,0,130,2),(809,212,0,130,80),(810,93,0,131,71),(811,97,0,131,2),(812,99,0,131,1),(813,134,0,131,2),(814,212,0,131,79),(815,93,0,132,74),(816,97,0,132,2),(817,99,0,132,1),(818,134,0,132,0),(819,212,0,132,80),(820,93,0,133,74),(821,97,0,133,2),(822,99,0,133,1),(823,134,0,133,0),(824,212,0,133,78),(825,93,0,134,74),(826,97,0,134,2),(827,99,0,134,1),(828,134,0,134,0),(829,212,0,134,79),(830,93,0,135,74),(831,97,0,135,2),(832,99,0,135,1),(833,134,0,135,0),(834,212,0,135,80),(835,93,0,136,74),(836,97,0,136,2),(837,99,0,136,1),(838,134,0,136,0),(839,212,0,136,78),(840,93,0,137,74),(841,97,0,137,2),(842,99,0,137,1),(843,134,0,137,0),(844,212,0,137,79),(845,93,0,138,74),(846,97,0,138,2),(847,99,0,138,1),(848,134,0,138,0),(849,208,0,138,64),(850,93,0,139,74),(851,97,0,139,2),(852,99,0,139,1),(853,134,0,139,0),(854,208,0,139,67),(855,93,0,140,74),(856,97,0,140,2),(857,99,0,140,1),(858,134,0,140,0),(859,208,0,140,59),(860,93,0,141,74),(861,97,0,141,2),(862,99,0,141,1),(863,134,0,141,0),(864,208,0,141,62),(865,93,0,142,74),(866,97,0,142,2),(867,99,0,142,1),(868,134,0,142,0),(869,208,0,142,82),(870,93,0,143,74),(871,97,0,143,2),(872,99,0,143,1),(873,134,0,143,0),(874,208,0,143,63),(875,93,0,144,74),(876,97,0,144,2),(877,99,0,144,1),(878,134,0,144,0),(879,208,0,144,65),(880,93,0,145,71),(881,97,0,145,2),(882,99,0,145,1),(883,134,0,145,2),(884,208,0,145,61),(885,93,0,146,71),(886,97,0,146,2),(887,99,0,146,1),(888,134,0,146,2),(889,208,0,146,64),(890,93,0,147,71),(891,97,0,147,2),(892,99,0,147,1),(893,134,0,147,2),(894,208,0,147,62),(895,93,0,148,71),(896,97,0,148,2),(897,99,0,148,1),(898,134,0,148,2),(899,208,0,148,65),(900,93,0,149,71),(901,97,0,149,2),(902,99,0,149,1),(903,134,0,149,2),(904,208,0,149,63),(905,93,0,150,73),(906,97,0,150,2),(907,99,0,150,1),(908,134,0,150,2),(909,208,0,150,62),(910,93,0,151,73),(911,97,0,151,2),(912,99,0,151,1),(913,134,0,151,2),(914,208,0,151,63),(915,93,0,152,73),(916,97,0,152,2),(917,99,0,152,1),(918,134,0,152,2),(919,208,0,152,64),(920,93,0,153,75),(921,97,0,153,2),(922,99,0,153,1),(923,134,0,153,2),(924,208,0,153,62),(925,93,0,154,75),(926,97,0,154,2),(927,99,0,154,1),(928,134,0,154,2),(929,208,0,154,63),(930,93,0,155,72),(931,97,0,155,2),(932,99,0,155,1),(933,134,0,155,2),(934,208,0,155,62),(935,93,0,156,72),(936,97,0,156,2),(937,99,0,156,1),(938,134,0,156,2),(939,208,0,156,63),(940,93,0,157,72),(941,97,0,157,2),(942,99,0,157,1),(943,134,0,157,2),(944,212,0,157,78),(945,93,0,158,72),(946,97,0,158,2),(947,99,0,158,1),(948,134,0,158,2),(949,212,0,158,77),(950,93,0,159,72),(951,97,0,159,2),(952,99,0,159,1),(953,134,0,159,2),(954,212,0,159,79),(956,93,0,160,71),(957,97,0,160,2),(958,99,0,160,1),(959,134,0,160,2),(960,208,0,160,65),(961,93,0,161,71),(962,97,0,161,2),(963,99,0,161,1),(964,134,0,161,2),(965,208,0,161,64),(966,93,0,162,71),(967,97,0,162,2),(968,99,0,162,1),(969,134,0,162,2),(970,208,0,162,66),(971,93,0,163,74),(972,97,0,163,2),(973,99,0,163,1),(974,134,0,163,2),(975,212,0,163,78),(976,93,0,164,74),(977,97,0,164,2),(978,99,0,164,1),(979,134,0,164,2),(980,212,0,164,77),(981,93,0,165,74),(982,97,0,165,2),(983,99,0,165,1),(984,134,0,165,2),(985,212,0,165,80),(986,208,0,9,NULL),(987,93,0,166,73),(988,97,0,166,2),(989,99,0,166,1),(990,134,0,166,2),(991,212,0,166,80),(992,93,0,167,73),(993,97,0,167,2),(994,99,0,167,1),(995,134,0,167,2),(996,212,0,167,77),(997,93,0,168,73),(998,97,0,168,2),(999,99,0,168,1),(1000,134,0,168,2),(1001,212,0,168,78),(1002,93,0,169,73),(1003,97,0,169,2),(1004,99,0,169,1),(1005,134,0,169,2),(1006,212,0,169,79),(1007,93,0,170,73),(1008,97,0,170,2),(1009,99,0,170,1),(1010,134,0,170,2),(1011,212,0,170,77),(1012,93,0,171,73),(1013,97,0,171,2),(1014,99,0,171,1),(1015,134,0,171,2),(1016,212,0,171,78),(1018,93,0,172,73),(1019,97,0,172,2),(1020,99,0,172,1),(1021,134,0,172,2),(1022,212,0,172,80),(1023,93,0,173,73),(1024,97,0,173,2),(1025,99,0,173,1),(1026,134,0,173,2),(1027,212,0,173,78),(1028,93,0,174,73),(1029,97,0,174,2),(1030,99,0,174,1),(1031,134,0,174,2),(1032,212,0,174,79),(1034,93,0,175,75),(1035,97,0,175,2),(1036,99,0,175,1),(1037,134,0,175,2),(1038,208,0,175,61),(1039,93,0,176,75),(1040,97,0,176,2),(1041,99,0,176,1),(1042,134,0,176,2),(1043,208,0,176,62),(1044,93,0,177,75),(1045,97,0,177,2),(1046,99,0,177,1),(1047,134,0,177,2),(1048,208,0,177,63),(1049,93,0,178,75),(1050,97,0,178,2),(1051,99,0,178,1),(1052,134,0,178,2),(1053,208,0,178,64),(1054,93,0,179,75),(1055,97,0,179,2),(1056,99,0,179,1),(1057,134,0,179,2),(1058,208,0,179,65),(1059,93,0,180,71),(1060,97,0,180,2),(1061,99,0,180,1),(1062,134,0,180,2),(1063,208,0,180,62),(1064,93,0,181,71),(1065,97,0,181,2),(1066,99,0,181,1),(1067,134,0,181,2),(1068,208,0,181,63),(1069,93,0,182,71),(1070,97,0,182,2),(1071,99,0,182,1),(1072,134,0,182,2),(1073,208,0,182,64),(1074,93,0,183,71),(1075,97,0,183,2),(1076,99,0,183,1),(1077,134,0,183,2),(1078,208,0,183,65),(1079,93,0,184,71),(1080,97,0,184,2),(1081,99,0,184,1),(1082,134,0,184,2),(1083,208,0,184,66),(1084,93,0,185,71),(1085,97,0,185,2),(1086,99,0,185,1),(1087,134,0,185,2),(1088,208,0,185,61),(1089,93,0,186,74),(1090,97,0,186,2),(1091,99,0,186,1),(1092,134,0,186,2),(1093,212,0,186,77),(1094,93,0,187,74),(1095,97,0,187,2),(1096,99,0,187,1),(1097,134,0,187,2),(1098,212,0,187,78),(1099,93,0,188,74),(1100,97,0,188,2),(1101,99,0,188,1),(1102,134,0,188,2),(1103,212,0,188,79),(1104,93,0,189,74),(1105,97,0,189,2),(1106,99,0,189,1),(1107,134,0,189,2),(1108,212,0,189,80),(1109,93,0,190,73),(1110,97,0,190,2),(1111,99,0,190,1),(1112,134,0,190,2),(1113,212,0,190,77),(1114,93,0,191,73),(1115,97,0,191,2),(1116,99,0,191,1),(1117,134,0,191,2),(1118,212,0,191,81),(1119,93,0,192,73),(1120,97,0,192,2),(1121,99,0,192,1),(1122,134,0,192,2),(1123,212,0,192,78),(1124,93,0,193,73),(1125,97,0,193,2),(1126,99,0,193,1),(1127,134,0,193,2),(1128,212,0,193,80),(1129,93,0,194,74),(1130,97,0,194,2),(1131,99,0,194,1),(1132,134,0,194,2),(1133,212,0,194,81),(1134,93,0,195,74),(1135,97,0,195,2),(1136,99,0,195,1),(1137,134,0,195,2),(1138,212,0,195,78),(1139,93,0,196,74),(1140,97,0,196,2),(1141,99,0,196,1),(1142,134,0,196,2),(1143,212,0,196,79),(1144,93,0,197,71),(1145,97,0,197,2),(1146,99,0,197,1),(1147,134,0,197,2),(1148,208,0,197,61),(1149,93,0,198,71),(1150,97,0,198,2),(1151,99,0,198,1),(1152,134,0,198,2),(1153,208,0,198,62),(1154,93,0,199,71),(1155,97,0,199,2),(1156,99,0,199,1),(1157,134,0,199,2),(1158,208,0,199,63),(1159,93,0,200,71),(1160,97,0,200,2),(1161,99,0,200,1),(1162,134,0,200,2),(1163,208,0,200,65),(1164,93,0,201,71),(1165,97,0,201,2),(1166,99,0,201,1),(1167,134,0,201,2),(1168,208,0,201,64),(1169,93,0,202,71),(1170,97,0,202,2),(1171,99,0,202,1),(1172,134,0,202,2),(1173,208,0,202,66),(1174,93,0,203,75),(1175,97,0,203,2),(1176,99,0,203,1),(1177,134,0,203,2),(1178,212,0,203,78),(1179,93,0,204,75),(1180,97,0,204,2),(1181,99,0,204,1),(1182,134,0,204,2),(1183,212,0,204,77),(1184,93,0,205,75),(1185,97,0,205,2),(1186,99,0,205,1),(1187,134,0,205,2),(1188,212,0,205,80),(1189,93,0,206,75),(1190,97,0,206,2),(1191,99,0,206,1),(1192,134,0,206,2),(1193,212,0,206,81),(1194,93,0,207,73),(1195,97,0,207,2),(1196,99,0,207,1),(1197,134,0,207,2),(1198,212,0,207,78),(1199,93,0,208,73),(1200,97,0,208,2),(1201,99,0,208,1),(1202,134,0,208,2),(1203,212,0,208,81),(1204,93,0,209,73),(1205,97,0,209,2),(1206,99,0,209,1),(1207,134,0,209,2),(1208,212,0,209,77),(1209,93,0,210,71),(1210,97,0,210,2),(1211,99,0,210,1),(1212,134,0,210,2),(1213,208,0,210,61),(1214,93,0,211,71),(1215,97,0,211,2),(1216,99,0,211,1),(1217,134,0,211,2),(1218,208,0,211,62),(1219,93,0,212,71),(1220,97,0,212,2),(1221,99,0,212,1),(1222,134,0,212,2),(1223,208,0,212,63),(1224,93,0,213,71),(1225,97,0,213,2),(1226,99,0,213,1),(1227,134,0,213,2),(1228,208,0,213,64),(1229,93,0,214,71),(1230,97,0,214,2),(1231,99,0,214,1),(1232,134,0,214,2),(1233,208,0,214,65),(1234,93,0,215,71),(1235,97,0,215,2),(1236,99,0,215,1),(1237,134,0,215,2),(1238,208,0,215,66),(1239,93,0,216,71),(1240,97,0,216,2),(1241,99,0,216,1),(1242,134,0,216,2),(1243,208,0,216,67),(1244,93,0,217,72),(1245,97,0,217,2),(1246,99,0,217,1),(1247,134,0,217,2),(1248,212,0,217,80),(1249,93,0,218,72),(1250,97,0,218,2),(1251,99,0,218,1),(1252,134,0,218,2),(1253,212,0,218,77),(1254,93,0,219,72),(1255,97,0,219,2),(1256,99,0,219,1),(1257,134,0,219,2),(1258,212,0,219,78),(1259,93,0,220,72),(1260,97,0,220,2),(1261,99,0,220,1),(1262,134,0,220,2),(1263,212,0,220,79),(1264,93,0,221,72),(1265,97,0,221,2),(1266,99,0,221,1),(1267,134,0,221,2),(1268,212,0,221,81),(1269,93,0,222,74),(1270,97,0,222,2),(1271,99,0,222,1),(1272,134,0,222,2),(1273,208,0,222,58),(1274,93,0,223,74),(1275,97,0,223,2),(1276,99,0,223,1),(1277,134,0,223,2),(1278,208,0,223,59),(1279,93,0,224,74),(1280,97,0,224,2),(1281,99,0,224,1),(1282,134,0,224,2),(1283,208,0,224,82),(1284,93,0,225,74),(1285,97,0,225,2),(1286,99,0,225,1),(1287,134,0,225,2),(1288,208,0,225,61),(1289,93,0,226,74),(1290,97,0,226,2),(1291,99,0,226,1),(1292,134,0,226,2),(1293,208,0,226,62),(1294,93,0,227,74),(1295,97,0,227,2),(1296,99,0,227,1),(1297,134,0,227,2),(1298,208,0,227,63),(1299,93,0,228,76),(1300,97,0,228,2),(1301,99,0,228,1),(1302,134,0,228,2),(1303,212,0,228,78),(1304,93,0,229,76),(1305,97,0,229,2),(1306,99,0,229,1),(1307,134,0,229,2),(1308,212,0,229,77),(1309,93,0,230,76),(1310,97,0,230,2),(1311,99,0,230,1),(1312,134,0,230,2),(1313,212,0,230,79),(1314,93,0,231,71),(1315,97,0,231,2),(1316,99,0,231,1),(1317,134,0,231,2),(1318,212,0,231,78),(1319,93,0,232,71),(1320,97,0,232,2),(1321,99,0,232,1),(1322,134,0,232,2),(1323,212,0,232,79),(1324,208,0,31,NULL),(1325,93,0,233,73),(1326,97,0,233,2),(1327,99,0,233,1),(1328,134,0,233,2),(1329,212,0,233,78),(1330,93,0,234,73),(1331,97,0,234,2),(1332,99,0,234,1),(1333,134,0,234,2),(1334,212,0,234,79),(1335,208,0,32,NULL),(1336,93,0,235,75),(1337,97,0,235,2),(1338,99,0,235,1),(1339,134,0,235,2),(1340,212,0,235,78),(1341,93,0,236,75),(1342,97,0,236,2),(1343,99,0,236,1),(1344,134,0,236,2),(1345,212,0,236,79),(1346,93,0,237,75),(1347,97,0,237,2),(1348,99,0,237,1),(1349,134,0,237,2),(1350,212,0,237,77),(1351,93,0,238,75),(1352,97,0,238,2),(1353,99,0,238,1),(1354,134,0,238,2),(1355,212,0,238,80),(1356,93,0,239,73),(1357,97,0,239,2),(1358,99,0,239,1),(1359,134,0,239,2),(1360,212,0,239,78),(1361,93,0,240,73),(1362,97,0,240,2),(1363,99,0,240,1),(1364,134,0,240,2),(1365,212,0,240,79),(1366,93,0,241,73),(1367,97,0,241,2),(1368,99,0,241,1),(1369,134,0,241,2),(1370,212,0,241,80),(1371,93,0,242,73),(1372,97,0,242,2),(1373,99,0,242,1),(1374,134,0,242,2),(1375,212,0,242,81),(1376,93,0,243,71),(1377,97,0,243,2),(1378,99,0,243,1),(1379,134,0,243,2),(1380,208,0,243,62),(1381,93,0,244,71),(1382,97,0,244,2),(1383,99,0,244,1),(1384,134,0,244,2),(1385,208,0,244,61),(1386,93,0,245,71),(1387,97,0,245,2),(1388,99,0,245,1),(1389,134,0,245,2),(1390,208,0,245,64),(1391,93,0,246,71),(1392,97,0,246,2),(1393,99,0,246,1),(1394,134,0,246,2),(1395,208,0,246,65),(1396,93,0,247,71),(1397,97,0,247,2),(1398,99,0,247,1),(1399,134,0,247,2),(1400,208,0,247,67),(1401,93,0,248,71),(1402,97,0,248,2),(1403,99,0,248,1),(1404,134,0,248,2),(1405,208,0,248,66),(1406,93,0,249,73),(1407,97,0,249,2),(1408,99,0,249,1),(1409,134,0,249,2),(1410,212,0,249,77),(1411,93,0,250,73),(1412,97,0,250,2),(1413,99,0,250,1),(1414,134,0,250,2),(1415,212,0,250,78),(1416,93,0,251,73),(1417,97,0,251,2),(1418,99,0,251,1),(1419,134,0,251,2),(1420,212,0,251,79),(1421,93,0,252,73),(1422,97,0,252,2),(1423,99,0,252,1),(1424,134,0,252,2),(1425,212,0,252,81),(1426,93,0,253,73),(1427,97,0,253,2),(1428,99,0,253,1),(1429,134,0,253,2),(1430,212,0,253,80),(1431,93,0,254,74),(1432,97,0,254,2),(1433,99,0,254,1),(1434,134,0,254,2),(1435,212,0,254,78),(1436,93,0,255,74),(1437,97,0,255,2),(1438,99,0,255,1),(1439,134,0,255,2),(1440,212,0,255,79),(1441,93,0,256,74),(1442,97,0,256,2),(1443,99,0,256,1),(1444,134,0,256,2),(1445,212,0,256,80),(1446,93,0,257,72),(1447,97,0,257,2),(1448,99,0,257,1),(1449,134,0,257,0),(1450,212,0,257,78),(1451,93,0,258,72),(1452,97,0,258,2),(1453,99,0,258,1),(1454,134,0,258,0),(1455,212,0,258,79),(1456,93,0,259,72),(1457,97,0,259,2),(1458,99,0,259,1),(1459,134,0,259,0),(1460,212,0,259,77),(1461,93,0,260,72),(1462,97,0,260,2),(1463,99,0,260,1),(1464,134,0,260,0),(1465,212,0,260,80),(1466,93,0,261,73),(1467,97,0,261,2),(1468,99,0,261,1),(1469,134,0,261,2),(1470,212,0,261,78),(1471,93,0,262,73),(1472,97,0,262,2),(1473,99,0,262,1),(1474,134,0,262,2),(1475,212,0,262,79),(1476,93,0,263,73),(1477,97,0,263,2),(1478,99,0,263,1),(1479,134,0,263,2),(1480,212,0,263,80),(1481,93,0,264,73),(1482,97,0,264,2),(1483,99,0,264,1),(1484,134,0,264,2),(1485,212,0,264,81),(1486,93,0,265,73),(1487,97,0,265,2),(1488,99,0,265,1),(1489,134,0,265,2),(1490,208,0,265,63),(1491,93,0,266,73),(1492,97,0,266,2),(1493,99,0,266,1),(1494,134,0,266,2),(1495,208,0,266,64),(1496,93,0,267,73),(1497,97,0,267,2),(1498,99,0,267,1),(1499,134,0,267,2),(1500,208,0,267,62),(1501,93,0,268,73),(1502,97,0,268,2),(1503,99,0,268,1),(1504,134,0,268,2),(1505,208,0,268,66),(1506,93,0,269,73),(1507,97,0,269,2),(1508,99,0,269,1),(1509,134,0,269,2),(1510,208,0,269,65),(1511,93,0,270,75),(1512,97,0,270,2),(1513,99,0,270,1),(1514,134,0,270,2),(1515,212,0,270,79),(1516,93,0,271,75),(1517,97,0,271,2),(1518,99,0,271,1),(1519,134,0,271,2),(1520,212,0,271,80),(1521,93,0,272,75),(1522,97,0,272,2),(1523,99,0,272,1),(1524,134,0,272,2),(1525,212,0,272,78),(1526,93,0,273,75),(1527,97,0,273,2),(1528,99,0,273,1),(1529,134,0,273,2),(1530,212,0,273,79),(1531,93,0,274,75),(1532,97,0,274,2),(1533,99,0,274,1),(1534,134,0,274,2),(1535,212,0,274,77),(1536,93,0,275,75),(1537,97,0,275,2),(1538,99,0,275,1),(1539,134,0,275,2),(1540,212,0,275,80),(1541,93,0,276,75),(1542,97,0,276,2),(1543,99,0,276,1),(1544,134,0,276,2),(1545,212,0,276,81),(1546,93,0,277,74),(1547,97,0,277,2),(1548,99,0,277,1),(1549,134,0,277,2),(1550,212,0,277,77),(1551,93,0,278,74),(1552,97,0,278,2),(1553,99,0,278,1),(1554,134,0,278,2),(1555,212,0,278,78),(1556,93,0,279,74),(1557,97,0,279,2),(1558,99,0,279,1),(1559,134,0,279,2),(1560,212,0,279,79),(1561,93,0,280,74),(1562,97,0,280,2),(1563,99,0,280,1),(1564,134,0,280,2),(1565,212,0,280,80),(1566,93,0,281,73),(1567,97,0,281,2),(1568,99,0,281,1),(1569,134,0,281,2),(1570,212,0,281,79),(1571,93,0,282,73),(1572,97,0,282,2),(1573,99,0,282,1),(1574,134,0,282,2),(1575,212,0,282,78),(1576,93,0,283,73),(1577,97,0,283,2),(1578,99,0,283,1),(1579,134,0,283,2),(1580,212,0,283,81),(1581,93,0,284,73),(1582,97,0,284,2),(1583,99,0,284,1),(1584,134,0,284,2),(1585,212,0,284,80),(1586,93,0,285,73),(1587,97,0,285,2),(1588,99,0,285,1),(1589,134,0,285,2),(1590,212,0,285,78),(1591,93,0,286,73),(1592,97,0,286,2),(1593,99,0,286,1),(1594,134,0,286,2),(1595,212,0,286,79),(1596,208,0,48,NULL),(1597,93,0,287,71),(1598,97,0,287,2),(1599,99,0,287,1),(1600,134,0,287,2),(1601,212,0,287,78),(1602,93,0,288,71),(1603,97,0,288,2),(1604,99,0,288,1),(1605,134,0,288,2),(1606,212,0,288,80),(1607,93,0,289,71),(1608,97,0,289,2),(1609,99,0,289,1),(1610,134,0,289,2),(1611,212,0,289,79),(1612,93,0,290,71),(1613,97,0,290,2),(1614,99,0,290,1),(1615,134,0,290,0),(1616,212,0,290,77),(1617,93,0,291,71),(1618,97,0,291,2),(1619,99,0,291,1),(1620,134,0,291,0),(1621,212,0,291,78),(1622,93,0,292,71),(1623,97,0,292,2),(1624,99,0,292,1),(1625,134,0,292,0),(1626,212,0,292,79),(1627,93,0,293,72),(1628,97,0,293,2),(1629,99,0,293,1),(1630,134,0,293,0),(1631,212,0,293,77),(1632,93,0,294,72),(1633,97,0,294,2),(1634,99,0,294,1),(1635,134,0,294,0),(1636,212,0,294,78),(1637,93,0,295,72),(1638,97,0,295,2),(1639,99,0,295,1),(1640,134,0,295,0),(1641,212,0,295,79),(1642,93,0,296,71),(1643,97,0,296,2),(1644,99,0,296,1),(1645,134,0,296,2),(1646,212,0,296,77),(1647,93,0,297,71),(1648,97,0,297,2),(1649,99,0,297,1),(1650,134,0,297,2),(1651,212,0,297,78),(1652,93,0,298,71),(1653,97,0,298,2),(1654,99,0,298,1),(1655,134,0,298,2),(1656,212,0,298,79),(1657,93,0,299,71),(1658,97,0,299,2),(1659,99,0,299,1),(1660,134,0,299,2),(1661,212,0,299,80),(1662,93,0,300,76),(1663,97,0,300,2),(1664,99,0,300,1),(1665,134,0,300,2),(1666,208,0,300,59),(1667,93,0,301,76),(1668,97,0,301,2),(1669,99,0,301,1),(1670,134,0,301,2),(1671,208,0,301,82),(1672,93,0,302,76),(1673,97,0,302,2),(1674,99,0,302,1),(1675,134,0,302,2),(1676,208,0,302,58),(1677,93,0,303,76),(1678,97,0,303,2),(1679,99,0,303,1),(1680,134,0,303,2),(1681,208,0,303,61),(1682,93,0,304,76),(1683,97,0,304,2),(1684,99,0,304,1),(1685,134,0,304,2),(1686,208,0,304,62),(1687,93,0,305,76),(1688,97,0,305,2),(1689,99,0,305,1),(1690,134,0,305,2),(1691,208,0,305,63),(1692,93,0,306,73),(1693,97,0,306,2),(1694,99,0,306,1),(1695,134,0,306,2),(1696,212,0,306,77),(1697,93,0,307,73),(1698,97,0,307,2),(1699,99,0,307,1),(1700,134,0,307,2),(1701,212,0,307,78),(1702,93,0,308,73),(1703,97,0,308,2),(1704,99,0,308,1),(1705,134,0,308,2),(1706,212,0,308,79),(1707,93,0,309,72),(1708,97,0,309,2),(1709,99,0,309,1),(1710,134,0,309,0),(1711,212,0,309,77),(1712,93,0,310,72),(1713,97,0,310,2),(1714,99,0,310,1),(1715,134,0,310,0),(1716,212,0,310,78),(1717,93,0,311,72),(1718,97,0,311,2),(1719,99,0,311,1),(1720,134,0,311,0),(1721,212,0,311,79),(1722,208,0,56,NULL),(1723,93,0,312,73),(1724,97,0,312,2),(1725,99,0,312,1),(1726,134,0,312,2),(1727,212,0,312,79),(1728,93,0,313,73),(1729,97,0,313,2),(1730,99,0,313,1),(1731,134,0,313,2),(1732,212,0,313,80),(1733,93,0,314,73),(1734,97,0,314,2),(1735,99,0,314,1),(1736,134,0,314,2),(1737,212,0,314,78),(1738,93,0,315,73),(1739,97,0,315,2),(1740,99,0,315,1),(1741,134,0,315,2),(1742,212,0,315,77),(1743,93,0,316,73),(1744,97,0,316,2),(1745,99,0,316,1),(1746,134,0,316,2),(1747,212,0,316,78),(1748,93,0,317,73),(1749,97,0,317,2),(1750,99,0,317,1),(1751,134,0,317,2),(1752,212,0,317,79),(1753,93,0,318,72),(1754,97,0,318,2),(1755,99,0,318,1),(1756,134,0,318,0),(1757,212,0,318,78),(1758,93,0,319,72),(1759,97,0,319,2),(1760,99,0,319,1),(1761,134,0,319,0),(1762,212,0,319,79),(1763,93,0,320,72),(1764,97,0,320,2),(1765,99,0,320,1),(1766,134,0,320,0),(1767,212,0,320,77),(1768,93,0,321,72),(1769,97,0,321,2),(1770,99,0,321,1),(1771,134,0,321,0),(1772,212,0,321,80),(1774,93,0,322,74),(1775,97,0,322,2),(1776,99,0,322,1),(1777,134,0,322,2),(1778,208,0,322,58),(1779,93,0,323,74),(1780,97,0,323,2),(1781,99,0,323,1),(1782,134,0,323,2),(1783,208,0,323,59),(1784,93,0,324,74),(1785,97,0,324,2),(1786,99,0,324,1),(1787,134,0,324,2),(1788,208,0,324,82),(1789,93,0,325,74),(1790,97,0,325,2),(1791,99,0,325,1),(1792,134,0,325,2),(1793,208,0,325,61),(1794,93,0,326,74),(1795,97,0,326,2),(1796,99,0,326,1),(1797,134,0,326,2),(1798,208,0,326,62),(1799,93,0,327,74),(1800,97,0,327,2),(1801,99,0,327,1),(1802,134,0,327,2),(1803,208,0,327,63),(1804,93,0,328,73),(1805,97,0,328,2),(1806,99,0,328,1),(1807,134,0,328,2),(1808,212,0,328,78),(1809,93,0,329,73),(1810,97,0,329,2),(1811,99,0,329,1),(1812,134,0,329,2),(1813,212,0,329,79),(1814,93,0,330,75),(1815,97,0,330,2),(1816,99,0,330,1),(1817,134,0,330,2),(1818,212,0,330,79),(1819,93,0,331,75),(1820,97,0,331,2),(1821,99,0,331,1),(1822,134,0,331,2),(1823,212,0,331,77),(1824,93,0,332,75),(1825,97,0,332,2),(1826,99,0,332,1),(1827,134,0,332,2),(1828,212,0,332,78),(1829,93,0,333,75),(1830,97,0,333,2),(1831,99,0,333,1),(1832,134,0,333,2),(1833,212,0,333,80),(1834,93,0,334,72),(1835,97,0,334,2),(1836,99,0,334,1),(1837,134,0,334,0),(1838,212,0,334,77),(1839,93,0,335,72),(1840,97,0,335,2),(1841,99,0,335,1),(1842,134,0,335,0),(1843,212,0,335,78),(1844,93,0,336,72),(1845,97,0,336,2),(1846,99,0,336,1),(1847,134,0,336,0),(1848,212,0,336,79),(1849,93,0,337,72),(1850,97,0,337,2),(1851,99,0,337,1),(1852,134,0,337,0),(1853,212,0,337,80),(1854,93,0,338,72),(1855,97,0,338,2),(1856,99,0,338,1),(1857,134,0,338,2),(1858,212,0,338,78),(1859,93,0,339,72),(1860,97,0,339,2),(1861,99,0,339,1),(1862,134,0,339,2),(1863,212,0,339,77),(1864,93,0,340,72),(1865,97,0,340,2),(1866,99,0,340,1),(1867,134,0,340,2),(1868,212,0,340,79),(1869,93,0,341,75),(1870,97,0,341,2),(1871,99,0,341,1),(1872,134,0,341,2),(1873,212,0,341,77),(1874,93,0,342,75),(1875,97,0,342,2),(1876,99,0,342,1),(1877,134,0,342,2),(1878,212,0,342,78),(1879,93,0,343,75),(1880,97,0,343,2),(1881,99,0,343,1),(1882,134,0,343,2),(1883,212,0,343,79),(1884,93,0,344,75),(1885,97,0,344,2),(1886,99,0,344,1),(1887,134,0,344,2),(1888,212,0,344,80),(1889,93,0,345,75),(1890,97,0,345,2),(1891,99,0,345,1),(1892,134,0,345,2),(1893,212,0,345,81),(1894,93,0,346,75),(1895,97,0,346,2),(1896,99,0,346,1),(1897,134,0,346,2),(1898,212,0,346,78),(1899,93,0,347,75),(1900,97,0,347,2),(1901,99,0,347,1),(1902,134,0,347,2),(1903,212,0,347,80),(1904,93,0,348,75),(1905,97,0,348,2),(1906,99,0,348,1),(1907,134,0,348,2),(1908,212,0,348,79),(1909,93,0,349,75),(1910,97,0,349,2),(1911,99,0,349,1),(1912,134,0,349,2),(1913,212,0,349,81),(1914,93,0,350,71),(1915,97,0,350,2),(1916,99,0,350,1),(1917,134,0,350,2),(1918,208,0,350,59),(1919,93,0,351,71),(1920,97,0,351,2),(1921,99,0,351,1),(1922,134,0,351,2),(1923,208,0,351,58),(1924,93,0,352,71),(1925,97,0,352,2),(1926,99,0,352,1),(1927,134,0,352,2),(1928,208,0,352,82),(1929,93,0,353,71),(1930,97,0,353,2),(1931,99,0,353,1),(1932,134,0,353,2),(1933,208,0,353,62),(1934,93,0,354,72),(1935,97,0,354,2),(1936,99,0,354,1),(1937,134,0,354,0),(1938,212,0,354,78),(1939,93,0,355,72),(1940,97,0,355,2),(1941,99,0,355,1),(1942,134,0,355,0),(1943,212,0,355,77),(1944,93,0,356,72),(1945,97,0,356,2),(1946,99,0,356,1),(1947,134,0,356,0),(1948,212,0,356,80),(1949,93,0,357,72),(1950,97,0,357,2),(1951,99,0,357,1),(1952,134,0,357,0),(1953,212,0,357,79),(1954,93,0,358,71),(1955,97,0,358,2),(1956,99,0,358,1),(1957,134,0,358,2),(1958,212,0,358,78),(1959,93,0,359,71),(1960,97,0,359,2),(1961,99,0,359,1),(1962,134,0,359,2),(1963,212,0,359,79),(1964,93,0,360,71),(1965,97,0,360,2),(1966,99,0,360,1),(1967,134,0,360,2),(1968,212,0,360,80),(1969,93,0,361,73),(1970,97,0,361,2),(1971,99,0,361,1),(1972,134,0,361,2),(1973,212,0,361,78),(1974,93,0,362,73),(1975,97,0,362,2),(1976,99,0,362,1),(1977,134,0,362,2),(1978,212,0,362,79),(1979,93,0,363,73),(1980,97,0,363,2),(1981,99,0,363,1),(1982,134,0,363,2),(1983,212,0,363,80),(1984,93,0,364,72),(1985,97,0,364,2),(1986,99,0,364,1),(1987,134,0,364,0),(1988,212,0,364,78),(1989,93,0,365,72),(1990,97,0,365,2),(1991,99,0,365,1),(1992,134,0,365,0),(1993,212,0,365,79),(1994,93,0,366,72),(1995,97,0,366,2),(1996,99,0,366,1),(1997,134,0,366,0),(1998,212,0,366,77),(1999,93,0,367,72),(2000,97,0,367,2),(2001,99,0,367,1),(2002,134,0,367,0),(2003,212,0,367,80),(2004,93,0,368,71),(2005,97,0,368,2),(2006,99,0,368,1),(2007,134,0,368,0),(2008,212,0,368,78),(2009,93,0,369,71),(2010,97,0,369,2),(2011,99,0,369,1),(2012,134,0,369,0),(2013,212,0,369,77),(2014,93,0,370,71),(2015,97,0,370,2),(2016,99,0,370,1),(2017,134,0,370,0),(2018,212,0,370,79),(2019,93,0,371,71),(2020,97,0,371,2),(2021,99,0,371,1),(2022,134,0,371,0),(2023,212,0,371,80),(2024,93,0,372,72),(2025,97,0,372,2),(2026,99,0,372,1),(2027,134,0,372,0),(2028,212,0,372,78),(2029,93,0,373,72),(2030,97,0,373,2),(2031,99,0,373,1),(2032,134,0,373,0),(2033,212,0,373,77),(2034,93,0,374,72),(2035,97,0,374,2),(2036,99,0,374,1),(2037,134,0,374,0),(2038,212,0,374,79),(2039,93,0,375,72),(2040,97,0,375,2),(2041,99,0,375,1),(2042,134,0,375,0),(2043,212,0,375,80),(2045,93,0,376,71),(2046,97,0,376,2),(2047,99,0,376,1),(2048,134,0,376,2),(2049,212,0,376,78),(2050,93,0,377,71),(2051,97,0,377,2),(2052,99,0,377,1),(2053,134,0,377,2),(2054,212,0,377,79),(2055,93,0,378,76),(2056,97,0,378,2),(2057,99,0,378,1),(2058,134,0,378,2),(2059,212,0,378,78),(2060,93,0,379,76),(2061,97,0,379,2),(2062,99,0,379,1),(2063,134,0,379,2),(2064,212,0,379,79),(2065,208,0,74,NULL),(2066,93,0,380,71),(2067,97,0,380,2),(2068,99,0,380,1),(2069,134,0,380,0),(2070,208,0,380,58),(2071,93,0,381,71),(2072,97,0,381,2),(2073,99,0,381,1),(2074,134,0,381,0),(2075,208,0,381,61),(2076,93,0,382,71),(2077,97,0,382,2),(2078,99,0,382,1),(2079,134,0,382,0),(2080,208,0,382,62),(2081,93,0,383,71),(2082,97,0,383,2),(2083,99,0,383,1),(2084,134,0,383,0),(2085,208,0,383,63),(2086,93,0,384,71),(2087,97,0,384,2),(2088,99,0,384,1),(2089,134,0,384,0),(2090,208,0,384,82),(2091,93,0,385,74),(2092,97,0,385,2),(2093,99,0,385,1),(2094,134,0,385,2),(2095,212,0,385,79),(2096,93,0,386,74),(2097,97,0,386,2),(2098,99,0,386,1),(2099,134,0,386,2),(2100,212,0,386,78),(2101,93,0,387,74),(2102,97,0,387,2),(2103,99,0,387,1),(2104,134,0,387,2),(2105,212,0,387,80),(2106,93,0,388,71),(2107,97,0,388,2),(2108,99,0,388,1),(2109,134,0,388,0),(2110,212,0,388,78),(2111,93,0,389,71),(2112,97,0,389,2),(2113,99,0,389,1),(2114,134,0,389,0),(2115,212,0,389,77),(2116,93,0,390,71),(2117,97,0,390,2),(2118,99,0,390,1),(2119,134,0,390,0),(2120,212,0,390,79),(2121,93,0,391,73),(2122,97,0,391,2),(2123,99,0,391,1),(2124,134,0,391,2),(2125,212,0,391,79),(2126,93,0,392,73),(2127,97,0,392,2),(2128,99,0,392,1),(2129,134,0,392,2),(2130,212,0,392,78),(2131,93,0,393,73),(2132,97,0,393,2),(2133,99,0,393,1),(2134,134,0,393,2),(2135,212,0,393,80),(2136,208,0,78,NULL),(2137,93,0,394,75),(2138,97,0,394,2),(2139,99,0,394,1),(2140,134,0,394,2),(2141,212,0,394,78),(2142,93,0,395,75),(2143,97,0,395,2),(2144,99,0,395,1),(2145,134,0,395,2),(2146,212,0,395,79),(2147,93,0,396,75),(2148,97,0,396,2),(2149,99,0,396,1),(2150,134,0,396,2),(2151,212,0,396,80),(2152,93,0,397,76),(2153,97,0,397,2),(2154,99,0,397,1),(2155,134,0,397,0),(2156,212,0,397,78),(2157,93,0,398,76),(2158,97,0,398,2),(2159,99,0,398,1),(2160,134,0,398,0),(2161,212,0,398,77),(2162,93,0,399,76),(2163,97,0,399,2),(2164,99,0,399,1),(2165,134,0,399,0),(2166,212,0,399,81),(2167,93,0,400,76),(2168,97,0,400,2),(2169,99,0,400,1),(2170,134,0,400,0),(2171,212,0,400,79),(2173,93,0,401,72),(2174,97,0,401,2),(2175,99,0,401,1),(2176,134,0,401,0),(2177,212,0,401,78),(2178,93,0,402,72),(2179,97,0,402,2),(2180,99,0,402,1),(2181,134,0,402,0),(2182,212,0,402,79),(2183,93,0,403,72),(2184,97,0,403,2),(2185,99,0,403,1),(2186,134,0,403,0),(2187,212,0,403,77),(2188,93,0,404,71),(2189,97,0,404,2),(2190,99,0,404,1),(2191,134,0,404,0),(2192,212,0,404,78),(2193,93,0,405,71),(2194,97,0,405,2),(2195,99,0,405,1),(2196,134,0,405,0),(2197,212,0,405,79),(2198,93,0,406,71),(2199,97,0,406,2),(2200,99,0,406,1),(2201,134,0,406,0),(2202,212,0,406,77),(2203,208,0,81,60),(2204,93,0,407,71),(2205,97,0,407,2),(2206,99,0,407,1),(2207,134,0,407,2),(2208,208,0,407,59),(2209,93,0,408,71),(2210,97,0,408,2),(2211,99,0,408,1),(2212,134,0,408,2),(2213,208,0,408,82),(2214,93,0,409,71),(2215,97,0,409,2),(2216,99,0,409,1),(2217,134,0,409,2),(2218,208,0,409,61),(2219,93,0,410,71),(2220,97,0,410,2),(2221,99,0,410,1),(2222,134,0,410,2),(2223,208,0,410,62),(2224,93,0,411,71),(2225,97,0,411,2),(2226,99,0,411,1),(2227,134,0,411,2),(2228,208,0,411,63),(2229,93,0,412,72),(2230,97,0,412,2),(2231,99,0,412,1),(2232,134,0,412,0),(2233,212,0,412,78),(2234,93,0,413,72),(2235,97,0,413,2),(2236,99,0,413,1),(2237,134,0,413,0),(2238,212,0,413,79),(2239,93,0,414,72),(2240,97,0,414,2),(2241,99,0,414,1),(2242,134,0,414,0),(2243,212,0,414,81),(2244,93,0,415,72),(2245,97,0,415,2),(2246,99,0,415,1),(2247,134,0,415,0),(2248,212,0,415,80),(2249,93,0,416,72),(2250,97,0,416,2),(2251,99,0,416,1),(2252,134,0,416,2),(2253,208,0,416,59),(2254,93,0,417,72),(2255,97,0,417,2),(2256,99,0,417,1),(2257,134,0,417,2),(2258,208,0,417,82),(2259,93,0,418,72),(2260,97,0,418,2),(2261,99,0,418,1),(2262,134,0,418,2),(2263,208,0,418,61),(2264,93,0,419,72),(2265,97,0,419,2),(2266,99,0,419,1),(2267,134,0,419,2),(2268,208,0,419,63),(2269,93,0,420,72),(2270,97,0,420,2),(2271,99,0,420,1),(2272,134,0,420,2),(2273,208,0,420,62),(2274,93,0,421,74),(2275,97,0,421,2),(2276,99,0,421,1),(2277,134,0,421,2),(2278,208,0,421,59),(2279,93,0,422,74),(2280,97,0,422,2),(2281,99,0,422,1),(2282,134,0,422,2),(2283,208,0,422,82),(2284,93,0,423,74),(2285,97,0,423,2),(2286,99,0,423,1),(2287,134,0,423,2),(2288,208,0,423,61),(2289,93,0,424,74),(2290,97,0,424,2),(2291,99,0,424,1),(2292,134,0,424,2),(2293,208,0,424,63),(2294,93,0,425,74),(2295,97,0,425,2),(2296,99,0,425,1),(2297,134,0,425,2),(2298,208,0,425,62),(2299,93,0,426,75),(2300,97,0,426,2),(2301,99,0,426,1),(2302,134,0,426,2),(2303,212,0,426,78),(2304,93,0,427,75),(2305,97,0,427,2),(2306,99,0,427,1),(2307,134,0,427,2),(2308,212,0,427,80),(2309,93,0,428,75),(2310,97,0,428,2),(2311,99,0,428,1),(2312,134,0,428,2),(2313,212,0,428,79),(2314,208,0,85,NULL),(2315,93,0,429,72),(2316,97,0,429,2),(2317,99,0,429,1),(2318,134,0,429,2),(2319,208,0,429,58),(2320,93,0,430,74),(2321,97,0,430,2),(2322,99,0,430,1),(2323,134,0,430,2),(2324,208,0,430,58),(2325,93,0,431,72),(2326,97,0,431,2),(2327,99,0,431,1),(2328,134,0,431,2),(2329,208,0,431,82),(2330,93,0,432,74),(2331,97,0,432,2),(2332,99,0,432,1),(2333,134,0,432,2),(2334,208,0,432,82),(2335,93,0,433,72),(2336,97,0,433,2),(2337,99,0,433,1),(2338,134,0,433,2),(2339,208,0,433,59),(2340,93,0,434,74),(2341,97,0,434,2),(2342,99,0,434,1),(2343,134,0,434,2),(2344,208,0,434,59),(2345,93,0,435,72),(2346,97,0,435,2),(2347,99,0,435,1),(2348,134,0,435,2),(2349,208,0,435,62),(2350,93,0,436,74),(2351,97,0,436,2),(2352,99,0,436,1),(2353,134,0,436,2),(2354,208,0,436,62),(2355,93,0,437,71),(2356,97,0,437,2),(2357,99,0,437,1),(2358,134,0,437,0),(2359,212,0,437,78),(2360,93,0,438,71),(2361,97,0,438,2),(2362,99,0,438,1),(2363,134,0,438,0),(2364,212,0,438,80),(2365,93,0,439,71),(2366,97,0,439,2),(2367,99,0,439,1),(2368,134,0,439,0),(2369,212,0,439,79),(2370,208,0,87,NULL),(2371,93,0,440,75),(2372,97,0,440,2),(2373,99,0,440,1),(2374,134,0,440,2),(2375,212,0,440,78),(2376,93,0,441,75),(2377,97,0,441,2),(2378,99,0,441,1),(2379,134,0,441,2),(2380,212,0,441,79),(2381,93,0,442,75),(2382,97,0,442,2),(2383,99,0,442,1),(2384,134,0,442,2),(2385,212,0,442,80),(2386,208,0,88,NULL),(2387,93,0,443,72),(2388,97,0,443,2),(2389,99,0,443,1),(2390,134,0,443,2),(2391,208,0,443,58),(2392,93,0,444,72),(2393,97,0,444,2),(2394,99,0,444,1),(2395,134,0,444,2),(2396,208,0,444,82),(2397,93,0,445,72),(2398,97,0,445,2),(2399,99,0,445,1),(2400,134,0,445,2),(2401,208,0,445,61),(2402,93,0,446,72),(2403,97,0,446,2),(2404,99,0,446,1),(2405,134,0,446,2),(2406,208,0,446,63),(2407,93,0,447,72),(2408,97,0,447,2),(2409,99,0,447,1),(2410,134,0,447,2),(2411,208,0,447,62),(2412,93,0,448,72),(2413,97,0,448,2),(2414,99,0,448,1),(2415,134,0,448,2),(2416,208,0,448,65),(2417,93,0,449,74),(2418,97,0,449,2),(2419,99,0,449,1),(2420,134,0,449,2),(2421,208,0,449,58),(2422,93,0,450,74),(2423,97,0,450,2),(2424,99,0,450,1),(2425,134,0,450,2),(2426,208,0,450,82),(2427,93,0,451,74),(2428,97,0,451,2),(2429,99,0,451,1),(2430,134,0,451,2),(2431,208,0,451,61),(2432,93,0,452,74),(2433,97,0,452,2),(2434,99,0,452,1),(2435,134,0,452,2),(2436,208,0,452,63),(2437,93,0,453,74),(2438,97,0,453,2),(2439,99,0,453,1),(2440,134,0,453,2),(2441,208,0,453,62),(2442,93,0,454,74),(2443,97,0,454,2),(2444,99,0,454,1),(2445,134,0,454,2),(2446,208,0,454,65),(2447,93,0,455,71),(2448,97,0,455,2),(2449,99,0,455,1),(2450,134,0,455,0),(2451,212,0,455,77),(2452,93,0,456,71),(2453,97,0,456,2),(2454,99,0,456,1),(2455,134,0,456,0),(2456,212,0,456,78),(2457,93,0,457,71),(2458,97,0,457,2),(2459,99,0,457,1),(2460,134,0,457,0),(2461,212,0,457,79),(2463,93,0,458,72),(2464,97,0,458,2),(2465,99,0,458,1),(2466,134,0,458,0),(2467,212,0,458,78),(2468,93,0,459,72),(2469,97,0,459,2),(2470,99,0,459,1),(2471,134,0,459,0),(2472,212,0,459,81),(2473,93,0,460,72),(2474,97,0,460,2),(2475,99,0,460,1),(2476,134,0,460,0),(2477,212,0,460,79),(2479,93,0,461,72),(2480,97,0,461,2),(2481,99,0,461,1),(2482,134,0,461,0),(2483,212,0,461,78),(2484,93,0,462,72),(2485,97,0,462,2),(2486,99,0,462,1),(2487,134,0,462,0),(2488,212,0,462,79),(2489,93,0,463,72),(2490,97,0,463,2),(2491,99,0,463,1),(2492,134,0,463,0),(2493,212,0,463,81),(2494,93,0,464,72),(2495,97,0,464,2),(2496,99,0,464,1),(2497,134,0,464,0),(2498,212,0,464,80),(2499,93,0,465,72),(2500,97,0,465,2),(2501,99,0,465,1),(2502,134,0,465,0),(2503,212,0,465,78),(2504,93,0,466,72),(2505,97,0,466,2),(2506,99,0,466,1),(2507,134,0,466,0),(2508,212,0,466,79),(2509,93,0,467,72),(2510,97,0,467,2),(2511,99,0,467,1),(2512,134,0,467,0),(2513,212,0,467,80),(2514,93,0,468,75),(2515,97,0,468,2),(2516,99,0,468,1),(2517,134,0,468,2),(2518,212,0,468,78),(2519,93,0,469,75),(2520,97,0,469,2),(2521,99,0,469,1),(2522,134,0,469,2),(2523,212,0,469,80),(2524,93,0,470,75),(2525,97,0,470,2),(2526,99,0,470,1),(2527,134,0,470,2),(2528,212,0,470,79),(2529,93,0,471,71),(2530,97,0,471,2),(2531,99,0,471,1),(2532,134,0,471,0),(2533,212,0,471,77),(2534,93,0,472,71),(2535,97,0,472,2),(2536,99,0,472,1),(2537,134,0,472,0),(2538,212,0,472,81),(2539,93,0,473,71),(2540,97,0,473,2),(2541,99,0,473,1),(2542,134,0,473,0),(2543,212,0,473,78),(2544,93,0,474,71),(2545,97,0,474,2),(2546,99,0,474,1),(2547,134,0,474,0),(2548,212,0,474,79),(2549,93,0,475,73),(2550,97,0,475,2),(2551,99,0,475,1),(2552,134,0,475,2),(2553,212,0,475,79),(2554,93,0,476,73),(2555,97,0,476,2),(2556,99,0,476,1),(2557,134,0,476,2),(2558,212,0,476,78),(2559,93,0,477,73),(2560,97,0,477,2),(2561,99,0,477,1),(2562,134,0,477,2),(2563,212,0,477,80),(2564,93,0,478,72),(2565,97,0,478,2),(2566,99,0,478,1),(2567,134,0,478,0),(2568,212,0,478,78),(2569,93,0,479,72),(2570,97,0,479,2),(2571,99,0,479,1),(2572,134,0,479,0),(2573,212,0,479,80),(2574,93,0,480,72),(2575,97,0,480,2),(2576,99,0,480,1),(2577,134,0,480,0),(2578,212,0,480,81),(2579,93,0,481,71),(2580,97,0,481,2),(2581,99,0,481,1),(2582,134,0,481,0),(2583,212,0,481,78),(2584,93,0,482,71),(2585,97,0,482,2),(2586,99,0,482,1),(2587,134,0,482,0),(2588,212,0,482,79),(2589,93,0,483,71),(2590,97,0,483,2),(2591,99,0,483,1),(2592,134,0,483,0),(2593,212,0,483,80),(2594,93,0,484,71),(2595,97,0,484,2),(2596,99,0,484,1),(2597,134,0,484,0),(2598,212,0,484,77),(2599,93,0,485,74),(2600,97,0,485,2),(2601,99,0,485,1),(2602,134,0,485,0),(2603,212,0,485,78),(2604,93,0,486,74),(2605,97,0,486,2),(2606,99,0,486,1),(2607,134,0,486,0),(2608,212,0,486,80),(2609,93,0,487,74),(2610,97,0,487,2),(2611,99,0,487,1),(2612,134,0,487,0),(2613,212,0,487,77),(2615,93,0,488,71),(2616,97,0,488,2),(2617,99,0,488,1),(2618,134,0,488,0),(2619,212,0,488,77),(2620,93,0,489,71),(2621,97,0,489,2),(2622,99,0,489,1),(2623,134,0,489,0),(2624,212,0,489,78),(2625,93,0,490,71),(2626,97,0,490,2),(2627,99,0,490,1),(2628,134,0,490,0),(2629,212,0,490,79),(2630,208,0,103,NULL),(2631,93,0,491,72),(2632,97,0,491,2),(2633,99,0,491,1),(2634,134,0,491,0),(2635,212,0,491,78),(2636,93,0,492,72),(2637,97,0,492,2),(2638,99,0,492,1),(2639,134,0,492,0),(2640,212,0,492,77),(2641,93,0,493,72),(2642,97,0,493,2),(2643,99,0,493,1),(2644,134,0,493,0),(2645,212,0,493,80),(2646,93,0,494,72),(2647,97,0,494,2),(2648,99,0,494,1),(2649,134,0,494,0),(2650,212,0,494,79),(2651,93,0,495,71),(2652,97,0,495,2),(2653,99,0,495,1),(2654,134,0,495,0),(2655,212,0,495,78),(2656,93,0,496,71),(2657,97,0,496,2),(2658,99,0,496,1),(2659,134,0,496,0),(2660,212,0,496,77),(2661,93,0,497,71),(2662,97,0,497,2),(2663,99,0,497,1),(2664,134,0,497,0),(2665,212,0,497,79),(2666,93,0,498,71),(2667,97,0,498,2),(2668,99,0,498,1),(2669,134,0,498,0),(2670,212,0,498,78),(2671,93,0,499,71),(2672,97,0,499,2),(2673,99,0,499,1),(2674,134,0,499,0),(2675,212,0,499,77),(2676,93,0,500,71),(2677,97,0,500,2),(2678,99,0,500,1),(2679,134,0,500,0),(2680,212,0,500,79),(2682,93,0,501,71),(2683,97,0,501,2),(2684,99,0,501,1),(2685,134,0,501,0),(2686,212,0,501,78),(2687,93,0,502,71),(2688,97,0,502,2),(2689,99,0,502,1),(2690,134,0,502,0),(2691,212,0,502,77),(2692,93,0,503,71),(2693,97,0,503,2),(2694,99,0,503,1),(2695,134,0,503,0),(2696,212,0,503,79),(2698,93,0,504,71),(2699,97,0,504,2),(2700,99,0,504,1),(2701,134,0,504,0),(2702,212,0,504,77),(2703,93,0,505,71),(2704,97,0,505,2),(2705,99,0,505,1),(2706,134,0,505,0),(2707,212,0,505,78),(2708,93,0,506,71),(2709,97,0,506,2),(2710,99,0,506,1),(2711,134,0,506,0),(2712,212,0,506,79),(2713,93,0,507,72),(2714,97,0,507,2),(2715,99,0,507,1),(2716,134,0,507,0),(2717,212,0,507,77),(2718,93,0,508,72),(2719,97,0,508,2),(2720,99,0,508,1),(2721,134,0,508,0),(2722,212,0,508,78),(2723,93,0,509,72),(2724,97,0,509,2),(2725,99,0,509,1),(2726,134,0,509,0),(2727,212,0,509,79),(2729,93,0,510,71),(2730,97,0,510,2),(2731,99,0,510,1),(2732,134,0,510,0),(2733,212,0,510,77),(2734,93,0,511,71),(2735,97,0,511,2),(2736,99,0,511,1),(2737,134,0,511,0),(2738,212,0,511,78),(2739,93,0,512,71),(2740,97,0,512,2),(2741,99,0,512,1),(2742,134,0,512,0),(2743,212,0,512,79),(2744,93,0,513,74),(2745,97,0,513,2),(2746,99,0,513,1),(2747,134,0,513,0),(2748,212,0,513,77),(2749,93,0,514,74),(2750,97,0,514,2),(2751,99,0,514,1),(2752,134,0,514,0),(2753,212,0,514,78),(2754,93,0,515,74),(2755,97,0,515,2),(2756,99,0,515,1),(2757,134,0,515,0),(2758,212,0,515,79),(2759,208,0,110,NULL),(2760,93,0,516,71),(2761,97,0,516,2),(2762,99,0,516,1),(2763,134,0,516,2),(2764,212,0,516,78),(2765,208,0,111,NULL),(2766,93,0,517,76),(2767,97,0,517,2),(2768,99,0,517,1),(2769,134,0,517,0),(2770,212,0,517,77),(2771,93,0,518,76),(2772,97,0,518,2),(2773,99,0,518,1),(2774,134,0,518,0),(2775,212,0,518,78),(2776,93,0,519,76),(2777,97,0,519,2),(2778,99,0,519,1),(2779,134,0,519,0),(2780,212,0,519,79),(2781,93,0,520,71),(2782,97,0,520,2),(2783,99,0,520,1),(2784,134,0,520,0),(2785,212,0,520,77),(2786,93,0,521,71),(2787,97,0,521,2),(2788,99,0,521,1),(2789,134,0,521,0),(2790,212,0,521,78),(2791,93,0,522,71),(2792,97,0,522,2),(2793,99,0,522,1),(2794,134,0,522,0),(2795,212,0,522,80),(2796,93,0,523,71),(2797,97,0,523,2),(2798,99,0,523,1),(2799,134,0,523,2),(2800,212,0,523,79),(2801,208,0,114,NULL),(2802,93,0,524,71),(2803,97,0,524,2),(2804,99,0,524,1),(2805,134,0,524,0),(2806,212,0,524,77),(2807,93,0,525,71),(2808,97,0,525,2),(2809,99,0,525,1),(2810,134,0,525,0),(2811,212,0,525,78),(2812,93,0,526,71),(2813,97,0,526,2),(2814,99,0,526,1),(2815,134,0,526,0),(2816,212,0,526,79),(2818,93,0,527,75),(2819,97,0,527,2),(2820,99,0,527,1),(2821,134,0,527,2),(2822,212,0,527,78),(2824,93,0,528,74),(2825,97,0,528,2),(2826,99,0,528,1),(2827,134,0,528,0),(2828,212,0,528,77),(2829,93,0,529,74),(2830,97,0,529,2),(2831,99,0,529,1),(2832,134,0,529,0),(2833,212,0,529,78),(2834,93,0,530,74),(2835,97,0,530,2),(2836,99,0,530,1),(2837,134,0,530,0),(2838,212,0,530,79),(2839,93,0,531,74),(2840,97,0,531,2),(2841,99,0,531,1),(2842,134,0,531,2),(2843,212,0,531,78),(2844,93,0,532,73),(2845,97,0,532,2),(2846,99,0,532,1),(2847,134,0,532,2),(2848,212,0,532,77),(2849,93,0,533,73),(2850,97,0,533,2),(2851,99,0,533,1),(2852,134,0,533,2),(2853,212,0,533,78),(2854,93,0,534,73),(2855,97,0,534,2),(2856,99,0,534,1),(2857,134,0,534,2),(2858,212,0,534,79),(2859,93,0,535,72),(2860,97,0,535,2),(2861,99,0,535,1),(2862,134,0,535,2),(2863,212,0,535,77),(2864,93,0,536,72),(2865,97,0,536,2),(2866,99,0,536,1),(2867,134,0,536,2),(2868,212,0,536,78),(2869,93,0,537,72),(2870,97,0,537,2),(2871,99,0,537,1),(2872,134,0,537,2),(2873,212,0,537,79),(2874,93,0,538,74),(2875,97,0,538,2),(2876,99,0,538,1),(2877,134,0,538,2),(2878,212,0,538,77),(2879,93,0,539,74),(2880,97,0,539,2),(2881,99,0,539,1),(2882,134,0,539,2),(2883,212,0,539,78),(2884,93,0,540,74),(2885,97,0,540,2),(2886,99,0,540,1),(2887,134,0,540,2),(2888,212,0,540,79),(2890,93,0,541,75),(2891,97,0,541,2),(2892,99,0,541,1),(2893,134,0,541,2),(2894,212,0,541,78),(2895,93,0,542,74),(2896,97,0,542,2),(2897,99,0,542,1),(2898,134,0,542,2),(2899,212,0,542,78),(2900,93,0,543,74),(2901,97,0,543,2),(2902,99,0,543,1),(2903,134,0,543,2),(2904,212,0,543,79),(2906,93,0,544,71),(2907,97,0,544,2),(2908,99,0,544,1),(2909,134,0,544,2),(2910,208,0,124,NULL),(2911,93,0,545,71),(2912,97,0,545,2),(2913,99,0,545,1),(2914,134,0,545,2),(2915,208,0,125,NULL),(2916,93,0,546,74),(2917,97,0,546,2),(2918,99,0,546,1),(2919,134,0,546,2),(2920,208,0,126,NULL),(2921,93,0,547,71),(2922,97,0,547,2),(2923,99,0,547,1),(2924,134,0,547,2),(2925,93,0,548,75),(2926,97,0,548,2),(2927,99,0,548,1),(2928,134,0,548,2),(2929,93,0,549,72),(2930,97,0,549,2),(2931,99,0,549,1),(2932,134,0,549,2),(2933,208,0,549,61),(2934,93,0,550,72),(2935,97,0,550,2),(2936,99,0,550,1),(2937,134,0,550,2),(2938,208,0,550,62),(2939,93,0,551,72),(2940,97,0,551,2),(2941,99,0,551,1),(2942,134,0,551,2),(2943,208,0,551,63),(2944,93,0,552,72),(2945,97,0,552,2),(2946,99,0,552,1),(2947,134,0,552,2),(2948,208,0,552,64),(2949,93,0,553,72),(2950,97,0,553,2),(2951,99,0,553,1),(2952,134,0,553,2),(2953,208,0,553,65),(2954,93,0,554,72),(2955,97,0,554,2),(2956,99,0,554,1),(2957,134,0,554,2),(2958,208,0,554,66),(2959,93,0,555,73),(2960,97,0,555,2),(2961,99,0,555,1),(2962,134,0,555,2),(2963,208,0,555,61),(2964,93,0,556,73),(2965,97,0,556,2),(2966,99,0,556,1),(2967,134,0,556,2),(2968,208,0,556,62),(2969,93,0,557,73),(2970,97,0,557,2),(2971,99,0,557,1),(2972,134,0,557,2),(2973,208,0,557,63),(2974,93,0,558,73),(2975,97,0,558,2),(2976,99,0,558,1),(2977,134,0,558,2),(2978,208,0,558,64),(2979,93,0,559,73),(2980,97,0,559,2),(2981,99,0,559,1),(2982,134,0,559,2),(2983,208,0,559,65),(2984,93,0,560,73),(2985,97,0,560,2),(2986,99,0,560,1),(2987,134,0,560,2),(2988,208,0,560,66),(2989,93,0,561,74),(2990,97,0,561,2),(2991,99,0,561,1),(2992,134,0,561,2),(2993,208,0,561,61),(2994,93,0,562,74),(2995,97,0,562,2),(2996,99,0,562,1),(2997,134,0,562,2),(2998,208,0,562,62),(2999,93,0,563,74),(3000,97,0,563,2),(3001,99,0,563,1),(3002,134,0,563,2),(3003,208,0,563,63),(3004,93,0,564,74),(3005,97,0,564,2),(3006,99,0,564,1),(3007,134,0,564,2),(3008,208,0,564,64),(3009,93,0,565,74),(3010,97,0,565,2),(3011,99,0,565,1),(3012,134,0,565,2),(3013,208,0,565,65),(3014,93,0,566,74),(3015,97,0,566,2),(3016,99,0,566,1),(3017,134,0,566,2),(3018,208,0,566,66),(3019,93,0,567,75),(3020,97,0,567,2),(3021,99,0,567,1),(3022,134,0,567,2),(3023,208,0,567,61),(3024,93,0,568,75),(3025,97,0,568,2),(3026,99,0,568,1),(3027,134,0,568,2),(3028,208,0,568,62),(3029,93,0,569,75),(3030,97,0,569,2),(3031,99,0,569,1),(3032,134,0,569,2),(3033,208,0,569,63),(3034,93,0,570,75),(3035,97,0,570,2),(3036,99,0,570,1),(3037,134,0,570,2),(3038,208,0,570,64),(3039,93,0,571,75),(3040,97,0,571,2),(3041,99,0,571,1),(3042,134,0,571,2),(3043,208,0,571,65),(3044,93,0,572,75),(3045,97,0,572,2),(3046,99,0,572,1),(3047,134,0,572,2),(3048,208,0,572,66),(3049,93,0,573,76),(3050,97,0,573,2),(3051,99,0,573,1),(3052,134,0,573,2),(3053,208,0,573,61),(3054,93,0,574,76),(3055,97,0,574,2),(3056,99,0,574,1),(3057,134,0,574,2),(3058,208,0,574,62),(3059,93,0,575,76),(3060,97,0,575,2),(3061,99,0,575,1),(3062,134,0,575,2),(3063,208,0,575,63),(3064,93,0,576,76),(3065,97,0,576,2),(3066,99,0,576,1),(3067,134,0,576,2),(3068,208,0,576,64),(3069,93,0,577,76),(3070,97,0,577,2),(3071,99,0,577,1),(3072,134,0,577,2),(3073,208,0,577,65),(3074,93,0,578,76),(3075,97,0,578,2),(3076,99,0,578,1),(3077,134,0,578,2),(3078,208,0,578,66),(3079,93,0,579,71),(3080,97,0,579,2),(3081,99,0,579,1),(3082,134,0,579,0),(3083,208,0,579,59),(3084,93,0,580,71),(3085,97,0,580,2),(3086,99,0,580,1),(3087,134,0,580,0),(3088,208,0,580,82),(3089,93,0,581,71),(3090,97,0,581,2),(3091,99,0,581,1),(3092,134,0,581,0),(3093,208,0,581,62),(3094,93,0,582,71),(3095,97,0,582,2),(3096,99,0,582,1),(3097,134,0,582,0),(3098,208,0,582,63),(3099,93,0,583,71),(3100,97,0,583,2),(3101,99,0,583,1),(3102,134,0,583,0),(3103,208,0,583,64),(3104,93,0,584,71),(3105,97,0,584,2),(3106,99,0,584,1),(3107,134,0,584,0),(3108,208,0,584,65),(3109,93,0,585,71),(3110,97,0,585,2),(3111,99,0,585,1),(3112,134,0,585,0),(3113,208,0,585,67),(3114,93,0,586,72),(3115,97,0,586,2),(3116,99,0,586,1),(3117,134,0,586,0),(3118,208,0,586,59),(3119,93,0,587,72),(3120,97,0,587,2),(3121,99,0,587,1),(3122,134,0,587,0),(3123,208,0,587,82),(3124,93,0,588,72),(3125,97,0,588,2),(3126,99,0,588,1),(3127,134,0,588,0),(3128,208,0,588,62),(3129,93,0,589,72),(3130,97,0,589,2),(3131,99,0,589,1),(3132,134,0,589,0),(3133,208,0,589,63),(3134,93,0,590,72),(3135,97,0,590,2),(3136,99,0,590,1),(3137,134,0,590,0),(3138,208,0,590,64),(3139,93,0,591,72),(3140,97,0,591,2),(3141,99,0,591,1),(3142,134,0,591,0),(3143,208,0,591,65),(3144,93,0,592,72),(3145,97,0,592,2),(3146,99,0,592,1),(3147,134,0,592,0),(3148,208,0,592,67),(3149,93,0,593,73),(3150,97,0,593,2),(3151,99,0,593,1),(3152,134,0,593,0),(3153,208,0,593,59),(3154,93,0,594,73),(3155,97,0,594,2),(3156,99,0,594,1),(3157,134,0,594,0),(3158,208,0,594,82),(3159,93,0,595,73),(3160,97,0,595,2),(3161,99,0,595,1),(3162,134,0,595,0),(3163,208,0,595,62),(3164,93,0,596,73),(3165,97,0,596,2),(3166,99,0,596,1),(3167,134,0,596,0),(3168,208,0,596,63),(3169,93,0,597,73),(3170,97,0,597,2),(3171,99,0,597,1),(3172,134,0,597,0),(3173,208,0,597,64),(3174,93,0,598,73),(3175,97,0,598,2),(3176,99,0,598,1),(3177,134,0,598,0),(3178,208,0,598,65),(3179,93,0,599,73),(3180,97,0,599,2),(3181,99,0,599,1),(3182,134,0,599,0),(3183,208,0,599,67),(3184,93,0,600,75),(3185,97,0,600,2),(3186,99,0,600,1),(3187,134,0,600,0),(3188,208,0,600,59),(3189,93,0,601,75),(3190,97,0,601,2),(3191,99,0,601,1),(3192,134,0,601,0),(3193,208,0,601,82),(3194,93,0,602,75),(3195,97,0,602,2),(3196,99,0,602,1),(3197,134,0,602,0),(3198,208,0,602,62),(3199,93,0,603,75),(3200,97,0,603,2),(3201,99,0,603,1),(3202,134,0,603,0),(3203,208,0,603,63),(3204,93,0,604,75),(3205,97,0,604,2),(3206,99,0,604,1),(3207,134,0,604,0),(3208,208,0,604,64),(3209,93,0,605,75),(3210,97,0,605,2),(3211,99,0,605,1),(3212,134,0,605,0),(3213,208,0,605,65),(3214,93,0,606,75),(3215,97,0,606,2),(3216,99,0,606,1),(3217,134,0,606,0),(3218,208,0,606,67),(3219,93,0,607,76),(3220,97,0,607,2),(3221,99,0,607,1),(3222,134,0,607,0),(3223,208,0,607,59),(3224,93,0,608,76),(3225,97,0,608,2),(3226,99,0,608,1),(3227,134,0,608,0),(3228,208,0,608,82),(3229,93,0,609,76),(3230,97,0,609,2),(3231,99,0,609,1),(3232,134,0,609,0),(3233,208,0,609,62),(3234,93,0,610,76),(3235,97,0,610,2),(3236,99,0,610,1),(3237,134,0,610,0),(3238,208,0,610,63),(3239,93,0,611,76),(3240,97,0,611,2),(3241,99,0,611,1),(3242,134,0,611,0),(3243,208,0,611,64),(3244,93,0,612,76),(3245,97,0,612,2),(3246,99,0,612,1),(3247,134,0,612,0),(3248,208,0,612,65),(3249,93,0,613,76),(3250,97,0,613,2),(3251,99,0,613,1),(3252,134,0,613,0),(3253,208,0,613,67),(3254,93,0,614,72),(3255,97,0,614,2),(3256,99,0,614,1),(3257,134,0,614,2),(3258,208,0,614,61),(3259,93,0,615,73),(3260,97,0,615,2),(3261,99,0,615,1),(3262,134,0,615,2),(3263,208,0,615,61),(3264,93,0,616,74),(3265,97,0,616,2),(3266,99,0,616,1),(3267,134,0,616,2),(3268,208,0,616,61),(3269,93,0,617,75),(3270,97,0,617,2),(3271,99,0,617,1),(3272,134,0,617,2),(3273,208,0,617,61),(3274,93,0,618,76),(3275,97,0,618,2),(3276,99,0,618,1),(3277,134,0,618,2),(3278,208,0,618,61),(3279,93,0,619,72),(3280,97,0,619,2),(3281,99,0,619,1),(3282,134,0,619,2),(3283,208,0,619,62),(3284,93,0,620,73),(3285,97,0,620,2),(3286,99,0,620,1),(3287,134,0,620,2),(3288,208,0,620,62),(3289,93,0,621,74),(3290,97,0,621,2),(3291,99,0,621,1),(3292,134,0,621,2),(3293,208,0,621,62),(3294,93,0,622,75),(3295,97,0,622,2),(3296,99,0,622,1),(3297,134,0,622,2),(3298,208,0,622,62),(3299,93,0,623,76),(3300,97,0,623,2),(3301,99,0,623,1),(3302,134,0,623,2),(3303,208,0,623,62),(3304,93,0,624,72),(3305,97,0,624,2),(3306,99,0,624,1),(3307,134,0,624,2),(3308,208,0,624,64),(3309,93,0,625,73),(3310,97,0,625,2),(3311,99,0,625,1),(3312,134,0,625,2),(3313,208,0,625,64),(3314,93,0,626,74),(3315,97,0,626,2),(3316,99,0,626,1),(3317,134,0,626,2),(3318,208,0,626,64),(3319,93,0,627,75),(3320,97,0,627,2),(3321,99,0,627,1),(3322,134,0,627,2),(3323,208,0,627,64),(3324,93,0,628,76),(3325,97,0,628,2),(3326,99,0,628,1),(3327,134,0,628,2),(3328,208,0,628,64),(3329,93,0,629,72),(3330,97,0,629,2),(3331,99,0,629,1),(3332,134,0,629,2),(3333,208,0,629,65),(3334,93,0,630,73),(3335,97,0,630,2),(3336,99,0,630,1),(3337,134,0,630,2),(3338,208,0,630,65),(3339,93,0,631,74),(3340,97,0,631,2),(3341,99,0,631,1),(3342,134,0,631,2),(3343,208,0,631,65),(3344,93,0,632,75),(3345,97,0,632,2),(3346,99,0,632,1),(3347,134,0,632,2),(3348,208,0,632,65),(3349,93,0,633,76),(3350,97,0,633,2),(3351,99,0,633,1),(3352,134,0,633,2),(3353,208,0,633,65),(3354,93,0,634,72),(3355,97,0,634,2),(3356,99,0,634,1),(3357,134,0,634,2),(3358,208,0,634,66),(3359,93,0,635,73),(3360,97,0,635,2),(3361,99,0,635,1),(3362,134,0,635,2),(3363,208,0,635,66),(3364,93,0,636,74),(3365,97,0,636,2),(3366,99,0,636,1),(3367,134,0,636,2),(3368,208,0,636,66),(3369,93,0,637,75),(3370,97,0,637,2),(3371,99,0,637,1),(3372,134,0,637,2),(3373,208,0,637,66),(3374,93,0,638,76),(3375,97,0,638,2),(3376,99,0,638,1),(3377,134,0,638,2),(3378,208,0,638,66),(3379,93,0,639,72),(3380,97,0,639,2),(3381,99,0,639,1),(3382,134,0,639,2),(3383,208,0,639,67),(3384,93,0,640,73),(3385,97,0,640,2),(3386,99,0,640,1),(3387,134,0,640,2),(3388,208,0,640,67),(3389,93,0,641,74),(3390,97,0,641,2),(3391,99,0,641,1),(3392,134,0,641,2),(3393,208,0,641,67),(3394,93,0,642,75),(3395,97,0,642,2),(3396,99,0,642,1),(3397,134,0,642,2),(3398,208,0,642,67),(3399,93,0,643,76),(3400,97,0,643,2),(3401,99,0,643,1),(3402,134,0,643,2),(3403,208,0,643,67),(3404,93,0,644,71),(3405,97,0,644,2),(3406,99,0,644,1),(3407,134,0,644,2),(3408,208,0,644,58),(3409,93,0,645,71),(3410,97,0,645,2),(3411,99,0,645,1),(3412,134,0,645,2),(3413,208,0,645,59),(3414,93,0,646,71),(3415,97,0,646,2),(3416,99,0,646,1),(3417,134,0,646,2),(3418,208,0,646,82),(3419,93,0,647,71),(3420,97,0,647,2),(3421,99,0,647,1),(3422,134,0,647,2),(3423,208,0,647,61),(3424,93,0,648,71),(3425,97,0,648,2),(3426,99,0,648,1),(3427,134,0,648,2),(3428,208,0,648,62),(3429,93,0,649,71),(3430,97,0,649,2),(3431,99,0,649,1),(3432,134,0,649,2),(3433,208,0,649,63),(3434,93,0,650,72),(3435,97,0,650,2),(3436,99,0,650,1),(3437,134,0,650,2),(3438,208,0,650,58),(3439,93,0,651,72),(3440,97,0,651,2),(3441,99,0,651,1),(3442,134,0,651,2),(3443,208,0,651,59),(3444,93,0,652,72),(3445,97,0,652,2),(3446,99,0,652,1),(3447,134,0,652,2),(3448,208,0,652,82),(3449,93,0,653,72),(3450,97,0,653,2),(3451,99,0,653,1),(3452,134,0,653,2),(3453,208,0,653,61),(3454,93,0,654,72),(3455,97,0,654,2),(3456,99,0,654,1),(3457,134,0,654,2),(3458,208,0,654,62),(3459,93,0,655,72),(3460,97,0,655,2),(3461,99,0,655,1),(3462,134,0,655,2),(3463,208,0,655,63),(3464,93,0,656,73),(3465,97,0,656,2),(3466,99,0,656,1),(3467,134,0,656,2),(3468,208,0,656,58),(3469,93,0,657,73),(3470,97,0,657,2),(3471,99,0,657,1),(3472,134,0,657,2),(3473,208,0,657,59),(3474,93,0,658,73),(3475,97,0,658,2),(3476,99,0,658,1),(3477,134,0,658,2),(3478,208,0,658,82),(3479,93,0,659,73),(3480,97,0,659,2),(3481,99,0,659,1),(3482,134,0,659,2),(3483,208,0,659,61),(3484,93,0,660,73),(3485,97,0,660,2),(3486,99,0,660,1),(3487,134,0,660,2),(3488,208,0,660,62),(3489,93,0,661,73),(3490,97,0,661,2),(3491,99,0,661,1),(3492,134,0,661,2),(3493,208,0,661,63),(3494,93,0,662,75),(3495,97,0,662,2),(3496,99,0,662,1),(3497,134,0,662,2),(3498,208,0,662,58),(3499,93,0,663,75),(3500,97,0,663,2),(3501,99,0,663,1),(3502,134,0,663,2),(3503,208,0,663,59),(3504,93,0,664,75),(3505,97,0,664,2),(3506,99,0,664,1),(3507,134,0,664,2),(3508,208,0,664,82),(3509,93,0,665,75),(3510,97,0,665,2),(3511,99,0,665,1),(3512,134,0,665,2),(3513,208,0,665,61),(3514,93,0,666,75),(3515,97,0,666,2),(3516,99,0,666,1),(3517,134,0,666,2),(3518,208,0,666,62),(3519,93,0,667,75),(3520,97,0,667,2),(3521,99,0,667,1),(3522,134,0,667,2),(3523,208,0,667,63),(3524,93,0,668,76),(3525,97,0,668,2),(3526,99,0,668,1),(3527,134,0,668,2),(3528,208,0,668,58),(3529,93,0,669,76),(3530,97,0,669,2),(3531,99,0,669,1),(3532,134,0,669,2),(3533,208,0,669,59),(3534,93,0,670,76),(3535,97,0,670,2),(3536,99,0,670,1),(3537,134,0,670,2),(3538,208,0,670,82),(3539,93,0,671,76),(3540,97,0,671,2),(3541,99,0,671,1),(3542,134,0,671,2),(3543,208,0,671,61),(3544,93,0,672,76),(3545,97,0,672,2),(3546,99,0,672,1),(3547,134,0,672,2),(3548,208,0,672,62),(3549,93,0,673,76),(3550,97,0,673,2),(3551,99,0,673,1),(3552,134,0,673,2),(3553,208,0,673,63),(3554,93,0,674,71),(3555,97,0,674,2),(3556,99,0,674,1),(3557,134,0,674,2),(3558,208,0,674,61),(3559,93,0,675,72),(3560,97,0,675,2),(3561,99,0,675,1),(3562,134,0,675,2),(3563,208,0,675,61),(3564,93,0,676,73),(3565,97,0,676,2),(3566,99,0,676,1),(3567,134,0,676,2),(3568,208,0,676,61),(3569,93,0,677,74),(3570,97,0,677,2),(3571,99,0,677,1),(3572,134,0,677,2),(3573,208,0,677,61),(3574,93,0,678,76),(3575,97,0,678,2),(3576,99,0,678,1),(3577,134,0,678,2),(3578,208,0,678,61),(3579,93,0,679,71),(3580,97,0,679,2),(3581,99,0,679,1),(3582,134,0,679,2),(3583,208,0,679,62),(3584,93,0,680,72),(3585,97,0,680,2),(3586,99,0,680,1),(3587,134,0,680,2),(3588,208,0,680,62),(3589,93,0,681,73),(3590,97,0,681,2),(3591,99,0,681,1),(3592,134,0,681,2),(3593,208,0,681,62),(3594,93,0,682,74),(3595,97,0,682,2),(3596,99,0,682,1),(3597,134,0,682,2),(3598,208,0,682,62),(3599,93,0,683,76),(3600,97,0,683,2),(3601,99,0,683,1),(3602,134,0,683,2),(3603,208,0,683,62),(3604,93,0,684,71),(3605,97,0,684,2),(3606,99,0,684,1),(3607,134,0,684,2),(3608,208,0,684,63),(3609,93,0,685,72),(3610,97,0,685,2),(3611,99,0,685,1),(3612,134,0,685,2),(3613,208,0,685,63),(3614,93,0,686,73),(3615,97,0,686,2),(3616,99,0,686,1),(3617,134,0,686,2),(3618,208,0,686,63),(3619,93,0,687,74),(3620,97,0,687,2),(3621,99,0,687,1),(3622,134,0,687,2),(3623,208,0,687,63),(3624,93,0,688,76),(3625,97,0,688,2),(3626,99,0,688,1),(3627,134,0,688,2),(3628,208,0,688,63),(3629,93,0,689,71),(3630,97,0,689,2),(3631,99,0,689,1),(3632,134,0,689,2),(3633,208,0,689,64),(3634,93,0,690,72),(3635,97,0,690,2),(3636,99,0,690,1),(3637,134,0,690,2),(3638,208,0,690,64),(3639,93,0,691,73),(3640,97,0,691,2),(3641,99,0,691,1),(3642,134,0,691,2),(3643,208,0,691,64),(3644,93,0,692,74),(3645,97,0,692,2),(3646,99,0,692,1),(3647,134,0,692,2),(3648,208,0,692,64),(3649,93,0,693,76),(3650,97,0,693,2),(3651,99,0,693,1),(3652,134,0,693,2),(3653,208,0,693,64),(3654,93,0,694,71),(3655,97,0,694,2),(3656,99,0,694,1),(3657,134,0,694,2),(3658,208,0,694,65),(3659,93,0,695,72),(3660,97,0,695,2),(3661,99,0,695,1),(3662,134,0,695,2),(3663,208,0,695,65),(3664,93,0,696,73),(3665,97,0,696,2),(3666,99,0,696,1),(3667,134,0,696,2),(3668,208,0,696,65),(3669,93,0,697,74),(3670,97,0,697,2),(3671,99,0,697,1),(3672,134,0,697,2),(3673,208,0,697,65),(3674,93,0,698,76),(3675,97,0,698,2),(3676,99,0,698,1),(3677,134,0,698,2),(3678,208,0,698,65),(3679,93,0,699,71),(3680,97,0,699,2),(3681,99,0,699,1),(3682,134,0,699,2),(3683,208,0,699,62),(3684,93,0,700,72),(3685,97,0,700,2),(3686,99,0,700,1),(3687,134,0,700,2),(3688,208,0,700,62),(3689,93,0,701,74),(3690,97,0,701,2),(3691,99,0,701,1),(3692,134,0,701,2),(3693,208,0,701,62),(3694,93,0,702,75),(3695,97,0,702,2),(3696,99,0,702,1),(3697,134,0,702,2),(3698,208,0,702,62),(3699,93,0,703,76),(3700,97,0,703,2),(3701,99,0,703,1),(3702,134,0,703,2),(3703,208,0,703,62),(3704,93,0,704,71),(3705,97,0,704,2),(3706,99,0,704,1),(3707,134,0,704,2),(3708,208,0,704,63),(3709,93,0,705,72),(3710,97,0,705,2),(3711,99,0,705,1),(3712,134,0,705,2),(3713,208,0,705,63),(3714,93,0,706,74),(3715,97,0,706,2),(3716,99,0,706,1),(3717,134,0,706,2),(3718,208,0,706,63),(3719,93,0,707,75),(3720,97,0,707,2),(3721,99,0,707,1),(3722,134,0,707,2),(3723,208,0,707,63),(3724,93,0,708,76),(3725,97,0,708,2),(3726,99,0,708,1),(3727,134,0,708,2),(3728,208,0,708,63),(3729,93,0,709,71),(3730,97,0,709,2),(3731,99,0,709,1),(3732,134,0,709,2),(3733,208,0,709,64),(3734,93,0,710,72),(3735,97,0,710,2),(3736,99,0,710,1),(3737,134,0,710,2),(3738,208,0,710,64),(3739,93,0,711,74),(3740,97,0,711,2),(3741,99,0,711,1),(3742,134,0,711,2),(3743,208,0,711,64),(3744,93,0,712,75),(3745,97,0,712,2),(3746,99,0,712,1),(3747,134,0,712,2),(3748,208,0,712,64),(3749,93,0,713,76),(3750,97,0,713,2),(3751,99,0,713,1),(3752,134,0,713,2),(3753,208,0,713,64),(3754,93,0,714,71),(3755,97,0,714,2),(3756,99,0,714,1),(3757,134,0,714,2),(3758,212,0,714,77),(3759,93,0,715,71),(3760,97,0,715,2),(3761,99,0,715,1),(3762,134,0,715,2),(3763,212,0,715,78),(3764,93,0,716,71),(3765,97,0,716,2),(3766,99,0,716,1),(3767,134,0,716,2),(3768,212,0,716,79),(3769,93,0,717,71),(3770,97,0,717,2),(3771,99,0,717,1),(3772,134,0,717,2),(3773,212,0,717,80),(3774,93,0,718,72),(3775,97,0,718,2),(3776,99,0,718,1),(3777,134,0,718,2),(3778,212,0,718,77),(3779,93,0,719,72),(3780,97,0,719,2),(3781,99,0,719,1),(3782,134,0,719,2),(3783,212,0,719,78),(3784,93,0,720,72),(3785,97,0,720,2),(3786,99,0,720,1),(3787,134,0,720,2),(3788,212,0,720,79),(3789,93,0,721,72),(3790,97,0,721,2),(3791,99,0,721,1),(3792,134,0,721,2),(3793,212,0,721,80),(3794,93,0,722,73),(3795,97,0,722,2),(3796,99,0,722,1),(3797,134,0,722,2),(3798,212,0,722,77),(3799,93,0,723,73),(3800,97,0,723,2),(3801,99,0,723,1),(3802,134,0,723,2),(3803,212,0,723,78),(3804,93,0,724,73),(3805,97,0,724,2),(3806,99,0,724,1),(3807,134,0,724,2),(3808,212,0,724,79),(3809,93,0,725,73),(3810,97,0,725,2),(3811,99,0,725,1),(3812,134,0,725,2),(3813,212,0,725,80),(3814,93,0,726,75),(3815,97,0,726,2),(3816,99,0,726,1),(3817,134,0,726,2),(3818,212,0,726,77),(3819,93,0,727,75),(3820,97,0,727,2),(3821,99,0,727,1),(3822,134,0,727,2),(3823,212,0,727,78),(3824,93,0,728,75),(3825,97,0,728,2),(3826,99,0,728,1),(3827,134,0,728,2),(3828,212,0,728,79),(3829,93,0,729,75),(3830,97,0,729,2),(3831,99,0,729,1),(3832,134,0,729,2),(3833,212,0,729,80),(3834,93,0,730,76),(3835,97,0,730,2),(3836,99,0,730,1),(3837,134,0,730,2),(3838,212,0,730,77),(3839,93,0,731,76),(3840,97,0,731,2),(3841,99,0,731,1),(3842,134,0,731,2),(3843,212,0,731,78),(3844,93,0,732,76),(3845,97,0,732,2),(3846,99,0,732,1),(3847,134,0,732,2),(3848,212,0,732,79),(3849,93,0,733,76),(3850,97,0,733,2),(3851,99,0,733,1),(3852,134,0,733,2),(3853,212,0,733,80),(3854,93,0,734,72),(3855,97,0,734,2),(3856,99,0,734,1),(3857,134,0,734,2),(3858,208,0,734,64),(3859,93,0,735,72),(3860,97,0,735,2),(3861,99,0,735,1),(3862,134,0,735,2),(3863,208,0,735,65),(3864,93,0,736,72),(3865,97,0,736,2),(3866,99,0,736,1),(3867,134,0,736,2),(3868,208,0,736,66),(3869,93,0,737,73),(3870,97,0,737,2),(3871,99,0,737,1),(3872,134,0,737,2),(3873,208,0,737,64),(3874,93,0,738,73),(3875,97,0,738,2),(3876,99,0,738,1),(3877,134,0,738,2),(3878,208,0,738,65),(3879,93,0,739,73),(3880,97,0,739,2),(3881,99,0,739,1),(3882,134,0,739,2),(3883,208,0,739,66),(3884,93,0,740,74),(3885,97,0,740,2),(3886,99,0,740,1),(3887,134,0,740,2),(3888,208,0,740,64),(3889,93,0,741,74),(3890,97,0,741,2),(3891,99,0,741,1),(3892,134,0,741,2),(3893,208,0,741,65),(3894,93,0,742,74),(3895,97,0,742,2),(3896,99,0,742,1),(3897,134,0,742,2),(3898,208,0,742,66),(3899,93,0,743,75),(3900,97,0,743,2),(3901,99,0,743,1),(3902,134,0,743,2),(3903,208,0,743,64),(3904,93,0,744,75),(3905,97,0,744,2),(3906,99,0,744,1),(3907,134,0,744,2),(3908,208,0,744,65),(3909,93,0,745,75),(3910,97,0,745,2),(3911,99,0,745,1),(3912,134,0,745,2),(3913,208,0,745,66),(3914,93,0,746,76),(3915,97,0,746,2),(3916,99,0,746,1),(3917,134,0,746,2),(3918,208,0,746,64),(3919,93,0,747,76),(3920,97,0,747,2),(3921,99,0,747,1),(3922,134,0,747,2),(3923,208,0,747,65),(3924,93,0,748,76),(3925,97,0,748,2),(3926,99,0,748,1),(3927,134,0,748,2),(3928,208,0,748,66),(3929,93,0,749,71),(3930,97,0,749,2),(3931,99,0,749,1),(3932,134,0,749,2),(3933,212,0,749,78),(3934,93,0,750,71),(3935,97,0,750,2),(3936,99,0,750,1),(3937,134,0,750,2),(3938,212,0,750,79),(3939,93,0,751,71),(3940,97,0,751,2),(3941,99,0,751,1),(3942,134,0,751,2),(3943,212,0,751,80),(3944,93,0,752,71),(3945,97,0,752,2),(3946,99,0,752,1),(3947,134,0,752,2),(3948,212,0,752,81),(3949,93,0,753,72),(3950,97,0,753,2),(3951,99,0,753,1),(3952,134,0,753,2),(3953,212,0,753,78),(3954,93,0,754,72),(3955,97,0,754,2),(3956,99,0,754,1),(3957,134,0,754,2),(3958,212,0,754,79),(3959,93,0,755,72),(3960,97,0,755,2),(3961,99,0,755,1),(3962,134,0,755,2),(3963,212,0,755,80),(3964,93,0,756,72),(3965,97,0,756,2),(3966,99,0,756,1),(3967,134,0,756,2),(3968,212,0,756,81),(3969,93,0,757,74),(3970,97,0,757,2),(3971,99,0,757,1),(3972,134,0,757,2),(3973,212,0,757,78),(3974,93,0,758,74),(3975,97,0,758,2),(3976,99,0,758,1),(3977,134,0,758,2),(3978,212,0,758,79),(3979,93,0,759,74),(3980,97,0,759,2),(3981,99,0,759,1),(3982,134,0,759,2),(3983,212,0,759,80),(3984,93,0,760,74),(3985,97,0,760,2),(3986,99,0,760,1),(3987,134,0,760,2),(3988,212,0,760,81),(3989,93,0,761,75),(3990,97,0,761,2),(3991,99,0,761,1),(3992,134,0,761,2),(3993,212,0,761,78),(3994,93,0,762,75),(3995,97,0,762,2),(3996,99,0,762,1),(3997,134,0,762,2),(3998,212,0,762,79),(3999,93,0,763,75),(4000,97,0,763,2),(4001,99,0,763,1),(4002,134,0,763,2),(4003,212,0,763,80),(4004,93,0,764,75),(4005,97,0,764,2),(4006,99,0,764,1),(4007,134,0,764,2),(4008,212,0,764,81),(4009,93,0,765,76),(4010,97,0,765,2),(4011,99,0,765,1),(4012,134,0,765,2),(4013,212,0,765,78),(4014,93,0,766,76),(4015,97,0,766,2),(4016,99,0,766,1),(4017,134,0,766,2),(4018,212,0,766,79),(4019,93,0,767,76),(4020,97,0,767,2),(4021,99,0,767,1),(4022,134,0,767,2),(4023,212,0,767,80),(4024,93,0,768,76),(4025,97,0,768,2),(4026,99,0,768,1),(4027,134,0,768,2),(4028,212,0,768,81),(4029,93,0,769,72),(4030,97,0,769,2),(4031,99,0,769,1),(4032,134,0,769,2),(4033,212,0,769,77),(4034,93,0,770,72),(4035,97,0,770,2),(4036,99,0,770,1),(4037,134,0,770,2),(4038,212,0,770,78),(4039,93,0,771,72),(4040,97,0,771,2),(4041,99,0,771,1),(4042,134,0,771,2),(4043,212,0,771,79),(4044,93,0,772,72),(4045,97,0,772,2),(4046,99,0,772,1),(4047,134,0,772,2),(4048,212,0,772,80),(4049,93,0,773,73),(4050,97,0,773,2),(4051,99,0,773,1),(4052,134,0,773,2),(4053,212,0,773,77),(4054,93,0,774,73),(4055,97,0,774,2),(4056,99,0,774,1),(4057,134,0,774,2),(4058,212,0,774,78),(4059,93,0,775,73),(4060,97,0,775,2),(4061,99,0,775,1),(4062,134,0,775,2),(4063,212,0,775,79),(4064,93,0,776,73),(4065,97,0,776,2),(4066,99,0,776,1),(4067,134,0,776,2),(4068,212,0,776,80),(4069,93,0,777,74),(4070,97,0,777,2),(4071,99,0,777,1),(4072,134,0,777,2),(4073,212,0,777,77),(4074,93,0,778,74),(4075,97,0,778,2),(4076,99,0,778,1),(4077,134,0,778,2),(4078,212,0,778,78),(4079,93,0,779,74),(4080,97,0,779,2),(4081,99,0,779,1),(4082,134,0,779,2),(4083,212,0,779,79),(4084,93,0,780,74),(4085,97,0,780,2),(4086,99,0,780,1),(4087,134,0,780,2),(4088,212,0,780,80),(4089,93,0,781,75),(4090,97,0,781,2),(4091,99,0,781,1),(4092,134,0,781,2),(4093,212,0,781,77),(4094,93,0,782,75),(4095,97,0,782,2),(4096,99,0,782,1),(4097,134,0,782,2),(4098,212,0,782,78),(4099,93,0,783,75),(4100,97,0,783,2),(4101,99,0,783,1),(4102,134,0,783,2),(4103,212,0,783,79),(4104,93,0,784,75),(4105,97,0,784,2),(4106,99,0,784,1),(4107,134,0,784,2),(4108,212,0,784,80),(4109,93,0,785,76),(4110,97,0,785,2),(4111,99,0,785,1),(4112,134,0,785,2),(4113,212,0,785,77),(4114,93,0,786,76),(4115,97,0,786,2),(4116,99,0,786,1),(4117,134,0,786,2),(4118,212,0,786,78),(4119,93,0,787,76),(4120,97,0,787,2),(4121,99,0,787,1),(4122,134,0,787,2),(4123,212,0,787,79),(4124,93,0,788,76),(4125,97,0,788,2),(4126,99,0,788,1),(4127,134,0,788,2),(4128,212,0,788,80),(4129,208,0,53,NULL),(4130,93,0,789,72),(4131,97,0,789,2),(4132,99,0,789,1),(4133,134,0,789,2),(4134,212,0,789,78),(4135,93,0,790,72),(4136,97,0,790,2),(4137,99,0,790,1),(4138,134,0,790,2),(4139,212,0,790,79),(4140,93,0,791,72),(4141,97,0,791,2),(4142,99,0,791,1),(4143,134,0,791,2),(4144,212,0,791,80),(4145,93,0,792,73),(4146,97,0,792,2),(4147,99,0,792,1),(4148,134,0,792,2),(4149,212,0,792,78),(4150,93,0,793,73),(4151,97,0,793,2),(4152,99,0,793,1),(4153,134,0,793,2),(4154,212,0,793,79),(4155,93,0,794,73),(4156,97,0,794,2),(4157,99,0,794,1),(4158,134,0,794,2),(4159,212,0,794,80),(4160,93,0,795,74),(4161,97,0,795,2),(4162,99,0,795,1),(4163,134,0,795,2),(4164,212,0,795,78),(4165,93,0,796,74),(4166,97,0,796,2),(4167,99,0,796,1),(4168,134,0,796,2),(4169,212,0,796,79),(4170,93,0,797,74),(4171,97,0,797,2),(4172,99,0,797,1),(4173,134,0,797,2),(4174,212,0,797,80),(4175,93,0,798,75),(4176,97,0,798,2),(4177,99,0,798,1),(4178,134,0,798,2),(4179,212,0,798,78),(4180,93,0,799,75),(4181,97,0,799,2),(4182,99,0,799,1),(4183,134,0,799,2),(4184,212,0,799,79),(4185,93,0,800,75),(4186,97,0,800,2),(4187,99,0,800,1),(4188,134,0,800,2),(4189,212,0,800,80),(4190,93,0,801,76),(4191,97,0,801,2),(4192,99,0,801,1),(4193,134,0,801,2),(4194,212,0,801,78),(4195,93,0,802,76),(4196,97,0,802,2),(4197,99,0,802,1),(4198,134,0,802,2),(4199,212,0,802,79),(4200,93,0,803,76),(4201,97,0,803,2),(4202,99,0,803,1),(4203,134,0,803,2),(4204,212,0,803,80),(4205,93,0,804,71),(4206,97,0,804,2),(4207,99,0,804,1),(4208,134,0,804,2),(4209,212,0,804,78),(4210,93,0,805,71),(4211,97,0,805,2),(4212,99,0,805,1),(4213,134,0,805,2),(4214,212,0,805,79),(4215,93,0,806,71),(4216,97,0,806,2),(4217,99,0,806,1),(4218,134,0,806,2),(4219,212,0,806,80),(4220,93,0,807,71),(4221,97,0,807,2),(4222,99,0,807,1),(4223,134,0,807,2),(4224,212,0,807,81),(4225,93,0,808,72),(4226,97,0,808,2),(4227,99,0,808,1),(4228,134,0,808,2),(4229,212,0,808,78),(4230,93,0,809,72),(4231,97,0,809,2),(4232,99,0,809,1),(4233,134,0,809,2),(4234,212,0,809,79),(4235,93,0,810,72),(4236,97,0,810,2),(4237,99,0,810,1),(4238,134,0,810,2),(4239,212,0,810,80),(4240,93,0,811,72),(4241,97,0,811,2),(4242,99,0,811,1),(4243,134,0,811,2),(4244,212,0,811,81),(4245,93,0,812,74),(4246,97,0,812,2),(4247,99,0,812,1),(4248,134,0,812,2),(4249,212,0,812,78),(4250,93,0,813,74),(4251,97,0,813,2),(4252,99,0,813,1),(4253,134,0,813,2),(4254,212,0,813,79),(4255,93,0,814,74),(4256,97,0,814,2),(4257,99,0,814,1),(4258,134,0,814,2),(4259,212,0,814,80),(4260,93,0,815,74),(4261,97,0,815,2),(4262,99,0,815,1),(4263,134,0,815,2),(4264,212,0,815,81),(4265,93,0,816,75),(4266,97,0,816,2),(4267,99,0,816,1),(4268,134,0,816,2),(4269,212,0,816,78),(4270,93,0,817,75),(4271,97,0,817,2),(4272,99,0,817,1),(4273,134,0,817,2),(4274,212,0,817,79),(4275,93,0,818,75),(4276,97,0,818,2),(4277,99,0,818,1),(4278,134,0,818,2),(4279,212,0,818,80),(4280,93,0,819,75),(4281,97,0,819,2),(4282,99,0,819,1),(4283,134,0,819,2),(4284,212,0,819,81),(4285,93,0,820,76),(4286,97,0,820,2),(4287,99,0,820,1),(4288,134,0,820,2),(4289,212,0,820,78),(4290,93,0,821,76),(4291,97,0,821,2),(4292,99,0,821,1),(4293,134,0,821,2),(4294,212,0,821,79),(4295,93,0,822,76),(4296,97,0,822,2),(4297,99,0,822,1),(4298,134,0,822,2),(4299,212,0,822,80),(4300,93,0,823,76),(4301,97,0,823,2),(4302,99,0,823,1),(4303,134,0,823,2),(4304,212,0,823,81),(4305,93,0,824,72),(4306,97,0,824,2),(4307,99,0,824,1),(4308,134,0,824,0),(4309,212,0,824,77),(4310,93,0,825,72),(4311,97,0,825,2),(4312,99,0,825,1),(4313,134,0,825,0),(4314,212,0,825,78),(4315,93,0,826,72),(4316,97,0,826,2),(4317,99,0,826,1),(4318,134,0,826,0),(4319,212,0,826,79),(4320,93,0,827,72),(4321,97,0,827,2),(4322,99,0,827,1),(4323,134,0,827,0),(4324,212,0,827,80),(4325,93,0,828,73),(4326,97,0,828,2),(4327,99,0,828,1),(4328,134,0,828,0),(4329,212,0,828,77),(4330,93,0,829,73),(4331,97,0,829,2),(4332,99,0,829,1),(4333,134,0,829,0),(4334,212,0,829,78),(4335,93,0,830,73),(4336,97,0,830,2),(4337,99,0,830,1),(4338,134,0,830,0),(4339,212,0,830,79),(4340,93,0,831,73),(4341,97,0,831,2),(4342,99,0,831,1),(4343,134,0,831,0),(4344,212,0,831,80),(4345,93,0,832,74),(4346,97,0,832,2),(4347,99,0,832,1),(4348,134,0,832,0),(4349,212,0,832,77),(4350,93,0,833,74),(4351,97,0,833,2),(4352,99,0,833,1),(4353,134,0,833,0),(4354,212,0,833,78),(4355,93,0,834,74),(4356,97,0,834,2),(4357,99,0,834,1),(4358,134,0,834,0),(4359,212,0,834,79),(4360,93,0,835,74),(4361,97,0,835,2),(4362,99,0,835,1),(4363,134,0,835,0),(4364,212,0,835,80),(4365,93,0,836,75),(4366,97,0,836,2),(4367,99,0,836,1),(4368,134,0,836,0),(4369,212,0,836,77),(4370,93,0,837,75),(4371,97,0,837,2),(4372,99,0,837,1),(4373,134,0,837,0),(4374,212,0,837,78),(4375,93,0,838,75),(4376,97,0,838,2),(4377,99,0,838,1),(4378,134,0,838,0),(4379,212,0,838,79),(4380,93,0,839,75),(4381,97,0,839,2),(4382,99,0,839,1),(4383,134,0,839,0),(4384,212,0,839,80),(4385,93,0,840,76),(4386,97,0,840,2),(4387,99,0,840,1),(4388,134,0,840,0),(4389,212,0,840,77),(4390,93,0,841,76),(4391,97,0,841,2),(4392,99,0,841,1),(4393,134,0,841,0),(4394,212,0,841,78),(4395,93,0,842,76),(4396,97,0,842,2),(4397,99,0,842,1),(4398,134,0,842,0),(4399,212,0,842,79),(4400,93,0,843,76),(4401,97,0,843,2),(4402,99,0,843,1),(4403,134,0,843,0),(4404,212,0,843,80),(4406,93,0,844,71),(4407,97,0,844,2),(4408,99,0,844,1),(4409,134,0,844,2),(4410,212,0,844,78),(4411,93,0,845,71),(4412,97,0,845,2),(4413,99,0,845,1),(4414,134,0,845,2),(4415,212,0,845,79),(4416,93,0,846,71),(4417,97,0,846,2),(4418,99,0,846,1),(4419,134,0,846,2),(4420,212,0,846,80),(4421,93,0,847,71),(4422,97,0,847,2),(4423,99,0,847,1),(4424,134,0,847,2),(4425,212,0,847,81),(4426,93,0,848,72),(4427,97,0,848,2),(4428,99,0,848,1),(4429,134,0,848,2),(4430,212,0,848,78),(4431,93,0,849,72),(4432,97,0,849,2),(4433,99,0,849,1),(4434,134,0,849,2),(4435,212,0,849,79),(4436,93,0,850,72),(4437,97,0,850,2),(4438,99,0,850,1),(4439,134,0,850,2),(4440,212,0,850,80),(4441,93,0,851,72),(4442,97,0,851,2),(4443,99,0,851,1),(4444,134,0,851,2),(4445,212,0,851,81),(4446,93,0,852,74),(4447,97,0,852,2),(4448,99,0,852,1),(4449,134,0,852,2),(4450,212,0,852,78),(4451,93,0,853,74),(4452,97,0,853,2),(4453,99,0,853,1),(4454,134,0,853,2),(4455,212,0,853,79),(4456,93,0,854,74),(4457,97,0,854,2),(4458,99,0,854,1),(4459,134,0,854,2),(4460,212,0,854,80),(4461,93,0,855,74),(4462,97,0,855,2),(4463,99,0,855,1),(4464,134,0,855,2),(4465,212,0,855,81),(4466,93,0,856,75),(4467,97,0,856,2),(4468,99,0,856,1),(4469,134,0,856,2),(4470,212,0,856,78),(4471,93,0,857,75),(4472,97,0,857,2),(4473,99,0,857,1),(4474,134,0,857,2),(4475,212,0,857,79),(4476,93,0,858,75),(4477,97,0,858,2),(4478,99,0,858,1),(4479,134,0,858,2),(4480,212,0,858,80),(4481,93,0,859,75),(4482,97,0,859,2),(4483,99,0,859,1),(4484,134,0,859,2),(4485,212,0,859,81),(4486,93,0,860,76),(4487,97,0,860,2),(4488,99,0,860,1),(4489,134,0,860,2),(4490,212,0,860,78),(4491,93,0,861,76),(4492,97,0,861,2),(4493,99,0,861,1),(4494,134,0,861,2),(4495,212,0,861,79),(4496,93,0,862,76),(4497,97,0,862,2),(4498,99,0,862,1),(4499,134,0,862,2),(4500,212,0,862,80),(4501,93,0,863,76),(4502,97,0,863,2),(4503,99,0,863,1),(4504,134,0,863,2),(4505,212,0,863,81),(4506,93,0,864,71),(4507,97,0,864,2),(4508,99,0,864,1),(4509,134,0,864,2),(4510,212,0,864,78),(4511,93,0,865,71),(4512,97,0,865,2),(4513,99,0,865,1),(4514,134,0,865,2),(4515,212,0,865,79),(4516,93,0,866,71),(4517,97,0,866,2),(4518,99,0,866,1),(4519,134,0,866,2),(4520,212,0,866,80),(4521,93,0,867,72),(4522,97,0,867,2),(4523,99,0,867,1),(4524,134,0,867,2),(4525,212,0,867,78),(4526,93,0,868,72),(4527,97,0,868,2),(4528,99,0,868,1),(4529,134,0,868,2),(4530,212,0,868,79),(4531,93,0,869,72),(4532,97,0,869,2),(4533,99,0,869,1),(4534,134,0,869,2),(4535,212,0,869,80),(4536,93,0,870,73),(4537,97,0,870,2),(4538,99,0,870,1),(4539,134,0,870,2),(4540,212,0,870,78),(4541,93,0,871,73),(4542,97,0,871,2),(4543,99,0,871,1),(4544,134,0,871,2),(4545,212,0,871,79),(4546,93,0,872,73),(4547,97,0,872,2),(4548,99,0,872,1),(4549,134,0,872,2),(4550,212,0,872,80),(4551,93,0,873,75),(4552,97,0,873,2),(4553,99,0,873,1),(4554,134,0,873,2),(4555,212,0,873,78),(4556,93,0,874,75),(4557,97,0,874,2),(4558,99,0,874,1),(4559,134,0,874,2),(4560,212,0,874,79),(4561,93,0,875,75),(4562,97,0,875,2),(4563,99,0,875,1),(4564,134,0,875,2),(4565,212,0,875,80),(4566,93,0,876,76),(4567,97,0,876,2),(4568,99,0,876,1),(4569,134,0,876,2),(4570,212,0,876,78),(4571,93,0,877,76),(4572,97,0,877,2),(4573,99,0,877,1),(4574,134,0,877,2),(4575,212,0,877,79),(4576,93,0,878,76),(4577,97,0,878,2),(4578,99,0,878,1),(4579,134,0,878,2),(4580,212,0,878,80),(4581,93,0,879,71),(4582,97,0,879,2),(4583,99,0,879,1),(4584,134,0,879,2),(4585,212,0,879,77),(4586,93,0,880,71),(4587,97,0,880,2),(4588,99,0,880,1),(4589,134,0,880,2),(4590,212,0,880,78),(4591,93,0,881,71),(4592,97,0,881,2),(4593,99,0,881,1),(4594,134,0,881,2),(4595,212,0,881,79),(4596,93,0,882,71),(4597,97,0,882,2),(4598,99,0,882,1),(4599,134,0,882,2),(4600,212,0,882,80),(4601,93,0,883,71),(4602,97,0,883,2),(4603,99,0,883,1),(4604,134,0,883,2),(4605,212,0,883,81),(4606,93,0,884,72),(4607,97,0,884,2),(4608,99,0,884,1),(4609,134,0,884,2),(4610,212,0,884,77),(4611,93,0,885,72),(4612,97,0,885,2),(4613,99,0,885,1),(4614,134,0,885,2),(4615,212,0,885,78),(4616,93,0,886,72),(4617,97,0,886,2),(4618,99,0,886,1),(4619,134,0,886,2),(4620,212,0,886,79),(4621,93,0,887,72),(4622,97,0,887,2),(4623,99,0,887,1),(4624,134,0,887,2),(4625,212,0,887,80),(4626,93,0,888,72),(4627,97,0,888,2),(4628,99,0,888,1),(4629,134,0,888,2),(4630,212,0,888,81),(4631,93,0,889,74),(4632,97,0,889,2),(4633,99,0,889,1),(4634,134,0,889,2),(4635,212,0,889,77),(4636,93,0,890,74),(4637,97,0,890,2),(4638,99,0,890,1),(4639,134,0,890,2),(4640,212,0,890,78),(4641,93,0,891,74),(4642,97,0,891,2),(4643,99,0,891,1),(4644,134,0,891,2),(4645,212,0,891,79),(4646,93,0,892,74),(4647,97,0,892,2),(4648,99,0,892,1),(4649,134,0,892,2),(4650,212,0,892,80),(4651,93,0,893,74),(4652,97,0,893,2),(4653,99,0,893,1),(4654,134,0,893,2),(4655,212,0,893,81),(4656,93,0,894,75),(4657,97,0,894,2),(4658,99,0,894,1),(4659,134,0,894,2),(4660,212,0,894,77),(4661,93,0,895,75),(4662,97,0,895,2),(4663,99,0,895,1),(4664,134,0,895,2),(4665,212,0,895,78),(4666,93,0,896,75),(4667,97,0,896,2),(4668,99,0,896,1),(4669,134,0,896,2),(4670,212,0,896,79),(4671,93,0,897,75),(4672,97,0,897,2),(4673,99,0,897,1),(4674,134,0,897,2),(4675,212,0,897,80),(4676,93,0,898,75),(4677,97,0,898,2),(4678,99,0,898,1),(4679,134,0,898,2),(4680,212,0,898,81),(4681,93,0,899,76),(4682,97,0,899,2),(4683,99,0,899,1),(4684,134,0,899,2),(4685,212,0,899,77),(4686,93,0,900,76),(4687,97,0,900,2),(4688,99,0,900,1),(4689,134,0,900,2),(4690,212,0,900,78),(4691,93,0,901,76),(4692,97,0,901,2),(4693,99,0,901,1),(4694,134,0,901,2),(4695,212,0,901,79),(4696,93,0,902,76),(4697,97,0,902,2),(4698,99,0,902,1),(4699,134,0,902,2),(4700,212,0,902,80),(4701,93,0,903,76),(4702,97,0,903,2),(4703,99,0,903,1),(4704,134,0,903,2),(4705,212,0,903,81),(4706,208,0,36,NULL),(4707,93,0,904,71),(4708,97,0,904,2),(4709,99,0,904,1),(4710,134,0,904,0),(4711,212,0,904,77),(4712,93,0,905,71),(4713,97,0,905,2),(4714,99,0,905,1),(4715,134,0,905,0),(4716,212,0,905,78),(4717,93,0,906,71),(4718,97,0,906,2),(4719,99,0,906,1),(4720,134,0,906,0),(4721,212,0,906,79),(4722,93,0,907,71),(4723,97,0,907,2),(4724,99,0,907,1),(4725,134,0,907,0),(4726,212,0,907,80),(4727,93,0,908,73),(4728,97,0,908,2),(4729,99,0,908,1),(4730,134,0,908,0),(4731,212,0,908,77),(4732,93,0,909,73),(4733,97,0,909,2),(4734,99,0,909,1),(4735,134,0,909,0),(4736,212,0,909,78),(4737,93,0,910,73),(4738,97,0,910,2),(4739,99,0,910,1),(4740,134,0,910,0),(4741,212,0,910,79),(4742,93,0,911,73),(4743,97,0,911,2),(4744,99,0,911,1),(4745,134,0,911,0),(4746,212,0,911,80),(4747,93,0,912,74),(4748,97,0,912,2),(4749,99,0,912,1),(4750,134,0,912,0),(4751,212,0,912,77),(4752,93,0,913,74),(4753,97,0,913,2),(4754,99,0,913,1),(4755,134,0,913,0),(4756,212,0,913,78),(4757,93,0,914,74),(4758,97,0,914,2),(4759,99,0,914,1),(4760,134,0,914,0),(4761,212,0,914,79),(4762,93,0,915,74),(4763,97,0,915,2),(4764,99,0,915,1),(4765,134,0,915,0),(4766,212,0,915,80),(4808,93,0,924,74),(4809,97,0,924,2),(4810,99,0,924,1),(4811,134,0,924,2),(4812,212,0,924,78),(4813,93,0,925,74),(4814,97,0,925,2),(4815,99,0,925,1),(4816,134,0,925,2),(4817,212,0,925,79),(4818,93,0,926,74),(4819,97,0,926,2),(4820,99,0,926,1),(4821,134,0,926,2),(4822,212,0,926,80),(4823,93,0,927,75),(4824,97,0,927,2),(4825,99,0,927,1),(4826,134,0,927,2),(4827,212,0,927,78),(4828,93,0,928,75),(4829,97,0,928,2),(4830,99,0,928,1),(4831,134,0,928,2),(4832,212,0,928,79),(4833,93,0,929,75),(4834,97,0,929,2),(4835,99,0,929,1),(4836,134,0,929,2),(4837,212,0,929,80),(4839,93,0,930,73),(4840,97,0,930,2),(4841,99,0,930,1),(4842,134,0,930,2),(4843,212,0,930,78),(4844,93,0,931,73),(4845,97,0,931,2),(4846,99,0,931,1),(4847,134,0,931,2),(4848,212,0,931,79),(4849,93,0,932,73),(4850,97,0,932,2),(4851,99,0,932,1),(4852,134,0,932,2),(4853,212,0,932,80),(4854,93,0,933,74),(4855,97,0,933,2),(4856,99,0,933,1),(4857,134,0,933,2),(4858,212,0,933,78),(4859,93,0,934,74),(4860,97,0,934,2),(4861,99,0,934,1),(4862,134,0,934,2),(4863,212,0,934,79),(4864,93,0,935,74),(4865,97,0,935,2),(4866,99,0,935,1),(4867,134,0,935,2),(4868,212,0,935,80),(4869,93,0,936,73),(4870,97,0,936,2),(4871,99,0,936,1),(4872,134,0,936,2),(4873,212,0,936,78),(4874,93,0,937,73),(4875,97,0,937,2),(4876,99,0,937,1),(4877,134,0,937,2),(4878,212,0,937,79),(4879,93,0,938,73),(4880,97,0,938,2),(4881,99,0,938,1),(4882,134,0,938,2),(4883,212,0,938,80),(4885,93,0,939,75),(4886,97,0,939,2),(4887,99,0,939,1),(4888,134,0,939,2),(4889,212,0,939,78),(4890,93,0,940,75),(4891,97,0,940,2),(4892,99,0,940,1),(4893,134,0,940,2),(4894,212,0,940,79),(4895,93,0,941,75),(4896,97,0,941,2),(4897,99,0,941,1),(4898,134,0,941,2),(4899,212,0,941,80),(4900,93,0,942,75),(4901,97,0,942,2),(4902,99,0,942,1),(4903,134,0,942,0),(4904,212,0,942,78),(4905,93,0,943,75),(4906,97,0,943,2),(4907,99,0,943,1),(4908,134,0,943,0),(4909,212,0,943,79),(4910,93,0,944,75),(4911,97,0,944,2),(4912,99,0,944,1),(4913,134,0,944,0),(4914,212,0,944,80),(4915,93,0,945,76),(4916,97,0,945,2),(4917,99,0,945,1),(4918,134,0,945,0),(4919,212,0,945,78),(4920,93,0,946,76),(4921,97,0,946,2),(4922,99,0,946,1),(4923,134,0,946,0),(4924,212,0,946,79),(4925,93,0,947,76),(4926,97,0,947,2),(4927,99,0,947,1),(4928,134,0,947,0),(4929,212,0,947,80),(4930,93,0,948,75),(4931,97,0,948,2),(4932,99,0,948,1),(4933,134,0,948,2),(4934,208,0,948,62),(4935,93,0,949,75),(4936,97,0,949,2),(4937,99,0,949,1),(4938,134,0,949,2),(4939,208,0,949,63),(4940,93,0,950,75),(4941,97,0,950,2),(4942,99,0,950,1),(4943,134,0,950,2),(4944,208,0,950,64),(4945,93,0,951,75),(4946,97,0,951,2),(4947,99,0,951,1),(4948,134,0,951,2),(4949,208,0,951,65),(4950,93,0,952,75),(4951,97,0,952,2),(4952,99,0,952,1),(4953,134,0,952,2),(4954,208,0,952,66),(4955,93,0,953,71),(4956,97,0,953,2),(4957,99,0,953,1),(4958,134,0,953,2),(4959,208,0,953,62),(4960,93,0,954,71),(4961,97,0,954,2),(4962,99,0,954,1),(4963,134,0,954,2),(4964,208,0,954,63),(4965,93,0,955,71),(4966,97,0,955,2),(4967,99,0,955,1),(4968,134,0,955,2),(4969,208,0,955,64),(4970,93,0,956,71),(4971,97,0,956,2),(4972,99,0,956,1),(4973,134,0,956,2),(4974,208,0,956,65),(4975,93,0,957,71),(4976,97,0,957,2),(4977,99,0,957,1),(4978,134,0,957,2),(4979,208,0,957,66),(4980,93,0,958,76),(4981,97,0,958,2),(4982,99,0,958,1),(4983,134,0,958,2),(4984,208,0,958,62),(4985,93,0,959,76),(4986,97,0,959,2),(4987,99,0,959,1),(4988,134,0,959,2),(4989,208,0,959,63),(5050,93,0,972,76),(5051,97,0,972,2),(5052,99,0,972,1),(5053,134,0,972,2),(5054,208,0,972,61),(5055,93,0,973,76),(5056,97,0,973,2),(5057,99,0,973,1),(5058,134,0,973,2),(5059,208,0,973,62),(5060,93,0,974,76),(5061,97,0,974,2),(5062,99,0,974,1),(5063,134,0,974,2),(5064,208,0,974,63),(5065,93,0,975,76),(5066,97,0,975,2),(5067,99,0,975,1),(5068,134,0,975,2),(5069,208,0,975,64),(5070,93,0,976,76),(5071,97,0,976,2),(5072,99,0,976,1),(5073,134,0,976,2),(5074,208,0,976,65),(5075,93,0,977,76),(5076,97,0,977,2),(5077,99,0,977,1),(5078,134,0,977,2),(5079,208,0,977,66),(5080,93,0,978,76),(5081,97,0,978,2),(5082,99,0,978,1),(5083,134,0,978,2),(5084,208,0,978,67),(5085,93,0,979,74),(5086,97,0,979,2),(5087,99,0,979,1),(5088,134,0,979,2),(5089,208,0,979,61),(5090,93,0,980,74),(5091,97,0,980,2),(5092,99,0,980,1),(5093,134,0,980,2),(5094,208,0,980,62),(5095,93,0,981,74),(5096,97,0,981,2),(5097,99,0,981,1),(5098,134,0,981,2),(5099,208,0,981,63),(5100,93,0,982,74),(5101,97,0,982,2),(5102,99,0,982,1),(5103,134,0,982,2),(5104,208,0,982,64),(5105,93,0,983,74),(5106,97,0,983,2),(5107,99,0,983,1),(5108,134,0,983,2),(5109,208,0,983,65),(5110,93,0,984,74),(5111,97,0,984,2),(5112,99,0,984,1),(5113,134,0,984,2),(5114,208,0,984,66),(5115,93,0,985,74),(5116,97,0,985,2),(5117,99,0,985,1),(5118,134,0,985,2),(5119,208,0,985,67),(5120,93,0,986,71),(5121,97,0,986,2),(5122,99,0,986,1),(5123,134,0,986,2),(5124,208,0,986,61),(5125,93,0,987,71),(5126,97,0,987,2),(5127,99,0,987,1),(5128,134,0,987,2),(5129,208,0,987,62),(5130,93,0,988,71),(5131,97,0,988,2),(5132,99,0,988,1),(5133,134,0,988,2),(5134,208,0,988,63),(5135,93,0,989,71),(5136,97,0,989,2),(5137,99,0,989,1),(5138,134,0,989,2),(5139,208,0,989,64),(5140,93,0,990,71),(5141,97,0,990,2),(5142,99,0,990,1),(5143,134,0,990,2),(5144,208,0,990,65),(5145,93,0,991,71),(5146,97,0,991,2),(5147,99,0,991,1),(5148,134,0,991,2),(5149,208,0,991,66),(5150,93,0,992,74),(5151,97,0,992,2),(5152,99,0,992,1),(5153,134,0,992,2),(5154,208,0,992,61),(5155,93,0,993,74),(5156,97,0,993,2),(5157,99,0,993,1),(5158,134,0,993,2),(5159,208,0,993,62),(5160,93,0,994,74),(5161,97,0,994,2),(5162,99,0,994,1),(5163,134,0,994,2),(5164,208,0,994,63),(5165,93,0,995,74),(5166,97,0,995,2),(5167,99,0,995,1),(5168,134,0,995,2),(5169,208,0,995,64),(5170,93,0,996,74),(5171,97,0,996,2),(5172,99,0,996,1),(5173,134,0,996,2),(5174,208,0,996,65),(5175,93,0,997,74),(5176,97,0,997,2),(5177,99,0,997,1),(5178,134,0,997,2),(5179,208,0,997,66),(5180,93,0,998,73),(5181,97,0,998,2),(5182,99,0,998,1),(5183,134,0,998,2),(5184,208,0,998,61),(5185,93,0,999,73),(5186,97,0,999,2),(5187,99,0,999,1),(5188,134,0,999,2),(5189,208,0,999,62),(5190,93,0,1000,73),(5191,97,0,1000,2),(5192,99,0,1000,1),(5193,134,0,1000,2),(5194,208,0,1000,63),(5195,93,0,1001,73),(5196,97,0,1001,2),(5197,99,0,1001,1),(5198,134,0,1001,2),(5199,208,0,1001,64),(5200,93,0,1002,73),(5201,97,0,1002,2),(5202,99,0,1002,1),(5203,134,0,1002,2),(5204,208,0,1002,65),(5205,93,0,1003,73),(5206,97,0,1003,2),(5207,99,0,1003,1),(5208,134,0,1003,2),(5209,208,0,1003,66),(5210,93,0,1004,75),(5211,97,0,1004,2),(5212,99,0,1004,1),(5213,134,0,1004,2),(5214,208,0,1004,61),(5215,93,0,1005,73),(5216,97,0,1005,2),(5217,99,0,1005,1),(5218,134,0,1005,2),(5219,208,0,1005,61),(5220,93,0,1006,75),(5221,97,0,1006,2),(5222,99,0,1006,1),(5223,134,0,1006,2),(5224,208,0,1006,62),(5225,93,0,1007,73),(5226,97,0,1007,2),(5227,99,0,1007,1),(5228,134,0,1007,2),(5229,208,0,1007,62),(5230,93,0,1008,75),(5231,97,0,1008,2),(5232,99,0,1008,1),(5233,134,0,1008,2),(5234,208,0,1008,63),(5235,93,0,1009,73),(5236,97,0,1009,2),(5237,99,0,1009,1),(5238,134,0,1009,2),(5239,208,0,1009,63),(5240,93,0,1010,75),(5241,97,0,1010,2),(5242,99,0,1010,1),(5243,134,0,1010,2),(5244,208,0,1010,64),(5245,93,0,1011,73),(5246,97,0,1011,2),(5247,99,0,1011,1),(5248,134,0,1011,2),(5249,208,0,1011,64),(5250,93,0,1012,75),(5251,97,0,1012,2),(5252,99,0,1012,1),(5253,134,0,1012,2),(5254,208,0,1012,65),(5255,93,0,1013,73),(5256,97,0,1013,2),(5257,99,0,1013,1),(5258,134,0,1013,2),(5259,208,0,1013,65),(5260,93,0,1014,74),(5261,97,0,1014,2),(5262,99,0,1014,1),(5263,134,0,1014,0),(5264,212,0,1014,78),(5265,93,0,1015,74),(5266,97,0,1015,2),(5267,99,0,1015,1),(5268,134,0,1015,0),(5269,212,0,1015,79),(5270,93,0,1016,74),(5271,97,0,1016,2),(5272,99,0,1016,1),(5273,134,0,1016,0),(5274,212,0,1016,80),(5275,93,0,1017,76),(5276,97,0,1017,2),(5277,99,0,1017,1),(5278,134,0,1017,0),(5279,212,0,1017,78),(5280,93,0,1018,76),(5281,97,0,1018,2),(5282,99,0,1018,1),(5283,134,0,1018,0),(5284,212,0,1018,79),(5285,93,0,1019,76),(5286,97,0,1019,2),(5287,99,0,1019,1),(5288,134,0,1019,0),(5289,212,0,1019,80),(5290,93,0,1020,73),(5291,97,0,1020,2),(5292,99,0,1020,1),(5293,134,0,1020,0),(5294,212,0,1020,78),(5295,93,0,1021,73),(5296,97,0,1021,2),(5297,99,0,1021,1),(5298,134,0,1021,0),(5299,212,0,1021,79),(5300,93,0,1022,73),(5301,97,0,1022,2),(5302,99,0,1022,1),(5303,134,0,1022,0),(5304,212,0,1022,80),(5305,208,0,1,NULL),(5306,93,0,1023,74),(5307,97,0,1023,2),(5308,99,0,1023,1),(5309,134,0,1023,2),(5310,212,0,1023,78),(5311,93,0,1024,71),(5312,97,0,1024,2),(5313,99,0,1024,1),(5314,134,0,1024,2),(5315,212,0,1024,78),(5316,93,0,1025,74),(5317,97,0,1025,2),(5318,99,0,1025,1),(5319,134,0,1025,2),(5320,212,0,1025,79),(5321,93,0,1026,71),(5322,97,0,1026,2),(5323,99,0,1026,1),(5324,134,0,1026,2),(5325,212,0,1026,79),(5326,93,0,1027,74),(5327,97,0,1027,2),(5328,99,0,1027,1),(5329,134,0,1027,2),(5330,212,0,1027,80),(5331,93,0,1028,71),(5332,97,0,1028,2),(5333,99,0,1028,1),(5334,134,0,1028,2),(5335,212,0,1028,80),(5336,93,0,1029,76),(5337,97,0,1029,2),(5338,99,0,1029,1),(5339,134,0,1029,2),(5340,212,0,1029,77),(5341,93,0,1030,76),(5342,97,0,1030,2),(5343,99,0,1030,1),(5344,134,0,1030,2),(5345,212,0,1030,78),(5346,93,0,1031,76),(5347,97,0,1031,2),(5348,99,0,1031,1),(5349,134,0,1031,2),(5350,212,0,1031,79),(5351,93,0,1032,75),(5352,97,0,1032,2),(5353,99,0,1032,1),(5354,134,0,1032,2),(5355,212,0,1032,77),(5356,93,0,1033,75),(5357,97,0,1033,2),(5358,99,0,1033,1),(5359,134,0,1033,2),(5360,212,0,1033,78),(5361,93,0,1034,75),(5362,97,0,1034,2),(5363,99,0,1034,1),(5364,134,0,1034,2),(5365,212,0,1034,79),(5366,93,0,1035,74),(5367,97,0,1035,2),(5368,99,0,1035,1),(5369,134,0,1035,2),(5370,212,0,1035,78),(5371,93,0,1036,74),(5372,97,0,1036,2),(5373,99,0,1036,1),(5374,134,0,1036,2),(5375,212,0,1036,79),(5376,93,0,1037,74),(5377,97,0,1037,2),(5378,99,0,1037,1),(5379,134,0,1037,2),(5380,212,0,1037,80),(5381,93,0,1038,74),(5382,97,0,1038,2),(5383,99,0,1038,1),(5384,134,0,1038,2),(5385,212,0,1038,81),(5386,93,0,1039,73),(5387,97,0,1039,2),(5388,99,0,1039,1),(5389,134,0,1039,2),(5390,212,0,1039,78),(5391,93,0,1040,73),(5392,97,0,1040,2),(5393,99,0,1040,1),(5394,134,0,1040,2),(5395,212,0,1040,79),(5396,93,0,1041,73),(5397,97,0,1041,2),(5398,99,0,1041,1),(5399,134,0,1041,2),(5400,212,0,1041,80),(5401,93,0,1042,73),(5402,97,0,1042,2),(5403,99,0,1042,1),(5404,134,0,1042,2),(5405,212,0,1042,81),(5412,93,0,1043,73),(5413,97,0,1043,2),(5414,99,0,1043,1),(5415,134,0,1043,2),(5416,212,0,1043,78),(5417,93,0,1044,73),(5418,97,0,1044,2),(5419,99,0,1044,1),(5420,134,0,1044,2),(5421,212,0,1044,79),(5422,93,0,1045,73),(5423,97,0,1045,2),(5424,99,0,1045,1),(5425,134,0,1045,2),(5426,212,0,1045,80),(5427,93,0,1046,74),(5428,97,0,1046,2),(5429,99,0,1046,1),(5430,134,0,1046,2),(5431,212,0,1046,78),(5432,93,0,1047,74),(5433,97,0,1047,2),(5434,99,0,1047,1),(5435,134,0,1047,2),(5436,212,0,1047,79),(5437,93,0,1048,74),(5438,97,0,1048,2),(5439,99,0,1048,1),(5440,134,0,1048,2),(5441,212,0,1048,80),(5442,93,0,1049,74),(5443,97,0,1049,2),(5444,99,0,1049,1),(5445,134,0,1049,2),(5446,212,0,1049,77),(5447,93,0,1050,74),(5448,97,0,1050,2),(5449,99,0,1050,1),(5450,134,0,1050,2),(5451,212,0,1050,78),(5452,93,0,1051,74),(5453,97,0,1051,2),(5454,99,0,1051,1),(5455,134,0,1051,2),(5456,212,0,1051,79),(5457,93,0,1052,74),(5458,97,0,1052,2),(5459,99,0,1052,1),(5460,134,0,1052,2),(5461,212,0,1052,80),(5462,93,0,1053,71),(5463,97,0,1053,2),(5464,99,0,1053,1),(5465,134,0,1053,2),(5466,212,0,1053,77),(5467,93,0,1054,71),(5468,97,0,1054,2),(5469,99,0,1054,1),(5470,134,0,1054,2),(5471,212,0,1054,78),(5472,93,0,1055,71),(5473,97,0,1055,2),(5474,99,0,1055,1),(5475,134,0,1055,2),(5476,212,0,1055,79),(5477,93,0,1056,71),(5478,97,0,1056,2),(5479,99,0,1056,1),(5480,134,0,1056,2),(5481,212,0,1056,80),(5482,93,0,1057,73),(5483,97,0,1057,2),(5484,99,0,1057,1),(5485,134,0,1057,2),(5486,212,0,1057,78),(5487,93,0,1058,73),(5488,97,0,1058,2),(5489,99,0,1058,1),(5490,134,0,1058,2),(5491,212,0,1058,79),(5492,93,0,1059,73),(5493,97,0,1059,2),(5494,99,0,1059,1),(5495,134,0,1059,2),(5496,212,0,1059,80),(5497,93,0,1060,74),(5498,97,0,1060,2),(5499,99,0,1060,1),(5500,134,0,1060,2),(5501,212,0,1060,78),(5502,93,0,1061,74),(5503,97,0,1061,2),(5504,99,0,1061,1),(5505,134,0,1061,2),(5506,212,0,1061,79),(5507,93,0,1062,74),(5508,97,0,1062,2),(5509,99,0,1062,1),(5510,134,0,1062,2),(5511,212,0,1062,80),(5512,208,0,79,NULL),(5513,93,0,1063,75),(5514,97,0,1063,2),(5515,99,0,1063,1),(5516,134,0,1063,0),(5517,212,0,1063,78),(5518,93,0,1064,75),(5519,97,0,1064,2),(5520,99,0,1064,1),(5521,134,0,1064,0),(5522,212,0,1064,79),(5523,93,0,1065,75),(5524,97,0,1065,2),(5525,99,0,1065,1),(5526,134,0,1065,0),(5527,212,0,1065,81),(5528,93,0,1066,73),(5529,97,0,1066,2),(5530,99,0,1066,1),(5531,134,0,1066,0),(5532,212,0,1066,78),(5533,93,0,1067,73),(5534,97,0,1067,2),(5535,99,0,1067,1),(5536,134,0,1067,0),(5537,212,0,1067,79),(5538,93,0,1068,73),(5539,97,0,1068,2),(5540,99,0,1068,1),(5541,134,0,1068,0),(5542,212,0,1068,81),(5543,93,0,1069,73),(5544,97,0,1069,2),(5545,99,0,1069,1),(5546,134,0,1069,0),(5547,212,0,1069,77),(5548,93,0,1070,73),(5549,97,0,1070,2),(5550,99,0,1070,1),(5551,134,0,1070,0),(5552,212,0,1070,78),(5553,93,0,1071,73),(5554,97,0,1071,2),(5555,99,0,1071,1),(5556,134,0,1071,0),(5557,212,0,1071,80),(5558,93,0,1072,76),(5559,97,0,1072,2),(5560,99,0,1072,1),(5561,134,0,1072,0),(5562,212,0,1072,77),(5563,93,0,1073,76),(5564,97,0,1073,2),(5565,99,0,1073,1),(5566,134,0,1073,0),(5567,212,0,1073,78),(5568,93,0,1074,76),(5569,97,0,1074,2),(5570,99,0,1074,1),(5571,134,0,1074,0),(5572,212,0,1074,80),(5573,93,0,1075,74),(5574,97,0,1075,2),(5575,99,0,1075,1),(5576,134,0,1075,0),(5577,212,0,1075,78),(5578,93,0,1076,74),(5579,97,0,1076,2),(5580,99,0,1076,1),(5581,134,0,1076,0),(5582,212,0,1076,79),(5583,93,0,1077,74),(5584,97,0,1077,2),(5585,99,0,1077,1),(5586,134,0,1077,0),(5587,212,0,1077,80),(5588,93,0,1078,74),(5589,97,0,1078,2),(5590,99,0,1078,1),(5591,134,0,1078,0),(5592,212,0,1078,81),(5593,93,0,1079,75),(5594,97,0,1079,2),(5595,99,0,1079,1),(5596,134,0,1079,0),(5597,212,0,1079,78),(5598,93,0,1080,75),(5599,97,0,1080,2),(5600,99,0,1080,1),(5601,134,0,1080,0),(5602,212,0,1080,79),(5603,93,0,1081,75),(5604,97,0,1081,2),(5605,99,0,1081,1),(5606,134,0,1081,0),(5607,212,0,1081,80),(5608,93,0,1082,75),(5609,97,0,1082,2),(5610,99,0,1082,1),(5611,134,0,1082,0),(5612,212,0,1082,81),(5613,208,0,83,NULL),(5614,93,0,1083,73),(5615,97,0,1083,2),(5616,99,0,1083,1),(5617,134,0,1083,2),(5618,212,0,1083,77),(5619,93,0,1084,73),(5620,97,0,1084,2),(5621,99,0,1084,1),(5622,134,0,1084,2),(5623,212,0,1084,78),(5624,93,0,1085,73),(5625,97,0,1085,2),(5626,99,0,1085,1),(5627,134,0,1085,2),(5628,212,0,1085,79),(5629,93,0,1086,73),(5630,97,0,1086,2),(5631,99,0,1086,1),(5632,134,0,1086,2),(5633,212,0,1086,80),(5634,93,0,1087,73),(5635,97,0,1087,2),(5636,99,0,1087,1),(5637,134,0,1087,2),(5638,212,0,1087,81),(5639,208,0,341,60),(5640,208,0,342,60),(5641,208,0,343,60),(5642,208,0,344,60),(5643,208,0,345,60),(5644,93,0,1088,74),(5645,97,0,1088,2),(5646,99,0,1088,1),(5647,134,0,1088,2),(5648,212,0,1088,78),(5649,93,0,1089,74),(5650,97,0,1089,2),(5651,99,0,1089,1),(5652,134,0,1089,2),(5653,212,0,1089,79),(5654,93,0,1090,74),(5655,97,0,1090,2),(5656,99,0,1090,1),(5657,134,0,1090,2),(5658,212,0,1090,80),(5659,208,0,440,60),(5660,208,0,441,60),(5661,208,0,442,60),(5662,93,0,1091,72),(5663,97,0,1091,2),(5664,99,0,1091,1),(5665,134,0,1091,0),(5666,212,0,1091,78),(5667,93,0,1092,72),(5668,97,0,1092,2),(5669,99,0,1092,1),(5670,134,0,1092,0),(5671,212,0,1092,79),(5672,93,0,1093,72),(5673,97,0,1093,2),(5674,99,0,1093,1),(5675,134,0,1093,0),(5676,212,0,1093,80),(5677,93,0,1094,72),(5678,97,0,1094,2),(5679,99,0,1094,1),(5680,134,0,1094,0),(5681,212,0,1094,81),(5682,208,0,1075,60),(5683,208,0,1076,60),(5684,208,0,1077,60),(5685,208,0,1078,60),(5686,208,0,1079,60),(5687,208,0,1080,60),(5688,208,0,1081,60),(5689,208,0,1082,60),(5690,93,0,1095,72),(5691,97,0,1095,2),(5692,99,0,1095,1),(5693,134,0,1095,0),(5694,212,0,1095,77),(5695,93,0,1096,72),(5696,97,0,1096,2),(5697,99,0,1096,1),(5698,134,0,1096,0),(5699,212,0,1096,78),(5700,93,0,1097,72),(5701,97,0,1097,2),(5702,99,0,1097,1),(5703,134,0,1097,0),(5704,212,0,1097,80),(5705,208,0,1069,60),(5706,208,0,1070,60),(5707,208,0,1071,60),(5708,208,0,1072,60),(5709,208,0,1073,60),(5710,208,0,1074,60),(5711,208,0,102,60),(5712,93,0,1098,72),(5713,97,0,1098,2),(5714,99,0,1098,1),(5715,134,0,1098,0),(5716,212,0,1098,78),(5717,93,0,1099,72),(5718,97,0,1099,2),(5719,99,0,1099,1),(5720,134,0,1099,0),(5721,212,0,1099,79),(5722,93,0,1100,72),(5723,97,0,1100,2),(5724,99,0,1100,1),(5725,134,0,1100,0),(5726,212,0,1100,81),(5727,208,0,1066,60),(5728,208,0,1067,60),(5729,208,0,1068,60),(5730,208,0,1063,60),(5731,208,0,1064,60),(5732,208,0,1065,60),(5733,93,0,1101,75),(5734,97,0,1101,2),(5735,99,0,1101,1),(5736,134,0,1101,2),(5737,212,0,1101,78),(5738,93,0,1102,75),(5739,97,0,1102,2),(5740,99,0,1102,1),(5741,134,0,1102,2),(5742,212,0,1102,79),(5743,93,0,1103,75),(5744,97,0,1103,2),(5745,99,0,1103,1),(5746,134,0,1103,2),(5747,212,0,1103,80),(5748,208,0,1057,60),(5749,208,0,1058,60),(5750,208,0,1059,60),(5751,208,0,1060,60),(5752,208,0,1061,60),(5753,208,0,1062,60),(5754,93,0,1104,74),(5755,97,0,1104,2),(5756,99,0,1104,1),(5757,134,0,1104,0),(5758,212,0,1104,78),(5759,93,0,1105,74),(5760,97,0,1105,2),(5761,99,0,1105,1),(5762,134,0,1105,0),(5763,212,0,1105,79),(5764,93,0,1106,74),(5765,97,0,1106,2),(5766,99,0,1106,1),(5767,134,0,1106,0),(5768,212,0,1106,80),(5769,208,0,437,60),(5770,208,0,439,60),(5771,208,0,438,60),(5772,93,0,1107,75),(5773,97,0,1107,2),(5774,99,0,1107,1),(5775,134,0,1107,0),(5776,212,0,1107,77),(5777,93,0,1108,75),(5778,97,0,1108,2),(5779,99,0,1108,1),(5780,134,0,1108,0),(5781,212,0,1108,78),(5782,93,0,1109,75),(5783,97,0,1109,2),(5784,99,0,1109,1),(5785,134,0,1109,0),(5786,212,0,1109,79),(5787,208,0,488,60),(5788,208,0,489,60),(5789,208,0,490,60),(5790,93,0,1110,72),(5791,97,0,1110,2),(5792,99,0,1110,1),(5793,134,0,1110,0),(5794,212,0,1110,77),(5795,93,0,1111,72),(5796,97,0,1111,2),(5797,99,0,1111,1),(5798,134,0,1111,0),(5799,212,0,1111,78),(5800,93,0,1112,72),(5801,97,0,1112,2),(5802,99,0,1112,1),(5803,134,0,1112,0),(5804,212,0,1112,79),(5805,93,0,1113,72),(5806,97,0,1113,2),(5807,99,0,1113,1),(5808,134,0,1113,0),(5809,212,0,1113,81),(5810,208,0,471,60),(5811,208,0,473,60),(5812,208,0,474,60),(5813,208,0,472,60),(5814,93,0,1114,75),(5815,97,0,1114,2),(5816,99,0,1114,1),(5817,134,0,1114,0),(5818,212,0,1114,78),(5819,93,0,1115,75),(5820,97,0,1115,2),(5821,99,0,1115,1),(5822,134,0,1115,0),(5823,212,0,1115,79),(5824,93,0,1116,75),(5825,97,0,1116,2),(5826,99,0,1116,1),(5827,134,0,1116,0),(5828,212,0,1116,80),(5829,93,0,1117,75),(5830,97,0,1117,2),(5831,99,0,1117,1),(5832,134,0,1117,0),(5833,212,0,1117,81),(5834,208,0,461,60),(5835,208,0,462,60),(5836,208,0,464,60),(5837,208,0,463,60),(5838,93,0,1118,76),(5839,97,0,1118,2),(5840,99,0,1118,1),(5841,134,0,1118,0),(5842,212,0,1118,77),(5843,93,0,1119,76),(5844,97,0,1119,2),(5845,99,0,1119,1),(5846,134,0,1119,0),(5847,212,0,1119,78),(5848,93,0,1120,76),(5849,97,0,1120,2),(5850,99,0,1120,1),(5851,134,0,1120,0),(5852,212,0,1120,79),(5853,208,0,455,60),(5854,208,0,456,60),(5855,208,0,457,60),(5856,93,0,1121,75),(5857,97,0,1121,2),(5858,99,0,1121,1),(5859,134,0,1121,0),(5860,212,0,1121,78),(5861,93,0,1122,75),(5862,97,0,1122,2),(5863,99,0,1122,1),(5864,134,0,1122,0),(5865,212,0,1122,80),(5866,93,0,1123,75),(5867,97,0,1123,2),(5868,99,0,1123,1),(5869,134,0,1123,0),(5870,212,0,1123,81),(5871,208,0,478,60),(5872,208,0,479,60),(5873,208,0,480,60),(5875,93,0,1124,76),(5876,97,0,1124,2),(5877,99,0,1124,1),(5878,134,0,1124,0),(5879,212,0,1124,78),(5880,93,0,1125,76),(5881,97,0,1125,2),(5882,99,0,1125,1),(5883,134,0,1125,0),(5884,212,0,1125,79),(5885,93,0,1126,76),(5886,97,0,1126,2),(5887,99,0,1126,1),(5888,134,0,1126,0),(5889,212,0,1126,80),(5890,208,0,465,60),(5891,208,0,466,60),(5892,208,0,467,60),(5893,93,0,1127,73),(5894,97,0,1127,2),(5895,99,0,1127,1),(5896,134,0,1127,2),(5897,212,0,1127,78),(5898,93,0,1128,73),(5899,97,0,1128,2),(5900,99,0,1128,1),(5901,134,0,1128,2),(5902,212,0,1128,79),(5903,93,0,1129,73),(5904,97,0,1129,2),(5905,99,0,1129,1),(5906,134,0,1129,2),(5907,212,0,1129,80),(5908,208,0,386,60),(5909,208,0,385,60),(5910,208,0,387,60),(5911,208,0,76,NULL),(5912,93,0,1130,75),(5913,97,0,1130,2),(5914,99,0,1130,1),(5915,134,0,1130,2),(5916,212,0,1130,78),(5917,93,0,1131,75),(5918,97,0,1131,2),(5919,99,0,1131,1),(5920,134,0,1131,2),(5921,212,0,1131,79),(5922,93,0,1132,75),(5923,97,0,1132,2),(5924,99,0,1132,1),(5925,134,0,1132,2),(5926,212,0,1132,80),(5927,208,0,358,60),(5928,208,0,359,60),(5929,208,0,360,60),(5930,93,0,1133,74),(5931,97,0,1133,2),(5932,99,0,1133,1),(5933,134,0,1133,2),(5934,212,0,1133,79),(5935,93,0,1134,74),(5936,97,0,1134,2),(5937,99,0,1134,1),(5938,134,0,1134,2),(5939,212,0,1134,80),(5940,208,0,131,60),(5941,208,0,130,60),(5942,93,0,1135,73),(5943,97,0,1135,2),(5944,99,0,1135,1),(5945,134,0,1135,2),(5946,212,0,1135,78),(5947,93,0,1136,73),(5948,97,0,1136,2),(5949,99,0,1136,1),(5950,134,0,1136,2),(5951,212,0,1136,79),(5952,93,0,1137,73),(5953,97,0,1137,2),(5954,99,0,1137,1),(5955,134,0,1137,2),(5956,212,0,1137,80),(5957,208,0,1130,60),(5958,208,0,1131,60),(5959,208,0,1132,60),(5960,208,0,71,NULL),(5961,93,0,1138,73),(5962,97,0,1138,2),(5963,99,0,1138,1),(5964,134,0,1138,0),(5965,212,0,1138,77),(5966,93,0,1139,73),(5967,97,0,1139,2),(5968,99,0,1139,1),(5969,134,0,1139,0),(5970,212,0,1139,78),(5971,93,0,1140,73),(5972,97,0,1140,2),(5973,99,0,1140,1),(5974,134,0,1140,0),(5975,212,0,1140,79),(5976,208,0,502,60),(5977,208,0,501,60),(5978,208,0,503,60),(5979,93,0,1141,76),(5980,97,0,1141,2),(5981,99,0,1141,1),(5982,134,0,1141,2),(5983,212,0,1141,77),(5984,93,0,1142,76),(5985,97,0,1142,2),(5986,99,0,1142,1),(5987,134,0,1142,2),(5988,212,0,1142,78),(5989,93,0,1143,76),(5990,97,0,1143,2),(5991,99,0,1143,1),(5992,134,0,1143,2),(5993,212,0,1143,79),(5994,93,0,1144,76),(5995,97,0,1144,2),(5996,99,0,1144,1),(5997,134,0,1144,2),(5998,212,0,1144,80),(5999,208,0,237,60),(6000,208,0,235,60),(6001,208,0,236,60),(6002,208,0,238,60),(6003,93,0,1145,76),(6004,97,0,1145,2),(6005,99,0,1145,1),(6006,134,0,1145,2),(6007,212,0,1145,77),(6008,93,0,1146,76),(6009,97,0,1146,2),(6010,99,0,1146,1),(6011,134,0,1146,2),(6012,212,0,1146,78),(6013,93,0,1147,76),(6014,97,0,1147,2),(6015,99,0,1147,1),(6016,134,0,1147,2),(6017,212,0,1147,79),(6018,208,0,158,60),(6019,208,0,157,60),(6020,208,0,159,60),(6021,93,0,1148,71),(6022,97,0,1148,2),(6023,99,0,1148,1),(6024,134,0,1148,2),(6025,212,0,1148,77),(6026,93,0,1149,71),(6027,97,0,1149,2),(6028,99,0,1149,1),(6029,134,0,1149,2),(6030,212,0,1149,78),(6031,93,0,1150,71),(6032,97,0,1150,2),(6033,99,0,1150,1),(6034,134,0,1150,2),(6035,212,0,1150,79),(6036,93,0,1151,71),(6037,97,0,1151,2),(6038,99,0,1151,1),(6039,134,0,1151,2),(6040,212,0,1151,80),(6041,208,0,167,60),(6042,208,0,168,60),(6043,208,0,169,60),(6044,208,0,166,60),(6045,93,0,1152,73),(6046,97,0,1152,2),(6047,99,0,1152,1),(6048,134,0,1152,0),(6049,212,0,1152,77),(6050,93,0,1153,73),(6051,97,0,1153,2),(6052,99,0,1153,1),(6053,134,0,1153,0),(6054,212,0,1153,78),(6055,93,0,1154,73),(6056,97,0,1154,2),(6057,99,0,1154,1),(6058,134,0,1154,0),(6059,212,0,1154,79),(6060,93,0,1155,73),(6061,97,0,1155,2),(6062,99,0,1155,1),(6063,134,0,1155,0),(6064,212,0,1155,80),(6065,208,0,355,60),(6066,208,0,354,60),(6067,208,0,357,60),(6068,208,0,356,60),(6069,93,0,1156,75),(6070,97,0,1156,2),(6071,99,0,1156,1),(6072,134,0,1156,2),(6073,212,0,1156,77),(6074,93,0,1157,75),(6075,97,0,1157,2),(6076,99,0,1157,1),(6077,134,0,1157,2),(6078,212,0,1157,78),(6079,93,0,1158,75),(6080,97,0,1158,2),(6081,99,0,1158,1),(6082,134,0,1158,2),(6083,212,0,1158,79),(6084,93,0,1159,75),(6085,97,0,1159,2),(6086,99,0,1159,1),(6087,134,0,1159,2),(6088,212,0,1159,80),(6089,208,0,186,60),(6090,208,0,187,60),(6091,208,0,188,60),(6092,208,0,189,60),(6093,93,0,1160,71),(6094,97,0,1160,2),(6095,99,0,1160,1),(6096,134,0,1160,2),(6097,212,0,1160,78),(6098,93,0,1161,71),(6099,97,0,1161,2),(6100,99,0,1161,1),(6101,134,0,1161,2),(6102,212,0,1161,79),(6103,208,0,542,60),(6104,208,0,543,60),(6105,93,0,1162,74),(6106,97,0,1162,2),(6107,99,0,1162,1),(6108,134,0,1162,2),(6109,212,0,1162,77),(6110,93,0,1163,74),(6111,97,0,1163,2),(6112,99,0,1163,1),(6113,134,0,1163,2),(6114,212,0,1163,78),(6115,208,0,170,60),(6116,208,0,171,60),(6117,93,0,1164,76),(6118,97,0,1164,2),(6119,99,0,1164,1),(6120,134,0,1164,2),(6121,212,0,1164,77),(6122,93,0,1165,76),(6123,97,0,1165,2),(6124,99,0,1165,1),(6125,134,0,1165,2),(6126,212,0,1165,78),(6127,93,0,1166,76),(6128,97,0,1166,2),(6129,99,0,1166,1),(6130,134,0,1166,2),(6131,212,0,1166,79),(6132,208,0,535,60),(6133,208,0,536,60),(6134,208,0,537,60),(6135,208,0,120,NULL),(6136,93,0,1167,75),(6137,97,0,1167,2),(6138,99,0,1167,1),(6139,134,0,1167,0),(6140,212,0,1167,77),(6141,93,0,1168,75),(6142,97,0,1168,2),(6143,99,0,1168,1),(6144,134,0,1168,0),(6145,212,0,1168,78),(6146,93,0,1169,75),(6147,97,0,1169,2),(6148,99,0,1169,1),(6149,134,0,1169,0),(6150,212,0,1169,79),(6151,93,0,1170,75),(6152,97,0,1170,2),(6153,99,0,1170,1),(6154,134,0,1170,0),(6155,212,0,1170,80),(6156,208,0,366,60),(6157,208,0,364,60),(6158,208,0,365,60),(6159,208,0,367,60),(6160,93,0,1171,72),(6161,97,0,1171,2),(6162,99,0,1171,1),(6163,134,0,1171,0),(6164,212,0,1171,77),(6165,93,0,1172,72),(6166,97,0,1172,2),(6167,99,0,1172,1),(6168,134,0,1172,0),(6169,212,0,1172,78),(6170,93,0,1173,72),(6171,97,0,1173,2),(6172,99,0,1173,1),(6173,134,0,1173,0),(6174,212,0,1173,79),(6175,93,0,1174,72),(6176,97,0,1174,2),(6177,99,0,1174,1),(6178,134,0,1174,0),(6179,212,0,1174,81),(6180,208,0,398,60),(6181,208,0,397,60),(6182,208,0,400,60),(6183,208,0,399,60),(6184,93,0,1175,75),(6185,97,0,1175,2),(6186,99,0,1175,1),(6187,134,0,1175,2),(6188,212,0,1175,77),(6189,93,0,1176,75),(6190,97,0,1176,2),(6191,99,0,1176,1),(6192,134,0,1176,2),(6193,212,0,1176,78),(6194,93,0,1177,75),(6195,97,0,1177,2),(6196,99,0,1177,1),(6197,134,0,1177,2),(6198,212,0,1177,79),(6199,93,0,1178,75),(6200,97,0,1178,2),(6201,99,0,1178,1),(6202,134,0,1178,2),(6203,212,0,1178,80),(6204,93,0,1179,75),(6205,97,0,1179,2),(6206,99,0,1179,1),(6207,134,0,1179,2),(6208,212,0,1179,81),(6209,208,0,218,60),(6210,208,0,219,60),(6211,208,0,220,60),(6212,208,0,217,60),(6213,208,0,221,60),(6214,208,0,504,60),(6215,208,0,505,60),(6216,208,0,506,60),(6217,208,0,507,60),(6218,208,0,508,60),(6219,208,0,509,60),(6220,93,0,1180,75),(6221,97,0,1180,2),(6222,99,0,1180,1),(6223,134,0,1180,0),(6224,212,0,1180,77),(6225,93,0,1181,75),(6226,97,0,1181,2),(6227,99,0,1181,1),(6228,134,0,1181,0),(6229,212,0,1181,78),(6230,93,0,1182,75),(6231,97,0,1182,2),(6232,99,0,1182,1),(6233,134,0,1182,0),(6234,212,0,1182,79),(6235,93,0,1183,75),(6236,97,0,1183,2),(6237,99,0,1183,1),(6238,134,0,1183,0),(6239,212,0,1183,80),(6240,208,0,334,60),(6241,208,0,335,60),(6242,208,0,336,60),(6243,208,0,337,60),(6244,208,0,64,NULL),(6245,93,0,1184,76),(6246,97,0,1184,2),(6247,99,0,1184,1),(6248,134,0,1184,2),(6249,212,0,1184,78),(6250,93,0,1185,76),(6251,97,0,1185,2),(6252,99,0,1185,1),(6253,134,0,1185,2),(6254,212,0,1185,79),(6255,93,0,1186,76),(6256,97,0,1186,2),(6257,99,0,1186,1),(6258,134,0,1186,2),(6259,212,0,1186,80),(6260,208,0,173,60),(6261,208,0,174,60),(6262,208,0,172,60),(6263,93,0,1187,73),(6264,97,0,1187,2),(6265,99,0,1187,1),(6266,134,0,1187,0),(6267,212,0,1187,77),(6268,93,0,1188,73),(6269,97,0,1188,2),(6270,99,0,1188,1),(6271,134,0,1188,0),(6272,212,0,1188,78),(6273,93,0,1189,73),(6274,97,0,1189,2),(6275,99,0,1189,1),(6276,134,0,1189,0),(6277,212,0,1189,79),(6278,93,0,1190,73),(6279,97,0,1190,2),(6280,99,0,1190,1),(6281,134,0,1190,0),(6282,212,0,1190,80),(6283,208,0,320,60),(6284,208,0,318,60),(6285,208,0,319,60),(6286,208,0,321,60),(6287,93,0,1191,75),(6288,97,0,1191,2),(6289,99,0,1191,1),(6290,134,0,1191,2),(6291,208,0,1191,59),(6292,93,0,1192,75),(6293,97,0,1192,2),(6294,99,0,1192,1),(6295,134,0,1192,2),(6296,208,0,1192,82),(6297,93,0,1193,75),(6298,97,0,1193,2),(6299,99,0,1193,1),(6300,134,0,1193,2),(6301,208,0,1193,61),(6302,93,0,1194,75),(6303,97,0,1194,2),(6304,99,0,1194,1),(6305,134,0,1194,2),(6306,208,0,1194,62),(6307,93,0,1195,75),(6308,97,0,1195,2),(6309,99,0,1195,1),(6310,134,0,1195,2),(6311,208,0,1195,63),(6312,93,0,1196,76),(6313,97,0,1196,2),(6314,99,0,1196,1),(6315,134,0,1196,0),(6316,212,0,1196,77),(6317,93,0,1197,76),(6318,97,0,1197,2),(6319,99,0,1197,1),(6320,134,0,1197,0),(6321,212,0,1197,78),(6322,93,0,1198,76),(6323,97,0,1198,2),(6324,99,0,1198,1),(6325,134,0,1198,0),(6326,212,0,1198,79),(6327,208,0,524,60),(6328,208,0,525,60),(6329,208,0,526,60),(6330,93,0,1199,76),(6331,97,0,1199,2),(6332,99,0,1199,1),(6333,134,0,1199,2),(6334,212,0,1199,77),(6335,93,0,1200,76),(6336,97,0,1200,2),(6337,99,0,1200,1),(6338,134,0,1200,2),(6339,212,0,1200,78),(6340,93,0,1201,76),(6341,97,0,1201,2),(6342,99,0,1201,1),(6343,134,0,1201,2),(6344,212,0,1201,79),(6345,208,0,538,60),(6346,208,0,539,60),(6347,208,0,540,60),(6348,93,0,1202,74),(6349,97,0,1202,2),(6350,99,0,1202,1),(6351,134,0,1202,0),(6352,212,0,1202,77),(6353,93,0,1203,74),(6354,97,0,1203,2),(6355,99,0,1203,1),(6356,134,0,1203,0),(6357,212,0,1203,78),(6358,93,0,1204,74),(6359,97,0,1204,2),(6360,99,0,1204,1),(6361,134,0,1204,0),(6362,212,0,1204,79),(6363,208,0,499,60),(6364,208,0,498,60),(6365,208,0,500,60),(6366,93,0,1205,75),(6367,97,0,1205,2),(6368,99,0,1205,1),(6369,134,0,1205,0),(6370,212,0,1205,77),(6371,93,0,1206,75),(6372,97,0,1206,2),(6373,99,0,1206,1),(6374,134,0,1206,0),(6375,212,0,1206,78),(6376,93,0,1207,75),(6377,97,0,1207,2),(6378,99,0,1207,1),(6379,134,0,1207,0),(6380,212,0,1207,79),(6381,208,0,528,60),(6382,208,0,529,60),(6383,208,0,530,60),(6384,208,0,117,NULL),(6385,93,0,1208,73),(6386,97,0,1208,2),(6387,99,0,1208,1),(6388,134,0,1208,0),(6389,212,0,1208,77),(6390,93,0,1209,73),(6391,97,0,1209,2),(6392,99,0,1209,1),(6393,134,0,1209,0),(6394,212,0,1209,78),(6395,93,0,1210,73),(6396,97,0,1210,2),(6397,99,0,1210,1),(6398,134,0,1210,0),(6399,212,0,1210,80),(6400,208,0,520,60),(6401,208,0,521,60),(6402,208,0,522,60),(6403,208,0,113,NULL),(6404,93,0,1211,76),(6405,97,0,1211,2),(6406,99,0,1211,1),(6407,134,0,1211,0),(6408,212,0,1211,77),(6409,93,0,1212,76),(6410,97,0,1212,2),(6411,99,0,1212,1),(6412,134,0,1212,0),(6413,212,0,1212,78),(6414,93,0,1213,76),(6415,97,0,1213,2),(6416,99,0,1213,1),(6417,134,0,1213,0),(6418,212,0,1213,79),(6419,208,0,496,60),(6420,208,0,495,60),(6421,208,0,497,60),(6422,93,0,1214,75),(6423,97,0,1214,2),(6424,99,0,1214,1),(6425,134,0,1214,0),(6426,208,0,1214,58),(6427,93,0,1215,75),(6428,97,0,1215,2),(6429,99,0,1215,1),(6430,134,0,1215,0),(6431,208,0,1215,82),(6432,93,0,1216,75),(6433,97,0,1216,2),(6434,99,0,1216,1),(6435,134,0,1216,0),(6436,208,0,1216,61),(6437,93,0,1217,75),(6438,97,0,1217,2),(6439,99,0,1217,1),(6440,134,0,1217,0),(6441,208,0,1217,62),(6442,93,0,1218,75),(6443,97,0,1218,2),(6444,99,0,1218,1),(6445,134,0,1218,0),(6446,208,0,1218,63),(6447,93,0,1219,76),(6448,97,0,1219,2),(6449,99,0,1219,1),(6450,134,0,1219,2),(6451,212,0,1219,78),(6452,93,0,1220,76),(6453,97,0,1220,2),(6454,99,0,1220,1),(6455,134,0,1220,2),(6456,212,0,1220,79),(6457,93,0,1221,76),(6458,97,0,1221,2),(6459,99,0,1221,1),(6460,134,0,1221,2),(6461,212,0,1221,81),(6462,208,0,195,60),(6463,208,0,196,60),(6464,208,0,194,60),(6465,93,0,1222,73),(6466,97,0,1222,2),(6467,99,0,1222,1),(6468,134,0,1222,2),(6469,208,0,1222,58),(6470,93,0,1223,73),(6471,97,0,1223,2),(6472,99,0,1223,1),(6473,134,0,1223,2),(6474,208,0,1223,59),(6475,93,0,1224,73),(6476,97,0,1224,2),(6477,99,0,1224,1),(6478,134,0,1224,2),(6479,208,0,1224,82),(6480,93,0,1225,73),(6481,97,0,1225,2),(6482,99,0,1225,1),(6483,134,0,1225,2),(6484,208,0,1225,61),(6485,93,0,1226,73),(6486,97,0,1226,2),(6487,99,0,1226,1),(6488,134,0,1226,2),(6489,208,0,1226,62),(6490,93,0,1227,73),(6491,97,0,1227,2),(6492,99,0,1227,1),(6493,134,0,1227,2),(6494,208,0,1227,63),(6495,208,0,369,60),(6496,208,0,368,60),(6497,208,0,370,60),(6498,208,0,371,60),(6499,208,0,373,60),(6500,208,0,372,60),(6501,208,0,374,60),(6502,208,0,375,60),(6503,93,0,1228,75),(6504,97,0,1228,2),(6505,99,0,1228,1),(6506,134,0,1228,0),(6507,212,0,1228,77),(6508,93,0,1229,75),(6509,97,0,1229,2),(6510,99,0,1229,1),(6511,134,0,1229,0),(6512,212,0,1229,78),(6513,93,0,1230,75),(6514,97,0,1230,2),(6515,99,0,1230,1),(6516,134,0,1230,0),(6517,212,0,1230,79),(6518,208,0,290,60),(6519,208,0,291,60),(6520,208,0,292,60),(6521,93,0,1231,71),(6522,97,0,1231,2),(6523,99,0,1231,1),(6524,134,0,1231,2),(6525,212,0,1231,77),(6526,93,0,1232,71),(6527,97,0,1232,2),(6528,99,0,1232,1),(6529,134,0,1232,2),(6530,212,0,1232,78),(6531,93,0,1233,71),(6532,97,0,1233,2),(6533,99,0,1233,1),(6534,134,0,1233,2),(6535,212,0,1233,79),(6536,208,0,532,60),(6537,208,0,533,60),(6538,208,0,534,60),(6539,93,0,1234,75),(6540,97,0,1234,2),(6541,99,0,1234,1),(6542,134,0,1234,0),(6543,212,0,1234,77),(6544,93,0,1235,75),(6545,97,0,1235,2),(6546,99,0,1235,1),(6547,134,0,1235,0),(6548,212,0,1235,78),(6549,93,0,1236,75),(6550,97,0,1236,2),(6551,99,0,1236,1),(6552,134,0,1236,0),(6553,212,0,1236,79),(6554,93,0,1237,75),(6555,97,0,1237,2),(6556,99,0,1237,1),(6557,134,0,1237,0),(6558,212,0,1237,80),(6559,208,0,259,60),(6560,208,0,257,60),(6561,208,0,258,60),(6562,208,0,260,60),(6563,93,0,1238,74),(6564,97,0,1238,2),(6565,99,0,1238,1),(6566,134,0,1238,2),(6567,212,0,1238,77),(6568,93,0,1239,74),(6569,97,0,1239,2),(6570,99,0,1239,1),(6571,134,0,1239,2),(6572,212,0,1239,78),(6573,93,0,1240,74),(6574,97,0,1240,2),(6575,99,0,1240,1),(6576,134,0,1240,2),(6577,212,0,1240,80),(6578,93,0,1241,74),(6579,97,0,1241,2),(6580,99,0,1241,1),(6581,134,0,1241,2),(6582,212,0,1241,81),(6583,208,0,190,60),(6584,208,0,192,60),(6585,208,0,193,60),(6586,208,0,191,60),(6587,93,0,1242,74),(6588,97,0,1242,2),(6589,99,0,1242,1),(6590,134,0,1242,2),(6591,212,0,1242,77),(6592,93,0,1243,74),(6593,97,0,1243,2),(6594,99,0,1243,1),(6595,134,0,1243,2),(6596,212,0,1243,78),(6597,93,0,1244,74),(6598,97,0,1244,2),(6599,99,0,1244,1),(6600,134,0,1244,2),(6601,212,0,1244,79),(6602,93,0,1245,74),(6603,97,0,1245,2),(6604,99,0,1245,1),(6605,134,0,1245,2),(6606,212,0,1245,80),(6607,93,0,1246,74),(6608,97,0,1246,2),(6609,99,0,1246,1),(6610,134,0,1246,2),(6611,212,0,1246,81),(6612,208,0,274,60),(6613,208,0,272,60),(6614,208,0,273,60),(6615,208,0,275,60),(6616,208,0,276,60),(6617,115,0,111,1),(6618,115,0,114,1),(6619,115,0,116,1),(6620,115,0,118,1),(6621,115,0,121,1),(6622,115,0,523,1),(6623,115,0,31,1),(6624,115,0,32,1),(6625,115,0,48,1),(6626,115,0,58,1),(6627,208,0,58,NULL),(6628,115,0,74,1),(6629,208,0,118,NULL),(6630,208,0,121,NULL),(6631,115,0,124,1),(6632,115,0,125,1),(6633,115,0,126,1),(6634,115,0,127,1),(6635,208,0,127,NULL),(6636,115,0,128,1),(6637,208,0,523,NULL),(6638,115,0,545,1),(6639,208,0,545,NULL),(6640,93,0,1247,75),(6641,97,0,1247,2),(6642,99,0,1247,1),(6643,134,0,1247,2),(6644,208,0,1247,58),(6645,93,0,1248,75),(6646,97,0,1248,2),(6647,99,0,1248,1),(6648,134,0,1248,2),(6649,208,0,1248,59),(6650,93,0,1249,75),(6651,97,0,1249,2),(6652,99,0,1249,1),(6653,134,0,1249,2),(6654,208,0,1249,82),(6655,93,0,1250,75),(6656,97,0,1250,2),(6657,99,0,1250,1),(6658,134,0,1250,2),(6659,208,0,1250,62),(6660,93,0,1251,76),(6661,97,0,1251,2),(6662,99,0,1251,1),(6663,134,0,1251,2),(6664,208,0,1251,58),(6665,93,0,1252,76),(6666,97,0,1252,2),(6667,99,0,1252,1),(6668,134,0,1252,2),(6669,208,0,1252,59),(6670,93,0,1253,76),(6671,97,0,1253,2),(6672,99,0,1253,1),(6673,134,0,1253,2),(6674,208,0,1253,82),(6675,93,0,1254,76),(6676,97,0,1254,2),(6677,99,0,1254,1),(6678,134,0,1254,2),(6679,208,0,1254,61),(6680,93,0,1255,76),(6681,97,0,1255,2),(6682,99,0,1255,1),(6683,134,0,1255,2),(6684,208,0,1255,62),(6685,93,0,1256,76),(6686,97,0,1256,2),(6687,99,0,1256,1),(6688,134,0,1256,2),(6689,208,0,1256,63),(6690,93,0,1257,74),(6691,97,0,1257,2),(6692,99,0,1257,1),(6693,134,0,1257,2),(6694,212,0,1257,77),(6695,93,0,1258,74),(6696,97,0,1258,2),(6697,99,0,1258,1),(6698,134,0,1258,2),(6699,212,0,1258,78),(6700,93,0,1259,74),(6701,97,0,1259,2),(6702,99,0,1259,1),(6703,134,0,1259,2),(6704,212,0,1259,79),(6705,93,0,1260,74),(6706,97,0,1260,2),(6707,99,0,1260,1),(6708,134,0,1260,2),(6709,212,0,1260,80),(6710,208,0,315,60),(6711,208,0,314,60),(6712,208,0,312,60),(6713,208,0,313,60),(6714,93,0,1261,75),(6715,97,0,1261,2),(6716,99,0,1261,1),(6717,134,0,1261,2),(6718,208,0,1261,59),(6719,93,0,1262,75),(6720,97,0,1262,2),(6721,99,0,1262,1),(6722,134,0,1262,2),(6723,208,0,1262,82),(6724,93,0,1263,75),(6725,97,0,1263,2),(6726,99,0,1263,1),(6727,134,0,1263,2),(6728,208,0,1263,61),(6729,93,0,1264,75),(6730,97,0,1264,2),(6731,99,0,1264,1),(6732,134,0,1264,2),(6733,208,0,1264,62),(6734,93,0,1265,75),(6735,97,0,1265,2),(6736,99,0,1265,1),(6737,134,0,1265,2),(6738,208,0,1265,63),(6739,93,0,1266,73),(6740,97,0,1266,2),(6741,99,0,1266,1),(6742,134,0,1266,2),(6743,208,0,1266,58),(6744,93,0,1267,73),(6745,97,0,1267,2),(6746,99,0,1267,1),(6747,134,0,1267,2),(6748,208,0,1267,82),(6749,93,0,1268,73),(6750,97,0,1268,2),(6751,99,0,1268,1),(6752,134,0,1268,2),(6753,208,0,1268,61),(6754,93,0,1269,73),(6755,97,0,1269,2),(6756,99,0,1269,1),(6757,134,0,1269,2),(6758,208,0,1269,62),(6759,93,0,1270,73),(6760,97,0,1270,2),(6761,99,0,1270,1),(6762,134,0,1270,2),(6763,208,0,1270,63),(6764,93,0,1271,73),(6765,97,0,1271,2),(6766,99,0,1271,1),(6767,134,0,1271,2),(6768,208,0,1271,65),(6769,93,0,1272,75),(6770,97,0,1272,2),(6771,99,0,1272,1),(6772,134,0,1272,2),(6773,208,0,1272,58),(6774,93,0,1273,76),(6775,97,0,1273,2),(6776,99,0,1273,1),(6777,134,0,1273,2),(6778,208,0,1273,58),(6779,93,0,1274,75),(6780,97,0,1274,2),(6781,99,0,1274,1),(6782,134,0,1274,2),(6783,208,0,1274,59),(6784,93,0,1275,76),(6785,97,0,1275,2),(6786,99,0,1275,1),(6787,134,0,1275,2),(6788,208,0,1275,59),(6789,93,0,1276,75),(6790,97,0,1276,2),(6791,99,0,1276,1),(6792,134,0,1276,2),(6793,208,0,1276,82),(6794,93,0,1277,76),(6795,97,0,1277,2),(6796,99,0,1277,1),(6797,134,0,1277,2),(6798,208,0,1277,82),(6799,93,0,1278,75),(6800,97,0,1278,2),(6801,99,0,1278,1),(6802,134,0,1278,2),(6803,208,0,1278,62),(6804,93,0,1279,76),(6805,97,0,1279,2),(6806,99,0,1279,1),(6807,134,0,1279,2),(6808,208,0,1279,62),(6809,93,0,1280,74),(6810,97,0,1280,2),(6811,99,0,1280,1),(6812,134,0,1280,2),(6813,212,0,1280,77),(6814,93,0,1281,74),(6815,97,0,1281,2),(6816,99,0,1281,1),(6817,134,0,1281,2),(6818,212,0,1281,78),(6819,93,0,1282,74),(6820,97,0,1282,2),(6821,99,0,1282,1),(6822,134,0,1282,2),(6823,212,0,1282,80),(6824,93,0,1283,74),(6825,97,0,1283,2),(6826,99,0,1283,1),(6827,134,0,1283,2),(6828,212,0,1283,81),(6829,208,0,204,60),(6830,208,0,203,60),(6831,208,0,205,60),(6832,208,0,206,60),(6833,93,0,1284,75),(6834,97,0,1284,2),(6835,99,0,1284,1),(6836,134,0,1284,0),(6837,212,0,1284,77),(6838,93,0,1285,75),(6839,97,0,1285,2),(6840,99,0,1285,1),(6841,134,0,1285,0),(6842,212,0,1285,78),(6843,93,0,1286,75),(6844,97,0,1286,2),(6845,99,0,1286,1),(6846,134,0,1286,0),(6847,212,0,1286,79),(6848,208,0,309,60),(6849,208,0,310,60),(6850,208,0,311,60),(6851,93,0,1287,74),(6852,97,0,1287,2),(6853,99,0,1287,1),(6854,134,0,1287,0),(6855,212,0,1287,77),(6856,93,0,1288,74),(6857,97,0,1288,2),(6858,99,0,1288,1),(6859,134,0,1288,0),(6860,212,0,1288,78),(6861,93,0,1289,74),(6862,97,0,1289,2),(6863,99,0,1289,1),(6864,134,0,1289,0),(6865,212,0,1289,79),(6866,208,0,389,60),(6867,208,0,388,60),(6868,208,0,390,60),(6869,93,0,1290,76),(6870,97,0,1290,2),(6871,99,0,1290,1),(6872,134,0,1290,2),(6873,212,0,1290,77),(6874,93,0,1291,76),(6875,97,0,1291,2),(6876,99,0,1291,1),(6877,134,0,1291,2),(6878,212,0,1291,78),(6879,93,0,1292,76),(6880,97,0,1292,2),(6881,99,0,1292,1),(6882,134,0,1292,2),(6883,212,0,1292,80),(6884,208,0,164,60),(6885,208,0,163,60),(6886,208,0,165,60),(6887,93,0,1293,75),(6888,97,0,1293,2),(6889,99,0,1293,1),(6890,134,0,1293,2),(6891,212,0,1293,77),(6892,93,0,1294,75),(6893,97,0,1294,2),(6894,99,0,1294,1),(6895,134,0,1294,2),(6896,212,0,1294,78),(6897,93,0,1295,75),(6898,97,0,1295,2),(6899,99,0,1295,1),(6900,134,0,1295,2),(6901,212,0,1295,79),(6902,208,0,229,60),(6903,208,0,228,60),(6904,208,0,230,60),(6905,93,0,1296,71),(6906,97,0,1296,2),(6907,99,0,1296,1),(6908,134,0,1296,0),(6909,212,0,1296,77),(6910,93,0,1297,71),(6911,97,0,1297,2),(6912,99,0,1297,1),(6913,134,0,1297,0),(6914,212,0,1297,78),(6915,93,0,1298,71),(6916,97,0,1298,2),(6917,99,0,1298,1),(6918,134,0,1298,0),(6919,212,0,1298,79),(6920,208,0,513,60),(6921,208,0,514,60),(6922,208,0,515,60),(6923,93,0,1299,74),(6924,97,0,1299,2),(6925,99,0,1299,1),(6926,134,0,1299,0),(6927,212,0,1299,77),(6928,93,0,1300,74),(6929,97,0,1300,2),(6930,99,0,1300,1),(6931,134,0,1300,0),(6932,212,0,1300,78),(6933,93,0,1301,74),(6934,97,0,1301,2),(6935,99,0,1301,1),(6936,134,0,1301,0),(6937,212,0,1301,79),(6938,208,0,510,60),(6939,208,0,511,60),(6940,208,0,512,60),(6941,208,0,109,60),(6942,93,0,1302,75),(6943,97,0,1302,2),(6944,99,0,1302,1),(6945,134,0,1302,0),(6946,212,0,1302,77),(6947,93,0,1303,75),(6948,97,0,1303,2),(6949,99,0,1303,1),(6950,134,0,1303,0),(6951,212,0,1303,78),(6952,93,0,1304,75),(6953,97,0,1304,2),(6954,99,0,1304,1),(6955,134,0,1304,0),(6956,212,0,1304,79),(6957,208,0,517,60),(6958,208,0,518,60),(6959,208,0,519,60),(6960,208,0,112,60),(6961,93,0,1305,76),(6962,97,0,1305,2),(6963,99,0,1305,1),(6964,134,0,1305,2),(6965,212,0,1305,77),(6966,93,0,1306,76),(6967,97,0,1306,2),(6968,99,0,1306,1),(6969,134,0,1306,2),(6970,212,0,1306,78),(6971,93,0,1307,76),(6972,97,0,1307,2),(6973,99,0,1307,1),(6974,134,0,1307,2),(6975,212,0,1307,81),(6976,208,0,209,60),(6977,208,0,207,60),(6978,208,0,208,60),(6979,93,0,1308,74),(6980,97,0,1308,2),(6981,99,0,1308,1),(6982,134,0,1308,2),(6983,212,0,1308,79),(6984,93,0,1309,75),(6985,97,0,1309,2),(6986,99,0,1309,1),(6987,134,0,1309,2),(6988,212,0,1309,78),(6989,93,0,1310,75),(6990,97,0,1310,2),(6991,99,0,1310,1),(6992,134,0,1310,2),(6993,212,0,1310,79),(6994,208,0,316,60),(6995,208,0,317,60),(6996,93,0,1311,76),(6997,97,0,1311,2),(6998,99,0,1311,1),(6999,134,0,1311,2),(7000,208,0,548,60),(7001,93,0,1312,73),(7002,97,0,1312,2),(7003,99,0,1312,1),(7004,134,0,1312,2),(7005,212,0,1312,78),(7006,93,0,1313,73),(7007,97,0,1313,2),(7008,99,0,1313,1),(7009,134,0,1313,2),(7010,212,0,1313,79),(7011,208,0,231,60),(7012,208,0,232,60),(7013,93,0,1314,74),(7014,97,0,1314,2),(7015,99,0,1314,1),(7016,134,0,1314,2),(7017,208,0,547,60),(7018,93,0,1315,76),(7019,97,0,1315,2),(7020,99,0,1315,1),(7021,134,0,1315,2),(7022,212,0,1315,78),(7023,93,0,1316,76),(7024,97,0,1316,2),(7025,99,0,1316,1),(7026,134,0,1316,2),(7027,212,0,1316,79),(7028,208,0,285,60),(7029,208,0,286,60),(7030,93,0,1317,76),(7031,97,0,1317,2),(7032,99,0,1317,1),(7033,134,0,1317,2),(7034,208,0,546,60),(7035,93,0,1318,74),(7036,97,0,1318,2),(7037,99,0,1318,1),(7038,134,0,1318,2),(7039,93,0,1319,73),(7040,97,0,1319,2),(7041,99,0,1319,1),(7042,134,0,1319,2),(7043,208,0,544,60),(7044,93,0,1320,76),(7045,97,0,1320,2),(7046,99,0,1320,1),(7047,134,0,1320,2),(7048,212,0,1320,78),(7049,208,0,541,60),(7050,93,0,1321,75),(7051,97,0,1321,2),(7052,99,0,1321,1),(7053,134,0,1321,2),(7054,212,0,1321,78),(7055,208,0,531,60),(7056,93,0,1322,76),(7057,97,0,1322,2),(7058,99,0,1322,1),(7059,134,0,1322,2),(7060,212,0,1322,77),(7061,93,0,1323,76),(7062,97,0,1323,2),(7063,99,0,1323,1),(7064,134,0,1323,2),(7065,212,0,1323,78),(7066,93,0,1324,76),(7067,97,0,1324,2),(7068,99,0,1324,1),(7069,134,0,1324,2),(7070,212,0,1324,79),(7071,208,0,339,60),(7072,208,0,338,60),(7073,208,0,340,60),(7074,93,0,1325,75),(7075,97,0,1325,2),(7076,99,0,1325,1),(7077,134,0,1325,2),(7078,212,0,1325,78),(7079,93,0,1326,75),(7080,97,0,1326,2),(7081,99,0,1326,1),(7082,134,0,1326,2),(7083,212,0,1326,79),(7084,208,0,378,60),(7085,208,0,379,60),(7086,93,0,1327,76),(7087,97,0,1327,2),(7088,99,0,1327,1),(7089,134,0,1327,2),(7090,212,0,1327,78),(7091,93,0,1328,76),(7092,97,0,1328,2),(7093,99,0,1328,1),(7094,134,0,1328,2),(7095,212,0,1328,79),(7096,208,0,233,60),(7097,208,0,234,60),(7098,93,0,1329,76),(7099,97,0,1329,2),(7100,99,0,1329,1),(7101,134,0,1329,2),(7102,212,0,1329,78),(7103,93,0,1330,76),(7104,97,0,1330,2),(7105,99,0,1330,1),(7106,134,0,1330,2),(7107,212,0,1330,79),(7108,208,0,328,60),(7109,208,0,329,60),(7110,93,0,1331,75),(7111,97,0,1331,2),(7112,99,0,1331,1),(7113,134,0,1331,2),(7114,212,0,1331,78),(7115,208,0,516,60),(7116,93,0,1332,71),(7117,97,0,1332,2),(7118,99,0,1332,1),(7119,134,0,1332,2),(7120,212,0,1332,78),(7121,208,0,527,60),(7122,93,0,1333,73),(7123,97,0,1333,1),(7124,99,0,1333,1),(7125,134,0,1333,0),(7126,212,0,1333,79),(7127,93,0,1334,73),(7128,97,0,1334,1),(7129,99,0,1334,1),(7130,134,0,1334,0),(7131,212,0,1334,78),(7132,93,0,1335,73),(7133,97,0,1335,1),(7134,99,0,1335,1),(7135,134,0,1335,0),(7136,212,0,1335,80),(7137,93,0,1336,76),(7138,97,0,1336,1),(7139,99,0,1336,1),(7140,134,0,1336,0),(7141,212,0,1336,79),(7142,93,0,1337,76),(7143,97,0,1337,1),(7144,99,0,1337,1),(7145,134,0,1337,0),(7146,212,0,1337,78),(7147,93,0,1338,76),(7148,97,0,1338,1),(7149,99,0,1338,1),(7150,134,0,1338,0),(7151,212,0,1338,80),(7152,93,0,1339,74),(7153,97,0,1339,1),(7154,99,0,1339,1),(7155,134,0,1339,0),(7156,212,0,1339,79),(7157,93,0,1340,74),(7158,97,0,1340,1),(7159,99,0,1340,1),(7160,134,0,1340,0),(7161,212,0,1340,78),(7162,93,0,1341,74),(7163,97,0,1341,1),(7164,99,0,1341,1),(7165,134,0,1341,0),(7166,212,0,1341,80),(7171,208,0,1145,60),(7172,208,0,1146,60),(7173,208,0,1147,60),(7174,93,0,1343,76),(7175,97,0,1343,2),(7176,99,0,1343,1),(7177,134,0,1343,2),(7178,212,0,1343,79),(7179,93,0,1344,76),(7180,97,0,1344,2),(7181,99,0,1344,1),(7182,134,0,1344,2),(7183,212,0,1344,80),(7184,208,0,270,60),(7185,208,0,271,60),(7186,93,0,1345,71),(7187,97,0,1345,1),(7188,99,0,1345,1),(7189,134,0,1345,0),(7190,212,0,1345,77),(7191,93,0,1346,71),(7192,97,0,1346,1),(7193,99,0,1346,1),(7194,134,0,1346,0),(7195,212,0,1346,78),(7196,93,0,1347,71),(7197,97,0,1347,1),(7198,99,0,1347,1),(7199,134,0,1347,0),(7200,212,0,1347,79),(7201,93,0,1348,76),(7202,97,0,1348,1),(7203,99,0,1348,1),(7204,134,0,1348,0),(7205,212,0,1348,77),(7206,93,0,1349,76),(7207,97,0,1349,1),(7208,99,0,1349,1),(7209,134,0,1349,0),(7210,212,0,1349,78),(7211,93,0,1350,76),(7212,97,0,1350,1),(7213,99,0,1350,1),(7214,134,0,1350,0),(7215,212,0,1350,79),(7216,97,0,1351,1),(7217,99,0,1351,4),(7218,115,0,1351,1),(7219,134,0,1351,0),(7220,93,0,1352,72),(7221,97,0,1352,1),(7222,99,0,1352,1),(7223,134,0,1352,2),(7224,208,0,1352,61),(7225,93,0,1353,72),(7226,97,0,1353,1),(7227,99,0,1353,1),(7228,134,0,1353,2),(7229,208,0,1353,64),(7230,93,0,1354,72),(7231,97,0,1354,1),(7232,99,0,1354,1),(7233,134,0,1354,2),(7234,208,0,1354,62),(7235,93,0,1355,72),(7236,97,0,1355,1),(7237,99,0,1355,1),(7238,134,0,1355,2),(7239,208,0,1355,65),(7240,93,0,1356,72),(7241,97,0,1356,1),(7242,99,0,1356,1),(7243,134,0,1356,2),(7244,208,0,1356,63),(7245,93,0,1357,72),(7246,97,0,1357,1),(7247,99,0,1357,1),(7248,134,0,1357,2),(7249,208,0,1357,66),(7250,93,0,1358,74),(7251,97,0,1358,1),(7252,99,0,1358,1),(7253,134,0,1358,2),(7254,208,0,1358,61),(7255,93,0,1359,74),(7256,97,0,1359,1),(7257,99,0,1359,1),(7258,134,0,1359,2),(7259,208,0,1359,64),(7260,93,0,1360,74),(7261,97,0,1360,1),(7262,99,0,1360,1),(7263,134,0,1360,2),(7264,208,0,1360,62),(7265,93,0,1361,74),(7266,97,0,1361,1),(7267,99,0,1361,1),(7268,134,0,1361,2),(7269,208,0,1361,65),(7270,93,0,1362,74),(7271,97,0,1362,1),(7272,99,0,1362,1),(7273,134,0,1362,2),(7274,208,0,1362,63),(7275,93,0,1363,74),(7276,97,0,1363,1),(7277,99,0,1363,1),(7278,134,0,1363,2),(7279,208,0,1363,66),(7280,93,0,1364,73),(7281,97,0,1364,1),(7282,99,0,1364,1),(7283,134,0,1364,2),(7284,208,0,1364,61),(7285,93,0,1365,73),(7286,97,0,1365,1),(7287,99,0,1365,1),(7288,134,0,1365,2),(7289,208,0,1365,64),(7290,93,0,1366,73),(7291,97,0,1366,1),(7292,99,0,1366,1),(7293,134,0,1366,2),(7294,208,0,1366,62),(7295,93,0,1367,73),(7296,97,0,1367,1),(7297,99,0,1367,1),(7298,134,0,1367,2),(7299,208,0,1367,65),(7300,93,0,1368,73),(7301,97,0,1368,1),(7302,99,0,1368,1),(7303,134,0,1368,2),(7304,208,0,1368,63),(7305,93,0,1369,73),(7306,97,0,1369,1),(7307,99,0,1369,1),(7308,134,0,1369,2),(7309,208,0,1369,66),(7310,93,0,1370,76),(7311,97,0,1370,1),(7312,99,0,1370,1),(7313,134,0,1370,2),(7314,208,0,1370,61),(7315,93,0,1371,76),(7316,97,0,1371,1),(7317,99,0,1371,1),(7318,134,0,1371,2),(7319,208,0,1371,64),(7320,93,0,1372,76),(7321,97,0,1372,1),(7322,99,0,1372,1),(7323,134,0,1372,2),(7324,208,0,1372,62),(7325,93,0,1373,76),(7326,97,0,1373,1),(7327,99,0,1373,1),(7328,134,0,1373,2),(7329,208,0,1373,65),(7330,93,0,1374,76),(7331,97,0,1374,1),(7332,99,0,1374,1),(7333,134,0,1374,2),(7334,208,0,1374,63),(7335,93,0,1375,76),(7336,97,0,1375,1),(7337,99,0,1375,1),(7338,134,0,1375,2),(7339,208,0,1375,66),(7340,93,0,1376,75),(7341,97,0,1376,1),(7342,99,0,1376,1),(7343,134,0,1376,2),(7344,208,0,1376,61),(7345,93,0,1377,75),(7346,97,0,1377,1),(7347,99,0,1377,1),(7348,134,0,1377,2),(7349,208,0,1377,64),(7350,93,0,1378,75),(7351,97,0,1378,1),(7352,99,0,1378,1),(7353,134,0,1378,2),(7354,208,0,1378,62),(7355,93,0,1379,75),(7356,97,0,1379,1),(7357,99,0,1379,1),(7358,134,0,1379,2),(7359,208,0,1379,65),(7360,93,0,1380,75),(7361,97,0,1380,1),(7362,99,0,1380,1),(7363,134,0,1380,2),(7364,208,0,1380,63),(7365,93,0,1381,75),(7366,97,0,1381,1),(7367,99,0,1381,1),(7368,134,0,1381,2),(7369,208,0,1381,66),(7375,208,0,95,NULL),(7376,93,0,1383,74),(7377,97,0,1383,1),(7378,99,0,1383,1),(7379,134,0,1383,2),(7380,208,0,1383,63),(7381,93,0,1384,74),(7382,97,0,1384,1),(7383,99,0,1384,1),(7384,134,0,1384,2),(7385,208,0,1384,66),(7386,93,0,1385,74),(7387,97,0,1385,1),(7388,99,0,1385,1),(7389,134,0,1385,2),(7390,208,0,1385,62),(7391,93,0,1386,74),(7392,97,0,1386,1),(7393,99,0,1386,1),(7394,134,0,1386,2),(7395,208,0,1386,65),(7396,93,0,1387,74),(7397,97,0,1387,1),(7398,99,0,1387,1),(7399,134,0,1387,2),(7400,208,0,1387,61),(7401,93,0,1388,74),(7402,97,0,1388,1),(7403,99,0,1388,1),(7404,134,0,1388,2),(7405,208,0,1388,64),(7406,93,0,1389,75),(7407,97,0,1389,1),(7408,99,0,1389,1),(7409,134,0,1389,2),(7410,208,0,1389,63),(7411,93,0,1390,75),(7412,97,0,1390,1),(7413,99,0,1390,1),(7414,134,0,1390,2),(7415,208,0,1390,66),(7416,93,0,1391,75),(7417,97,0,1391,1),(7418,99,0,1391,1),(7419,134,0,1391,2),(7420,208,0,1391,62),(7421,93,0,1392,75),(7422,97,0,1392,1),(7423,99,0,1392,1),(7424,134,0,1392,2),(7425,208,0,1392,65),(7426,93,0,1393,75),(7427,97,0,1393,1),(7428,99,0,1393,1),(7429,134,0,1393,2),(7430,208,0,1393,61),(7431,93,0,1394,75),(7432,97,0,1394,1),(7433,99,0,1394,1),(7434,134,0,1394,2),(7435,208,0,1394,64),(7436,93,0,1395,72),(7437,97,0,1395,1),(7438,99,0,1395,1),(7439,134,0,1395,2),(7440,208,0,1395,63),(7441,93,0,1396,72),(7442,97,0,1396,1),(7443,99,0,1396,1),(7444,134,0,1396,2),(7445,208,0,1396,66),(7446,93,0,1397,72),(7447,97,0,1397,1),(7448,99,0,1397,1),(7449,134,0,1397,2),(7450,208,0,1397,62),(7451,93,0,1398,72),(7452,97,0,1398,1),(7453,99,0,1398,1),(7454,134,0,1398,2),(7455,208,0,1398,65),(7456,93,0,1399,72),(7457,97,0,1399,1),(7458,99,0,1399,1),(7459,134,0,1399,2),(7460,208,0,1399,61),(7461,93,0,1400,72),(7462,97,0,1400,1),(7463,99,0,1400,1),(7464,134,0,1400,2),(7465,208,0,1400,64),(7466,93,0,1401,73),(7467,97,0,1401,1),(7468,99,0,1401,1),(7469,134,0,1401,2),(7470,208,0,1401,63),(7471,93,0,1402,73),(7472,97,0,1402,1),(7473,99,0,1402,1),(7474,134,0,1402,2),(7475,208,0,1402,66),(7476,93,0,1403,73),(7477,97,0,1403,1),(7478,99,0,1403,1),(7479,134,0,1403,2),(7480,208,0,1403,62),(7481,93,0,1404,73),(7482,97,0,1404,1),(7483,99,0,1404,1),(7484,134,0,1404,2),(7485,208,0,1404,65),(7486,93,0,1405,73),(7487,97,0,1405,1),(7488,99,0,1405,1),(7489,134,0,1405,2),(7490,208,0,1405,61),(7491,93,0,1406,73),(7492,97,0,1406,1),(7493,99,0,1406,1),(7494,134,0,1406,2),(7495,208,0,1406,64),(7496,93,0,1407,76),(7497,97,0,1407,1),(7498,99,0,1407,1),(7499,134,0,1407,2),(7500,208,0,1407,63),(7501,93,0,1408,76),(7502,97,0,1408,1),(7503,99,0,1408,1),(7504,134,0,1408,2),(7505,208,0,1408,66),(7506,93,0,1409,76),(7507,97,0,1409,1),(7508,99,0,1409,1),(7509,134,0,1409,2),(7510,208,0,1409,62),(7511,93,0,1410,76),(7512,97,0,1410,1),(7513,99,0,1410,1),(7514,134,0,1410,2),(7515,208,0,1410,65),(7516,93,0,1411,76),(7517,97,0,1411,1),(7518,99,0,1411,1),(7519,134,0,1411,2),(7520,208,0,1411,61),(7521,93,0,1412,76),(7522,97,0,1412,1),(7523,99,0,1412,1),(7524,134,0,1412,2),(7525,208,0,1412,64),(7526,97,0,1413,1),(7527,99,0,1413,4),(7528,115,0,1413,1),(7529,134,0,1413,2),(7531,93,0,1414,71),(7532,97,0,1414,1),(7533,99,0,1414,1),(7534,134,0,1414,0),(7535,212,0,1414,77),(7536,93,0,1415,71),(7537,97,0,1415,1),(7538,99,0,1415,1),(7539,134,0,1415,0),(7540,212,0,1415,78),(7541,93,0,1416,71),(7542,97,0,1416,1),(7543,99,0,1416,1),(7544,134,0,1416,0),(7545,212,0,1416,79),(7546,93,0,1417,76),(7547,97,0,1417,1),(7548,99,0,1417,1),(7549,134,0,1417,0),(7550,212,0,1417,77),(7551,93,0,1418,76),(7552,97,0,1418,1),(7553,99,0,1418,1),(7554,134,0,1418,0),(7555,212,0,1418,78),(7556,93,0,1419,76),(7557,97,0,1419,1),(7558,99,0,1419,1),(7559,134,0,1419,0),(7560,212,0,1419,79),(7561,93,0,1420,76),(7562,97,0,1420,1),(7563,99,0,1420,1),(7564,134,0,1420,0),(7565,208,0,1420,67),(7566,93,0,1421,76),(7567,97,0,1421,1),(7568,99,0,1421,1),(7569,134,0,1421,0),(7570,208,0,1421,65),(7571,93,0,1422,76),(7572,97,0,1422,1),(7573,99,0,1422,1),(7574,134,0,1422,0),(7575,208,0,1422,64),(7576,93,0,1423,76),(7577,97,0,1423,1),(7578,99,0,1423,1),(7579,134,0,1423,0),(7580,208,0,1423,63),(7581,93,0,1424,76),(7582,97,0,1424,1),(7583,99,0,1424,1),(7584,134,0,1424,0),(7585,208,0,1424,62),(7586,93,0,1425,76),(7587,97,0,1425,1),(7588,99,0,1425,1),(7589,134,0,1425,0),(7590,208,0,1425,82),(7591,93,0,1426,76),(7592,97,0,1426,1),(7593,99,0,1426,1),(7594,134,0,1426,0),(7595,208,0,1426,59),(7596,93,0,1427,75),(7597,97,0,1427,1),(7598,99,0,1427,1),(7599,134,0,1427,0),(7600,208,0,1427,67),(7601,93,0,1428,75),(7602,97,0,1428,1),(7603,99,0,1428,1),(7604,134,0,1428,0),(7605,208,0,1428,65),(7606,93,0,1429,75),(7607,97,0,1429,1),(7608,99,0,1429,1),(7609,134,0,1429,0),(7610,208,0,1429,64),(7611,93,0,1430,75),(7612,97,0,1430,1),(7613,99,0,1430,1),(7614,134,0,1430,0),(7615,208,0,1430,63),(7616,93,0,1431,75),(7617,97,0,1431,1),(7618,99,0,1431,1),(7619,134,0,1431,0),(7620,208,0,1431,62),(7621,93,0,1432,75),(7622,97,0,1432,1),(7623,99,0,1432,1),(7624,134,0,1432,0),(7625,208,0,1432,82),(7626,93,0,1433,75),(7627,97,0,1433,1),(7628,99,0,1433,1),(7629,134,0,1433,0),(7630,208,0,1433,59),(7631,93,0,1434,72),(7632,97,0,1434,1),(7633,99,0,1434,1),(7634,134,0,1434,0),(7635,208,0,1434,67),(7636,93,0,1435,72),(7637,97,0,1435,1),(7638,99,0,1435,1),(7639,134,0,1435,0),(7640,208,0,1435,65),(7641,93,0,1436,72),(7642,97,0,1436,1),(7643,99,0,1436,1),(7644,134,0,1436,0),(7645,208,0,1436,64),(7646,93,0,1437,72),(7647,97,0,1437,1),(7648,99,0,1437,1),(7649,134,0,1437,0),(7650,208,0,1437,63),(7651,93,0,1438,72),(7652,97,0,1438,1),(7653,99,0,1438,1),(7654,134,0,1438,0),(7655,208,0,1438,62),(7656,93,0,1439,72),(7657,97,0,1439,1),(7658,99,0,1439,1),(7659,134,0,1439,0),(7660,208,0,1439,82),(7661,93,0,1440,72),(7662,97,0,1440,1),(7663,99,0,1440,1),(7664,134,0,1440,0),(7665,208,0,1440,59),(7666,93,0,1441,71),(7667,97,0,1441,1),(7668,99,0,1441,1),(7669,134,0,1441,0),(7670,208,0,1441,67),(7671,93,0,1442,71),(7672,97,0,1442,1),(7673,99,0,1442,1),(7674,134,0,1442,0),(7675,208,0,1442,65),(7676,93,0,1443,71),(7677,97,0,1443,1),(7678,99,0,1443,1),(7679,134,0,1443,0),(7680,208,0,1443,64),(7681,93,0,1444,71),(7682,97,0,1444,1),(7683,99,0,1444,1),(7684,134,0,1444,0),(7685,208,0,1444,63),(7686,93,0,1445,71),(7687,97,0,1445,1),(7688,99,0,1445,1),(7689,134,0,1445,0),(7690,208,0,1445,62),(7691,93,0,1446,71),(7692,97,0,1446,1),(7693,99,0,1446,1),(7694,134,0,1446,0),(7695,208,0,1446,82),(7696,93,0,1447,71),(7697,97,0,1447,1),(7698,99,0,1447,1),(7699,134,0,1447,0),(7700,208,0,1447,59),(7701,93,0,1448,73),(7702,97,0,1448,1),(7703,99,0,1448,1),(7704,134,0,1448,0),(7705,208,0,1448,67),(7706,93,0,1449,73),(7707,97,0,1449,1),(7708,99,0,1449,1),(7709,134,0,1449,0),(7710,208,0,1449,65),(7711,93,0,1450,73),(7712,97,0,1450,1),(7713,99,0,1450,1),(7714,134,0,1450,0),(7715,208,0,1450,64),(7716,93,0,1451,73),(7717,97,0,1451,1),(7718,99,0,1451,1),(7719,134,0,1451,0),(7720,208,0,1451,63),(7721,93,0,1452,73),(7722,97,0,1452,1),(7723,99,0,1452,1),(7724,134,0,1452,0),(7725,208,0,1452,62),(7726,93,0,1453,73),(7727,97,0,1453,1),(7728,99,0,1453,1),(7729,134,0,1453,0),(7730,208,0,1453,82),(7731,93,0,1454,73),(7732,97,0,1454,1),(7733,99,0,1454,1),(7734,134,0,1454,0),(7735,208,0,1454,59),(7736,97,0,1455,1),(7737,99,0,1455,4),(7738,115,0,1455,1),(7739,134,0,1455,0),(7742,93,0,1456,72),(7743,97,0,1456,1),(7744,99,0,1456,1),(7745,134,0,1456,0),(7746,212,0,1456,78),(7747,93,0,1457,72),(7748,97,0,1457,1),(7749,99,0,1457,1),(7750,134,0,1457,0),(7751,212,0,1457,79),(7752,93,0,1458,72),(7753,97,0,1458,1),(7754,99,0,1458,1),(7755,134,0,1458,0),(7756,212,0,1458,80),(7757,93,0,1459,72),(7758,97,0,1459,1),(7759,99,0,1459,1),(7760,134,0,1459,0),(7761,212,0,1459,81),(7762,93,0,1460,75),(7763,97,0,1460,1),(7764,99,0,1460,1),(7765,134,0,1460,0),(7766,212,0,1460,78),(7767,93,0,1461,75),(7768,97,0,1461,1),(7769,99,0,1461,1),(7770,134,0,1461,0),(7771,212,0,1461,79),(7772,93,0,1462,75),(7773,97,0,1462,1),(7774,99,0,1462,1),(7775,134,0,1462,0),(7776,212,0,1462,80),(7777,93,0,1463,75),(7778,97,0,1463,1),(7779,99,0,1463,1),(7780,134,0,1463,0),(7781,212,0,1463,81),(7782,97,0,1464,1),(7783,99,0,1464,4),(7784,115,0,1464,1),(7785,134,0,1464,0),(7786,208,0,394,60),(7787,93,0,1465,74),(7788,97,0,1465,1),(7789,99,0,1465,1),(7790,134,0,1465,2),(7791,208,0,1465,66),(7792,93,0,1466,74),(7793,97,0,1466,1),(7794,99,0,1466,1),(7795,134,0,1466,2),(7796,208,0,1466,62),(7797,93,0,1467,74),(7798,97,0,1467,1),(7799,99,0,1467,1),(7800,134,0,1467,2),(7801,208,0,1467,61),(7802,93,0,1468,74),(7803,97,0,1468,1),(7804,99,0,1468,1),(7805,134,0,1468,2),(7806,208,0,1468,64),(7807,93,0,1469,74),(7808,97,0,1469,1),(7809,99,0,1469,1),(7810,134,0,1469,2),(7811,208,0,1469,67),(7812,93,0,1470,74),(7813,97,0,1470,1),(7814,99,0,1470,1),(7815,134,0,1470,2),(7816,208,0,1470,65),(7817,93,0,1471,75),(7818,97,0,1471,1),(7819,99,0,1471,1),(7820,134,0,1471,2),(7821,208,0,1471,66),(7822,93,0,1472,75),(7823,97,0,1472,1),(7824,99,0,1472,1),(7825,134,0,1472,2),(7826,208,0,1472,62),(7827,93,0,1473,75),(7828,97,0,1473,1),(7829,99,0,1473,1),(7830,134,0,1473,2),(7831,208,0,1473,61),(7832,93,0,1474,75),(7833,97,0,1474,1),(7834,99,0,1474,1),(7835,134,0,1474,2),(7836,208,0,1474,64),(7837,93,0,1475,75),(7838,97,0,1475,1),(7839,99,0,1475,1),(7840,134,0,1475,2),(7841,208,0,1475,67),(7842,93,0,1476,75),(7843,97,0,1476,1),(7844,99,0,1476,1),(7845,134,0,1476,2),(7846,208,0,1476,65),(7847,93,0,1477,72),(7848,97,0,1477,1),(7849,99,0,1477,1),(7850,134,0,1477,2),(7851,208,0,1477,66),(7852,93,0,1478,72),(7853,97,0,1478,1),(7854,99,0,1478,1),(7855,134,0,1478,2),(7856,208,0,1478,62),(7857,93,0,1479,72),(7858,97,0,1479,1),(7859,99,0,1479,1),(7860,134,0,1479,2),(7861,208,0,1479,61),(7862,93,0,1480,72),(7863,97,0,1480,1),(7864,99,0,1480,1),(7865,134,0,1480,2),(7866,208,0,1480,64),(7867,93,0,1481,72),(7868,97,0,1481,1),(7869,99,0,1481,1),(7870,134,0,1481,2),(7871,208,0,1481,67),(7872,93,0,1482,72),(7873,97,0,1482,1),(7874,99,0,1482,1),(7875,134,0,1482,2),(7876,208,0,1482,65),(7877,93,0,1483,73),(7878,97,0,1483,1),(7879,99,0,1483,1),(7880,134,0,1483,2),(7881,208,0,1483,66),(7882,93,0,1484,73),(7883,97,0,1484,1),(7884,99,0,1484,1),(7885,134,0,1484,2),(7886,208,0,1484,62),(7887,93,0,1485,73),(7888,97,0,1485,1),(7889,99,0,1485,1),(7890,134,0,1485,2),(7891,208,0,1485,61),(7892,93,0,1486,73),(7893,97,0,1486,1),(7894,99,0,1486,1),(7895,134,0,1486,2),(7896,208,0,1486,64),(7897,93,0,1487,73),(7898,97,0,1487,1),(7899,99,0,1487,1),(7900,134,0,1487,2),(7901,208,0,1487,67),(7902,93,0,1488,73),(7903,97,0,1488,1),(7904,99,0,1488,1),(7905,134,0,1488,2),(7906,208,0,1488,65),(7907,93,0,1489,76),(7908,97,0,1489,1),(7909,99,0,1489,1),(7910,134,0,1489,2),(7911,208,0,1489,66),(7912,93,0,1490,76),(7913,97,0,1490,1),(7914,99,0,1490,1),(7915,134,0,1490,2),(7916,208,0,1490,62),(7917,93,0,1491,76),(7918,97,0,1491,1),(7919,99,0,1491,1),(7920,134,0,1491,2),(7921,208,0,1491,61),(7922,93,0,1492,76),(7923,97,0,1492,1),(7924,99,0,1492,1),(7925,134,0,1492,2),(7926,208,0,1492,64),(7927,93,0,1493,76),(7928,97,0,1493,1),(7929,99,0,1493,1),(7930,134,0,1493,2),(7931,208,0,1493,67),(7932,93,0,1494,76),(7933,97,0,1494,1),(7934,99,0,1494,1),(7935,134,0,1494,2),(7936,208,0,1494,65),(7937,97,0,1495,1),(7938,99,0,1495,4),(7939,115,0,1495,1),(7940,134,0,1495,2),(7942,93,0,1496,73),(7943,97,0,1496,1),(7944,99,0,1496,1),(7945,134,0,1496,2),(7946,208,0,1496,58),(7947,93,0,1497,73),(7948,97,0,1497,1),(7949,99,0,1497,1),(7950,134,0,1497,2),(7951,208,0,1497,61),(7952,93,0,1498,73),(7953,97,0,1498,1),(7954,99,0,1498,1),(7955,134,0,1498,2),(7956,208,0,1498,59),(7957,93,0,1499,73),(7958,97,0,1499,1),(7959,99,0,1499,1),(7960,134,0,1499,2),(7961,208,0,1499,62),(7962,93,0,1500,73),(7963,97,0,1500,1),(7964,99,0,1500,1),(7965,134,0,1500,2),(7966,208,0,1500,82),(7967,93,0,1501,73),(7968,97,0,1501,1),(7969,99,0,1501,1),(7970,134,0,1501,2),(7971,208,0,1501,63),(7972,93,0,1502,72),(7973,97,0,1502,1),(7974,99,0,1502,1),(7975,134,0,1502,2),(7976,208,0,1502,58),(7977,93,0,1503,72),(7978,97,0,1503,1),(7979,99,0,1503,1),(7980,134,0,1503,2),(7981,208,0,1503,61),(7982,93,0,1504,72),(7983,97,0,1504,1),(7984,99,0,1504,1),(7985,134,0,1504,2),(7986,208,0,1504,59),(7987,93,0,1505,72),(7988,97,0,1505,1),(7989,99,0,1505,1),(7990,134,0,1505,2),(7991,208,0,1505,62),(7992,93,0,1506,72),(7993,97,0,1506,1),(7994,99,0,1506,1),(7995,134,0,1506,2),(7996,208,0,1506,82),(7997,93,0,1507,72),(7998,97,0,1507,1),(7999,99,0,1507,1),(8000,134,0,1507,2),(8001,208,0,1507,63),(8002,93,0,1508,75),(8003,97,0,1508,1),(8004,99,0,1508,1),(8005,134,0,1508,2),(8006,208,0,1508,58),(8007,93,0,1509,75),(8008,97,0,1509,1),(8009,99,0,1509,1),(8010,134,0,1509,2),(8011,208,0,1509,61),(8012,93,0,1510,75),(8013,97,0,1510,1),(8014,99,0,1510,1),(8015,134,0,1510,2),(8016,208,0,1510,59),(8017,93,0,1511,75),(8018,97,0,1511,1),(8019,99,0,1511,1),(8020,134,0,1511,2),(8021,208,0,1511,62),(8022,93,0,1512,75),(8023,97,0,1512,1),(8024,99,0,1512,1),(8025,134,0,1512,2),(8026,208,0,1512,82),(8027,93,0,1513,75),(8028,97,0,1513,1),(8029,99,0,1513,1),(8030,134,0,1513,2),(8031,208,0,1513,63),(8032,93,0,1514,76),(8033,97,0,1514,1),(8034,99,0,1514,1),(8035,134,0,1514,2),(8036,208,0,1514,58),(8037,93,0,1515,76),(8038,97,0,1515,1),(8039,99,0,1515,1),(8040,134,0,1515,2),(8041,208,0,1515,61),(8042,93,0,1516,76),(8043,97,0,1516,1),(8044,99,0,1516,1),(8045,134,0,1516,2),(8046,208,0,1516,59),(8047,93,0,1517,76),(8048,97,0,1517,1),(8049,99,0,1517,1),(8050,134,0,1517,2),(8051,208,0,1517,62),(8052,93,0,1518,76),(8053,97,0,1518,1),(8054,99,0,1518,1),(8055,134,0,1518,2),(8056,208,0,1518,82),(8057,93,0,1519,76),(8058,97,0,1519,1),(8059,99,0,1519,1),(8060,134,0,1519,2),(8061,208,0,1519,63),(8062,93,0,1520,71),(8063,97,0,1520,1),(8064,99,0,1520,1),(8065,134,0,1520,2),(8066,208,0,1520,58),(8067,93,0,1521,71),(8068,97,0,1521,1),(8069,99,0,1521,1),(8070,134,0,1521,2),(8071,208,0,1521,61),(8072,93,0,1522,71),(8073,97,0,1522,1),(8074,99,0,1522,1),(8075,134,0,1522,2),(8076,208,0,1522,59),(8077,93,0,1523,71),(8078,97,0,1523,1),(8079,99,0,1523,1),(8080,134,0,1523,2),(8081,208,0,1523,62),(8082,93,0,1524,71),(8083,97,0,1524,1),(8084,99,0,1524,1),(8085,134,0,1524,2),(8086,208,0,1524,82),(8087,93,0,1525,71),(8088,97,0,1525,1),(8089,99,0,1525,1),(8090,134,0,1525,2),(8091,208,0,1525,63),(8092,97,0,1526,1),(8093,99,0,1526,4),(8094,115,0,1526,1),(8095,134,0,1526,2),(8097,93,0,1527,71),(8098,97,0,1527,1),(8099,99,0,1527,1),(8100,134,0,1527,0),(8101,212,0,1527,77),(8102,93,0,1528,71),(8103,97,0,1528,1),(8104,99,0,1528,1),(8105,134,0,1528,0),(8106,212,0,1528,78),(8107,93,0,1529,71),(8108,97,0,1529,1),(8109,99,0,1529,1),(8110,134,0,1529,0),(8111,212,0,1529,81),(8112,93,0,1530,71),(8113,97,0,1530,1),(8114,99,0,1530,1),(8115,134,0,1530,0),(8116,212,0,1530,79),(8117,93,0,1531,72),(8118,97,0,1531,1),(8119,99,0,1531,1),(8120,134,0,1531,0),(8121,212,0,1531,77),(8122,93,0,1532,72),(8123,97,0,1532,1),(8124,99,0,1532,1),(8125,134,0,1532,0),(8126,212,0,1532,78),(8127,93,0,1533,72),(8128,97,0,1533,1),(8129,99,0,1533,1),(8130,134,0,1533,0),(8131,212,0,1533,81),(8132,93,0,1534,72),(8133,97,0,1534,1),(8134,99,0,1534,1),(8135,134,0,1534,0),(8136,212,0,1534,79),(8137,97,0,1535,1),(8138,99,0,1535,4),(8139,115,0,1535,1),(8140,134,0,1535,0),(8141,93,0,1536,76),(8142,97,0,1536,1),(8143,99,0,1536,1),(8144,134,0,1536,2),(8145,208,0,1536,61),(8146,93,0,1537,73),(8147,97,0,1537,1),(8148,99,0,1537,1),(8149,134,0,1537,2),(8150,208,0,1537,61),(8151,93,0,1538,72),(8152,97,0,1538,1),(8153,99,0,1538,1),(8154,134,0,1538,2),(8155,208,0,1538,61),(8156,93,0,1539,71),(8157,97,0,1539,1),(8158,99,0,1539,1),(8159,134,0,1539,2),(8160,208,0,1539,61),(8161,93,0,1540,74),(8162,97,0,1540,1),(8163,99,0,1540,1),(8164,134,0,1540,2),(8165,208,0,1540,61),(8166,93,0,1541,76),(8167,97,0,1541,1),(8168,99,0,1541,1),(8169,134,0,1541,2),(8170,208,0,1541,64),(8171,93,0,1542,73),(8172,97,0,1542,1),(8173,99,0,1542,1),(8174,134,0,1542,2),(8175,208,0,1542,64),(8176,93,0,1543,72),(8177,97,0,1543,1),(8178,99,0,1543,1),(8179,134,0,1543,2),(8180,208,0,1543,64),(8181,93,0,1544,71),(8182,97,0,1544,1),(8183,99,0,1544,1),(8184,134,0,1544,2),(8185,208,0,1544,64),(8186,93,0,1545,74),(8187,97,0,1545,1),(8188,99,0,1545,1),(8189,134,0,1545,2),(8190,208,0,1545,64),(8191,93,0,1546,76),(8192,97,0,1546,1),(8193,99,0,1546,1),(8194,134,0,1546,2),(8195,208,0,1546,62),(8196,93,0,1547,73),(8197,97,0,1547,1),(8198,99,0,1547,1),(8199,134,0,1547,2),(8200,208,0,1547,62),(8201,93,0,1548,72),(8202,97,0,1548,1),(8203,99,0,1548,1),(8204,134,0,1548,2),(8205,208,0,1548,62),(8206,93,0,1549,71),(8207,97,0,1549,1),(8208,99,0,1549,1),(8209,134,0,1549,2),(8210,208,0,1549,62),(8211,93,0,1550,74),(8212,97,0,1550,1),(8213,99,0,1550,1),(8214,134,0,1550,2),(8215,208,0,1550,62),(8216,93,0,1551,76),(8217,97,0,1551,1),(8218,99,0,1551,1),(8219,134,0,1551,2),(8220,208,0,1551,65),(8221,93,0,1552,73),(8222,97,0,1552,1),(8223,99,0,1552,1),(8224,134,0,1552,2),(8225,208,0,1552,65),(8226,93,0,1553,72),(8227,97,0,1553,1),(8228,99,0,1553,1),(8229,134,0,1553,2),(8230,208,0,1553,65),(8231,93,0,1554,71),(8232,97,0,1554,1),(8233,99,0,1554,1),(8234,134,0,1554,2),(8235,208,0,1554,65),(8236,93,0,1555,74),(8237,97,0,1555,1),(8238,99,0,1555,1),(8239,134,0,1555,2),(8240,208,0,1555,65),(8241,93,0,1556,76),(8242,97,0,1556,1),(8243,99,0,1556,1),(8244,134,0,1556,2),(8245,208,0,1556,63),(8246,93,0,1557,73),(8247,97,0,1557,1),(8248,99,0,1557,1),(8249,134,0,1557,2),(8250,208,0,1557,63),(8251,93,0,1558,72),(8252,97,0,1558,1),(8253,99,0,1558,1),(8254,134,0,1558,2),(8255,208,0,1558,63),(8256,93,0,1559,71),(8257,97,0,1559,1),(8258,99,0,1559,1),(8259,134,0,1559,2),(8260,208,0,1559,63),(8261,93,0,1560,74),(8262,97,0,1560,1),(8263,99,0,1560,1),(8264,134,0,1560,2),(8265,208,0,1560,63),(8266,97,0,1561,1),(8267,99,0,1561,4),(8268,115,0,1561,1),(8269,134,0,1561,2),(8271,93,0,1562,71),(8272,97,0,1562,1),(8273,99,0,1562,1),(8274,134,0,1562,0),(8275,212,0,1562,77),(8276,93,0,1563,71),(8277,97,0,1563,1),(8278,99,0,1563,1),(8279,134,0,1563,0),(8280,212,0,1563,78),(8281,93,0,1564,71),(8282,97,0,1564,1),(8283,99,0,1564,1),(8284,134,0,1564,0),(8285,212,0,1564,79),(8286,93,0,1565,75),(8287,97,0,1565,1),(8288,99,0,1565,1),(8289,134,0,1565,0),(8290,212,0,1565,77),(8291,93,0,1566,75),(8292,97,0,1566,1),(8293,99,0,1566,1),(8294,134,0,1566,0),(8295,212,0,1566,78),(8296,93,0,1567,75),(8297,97,0,1567,1),(8298,99,0,1567,1),(8299,134,0,1567,0),(8300,212,0,1567,79),(8301,97,0,1568,1),(8302,99,0,1568,4),(8303,115,0,1568,1),(8304,134,0,1568,0),(8305,93,0,1569,71),(8306,97,0,1569,1),(8307,99,0,1569,1),(8308,134,0,1569,0),(8309,212,0,1569,80),(8310,93,0,1570,71),(8311,97,0,1570,1),(8312,99,0,1570,1),(8313,134,0,1570,0),(8314,212,0,1570,78),(8315,93,0,1571,71),(8316,97,0,1571,1),(8317,99,0,1571,1),(8318,134,0,1571,0),(8319,212,0,1571,79),(8320,93,0,1572,74),(8321,97,0,1572,1),(8322,99,0,1572,1),(8323,134,0,1572,0),(8324,212,0,1572,80),(8325,93,0,1573,76),(8326,97,0,1573,1),(8327,99,0,1573,1),(8328,134,0,1573,2),(8329,212,0,1573,77),(8330,93,0,1574,76),(8331,97,0,1574,1),(8332,99,0,1574,1),(8333,134,0,1574,2),(8334,212,0,1574,78),(8335,93,0,1575,74),(8336,97,0,1575,1),(8337,99,0,1575,1),(8338,134,0,1575,0),(8339,212,0,1575,78),(8340,93,0,1576,76),(8341,97,0,1576,1),(8342,99,0,1576,1),(8343,134,0,1576,2),(8344,212,0,1576,79),(8345,93,0,1577,76),(8346,97,0,1577,1),(8347,99,0,1577,1),(8348,134,0,1577,2),(8349,212,0,1577,80),(8350,93,0,1578,73),(8351,97,0,1578,1),(8352,99,0,1578,1),(8353,134,0,1578,2),(8354,212,0,1578,77),(8355,93,0,1579,74),(8356,97,0,1579,1),(8357,99,0,1579,1),(8358,134,0,1579,0),(8359,212,0,1579,79),(8360,93,0,1580,73),(8361,97,0,1580,1),(8362,99,0,1580,1),(8363,134,0,1580,2),(8364,212,0,1580,78),(8365,93,0,1581,73),(8366,97,0,1581,1),(8367,99,0,1581,1),(8368,134,0,1581,2),(8369,212,0,1581,79),(8370,93,0,1582,73),(8371,97,0,1582,1),(8372,99,0,1582,1),(8373,134,0,1582,2),(8374,212,0,1582,80),(8375,97,0,1583,1),(8376,99,0,1583,4),(8377,115,0,1583,1),(8378,134,0,1583,0),(8379,93,0,1584,75),(8380,97,0,1584,1),(8381,99,0,1584,1),(8382,134,0,1584,2),(8383,212,0,1584,77),(8384,93,0,1585,75),(8385,97,0,1585,1),(8386,99,0,1585,1),(8387,134,0,1585,2),(8388,212,0,1585,78),(8389,93,0,1586,75),(8390,97,0,1586,1),(8391,99,0,1586,1),(8392,134,0,1586,2),(8393,212,0,1586,79),(8394,93,0,1587,75),(8395,97,0,1587,1),(8396,99,0,1587,1),(8397,134,0,1587,2),(8398,212,0,1587,80),(8399,93,0,1588,72),(8400,97,0,1588,1),(8401,99,0,1588,1),(8402,134,0,1588,2),(8403,212,0,1588,77),(8404,93,0,1589,72),(8405,97,0,1589,1),(8406,99,0,1589,1),(8407,134,0,1589,2),(8408,212,0,1589,78),(8409,93,0,1590,72),(8410,97,0,1590,1),(8411,99,0,1590,1),(8412,134,0,1590,2),(8413,212,0,1590,79),(8414,93,0,1591,72),(8415,97,0,1591,1),(8416,99,0,1591,1),(8417,134,0,1591,2),(8418,212,0,1591,80),(8419,93,0,1592,71),(8420,97,0,1592,1),(8421,99,0,1592,1),(8422,134,0,1592,2),(8423,212,0,1592,77),(8424,93,0,1593,71),(8425,97,0,1593,1),(8426,99,0,1593,1),(8427,134,0,1593,2),(8428,212,0,1593,78),(8429,93,0,1594,71),(8430,97,0,1594,1),(8431,99,0,1594,1),(8432,134,0,1594,2),(8433,212,0,1594,79),(8434,93,0,1595,71),(8435,97,0,1595,1),(8436,99,0,1595,1),(8437,134,0,1595,2),(8438,212,0,1595,80),(8439,97,0,1596,1),(8440,99,0,1596,4),(8441,115,0,1596,1),(8442,134,0,1596,2),(8443,97,0,1597,1),(8444,99,0,1597,4),(8445,115,0,1597,1),(8446,134,0,1597,2),(8448,93,0,1598,74),(8449,97,0,1598,1),(8450,99,0,1598,1),(8451,134,0,1598,0),(8452,212,0,1598,80),(8453,93,0,1599,74),(8454,97,0,1599,1),(8455,99,0,1599,1),(8456,134,0,1599,0),(8457,212,0,1599,78),(8458,93,0,1600,74),(8459,97,0,1600,1),(8460,99,0,1600,1),(8461,134,0,1600,0),(8462,212,0,1600,79),(8463,93,0,1601,75),(8464,97,0,1601,1),(8465,99,0,1601,1),(8466,134,0,1601,0),(8467,212,0,1601,80),(8468,93,0,1602,75),(8469,97,0,1602,1),(8470,99,0,1602,1),(8471,134,0,1602,0),(8472,212,0,1602,78),(8473,93,0,1603,75),(8474,97,0,1603,1),(8475,99,0,1603,1),(8476,134,0,1603,0),(8477,212,0,1603,79),(8478,97,0,1604,1),(8479,99,0,1604,4),(8480,115,0,1604,1),(8481,134,0,1604,0),(8482,93,0,1605,76),(8483,97,0,1605,1),(8484,99,0,1605,1),(8485,134,0,1605,2),(8486,208,0,1605,63),(8487,93,0,1606,75),(8488,97,0,1606,1),(8489,99,0,1606,1),(8490,134,0,1606,2),(8491,208,0,1606,63),(8492,93,0,1607,72),(8493,97,0,1607,1),(8494,99,0,1607,1),(8495,134,0,1607,2),(8496,208,0,1607,63),(8497,93,0,1608,71),(8498,97,0,1608,1),(8499,99,0,1608,1),(8500,134,0,1608,2),(8501,208,0,1608,63),(8502,93,0,1609,74),(8503,97,0,1609,1),(8504,99,0,1609,1),(8505,134,0,1609,2),(8506,208,0,1609,63),(8507,93,0,1610,76),(8508,97,0,1610,1),(8509,99,0,1610,1),(8510,134,0,1610,2),(8511,208,0,1610,62),(8512,93,0,1611,75),(8513,97,0,1611,1),(8514,99,0,1611,1),(8515,134,0,1611,2),(8516,208,0,1611,62),(8517,93,0,1612,72),(8518,97,0,1612,1),(8519,99,0,1612,1),(8520,134,0,1612,2),(8521,208,0,1612,62),(8522,93,0,1613,71),(8523,97,0,1613,1),(8524,99,0,1613,1),(8525,134,0,1613,2),(8526,208,0,1613,62),(8527,93,0,1614,74),(8528,97,0,1614,1),(8529,99,0,1614,1),(8530,134,0,1614,2),(8531,208,0,1614,62),(8532,93,0,1615,76),(8533,97,0,1615,1),(8534,99,0,1615,1),(8535,134,0,1615,2),(8536,208,0,1615,64),(8537,93,0,1616,75),(8538,97,0,1616,1),(8539,99,0,1616,1),(8540,134,0,1616,2),(8541,208,0,1616,64),(8542,93,0,1617,72),(8543,97,0,1617,1),(8544,99,0,1617,1),(8545,134,0,1617,2),(8546,208,0,1617,64),(8547,93,0,1618,71),(8548,97,0,1618,1),(8549,99,0,1618,1),(8550,134,0,1618,2),(8551,208,0,1618,64),(8552,93,0,1619,74),(8553,97,0,1619,1),(8554,99,0,1619,1),(8555,134,0,1619,2),(8556,208,0,1619,64),(8557,93,0,1620,75),(8558,97,0,1620,1),(8559,99,0,1620,1),(8560,134,0,1620,2),(8561,212,0,1620,77),(8562,93,0,1621,75),(8563,97,0,1621,1),(8564,99,0,1621,1),(8565,134,0,1621,2),(8566,212,0,1621,80),(8567,93,0,1622,75),(8568,97,0,1622,1),(8569,99,0,1622,1),(8570,134,0,1622,2),(8571,212,0,1622,81),(8572,93,0,1623,75),(8573,97,0,1623,1),(8574,99,0,1623,1),(8575,134,0,1623,2),(8576,212,0,1623,78),(8577,93,0,1624,75),(8578,97,0,1624,1),(8579,99,0,1624,1),(8580,134,0,1624,2),(8581,212,0,1624,79),(8582,93,0,1625,73),(8583,97,0,1625,1),(8584,99,0,1625,1),(8585,134,0,1625,2),(8586,212,0,1625,77),(8587,93,0,1626,73),(8588,97,0,1626,1),(8589,99,0,1626,1),(8590,134,0,1626,2),(8591,212,0,1626,80),(8592,93,0,1627,73),(8593,97,0,1627,1),(8594,99,0,1627,1),(8595,134,0,1627,2),(8596,212,0,1627,81),(8597,93,0,1628,73),(8598,97,0,1628,1),(8599,99,0,1628,1),(8600,134,0,1628,2),(8601,212,0,1628,78),(8602,93,0,1629,73),(8603,97,0,1629,1),(8604,99,0,1629,1),(8605,134,0,1629,2),(8606,212,0,1629,79),(8607,97,0,1630,1),(8608,99,0,1630,4),(8609,115,0,1630,1),(8610,134,0,1630,2),(8611,93,0,1631,73),(8612,97,0,1631,1),(8613,99,0,1631,1),(8614,134,0,1631,2),(8615,208,0,1631,64),(8616,93,0,1632,73),(8617,97,0,1632,1),(8618,99,0,1632,1),(8619,134,0,1632,2),(8620,208,0,1632,65),(8621,93,0,1633,73),(8622,97,0,1633,1),(8623,99,0,1633,1),(8624,134,0,1633,2),(8625,208,0,1633,66),(8626,93,0,1634,76),(8627,97,0,1634,1),(8628,99,0,1634,1),(8629,134,0,1634,2),(8630,208,0,1634,64),(8631,93,0,1635,76),(8632,97,0,1635,1),(8633,99,0,1635,1),(8634,134,0,1635,2),(8635,208,0,1635,65),(8636,93,0,1636,76),(8637,97,0,1636,1),(8638,99,0,1636,1),(8639,134,0,1636,2),(8640,208,0,1636,66),(8641,93,0,1637,75),(8642,97,0,1637,1),(8643,99,0,1637,1),(8644,134,0,1637,2),(8645,208,0,1637,64),(8646,93,0,1638,75),(8647,97,0,1638,1),(8648,99,0,1638,1),(8649,134,0,1638,2),(8650,208,0,1638,65),(8651,93,0,1639,75),(8652,97,0,1639,1),(8653,99,0,1639,1),(8654,134,0,1639,2),(8655,208,0,1639,66),(8656,93,0,1640,72),(8657,97,0,1640,1),(8658,99,0,1640,1),(8659,134,0,1640,2),(8660,208,0,1640,64),(8661,93,0,1641,72),(8662,97,0,1641,1),(8663,99,0,1641,1),(8664,134,0,1641,2),(8665,208,0,1641,65),(8666,93,0,1642,72),(8667,97,0,1642,1),(8668,99,0,1642,1),(8669,134,0,1642,2),(8670,208,0,1642,66),(8671,97,0,1643,1),(8672,99,0,1643,4),(8673,115,0,1643,1),(8674,134,0,1643,2),(8676,93,0,1644,72),(8677,97,0,1644,1),(8678,99,0,1644,1),(8679,134,0,1644,0),(8680,212,0,1644,78),(8681,93,0,1645,72),(8682,97,0,1645,1),(8683,99,0,1645,1),(8684,134,0,1645,0),(8685,212,0,1645,79),(8686,93,0,1646,72),(8687,97,0,1646,1),(8688,99,0,1646,1),(8689,134,0,1646,0),(8690,212,0,1646,81),(8691,93,0,1647,72),(8692,97,0,1647,1),(8693,99,0,1647,1),(8694,134,0,1647,0),(8695,212,0,1647,80),(8696,93,0,1648,74),(8697,97,0,1648,1),(8698,99,0,1648,1),(8699,134,0,1648,0),(8700,212,0,1648,78),(8701,93,0,1649,74),(8702,97,0,1649,1),(8703,99,0,1649,1),(8704,134,0,1649,0),(8705,212,0,1649,79),(8706,93,0,1650,74),(8707,97,0,1650,1),(8708,99,0,1650,1),(8709,134,0,1650,0),(8710,212,0,1650,81),(8711,93,0,1651,74),(8712,97,0,1651,1),(8713,99,0,1651,1),(8714,134,0,1651,0),(8715,212,0,1651,80),(8716,93,0,1652,75),(8717,97,0,1652,1),(8718,99,0,1652,1),(8719,134,0,1652,0),(8720,212,0,1652,78),(8721,93,0,1653,75),(8722,97,0,1653,1),(8723,99,0,1653,1),(8724,134,0,1653,0),(8725,212,0,1653,79),(8726,93,0,1654,75),(8727,97,0,1654,1),(8728,99,0,1654,1),(8729,134,0,1654,0),(8730,212,0,1654,81),(8731,93,0,1655,75),(8732,97,0,1655,1),(8733,99,0,1655,1),(8734,134,0,1655,0),(8735,212,0,1655,80),(8736,97,0,1656,1),(8737,99,0,1656,4),(8738,115,0,1656,1),(8739,134,0,1656,0),(8740,93,0,1657,71),(8741,97,0,1657,1),(8742,99,0,1657,1),(8743,134,0,1657,2),(8744,212,0,1657,80),(8745,93,0,1658,74),(8746,97,0,1658,1),(8747,99,0,1658,1),(8748,134,0,1658,2),(8749,212,0,1658,80),(8750,93,0,1659,72),(8751,97,0,1659,1),(8752,99,0,1659,1),(8753,134,0,1659,2),(8754,212,0,1659,80),(8755,93,0,1660,75),(8756,97,0,1660,1),(8757,99,0,1660,1),(8758,134,0,1660,2),(8759,212,0,1660,80),(8760,93,0,1661,76),(8761,97,0,1661,1),(8762,99,0,1661,1),(8763,134,0,1661,2),(8764,212,0,1661,80),(8765,93,0,1662,71),(8766,97,0,1662,1),(8767,99,0,1662,1),(8768,134,0,1662,2),(8769,212,0,1662,81),(8770,93,0,1663,74),(8771,97,0,1663,1),(8772,99,0,1663,1),(8773,134,0,1663,2),(8774,212,0,1663,81),(8775,93,0,1664,72),(8776,97,0,1664,1),(8777,99,0,1664,1),(8778,134,0,1664,2),(8779,212,0,1664,81),(8780,93,0,1665,75),(8781,97,0,1665,1),(8782,99,0,1665,1),(8783,134,0,1665,2),(8784,212,0,1665,81),(8785,93,0,1666,76),(8786,97,0,1666,1),(8787,99,0,1666,1),(8788,134,0,1666,2),(8789,212,0,1666,81),(8790,93,0,1667,71),(8791,97,0,1667,1),(8792,99,0,1667,1),(8793,134,0,1667,2),(8794,212,0,1667,78),(8795,93,0,1668,74),(8796,97,0,1668,1),(8797,99,0,1668,1),(8798,134,0,1668,2),(8799,212,0,1668,78),(8800,93,0,1669,72),(8801,97,0,1669,1),(8802,99,0,1669,1),(8803,134,0,1669,2),(8804,212,0,1669,78),(8805,93,0,1670,75),(8806,97,0,1670,1),(8807,99,0,1670,1),(8808,134,0,1670,2),(8809,212,0,1670,78),(8810,93,0,1671,76),(8811,97,0,1671,1),(8812,99,0,1671,1),(8813,134,0,1671,2),(8814,212,0,1671,78),(8815,93,0,1672,71),(8816,97,0,1672,1),(8817,99,0,1672,1),(8818,134,0,1672,2),(8819,212,0,1672,79),(8820,93,0,1673,74),(8821,97,0,1673,1),(8822,99,0,1673,1),(8823,134,0,1673,2),(8824,212,0,1673,79),(8825,93,0,1674,72),(8826,97,0,1674,1),(8827,99,0,1674,1),(8828,134,0,1674,2),(8829,212,0,1674,79),(8830,93,0,1675,75),(8831,97,0,1675,1),(8832,99,0,1675,1),(8833,134,0,1675,2),(8834,212,0,1675,79),(8835,93,0,1676,76),(8836,97,0,1676,1),(8837,99,0,1676,1),(8838,134,0,1676,2),(8839,212,0,1676,79),(8840,97,0,1677,1),(8841,99,0,1677,4),(8842,115,0,1677,1),(8843,134,0,1677,2),(8844,93,0,1678,73),(8845,97,0,1678,1),(8846,99,0,1678,1),(8847,134,0,1678,2),(8848,212,0,1678,80),(8849,93,0,1679,76),(8850,97,0,1679,1),(8851,99,0,1679,1),(8852,134,0,1679,2),(8853,212,0,1679,80),(8854,93,0,1680,72),(8855,97,0,1680,1),(8856,99,0,1680,1),(8857,134,0,1680,2),(8858,212,0,1680,80),(8859,93,0,1681,75),(8860,97,0,1681,1),(8861,99,0,1681,1),(8862,134,0,1681,2),(8863,212,0,1681,80),(8864,93,0,1682,74),(8865,97,0,1682,1),(8866,99,0,1682,1),(8867,134,0,1682,2),(8868,212,0,1682,80),(8869,93,0,1683,73),(8870,97,0,1683,1),(8871,99,0,1683,1),(8872,134,0,1683,2),(8873,212,0,1683,77),(8874,93,0,1684,76),(8875,97,0,1684,1),(8876,99,0,1684,1),(8877,134,0,1684,2),(8878,212,0,1684,77),(8879,93,0,1685,72),(8880,97,0,1685,1),(8881,99,0,1685,1),(8882,134,0,1685,2),(8883,212,0,1685,77),(8884,93,0,1686,75),(8885,97,0,1686,1),(8886,99,0,1686,1),(8887,134,0,1686,2),(8888,212,0,1686,77),(8889,93,0,1687,74),(8890,97,0,1687,1),(8891,99,0,1687,1),(8892,134,0,1687,2),(8893,212,0,1687,77),(8894,93,0,1688,73),(8895,97,0,1688,1),(8896,99,0,1688,1),(8897,134,0,1688,2),(8898,212,0,1688,78),(8899,93,0,1689,76),(8900,97,0,1689,1),(8901,99,0,1689,1),(8902,134,0,1689,2),(8903,212,0,1689,78),(8904,93,0,1690,72),(8905,97,0,1690,1),(8906,99,0,1690,1),(8907,134,0,1690,2),(8908,212,0,1690,78),(8914,93,0,1692,75),(8915,97,0,1692,1),(8916,99,0,1692,1),(8917,134,0,1692,2),(8918,212,0,1692,78),(8919,93,0,1693,74),(8920,97,0,1693,1),(8921,99,0,1693,1),(8922,134,0,1693,2),(8923,212,0,1693,78),(8924,93,0,1694,73),(8925,97,0,1694,1),(8926,99,0,1694,1),(8927,134,0,1694,2),(8928,212,0,1694,79),(8929,93,0,1695,76),(8930,97,0,1695,1),(8931,99,0,1695,1),(8932,134,0,1695,2),(8933,212,0,1695,79),(8934,93,0,1696,72),(8935,97,0,1696,1),(8936,99,0,1696,1),(8937,134,0,1696,2),(8938,212,0,1696,79),(8939,93,0,1697,75),(8940,97,0,1697,1),(8941,99,0,1697,1),(8942,134,0,1697,2),(8943,212,0,1697,79),(8944,93,0,1698,74),(8945,97,0,1698,1),(8946,99,0,1698,1),(8947,134,0,1698,2),(8948,212,0,1698,79),(8949,97,0,1699,1),(8950,99,0,1699,4),(8951,115,0,1699,1),(8952,134,0,1699,2),(8953,93,0,1700,72),(8954,97,0,1700,1),(8955,99,0,1700,1),(8956,134,0,1700,0),(8957,212,0,1700,77),(8958,93,0,1701,72),(8959,97,0,1701,1),(8960,99,0,1701,1),(8961,134,0,1701,0),(8962,212,0,1701,78),(8963,93,0,1702,72),(8964,97,0,1702,1),(8965,99,0,1702,1),(8966,134,0,1702,0),(8967,212,0,1702,80),(8968,93,0,1703,73),(8969,97,0,1703,1),(8970,99,0,1703,1),(8971,134,0,1703,0),(8972,212,0,1703,77),(8973,93,0,1704,73),(8974,97,0,1704,1),(8975,99,0,1704,1),(8976,134,0,1704,0),(8977,212,0,1704,78),(8978,93,0,1705,73),(8979,97,0,1705,1),(8980,99,0,1705,1),(8981,134,0,1705,0),(8982,212,0,1705,80),(8983,93,0,1706,76),(8984,97,0,1706,1),(8985,99,0,1706,1),(8986,134,0,1706,0),(8987,212,0,1706,77),(8988,93,0,1707,76),(8989,97,0,1707,1),(8990,99,0,1707,1),(8991,134,0,1707,0),(8992,212,0,1707,78),(8993,93,0,1708,76),(8994,97,0,1708,1),(8995,99,0,1708,1),(8996,134,0,1708,0),(8997,212,0,1708,80),(8998,97,0,1709,1),(8999,99,0,1709,4),(9000,115,0,1709,1),(9001,134,0,1709,0),(9002,93,0,1710,73),(9003,97,0,1710,1),(9004,99,0,1710,1),(9005,134,0,1710,2),(9006,212,0,1710,80),(9007,93,0,1711,73),(9008,97,0,1711,1),(9009,99,0,1711,1),(9010,134,0,1711,2),(9011,212,0,1711,78),(9012,93,0,1712,73),(9013,97,0,1712,1),(9014,99,0,1712,1),(9015,134,0,1712,2),(9016,212,0,1712,79),(9017,93,0,1713,76),(9018,97,0,1713,1),(9019,99,0,1713,1),(9020,134,0,1713,2),(9021,212,0,1713,80),(9022,93,0,1714,76),(9023,97,0,1714,1),(9024,99,0,1714,1),(9025,134,0,1714,2),(9026,212,0,1714,78),(9027,93,0,1715,76),(9028,97,0,1715,1),(9029,99,0,1715,1),(9030,134,0,1715,2),(9031,212,0,1715,79),(9032,93,0,1716,72),(9033,97,0,1716,1),(9034,99,0,1716,1),(9035,134,0,1716,2),(9036,212,0,1716,80),(9037,93,0,1717,72),(9038,97,0,1717,1),(9039,99,0,1717,1),(9040,134,0,1717,2),(9041,212,0,1717,78),(9042,93,0,1718,72),(9043,97,0,1718,1),(9044,99,0,1718,1),(9045,134,0,1718,2),(9046,212,0,1718,79),(9047,93,0,1719,75),(9048,97,0,1719,1),(9049,99,0,1719,1),(9050,134,0,1719,2),(9051,212,0,1719,80),(9052,93,0,1720,75),(9053,97,0,1720,1),(9054,99,0,1720,1),(9055,134,0,1720,2),(9056,212,0,1720,78),(9057,93,0,1721,75),(9058,97,0,1721,1),(9059,99,0,1721,1),(9060,134,0,1721,2),(9061,212,0,1721,79),(9062,93,0,1722,74),(9063,97,0,1722,1),(9064,99,0,1722,1),(9065,134,0,1722,2),(9066,212,0,1722,80),(9067,93,0,1723,74),(9068,97,0,1723,1),(9069,99,0,1723,1),(9070,134,0,1723,2),(9071,212,0,1723,78),(9072,93,0,1724,74),(9073,97,0,1724,1),(9074,99,0,1724,1),(9075,134,0,1724,2),(9076,212,0,1724,79),(9077,97,0,1725,1),(9078,99,0,1725,4),(9079,115,0,1725,1),(9080,134,0,1725,2),(9081,93,0,1726,72),(9082,97,0,1726,1),(9083,99,0,1726,1),(9084,134,0,1726,0),(9085,212,0,1726,81),(9086,93,0,1727,72),(9087,97,0,1727,1),(9088,99,0,1727,1),(9089,134,0,1727,0),(9090,212,0,1727,78),(9091,93,0,1728,72),(9092,97,0,1728,1),(9093,99,0,1728,1),(9094,134,0,1728,0),(9095,212,0,1728,79),(9096,93,0,1729,75),(9097,97,0,1729,1),(9098,99,0,1729,1),(9099,134,0,1729,0),(9100,212,0,1729,81),(9101,93,0,1730,75),(9102,97,0,1730,1),(9103,99,0,1730,1),(9104,134,0,1730,0),(9105,212,0,1730,78),(9106,93,0,1731,75),(9107,97,0,1731,1),(9108,99,0,1731,1),(9109,134,0,1731,0),(9110,212,0,1731,79),(9111,93,0,1732,73),(9112,97,0,1732,1),(9113,99,0,1732,1),(9114,134,0,1732,0),(9115,212,0,1732,81),(9116,93,0,1733,73),(9117,97,0,1733,1),(9118,99,0,1733,1),(9119,134,0,1733,0),(9120,212,0,1733,78),(9121,93,0,1734,73),(9122,97,0,1734,1),(9123,99,0,1734,1),(9124,134,0,1734,0),(9125,212,0,1734,79),(9126,97,0,1735,1),(9127,99,0,1735,4),(9128,115,0,1735,1),(9129,134,0,1735,0),(9130,93,0,1736,76),(9131,97,0,1736,1),(9132,99,0,1736,1),(9133,134,0,1736,2),(9134,212,0,1736,80),(9135,93,0,1737,76),(9136,97,0,1737,1),(9137,99,0,1737,1),(9138,134,0,1737,2),(9139,212,0,1737,78),(9140,93,0,1738,76),(9141,97,0,1738,1),(9142,99,0,1738,1),(9143,134,0,1738,2),(9144,212,0,1738,81),(9145,93,0,1739,76),(9146,97,0,1739,1),(9147,99,0,1739,1),(9148,134,0,1739,2),(9149,212,0,1739,79),(9150,93,0,1740,72),(9151,97,0,1740,1),(9152,99,0,1740,1),(9153,134,0,1740,2),(9154,212,0,1740,80),(9155,93,0,1741,72),(9156,97,0,1741,1),(9157,99,0,1741,1),(9158,134,0,1741,2),(9159,212,0,1741,78),(9160,93,0,1742,72),(9161,97,0,1742,1),(9162,99,0,1742,1),(9163,134,0,1742,2),(9164,212,0,1742,81),(9165,93,0,1743,72),(9166,97,0,1743,1),(9167,99,0,1743,1),(9168,134,0,1743,2),(9169,212,0,1743,79),(9170,93,0,1744,75),(9171,97,0,1744,1),(9172,99,0,1744,1),(9173,134,0,1744,2),(9174,212,0,1744,80),(9175,93,0,1745,75),(9176,97,0,1745,1),(9177,99,0,1745,1),(9178,134,0,1745,2),(9179,212,0,1745,78),(9180,93,0,1746,75),(9181,97,0,1746,1),(9182,99,0,1746,1),(9183,134,0,1746,2),(9184,212,0,1746,81),(9185,93,0,1747,75),(9186,97,0,1747,1),(9187,99,0,1747,1),(9188,134,0,1747,2),(9189,212,0,1747,79),(9190,93,0,1748,71),(9191,97,0,1748,1),(9192,99,0,1748,1),(9193,134,0,1748,2),(9194,212,0,1748,80),(9195,93,0,1749,71),(9196,97,0,1749,1),(9197,99,0,1749,1),(9198,134,0,1749,2),(9199,212,0,1749,78),(9200,93,0,1750,71),(9201,97,0,1750,1),(9202,99,0,1750,1),(9203,134,0,1750,2),(9204,212,0,1750,81),(9205,93,0,1751,71),(9206,97,0,1751,1),(9207,99,0,1751,1),(9208,134,0,1751,2),(9209,212,0,1751,79),(9210,93,0,1752,74),(9211,97,0,1752,1),(9212,99,0,1752,1),(9213,134,0,1752,2),(9214,212,0,1752,80),(9215,93,0,1753,74),(9216,97,0,1753,1),(9217,99,0,1753,1),(9218,134,0,1753,2),(9219,212,0,1753,78),(9220,93,0,1754,74),(9221,97,0,1754,1),(9222,99,0,1754,1),(9223,134,0,1754,2),(9224,212,0,1754,81),(9225,93,0,1755,74),(9226,97,0,1755,1),(9227,99,0,1755,1),(9228,134,0,1755,2),(9229,212,0,1755,79),(9230,97,0,1756,1),(9231,99,0,1756,4),(9232,115,0,1756,1),(9233,134,0,1756,2),(9234,93,0,1757,72),(9235,97,0,1757,1),(9236,99,0,1757,1),(9237,134,0,1757,0),(9238,212,0,1757,79),(9239,93,0,1758,76),(9240,97,0,1758,1),(9241,99,0,1758,1),(9242,134,0,1758,0),(9243,212,0,1758,79),(9244,93,0,1759,73),(9245,97,0,1759,1),(9246,99,0,1759,1),(9247,134,0,1759,0),(9248,212,0,1759,79),(9249,93,0,1760,75),(9250,97,0,1760,1),(9251,99,0,1760,1),(9252,134,0,1760,0),(9253,212,0,1760,79),(9254,93,0,1761,74),(9255,97,0,1761,1),(9256,99,0,1761,1),(9257,134,0,1761,0),(9258,212,0,1761,79),(9259,93,0,1762,72),(9260,97,0,1762,1),(9261,99,0,1762,1),(9262,134,0,1762,0),(9263,212,0,1762,78),(9264,93,0,1763,76),(9265,97,0,1763,1),(9266,99,0,1763,1),(9267,134,0,1763,0),(9268,212,0,1763,78),(9269,93,0,1764,73),(9270,97,0,1764,1),(9271,99,0,1764,1),(9272,134,0,1764,0),(9273,212,0,1764,78),(9274,93,0,1765,75),(9275,97,0,1765,1),(9276,99,0,1765,1),(9277,134,0,1765,0),(9278,212,0,1765,78),(9279,93,0,1766,74),(9280,97,0,1766,1),(9281,99,0,1766,1),(9282,134,0,1766,0),(9283,212,0,1766,78),(9284,93,0,1767,72),(9285,97,0,1767,1),(9286,99,0,1767,1),(9287,134,0,1767,0),(9288,212,0,1767,77),(9289,93,0,1768,76),(9290,97,0,1768,1),(9291,99,0,1768,1),(9292,134,0,1768,0),(9293,212,0,1768,77),(9294,93,0,1769,73),(9295,97,0,1769,1),(9296,99,0,1769,1),(9297,134,0,1769,0),(9298,212,0,1769,77),(9299,93,0,1770,75),(9300,97,0,1770,1),(9301,99,0,1770,1),(9302,134,0,1770,0),(9303,212,0,1770,77),(9304,93,0,1771,74),(9305,97,0,1771,1),(9306,99,0,1771,1),(9307,134,0,1771,0),(9308,212,0,1771,77),(9309,93,0,1772,72),(9310,97,0,1772,1),(9311,99,0,1772,1),(9312,134,0,1772,0),(9313,212,0,1772,80),(9314,93,0,1773,76),(9315,97,0,1773,1),(9316,99,0,1773,1),(9317,134,0,1773,0),(9318,212,0,1773,80),(9319,93,0,1774,73),(9320,97,0,1774,1),(9321,99,0,1774,1),(9322,134,0,1774,0),(9323,212,0,1774,80),(9324,93,0,1775,75),(9325,97,0,1775,1),(9326,99,0,1775,1),(9327,134,0,1775,0),(9328,212,0,1775,80),(9329,93,0,1776,74),(9330,97,0,1776,1),(9331,99,0,1776,1),(9332,134,0,1776,0),(9333,212,0,1776,80),(9334,97,0,1777,1),(9335,99,0,1777,4),(9336,115,0,1777,1),(9337,134,0,1777,0),(9338,93,0,1778,74),(9339,97,0,1778,1),(9340,99,0,1778,1),(9341,134,0,1778,2),(9342,212,0,1778,80),(9343,93,0,1779,74),(9344,97,0,1779,1),(9345,99,0,1779,1),(9346,134,0,1779,2),(9347,212,0,1779,78),(9348,93,0,1780,74),(9349,97,0,1780,1),(9350,99,0,1780,1),(9351,134,0,1780,2),(9352,212,0,1780,79),(9353,93,0,1781,75),(9354,97,0,1781,1),(9355,99,0,1781,1),(9356,134,0,1781,2),(9357,212,0,1781,80),(9358,93,0,1782,75),(9359,97,0,1782,1),(9360,99,0,1782,1),(9361,134,0,1782,2),(9362,212,0,1782,78),(9363,93,0,1783,75),(9364,97,0,1783,1),(9365,99,0,1783,1),(9366,134,0,1783,2),(9367,212,0,1783,79),(9368,93,0,1784,73),(9369,97,0,1784,1),(9370,99,0,1784,1),(9371,134,0,1784,2),(9372,212,0,1784,80),(9373,93,0,1785,73),(9374,97,0,1785,1),(9375,99,0,1785,1),(9376,134,0,1785,2),(9377,212,0,1785,78),(9378,93,0,1786,73),(9379,97,0,1786,1),(9380,99,0,1786,1),(9381,134,0,1786,2),(9382,212,0,1786,79),(9383,97,0,1787,1),(9384,99,0,1787,4),(9385,115,0,1787,1),(9386,134,0,1787,2),(9387,93,0,1788,76),(9388,97,0,1788,1),(9389,99,0,1788,1),(9390,134,0,1788,2),(9391,212,0,1788,80),(9392,93,0,1789,76),(9393,97,0,1789,1),(9394,99,0,1789,1),(9395,134,0,1789,2),(9396,212,0,1789,78),(9397,93,0,1790,76),(9398,97,0,1790,1),(9399,99,0,1790,1),(9400,134,0,1790,2),(9401,212,0,1790,81),(9402,93,0,1791,76),(9403,97,0,1791,1),(9404,99,0,1791,1),(9405,134,0,1791,2),(9406,212,0,1791,79),(9407,93,0,1792,72),(9408,97,0,1792,1),(9409,99,0,1792,1),(9410,134,0,1792,2),(9411,212,0,1792,80),(9412,93,0,1793,72),(9413,97,0,1793,1),(9414,99,0,1793,1),(9415,134,0,1793,2),(9416,212,0,1793,78),(9417,93,0,1794,72),(9418,97,0,1794,1),(9419,99,0,1794,1),(9420,134,0,1794,2),(9421,212,0,1794,81),(9422,93,0,1795,72),(9423,97,0,1795,1),(9424,99,0,1795,1),(9425,134,0,1795,2),(9426,212,0,1795,79),(9427,93,0,1796,75),(9428,97,0,1796,1),(9429,99,0,1796,1),(9430,134,0,1796,2),(9431,212,0,1796,80),(9432,93,0,1797,75),(9433,97,0,1797,1),(9434,99,0,1797,1),(9435,134,0,1797,2),(9436,212,0,1797,78),(9437,93,0,1798,75),(9438,97,0,1798,1),(9439,99,0,1798,1),(9440,134,0,1798,2),(9441,212,0,1798,81),(9442,93,0,1799,75),(9443,97,0,1799,1),(9444,99,0,1799,1),(9445,134,0,1799,2),(9446,212,0,1799,79),(9447,93,0,1800,71),(9448,97,0,1800,1),(9449,99,0,1800,1),(9450,134,0,1800,2),(9451,212,0,1800,80),(9452,93,0,1801,71),(9453,97,0,1801,1),(9454,99,0,1801,1),(9455,134,0,1801,2),(9456,212,0,1801,78),(9457,93,0,1802,71),(9458,97,0,1802,1),(9459,99,0,1802,1),(9460,134,0,1802,2),(9461,212,0,1802,81),(9462,93,0,1803,71),(9463,97,0,1803,1),(9464,99,0,1803,1),(9465,134,0,1803,2),(9466,212,0,1803,79),(9467,93,0,1804,74),(9468,97,0,1804,1),(9469,99,0,1804,1),(9470,134,0,1804,2),(9471,212,0,1804,80),(9472,93,0,1805,74),(9473,97,0,1805,1),(9474,99,0,1805,1),(9475,134,0,1805,2),(9476,212,0,1805,78),(9477,93,0,1806,74),(9478,97,0,1806,1),(9479,99,0,1806,1),(9480,134,0,1806,2),(9481,212,0,1806,81),(9482,93,0,1807,74),(9483,97,0,1807,1),(9484,99,0,1807,1),(9485,134,0,1807,2),(9486,212,0,1807,79),(9487,97,0,1808,1),(9488,99,0,1808,4),(9489,115,0,1808,1),(9490,134,0,1808,2),(9491,93,0,1809,71),(9492,97,0,1809,1),(9493,99,0,1809,1),(9494,134,0,1809,2),(9495,212,0,1809,77),(9496,93,0,1810,71),(9497,97,0,1810,1),(9498,99,0,1810,1),(9499,134,0,1810,2),(9500,212,0,1810,80),(9501,93,0,1811,71),(9502,97,0,1811,1),(9503,99,0,1811,1),(9504,134,0,1811,2),(9505,212,0,1811,78),(9506,93,0,1812,71),(9507,97,0,1812,1),(9508,99,0,1812,1),(9509,134,0,1812,2),(9510,212,0,1812,79),(9511,93,0,1813,74),(9512,97,0,1813,1),(9513,99,0,1813,1),(9514,134,0,1813,2),(9515,212,0,1813,77),(9516,93,0,1814,74),(9517,97,0,1814,1),(9518,99,0,1814,1),(9519,134,0,1814,2),(9520,212,0,1814,80),(9521,93,0,1815,74),(9522,97,0,1815,1),(9523,99,0,1815,1),(9524,134,0,1815,2),(9525,212,0,1815,78),(9526,93,0,1816,74),(9527,97,0,1816,1),(9528,99,0,1816,1),(9529,134,0,1816,2),(9530,212,0,1816,79),(9531,97,0,1817,1),(9532,99,0,1817,4),(9533,115,0,1817,1),(9534,134,0,1817,2),(9615,93,0,1834,73),(9616,97,0,1834,1),(9617,99,0,1834,1),(9618,134,0,1834,2),(9619,212,0,1834,80),(9620,93,0,1835,73),(9621,97,0,1835,1),(9622,99,0,1835,1),(9623,134,0,1835,2),(9624,212,0,1835,78),(9625,93,0,1836,73),(9626,97,0,1836,1),(9627,99,0,1836,1),(9628,134,0,1836,2),(9629,212,0,1836,79),(9630,93,0,1837,74),(9631,97,0,1837,1),(9632,99,0,1837,1),(9633,134,0,1837,2),(9634,212,0,1837,80),(9635,93,0,1838,74),(9636,97,0,1838,1),(9637,99,0,1838,1),(9638,134,0,1838,2),(9639,212,0,1838,78),(9640,93,0,1839,74),(9641,97,0,1839,1),(9642,99,0,1839,1),(9643,134,0,1839,2),(9644,212,0,1839,79),(9645,97,0,1840,1),(9646,99,0,1840,4),(9647,115,0,1840,1),(9648,134,0,1840,2),(9649,93,0,1841,71),(9650,97,0,1841,1),(9651,99,0,1841,1),(9652,134,0,1841,2),(9653,212,0,1841,77),(9654,93,0,1842,71),(9655,97,0,1842,1),(9656,99,0,1842,1),(9657,134,0,1842,2),(9658,212,0,1842,78),(9659,93,0,1843,71),(9660,97,0,1843,1),(9661,99,0,1843,1),(9662,134,0,1843,2),(9663,212,0,1843,79),(9664,93,0,1844,71),(9665,97,0,1844,1),(9666,99,0,1844,1),(9667,134,0,1844,2),(9668,212,0,1844,80),(9669,93,0,1845,71),(9670,97,0,1845,1),(9671,99,0,1845,1),(9672,134,0,1845,2),(9673,212,0,1845,81),(9674,93,0,1846,72),(9675,97,0,1846,1),(9676,99,0,1846,1),(9677,134,0,1846,2),(9678,212,0,1846,77),(9679,93,0,1847,72),(9680,97,0,1847,1),(9681,99,0,1847,1),(9682,134,0,1847,2),(9683,212,0,1847,78),(9684,93,0,1848,72),(9685,97,0,1848,1),(9686,99,0,1848,1),(9687,134,0,1848,2),(9688,212,0,1848,79),(9689,93,0,1849,72),(9690,97,0,1849,1),(9691,99,0,1849,1),(9692,134,0,1849,2),(9693,212,0,1849,80),(9694,93,0,1850,72),(9695,97,0,1850,1),(9696,99,0,1850,1),(9697,134,0,1850,2),(9698,212,0,1850,81),(9699,93,0,1851,74),(9700,97,0,1851,1),(9701,99,0,1851,1),(9702,134,0,1851,2),(9703,212,0,1851,77),(9704,93,0,1852,74),(9705,97,0,1852,1),(9706,99,0,1852,1),(9707,134,0,1852,2),(9708,212,0,1852,78),(9709,93,0,1853,74),(9710,97,0,1853,1),(9711,99,0,1853,1),(9712,134,0,1853,2),(9713,212,0,1853,79),(9714,93,0,1854,74),(9715,97,0,1854,1),(9716,99,0,1854,1),(9717,134,0,1854,2),(9718,212,0,1854,80),(9719,93,0,1855,74),(9720,97,0,1855,1),(9721,99,0,1855,1),(9722,134,0,1855,2),(9723,212,0,1855,81),(9724,93,0,1856,75),(9725,97,0,1856,1),(9726,99,0,1856,1),(9727,134,0,1856,2),(9728,212,0,1856,77),(9729,93,0,1857,75),(9730,97,0,1857,1),(9731,99,0,1857,1),(9732,134,0,1857,2),(9733,212,0,1857,78),(9734,93,0,1858,75),(9735,97,0,1858,1),(9736,99,0,1858,1),(9737,134,0,1858,2),(9738,212,0,1858,79),(9739,93,0,1859,75),(9740,97,0,1859,1),(9741,99,0,1859,1),(9742,134,0,1859,2),(9743,212,0,1859,80),(9744,93,0,1860,75),(9745,97,0,1860,1),(9746,99,0,1860,1),(9747,134,0,1860,2),(9748,212,0,1860,81),(9749,93,0,1861,76),(9750,97,0,1861,1),(9751,99,0,1861,1),(9752,134,0,1861,2),(9753,212,0,1861,77),(9754,93,0,1862,76),(9755,97,0,1862,1),(9756,99,0,1862,1),(9757,134,0,1862,2),(9758,212,0,1862,78),(9759,93,0,1863,76),(9760,97,0,1863,1),(9761,99,0,1863,1),(9762,134,0,1863,2),(9763,212,0,1863,79),(9764,93,0,1864,76),(9765,97,0,1864,1),(9766,99,0,1864,1),(9767,134,0,1864,2),(9768,212,0,1864,80),(9769,93,0,1865,76),(9770,97,0,1865,1),(9771,99,0,1865,1),(9772,134,0,1865,2),(9773,212,0,1865,81),(9774,97,0,1866,1),(9775,99,0,1866,4),(9776,115,0,1866,1),(9777,134,0,1866,2),(9778,93,0,1867,73),(9779,97,0,1867,1),(9780,99,0,1867,1),(9781,134,0,1867,2),(9782,212,0,1867,78),(9783,93,0,1868,73),(9784,97,0,1868,1),(9785,99,0,1868,1),(9786,134,0,1868,2),(9787,212,0,1868,79),(9788,93,0,1869,73),(9789,97,0,1869,1),(9790,99,0,1869,1),(9791,134,0,1869,2),(9792,212,0,1869,81),(9793,93,0,1870,73),(9794,97,0,1870,1),(9795,99,0,1870,1),(9796,134,0,1870,2),(9797,212,0,1870,80),(9798,93,0,1871,74),(9799,97,0,1871,1),(9800,99,0,1871,1),(9801,134,0,1871,2),(9802,212,0,1871,78),(9803,93,0,1872,74),(9804,97,0,1872,1),(9805,99,0,1872,1),(9806,134,0,1872,2),(9807,212,0,1872,79),(9808,93,0,1873,74),(9809,97,0,1873,1),(9810,99,0,1873,1),(9811,134,0,1873,2),(9812,212,0,1873,81),(9813,93,0,1874,74),(9814,97,0,1874,1),(9815,99,0,1874,1),(9816,134,0,1874,2),(9817,212,0,1874,80),(9818,97,0,1875,1),(9819,99,0,1875,4),(9820,115,0,1875,1),(9821,134,0,1875,2),(9822,93,0,1876,73),(9823,97,0,1876,1),(9824,99,0,1876,1),(9825,134,0,1876,0),(9826,212,0,1876,80),(9827,93,0,1877,71),(9828,97,0,1877,1),(9829,99,0,1877,1),(9830,134,0,1877,0),(9831,212,0,1877,80),(9832,93,0,1878,74),(9833,97,0,1878,1),(9834,99,0,1878,1),(9835,134,0,1878,0),(9836,212,0,1878,80),(9837,93,0,1879,73),(9838,97,0,1879,1),(9839,99,0,1879,1),(9840,134,0,1879,0),(9841,212,0,1879,77),(9842,93,0,1880,71),(9843,97,0,1880,1),(9844,99,0,1880,1),(9845,134,0,1880,0),(9846,212,0,1880,77),(9847,93,0,1881,74),(9848,97,0,1881,1),(9849,99,0,1881,1),(9850,134,0,1881,0),(9851,212,0,1881,77),(9852,93,0,1882,73),(9853,97,0,1882,1),(9854,99,0,1882,1),(9855,134,0,1882,0),(9856,212,0,1882,78),(9857,93,0,1883,71),(9858,97,0,1883,1),(9859,99,0,1883,1),(9860,134,0,1883,0),(9861,212,0,1883,78),(9862,93,0,1884,74),(9863,97,0,1884,1),(9864,99,0,1884,1),(9865,134,0,1884,0),(9866,212,0,1884,78),(9867,93,0,1885,73),(9868,97,0,1885,1),(9869,99,0,1885,1),(9870,134,0,1885,0),(9871,212,0,1885,79),(9872,93,0,1886,71),(9873,97,0,1886,1),(9874,99,0,1886,1),(9875,134,0,1886,0),(9876,212,0,1886,79),(9877,93,0,1887,74),(9878,97,0,1887,1),(9879,99,0,1887,1),(9880,134,0,1887,0),(9881,212,0,1887,79),(9882,97,0,1888,1),(9883,99,0,1888,4),(9884,115,0,1888,1),(9885,134,0,1888,0),(9886,93,0,1889,73),(9887,97,0,1889,1),(9888,99,0,1889,1),(9889,134,0,1889,2),(9890,212,0,1889,80),(9891,93,0,1890,73),(9892,97,0,1890,1),(9893,99,0,1890,1),(9894,134,0,1890,2),(9895,212,0,1890,78),(9896,93,0,1891,73),(9897,97,0,1891,1),(9898,99,0,1891,1),(9899,134,0,1891,2),(9900,212,0,1891,79),(9901,97,0,1892,1),(9902,99,0,1892,4),(9903,115,0,1892,1),(9904,134,0,1892,2),(9905,93,0,1893,75),(9906,97,0,1893,1),(9907,99,0,1893,1),(9908,134,0,1893,2),(9909,212,0,1893,78),(9910,93,0,1894,75),(9911,97,0,1894,1),(9912,99,0,1894,1),(9913,134,0,1894,2),(9914,212,0,1894,80),(9915,93,0,1895,75),(9916,97,0,1895,1),(9917,99,0,1895,1),(9918,134,0,1895,2),(9919,212,0,1895,79),(9920,97,0,1896,1),(9921,99,0,1896,4),(9922,115,0,1896,1),(9923,134,0,1896,2),(9924,93,0,1897,75),(9925,97,0,1897,1),(9926,99,0,1897,1),(9927,134,0,1897,2),(9928,212,0,1897,77),(9929,93,0,1898,75),(9930,97,0,1898,1),(9931,99,0,1898,1),(9932,134,0,1898,2),(9933,212,0,1898,78),(9934,93,0,1899,75),(9935,97,0,1899,1),(9936,99,0,1899,1),(9937,134,0,1899,2),(9938,212,0,1899,79),(9939,93,0,1900,76),(9940,97,0,1900,1),(9941,99,0,1900,1),(9942,134,0,1900,2),(9943,212,0,1900,77),(9944,93,0,1901,76),(9945,97,0,1901,1),(9946,99,0,1901,1),(9947,134,0,1901,2),(9948,212,0,1901,78),(9949,93,0,1902,76),(9950,97,0,1902,1),(9951,99,0,1902,1),(9952,134,0,1902,2),(9953,212,0,1902,79),(9954,97,0,1903,1),(9955,99,0,1903,4),(9956,115,0,1903,1),(9957,134,0,1903,2),(9958,93,0,1904,76),(9959,97,0,1904,1),(9960,99,0,1904,1),(9961,134,0,1904,2),(9962,212,0,1904,78),(9963,93,0,1905,76),(9964,97,0,1905,1),(9965,99,0,1905,1),(9966,134,0,1905,2),(9967,212,0,1905,80),(9968,93,0,1906,76),(9969,97,0,1906,1),(9970,99,0,1906,1),(9971,134,0,1906,2),(9972,212,0,1906,79),(9973,93,0,1907,75),(9974,97,0,1907,1),(9975,99,0,1907,1),(9976,134,0,1907,2),(9977,212,0,1907,78),(9978,93,0,1908,75),(9979,97,0,1908,1),(9980,99,0,1908,1),(9981,134,0,1908,2),(9982,212,0,1908,80),(9983,93,0,1909,75),(9984,97,0,1909,1),(9985,99,0,1909,1),(9986,134,0,1909,2),(9987,212,0,1909,79),(9988,97,0,1910,1),(9989,99,0,1910,4),(9990,115,0,1910,1),(9991,134,0,1910,2),(9992,93,0,1911,73),(9993,97,0,1911,1),(9994,99,0,1911,1),(9995,134,0,1911,0),(9996,212,0,1911,79),(9997,93,0,1912,73),(9998,97,0,1912,1),(9999,99,0,1912,1),(10000,134,0,1912,0),(10001,212,0,1912,78),(10002,93,0,1913,73),(10003,97,0,1913,1),(10004,99,0,1913,1),(10005,134,0,1913,0),(10006,212,0,1913,80),(10007,93,0,1914,76),(10008,97,0,1914,1),(10009,99,0,1914,1),(10010,134,0,1914,0),(10011,212,0,1914,79),(10012,93,0,1915,76),(10013,97,0,1915,1),(10014,99,0,1915,1),(10015,134,0,1915,0),(10016,212,0,1915,78),(10017,93,0,1916,76),(10018,97,0,1916,1),(10019,99,0,1916,1),(10020,134,0,1916,0),(10021,212,0,1916,80),(10022,93,0,1917,74),(10023,97,0,1917,1),(10024,99,0,1917,1),(10025,134,0,1917,0),(10026,212,0,1917,79),(10027,93,0,1918,74),(10028,97,0,1918,1),(10029,99,0,1918,1),(10030,134,0,1918,0),(10031,212,0,1918,78),(10032,93,0,1919,74),(10033,97,0,1919,1),(10034,99,0,1919,1),(10035,134,0,1919,0),(10036,212,0,1919,80),(10037,97,0,1920,1),(10038,99,0,1920,4),(10039,115,0,1920,1),(10040,134,0,1920,0),(10076,93,0,1928,71),(10077,97,0,1928,1),(10078,99,0,1928,1),(10079,134,0,1928,2),(10080,208,0,1928,64),(10081,93,0,1929,75),(10082,97,0,1929,1),(10083,99,0,1929,1),(10084,134,0,1929,2),(10085,208,0,1929,64),(10086,93,0,1930,73),(10087,97,0,1930,1),(10088,99,0,1930,1),(10089,134,0,1930,2),(10090,208,0,1930,64),(10091,93,0,1931,71),(10092,97,0,1931,1),(10093,99,0,1931,1),(10094,134,0,1931,2),(10095,208,0,1931,62),(10096,93,0,1932,75),(10097,97,0,1932,1),(10098,99,0,1932,1),(10099,134,0,1932,2),(10100,208,0,1932,62),(10101,93,0,1933,73),(10102,97,0,1933,1),(10103,99,0,1933,1),(10104,134,0,1933,2),(10105,208,0,1933,62),(10106,93,0,1934,71),(10107,97,0,1934,1),(10108,99,0,1934,1),(10109,134,0,1934,2),(10110,208,0,1934,65),(10111,93,0,1935,75),(10112,97,0,1935,1),(10113,99,0,1935,1),(10114,134,0,1935,2),(10115,208,0,1935,65),(10116,93,0,1936,73),(10117,97,0,1936,1),(10118,99,0,1936,1),(10119,134,0,1936,2),(10120,208,0,1936,65),(10121,93,0,1937,71),(10122,97,0,1937,1),(10123,99,0,1937,1),(10124,134,0,1937,2),(10125,208,0,1937,63),(10126,93,0,1938,75),(10127,97,0,1938,1),(10128,99,0,1938,1),(10129,134,0,1938,2),(10130,208,0,1938,63),(10131,93,0,1939,73),(10132,97,0,1939,1),(10133,99,0,1939,1),(10134,134,0,1939,2),(10135,208,0,1939,63),(10136,93,0,1940,71),(10137,97,0,1940,1),(10138,99,0,1940,1),(10139,134,0,1940,2),(10140,208,0,1940,66),(10141,93,0,1941,75),(10142,97,0,1941,1),(10143,99,0,1941,1),(10144,134,0,1941,2),(10145,208,0,1941,66),(10146,93,0,1942,73),(10147,97,0,1942,1),(10148,99,0,1942,1),(10149,134,0,1942,2),(10150,208,0,1942,66),(10151,97,0,1943,1),(10152,99,0,1943,4),(10153,115,0,1943,1),(10154,134,0,1943,2),(10156,93,0,1944,76),(10157,97,0,1944,1),(10158,99,0,1944,1),(10159,134,0,1944,2),(10160,208,0,1944,62),(10161,93,0,1945,76),(10162,97,0,1945,1),(10163,99,0,1945,1),(10164,134,0,1945,2),(10165,208,0,1945,63),(10166,97,0,1946,1),(10167,99,0,1946,4),(10168,115,0,1946,1),(10169,134,0,1946,2),(10171,93,0,1947,76),(10172,97,0,1947,1),(10173,99,0,1947,1),(10174,134,0,1947,2),(10175,208,0,1947,61),(10176,93,0,1948,76),(10177,97,0,1948,1),(10178,99,0,1948,1),(10179,134,0,1948,2),(10180,208,0,1948,64),(10181,93,0,1949,76),(10182,97,0,1949,1),(10183,99,0,1949,1),(10184,134,0,1949,2),(10185,208,0,1949,67),(10186,93,0,1950,76),(10187,97,0,1950,1),(10188,99,0,1950,1),(10189,134,0,1950,2),(10190,208,0,1950,62),(10191,93,0,1951,76),(10192,97,0,1951,1),(10193,99,0,1951,1),(10194,134,0,1951,2),(10195,208,0,1951,65),(10196,93,0,1952,76),(10197,97,0,1952,1),(10198,99,0,1952,1),(10199,134,0,1952,2),(10200,208,0,1952,63),(10201,93,0,1953,76),(10202,97,0,1953,1),(10203,99,0,1953,1),(10204,134,0,1953,2),(10205,208,0,1953,66),(10206,93,0,1954,74),(10207,97,0,1954,1),(10208,99,0,1954,1),(10209,134,0,1954,2),(10210,208,0,1954,61),(10211,93,0,1955,74),(10212,97,0,1955,1),(10213,99,0,1955,1),(10214,134,0,1955,2),(10215,208,0,1955,64),(10216,93,0,1956,74),(10217,97,0,1956,1),(10218,99,0,1956,1),(10219,134,0,1956,2),(10220,208,0,1956,67),(10221,93,0,1957,74),(10222,97,0,1957,1),(10223,99,0,1957,1),(10224,134,0,1957,2),(10225,208,0,1957,62),(10226,93,0,1958,74),(10227,97,0,1958,1),(10228,99,0,1958,1),(10229,134,0,1958,2),(10230,208,0,1958,65),(10231,93,0,1959,74),(10232,97,0,1959,1),(10233,99,0,1959,1),(10234,134,0,1959,2),(10235,208,0,1959,63),(10236,93,0,1960,74),(10237,97,0,1960,1),(10238,99,0,1960,1),(10239,134,0,1960,2),(10240,208,0,1960,66),(10241,97,0,1961,1),(10242,99,0,1961,4),(10243,115,0,1961,1),(10244,134,0,1961,2),(10246,93,0,1962,75),(10247,97,0,1962,1),(10248,99,0,1962,1),(10249,134,0,1962,2),(10250,208,0,1962,61),(10251,93,0,1963,75),(10252,97,0,1963,1),(10253,99,0,1963,1),(10254,134,0,1963,2),(10255,208,0,1963,64),(10256,93,0,1964,75),(10257,97,0,1964,1),(10258,99,0,1964,1),(10259,134,0,1964,2),(10260,208,0,1964,62),(10261,93,0,1965,75),(10262,97,0,1965,1),(10263,99,0,1965,1),(10264,134,0,1965,2),(10265,208,0,1965,65),(10266,93,0,1966,75),(10267,97,0,1966,1),(10268,99,0,1966,1),(10269,134,0,1966,2),(10270,208,0,1966,63),(10271,93,0,1967,73),(10272,97,0,1967,1),(10273,99,0,1967,1),(10274,134,0,1967,2),(10275,208,0,1967,61),(10276,93,0,1968,73),(10277,97,0,1968,1),(10278,99,0,1968,1),(10279,134,0,1968,2),(10280,208,0,1968,64),(10281,93,0,1969,73),(10282,97,0,1969,1),(10283,99,0,1969,1),(10284,134,0,1969,2),(10285,208,0,1969,62),(10286,93,0,1970,73),(10287,97,0,1970,1),(10288,99,0,1970,1),(10289,134,0,1970,2),(10290,208,0,1970,65),(10291,93,0,1971,73),(10292,97,0,1971,1),(10293,99,0,1971,1),(10294,134,0,1971,2),(10295,208,0,1971,63),(10296,97,0,1972,1),(10297,99,0,1972,4),(10298,115,0,1972,1),(10299,134,0,1972,2),(10301,93,0,1973,71),(10302,97,0,1973,1),(10303,99,0,1973,1),(10304,134,0,1973,2),(10305,208,0,1973,61),(10306,93,0,1974,74),(10307,97,0,1974,1),(10308,99,0,1974,1),(10309,134,0,1974,2),(10310,208,0,1974,61),(10311,93,0,1975,73),(10312,97,0,1975,1),(10313,99,0,1975,1),(10314,134,0,1975,2),(10315,208,0,1975,61),(10316,93,0,1976,71),(10317,97,0,1976,1),(10318,99,0,1976,1),(10319,134,0,1976,2),(10320,208,0,1976,64),(10321,93,0,1977,74),(10322,97,0,1977,1),(10323,99,0,1977,1),(10324,134,0,1977,2),(10325,208,0,1977,64),(10326,93,0,1978,73),(10327,97,0,1978,1),(10328,99,0,1978,1),(10329,134,0,1978,2),(10330,208,0,1978,64),(10331,93,0,1979,71),(10332,97,0,1979,1),(10333,99,0,1979,1),(10334,134,0,1979,2),(10335,208,0,1979,62),(10336,93,0,1980,74),(10337,97,0,1980,1),(10338,99,0,1980,1),(10339,134,0,1980,2),(10340,208,0,1980,62),(10341,93,0,1981,73),(10342,97,0,1981,1),(10343,99,0,1981,1),(10344,134,0,1981,2),(10345,208,0,1981,62),(10346,93,0,1982,71),(10347,97,0,1982,1),(10348,99,0,1982,1),(10349,134,0,1982,2),(10350,208,0,1982,65),(10351,93,0,1983,74),(10352,97,0,1983,1),(10353,99,0,1983,1),(10354,134,0,1983,2),(10355,208,0,1983,65),(10356,93,0,1984,73),(10357,97,0,1984,1),(10358,99,0,1984,1),(10359,134,0,1984,2),(10360,208,0,1984,65),(10361,93,0,1985,71),(10362,97,0,1985,1),(10363,99,0,1985,1),(10364,134,0,1985,2),(10365,208,0,1985,63),(10366,93,0,1986,74),(10367,97,0,1986,1),(10368,99,0,1986,1),(10369,134,0,1986,2),(10370,208,0,1986,63),(10371,93,0,1987,73),(10372,97,0,1987,1),(10373,99,0,1987,1),(10374,134,0,1987,2),(10375,208,0,1987,63),(10376,93,0,1988,71),(10377,97,0,1988,1),(10378,99,0,1988,1),(10379,134,0,1988,2),(10380,208,0,1988,66),(10381,93,0,1989,74),(10382,97,0,1989,1),(10383,99,0,1989,1),(10384,134,0,1989,2),(10385,208,0,1989,66),(10386,93,0,1990,73),(10387,97,0,1990,1),(10388,99,0,1990,1),(10389,134,0,1990,2),(10390,208,0,1990,66),(10391,97,0,1991,1),(10392,99,0,1991,4),(10393,115,0,1991,1),(10394,134,0,1991,2),(10396,208,0,44,60),(10397,93,0,1992,74),(10398,97,0,1992,1),(10399,99,0,1992,1),(10400,134,0,1992,2),(10401,212,0,1992,79),(10402,93,0,1993,74),(10403,97,0,1993,1),(10404,99,0,1993,1),(10405,134,0,1993,2),(10406,212,0,1993,80),(10407,93,0,1994,71),(10408,97,0,1994,1),(10409,99,0,1994,1),(10410,134,0,1994,2),(10411,212,0,1994,79),(10412,93,0,1995,71),(10413,97,0,1995,1),(10414,99,0,1995,1),(10415,134,0,1995,2),(10416,212,0,1995,80),(10417,97,0,1996,1),(10418,99,0,1996,4),(10419,115,0,1996,1),(10420,134,0,1996,2),(10421,93,0,1997,75),(10422,97,0,1997,1),(10423,99,0,1997,1),(10424,134,0,1997,2),(10425,212,0,1997,80),(10426,93,0,1998,75),(10427,97,0,1998,1),(10428,99,0,1998,1),(10429,134,0,1998,2),(10430,212,0,1998,79),(10431,93,0,1999,76),(10432,97,0,1999,1),(10433,99,0,1999,1),(10434,134,0,1999,2),(10435,212,0,1999,80),(10436,93,0,2000,76),(10437,97,0,2000,1),(10438,99,0,2000,1),(10439,134,0,2000,2),(10440,212,0,2000,79),(10441,97,0,2001,1),(10442,99,0,2001,4),(10443,115,0,2001,1),(10444,134,0,2001,2),(10445,93,0,2002,76),(10446,97,0,2002,1),(10447,99,0,2002,1),(10448,134,0,2002,2),(10449,212,0,2002,77),(10450,93,0,2003,76),(10451,97,0,2003,1),(10452,99,0,2003,1),(10453,134,0,2003,2),(10454,212,0,2003,80),(10455,93,0,2004,76),(10456,97,0,2004,1),(10457,99,0,2004,1),(10458,134,0,2004,2),(10459,212,0,2004,78),(10460,93,0,2005,76),(10461,97,0,2005,1),(10462,99,0,2005,1),(10463,134,0,2005,2),(10464,212,0,2005,79),(10465,93,0,2006,75),(10466,97,0,2006,1),(10467,99,0,2006,1),(10468,134,0,2006,2),(10469,212,0,2006,77),(10470,93,0,2007,75),(10471,97,0,2007,1),(10472,99,0,2007,1),(10473,134,0,2007,2),(10474,212,0,2007,80),(10475,93,0,2008,75),(10476,97,0,2008,1),(10477,99,0,2008,1),(10478,134,0,2008,2),(10479,212,0,2008,78),(10480,93,0,2009,75),(10481,97,0,2009,1),(10482,99,0,2009,1),(10483,134,0,2009,2),(10484,212,0,2009,79),(10485,97,0,2010,1),(10486,99,0,2010,4),(10487,115,0,2010,1),(10488,134,0,2010,2),(10489,93,0,2011,72),(10490,97,0,2011,1),(10491,99,0,2011,1),(10492,134,0,2011,2),(10493,212,0,2011,79),(10494,93,0,2012,72),(10495,97,0,2012,1),(10496,99,0,2012,1),(10497,134,0,2012,2),(10498,212,0,2012,78),(10499,93,0,2013,72),(10500,97,0,2013,1),(10501,99,0,2013,1),(10502,134,0,2013,2),(10503,212,0,2013,77),(10504,93,0,2014,76),(10505,97,0,2014,1),(10506,99,0,2014,1),(10507,134,0,2014,2),(10508,212,0,2014,79),(10509,93,0,2015,76),(10510,97,0,2015,1),(10511,99,0,2015,1),(10512,134,0,2015,2),(10513,212,0,2015,78),(10514,93,0,2016,76),(10515,97,0,2016,1),(10516,99,0,2016,1),(10517,134,0,2016,2),(10518,212,0,2016,77),(10519,97,0,2017,1),(10520,99,0,2017,4),(10521,115,0,2017,1),(10522,134,0,2017,2),(10523,93,0,2018,71),(10524,97,0,2018,1),(10525,99,0,2018,1),(10526,134,0,2018,2),(10527,212,0,2018,78),(10528,93,0,2019,75),(10529,97,0,2019,1),(10530,99,0,2019,1),(10531,134,0,2019,2),(10532,212,0,2019,78),(10533,97,0,2020,1),(10534,99,0,2020,4),(10535,115,0,2020,1),(10536,134,0,2020,2),(10537,93,0,2021,73),(10538,97,0,2021,1),(10539,99,0,2021,1),(10540,134,0,2021,2),(10541,212,0,2021,79),(10542,93,0,2022,73),(10543,97,0,2022,1),(10544,99,0,2022,1),(10545,134,0,2022,2),(10546,212,0,2022,78),(10547,93,0,2023,73),(10548,97,0,2023,1),(10549,99,0,2023,1),(10550,134,0,2023,2),(10551,212,0,2023,77),(10552,93,0,2024,73),(10553,97,0,2024,1),(10554,99,0,2024,1),(10555,134,0,2024,2),(10556,212,0,2024,80),(10557,93,0,2025,71),(10558,97,0,2025,1),(10559,99,0,2025,1),(10560,134,0,2025,2),(10561,212,0,2025,79),(10562,93,0,2026,71),(10563,97,0,2026,1),(10564,99,0,2026,1),(10565,134,0,2026,2),(10566,212,0,2026,78),(10567,93,0,2027,71),(10568,97,0,2027,1),(10569,99,0,2027,1),(10570,134,0,2027,2),(10571,212,0,2027,77),(10572,93,0,2028,71),(10573,97,0,2028,1),(10574,99,0,2028,1),(10575,134,0,2028,2),(10576,212,0,2028,80),(10577,97,0,2029,1),(10578,99,0,2029,4),(10579,115,0,2029,1),(10580,134,0,2029,2),(10581,93,0,2030,71),(10582,97,0,2030,1),(10583,99,0,2030,1),(10584,134,0,2030,2),(10585,212,0,2030,78),(10586,93,0,2031,75),(10587,97,0,2031,1),(10588,99,0,2031,1),(10589,134,0,2031,2),(10590,212,0,2031,78),(10591,97,0,2032,1),(10592,99,0,2032,4),(10593,115,0,2032,1),(10594,134,0,2032,2),(10640,93,0,2042,75),(10641,97,0,2042,1),(10642,99,0,2042,1),(10643,134,0,2042,2),(10644,212,0,2042,77),(10645,93,0,2043,75),(10646,97,0,2043,1),(10647,99,0,2043,1),(10648,134,0,2043,2),(10649,212,0,2043,80),(10650,93,0,2044,75),(10651,97,0,2044,1),(10652,99,0,2044,1),(10653,134,0,2044,2),(10654,212,0,2044,78),(10655,93,0,2045,75),(10656,97,0,2045,1),(10657,99,0,2045,1),(10658,134,0,2045,2),(10659,212,0,2045,79),(10660,93,0,2046,74),(10661,97,0,2046,1),(10662,99,0,2046,1),(10663,134,0,2046,2),(10664,212,0,2046,77),(10665,93,0,2047,74),(10666,97,0,2047,1),(10667,99,0,2047,1),(10668,134,0,2047,2),(10669,212,0,2047,80),(10670,93,0,2048,74),(10671,97,0,2048,1),(10672,99,0,2048,1),(10673,134,0,2048,2),(10674,212,0,2048,78),(10675,93,0,2049,74),(10676,97,0,2049,1),(10677,99,0,2049,1),(10678,134,0,2049,2),(10679,212,0,2049,79),(10680,97,0,2050,1),(10681,99,0,2050,4),(10682,115,0,2050,1),(10683,134,0,2050,2),(10684,93,0,2051,73),(10685,97,0,2051,1),(10686,99,0,2051,1),(10687,134,0,2051,2),(10688,212,0,2051,78),(10689,93,0,2052,73),(10690,97,0,2052,1),(10691,99,0,2052,1),(10692,134,0,2052,2),(10693,212,0,2052,79),(10694,93,0,2053,76),(10695,97,0,2053,1),(10696,99,0,2053,1),(10697,134,0,2053,2),(10698,212,0,2053,78),(10699,93,0,2054,76),(10700,97,0,2054,1),(10701,99,0,2054,1),(10702,134,0,2054,2),(10703,212,0,2054,79),(10704,97,0,2055,1),(10705,99,0,2055,4),(10706,115,0,2055,1),(10707,134,0,2055,2),(10708,93,0,2056,71),(10709,97,0,2056,1),(10710,99,0,2056,1),(10711,134,0,2056,2),(10712,212,0,2056,78),(10713,93,0,2057,74),(10714,97,0,2057,1),(10715,99,0,2057,1),(10716,134,0,2057,2),(10717,212,0,2057,78),(10718,93,0,2058,71),(10719,97,0,2058,1),(10720,99,0,2058,1),(10721,134,0,2058,2),(10722,212,0,2058,79),(10723,93,0,2059,74),(10724,97,0,2059,1),(10725,99,0,2059,1),(10726,134,0,2059,2),(10727,212,0,2059,79),(10728,97,0,2060,1),(10729,99,0,2060,4),(10730,115,0,2060,1),(10731,134,0,2060,2),(10732,93,0,2061,73),(10733,97,0,2061,1),(10734,99,0,2061,1),(10735,134,0,2061,2),(10736,212,0,2061,77),(10737,93,0,2062,73),(10738,97,0,2062,1),(10739,99,0,2062,1),(10740,134,0,2062,2),(10741,212,0,2062,78),(10742,93,0,2063,74),(10743,97,0,2063,1),(10744,99,0,2063,1),(10745,134,0,2063,2),(10746,212,0,2063,77),(10747,93,0,2064,74),(10748,97,0,2064,1),(10749,99,0,2064,1),(10750,134,0,2064,2),(10751,212,0,2064,78),(10752,97,0,2065,1),(10753,99,0,2065,4),(10754,115,0,2065,1),(10755,134,0,2065,2),(10756,93,0,2066,76),(10757,97,0,2066,1),(10758,99,0,2066,1),(10759,134,0,2066,2),(10760,212,0,2066,77),(10761,93,0,2067,76),(10762,97,0,2067,1),(10763,99,0,2067,1),(10764,134,0,2067,2),(10765,212,0,2067,78),(10766,93,0,2068,76),(10767,97,0,2068,1),(10768,99,0,2068,1),(10769,134,0,2068,2),(10770,212,0,2068,79),(10771,93,0,2069,72),(10772,97,0,2069,1),(10773,99,0,2069,1),(10774,134,0,2069,2),(10775,212,0,2069,77),(10776,93,0,2070,72),(10777,97,0,2070,1),(10778,99,0,2070,1),(10779,134,0,2070,2),(10780,212,0,2070,78),(10781,93,0,2071,72),(10782,97,0,2071,1),(10783,99,0,2071,1),(10784,134,0,2071,2),(10785,212,0,2071,79),(10786,97,0,2072,1),(10787,99,0,2072,4),(10788,115,0,2072,1),(10789,134,0,2072,2),(10790,93,0,2073,73),(10791,97,0,2073,1),(10792,99,0,2073,1),(10793,134,0,2073,2),(10794,212,0,2073,78),(10795,93,0,2074,73),(10796,97,0,2074,1),(10797,99,0,2074,1),(10798,134,0,2074,2),(10799,212,0,2074,79),(10800,93,0,2075,76),(10801,97,0,2075,1),(10802,99,0,2075,1),(10803,134,0,2075,2),(10804,212,0,2075,78),(10805,93,0,2076,76),(10806,97,0,2076,1),(10807,99,0,2076,1),(10808,134,0,2076,2),(10809,212,0,2076,79),(10810,97,0,2077,1),(10811,99,0,2077,4),(10812,115,0,2077,1),(10813,134,0,2077,2),(10814,93,0,2078,75),(10815,97,0,2078,1),(10816,99,0,2078,1),(10817,134,0,2078,2),(10818,212,0,2078,77),(10819,93,0,2079,75),(10820,97,0,2079,1),(10821,99,0,2079,1),(10822,134,0,2079,2),(10823,212,0,2079,80),(10824,93,0,2080,75),(10825,97,0,2080,1),(10826,99,0,2080,1),(10827,134,0,2080,2),(10828,212,0,2080,79),(10829,93,0,2081,72),(10830,97,0,2081,1),(10831,99,0,2081,1),(10832,134,0,2081,2),(10833,212,0,2081,77),(10834,93,0,2082,72),(10835,97,0,2082,1),(10836,99,0,2082,1),(10837,134,0,2082,2),(10838,212,0,2082,80),(10839,93,0,2083,72),(10840,97,0,2083,1),(10841,99,0,2083,1),(10842,134,0,2083,2),(10843,212,0,2083,79),(10844,97,0,2084,1),(10845,99,0,2084,4),(10846,115,0,2084,1),(10847,134,0,2084,2),(10848,93,0,2085,75),(10849,97,0,2085,1),(10850,99,0,2085,1),(10851,134,0,2085,2),(10852,212,0,2085,78),(10853,93,0,2086,75),(10854,97,0,2086,1),(10855,99,0,2086,1),(10856,134,0,2086,2),(10857,212,0,2086,79),(10858,93,0,2087,76),(10859,97,0,2087,1),(10860,99,0,2087,1),(10861,134,0,2087,2),(10862,212,0,2087,78),(10863,93,0,2088,76),(10864,97,0,2088,1),(10865,99,0,2088,1),(10866,134,0,2088,2),(10867,212,0,2088,79),(10868,97,0,2089,1),(10869,99,0,2089,4),(10870,115,0,2089,1),(10871,134,0,2089,2),(10872,93,0,2090,76),(10873,97,0,2090,1),(10874,99,0,2090,1),(10875,134,0,2090,2),(10876,212,0,2090,77),(10877,93,0,2091,76),(10878,97,0,2091,1),(10879,99,0,2091,1),(10880,134,0,2091,2),(10881,212,0,2091,78),(10882,93,0,2092,76),(10883,97,0,2092,1),(10884,99,0,2092,1),(10885,134,0,2092,2),(10886,212,0,2092,81),(10887,93,0,2093,76),(10888,97,0,2093,1),(10889,99,0,2093,1),(10890,134,0,2093,2),(10891,212,0,2093,79),(10892,93,0,2094,72),(10893,97,0,2094,1),(10894,99,0,2094,1),(10895,134,0,2094,2),(10896,212,0,2094,77),(10897,93,0,2095,72),(10898,97,0,2095,1),(10899,99,0,2095,1),(10900,134,0,2095,2),(10901,212,0,2095,78),(10902,93,0,2096,72),(10903,97,0,2096,1),(10904,99,0,2096,1),(10905,134,0,2096,2),(10906,212,0,2096,81),(10907,93,0,2097,72),(10908,97,0,2097,1),(10909,99,0,2097,1),(10910,134,0,2097,2),(10911,212,0,2097,79),(10912,97,0,2098,1),(10913,99,0,2098,4),(10914,115,0,2098,1),(10915,134,0,2098,2),(10916,93,0,2099,72),(10917,97,0,2099,1),(10918,99,0,2099,1),(10919,134,0,2099,2),(10920,212,0,2099,77),(10921,93,0,2100,72),(10922,97,0,2100,1),(10923,99,0,2100,1),(10924,134,0,2100,2),(10925,212,0,2100,78),(10926,93,0,2101,72),(10927,97,0,2101,1),(10928,99,0,2101,1),(10929,134,0,2101,2),(10930,212,0,2101,79),(10931,93,0,2102,76),(10932,97,0,2102,1),(10933,99,0,2102,1),(10934,134,0,2102,2),(10935,212,0,2102,77),(10936,93,0,2103,76),(10937,97,0,2103,1),(10938,99,0,2103,1),(10939,134,0,2103,2),(10940,212,0,2103,78),(10941,93,0,2104,76),(10942,97,0,2104,1),(10943,99,0,2104,1),(10944,134,0,2104,2),(10945,212,0,2104,79),(10946,97,0,2105,1),(10947,99,0,2105,4),(10948,115,0,2105,1),(10949,134,0,2105,2),(10950,93,0,2106,72),(10951,97,0,2106,1),(10952,99,0,2106,1),(10953,134,0,2106,2),(10954,212,0,2106,77),(10955,93,0,2107,72),(10956,97,0,2107,1),(10957,99,0,2107,1),(10958,134,0,2107,2),(10959,212,0,2107,78),(10960,93,0,2108,72),(10961,97,0,2108,1),(10962,99,0,2108,1),(10963,134,0,2108,2),(10964,212,0,2108,79),(10965,93,0,2109,72),(10966,97,0,2109,1),(10967,99,0,2109,1),(10968,134,0,2109,2),(10969,212,0,2109,80),(10970,93,0,2110,72),(10971,97,0,2110,1),(10972,99,0,2110,1),(10973,134,0,2110,2),(10974,212,0,2110,81),(10975,93,0,2111,75),(10976,97,0,2111,1),(10977,99,0,2111,1),(10978,134,0,2111,2),(10979,212,0,2111,77),(10980,93,0,2112,75),(10981,97,0,2112,1),(10982,99,0,2112,1),(10983,134,0,2112,2),(10984,212,0,2112,78),(10985,93,0,2113,75),(10986,97,0,2113,1),(10987,99,0,2113,1),(10988,134,0,2113,2),(10989,212,0,2113,79),(10990,93,0,2114,75),(10991,97,0,2114,1),(10992,99,0,2114,1),(10993,134,0,2114,2),(10994,212,0,2114,80),(10995,93,0,2115,75),(10996,97,0,2115,1),(10997,99,0,2115,1),(10998,134,0,2115,2),(10999,212,0,2115,81),(11000,97,0,2116,1),(11001,99,0,2116,4),(11002,115,0,2116,1),(11003,134,0,2116,2),(11004,93,0,2117,71),(11005,97,0,2117,1),(11006,99,0,2117,1),(11007,134,0,2117,0),(11008,212,0,2117,79),(11009,93,0,2118,71),(11010,97,0,2118,1),(11011,99,0,2118,1),(11012,134,0,2118,0),(11013,212,0,2118,78),(11014,93,0,2119,71),(11015,97,0,2119,1),(11016,99,0,2119,1),(11017,134,0,2119,0),(11018,212,0,2119,77),(11019,93,0,2120,72),(11020,97,0,2120,1),(11021,99,0,2120,1),(11022,134,0,2120,0),(11023,212,0,2120,79),(11024,93,0,2121,72),(11025,97,0,2121,1),(11026,99,0,2121,1),(11027,134,0,2121,0),(11028,212,0,2121,78),(11029,93,0,2122,72),(11030,97,0,2122,1),(11031,99,0,2122,1),(11032,134,0,2122,0),(11033,212,0,2122,77),(11034,97,0,2123,1),(11035,99,0,2123,4),(11036,115,0,2123,1),(11037,134,0,2123,0),(11038,93,0,2124,72),(11039,97,0,2124,1),(11040,99,0,2124,1),(11041,134,0,2124,0),(11042,212,0,2124,77),(11043,93,0,2125,72),(11044,97,0,2125,1),(11045,99,0,2125,1),(11046,134,0,2125,0),(11047,212,0,2125,80),(11048,93,0,2126,72),(11049,97,0,2126,1),(11050,99,0,2126,1),(11051,134,0,2126,0),(11052,212,0,2126,78),(11053,93,0,2127,72),(11054,97,0,2127,1),(11055,99,0,2127,1),(11056,134,0,2127,0),(11057,212,0,2127,79),(11058,93,0,2128,75),(11059,97,0,2128,1),(11060,99,0,2128,1),(11061,134,0,2128,0),(11062,212,0,2128,77),(11063,93,0,2129,75),(11064,97,0,2129,1),(11065,99,0,2129,1),(11066,134,0,2129,0),(11067,212,0,2129,80),(11068,93,0,2130,75),(11069,97,0,2130,1),(11070,99,0,2130,1),(11071,134,0,2130,0),(11072,212,0,2130,78),(11073,93,0,2131,75),(11074,97,0,2131,1),(11075,99,0,2131,1),(11076,134,0,2131,0),(11077,212,0,2131,79),(11078,97,0,2132,1),(11079,99,0,2132,4),(11080,115,0,2132,1),(11081,134,0,2132,0),(11082,93,0,2133,74),(11083,97,0,2133,1),(11084,99,0,2133,1),(11085,134,0,2133,2),(11086,212,0,2133,78),(11087,93,0,2134,75),(11088,97,0,2134,1),(11089,99,0,2134,1),(11090,134,0,2134,2),(11091,212,0,2134,78),(11092,97,0,2135,1),(11093,99,0,2135,4),(11094,115,0,2135,1),(11095,134,0,2135,2),(11096,93,0,2136,75),(11097,97,0,2136,1),(11098,99,0,2136,1),(11099,134,0,2136,2),(11100,212,0,2136,78),(11101,93,0,2137,76),(11102,97,0,2137,1),(11103,99,0,2137,1),(11104,134,0,2137,2),(11105,212,0,2137,78),(11106,97,0,2138,1),(11107,99,0,2138,4),(11108,115,0,2138,1),(11109,134,0,2138,2),(11110,93,0,2139,73),(11111,97,0,2139,1),(11112,99,0,2139,1),(11113,134,0,2139,2),(11114,212,0,2139,80),(11115,93,0,2140,73),(11116,97,0,2140,1),(11117,99,0,2140,1),(11118,134,0,2140,2),(11119,212,0,2140,78),(11120,93,0,2141,73),(11121,97,0,2141,1),(11122,99,0,2141,1),(11123,134,0,2141,2),(11124,212,0,2141,79),(11125,93,0,2142,76),(11126,97,0,2142,1),(11127,99,0,2142,1),(11128,134,0,2142,2),(11129,212,0,2142,80),(11130,93,0,2143,76),(11131,97,0,2143,1),(11132,99,0,2143,1),(11133,134,0,2143,2),(11134,212,0,2143,78),(11135,93,0,2144,76),(11136,97,0,2144,1),(11137,99,0,2144,1),(11138,134,0,2144,2),(11139,212,0,2144,79),(11140,97,0,2145,1),(11141,99,0,2145,4),(11142,115,0,2145,1),(11143,134,0,2145,2),(11144,93,0,2146,74),(11145,97,0,2146,1),(11146,99,0,2146,1),(11147,134,0,2146,2),(11148,93,0,2147,71),(11149,97,0,2147,1),(11150,99,0,2147,1),(11151,134,0,2147,2),(11152,93,0,2148,72),(11153,97,0,2148,1),(11154,99,0,2148,1),(11155,134,0,2148,0),(11156,212,0,2148,77),(11157,97,0,2149,1),(11158,99,0,2149,4),(11159,115,0,2149,1),(11160,134,0,2149,2),(11161,93,0,2150,72),(11162,97,0,2150,1),(11163,99,0,2150,1),(11164,134,0,2150,0),(11165,212,0,2150,80),(11166,93,0,2151,72),(11167,97,0,2151,1),(11168,99,0,2151,1),(11169,134,0,2151,0),(11170,212,0,2151,78),(11171,93,0,2152,72),(11172,97,0,2152,1),(11173,99,0,2152,1),(11174,134,0,2152,0),(11175,212,0,2152,79),(11176,93,0,2153,73),(11177,97,0,2153,1),(11178,99,0,2153,1),(11179,134,0,2153,0),(11180,212,0,2153,77),(11181,93,0,2154,73),(11182,97,0,2154,1),(11183,99,0,2154,1),(11184,134,0,2154,0),(11185,212,0,2154,80),(11186,93,0,2155,73),(11187,97,0,2155,1),(11188,99,0,2155,1),(11189,134,0,2155,0),(11190,212,0,2155,78),(11191,93,0,2156,73),(11192,97,0,2156,1),(11193,99,0,2156,1),(11194,134,0,2156,0),(11195,212,0,2156,79),(11196,97,0,2157,1),(11197,99,0,2157,4),(11198,115,0,2157,1),(11199,134,0,2157,0),(11200,93,0,2158,71),(11201,97,0,2158,1),(11202,99,0,2158,1),(11203,134,0,2158,2),(11204,208,0,2158,61),(11205,93,0,2159,71),(11206,97,0,2159,1),(11207,99,0,2159,1),(11208,134,0,2159,2),(11209,208,0,2159,59),(11210,93,0,2160,71),(11211,97,0,2160,1),(11212,99,0,2160,1),(11213,134,0,2160,2),(11214,208,0,2160,62),(11215,93,0,2161,71),(11216,97,0,2161,1),(11217,99,0,2161,1),(11218,134,0,2161,2),(11219,208,0,2161,82),(11220,93,0,2162,71),(11221,97,0,2162,1),(11222,99,0,2162,1),(11223,134,0,2162,2),(11224,208,0,2162,63),(11225,93,0,2163,75),(11226,97,0,2163,1),(11227,99,0,2163,1),(11228,134,0,2163,2),(11229,208,0,2163,61),(11230,93,0,2164,75),(11231,97,0,2164,1),(11232,99,0,2164,1),(11233,134,0,2164,2),(11234,208,0,2164,59),(11235,93,0,2165,75),(11236,97,0,2165,1),(11237,99,0,2165,1),(11238,134,0,2165,2),(11239,208,0,2165,62),(11240,93,0,2166,75),(11241,97,0,2166,1),(11242,99,0,2166,1),(11243,134,0,2166,2),(11244,208,0,2166,82),(11245,93,0,2167,75),(11246,97,0,2167,1),(11247,99,0,2167,1),(11248,134,0,2167,2),(11249,208,0,2167,63),(11250,97,0,2168,1),(11251,99,0,2168,4),(11252,115,0,2168,1),(11253,134,0,2168,2),(11255,93,0,2169,74),(11256,97,0,2169,1),(11257,99,0,2169,1),(11258,134,0,2169,2),(11259,93,0,2170,76),(11260,97,0,2170,1),(11261,99,0,2170,1),(11262,134,0,2170,2),(11263,97,0,2171,1),(11264,99,0,2171,4),(11265,115,0,2171,1),(11266,134,0,2171,2),(11267,93,0,2172,76),(11268,97,0,2172,1),(11269,99,0,2172,1),(11270,134,0,2172,0),(11271,212,0,2172,77),(11272,93,0,2173,76),(11273,97,0,2173,1),(11274,99,0,2173,1),(11275,134,0,2173,0),(11276,212,0,2173,78),(11277,93,0,2174,76),(11278,97,0,2174,1),(11279,99,0,2174,1),(11280,134,0,2174,0),(11281,212,0,2174,79),(11282,93,0,2175,71),(11283,97,0,2175,1),(11284,99,0,2175,1),(11285,134,0,2175,0),(11286,212,0,2175,77),(11287,93,0,2176,71),(11288,97,0,2176,1),(11289,99,0,2176,1),(11290,134,0,2176,0),(11291,212,0,2176,78),(11292,93,0,2177,71),(11293,97,0,2177,1),(11294,99,0,2177,1),(11295,134,0,2177,0),(11296,212,0,2177,79),(11297,97,0,2178,1),(11298,99,0,2178,4),(11299,115,0,2178,1),(11300,134,0,2178,0),(11301,93,0,2179,76),(11302,97,0,2179,1),(11303,99,0,2179,1),(11304,134,0,2179,2),(11305,212,0,2179,77),(11306,93,0,2180,76),(11307,97,0,2180,1),(11308,99,0,2180,1),(11309,134,0,2180,2),(11310,212,0,2180,78),(11311,93,0,2181,76),(11312,97,0,2181,1),(11313,99,0,2181,1),(11314,134,0,2181,2),(11315,212,0,2181,79),(11316,93,0,2182,74),(11317,97,0,2182,1),(11318,99,0,2182,1),(11319,134,0,2182,2),(11320,212,0,2182,77),(11321,93,0,2183,74),(11322,97,0,2183,1),(11323,99,0,2183,1),(11324,134,0,2183,2),(11325,212,0,2183,78),(11326,93,0,2184,74),(11327,97,0,2184,1),(11328,99,0,2184,1),(11329,134,0,2184,2),(11330,212,0,2184,79),(11331,97,0,2185,1),(11332,99,0,2185,4),(11333,115,0,2185,1),(11334,134,0,2185,2),(11335,93,0,2186,73),(11336,97,0,2186,1),(11337,99,0,2186,1),(11338,134,0,2186,2),(11339,212,0,2186,78),(11340,93,0,2187,73),(11341,97,0,2187,1),(11342,99,0,2187,1),(11343,134,0,2187,2),(11344,212,0,2187,79),(11345,93,0,2188,76),(11346,97,0,2188,1),(11347,99,0,2188,1),(11348,134,0,2188,2),(11349,212,0,2188,78),(11350,93,0,2189,76),(11351,97,0,2189,1),(11352,99,0,2189,1),(11353,134,0,2189,2),(11354,212,0,2189,79),(11355,97,0,2190,1),(11356,99,0,2190,4),(11357,115,0,2190,1),(11358,134,0,2190,2),(11359,93,0,2191,71),(11360,97,0,2191,1),(11361,99,0,2191,1),(11362,134,0,2191,0),(11363,212,0,2191,77),(11364,93,0,2192,71),(11365,97,0,2192,1),(11366,99,0,2192,1),(11367,134,0,2192,0),(11368,212,0,2192,78),(11369,93,0,2193,71),(11370,97,0,2193,1),(11371,99,0,2193,1),(11372,134,0,2193,0),(11373,212,0,2193,79),(11374,93,0,2194,74),(11375,97,0,2194,1),(11376,99,0,2194,1),(11377,134,0,2194,0),(11378,212,0,2194,77),(11379,93,0,2195,74),(11380,97,0,2195,1),(11381,99,0,2195,1),(11382,134,0,2195,0),(11383,212,0,2195,78),(11384,93,0,2196,74),(11385,97,0,2196,1),(11386,99,0,2196,1),(11387,134,0,2196,0),(11388,212,0,2196,79),(11389,97,0,2197,1),(11390,99,0,2197,4),(11391,115,0,2197,1),(11392,134,0,2197,0),(11393,93,0,2198,74),(11394,97,0,2198,1),(11395,99,0,2198,1),(11396,134,0,2198,0),(11397,212,0,2198,77),(11398,93,0,2199,74),(11399,97,0,2199,1),(11400,99,0,2199,1),(11401,134,0,2199,0),(11402,212,0,2199,78),(11403,93,0,2200,74),(11404,97,0,2200,1),(11405,99,0,2200,1),(11406,134,0,2200,0),(11407,212,0,2200,79),(11408,93,0,2201,75),(11409,97,0,2201,1),(11410,99,0,2201,1),(11411,134,0,2201,0),(11412,212,0,2201,77),(11413,93,0,2202,75),(11414,97,0,2202,1),(11415,99,0,2202,1),(11416,134,0,2202,0),(11417,212,0,2202,78),(11418,93,0,2203,75),(11419,97,0,2203,1),(11420,99,0,2203,1),(11421,134,0,2203,0),(11422,212,0,2203,79),(11423,97,0,2204,1),(11424,99,0,2204,4),(11425,115,0,2204,1),(11426,134,0,2204,0),(11427,93,0,2205,71),(11428,97,0,2205,1),(11429,99,0,2205,1),(11430,134,0,2205,2),(11431,93,0,2206,74),(11432,97,0,2206,1),(11433,99,0,2206,1),(11434,134,0,2206,2),(11435,97,0,2207,1),(11436,99,0,2207,4),(11437,115,0,2207,1),(11438,134,0,2207,2),(11439,93,0,2208,71),(11440,97,0,2208,1),(11441,99,0,2208,1),(11442,134,0,2208,2),(11443,212,0,2208,78),(11444,93,0,2209,71),(11445,97,0,2209,1),(11446,99,0,2209,1),(11447,134,0,2209,2),(11448,212,0,2209,79),(11449,93,0,2210,73),(11450,97,0,2210,1),(11451,99,0,2210,1),(11452,134,0,2210,2),(11453,212,0,2210,78),(11454,93,0,2211,73),(11455,97,0,2211,1),(11456,99,0,2211,1),(11457,134,0,2211,2),(11458,212,0,2211,79),(11459,97,0,2212,1),(11460,99,0,2212,4),(11461,115,0,2212,1),(11462,134,0,2212,2),(11463,93,0,2213,73),(11464,97,0,2213,1),(11465,99,0,2213,1),(11466,134,0,2213,0),(11467,212,0,2213,77),(11468,93,0,2214,73),(11469,97,0,2214,1),(11470,99,0,2214,1),(11471,134,0,2214,0),(11472,212,0,2214,80),(11473,93,0,2215,73),(11474,97,0,2215,1),(11475,99,0,2215,1),(11476,134,0,2215,0),(11477,212,0,2215,78),(11478,93,0,2216,71),(11479,97,0,2216,1),(11480,99,0,2216,1),(11481,134,0,2216,0),(11482,212,0,2216,77),(11483,93,0,2217,71),(11484,97,0,2217,1),(11485,99,0,2217,1),(11486,134,0,2217,0),(11487,212,0,2217,80),(11488,93,0,2218,71),(11489,97,0,2218,1),(11490,99,0,2218,1),(11491,134,0,2218,0),(11492,212,0,2218,78),(11493,97,0,2219,1),(11494,99,0,2219,4),(11495,115,0,2219,1),(11496,134,0,2219,0),(11497,93,0,2220,75),(11498,97,0,2220,1),(11499,99,0,2220,1),(11500,134,0,2220,2),(11501,93,0,2221,76),(11502,97,0,2221,1),(11503,99,0,2221,1),(11504,134,0,2221,2),(11505,97,0,2222,1),(11506,99,0,2222,4),(11507,115,0,2222,1),(11508,134,0,2222,2),(11509,93,0,2223,76),(11510,97,0,2223,1),(11511,99,0,2223,1),(11512,134,0,2223,0),(11513,212,0,2223,77),(11514,93,0,2224,71),(11515,97,0,2224,1),(11516,99,0,2224,1),(11517,134,0,2224,0),(11518,212,0,2224,77),(11519,93,0,2225,76),(11520,97,0,2225,1),(11521,99,0,2225,1),(11522,134,0,2225,0),(11523,212,0,2225,78),(11524,93,0,2226,71),(11525,97,0,2226,1),(11526,99,0,2226,1),(11527,134,0,2226,0),(11528,212,0,2226,78),(11529,93,0,2227,76),(11530,97,0,2227,1),(11531,99,0,2227,1),(11532,134,0,2227,0),(11533,212,0,2227,79),(11534,93,0,2228,71),(11535,97,0,2228,1),(11536,99,0,2228,1),(11537,134,0,2228,0),(11538,212,0,2228,79),(11539,97,0,2229,1),(11540,99,0,2229,4),(11541,115,0,2229,1),(11542,134,0,2229,0),(11543,93,0,2230,75),(11544,97,0,2230,1),(11545,99,0,2230,1),(11546,134,0,2230,2),(11547,212,0,2230,78),(11548,93,0,2231,75),(11549,97,0,2231,1),(11550,99,0,2231,1),(11551,134,0,2231,2),(11552,212,0,2231,79),(11553,93,0,2232,73),(11554,97,0,2232,1),(11555,99,0,2232,1),(11556,134,0,2232,2),(11557,212,0,2232,78),(11558,93,0,2233,73),(11559,97,0,2233,1),(11560,99,0,2233,1),(11561,134,0,2233,2),(11562,212,0,2233,79),(11563,97,0,2234,1),(11564,99,0,2234,4),(11565,115,0,2234,1),(11566,134,0,2234,2),(11567,93,0,2235,71),(11568,97,0,2235,1),(11569,99,0,2235,1),(11570,134,0,2235,0),(11571,208,0,2235,58),(11572,93,0,2236,71),(11573,97,0,2236,1),(11574,99,0,2236,1),(11575,134,0,2236,0),(11576,208,0,2236,61),(11577,93,0,2237,71),(11578,97,0,2237,1),(11579,99,0,2237,1),(11580,134,0,2237,0),(11581,208,0,2237,62),(11582,93,0,2238,71),(11583,97,0,2238,1),(11584,99,0,2238,1),(11585,134,0,2238,0),(11586,208,0,2238,63),(11587,93,0,2239,71),(11588,97,0,2239,1),(11589,99,0,2239,1),(11590,134,0,2239,0),(11591,208,0,2239,82),(11592,93,0,2240,75),(11593,97,0,2240,1),(11594,99,0,2240,1),(11595,134,0,2240,0),(11596,208,0,2240,58),(11597,93,0,2241,75),(11598,97,0,2241,1),(11599,99,0,2241,1),(11600,134,0,2241,0),(11601,208,0,2241,61),(11602,93,0,2242,75),(11603,97,0,2242,1),(11604,99,0,2242,1),(11605,134,0,2242,0),(11606,208,0,2242,62),(11607,93,0,2243,75),(11608,97,0,2243,1),(11609,99,0,2243,1),(11610,134,0,2243,0),(11611,208,0,2243,63),(11612,93,0,2244,75),(11613,97,0,2244,1),(11614,99,0,2244,1),(11615,134,0,2244,0),(11616,208,0,2244,82),(11617,97,0,2245,1),(11618,99,0,2245,4),(11619,115,0,2245,1),(11620,134,0,2245,0),(11622,93,0,2246,76),(11623,97,0,2246,1),(11624,99,0,2246,1),(11625,134,0,2246,2),(11626,212,0,2246,78),(11627,93,0,2247,76),(11628,97,0,2247,1),(11629,99,0,2247,1),(11630,134,0,2247,2),(11631,212,0,2247,81),(11632,93,0,2248,76),(11633,97,0,2248,1),(11634,99,0,2248,1),(11635,134,0,2248,2),(11636,212,0,2248,79),(11637,93,0,2249,74),(11638,97,0,2249,1),(11639,99,0,2249,1),(11640,134,0,2249,2),(11641,212,0,2249,78),(11642,93,0,2250,74),(11643,97,0,2250,1),(11644,99,0,2250,1),(11645,134,0,2250,2),(11646,212,0,2250,81),(11647,93,0,2251,74),(11648,97,0,2251,1),(11649,99,0,2251,1),(11650,134,0,2251,2),(11651,212,0,2251,79),(11652,97,0,2252,1),(11653,99,0,2252,4),(11654,115,0,2252,1),(11655,134,0,2252,2),(11656,93,0,2253,71),(11657,97,0,2253,1),(11658,99,0,2253,1),(11659,134,0,2253,2),(11660,212,0,2253,79),(11661,93,0,2254,74),(11662,97,0,2254,1),(11663,99,0,2254,1),(11664,134,0,2254,2),(11665,212,0,2254,79),(11666,97,0,2255,1),(11667,99,0,2255,4),(11668,115,0,2255,1),(11669,134,0,2255,2),(11670,93,0,2256,73),(11671,97,0,2256,1),(11672,99,0,2256,1),(11673,134,0,2256,2),(11674,208,0,2256,82),(11675,93,0,2257,73),(11676,97,0,2257,1),(11677,99,0,2257,1),(11678,134,0,2257,2),(11679,208,0,2257,63),(11680,93,0,2258,73),(11681,97,0,2258,1),(11682,99,0,2258,1),(11683,134,0,2258,2),(11684,208,0,2258,59),(11685,93,0,2259,73),(11686,97,0,2259,1),(11687,99,0,2259,1),(11688,134,0,2259,2),(11689,208,0,2259,62),(11690,93,0,2260,73),(11691,97,0,2260,1),(11692,99,0,2260,1),(11693,134,0,2260,2),(11694,208,0,2260,61),(11695,93,0,2261,73),(11696,97,0,2261,1),(11697,99,0,2261,1),(11698,134,0,2261,2),(11699,208,0,2261,58),(11700,93,0,2262,76),(11701,97,0,2262,1),(11702,99,0,2262,1),(11703,134,0,2262,2),(11704,208,0,2262,82),(11705,93,0,2263,76),(11706,97,0,2263,1),(11707,99,0,2263,1),(11708,134,0,2263,2),(11709,208,0,2263,63),(11710,93,0,2264,76),(11711,97,0,2264,1),(11712,99,0,2264,1),(11713,134,0,2264,2),(11714,208,0,2264,59),(11715,93,0,2265,76),(11716,97,0,2265,1),(11717,99,0,2265,1),(11718,134,0,2265,2),(11719,208,0,2265,62),(11720,93,0,2266,76),(11721,97,0,2266,1),(11722,99,0,2266,1),(11723,134,0,2266,2),(11724,208,0,2266,61),(11725,93,0,2267,76),(11726,97,0,2267,1),(11727,99,0,2267,1),(11728,134,0,2267,2),(11729,208,0,2267,58),(11730,97,0,2268,1),(11731,99,0,2268,4),(11732,115,0,2268,1),(11733,134,0,2268,2),(11780,93,0,2278,71),(11781,97,0,2278,1),(11782,99,0,2278,1),(11783,134,0,2278,0),(11784,212,0,2278,77),(11785,93,0,2279,71),(11786,97,0,2279,1),(11787,99,0,2279,1),(11788,134,0,2279,0),(11789,212,0,2279,78),(11790,93,0,2280,71),(11791,97,0,2280,1),(11792,99,0,2280,1),(11793,134,0,2280,0),(11794,212,0,2280,79),(11795,93,0,2281,75),(11796,97,0,2281,1),(11797,99,0,2281,1),(11798,134,0,2281,0),(11799,212,0,2281,77),(11800,93,0,2282,75),(11801,97,0,2282,1),(11802,99,0,2282,1),(11803,134,0,2282,0),(11804,212,0,2282,78),(11805,93,0,2283,75),(11806,97,0,2283,1),(11807,99,0,2283,1),(11808,134,0,2283,0),(11809,212,0,2283,79),(11810,97,0,2284,1),(11811,99,0,2284,4),(11812,115,0,2284,1),(11813,134,0,2284,0),(11814,93,0,2285,71),(11815,97,0,2285,1),(11816,99,0,2285,1),(11817,134,0,2285,2),(11818,212,0,2285,79),(11819,93,0,2286,71),(11820,97,0,2286,1),(11821,99,0,2286,1),(11822,134,0,2286,2),(11823,212,0,2286,78),(11824,93,0,2287,71),(11825,97,0,2287,1),(11826,99,0,2287,1),(11827,134,0,2287,2),(11828,212,0,2287,77),(11829,93,0,2288,73),(11830,97,0,2288,1),(11831,99,0,2288,1),(11832,134,0,2288,2),(11833,212,0,2288,79),(11834,93,0,2289,73),(11835,97,0,2289,1),(11836,99,0,2289,1),(11837,134,0,2289,2),(11838,212,0,2289,78),(11839,93,0,2290,73),(11840,97,0,2290,1),(11841,99,0,2290,1),(11842,134,0,2290,2),(11843,212,0,2290,77),(11844,97,0,2291,1),(11845,99,0,2291,4),(11846,115,0,2291,1),(11847,134,0,2291,2),(11848,93,0,2292,72),(11849,97,0,2292,1),(11850,99,0,2292,1),(11851,134,0,2292,0),(11852,212,0,2292,77),(11853,93,0,2293,75),(11854,97,0,2293,1),(11855,99,0,2293,1),(11856,134,0,2293,0),(11857,212,0,2293,77),(11858,93,0,2294,72),(11859,97,0,2294,1),(11860,99,0,2294,1),(11861,134,0,2294,0),(11862,212,0,2294,80),(11863,93,0,2295,75),(11864,97,0,2295,1),(11865,99,0,2295,1),(11866,134,0,2295,0),(11867,212,0,2295,80),(11868,93,0,2296,72),(11869,97,0,2296,1),(11870,99,0,2296,1),(11871,134,0,2296,0),(11872,212,0,2296,78),(11873,93,0,2297,75),(11874,97,0,2297,1),(11875,99,0,2297,1),(11876,134,0,2297,0),(11877,212,0,2297,78),(11878,93,0,2298,72),(11879,97,0,2298,1),(11880,99,0,2298,1),(11881,134,0,2298,0),(11882,212,0,2298,79),(11883,93,0,2299,75),(11884,97,0,2299,1),(11885,99,0,2299,1),(11886,134,0,2299,0),(11887,212,0,2299,79),(11888,97,0,2300,1),(11889,99,0,2300,4),(11890,115,0,2300,1),(11891,134,0,2300,0),(11892,93,0,2301,73),(11893,97,0,2301,1),(11894,99,0,2301,1),(11895,134,0,2301,2),(11896,212,0,2301,77),(11897,93,0,2302,73),(11898,97,0,2302,1),(11899,99,0,2302,1),(11900,134,0,2302,2),(11901,212,0,2302,80),(11902,93,0,2303,73),(11903,97,0,2303,1),(11904,99,0,2303,1),(11905,134,0,2303,2),(11906,212,0,2303,78),(11907,93,0,2304,73),(11908,97,0,2304,1),(11909,99,0,2304,1),(11910,134,0,2304,2),(11911,212,0,2304,81),(11912,93,0,2305,74),(11913,97,0,2305,1),(11914,99,0,2305,1),(11915,134,0,2305,2),(11916,212,0,2305,77),(11917,93,0,2306,74),(11918,97,0,2306,1),(11919,99,0,2306,1),(11920,134,0,2306,2),(11921,212,0,2306,80),(11922,93,0,2307,74),(11923,97,0,2307,1),(11924,99,0,2307,1),(11925,134,0,2307,2),(11926,212,0,2307,78),(11927,93,0,2308,74),(11928,97,0,2308,1),(11929,99,0,2308,1),(11930,134,0,2308,2),(11931,212,0,2308,81),(11932,97,0,2309,1),(11933,99,0,2309,4),(11934,115,0,2309,1),(11935,134,0,2309,2),(11936,93,0,2310,74),(11937,97,0,2310,1),(11938,99,0,2310,1),(11939,134,0,2310,2),(11940,212,0,2310,77),(11941,93,0,2311,74),(11942,97,0,2311,1),(11943,99,0,2311,1),(11944,134,0,2311,2),(11945,212,0,2311,78),(11946,93,0,2312,74),(11947,97,0,2312,1),(11948,99,0,2312,1),(11949,134,0,2312,2),(11950,212,0,2312,79),(11951,93,0,2313,74),(11952,97,0,2313,1),(11953,99,0,2313,1),(11954,134,0,2313,2),(11955,212,0,2313,80),(11956,93,0,2314,74),(11957,97,0,2314,1),(11958,99,0,2314,1),(11959,134,0,2314,2),(11960,212,0,2314,81),(11961,93,0,2315,75),(11962,97,0,2315,1),(11963,99,0,2315,1),(11964,134,0,2315,2),(11965,212,0,2315,77),(11966,93,0,2316,75),(11967,97,0,2316,1),(11968,99,0,2316,1),(11969,134,0,2316,2),(11970,212,0,2316,78),(11971,93,0,2317,75),(11972,97,0,2317,1),(11973,99,0,2317,1),(11974,134,0,2317,2),(11975,212,0,2317,79),(11976,93,0,2318,75),(11977,97,0,2318,1),(11978,99,0,2318,1),(11979,134,0,2318,2),(11980,212,0,2318,80),(11981,93,0,2319,75),(11982,97,0,2319,1),(11983,99,0,2319,1),(11984,134,0,2319,2),(11985,212,0,2319,81),(11986,97,0,2320,1),(11987,99,0,2320,4),(11988,115,0,2320,1),(11989,134,0,2320,2),(12035,93,0,2330,72),(12036,97,0,2330,1),(12037,99,0,2330,1),(12038,134,0,2330,0),(12039,212,0,2330,78),(12040,93,0,2331,72),(12041,97,0,2331,1),(12042,99,0,2331,1),(12043,134,0,2331,0),(12044,212,0,2331,81),(12045,93,0,2332,72),(12046,97,0,2332,1),(12047,99,0,2332,1),(12048,134,0,2332,0),(12049,212,0,2332,80),(12050,93,0,2333,75),(12051,97,0,2333,1),(12052,99,0,2333,1),(12053,134,0,2333,0),(12054,212,0,2333,78),(12055,93,0,2334,75),(12056,97,0,2334,1),(12057,99,0,2334,1),(12058,134,0,2334,0),(12059,212,0,2334,81),(12060,93,0,2335,75),(12061,97,0,2335,1),(12062,99,0,2335,1),(12063,134,0,2335,0),(12064,212,0,2335,80),(12065,97,0,2336,1),(12066,99,0,2336,4),(12067,115,0,2336,1),(12068,134,0,2336,0),(12077,93,0,2337,76),(12078,97,0,2337,1),(12079,99,0,2337,1),(12080,134,0,2337,0),(12081,212,0,2337,78),(12082,93,0,2338,76),(12083,97,0,2338,1),(12084,99,0,2338,1),(12085,134,0,2338,0),(12086,212,0,2338,79),(12087,93,0,2339,76),(12088,97,0,2339,1),(12089,99,0,2339,1),(12090,134,0,2339,0),(12091,212,0,2339,80),(12095,93,0,2340,72),(12096,97,0,2340,1),(12097,99,0,2340,1),(12098,134,0,2340,0),(12099,212,0,2340,78),(12100,93,0,2341,72),(12101,97,0,2341,1),(12102,99,0,2341,1),(12103,134,0,2341,0),(12104,212,0,2341,79),(12105,93,0,2342,72),(12106,97,0,2342,1),(12107,99,0,2342,1),(12108,134,0,2342,0),(12109,212,0,2342,80),(12110,97,0,2343,1),(12111,99,0,2343,4),(12112,115,0,2343,1),(12113,134,0,2343,0),(12138,93,0,2344,73),(12139,97,0,2344,1),(12140,99,0,2344,1),(12141,134,0,2344,2),(12142,212,0,2344,77),(12143,93,0,2345,73),(12144,97,0,2345,1),(12145,99,0,2345,1),(12146,134,0,2345,2),(12147,212,0,2345,78),(12148,93,0,2346,73),(12149,97,0,2346,1),(12150,99,0,2346,1),(12151,134,0,2346,2),(12152,212,0,2346,81),(12153,93,0,2347,76),(12154,97,0,2347,1),(12155,99,0,2347,1),(12156,134,0,2347,2),(12157,212,0,2347,77),(12158,93,0,2348,76),(12159,97,0,2348,1),(12160,99,0,2348,1),(12161,134,0,2348,2),(12162,212,0,2348,78),(12172,93,0,2349,76),(12173,97,0,2349,1),(12174,99,0,2349,1),(12175,134,0,2349,2),(12176,212,0,2349,81),(12177,97,0,2350,1),(12178,99,0,2350,4),(12179,115,0,2350,1),(12180,134,0,2350,2),(12229,93,0,2351,75),(12230,97,0,2351,1),(12231,99,0,2351,1),(12232,134,0,2351,0),(12233,212,0,2351,77),(12234,93,0,2352,75),(12235,97,0,2352,1),(12236,99,0,2352,1),(12237,134,0,2352,0),(12238,212,0,2352,78),(12239,93,0,2353,75),(12240,97,0,2353,1),(12241,99,0,2353,1),(12242,134,0,2353,0),(12243,212,0,2353,79),(12244,93,0,2354,76),(12245,97,0,2354,1),(12246,99,0,2354,1),(12247,134,0,2354,0),(12248,212,0,2354,77),(12249,93,0,2355,76),(12250,97,0,2355,1),(12251,99,0,2355,1),(12252,134,0,2355,0),(12253,212,0,2355,78),(12254,93,0,2356,76),(12255,97,0,2356,1),(12256,99,0,2356,1),(12257,134,0,2356,0),(12258,212,0,2356,79),(12259,97,0,2357,1),(12260,99,0,2357,4),(12261,115,0,2357,1),(12262,134,0,2357,0),(12263,93,0,2358,72),(12264,97,0,2358,1),(12265,99,0,2358,1),(12266,134,0,2358,0),(12267,212,0,2358,79),(12268,93,0,2359,73),(12269,97,0,2359,1),(12270,99,0,2359,1),(12271,134,0,2359,0),(12272,212,0,2359,79),(12273,93,0,2360,72),(12274,97,0,2360,1),(12275,99,0,2360,1),(12276,134,0,2360,0),(12277,212,0,2360,78),(12278,93,0,2361,73),(12279,97,0,2361,1),(12280,99,0,2361,1),(12281,134,0,2361,0),(12282,212,0,2361,78),(12283,93,0,2362,72),(12284,97,0,2362,1),(12285,99,0,2362,1),(12286,134,0,2362,0),(12287,212,0,2362,77),(12288,93,0,2363,73),(12289,97,0,2363,1),(12290,99,0,2363,1),(12291,134,0,2363,0),(12292,212,0,2363,77),(12293,93,0,2364,72),(12294,97,0,2364,1),(12295,99,0,2364,1),(12296,134,0,2364,0),(12297,212,0,2364,80),(12298,93,0,2365,73),(12299,97,0,2365,1),(12300,99,0,2365,1),(12301,134,0,2365,0),(12302,212,0,2365,80),(12303,97,0,2366,1),(12304,99,0,2366,4),(12305,115,0,2366,1),(12306,134,0,2366,0),(12307,93,0,2367,71),(12308,97,0,2367,1),(12309,99,0,2367,1),(12310,134,0,2367,0),(12311,212,0,2367,77),(12312,93,0,2368,71),(12313,97,0,2368,1),(12314,99,0,2368,1),(12315,134,0,2368,0),(12316,212,0,2368,78),(12317,93,0,2369,71),(12318,97,0,2369,1),(12319,99,0,2369,1),(12320,134,0,2369,0),(12321,212,0,2369,79),(12322,93,0,2370,74),(12323,97,0,2370,1),(12324,99,0,2370,1),(12325,134,0,2370,0),(12326,212,0,2370,77),(12327,93,0,2371,74),(12328,97,0,2371,1),(12329,99,0,2371,1),(12330,134,0,2371,0),(12331,212,0,2371,78),(12332,93,0,2372,74),(12333,97,0,2372,1),(12334,99,0,2372,1),(12335,134,0,2372,0),(12336,212,0,2372,79),(12337,97,0,2373,1),(12338,99,0,2373,4),(12339,115,0,2373,1),(12340,134,0,2373,0),(12341,93,0,2374,73),(12342,97,0,2374,1),(12343,99,0,2374,1),(12344,134,0,2374,2),(12345,212,0,2374,80),(12346,93,0,2375,73),(12347,97,0,2375,1),(12348,99,0,2375,1),(12349,134,0,2375,2),(12350,212,0,2375,78),(12351,93,0,2376,73),(12352,97,0,2376,1),(12353,99,0,2376,1),(12354,134,0,2376,2),(12355,212,0,2376,79),(12356,93,0,2377,76),(12357,97,0,2377,1),(12358,99,0,2377,1),(12359,134,0,2377,2),(12360,212,0,2377,80),(12361,93,0,2378,76),(12362,97,0,2378,1),(12363,99,0,2378,1),(12364,134,0,2378,2),(12365,212,0,2378,78),(12366,93,0,2379,76),(12367,97,0,2379,1),(12368,99,0,2379,1),(12369,134,0,2379,2),(12370,212,0,2379,79),(12371,93,0,2380,72),(12372,97,0,2380,1),(12373,99,0,2380,1),(12374,134,0,2380,2),(12375,212,0,2380,80),(12376,93,0,2381,72),(12377,97,0,2381,1),(12378,99,0,2381,1),(12379,134,0,2381,2),(12380,212,0,2381,78),(12381,93,0,2382,72),(12382,97,0,2382,1),(12383,99,0,2382,1),(12384,134,0,2382,2),(12385,212,0,2382,79),(12386,93,0,2383,75),(12387,97,0,2383,1),(12388,99,0,2383,1),(12389,134,0,2383,2),(12390,212,0,2383,80),(12391,93,0,2384,75),(12392,97,0,2384,1),(12393,99,0,2384,1),(12394,134,0,2384,2),(12395,212,0,2384,78),(12396,93,0,2385,75),(12397,97,0,2385,1),(12398,99,0,2385,1),(12399,134,0,2385,2),(12400,212,0,2385,79),(12401,93,0,2386,71),(12402,97,0,2386,1),(12403,99,0,2386,1),(12404,134,0,2386,2),(12405,212,0,2386,80),(12406,93,0,2387,71),(12407,97,0,2387,1),(12408,99,0,2387,1),(12409,134,0,2387,2),(12410,212,0,2387,78),(12411,93,0,2388,71),(12412,97,0,2388,1),(12413,99,0,2388,1),(12414,134,0,2388,2),(12415,212,0,2388,79),(12416,97,0,2389,1),(12417,99,0,2389,4),(12418,115,0,2389,1),(12419,134,0,2389,2),(12420,93,0,2390,71),(12421,97,0,2390,1),(12422,99,0,2390,1),(12423,134,0,2390,0),(12424,212,0,2390,77),(12425,93,0,2391,71),(12426,97,0,2391,1),(12427,99,0,2391,1),(12428,134,0,2391,0),(12429,212,0,2391,78),(12430,93,0,2392,71),(12431,97,0,2392,1),(12432,99,0,2392,1),(12433,134,0,2392,0),(12434,212,0,2392,79),(12435,93,0,2393,74),(12436,97,0,2393,1),(12437,99,0,2393,1),(12438,134,0,2393,0),(12439,212,0,2393,77),(12440,93,0,2394,74),(12441,97,0,2394,1),(12442,99,0,2394,1),(12443,134,0,2394,0),(12444,212,0,2394,78),(12445,93,0,2395,74),(12446,97,0,2395,1),(12447,99,0,2395,1),(12448,134,0,2395,0),(12449,212,0,2395,79),(12450,97,0,2396,1),(12451,99,0,2396,4),(12452,115,0,2396,1),(12453,134,0,2396,0),(12454,93,0,2397,75),(12455,97,0,2397,1),(12456,99,0,2397,1),(12457,134,0,2397,2),(12458,212,0,2397,77),(12459,93,0,2398,75),(12460,97,0,2398,1),(12461,99,0,2398,1),(12462,134,0,2398,2),(12463,212,0,2398,78),(12464,93,0,2399,75),(12465,97,0,2399,1),(12466,99,0,2399,1),(12467,134,0,2399,2),(12468,212,0,2399,79),(12469,93,0,2400,76),(12470,97,0,2400,1),(12471,99,0,2400,1),(12472,134,0,2400,2),(12473,212,0,2400,77),(12474,93,0,2401,76),(12475,97,0,2401,1),(12476,99,0,2401,1),(12477,134,0,2401,2),(12478,212,0,2401,78),(12479,93,0,2402,76),(12480,97,0,2402,1),(12481,99,0,2402,1),(12482,134,0,2402,2),(12483,212,0,2402,79),(12484,97,0,2403,1),(12485,99,0,2403,4),(12486,115,0,2403,1),(12487,134,0,2403,2),(12488,93,0,2404,74),(12489,97,0,2404,1),(12490,99,0,2404,1),(12491,134,0,2404,2),(12492,212,0,2404,77),(12493,93,0,2405,74),(12494,97,0,2405,1),(12495,99,0,2405,1),(12496,134,0,2405,2),(12497,212,0,2405,80),(12498,93,0,2406,74),(12499,97,0,2406,1),(12500,99,0,2406,1),(12501,134,0,2406,2),(12502,212,0,2406,78),(12503,93,0,2407,76),(12504,97,0,2407,1),(12505,99,0,2407,1),(12506,134,0,2407,2),(12507,212,0,2407,77),(12508,93,0,2408,76),(12509,97,0,2408,1),(12510,99,0,2408,1),(12511,134,0,2408,2),(12512,212,0,2408,80),(12513,93,0,2409,76),(12514,97,0,2409,1),(12515,99,0,2409,1),(12516,134,0,2409,2),(12517,212,0,2409,78),(12518,97,0,2410,1),(12519,99,0,2410,4),(12520,115,0,2410,1),(12521,134,0,2410,2),(12522,93,0,2411,71),(12523,97,0,2411,1),(12524,99,0,2411,1),(12525,134,0,2411,0),(12526,212,0,2411,79),(12527,93,0,2412,71),(12528,97,0,2412,1),(12529,99,0,2412,1),(12530,134,0,2412,0),(12531,212,0,2412,77),(12532,93,0,2413,71),(12533,97,0,2413,1),(12534,99,0,2413,1),(12535,134,0,2413,0),(12536,212,0,2413,78),(12537,93,0,2414,73),(12538,97,0,2414,1),(12539,99,0,2414,1),(12540,134,0,2414,0),(12541,212,0,2414,79),(12542,93,0,2415,73),(12543,97,0,2415,1),(12544,99,0,2415,1),(12545,134,0,2415,0),(12546,212,0,2415,77),(12547,93,0,2416,73),(12548,97,0,2416,1),(12549,99,0,2416,1),(12550,134,0,2416,0),(12551,212,0,2416,78),(12552,97,0,2417,1),(12553,99,0,2417,4),(12554,115,0,2417,1),(12555,134,0,2417,0),(12556,93,0,2418,71),(12557,97,0,2418,1),(12558,99,0,2418,1),(12559,134,0,2418,0),(12560,212,0,2418,77),(12561,93,0,2419,71),(12562,97,0,2419,1),(12563,99,0,2419,1),(12564,134,0,2419,0),(12565,212,0,2419,78),(12566,93,0,2420,71),(12567,97,0,2420,1),(12568,99,0,2420,1),(12569,134,0,2420,0),(12570,212,0,2420,79),(12571,93,0,2421,74),(12572,97,0,2421,1),(12573,99,0,2421,1),(12574,134,0,2421,0),(12575,212,0,2421,77),(12576,93,0,2422,74),(12577,97,0,2422,1),(12578,99,0,2422,1),(12579,134,0,2422,0),(12580,212,0,2422,78),(12581,93,0,2423,74),(12582,97,0,2423,1),(12583,99,0,2423,1),(12584,134,0,2423,0),(12585,212,0,2423,79),(12586,97,0,2424,1),(12587,99,0,2424,4),(12588,115,0,2424,1),(12589,134,0,2424,0),(12590,93,0,2425,72),(12591,97,0,2425,1),(12592,99,0,2425,1),(12593,134,0,2425,0),(12594,212,0,2425,77),(12595,93,0,2426,72),(12596,97,0,2426,1),(12597,99,0,2426,1),(12598,134,0,2426,0),(12599,212,0,2426,78),(12600,93,0,2427,72),(12601,97,0,2427,1),(12602,99,0,2427,1),(12603,134,0,2427,0),(12604,212,0,2427,79),(12605,93,0,2428,75),(12606,97,0,2428,1),(12607,99,0,2428,1),(12608,134,0,2428,0),(12609,212,0,2428,77),(12610,93,0,2429,75),(12611,97,0,2429,1),(12612,99,0,2429,1),(12613,134,0,2429,0),(12614,212,0,2429,78),(12615,93,0,2430,75),(12616,97,0,2430,1),(12617,99,0,2430,1),(12618,134,0,2430,0),(12619,212,0,2430,79),(12620,97,0,2431,1),(12621,99,0,2431,4),(12622,115,0,2431,1),(12623,134,0,2431,0),(12624,93,0,2432,74),(12625,97,0,2432,1),(12626,99,0,2432,1),(12627,134,0,2432,2),(12628,212,0,2432,81),(12629,93,0,2433,74),(12630,97,0,2433,1),(12631,99,0,2433,1),(12632,134,0,2433,2),(12633,212,0,2433,78),(12634,93,0,2434,74),(12635,97,0,2434,1),(12636,99,0,2434,1),(12637,134,0,2434,2),(12638,212,0,2434,77),(12639,93,0,2435,74),(12640,97,0,2435,1),(12641,99,0,2435,1),(12642,134,0,2435,2),(12643,212,0,2435,80),(12644,93,0,2436,75),(12645,97,0,2436,1),(12646,99,0,2436,1),(12647,134,0,2436,2),(12648,212,0,2436,81),(12649,93,0,2437,75),(12650,97,0,2437,1),(12651,99,0,2437,1),(12652,134,0,2437,2),(12653,212,0,2437,78),(12654,93,0,2438,75),(12655,97,0,2438,1),(12656,99,0,2438,1),(12657,134,0,2438,2),(12658,212,0,2438,77),(12659,93,0,2439,75),(12660,97,0,2439,1),(12661,99,0,2439,1),(12662,134,0,2439,2),(12663,212,0,2439,80),(12664,97,0,2440,1),(12665,99,0,2440,4),(12666,115,0,2440,1),(12667,134,0,2440,2),(12668,93,0,2441,74),(12669,97,0,2441,1),(12670,99,0,2441,1),(12671,134,0,2441,2),(12672,208,0,2441,61),(12673,93,0,2442,74),(12674,97,0,2442,1),(12675,99,0,2442,1),(12676,134,0,2442,2),(12677,208,0,2442,62),(12678,93,0,2443,74),(12679,97,0,2443,1),(12680,99,0,2443,1),(12681,134,0,2443,2),(12682,208,0,2443,59),(12683,93,0,2444,74),(12684,97,0,2444,1),(12685,99,0,2444,1),(12686,134,0,2444,2),(12687,208,0,2444,82),(12688,93,0,2445,74),(12689,97,0,2445,1),(12690,99,0,2445,1),(12691,134,0,2445,2),(12692,208,0,2445,63),(12693,93,0,2446,72),(12694,97,0,2446,1),(12695,99,0,2446,1),(12696,134,0,2446,2),(12697,208,0,2446,61),(12698,93,0,2447,72),(12699,97,0,2447,1),(12700,99,0,2447,1),(12701,134,0,2447,2),(12702,208,0,2447,62),(12703,93,0,2448,72),(12704,97,0,2448,1),(12705,99,0,2448,1),(12706,134,0,2448,2),(12707,208,0,2448,59),(12708,93,0,2449,72),(12709,97,0,2449,1),(12710,99,0,2449,1),(12711,134,0,2449,2),(12712,208,0,2449,82),(12713,93,0,2450,72),(12714,97,0,2450,1),(12715,99,0,2450,1),(12716,134,0,2450,2),(12717,208,0,2450,63),(12718,93,0,2451,75),(12719,97,0,2451,1),(12720,99,0,2451,1),(12721,134,0,2451,2),(12722,208,0,2451,61),(12723,93,0,2452,75),(12724,97,0,2452,1),(12725,99,0,2452,1),(12726,134,0,2452,2),(12727,208,0,2452,62),(12728,93,0,2453,75),(12729,97,0,2453,1),(12730,99,0,2453,1),(12731,134,0,2453,2),(12732,208,0,2453,59),(12733,93,0,2454,75),(12734,97,0,2454,1),(12735,99,0,2454,1),(12736,134,0,2454,2),(12737,208,0,2454,82),(12738,93,0,2455,75),(12739,97,0,2455,1),(12740,99,0,2455,1),(12741,134,0,2455,2),(12742,208,0,2455,63),(12743,97,0,2456,1),(12744,99,0,2456,4),(12745,115,0,2456,1),(12746,134,0,2456,2),(12748,93,0,2457,75),(12749,97,0,2457,1),(12750,99,0,2457,1),(12751,134,0,2457,2),(12752,208,0,2457,58),(12753,93,0,2458,75),(12754,97,0,2458,1),(12755,99,0,2458,1),(12756,134,0,2458,2),(12757,208,0,2458,59),(12758,93,0,2459,75),(12759,97,0,2459,1),(12760,99,0,2459,1),(12761,134,0,2459,2),(12762,208,0,2459,62),(12763,93,0,2460,75),(12764,97,0,2460,1),(12765,99,0,2460,1),(12766,134,0,2460,2),(12767,208,0,2460,82),(12768,93,0,2461,76),(12769,97,0,2461,1),(12770,99,0,2461,1),(12771,134,0,2461,2),(12772,208,0,2461,58),(12773,93,0,2462,76),(12774,97,0,2462,1),(12775,99,0,2462,1),(12776,134,0,2462,2),(12777,208,0,2462,59),(12778,93,0,2463,76),(12779,97,0,2463,1),(12780,99,0,2463,1),(12781,134,0,2463,2),(12782,208,0,2463,62),(12783,93,0,2464,76),(12784,97,0,2464,1),(12785,99,0,2464,1),(12786,134,0,2464,2),(12787,208,0,2464,82),(12788,97,0,2465,1),(12789,99,0,2465,4),(12790,115,0,2465,1),(12791,134,0,2465,2),(12793,93,0,2466,74),(12794,97,0,2466,1),(12795,99,0,2466,1),(12796,134,0,2466,2),(12797,208,0,2466,58),(12798,93,0,2467,74),(12799,97,0,2467,1),(12800,99,0,2467,1),(12801,134,0,2467,2),(12802,208,0,2467,61),(12803,93,0,2468,74),(12804,97,0,2468,1),(12805,99,0,2468,1),(12806,134,0,2468,2),(12807,208,0,2468,62),(12808,93,0,2469,74),(12809,97,0,2469,1),(12810,99,0,2469,1),(12811,134,0,2469,2),(12812,208,0,2469,65),(12813,93,0,2470,74),(12814,97,0,2470,1),(12815,99,0,2470,1),(12816,134,0,2470,2),(12817,208,0,2470,82),(12818,93,0,2471,74),(12819,97,0,2471,1),(12820,99,0,2471,1),(12821,134,0,2471,2),(12822,208,0,2471,63),(12823,93,0,2472,73),(12824,97,0,2472,1),(12825,99,0,2472,1),(12826,134,0,2472,2),(12827,208,0,2472,58),(12828,93,0,2473,73),(12829,97,0,2473,1),(12830,99,0,2473,1),(12831,134,0,2473,2),(12832,208,0,2473,61),(12833,93,0,2474,73),(12834,97,0,2474,1),(12835,99,0,2474,1),(12836,134,0,2474,2),(12837,208,0,2474,62),(12838,93,0,2475,73),(12839,97,0,2475,1),(12840,99,0,2475,1),(12841,134,0,2475,2),(12842,208,0,2475,65),(12843,93,0,2476,73),(12844,97,0,2476,1),(12845,99,0,2476,1),(12846,134,0,2476,2),(12847,208,0,2476,82),(12848,93,0,2477,73),(12849,97,0,2477,1),(12850,99,0,2477,1),(12851,134,0,2477,2),(12852,208,0,2477,63),(12853,97,0,2478,1),(12854,99,0,2478,4),(12855,115,0,2478,1),(12856,134,0,2478,2),(12858,208,0,51,60),(12859,208,0,105,60),(12860,208,0,33,60),(12861,208,0,7,60),(12862,208,0,10,60),(12863,208,0,70,60),(12864,208,0,17,60),(12865,208,0,72,60),(12866,208,0,26,60),(12867,208,0,19,60),(12868,208,0,50,60),(12869,208,0,119,60),(12870,208,0,41,60),(12871,208,0,18,60),(12872,208,0,45,60),(12873,93,0,2479,74),(12874,97,0,2479,1),(12875,99,0,2479,1),(12876,134,0,2479,2),(12877,212,0,2479,80),(12878,93,0,2480,74),(12879,97,0,2480,1),(12880,99,0,2480,1),(12881,134,0,2480,2),(12882,212,0,2480,77),(12883,93,0,2481,74),(12884,97,0,2481,1),(12885,99,0,2481,1),(12886,134,0,2481,2),(12887,212,0,2481,78),(12888,93,0,2482,74),(12889,97,0,2482,1),(12890,99,0,2482,1),(12891,134,0,2482,2),(12892,212,0,2482,79),(12893,93,0,2483,73),(12894,97,0,2483,1),(12895,99,0,2483,1),(12896,134,0,2483,2),(12897,212,0,2483,80),(12898,93,0,2484,73),(12899,97,0,2484,1),(12900,99,0,2484,1),(12901,134,0,2484,2),(12902,212,0,2484,77),(12903,93,0,2485,73),(12904,97,0,2485,1),(12905,99,0,2485,1),(12906,134,0,2485,2),(12907,212,0,2485,78),(12908,93,0,2486,73),(12909,97,0,2486,1),(12910,99,0,2486,1),(12911,134,0,2486,2),(12912,212,0,2486,79),(12913,97,0,2487,1),(12914,99,0,2487,4),(12915,115,0,2487,1),(12916,134,0,2487,2),(12917,93,0,2488,74),(12918,97,0,2488,1),(12919,99,0,2488,1),(12920,134,0,2488,2),(12921,208,0,2488,58),(12922,93,0,2489,74),(12923,97,0,2489,1),(12924,99,0,2489,1),(12925,134,0,2489,2),(12926,208,0,2489,61),(12927,93,0,2490,74),(12928,97,0,2490,1),(12929,99,0,2490,1),(12930,134,0,2490,2),(12931,208,0,2490,59),(12932,93,0,2491,74),(12933,97,0,2491,1),(12934,99,0,2491,1),(12935,134,0,2491,2),(12936,208,0,2491,62),(12937,93,0,2492,74),(12938,97,0,2492,1),(12939,99,0,2492,1),(12940,134,0,2492,2),(12941,208,0,2492,82),(12942,93,0,2493,74),(12943,97,0,2493,1),(12944,99,0,2493,1),(12945,134,0,2493,2),(12946,208,0,2493,63),(12947,93,0,2494,76),(12948,97,0,2494,1),(12949,99,0,2494,1),(12950,134,0,2494,2),(12951,208,0,2494,58),(12952,93,0,2495,76),(12953,97,0,2495,1),(12954,99,0,2495,1),(12955,134,0,2495,2),(12956,208,0,2495,61),(12957,93,0,2496,76),(12958,97,0,2496,1),(12959,99,0,2496,1),(12960,134,0,2496,2),(12961,208,0,2496,59),(12962,93,0,2497,76),(12963,97,0,2497,1),(12964,99,0,2497,1),(12965,134,0,2497,2),(12966,208,0,2497,62),(12967,93,0,2498,76),(12968,97,0,2498,1),(12969,99,0,2498,1),(12970,134,0,2498,2),(12971,208,0,2498,82),(12972,93,0,2499,76),(12973,97,0,2499,1),(12974,99,0,2499,1),(12975,134,0,2499,2),(12976,208,0,2499,63),(12977,97,0,2500,1),(12978,99,0,2500,4),(12979,115,0,2500,1),(12980,134,0,2500,2),(12982,93,0,2501,74),(12983,97,0,2501,1),(12984,99,0,2501,1),(12985,134,0,2501,2),(12986,212,0,2501,80),(12987,93,0,2502,74),(12988,97,0,2502,1),(12989,99,0,2502,1),(12990,134,0,2502,2),(12991,212,0,2502,78),(12992,93,0,2503,74),(12993,97,0,2503,1),(12994,99,0,2503,1),(12995,134,0,2503,2),(12996,212,0,2503,79),(12997,93,0,2504,73),(12998,97,0,2504,1),(12999,99,0,2504,1),(13000,134,0,2504,2),(13001,212,0,2504,80),(13002,93,0,2505,73),(13003,97,0,2505,1),(13004,99,0,2505,1),(13005,134,0,2505,2),(13006,212,0,2505,78),(13007,93,0,2506,73),(13008,97,0,2506,1),(13009,99,0,2506,1),(13010,134,0,2506,2),(13011,212,0,2506,79),(13012,97,0,2507,1),(13013,99,0,2507,4),(13014,115,0,2507,1),(13015,134,0,2507,2),(13016,93,0,2508,71),(13017,97,0,2508,1),(13018,99,0,2508,1),(13019,134,0,2508,2),(13020,212,0,2508,80),(13021,93,0,2509,71),(13022,97,0,2509,1),(13023,99,0,2509,1),(13024,134,0,2509,2),(13025,212,0,2509,78),(13026,93,0,2510,71),(13027,97,0,2510,1),(13028,99,0,2510,1),(13029,134,0,2510,2),(13030,212,0,2510,79),(13031,93,0,2511,75),(13032,97,0,2511,1),(13033,99,0,2511,1),(13034,134,0,2511,2),(13035,212,0,2511,80),(13036,93,0,2512,75),(13037,97,0,2512,1),(13038,99,0,2512,1),(13039,134,0,2512,2),(13040,212,0,2512,78),(13041,93,0,2513,75),(13042,97,0,2513,1),(13043,99,0,2513,1),(13044,134,0,2513,2),(13045,212,0,2513,79),(13046,93,0,2514,73),(13047,97,0,2514,1),(13048,99,0,2514,1),(13049,134,0,2514,2),(13050,212,0,2514,80),(13051,93,0,2515,73),(13052,97,0,2515,1),(13053,99,0,2515,1),(13054,134,0,2515,2),(13055,212,0,2515,78),(13056,93,0,2516,73),(13057,97,0,2516,1),(13058,99,0,2516,1),(13059,134,0,2516,2),(13060,212,0,2516,79),(13061,97,0,2517,1),(13062,99,0,2517,4),(13063,115,0,2517,1),(13064,134,0,2517,2),(13065,208,0,91,60),(13066,93,0,2518,74),(13067,97,0,2518,1),(13068,99,0,2518,1),(13069,134,0,2518,2),(13070,212,0,2518,80),(13071,93,0,2519,74),(13072,97,0,2519,1),(13073,99,0,2519,1),(13074,134,0,2519,2),(13075,212,0,2519,78),(13076,93,0,2520,74),(13077,97,0,2520,1),(13078,99,0,2520,1),(13079,134,0,2520,2),(13080,212,0,2520,79),(13081,93,0,2521,71),(13082,97,0,2521,1),(13083,99,0,2521,1),(13084,134,0,2521,2),(13085,212,0,2521,80),(13086,93,0,2522,71),(13087,97,0,2522,1),(13088,99,0,2522,1),(13089,134,0,2522,2),(13090,212,0,2522,78),(13091,93,0,2523,71),(13092,97,0,2523,1),(13093,99,0,2523,1),(13094,134,0,2523,2),(13095,212,0,2523,79),(13096,97,0,2524,1),(13097,99,0,2524,4),(13098,115,0,2524,1),(13099,134,0,2524,2),(13101,93,0,2525,71),(13102,97,0,2525,1),(13103,99,0,2525,1),(13104,134,0,2525,2),(13105,208,0,2525,58),(13106,93,0,2526,71),(13107,97,0,2526,1),(13108,99,0,2526,1),(13109,134,0,2526,2),(13110,208,0,2526,59),(13111,93,0,2527,71),(13112,97,0,2527,1),(13113,99,0,2527,1),(13114,134,0,2527,2),(13115,208,0,2527,62),(13116,93,0,2528,71),(13117,97,0,2528,1),(13118,99,0,2528,1),(13119,134,0,2528,2),(13120,208,0,2528,82),(13121,93,0,2529,75),(13122,97,0,2529,1),(13123,99,0,2529,1),(13124,134,0,2529,2),(13125,208,0,2529,58),(13126,93,0,2530,75),(13127,97,0,2530,1),(13128,99,0,2530,1),(13129,134,0,2530,2),(13130,208,0,2530,59),(13131,93,0,2531,75),(13132,97,0,2531,1),(13133,99,0,2531,1),(13134,134,0,2531,2),(13135,208,0,2531,62),(13136,93,0,2532,75),(13137,97,0,2532,1),(13138,99,0,2532,1),(13139,134,0,2532,2),(13140,208,0,2532,82),(13141,97,0,2533,1),(13142,99,0,2533,4),(13143,115,0,2533,1),(13144,134,0,2533,2),(13146,93,0,2534,71),(13147,97,0,2534,1),(13148,99,0,2534,1),(13149,134,0,2534,0),(13150,212,0,2534,77),(13151,93,0,2535,71),(13152,97,0,2535,1),(13153,99,0,2535,1),(13154,134,0,2535,0),(13155,212,0,2535,80),(13156,93,0,2536,71),(13157,97,0,2536,1),(13158,99,0,2536,1),(13159,134,0,2536,0),(13160,212,0,2536,78),(13161,93,0,2537,71),(13162,97,0,2537,1),(13163,99,0,2537,1),(13164,134,0,2537,0),(13165,212,0,2537,79),(13166,93,0,2538,72),(13167,97,0,2538,1),(13168,99,0,2538,1),(13169,134,0,2538,0),(13170,212,0,2538,77),(13171,93,0,2539,72),(13172,97,0,2539,1),(13173,99,0,2539,1),(13174,134,0,2539,0),(13175,212,0,2539,80),(13176,93,0,2540,72),(13177,97,0,2540,1),(13178,99,0,2540,1),(13179,134,0,2540,0),(13180,212,0,2540,78),(13181,93,0,2541,72),(13182,97,0,2541,1),(13183,99,0,2541,1),(13184,134,0,2541,0),(13185,212,0,2541,79),(13186,97,0,2542,1),(13187,99,0,2542,4),(13188,115,0,2542,1),(13189,134,0,2542,0);
/*!40000 ALTER TABLE `catalog_product_entity_int` ENABLE KEYS */;
UNLOCK TABLES;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_int_after_insert AFTER INSERT ON catalog_product_entity_int FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_int_after_update AFTER UPDATE ON catalog_product_entity_int FOR EACH ROW
BEGIN
IF (NEW.`value_id` <=> OLD.`value_id` OR NEW.`attribute_id` <=> OLD.`attribute_id` OR NEW.`store_id` <=> OLD.`store_id` OR NEW.`entity_id` <=> OLD.`entity_id` OR NEW.`value` <=> OLD.`value`) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
IF (NEW.`value_id` <=> OLD.`value_id` OR NEW.`attribute_id` <=> OLD.`attribute_id` OR NEW.`store_id` <=> OLD.`store_id` OR NEW.`entity_id` <=> OLD.`entity_id` OR NEW.`value` <=> OLD.`value`) THEN INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_int_after_delete AFTER DELETE ON catalog_product_entity_int FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

--
-- Table structure for table `catalog_product_entity_media_gallery`
--

DROP TABLE IF EXISTS `catalog_product_entity_media_gallery`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_entity_media_gallery` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  `media_type` varchar(32) NOT NULL DEFAULT 'image' COMMENT 'Media entry type',
  `disabled` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Visibility status',
  PRIMARY KEY (`value_id`),
  KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8892 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Media Gallery Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_media_gallery`
--

LOCK TABLES `catalog_product_entity_media_gallery` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_media_gallery` VALUES (1,90,'/i/m/image_31305746_81_620x757_0.jpg','image',0),(2,90,'/i/m/image_31305746_81_620x757_1.jpg','image',0),(3,90,'/i/m/image_31305746_81_620x757_2.jpg','image',0),(4,90,'/i/m/image_31305746_81_620x757_3.jpg','image',0),(5,90,'/u/n/unspecified.jpg','image',0),(6,90,'/i/m/image_31190954_80_620x757_1.jpg','image',0),(7,90,'/i/m/image_31190954_80_620x757_2_1.jpg','image',0),(8,90,'/i/m/image_31190954_80_620x757_3.jpg','image',0),(14,90,'/i/m/image_31091015_72_620x757_0_1.jpg','image',0),(15,90,'/i/m/image_31091015_72_620x757_1.jpg','image',0),(16,90,'/i/m/image_31091015_72_620x757_3.jpg','image',0),(17,90,'/i/m/image_31091015_72_620x757_4.jpg','image',0),(22,90,'/i/m/image_31141265_20_620x757_0.jpg','image',0),(23,90,'/i/m/image_31141265_20_620x757_3.jpg','image',0),(24,90,'/i/m/image_31141265_20_620x757_2.jpg','image',0),(25,90,'/i/m/image_31141265_20_620x757_4.jpg','image',0),(26,90,'/b/i/bitmap.png','image',0),(27,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257.jpg','image',0),(28,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_detail.jpg','image',0),(29,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back.jpg','image',0),(30,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_side.jpg','image',0),(34,90,'/i/m/image_31241601_81_620x757_0.jpg','image',0),(35,90,'/i/m/image_31241601_81_620x757_1.jpg','image',0),(36,90,'/i/m/image_31241601_81_620x757_2.jpg','image',0),(37,90,'/i/m/image_31241601_81_620x757_3.jpg','image',0),(38,90,'/i/m/image_30977108_10_970x1182_0.jpg','image',0),(39,90,'/i/m/image_30977108_10_970x1182_1.jpg','image',0),(40,90,'/i/m/image_30977108_10_970x1182_2.jpg','image',0),(41,90,'/i/m/image_30977108_10_970x1182_3.jpg','image',0),(42,90,'/i/m/image_31240220_10_970x1182_0.jpg','image',0),(43,90,'/i/m/image_31240220_10_970x1182_1.jpg','image',0),(44,90,'/i/m/image_31240220_10_970x1182_2.jpg','image',0),(45,90,'/i/m/image_31240220_10_970x1182_3.jpg','image',0),(46,90,'/i/m/image_31331004_36_970x1182_0.jpg','image',0),(47,90,'/i/m/image_31331004_36_970x1182_1.jpg','image',0),(48,90,'/i/m/image_31331004_36_970x1182_2.jpg','image',0),(49,90,'/i/m/image_31331004_36_970x1182_3.jpg','image',0),(50,90,'/d/1/d1ia53cw.jpeg','image',0),(51,90,'/m/w/mwoow7ra.jpeg','image',0),(52,90,'/j/e/jekbcryg.jpeg','image',0),(53,90,'/v/d/vdz_xc1w.jpeg','image',0),(62,90,'/i/m/image_31085465_74_620x757_0_1.jpg','image',0),(63,90,'/i/m/image_31085465_74_620x757_2.jpg','image',0),(64,90,'/i/m/image_31085465_74_620x757_3.jpg','image',0),(65,90,'/i/m/image_31085465_74_620x757_4.jpg','image',0),(66,90,'/i/m/image_31340162_80_970x1182_0.jpg','image',0),(67,90,'/i/m/image_31340162_80_970x1182_1.jpg','image',0),(68,90,'/i/m/image_31340162_80_970x1182_2.jpg','image',0),(69,90,'/i/m/image_31340162_80_970x1182_3.jpg','image',0),(70,90,'/i/m/image_31125033_85_970x1182_0.jpg','image',0),(71,90,'/i/m/image_31125033_85_970x1182_1.jpg','image',0),(72,90,'/i/m/image_31125033_85_970x1182_2.jpg','image',0),(73,90,'/i/m/image_31125033_85_970x1182_3.jpg','image',0),(74,90,'/1/0/10502970_50015_100.jpg','image',0),(75,90,'/1/0/10502970_50015_200.jpg','image',0),(76,90,'/1/0/10502970_50015_300.jpg','image',0),(85,90,'/i/m/image_31237526_30_970x1182_0.jpg','image',0),(86,90,'/i/m/image_31237526_30_970x1182_2.jpg','image',0),(87,90,'/i/m/image_31237526_30_970x1182_1.jpg','image',0),(88,90,'/i/m/image_31237526_30_970x1182_3.jpg','image',0),(93,90,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6.jpg','image',0),(94,90,'/0/3/038_b2f26eea-4343-4453-ae75-e59def6fa13b.jpg','image',0),(95,90,'/0/3/038_de5e44e3-159d-4df1-a18a-8ef7ea6a45e8.jpg','image',0),(96,90,'/i/m/image_31179106_74_620x757_0-1.jpg','image',0),(97,90,'/i/m/image_31179106_74_620x757_3.jpg','image',0),(98,90,'/i/m/image_31179106_74_620x757_2.jpg','image',0),(99,90,'/i/m/image_31179106_74_620x757_1.jpg','image',0),(100,90,'/i/m/image_30977037_25_970x1182_0.jpg','image',0),(101,90,'/i/m/image_30977037_25_970x1182_1.jpg','image',0),(102,90,'/i/m/image_30977037_25_970x1182_2.jpg','image',0),(103,90,'/i/m/image_30977037_25_970x1182_3.jpg','image',0),(112,90,'/i/m/image_31332644_47_970x1182_0.jpg','image',0),(113,90,'/i/m/image_31332644_47_970x1182_1.jpg','image',0),(114,90,'/i/m/image_31332644_47_970x1182_2.jpg','image',0),(115,90,'/i/m/image_31332644_47_970x1182_3.jpg','image',0),(116,90,'/m/a/main.jpg','image',0),(117,90,'/i/m/image_31289374_75_620x757_1.jpg','image',0),(118,90,'/i/m/image_31289374_75_620x757_2.jpg','image',0),(119,90,'/i/m/image_31289374_75_620x757_3.jpg','image',0),(124,90,'/i/m/image_31160332_10_620x757_0.jpg','image',0),(125,90,'/i/m/image_31160332_10_620x757_1.jpg','image',0),(126,90,'/i/m/image_31160332_10_620x757_2.jpg','image',0),(127,90,'/m/a/main_1.jpg','image',0),(128,90,'/i/m/image_31202680_34_970x1182_0.jpg','image',0),(129,90,'/i/m/image_31202680_34_970x1182_1.jpg','image',0),(130,90,'/i/m/image_31202680_34_970x1182_2.jpg','image',0),(131,90,'/i/m/image_31202680_34_970x1182_3.jpg','image',0),(132,90,'/m/a/main_1_1.jpg','image',0),(133,90,'/i/m/image_31189007_36_970x1182_2.jpg','image',0),(134,90,'/i/m/image_31189007_36_970x1182_3.jpg','image',0),(138,90,'/m/a/main_1_2.jpg','image',0),(139,90,'/i/m/image_31231300_36_970x1182_2.jpg','image',0),(140,90,'/i/m/image_31231300_36_970x1182_3.jpg','image',0),(145,90,'/i/m/image_31189077_82_620x757_2.jpg','image',0),(146,90,'/i/m/image_31189077_82_620x757_3.jpg','image',0),(147,90,'/m/a/main_3.jpg','image',0),(156,90,'/i/m/image_30947478_80_970x1182_0.jpg','image',0),(157,90,'/i/m/image_30947478_80_970x1182_1.jpg','image',0),(158,90,'/i/m/image_30947478_80_970x1182_4.jpg','image',0),(159,90,'/m/a/main_2.jpg','image',0),(160,90,'/i/m/image_31178507_75_620x757_1_1.jpg','image',0),(161,90,'/i/m/image_31178507_75_620x757_2_1.jpg','image',0),(162,90,'/i/m/image_31178507_75_620x757_3_1.jpg','image',0),(167,90,'/i/m/image_31233103_34_970x1182_0.jpg','image',0),(168,90,'/i/m/image_31233103_34_970x1182_1.jpg','image',0),(169,90,'/i/m/image_31233103_34_970x1182_2.jpg','image',0),(170,90,'/i/m/image_31233103_34_970x1182_3.jpg','image',0),(177,90,'/m/a/main_3_1.jpg','image',0),(178,90,'/i/m/image_31258335_50_620x757_1.jpg','image',0),(179,90,'/i/m/image_31258335_50_620x757_2.jpg','image',0),(180,90,'/i/m/image_31258335_50_620x757_3.jpg','image',0),(184,90,'/i/m/image_31261586_25_970x1182_0.jpg','image',0),(185,90,'/i/m/image_31261586_25_970x1182_1.jpg','image',0),(186,90,'/i/m/image_31261586_25_970x1182_2.jpg','image',0),(187,90,'/i/m/image_31261586_25_970x1182_3.jpg','image',0),(192,90,'/m/a/main_3_3.jpg','image',0),(193,90,'/i/m/image_31264080_96_620x757_2.jpg','image',0),(194,90,'/i/m/image_31264080_96_620x757_3.jpg','image',0),(202,90,'/i/m/image_30950832_43_620x757_0.jpg','image',0),(203,90,'/i/m/image_30950832_43_620x757_4.jpg','image',0),(204,90,'/i/m/image_30950832_43_620x757_1.jpg','image',0),(205,90,'/i/m/image_31220278_21_970x1182_0.jpg','image',0),(206,90,'/i/m/image_31220278_21_970x1182_1.jpg','image',0),(207,90,'/i/m/image_31220278_21_970x1182_2.jpg','image',0),(208,90,'/i/m/image_31220278_21_970x1182_3.jpg','image',0),(209,90,'/m/a/main_3_5.jpg','image',0),(210,90,'/i/m/image_31202421_10_620x757_2.jpg','image',0),(211,90,'/i/m/image_31202421_10_620x757_3.jpg','image',0),(216,90,'/i/m/image_30930729_37_970x1182_0.jpg','image',0),(217,90,'/i/m/image_30930729_37_970x1182_1.jpg','image',0),(218,90,'/i/m/image_30930729_37_970x1182_3.jpg','image',0),(219,90,'/i/m/image_30930729_37_970x1182_2.jpg','image',0),(220,90,'/i/m/image_30811612_22_970x1182_0.jpg','image',0),(221,90,'/i/m/image_30811612_22_970x1182_1.jpg','image',0),(222,90,'/i/m/image_30811612_22_970x1182_2.jpg','image',0),(223,90,'/i/m/image_30811612_22_970x1182_3.jpg','image',0),(224,90,'/m/a/main_4.jpg','image',0),(225,90,'/i/m/image_31045897_10_620x757_1.jpg','image',0),(226,90,'/i/m/image_31045897_10_620x757_2.jpg','image',0),(227,90,'/i/m/image_31045897_10_620x757_3.jpg','image',0),(240,90,'/i/m/image_31253491_30_970x1182_0.jpg','image',0),(241,90,'/i/m/image_31253491_30_970x1182_1.jpg','image',0),(242,90,'/i/m/image_31253491_30_970x1182_2.jpg','image',0),(243,90,'/i/m/image_31253491_30_970x1182_3.jpg','image',0),(247,90,'/i/m/image_30838511_25_970x1182_0.jpg','image',0),(248,90,'/i/m/image_30838511_25_970x1182_1.jpg','image',0),(249,90,'/i/m/image_30838511_25_970x1182_2.jpg','image',0),(250,90,'/i/m/image_30838511_25_970x1182_3.jpg','image',0),(255,90,'/m/a/main_4_2.jpg','image',0),(256,90,'/i/m/image_31300702_10_620x757_1.jpg','image',0),(257,90,'/i/m/image_31300702_10_620x757_2.jpg','image',0),(258,90,'/i/m/image_31300702_10_620x757_3.jpg','image',0),(263,90,'/i/m/image_31265248_31_970x1182_0.jpg','image',0),(264,90,'/i/m/image_31265248_31_970x1182_1.jpg','image',0),(265,90,'/i/m/image_31265248_31_970x1182_2.jpg','image',0),(266,90,'/i/m/image_31265248_31_970x1182_3.jpg','image',0),(270,90,'/i/m/image_31266871_25_970x1182_0.jpg','image',0),(271,90,'/i/m/image_31266871_25_970x1182_1.jpg','image',0),(272,90,'/i/m/image_31266871_25_970x1182_2.jpg','image',0),(273,90,'/i/m/image_31266871_25_970x1182_3.jpg','image',0),(274,90,'/i/m/image_31158529_30_970x1182_0.jpg','image',0),(275,90,'/i/m/image_31158529_30_970x1182_1.jpg','image',0),(276,90,'/i/m/image_31158529_30_970x1182_2.jpg','image',0),(277,90,'/i/m/image_31158529_30_970x1182_3.jpg','image',0),(278,90,'/i/m/image_31074190_83_620x757_0.jpg','image',0),(279,90,'/i/m/image_31074190_83_620x757_4.jpg','image',0),(280,90,'/i/m/image_31074190_83_620x757_1.jpg','image',0),(281,90,'/m/a/main_5.jpg','image',0),(282,90,'/i/m/image_31160296_11_620x757_1.jpg','image',0),(283,90,'/i/m/image_31160296_11_620x757_2.jpg','image',0),(284,90,'/i/m/image_31160296_11_620x757_3.jpg','image',0),(307,90,'/i/m/image_31204067_55_970x1182_0.jpg','image',0),(308,90,'/i/m/image_31204067_55_970x1182_1.jpg','image',0),(309,90,'/i/m/image_31204067_55_970x1182_2.jpg','image',0),(310,90,'/i/m/image_31204067_55_970x1182_3.jpg','image',0),(311,90,'/i/m/image_31291013_25_970x1182_0.jpg','image',0),(312,90,'/i/m/image_31291013_25_970x1182_1.jpg','image',0),(313,90,'/i/m/image_31291013_25_970x1182_2.jpg','image',0),(314,90,'/i/m/image_31291013_25_970x1182_3.jpg','image',0),(319,90,'/i/m/image_31103364_21_620x757_0.jpg','image',0),(320,90,'/i/m/image_31103364_21_620x757_1.jpg','image',0),(321,90,'/i/m/image_31103364_21_620x757_4.jpg','image',0),(322,90,'/i/m/image_31319864_25_970x1182_0.jpg','image',0),(323,90,'/i/m/image_31319864_25_970x1182_1.jpg','image',0),(324,90,'/i/m/image_31319864_25_970x1182_2.jpg','image',0),(325,90,'/i/m/image_31319864_25_970x1182_3.jpg','image',0),(330,90,'/m/a/main_5_2.jpg','image',0),(331,90,'/i/m/image_31160298_16_620x757_1.jpg','image',0),(332,90,'/i/m/image_31160298_16_620x757_2.jpg','image',0),(333,90,'/i/m/image_31160298_16_620x757_3.jpg','image',0),(337,90,'/i/m/image_31304863_80_970x1182_0.jpg','image',0),(338,90,'/i/m/image_31304863_80_970x1182_1.jpg','image',0),(339,90,'/i/m/image_31304863_80_970x1182_2.jpg','image',0),(340,90,'/i/m/image_31304863_80_970x1182_3.jpg','image',0),(341,90,'/i/m/image_31151579_25_970x1182_0.jpg','image',0),(342,90,'/i/m/image_31151579_25_970x1182_1.jpg','image',0),(343,90,'/i/m/image_31151579_25_970x1182_2.jpg','image',0),(344,90,'/i/m/image_31151579_25_970x1182_3.jpg','image',0),(349,90,'/i/m/image_31124658_10_970x1182_0.jpg','image',0),(350,90,'/i/m/image_31124658_10_970x1182_1.jpg','image',0),(351,90,'/i/m/image_31124658_10_970x1182_2.jpg','image',0),(352,90,'/i/m/image_31124658_10_970x1182_3.jpg','image',0),(353,90,'/i/m/image_31292416_21_970x1182_0.jpg','image',0),(354,90,'/i/m/image_31292416_21_970x1182_1.jpg','image',0),(355,90,'/i/m/image_31292416_21_970x1182_2.jpg','image',0),(356,90,'/i/m/image_31292416_21_970x1182_3.jpg','image',0),(357,90,'/m/a/main_5_3.jpg','image',0),(358,90,'/i/m/image_31324632_33_620x757_2.jpg','image',0),(359,90,'/i/m/image_31324632_33_620x757_3.jpg','image',0),(364,90,'/i/m/image_31196404_83_620x757_0.jpg','image',0),(365,90,'/i/m/image_31196404_83_620x757_5.jpg','image',0),(366,90,'/i/m/image_31196404_83_620x757_4.jpg','image',0),(367,90,'/i/m/image_31239294_22_970x1182_0.jpg','image',0),(368,90,'/i/m/image_31239294_22_970x1182_1.jpg','image',0),(369,90,'/i/m/image_31239294_22_970x1182_2.jpg','image',0),(370,90,'/i/m/image_31239294_22_970x1182_3.jpg','image',0),(375,90,'/i/m/image_30805166_20_970x1182_0.jpg','image',0),(376,90,'/i/m/image_30805166_20_970x1182_1.jpg','image',0),(377,90,'/i/m/image_30805166_20_970x1182_2.jpg','image',0),(378,90,'/i/m/image_30805166_20_970x1182_3.jpg','image',0),(393,90,'/i/m/image_31197648_45_620x757_0.jpg','image',0),(394,90,'/i/m/image_31197648_45_620x757_1.jpg','image',0),(395,90,'/i/m/image_31197648_45_620x757_2.jpg','image',0),(399,90,'/m/a/main_5_4.jpg','image',0),(400,90,'/i/m/image_31303902_33_620x757_2.jpg','image',0),(401,90,'/i/m/image_31303902_33_620x757_3.jpg','image',0),(402,90,'/i/m/image_31093629_20_620x757_0.jpg','image',0),(403,90,'/i/m/image_31093629_20_620x757_1.jpg','image',0),(404,90,'/i/m/image_31093629_20_620x757_5.jpg','image',0),(408,90,'/i/m/image_30988045_20_970x1182_0.jpg','image',0),(409,90,'/i/m/image_30988045_20_970x1182_1.jpg','image',0),(410,90,'/i/m/image_30988045_20_970x1182_2.jpg','image',0),(411,90,'/i/m/image_30988045_20_970x1182_3.jpg','image',0),(416,90,'/m/a/main_5_5.jpg','image',0),(417,90,'/i/m/image_31203254_31_620x757_2.jpg','image',0),(418,90,'/i/m/image_31203254_31_620x757_3.jpg','image',0),(419,90,'/i/m/image_31333018_65_620x757_0.jpg','image',0),(420,90,'/i/m/image_31333018_65_620x757_1-1.jpg','image',0),(421,90,'/i/m/image_31333018_65_620x757_4.jpg','image',0),(428,90,'/i/m/image_30945868_82_620x757_0.jpg','image',0),(429,90,'/i/m/image_30945868_82_620x757_4.jpg','image',0),(430,90,'/i/m/image_30945868_82_620x757_3.jpg','image',0),(431,90,'/i/m/image_31302817_21_970x1182_0-3.jpg','image',0),(432,90,'/i/m/image_31302817_21_970x1182_1-2.jpg','image',0),(433,90,'/i/m/image_31302817_21_970x1182_2-3.jpg','image',0),(434,90,'/i/m/image_31302817_21_970x1182_3-2.jpg','image',0),(443,90,'/i/m/image_31091479_21_970x1182_0.jpg','image',0),(444,90,'/i/m/image_31091479_21_970x1182_1.jpg','image',0),(445,90,'/i/m/image_31091479_21_970x1182_2.jpg','image',0),(446,90,'/i/m/image_31091479_21_970x1182_3.jpg','image',0),(451,90,'/i/m/image_31250794_20_970x1182_0.jpg','image',0),(452,90,'/i/m/image_31250794_20_970x1182_1.jpg','image',0),(453,90,'/i/m/image_31250794_20_970x1182_2.jpg','image',0),(454,90,'/i/m/image_31250794_20_970x1182_3.jpg','image',0),(459,90,'/i/m/image_31219211_25_970x1182_0.jpg','image',0),(460,90,'/i/m/image_31219211_25_970x1182_1.jpg','image',0),(461,90,'/i/m/image_31219211_25_970x1182_2.jpg','image',0),(462,90,'/i/m/image_31219211_25_970x1182_3.jpg','image',0),(474,90,'/m/a/main_5_8.jpg','image',0),(475,90,'/i/m/image_31322142_31_620x757_2.jpg','image',0),(476,90,'/i/m/image_31322142_31_620x757_3.jpg','image',0),(477,90,'/i/m/image_31166144_20_970x1182_0.jpg','image',0),(478,90,'/i/m/image_31166144_20_970x1182_1.jpg','image',0),(479,90,'/i/m/image_31166144_20_970x1182_2.jpg','image',0),(480,90,'/i/m/image_31166144_20_970x1182_3.jpg','image',0),(488,90,'/i/m/image_31176055_22_970x1182_0.jpg','image',0),(489,90,'/i/m/image_31176055_22_970x1182_1.jpg','image',0),(490,90,'/i/m/image_31176055_22_970x1182_2.jpg','image',0),(491,90,'/i/m/image_31176055_22_970x1182_3.jpg','image',0),(496,90,'/i/m/image_31207365_20_970x1182_0.jpg','image',0),(497,90,'/i/m/image_31207365_20_970x1182_1.jpg','image',0),(498,90,'/i/m/image_31207365_20_970x1182_2.jpg','image',0),(499,90,'/i/m/image_31207365_20_970x1182_3.jpg','image',0),(500,90,'/i/m/image_31167823_74_970x1182_0.jpg','image',0),(501,90,'/i/m/image_31167823_74_970x1182_1.jpg','image',0),(502,90,'/i/m/image_31167823_74_970x1182_2.jpg','image',0),(503,90,'/i/m/image_31167823_74_970x1182_3.jpg','image',0),(508,90,'/i/m/image_31226241_25_970x1182_0.jpg','image',0),(509,90,'/i/m/image_31226241_25_970x1182_1.jpg','image',0),(510,90,'/i/m/image_31226241_25_970x1182_2.jpg','image',0),(511,90,'/i/m/image_31226241_25_970x1182_3.jpg','image',0),(516,90,'/i/m/image_31231309_25_970x1182_0.jpg','image',0),(517,90,'/i/m/image_31231309_25_970x1182_1.jpg','image',0),(518,90,'/i/m/image_31231309_25_970x1182_2.jpg','image',0),(519,90,'/i/m/image_31231309_25_970x1182_3.jpg','image',0),(524,90,'/i/m/image_31273656_25_970x1182_0.jpg','image',0),(525,90,'/i/m/image_31273656_25_970x1182_1.jpg','image',0),(526,90,'/i/m/image_31273656_25_970x1182_2.jpg','image',0),(527,90,'/i/m/image_31273656_25_970x1182_3.jpg','image',0),(540,90,'/i/m/image_31343872_25_970x1182_0.jpg','image',0),(541,90,'/i/m/image_31343872_25_970x1182_1.jpg','image',0),(542,90,'/i/m/image_31343872_25_970x1182_2.jpg','image',0),(543,90,'/i/m/image_31343872_25_970x1182_3.jpg','image',0),(548,90,'/i/m/image_31145394_21_970x1182_0.jpg','image',0),(549,90,'/i/m/image_31145394_21_970x1182_1.jpg','image',0),(550,90,'/i/m/image_31145394_21_970x1182_2.jpg','image',0),(551,90,'/i/m/image_31145394_21_970x1182_3.jpg','image',0),(556,90,'/i/m/image_31218012_21_970x1182_0.jpg','image',0),(557,90,'/i/m/image_31218012_21_970x1182_1.jpg','image',0),(558,90,'/i/m/image_31218012_21_970x1182_2.jpg','image',0),(559,90,'/i/m/image_31218012_21_970x1182_3.jpg','image',0),(564,90,'/i/m/image_31028523_81_970x1182_0_1.jpg','image',0),(565,90,'/i/m/image_31028523_81_970x1182_1.jpg','image',0),(566,90,'/i/m/image_31028523_81_970x1182_3.jpg','image',0),(567,90,'/i/m/image_31028523_81_970x1182_2.jpg','image',0),(576,90,'/i/m/image_31104994_83_970x1182_3.jpg','image',0),(577,90,'/i/m/image_31104994_83_970x1182_2.jpg','image',0),(578,90,'/i/m/image_31104994_83_970x1182_1.jpg','image',0),(579,90,'/i/m/image_31104994_83_970x1182_0.jpg','image',0),(580,90,'/m/a/main_6.jpg','image',0),(581,90,'/i/m/image_31162615_74_620x757_1.jpg','image',0),(582,90,'/i/m/image_31162615_74_620x757_2.jpg','image',0),(583,90,'/i/m/image_31262293_21_970x1182_3.jpg','image',0),(584,90,'/i/m/image_31262293_21_970x1182_2.jpg','image',0),(585,90,'/i/m/image_31262293_21_970x1182_1.jpg','image',0),(586,90,'/i/m/image_31262293_21_970x1182_0.jpg','image',0),(595,90,'/i/m/image_31268637_45_970x1182_0.jpg','image',0),(596,90,'/i/m/image_31268637_45_970x1182_1.jpg','image',0),(597,90,'/i/m/image_31268637_45_970x1182_2.jpg','image',0),(598,90,'/i/m/image_31268637_45_970x1182_3.jpg','image',0),(603,90,'/m/a/main_7.jpg','image',0),(604,90,'/i/m/image_31191497_21_620x757_1.jpg','image',0),(605,90,'/i/m/image_31191497_21_620x757_2.jpg','image',0),(606,90,'/i/m/image_31280337_45_970x1182_0.jpg','image',0),(607,90,'/i/m/image_31280337_45_970x1182_1.jpg','image',0),(608,90,'/i/m/image_31280337_45_970x1182_2.jpg','image',0),(609,90,'/i/m/image_31280337_45_970x1182_3.jpg','image',0),(614,90,'/m/a/main_8.jpg','image',0),(615,90,'/i/m/image_31146614_33_620x757_1.jpg','image',0),(616,90,'/i/m/image_31146614_33_620x757_2.jpg','image',0),(617,90,'/i/m/image_31292070_22_970x1182_0.jpg','image',0),(618,90,'/i/m/image_31292070_22_970x1182_1.jpg','image',0),(619,90,'/i/m/image_31292070_22_970x1182_2.jpg','image',0),(620,90,'/i/m/image_31292070_22_970x1182_3.jpg','image',0),(625,90,'/i/m/image_31167816_22_970x1182_0.jpg','image',0),(626,90,'/i/m/image_31167816_22_970x1182_1.jpg','image',0),(627,90,'/i/m/image_31167816_22_970x1182_2.jpg','image',0),(628,90,'/i/m/image_31167816_22_970x1182_3.jpg','image',0),(629,90,'/m/a/main_9.jpg','image',0),(630,90,'/i/m/image_31034537_81_620x757_1.jpg','image',0),(631,90,'/i/m/image_31034537_81_620x757_2.jpg','image',0),(632,90,'/i/m/image_31350778_10_620x757_0.jpg','image',0),(633,90,'/i/m/image_31350778_10_620x757_1.jpg','image',0),(634,90,'/i/m/image_31350778_10_620x757_3.jpg','image',0),(638,90,'/i/m/image_31350783_66_620x757_0_1.jpg','image',0),(639,90,'/i/m/image_31350783_66_620x757_1_1.jpg','image',0),(640,90,'/i/m/image_31350783_66_620x757_3_1.jpg','image',0),(641,90,'/m/a/main_10.jpg','image',0),(642,90,'/i/m/image_31062218_34_620x757_1.jpg','image',0),(643,90,'/i/m/image_31062218_34_620x757_2.jpg','image',0),(647,90,'/i/m/image_31292042_34_620x757_0.jpg','image',0),(648,90,'/i/m/image_31292042_34_620x757_3.jpg','image',0),(649,90,'/i/m/image_31292042_34_620x757_1.jpg','image',0),(653,90,'/i/m/image_31305260_80_620x757_0.jpg','image',0),(654,90,'/i/m/image_31305260_80_620x757_1.jpg','image',0),(655,90,'/m/a/main_10_1.jpg','image',0),(656,90,'/i/m/image_31223382_72_620x757_4.jpg','image',0),(657,90,'/i/m/image_31223382_72_620x757_1.jpg','image',0),(658,90,'/i/m/image_31223382_72_620x757_2.jpg','image',0),(659,90,'/i/m/image_31223382_72_620x757_3.jpg','image',0),(660,90,'/i/m/image_31223382_72_620x757_5.jpg','image',0),(661,90,'/m/a/main_11.jpg','image',0),(662,90,'/i/m/image_31304473_72_620x757_2.jpg','image',0),(663,90,'/i/m/image_31304473_72_620x757_3.jpg','image',0),(664,90,'/i/m/image_31304473_72_620x757_1.jpg','image',0),(665,90,'/i/m/image_31304473_72_620x757_4.jpg','image',0),(666,90,'/m/a/main_12.jpg','image',0),(667,90,'/i/m/image_31327540_81_620x757_5.jpg','image',0),(668,90,'/i/m/image_31327540_81_620x757_2.jpg','image',0),(669,90,'/i/m/image_31327540_81_620x757_1.jpg','image',0),(670,90,'/i/m/image_31327540_81_620x757_4.jpg','image',0),(671,90,'/i/m/image_31327540_81_620x757_3.jpg','image',0),(672,90,'/i/m/image_31327540_81_620x757_6.jpg','image',0),(673,90,'/m/a/main_15.jpg','image',0),(674,90,'/i/m/image_31175794_72_620x757_1_2.jpg','image',0),(675,90,'/i/m/image_31175794_72_620x757_3_2.jpg','image',0),(676,90,'/i/m/image_31175794_72_620x757_2_2.jpg','image',0),(677,90,'/i/m/image_31175794_72_620x757_5_2.jpg','image',0),(678,90,'/i/m/image_31175794_72_620x757_7_2.jpg','image',0),(679,90,'/m/a/main_15_2.jpg','image',0),(680,90,'/i/m/image_31005341_33_620x757_4_1.jpg','image',0),(681,90,'/i/m/image_31005341_33_620x757_2_1.jpg','image',0),(682,90,'/i/m/image_31005341_33_620x757_1_1.jpg','image',0),(683,90,'/i/m/image_31005341_33_620x757_3_1.jpg','image',0),(684,90,'/i/m/image_31005341_33_620x757_5_1.jpg','image',0),(685,90,'/h/m/hmgoepprod_1.jpeg','image',0),(686,90,'/1/2/1223332323.jpg','image',0),(687,90,'/3/3/3332222.jpg','image',0),(688,90,'/1/2/1212232323.jpg','image',0),(689,90,'/2/1/2121121212.jpg','image',0),(690,90,'/1/2/1223332323_1.jpg','image',0),(691,90,'/3/3/3332222_1.jpg','image',0),(692,90,'/1/2/1212232323_1.jpg','image',0),(693,90,'/2/1/2121121212_1.jpg','image',0),(694,90,'/1/2/1223332323_2.jpg','image',0),(695,90,'/3/3/3332222_2.jpg','image',0),(696,90,'/1/2/1212232323_2.jpg','image',0),(697,90,'/2/1/2121121212_2.jpg','image',0),(698,90,'/1/2/1223332323_3.jpg','image',0),(699,90,'/3/3/3332222_3.jpg','image',0),(700,90,'/1/2/1212232323_3.jpg','image',0),(701,90,'/2/1/2121121212_3.jpg','image',0),(702,90,'/1/2/1223332323_4.jpg','image',0),(703,90,'/3/3/3332222_4.jpg','image',0),(704,90,'/1/2/1212232323_4.jpg','image',0),(705,90,'/2/1/2121121212_4.jpg','image',0),(706,90,'/1/2/1223332323_5.jpg','image',0),(707,90,'/3/3/3332222_5.jpg','image',0),(708,90,'/1/2/1212232323_5.jpg','image',0),(709,90,'/2/1/2121121212_5.jpg','image',0),(710,90,'/2/3/23232323.jpg','image',0),(711,90,'/2/3/234242423.jpg','image',0),(712,90,'/2/3/234222343.jpg','image',0),(713,90,'/1/2/12121212.jpg','image',0),(714,90,'/2/3/23232323_1.jpg','image',0),(715,90,'/2/3/234242423_1.jpg','image',0),(716,90,'/2/3/234222343_1.jpg','image',0),(717,90,'/1/2/12121212_1.jpg','image',0),(718,90,'/2/3/23232323_2.jpg','image',0),(719,90,'/2/3/234242423_2.jpg','image',0),(720,90,'/2/3/234222343_2.jpg','image',0),(721,90,'/1/2/12121212_2.jpg','image',0),(722,90,'/2/3/23232323_3.jpg','image',0),(723,90,'/2/3/234242423_3.jpg','image',0),(724,90,'/2/3/234222343_3.jpg','image',0),(725,90,'/1/2/12121212_3.jpg','image',0),(726,90,'/2/3/23232323_4.jpg','image',0),(727,90,'/2/3/234242423_4.jpg','image',0),(728,90,'/2/3/234222343_4.jpg','image',0),(729,90,'/1/2/12121212_4.jpg','image',0),(730,90,'/2/3/23232323_5.jpg','image',0),(731,90,'/2/3/234242423_5.jpg','image',0),(732,90,'/2/3/234222343_5.jpg','image',0),(733,90,'/1/2/12121212_5.jpg','image',0),(734,90,'/p/h/photo_4.jpg','image',0),(735,90,'/i/m/image_30807043_21_620x757_4_copy.jpg','image',0),(736,90,'/3/4/3434.jpg','image',0),(737,90,'/i/m/image_30807043_21_620x757_1_copy.jpg','image',0),(738,90,'/p/h/photo_4_1.jpg','image',0),(739,90,'/i/m/image_30807043_21_620x757_4_copy_1.jpg','image',0),(740,90,'/3/4/3434_1.jpg','image',0),(741,90,'/i/m/image_30807043_21_620x757_1_copy_1.jpg','image',0),(742,90,'/p/h/photo_4_2.jpg','image',0),(743,90,'/i/m/image_30807043_21_620x757_4_copy_2.jpg','image',0),(744,90,'/3/4/3434_2.jpg','image',0),(745,90,'/i/m/image_30807043_21_620x757_1_copy_2.jpg','image',0),(746,90,'/p/h/photo_4_3.jpg','image',0),(747,90,'/i/m/image_30807043_21_620x757_4_copy_3.jpg','image',0),(748,90,'/3/4/3434_3.jpg','image',0),(749,90,'/i/m/image_30807043_21_620x757_1_copy_3.jpg','image',0),(750,90,'/p/h/photo_4_4.jpg','image',0),(751,90,'/i/m/image_30807043_21_620x757_4_copy_4.jpg','image',0),(752,90,'/3/4/3434_4.jpg','image',0),(753,90,'/i/m/image_30807043_21_620x757_1_copy_4.jpg','image',0),(754,90,'/p/h/photo_4_5.jpg','image',0),(755,90,'/i/m/image_30807043_21_620x757_4_copy_5.jpg','image',0),(756,90,'/3/4/3434_5.jpg','image',0),(757,90,'/i/m/image_30807043_21_620x757_1_copy_5.jpg','image',0),(758,90,'/3/4/34322323.jpg','image',0),(759,90,'/3/1/31232323.jpg','image',0),(760,90,'/1/2/1232311.jpg','image',0),(761,90,'/1/2/12232323.jpg','image',0),(762,90,'/3/4/34322323_1.jpg','image',0),(763,90,'/3/1/31232323_1.jpg','image',0),(764,90,'/1/2/1232311_1.jpg','image',0),(765,90,'/1/2/12232323_1.jpg','image',0),(766,90,'/3/4/34322323_2.jpg','image',0),(767,90,'/3/1/31232323_2.jpg','image',0),(768,90,'/1/2/1232311_2.jpg','image',0),(769,90,'/1/2/12232323_2.jpg','image',0),(770,90,'/3/4/34322323_3.jpg','image',0),(771,90,'/3/1/31232323_3.jpg','image',0),(772,90,'/1/2/1232311_3.jpg','image',0),(773,90,'/1/2/12232323_3.jpg','image',0),(774,90,'/3/4/34322323_4.jpg','image',0),(775,90,'/3/1/31232323_4.jpg','image',0),(776,90,'/1/2/1232311_4.jpg','image',0),(777,90,'/1/2/12232323_4.jpg','image',0),(778,90,'/3/4/34322323_5.jpg','image',0),(779,90,'/3/1/31232323_5.jpg','image',0),(780,90,'/1/2/1232311_5.jpg','image',0),(781,90,'/1/2/12232323_5.jpg','image',0),(782,90,'/i/m/image_30807043_21_620x757_0_copy.jpg','image',0),(783,90,'/2/3/232133.jpg','image',0),(784,90,'/i/m/image_30807043_21_620x757_3_copy.jpg','image',0),(785,90,'/5/6/566544.jpg','image',0),(786,90,'/i/m/image_30807043_21_620x757_0_copy_1.jpg','image',0),(787,90,'/2/3/232133_1.jpg','image',0),(788,90,'/i/m/image_30807043_21_620x757_3_copy_1.jpg','image',0),(789,90,'/5/6/566544_1.jpg','image',0),(790,90,'/i/m/image_30807043_21_620x757_0_copy_2.jpg','image',0),(791,90,'/2/3/232133_2.jpg','image',0),(792,90,'/i/m/image_30807043_21_620x757_3_copy_2.jpg','image',0),(793,90,'/5/6/566544_2.jpg','image',0),(794,90,'/i/m/image_30807043_21_620x757_0_copy_3.jpg','image',0),(795,90,'/2/3/232133_3.jpg','image',0),(796,90,'/i/m/image_30807043_21_620x757_3_copy_3.jpg','image',0),(797,90,'/5/6/566544_3.jpg','image',0),(798,90,'/i/m/image_30807043_21_620x757_0_copy_4.jpg','image',0),(799,90,'/2/3/232133_4.jpg','image',0),(800,90,'/i/m/image_30807043_21_620x757_3_copy_4.jpg','image',0),(801,90,'/5/6/566544_4.jpg','image',0),(802,90,'/i/m/image_30807043_21_620x757_0_copy_5.jpg','image',0),(803,90,'/2/3/232133_5.jpg','image',0),(804,90,'/i/m/image_30807043_21_620x757_3_copy_5.jpg','image',0),(805,90,'/5/6/566544_5.jpg','image',0),(806,90,'/i/m/image_30807043_21_620x757_0.jpg','image',0),(807,90,'/i/m/image_30807043_21_620x757_4.jpg','image',0),(808,90,'/i/m/image_30807043_21_620x757_3.jpg','image',0),(809,90,'/i/m/image_30807043_21_620x757_1.jpg','image',0),(810,90,'/5/6/565656.jpg','image',0),(811,90,'/4/5/456456.jpg','image',0),(812,90,'/3/5/3534534534.jpg','image',0),(813,90,'/3/4/34545354534_copy.jpg','image',0),(814,90,'/5/6/565656_1.jpg','image',0),(815,90,'/4/5/456456_1.jpg','image',0),(816,90,'/3/5/3534534534_1.jpg','image',0),(817,90,'/3/4/34545354534_copy_1.jpg','image',0),(818,90,'/5/6/565656_2.jpg','image',0),(819,90,'/4/5/456456_2.jpg','image',0),(820,90,'/3/5/3534534534_2.jpg','image',0),(821,90,'/3/4/34545354534_copy_2.jpg','image',0),(822,90,'/5/6/565656_3.jpg','image',0),(823,90,'/4/5/456456_3.jpg','image',0),(824,90,'/3/5/3534534534_3.jpg','image',0),(825,90,'/3/4/34545354534_copy_3.jpg','image',0),(826,90,'/5/6/565656_4.jpg','image',0),(827,90,'/4/5/456456_4.jpg','image',0),(828,90,'/3/5/3534534534_4.jpg','image',0),(829,90,'/3/4/34545354534_copy_4.jpg','image',0),(830,90,'/5/6/565656_5.jpg','image',0),(831,90,'/4/5/456456_5.jpg','image',0),(832,90,'/3/5/3534534534_5.jpg','image',0),(833,90,'/3/4/34545354534_copy_5.jpg','image',0),(834,90,'/5/6/565656_6.jpg','image',0),(835,90,'/4/5/456456_6.jpg','image',0),(836,90,'/3/5/3534534534_6.jpg','image',0),(837,90,'/3/4/34545354534_copy_6.jpg','image',0),(838,90,'/i/m/image_31332981_20_970x1182_1.jpg','image',0),(839,90,'/i/m/image_31332981_20_970x1182_2.jpg','image',0),(840,90,'/i/m/image_31332981_20_970x1182_3.jpg','image',0),(841,90,'/i/m/image_31332981_20_970x1182_4.jpg','image',0),(842,90,'/i/m/image_31332981_20_970x1182_1_1.jpg','image',0),(843,90,'/i/m/image_31332981_20_970x1182_2_1.jpg','image',0),(844,90,'/i/m/image_31332981_20_970x1182_3_1.jpg','image',0),(845,90,'/i/m/image_31332981_20_970x1182_4_1.jpg','image',0),(846,90,'/i/m/image_31332981_20_970x1182_1_2.jpg','image',0),(847,90,'/i/m/image_31332981_20_970x1182_2_2.jpg','image',0),(848,90,'/i/m/image_31332981_20_970x1182_3_2.jpg','image',0),(849,90,'/i/m/image_31332981_20_970x1182_4_2.jpg','image',0),(850,90,'/i/m/image_31332981_20_970x1182_1_3.jpg','image',0),(851,90,'/i/m/image_31332981_20_970x1182_2_3.jpg','image',0),(852,90,'/i/m/image_31332981_20_970x1182_3_3.jpg','image',0),(853,90,'/i/m/image_31332981_20_970x1182_4_3.jpg','image',0),(854,90,'/i/m/image_31332981_20_970x1182_1_4.jpg','image',0),(855,90,'/i/m/image_31332981_20_970x1182_2_4.jpg','image',0),(856,90,'/i/m/image_31332981_20_970x1182_3_4.jpg','image',0),(857,90,'/i/m/image_31332981_20_970x1182_4_4.jpg','image',0),(858,90,'/i/m/image_31332981_20_970x1182_1_5.jpg','image',0),(859,90,'/i/m/image_31332981_20_970x1182_2_5.jpg','image',0),(860,90,'/i/m/image_31332981_20_970x1182_3_5.jpg','image',0),(861,90,'/i/m/image_31332981_20_970x1182_4_5.jpg','image',0),(862,90,'/i/m/image_31332981_20_970x1182_1_6.jpg','image',0),(863,90,'/i/m/image_31332981_20_970x1182_2_6.jpg','image',0),(864,90,'/i/m/image_31332981_20_970x1182_3_6.jpg','image',0),(865,90,'/i/m/image_31332981_20_970x1182_4_6.jpg','image',0),(866,90,'/5/4/5443344.jpg','image',0),(867,90,'/2/3/2332323.jpg','image',0),(868,90,'/4/5/454545455.jpg','image',0),(869,90,'/5/4/543343434.jpg','image',0),(870,90,'/5/4/5443344_1.jpg','image',0),(871,90,'/2/3/2332323_1.jpg','image',0),(872,90,'/4/5/454545455_1.jpg','image',0),(873,90,'/5/4/543343434_1.jpg','image',0),(874,90,'/5/4/5443344_2.jpg','image',0),(875,90,'/2/3/2332323_2.jpg','image',0),(876,90,'/4/5/454545455_2.jpg','image',0),(877,90,'/5/4/543343434_2.jpg','image',0),(878,90,'/5/4/5443344_3.jpg','image',0),(879,90,'/2/3/2332323_3.jpg','image',0),(880,90,'/4/5/454545455_3.jpg','image',0),(881,90,'/5/4/543343434_3.jpg','image',0),(882,90,'/5/4/5443344_4.jpg','image',0),(883,90,'/2/3/2332323_4.jpg','image',0),(884,90,'/4/5/454545455_4.jpg','image',0),(885,90,'/5/4/543343434_4.jpg','image',0),(886,90,'/5/4/5443344_5.jpg','image',0),(887,90,'/2/3/2332323_5.jpg','image',0),(888,90,'/4/5/454545455_5.jpg','image',0),(889,90,'/5/4/543343434_5.jpg','image',0),(890,90,'/5/4/5443344_6.jpg','image',0),(891,90,'/2/3/2332323_6.jpg','image',0),(892,90,'/4/5/454545455_6.jpg','image',0),(893,90,'/5/4/543343434_6.jpg','image',0),(894,90,'/3/4/34223223.jpg','image',0),(895,90,'/5/4/544334.jpg','image',0),(896,90,'/3/5/354223.jpg','image',0),(897,90,'/2/3/23232.jpg','image',0),(898,90,'/3/4/34223223_1.jpg','image',0),(899,90,'/5/4/544334_1.jpg','image',0),(900,90,'/3/5/354223_1.jpg','image',0),(901,90,'/2/3/23232_1.jpg','image',0),(902,90,'/3/4/34223223_2.jpg','image',0),(903,90,'/5/4/544334_2.jpg','image',0),(904,90,'/3/5/354223_2.jpg','image',0),(905,90,'/2/3/23232_2.jpg','image',0),(906,90,'/3/4/34223223_3.jpg','image',0),(907,90,'/5/4/544334_3.jpg','image',0),(908,90,'/3/5/354223_3.jpg','image',0),(909,90,'/2/3/23232_3.jpg','image',0),(910,90,'/3/4/34223223_4.jpg','image',0),(911,90,'/5/4/544334_4.jpg','image',0),(912,90,'/3/5/354223_4.jpg','image',0),(913,90,'/2/3/23232_4.jpg','image',0),(914,90,'/3/4/34223223_5.jpg','image',0),(915,90,'/5/4/544334_5.jpg','image',0),(916,90,'/3/5/354223_5.jpg','image',0),(917,90,'/2/3/23232_5.jpg','image',0),(918,90,'/3/4/34223223_6.jpg','image',0),(919,90,'/5/4/544334_6.jpg','image',0),(920,90,'/3/5/354223_6.jpg','image',0),(921,90,'/2/3/23232_6.jpg','image',0),(922,90,'/2/2/2234234222.jpg','image',0),(923,90,'/2/1/21121222.jpg','image',0),(924,90,'/1/2/1211122.jpg','image',0),(925,90,'/4/5/4554344.jpg','image',0),(926,90,'/2/2/2234234222_1.jpg','image',0),(927,90,'/2/1/21121222_1.jpg','image',0),(928,90,'/1/2/1211122_1.jpg','image',0),(929,90,'/4/5/4554344_1.jpg','image',0),(930,90,'/2/2/2234234222_2.jpg','image',0),(931,90,'/2/1/21121222_2.jpg','image',0),(932,90,'/1/2/1211122_2.jpg','image',0),(933,90,'/4/5/4554344_2.jpg','image',0),(934,90,'/2/2/2234234222_3.jpg','image',0),(935,90,'/2/1/21121222_3.jpg','image',0),(936,90,'/1/2/1211122_3.jpg','image',0),(937,90,'/4/5/4554344_3.jpg','image',0),(938,90,'/2/2/2234234222_4.jpg','image',0),(939,90,'/2/1/21121222_4.jpg','image',0),(940,90,'/1/2/1211122_4.jpg','image',0),(941,90,'/4/5/4554344_4.jpg','image',0),(942,90,'/2/2/2234234222_5.jpg','image',0),(943,90,'/2/1/21121222_5.jpg','image',0),(944,90,'/1/2/1211122_5.jpg','image',0),(945,90,'/4/5/4554344_5.jpg','image',0),(946,90,'/2/2/2234234222_6.jpg','image',0),(947,90,'/2/1/21121222_6.jpg','image',0),(948,90,'/1/2/1211122_6.jpg','image',0),(949,90,'/4/5/4554344_6.jpg','image',0),(950,90,'/5/4/544555454.jpg','image',0),(951,90,'/4/5/45443.jpg','image',0),(952,90,'/2/3/23232332223_copy.jpg','image',0),(953,90,'/3/2/322.jpg','image',0),(954,90,'/3/4/34534223322.jpg','image',0),(955,90,'/2/2/2234324443.jpg','image',0),(956,90,'/2/3/2343434.jpg','image',0),(957,90,'/4/5/456456546.jpg','image',0),(958,90,'/2/3/232122323.jpg','image',0),(959,90,'/3/3/3334.jpg','image',0),(960,90,'/3/5/356564545.jpg','image',0),(961,90,'/3/4/34542345.jpg','image',0),(962,90,'/2/3/234234324.jpg','image',0),(963,90,'/3/2/32343434.jpg','image',0),(964,90,'/2/2/223232434.jpg','image',0),(965,90,'/2/3/232313444.jpg','image',0),(966,90,'/3/4/34222345543.jpg','image',0),(967,90,'/4/4/444444.jpg','image',0),(968,90,'/4/5/4546356546456.jpg','image',0),(969,90,'/3/4/34534223322_1.jpg','image',0),(970,90,'/2/2/2234324443_1.jpg','image',0),(971,90,'/2/3/2343434_1.jpg','image',0),(972,90,'/4/5/456456546_1.jpg','image',0),(973,90,'/2/3/232122323_1.jpg','image',0),(974,90,'/3/3/3334_1.jpg','image',0),(975,90,'/3/5/356564545_1.jpg','image',0),(976,90,'/3/4/34542345_1.jpg','image',0),(977,90,'/2/3/234234324_1.jpg','image',0),(978,90,'/3/2/32343434_1.jpg','image',0),(979,90,'/2/2/223232434_1.jpg','image',0),(980,90,'/2/3/232313444_1.jpg','image',0),(981,90,'/3/4/34222345543_1.jpg','image',0),(982,90,'/4/4/444444_1.jpg','image',0),(983,90,'/4/5/4546356546456_1.jpg','image',0),(984,90,'/3/4/34534223322_2.jpg','image',0),(985,90,'/2/2/2234324443_2.jpg','image',0),(986,90,'/2/3/2343434_2.jpg','image',0),(987,90,'/4/5/456456546_2.jpg','image',0),(988,90,'/2/3/232122323_2.jpg','image',0),(989,90,'/3/3/3334_2.jpg','image',0),(990,90,'/3/5/356564545_2.jpg','image',0),(991,90,'/3/4/34542345_2.jpg','image',0),(992,90,'/2/3/234234324_2.jpg','image',0),(993,90,'/3/2/32343434_2.jpg','image',0),(994,90,'/2/2/223232434_2.jpg','image',0),(995,90,'/2/3/232313444_2.jpg','image',0),(996,90,'/3/4/34222345543_2.jpg','image',0),(997,90,'/4/4/444444_2.jpg','image',0),(998,90,'/4/5/4546356546456_2.jpg','image',0),(999,90,'/3/4/34534223322_3.jpg','image',0),(1000,90,'/2/2/2234324443_3.jpg','image',0),(1001,90,'/2/3/2343434_3.jpg','image',0),(1002,90,'/4/5/456456546_3.jpg','image',0),(1003,90,'/2/3/232122323_3.jpg','image',0),(1004,90,'/3/3/3334_3.jpg','image',0),(1005,90,'/3/5/356564545_3.jpg','image',0),(1006,90,'/3/4/34542345_3.jpg','image',0),(1007,90,'/2/3/234234324_3.jpg','image',0),(1008,90,'/3/2/32343434_3.jpg','image',0),(1009,90,'/2/2/223232434_3.jpg','image',0),(1010,90,'/2/3/232313444_3.jpg','image',0),(1011,90,'/3/4/34222345543_3.jpg','image',0),(1012,90,'/4/4/444444_3.jpg','image',0),(1013,90,'/4/5/4546356546456_3.jpg','image',0),(1014,90,'/3/4/34534223322_4.jpg','image',0),(1015,90,'/2/2/2234324443_4.jpg','image',0),(1016,90,'/2/3/2343434_4.jpg','image',0),(1017,90,'/4/5/456456546_4.jpg','image',0),(1018,90,'/2/3/232122323_4.jpg','image',0),(1019,90,'/3/3/3334_4.jpg','image',0),(1020,90,'/3/5/356564545_4.jpg','image',0),(1021,90,'/3/4/34542345_4.jpg','image',0),(1022,90,'/2/3/234234324_4.jpg','image',0),(1023,90,'/3/2/32343434_4.jpg','image',0),(1024,90,'/2/2/223232434_4.jpg','image',0),(1025,90,'/2/3/232313444_4.jpg','image',0),(1026,90,'/3/4/34222345543_4.jpg','image',0),(1027,90,'/4/4/444444_4.jpg','image',0),(1028,90,'/4/5/4546356546456_4.jpg','image',0),(1029,90,'/3/4/34534223322_5.jpg','image',0),(1030,90,'/2/2/2234324443_5.jpg','image',0),(1031,90,'/2/3/2343434_5.jpg','image',0),(1032,90,'/4/5/456456546_5.jpg','image',0),(1033,90,'/2/3/232122323_5.jpg','image',0),(1034,90,'/3/3/3334_5.jpg','image',0),(1035,90,'/3/5/356564545_5.jpg','image',0),(1036,90,'/3/4/34542345_5.jpg','image',0),(1037,90,'/2/3/234234324_5.jpg','image',0),(1038,90,'/3/2/32343434_5.jpg','image',0),(1039,90,'/2/2/223232434_5.jpg','image',0),(1040,90,'/2/3/232313444_5.jpg','image',0),(1041,90,'/3/4/34222345543_5.jpg','image',0),(1042,90,'/4/4/444444_5.jpg','image',0),(1043,90,'/4/5/4546356546456_5.jpg','image',0),(1044,90,'/i/m/image_30986434_97_620x757_0.jpg','image',0),(1045,90,'/i/m/image_30986434_97_620x757_1.jpg','image',0),(1046,90,'/i/m/image_30986434_97_620x757_2.jpg','image',0),(1047,90,'/3/4/345345454.jpg','image',0),(1048,90,'/3/4/3453434345345.jpg','image',0),(1049,90,'/2/3/232323232_1.jpg','image',0),(1050,90,'/2/5/25656565656.jpg','image',0),(1051,90,'/3/4/345345454_1.jpg','image',0),(1052,90,'/3/4/3453434345345_1.jpg','image',0),(1053,90,'/2/3/232323232_1_1.jpg','image',0),(1054,90,'/2/5/25656565656_1.jpg','image',0),(1055,90,'/3/4/345345454_2.jpg','image',0),(1056,90,'/3/4/3453434345345_2.jpg','image',0),(1057,90,'/2/3/232323232_1_2.jpg','image',0),(1058,90,'/2/5/25656565656_2.jpg','image',0),(1059,90,'/3/4/345345454_3.jpg','image',0),(1060,90,'/3/4/3453434345345_3.jpg','image',0),(1061,90,'/2/3/232323232_1_3.jpg','image',0),(1062,90,'/2/5/25656565656_3.jpg','image',0),(1063,90,'/3/4/345345454_4.jpg','image',0),(1064,90,'/3/4/3453434345345_4.jpg','image',0),(1065,90,'/2/3/232323232_1_4.jpg','image',0),(1066,90,'/2/5/25656565656_4.jpg','image',0),(1067,90,'/3/4/345345454_5.jpg','image',0),(1068,90,'/3/4/3453434345345_5.jpg','image',0),(1069,90,'/2/3/232323232_1_5.jpg','image',0),(1070,90,'/2/5/25656565656_5.jpg','image',0),(1071,90,'/4/5/45245345345.jpg','image',0),(1072,90,'/2/3/234234234.jpg','image',0),(1073,90,'/w/4/w45345345.jpg','image',0),(1074,90,'/3/4/345345435454.jpg','image',0),(1075,90,'/4/5/45245345345_1.jpg','image',0),(1076,90,'/2/3/234234234_1.jpg','image',0),(1077,90,'/w/4/w45345345_1.jpg','image',0),(1078,90,'/3/4/345345435454_1.jpg','image',0),(1079,90,'/4/5/45245345345_2.jpg','image',0),(1080,90,'/2/3/234234234_2.jpg','image',0),(1081,90,'/w/4/w45345345_2.jpg','image',0),(1082,90,'/3/4/345345435454_2.jpg','image',0),(1083,90,'/4/5/45245345345_3.jpg','image',0),(1084,90,'/2/3/234234234_3.jpg','image',0),(1085,90,'/w/4/w45345345_3.jpg','image',0),(1086,90,'/3/4/345345435454_3.jpg','image',0),(1087,90,'/4/5/45245345345_4.jpg','image',0),(1088,90,'/2/3/234234234_4.jpg','image',0),(1089,90,'/w/4/w45345345_4.jpg','image',0),(1090,90,'/3/4/345345435454_4.jpg','image',0),(1091,90,'/4/5/45245345345_5.jpg','image',0),(1092,90,'/2/3/234234234_5.jpg','image',0),(1093,90,'/w/4/w45345345_5.jpg','image',0),(1094,90,'/3/4/345345435454_5.jpg','image',0),(1095,90,'/2/3/2342232323.jpg','image',0),(1096,90,'/4/4/44545345.jpg','image',0),(1097,90,'/2/3/23232312121.jpg','image',0),(1098,90,'/3/2/3234234234.jpg','image',0),(1099,90,'/2/3/2342232323_1.jpg','image',0),(1100,90,'/4/4/44545345_1.jpg','image',0),(1101,90,'/2/3/23232312121_1.jpg','image',0),(1102,90,'/3/2/3234234234_1.jpg','image',0),(1103,90,'/2/3/2342232323_2.jpg','image',0),(1104,90,'/4/4/44545345_2.jpg','image',0),(1105,90,'/2/3/23232312121_2.jpg','image',0),(1106,90,'/3/2/3234234234_2.jpg','image',0),(1107,90,'/2/3/2342232323_3.jpg','image',0),(1108,90,'/4/4/44545345_3.jpg','image',0),(1109,90,'/2/3/23232312121_3.jpg','image',0),(1110,90,'/3/2/3234234234_3.jpg','image',0),(1111,90,'/2/3/2342232323_4.jpg','image',0),(1112,90,'/4/4/44545345_4.jpg','image',0),(1113,90,'/2/3/23232312121_4.jpg','image',0),(1114,90,'/3/2/3234234234_4.jpg','image',0),(1115,90,'/2/3/2342232323_5.jpg','image',0),(1116,90,'/4/4/44545345_5.jpg','image',0),(1117,90,'/2/3/23232312121_5.jpg','image',0),(1118,90,'/3/2/3234234234_5.jpg','image',0),(1119,90,'/3/4/345345345.jpg','image',0),(1120,90,'/4/5/45345345.jpg','image',0),(1121,90,'/4/7/47665445.jpg','image',0),(1122,90,'/6/5/6564545454.jpg','image',0),(1123,90,'/3/4/345345345_1.jpg','image',0),(1124,90,'/4/5/45345345_1.jpg','image',0),(1125,90,'/4/7/47665445_1.jpg','image',0),(1126,90,'/6/5/6564545454_1.jpg','image',0),(1127,90,'/3/4/345345345_2.jpg','image',0),(1128,90,'/4/5/45345345_2.jpg','image',0),(1129,90,'/4/7/47665445_2.jpg','image',0),(1130,90,'/6/5/6564545454_2.jpg','image',0),(1131,90,'/3/4/345345345_3.jpg','image',0),(1132,90,'/4/5/45345345_3.jpg','image',0),(1133,90,'/4/7/47665445_3.jpg','image',0),(1134,90,'/6/5/6564545454_3.jpg','image',0),(1135,90,'/3/4/345345345_4.jpg','image',0),(1136,90,'/4/5/45345345_4.jpg','image',0),(1137,90,'/4/7/47665445_4.jpg','image',0),(1138,90,'/6/5/6564545454_4.jpg','image',0),(1139,90,'/3/4/345345345_5.jpg','image',0),(1140,90,'/4/5/45345345_5.jpg','image',0),(1141,90,'/4/7/47665445_5.jpg','image',0),(1142,90,'/6/5/6564545454_5.jpg','image',0),(1143,90,'/3/4/34343434.jpg','image',0),(1144,90,'/1/2/12221121.jpg','image',0),(1145,90,'/4/2/4234234234.jpg','image',0),(1146,90,'/3/4/3423423423423.jpg','image',0),(1147,90,'/3/4/34343434_1.jpg','image',0),(1148,90,'/1/2/12221121_1.jpg','image',0),(1149,90,'/4/2/4234234234_1.jpg','image',0),(1150,90,'/3/4/3423423423423_1.jpg','image',0),(1151,90,'/3/4/34343434_2.jpg','image',0),(1152,90,'/1/2/12221121_2.jpg','image',0),(1153,90,'/4/2/4234234234_2.jpg','image',0),(1154,90,'/3/4/3423423423423_2.jpg','image',0),(1155,90,'/3/4/34343434_3.jpg','image',0),(1156,90,'/1/2/12221121_3.jpg','image',0),(1157,90,'/4/2/4234234234_3.jpg','image',0),(1158,90,'/3/4/3423423423423_3.jpg','image',0),(1159,90,'/3/4/34343434_4.jpg','image',0),(1160,90,'/1/2/12221121_4.jpg','image',0),(1161,90,'/4/2/4234234234_4.jpg','image',0),(1162,90,'/3/4/3423423423423_4.jpg','image',0),(1163,90,'/3/4/34343434_5.jpg','image',0),(1164,90,'/1/2/12221121_5.jpg','image',0),(1165,90,'/4/2/4234234234_5.jpg','image',0),(1166,90,'/3/4/3423423423423_5.jpg','image',0),(1167,90,'/i/m/image_31149594_82_620x757_0.jpg','image',0),(1168,90,'/i/m/image_31149594_82_620x757_1.jpg','image',0),(1169,90,'/i/m/image_31149594_82_620x757_2.jpg','image',0),(1170,90,'/i/m/image_31149594_82_620x757_5.jpg','image',0),(1171,90,'/5/6/564545656.jpg','image',0),(1172,90,'/4/5/4543534445.jpg','image',0),(1173,90,'/4/6/46767676.jpg','image',0),(1174,90,'/4/5/45664646_1.jpg','image',0),(1175,90,'/7/8/7889897867.jpg','image',0),(1176,90,'/4/5/4534565656.jpg','image',0),(1177,90,'/6/7/676.jpg','image',0),(1178,90,'/8/8/88898877.jpg','image',0),(1179,90,'/7/8/78877878.jpg','image',0),(1180,90,'/6/7/67776776.jpg','image',0),(1181,90,'/8/7/8787878.jpg','image',0),(1182,90,'/5/4/545476756456.jpg','image',0),(1183,90,'/5/6/5634134245.jpg','image',0),(1184,90,'/4/5/45234524545.jpg','image',0),(1185,90,'/4/2/42657564.jpg','image',0),(1186,90,'/7/4/74563524565.jpg','image',0),(1187,90,'/6/7/6788999.jpg','image',0),(1188,90,'/5/6/566654.jpg','image',0),(1189,90,'/8/9/897.jpg','image',0),(1190,90,'/6/4/645.jpg','image',0),(1191,90,'/5/6/564545656_1.jpg','image',0),(1192,90,'/4/5/4543534445_1.jpg','image',0),(1193,90,'/4/6/46767676_1.jpg','image',0),(1194,90,'/4/5/45664646_1_1.jpg','image',0),(1195,90,'/7/8/7889897867_1.jpg','image',0),(1196,90,'/4/5/4534565656_1.jpg','image',0),(1197,90,'/6/7/676_1.jpg','image',0),(1198,90,'/8/8/88898877_1.jpg','image',0),(1199,90,'/7/8/78877878_1.jpg','image',0),(1200,90,'/6/7/67776776_1.jpg','image',0),(1201,90,'/8/7/8787878_1.jpg','image',0),(1202,90,'/5/4/545476756456_1.jpg','image',0),(1203,90,'/5/6/5634134245_1.jpg','image',0),(1204,90,'/4/5/45234524545_1.jpg','image',0),(1205,90,'/4/2/42657564_1.jpg','image',0),(1206,90,'/7/4/74563524565_1.jpg','image',0),(1207,90,'/6/7/6788999_1.jpg','image',0),(1208,90,'/5/6/566654_1.jpg','image',0),(1209,90,'/8/9/897_1.jpg','image',0),(1210,90,'/6/4/645_1.jpg','image',0),(1211,90,'/5/6/564545656_2.jpg','image',0),(1212,90,'/4/5/4543534445_2.jpg','image',0),(1213,90,'/4/6/46767676_2.jpg','image',0),(1214,90,'/4/5/45664646_1_2.jpg','image',0),(1215,90,'/7/8/7889897867_2.jpg','image',0),(1216,90,'/4/5/4534565656_2.jpg','image',0),(1217,90,'/6/7/676_2.jpg','image',0),(1218,90,'/8/8/88898877_2.jpg','image',0),(1219,90,'/7/8/78877878_2.jpg','image',0),(1220,90,'/6/7/67776776_2.jpg','image',0),(1221,90,'/8/7/8787878_2.jpg','image',0),(1222,90,'/5/4/545476756456_2.jpg','image',0),(1223,90,'/5/6/5634134245_2.jpg','image',0),(1224,90,'/4/5/45234524545_2.jpg','image',0),(1225,90,'/4/2/42657564_2.jpg','image',0),(1226,90,'/7/4/74563524565_2.jpg','image',0),(1227,90,'/6/7/6788999_2.jpg','image',0),(1228,90,'/5/6/566654_2.jpg','image',0),(1229,90,'/8/9/897_2.jpg','image',0),(1230,90,'/6/4/645_2.jpg','image',0),(1231,90,'/5/6/564545656_3.jpg','image',0),(1232,90,'/4/5/4543534445_3.jpg','image',0),(1233,90,'/4/6/46767676_3.jpg','image',0),(1234,90,'/4/5/45664646_1_3.jpg','image',0),(1235,90,'/7/8/7889897867_3.jpg','image',0),(1236,90,'/4/5/4534565656_3.jpg','image',0),(1237,90,'/6/7/676_3.jpg','image',0),(1238,90,'/8/8/88898877_3.jpg','image',0),(1239,90,'/7/8/78877878_3.jpg','image',0),(1240,90,'/6/7/67776776_3.jpg','image',0),(1241,90,'/8/7/8787878_3.jpg','image',0),(1242,90,'/5/4/545476756456_3.jpg','image',0),(1243,90,'/5/6/5634134245_3.jpg','image',0),(1244,90,'/4/5/45234524545_3.jpg','image',0),(1245,90,'/4/2/42657564_3.jpg','image',0),(1246,90,'/7/4/74563524565_3.jpg','image',0),(1247,90,'/6/7/6788999_3.jpg','image',0),(1248,90,'/5/6/566654_3.jpg','image',0),(1249,90,'/8/9/897_3.jpg','image',0),(1250,90,'/6/4/645_3.jpg','image',0),(1251,90,'/5/6/564545656_4.jpg','image',0),(1252,90,'/4/5/4543534445_4.jpg','image',0),(1253,90,'/4/6/46767676_4.jpg','image',0),(1254,90,'/4/5/45664646_1_4.jpg','image',0),(1255,90,'/7/8/7889897867_4.jpg','image',0),(1256,90,'/4/5/4534565656_4.jpg','image',0),(1257,90,'/6/7/676_4.jpg','image',0),(1258,90,'/8/8/88898877_4.jpg','image',0),(1259,90,'/7/8/78877878_4.jpg','image',0),(1260,90,'/6/7/67776776_4.jpg','image',0),(1261,90,'/8/7/8787878_4.jpg','image',0),(1262,90,'/5/4/545476756456_4.jpg','image',0),(1263,90,'/5/6/5634134245_4.jpg','image',0),(1264,90,'/4/5/45234524545_4.jpg','image',0),(1265,90,'/4/2/42657564_4.jpg','image',0),(1266,90,'/7/4/74563524565_4.jpg','image',0),(1267,90,'/6/7/6788999_4.jpg','image',0),(1268,90,'/5/6/566654_4.jpg','image',0),(1269,90,'/8/9/897_4.jpg','image',0),(1270,90,'/6/4/645_4.jpg','image',0),(1271,90,'/i/m/image_31091010_31_620x757_0_1.jpg','image',0),(1272,90,'/i/m/image_31091010_31_620x757_1_1.jpg','image',0),(1273,90,'/i/m/image_31091010_31_620x757_4_1.jpg','image',0),(1274,90,'/i/m/image_31091010_31_620x757_3_1.jpg','image',0),(1275,90,'/3/4/344232434.jpg','image',0),(1276,90,'/5/6/564542323.jpg','image',0),(1277,90,'/3/4/343534546.jpg','image',0),(1278,90,'/5/4/5445334.jpg','image',0),(1279,90,'/4/7/472465656.jpg','image',0),(1280,90,'/8/7/87776987.jpg','image',0),(1281,90,'/5/7/5768356345.jpg','image',0),(1282,90,'/8/9/89766668.jpg','image',0),(1283,90,'/3/4/34r24234342.jpg','image',0),(1284,90,'/5/t/5t.jpg','image',0),(1285,90,'/2/4/243r.jpg','image',0),(1286,90,'/4/e/4e.jpg','image',0),(1287,90,'/i/m/image_31083710_31_620x757_0.jpg','image',0),(1288,90,'/i/m/image_31083710_31_620x757_3.jpg','image',0),(1289,90,'/i/m/image_31083710_31_620x757_1.jpg','image',0),(1290,90,'/i/m/image_31083710_31_620x757_2.jpg','image',0),(1291,90,'/3/5/356666.jpg','image',0),(1292,90,'/6/6/666.jpg','image',0),(1293,90,'/4/5/4532323232323.jpg','image',0),(1294,90,'/2/4/24332323.jpg','image',0),(1295,90,'/3/4/344232434_1.jpg','image',0),(1296,90,'/5/6/564542323_1.jpg','image',0),(1297,90,'/3/4/343534546_1.jpg','image',0),(1298,90,'/5/4/5445334_1.jpg','image',0),(1299,90,'/4/7/472465656_1.jpg','image',0),(1300,90,'/8/7/87776987_1.jpg','image',0),(1301,90,'/5/7/5768356345_1.jpg','image',0),(1302,90,'/8/9/89766668_1.jpg','image',0),(1303,90,'/3/4/34r24234342_1.jpg','image',0),(1304,90,'/5/t/5t_1.jpg','image',0),(1305,90,'/2/4/243r_1.jpg','image',0),(1306,90,'/4/e/4e_1.jpg','image',0),(1307,90,'/i/m/image_31083710_31_620x757_0_1.jpg','image',0),(1308,90,'/i/m/image_31083710_31_620x757_3_1.jpg','image',0),(1309,90,'/i/m/image_31083710_31_620x757_1_1.jpg','image',0),(1310,90,'/i/m/image_31083710_31_620x757_2_2.jpg','image',0),(1311,90,'/3/5/356666_1.jpg','image',0),(1312,90,'/6/6/666_1.jpg','image',0),(1313,90,'/4/5/4532323232323_1.jpg','image',0),(1314,90,'/2/4/24332323_1.jpg','image',0),(1315,90,'/3/4/344232434_2.jpg','image',0),(1316,90,'/5/6/564542323_2.jpg','image',0),(1317,90,'/3/4/343534546_2.jpg','image',0),(1318,90,'/5/4/5445334_2.jpg','image',0),(1319,90,'/4/7/472465656_2.jpg','image',0),(1320,90,'/8/7/87776987_2.jpg','image',0),(1321,90,'/5/7/5768356345_2.jpg','image',0),(1322,90,'/8/9/89766668_2.jpg','image',0),(1323,90,'/3/4/34r24234342_2.jpg','image',0),(1324,90,'/5/t/5t_2.jpg','image',0),(1325,90,'/2/4/243r_2.jpg','image',0),(1326,90,'/4/e/4e_2.jpg','image',0),(1327,90,'/i/m/image_31083710_31_620x757_0_2.jpg','image',0),(1328,90,'/i/m/image_31083710_31_620x757_3_2.jpg','image',0),(1329,90,'/i/m/image_31083710_31_620x757_1_2.jpg','image',0),(1330,90,'/i/m/image_31083710_31_620x757_2_3.jpg','image',0),(1331,90,'/3/5/356666_2.jpg','image',0),(1332,90,'/6/6/666_2.jpg','image',0),(1333,90,'/4/5/4532323232323_2.jpg','image',0),(1334,90,'/2/4/24332323_2.jpg','image',0),(1335,90,'/4/_/4.jpg','image',0),(1336,90,'/8/9/8977.jpg','image',0),(1337,90,'/5/_/5.jpg','image',0),(1338,90,'/i/m/image_31083710_31_620x757_2_1.jpg','image',0),(1339,90,'/4/f/4f4f43.jpg','image',0),(1340,90,'/4/f/4f4t532w2.jpg','image',0),(1341,90,'/4/7/472s2s2e3.jpg','image',0),(1342,90,'/4/f/4f4f43_1.jpg','image',0),(1343,90,'/4/f/4f4t532w2_1.jpg','image',0),(1344,90,'/4/7/472s2s2e3_1.jpg','image',0),(1345,90,'/4/f/4f4f43_2.jpg','image',0),(1346,90,'/4/f/4f4t532w2_2.jpg','image',0),(1347,90,'/4/7/472s2s2e3_2.jpg','image',0),(1348,90,'/4/f/4f4f43_3.jpg','image',0),(1349,90,'/4/f/4f4t532w2_3.jpg','image',0),(1350,90,'/4/7/472s2s2e3_3.jpg','image',0),(1351,90,'/3/f/3f333.jpg','image',0),(1352,90,'/4/f/4fg633.jpg','image',0),(1353,90,'/4/f/4f33d3d.jpg','image',0),(1354,90,'/3/f/3f333_1.jpg','image',0),(1355,90,'/4/f/4fg633_1.jpg','image',0),(1356,90,'/4/f/4f33d3d_1.jpg','image',0),(1357,90,'/3/f/3f333_2.jpg','image',0),(1358,90,'/4/f/4fg633_2.jpg','image',0),(1359,90,'/4/f/4f33d3d_2.jpg','image',0),(1360,90,'/3/f/3f333_3.jpg','image',0),(1361,90,'/4/f/4fg633_3.jpg','image',0),(1362,90,'/4/f/4f33d3d_3.jpg','image',0),(1363,90,'/4/4/4425f.jpg','image',0),(1364,90,'/4/5/45tf4f.jpg','image',0),(1365,90,'/4/d/4d22.jpg','image',0),(1366,90,'/4/4/4425f_1.jpg','image',0),(1367,90,'/4/5/45tf4f_1.jpg','image',0),(1368,90,'/4/d/4d22_1.jpg','image',0),(1369,90,'/4/4/4425f_2.jpg','image',0),(1370,90,'/4/5/45tf4f_2.jpg','image',0),(1371,90,'/4/d/4d22_2.jpg','image',0),(1372,90,'/4/4/4425f_3.jpg','image',0),(1373,90,'/4/5/45tf4f_3.jpg','image',0),(1374,90,'/4/d/4d22_3.jpg','image',0),(1375,90,'/4/f/4f4r4r.jpg','image',0),(1376,90,'/4/f/4f3d4d4d.jpg','image',0),(1377,90,'/5/4/54d4f5.jpg','image',0),(1378,90,'/4/f/4f4r4r_1.jpg','image',0),(1379,90,'/4/f/4f3d4d4d_1.jpg','image',0),(1380,90,'/5/4/54d4f5_1.jpg','image',0),(1381,90,'/4/f/4f4r4r_2.jpg','image',0),(1382,90,'/4/f/4f3d4d4d_2.jpg','image',0),(1383,90,'/5/4/54d4f5_2.jpg','image',0),(1384,90,'/4/f/4f4r4r_3.jpg','image',0),(1385,90,'/4/f/4f3d4d4d_3.jpg','image',0),(1386,90,'/5/4/54d4f5_3.jpg','image',0),(1387,90,'/6/g/6gg4_copy.jpg','image',0),(1388,90,'/6/7/67yy.jpg','image',0),(1389,90,'/t/4/t454545.jpg','image',0),(1390,90,'/6/g/6gg4_copy_1.jpg','image',0),(1391,90,'/6/7/67yy_1.jpg','image',0),(1392,90,'/t/4/t454545_1.jpg','image',0),(1393,90,'/6/g/6gg4_copy_2.jpg','image',0),(1394,90,'/6/7/67yy_2.jpg','image',0),(1395,90,'/t/4/t454545_2.jpg','image',0),(1396,90,'/6/g/6gg4_copy_3.jpg','image',0),(1397,90,'/6/7/67yy_3.jpg','image',0),(1398,90,'/t/4/t454545_3.jpg','image',0),(1399,90,'/i/m/image_31134483_80_620x757_3.jpg','image',0),(1400,90,'/i/m/image_31134483_80_620x757_2.jpg','image',0),(1401,90,'/m/a/main_2_1.jpg','image',0),(1402,90,'/5/6/565.jpg','image',0),(1403,90,'/1/2/12.jpg','image',0),(1404,90,'/4/3/432.jpg','image',0),(1405,90,'/5/6/565_1.jpg','image',0),(1406,90,'/1/2/12_1.jpg','image',0),(1407,90,'/4/3/432_1.jpg','image',0),(1408,90,'/5/6/565_2.jpg','image',0),(1409,90,'/1/2/12_2.jpg','image',0),(1410,90,'/4/3/432_2.jpg','image',0),(1411,90,'/4/4/444.jpg','image',0),(1412,90,'/5/6/564567.jpg','image',0),(1413,90,'/2/3/23.jpg','image',0),(1414,90,'/4/4/444_1.jpg','image',0),(1415,90,'/5/6/564567_1.jpg','image',0),(1416,90,'/2/3/23_1.jpg','image',0),(1417,90,'/4/4/444_2.jpg','image',0),(1418,90,'/5/6/564567_2.jpg','image',0),(1419,90,'/2/3/23_2.jpg','image',0),(1420,90,'/5/3/534234.jpg','image',0),(1421,90,'/3/4/34324234.jpg','image',0),(1422,90,'/2/2/224453432.jpg','image',0),(1423,90,'/5/3/534234_1.jpg','image',0),(1424,90,'/3/4/34324234_1.jpg','image',0),(1425,90,'/2/2/224453432_1.jpg','image',0),(1426,90,'/5/3/534234_2.jpg','image',0),(1427,90,'/3/4/34324234_2.jpg','image',0),(1428,90,'/2/2/224453432_2.jpg','image',0),(1429,90,'/6/7/675.jpg','image',0),(1430,90,'/1/2/122.jpg','image',0),(1431,90,'/3/6/36.jpg','image',0),(1432,90,'/6/7/675_1.jpg','image',0),(1433,90,'/1/2/122_1.jpg','image',0),(1434,90,'/3/6/36_1.jpg','image',0),(1435,90,'/6/7/675_2.jpg','image',0),(1436,90,'/1/2/122_2.jpg','image',0),(1437,90,'/3/6/36_2.jpg','image',0),(1438,90,'/2/1/21.jpg','image',0),(1439,90,'/6/5/65.jpg','image',0),(1440,90,'/5/6/56.jpg','image',0),(1441,90,'/2/1/21_1.jpg','image',0),(1442,90,'/6/5/65_1.jpg','image',0),(1443,90,'/5/6/56_1.jpg','image',0),(1444,90,'/2/1/21_2.jpg','image',0),(1445,90,'/6/5/65_2.jpg','image',0),(1446,90,'/5/6/56_2.jpg','image',0),(1447,90,'/i/m/image_31276018_23_620x757_0.jpg','image',0),(1448,90,'/i/m/image_31276018_23_620x757_4.jpg','image',0),(1449,90,'/i/m/image_31276018_23_620x757_3.jpg','image',0),(1450,90,'/2/3/23d.jpg','image',0),(1451,90,'/3/7/37dg37hd3d.jpg','image',0),(1452,90,'/3/s/3s22s.jpg','image',0),(1453,90,'/2/3/23d_1.jpg','image',0),(1454,90,'/3/7/37dg37hd3d_1.jpg','image',0),(1455,90,'/3/s/3s22s_1.jpg','image',0),(1456,90,'/2/3/23d_2.jpg','image',0),(1457,90,'/3/7/37dg37hd3d_2.jpg','image',0),(1458,90,'/3/s/3s22s_2.jpg','image',0),(1459,90,'/2/3/23d_3.jpg','image',0),(1460,90,'/3/7/37dg37hd3d_3.jpg','image',0),(1461,90,'/3/s/3s22s_3.jpg','image',0),(1462,90,'/3/d/3d3d3d.jpg','image',0),(1463,90,'/4/k/4k8k8k8.jpg','image',0),(1464,90,'/3/d/3d3d3d111.jpg','image',0),(1465,90,'/3/d/3d3d3d_1.jpg','image',0),(1466,90,'/4/k/4k8k8k8_1.jpg','image',0),(1467,90,'/3/d/3d3d3d111_1.jpg','image',0),(1468,90,'/3/d/3d3d3d_2.jpg','image',0),(1469,90,'/4/k/4k8k8k8_2.jpg','image',0),(1470,90,'/3/d/3d3d3d111_2.jpg','image',0),(1471,90,'/3/d/3d3d3d_3.jpg','image',0),(1472,90,'/4/k/4k8k8k8_3.jpg','image',0),(1473,90,'/3/d/3d3d3d111_3.jpg','image',0),(1474,90,'/4/g/4g.jpg','image',0),(1475,90,'/3/f/3f3f3f3.jpg','image',0),(1476,90,'/4/f/4f4f42ds.jpg','image',0),(1477,90,'/4/g/4g_1.jpg','image',0),(1478,90,'/3/f/3f3f3f3_1.jpg','image',0),(1479,90,'/4/f/4f4f42ds_1.jpg','image',0),(1480,90,'/4/g/4g_2.jpg','image',0),(1481,90,'/3/f/3f3f3f3_2.jpg','image',0),(1482,90,'/4/f/4f4f42ds_2.jpg','image',0),(1483,90,'/4/g/4g_3.jpg','image',0),(1484,90,'/3/f/3f3f3f3_3.jpg','image',0),(1485,90,'/4/f/4f4f42ds_3.jpg','image',0),(1486,90,'/3/4/3462dwxwx.jpg','image',0),(1487,90,'/1/q/1q2a2a2.jpg','image',0),(1488,90,'/3/w/3ws44f4f.jpg','image',0),(1489,90,'/3/4/3462dwxwx_1.jpg','image',0),(1490,90,'/1/q/1q2a2a2_1.jpg','image',0),(1491,90,'/3/w/3ws44f4f_1.jpg','image',0),(1492,90,'/3/4/3462dwxwx_2.jpg','image',0),(1493,90,'/1/q/1q2a2a2_2.jpg','image',0),(1494,90,'/3/w/3ws44f4f_2.jpg','image',0),(1495,90,'/3/4/3462dwxwx_3.jpg','image',0),(1496,90,'/1/q/1q2a2a2_3.jpg','image',0),(1497,90,'/3/w/3ws44f4f_3.jpg','image',0),(1498,90,'/4/0/4014.jpg','image',0),(1499,90,'/3/4/34242d.jpg','image',0),(1500,90,'/3/r/3r3r4r3.jpg','image',0),(1501,90,'/4/0/4014_1.jpg','image',0),(1502,90,'/3/4/34242d_1.jpg','image',0),(1503,90,'/3/r/3r3r4r3_1.jpg','image',0),(1504,90,'/4/0/4014_2.jpg','image',0),(1505,90,'/3/4/34242d_2.jpg','image',0),(1506,90,'/3/r/3r3r4r3_2.jpg','image',0),(1507,90,'/4/0/4014_3.jpg','image',0),(1508,90,'/3/4/34242d_3.jpg','image',0),(1509,90,'/3/r/3r3r4r3_3.jpg','image',0),(1510,90,'/i/m/image_31135088_10_620x757_3.jpg','image',0),(1511,90,'/i/m/image_31135088_10_620x757_2.jpg','image',0),(1512,90,'/m/a/main_2_2.jpg','image',0),(1513,90,'/1/2/12w2s3s33.jpg','image',0),(1514,90,'/2/3/233e3ed.jpg','image',0),(1515,90,'/3/5/354r4rff.jpg','image',0),(1516,90,'/1/2/12w2s3s33_1.jpg','image',0),(1517,90,'/2/3/233e3ed_1.jpg','image',0),(1518,90,'/3/5/354r4rff_1.jpg','image',0),(1519,90,'/1/2/12w2s3s33_2.jpg','image',0),(1520,90,'/2/3/233e3ed_2.jpg','image',0),(1521,90,'/3/5/354r4rff_2.jpg','image',0),(1522,90,'/1/2/12w2s3s33_3.jpg','image',0),(1523,90,'/2/3/233e3ed_3.jpg','image',0),(1524,90,'/3/5/354r4rff_3.jpg','image',0),(1525,90,'/1/2/1223d4f4f5.jpg','image',0),(1526,90,'/2/3/23edg56y6.jpg','image',0),(1527,90,'/5/g/5gggg5g.jpg','image',0),(1528,90,'/1/2/1223d4f4f5_1.jpg','image',0),(1529,90,'/2/3/23edg56y6_1.jpg','image',0),(1530,90,'/5/g/5gggg5g_1.jpg','image',0),(1531,90,'/1/2/1223d4f4f5_2.jpg','image',0),(1532,90,'/2/3/23edg56y6_2.jpg','image',0),(1533,90,'/5/g/5gggg5g_2.jpg','image',0),(1534,90,'/1/2/1223d4f4f5_3.jpg','image',0),(1535,90,'/2/3/23edg56y6_3.jpg','image',0),(1536,90,'/5/g/5gggg5g_3.jpg','image',0),(1537,90,'/3/4/34f4w22.jpg','image',0),(1538,90,'/1/5/15f5f5f.jpg','image',0),(1539,90,'/2/3/23e23edd.jpg','image',0),(1540,90,'/3/4/34f4w22_1.jpg','image',0),(1541,90,'/1/5/15f5f5f_1.jpg','image',0),(1542,90,'/2/3/23e23edd_1.jpg','image',0),(1543,90,'/3/4/34f4w22_2.jpg','image',0),(1544,90,'/1/5/15f5f5f_2.jpg','image',0),(1545,90,'/2/3/23e23edd_2.jpg','image',0),(1546,90,'/3/4/34f4w22_3.jpg','image',0),(1547,90,'/1/5/15f5f5f_3.jpg','image',0),(1548,90,'/2/3/23e23edd_3.jpg','image',0),(1549,90,'/2/4/24r.jpg','image',0),(1550,90,'/5/6/563ww.jpg','image',0),(1551,90,'/3/d/3d3d3d3s.jpg','image',0),(1552,90,'/2/4/24r_1.jpg','image',0),(1553,90,'/5/6/563ww_1.jpg','image',0),(1554,90,'/3/d/3d3d3d3s_1.jpg','image',0),(1555,90,'/2/4/24r_2.jpg','image',0),(1556,90,'/5/6/563ww_2.jpg','image',0),(1557,90,'/3/d/3d3d3d3s_2.jpg','image',0),(1558,90,'/2/4/24r_3.jpg','image',0),(1559,90,'/5/6/563ww_3.jpg','image',0),(1560,90,'/3/d/3d3d3d3s_3.jpg','image',0),(1561,90,'/1/q/1q2qww.jpg','image',0),(1562,90,'/2/3/23432f44.jpg','image',0),(1563,90,'/5/3/535f5g5g.jpg','image',0),(1564,90,'/1/q/1q2qww_1.jpg','image',0),(1565,90,'/2/3/23432f44_1.jpg','image',0),(1566,90,'/5/3/535f5g5g_1.jpg','image',0),(1567,90,'/1/q/1q2qww_2.jpg','image',0),(1568,90,'/2/3/23432f44_2.jpg','image',0),(1569,90,'/5/3/535f5g5g_2.jpg','image',0),(1570,90,'/1/q/1q2qww_3.jpg','image',0),(1571,90,'/2/3/23432f44_3.jpg','image',0),(1572,90,'/5/3/535f5g5g_3.jpg','image',0),(1573,90,'/i/m/image_31207422_23_620x757_3.jpg','image',0),(1574,90,'/i/m/image_31207422_23_620x757_2.jpg','image',0),(1575,90,'/m/a/main_3_4.jpg','image',0),(1576,90,'/5/t/5tggt5.jpg','image',0),(1577,90,'/j/u/ju87.jpg','image',0),(1578,90,'/7/6/76huhu.jpg','image',0),(1579,90,'/5/t/5tggt5_1.jpg','image',0),(1580,90,'/j/u/ju87_1.jpg','image',0),(1581,90,'/7/6/76huhu_1.jpg','image',0),(1582,90,'/5/t/5tggt5_2.jpg','image',0),(1583,90,'/j/u/ju87_2.jpg','image',0),(1584,90,'/7/6/76huhu_2.jpg','image',0),(1585,90,'/f/5/f543e.jpg','image',0),(1586,90,'/6/6/667h77u7.jpg','image',0),(1587,90,'/6/7/6757y6h6.jpg','image',0),(1588,90,'/f/5/f543e_1.jpg','image',0),(1589,90,'/6/6/667h77u7_1.jpg','image',0),(1590,90,'/6/7/6757y6h6_1.jpg','image',0),(1591,90,'/f/5/f543e_2.jpg','image',0),(1592,90,'/6/6/667h77u7_2.jpg','image',0),(1593,90,'/6/7/6757y6h6_2.jpg','image',0),(1594,90,'/2/3/23d4d4ed3d.jpg','image',0),(1595,90,'/2/3/23s4e4e.jpg','image',0),(1596,90,'/3/4/34r4e222.jpg','image',0),(1597,90,'/2/3/23d4d4ed3d_1.jpg','image',0),(1598,90,'/2/3/23s4e4e_1.jpg','image',0),(1599,90,'/3/4/34r4e222_1.jpg','image',0),(1600,90,'/2/3/23d4d4ed3d_2.jpg','image',0),(1601,90,'/2/3/23s4e4e_2.jpg','image',0),(1602,90,'/3/4/34r4e222_2.jpg','image',0),(1603,90,'/7/y/7y7y6y5g.jpg','image',0),(1604,90,'/6/h/6h5t5f4r.jpg','image',0),(1605,90,'/7/3/73w_1.jpg','image',0),(1606,90,'/7/y/7y7y6y5g_1.jpg','image',0),(1607,90,'/6/h/6h5t5f4r_1.jpg','image',0),(1608,90,'/7/3/73w_1_1.jpg','image',0),(1609,90,'/7/y/7y7y6y5g_2.jpg','image',0),(1610,90,'/6/h/6h5t5f4r_2.jpg','image',0),(1611,90,'/7/3/73w_1_2.jpg','image',0),(1612,90,'/8/6/865u7hhh.jpg','image',0),(1613,90,'/4/5/4534r4ddddd.jpg','image',0),(1614,90,'/4/d/4d1w3222.jpg','image',0),(1615,90,'/8/6/865u7hhh_1.jpg','image',0),(1616,90,'/4/5/4534r4ddddd_1.jpg','image',0),(1617,90,'/4/d/4d1w3222_1.jpg','image',0),(1618,90,'/8/6/865u7hhh_2.jpg','image',0),(1619,90,'/4/5/4534r4ddddd_2.jpg','image',0),(1620,90,'/4/d/4d1w3222_2.jpg','image',0),(1621,90,'/i/m/image_31231300_73_620x757_3.jpg','image',0),(1622,90,'/i/m/image_31231300_73_620x757_2.jpg','image',0),(1623,90,'/m/a/main_3_2.jpg','image',0),(1624,90,'/d/3/d3d4433.jpg','image',0),(1625,90,'/4/r/4r656hh.jpg','image',0),(1626,90,'/5/t/5t543e4r4r4r.jpg','image',0),(1627,90,'/d/3/d3d4433_1.jpg','image',0),(1628,90,'/4/r/4r656hh_1.jpg','image',0),(1629,90,'/5/t/5t543e4r4r4r_1.jpg','image',0),(1630,90,'/d/3/d3d4433_2.jpg','image',0),(1631,90,'/4/r/4r656hh_2.jpg','image',0),(1632,90,'/5/t/5t543e4r4r4r_2.jpg','image',0),(1633,90,'/d/3/d3d4433_3.jpg','image',0),(1634,90,'/4/r/4r656hh_3.jpg','image',0),(1635,90,'/5/t/5t543e4r4r4r_3.jpg','image',0),(1636,90,'/4/y/4y56hrnbtb.jpg','image',0),(1637,90,'/5/4/54g5g46.jpg','image',0),(1638,90,'/5/6/566htrht.jpg','image',0),(1639,90,'/4/y/4y56hrnbtb_1.jpg','image',0),(1640,90,'/5/4/54g5g46_1.jpg','image',0),(1641,90,'/5/6/566htrht_1.jpg','image',0),(1642,90,'/4/y/4y56hrnbtb_2.jpg','image',0),(1643,90,'/5/4/54g5g46_2.jpg','image',0),(1644,90,'/5/6/566htrht_2.jpg','image',0),(1645,90,'/4/y/4y56hrnbtb_3.jpg','image',0),(1646,90,'/5/4/54g5g46_3.jpg','image',0),(1647,90,'/5/6/566htrht_3.jpg','image',0),(1648,90,'/7/6/7644gt5d.jpg','image',0),(1649,90,'/4/4/4435gb.jpg','image',0),(1650,90,'/3/5/35gerbt.jpg','image',0),(1651,90,'/7/6/7644gt5d_1.jpg','image',0),(1652,90,'/4/4/4435gb_1.jpg','image',0),(1653,90,'/3/5/35gerbt_1.jpg','image',0),(1654,90,'/7/6/7644gt5d_2.jpg','image',0),(1655,90,'/4/4/4435gb_2.jpg','image',0),(1656,90,'/3/5/35gerbt_2.jpg','image',0),(1657,90,'/7/6/7644gt5d_3.jpg','image',0),(1658,90,'/4/4/4435gb_3.jpg','image',0),(1659,90,'/3/5/35gerbt_3.jpg','image',0),(1660,90,'/e/w/ewrf555.jpg','image',0),(1661,90,'/4/f/4f4f3323.jpg','image',0),(1662,90,'/5/g/5g6h677u.jpg','image',0),(1663,90,'/e/w/ewrf555_1.jpg','image',0),(1664,90,'/4/f/4f4f3323_1.jpg','image',0),(1665,90,'/5/g/5g6h677u_1.jpg','image',0),(1666,90,'/e/w/ewrf555_2.jpg','image',0),(1667,90,'/4/f/4f4f3323_2.jpg','image',0),(1668,90,'/5/g/5g6h677u_2.jpg','image',0),(1669,90,'/e/w/ewrf555_3.jpg','image',0),(1670,90,'/4/f/4f4f3323_3.jpg','image',0),(1671,90,'/5/g/5g6h677u_3.jpg','image',0),(1672,90,'/4/g/4g6j7j7j.jpg','image',0),(1673,90,'/7/5/75u67j7jy.jpg','image',0),(1674,90,'/2/7/27jjj.jpg','image',0),(1675,90,'/4/g/4g6j7j7j_1.jpg','image',0),(1676,90,'/7/5/75u67j7jy_1.jpg','image',0),(1677,90,'/2/7/27jjj_1.jpg','image',0),(1678,90,'/4/g/4g6j7j7j_2.jpg','image',0),(1679,90,'/7/5/75u67j7jy_2.jpg','image',0),(1680,90,'/2/7/27jjj_2.jpg','image',0),(1681,90,'/4/g/4g6j7j7j_3.jpg','image',0),(1682,90,'/7/5/75u67j7jy_3.jpg','image',0),(1683,90,'/2/7/27jjj_3.jpg','image',0),(1684,90,'/i/m/image_31189077_10_620x757_3.jpg','image',0),(1685,90,'/i/m/image_31189077_10_620x757_2.jpg','image',0),(1686,90,'/m/a/main_5_1.jpg','image',0),(1687,90,'/2/2/22w2w1w2s2ss.jpg','image',0),(1688,90,'/3/d/3d4f4d3d4d44444.jpg','image',0),(1689,90,'/3/4/34f5f322sde3d3d.jpg','image',0),(1690,90,'/3/d/3d3dr4f32s.jpg','image',0),(1691,90,'/2/2/22w2w1w2s2ss_1.jpg','image',0),(1692,90,'/3/d/3d4f4d3d4d44444_1.jpg','image',0),(1693,90,'/3/4/34f5f322sde3d3d_1.jpg','image',0),(1694,90,'/3/d/3d3dr4f32s_1.jpg','image',0),(1695,90,'/2/2/22w2w1w2s2ss_2.jpg','image',0),(1696,90,'/3/d/3d4f4d3d4d44444_2.jpg','image',0),(1697,90,'/3/4/34f5f322sde3d3d_2.jpg','image',0),(1698,90,'/3/d/3d3dr4f32s_2.jpg','image',0),(1699,90,'/2/2/22w2w1w2s2ss_3.jpg','image',0),(1700,90,'/3/d/3d4f4d3d4d44444_3.jpg','image',0),(1701,90,'/3/4/34f5f322sde3d3d_3.jpg','image',0),(1702,90,'/3/d/3d3dr4f32s_3.jpg','image',0),(1703,90,'/4/f/4f45444r4r.jpg','image',0),(1704,90,'/2/d/2d445333f.jpg','image',0),(1705,90,'/2/s/2s2s2sw233.jpg','image',0),(1706,90,'/3/d/3d4f4f4d3d.jpg','image',0),(1707,90,'/4/f/4f45444r4r_1.jpg','image',0),(1708,90,'/2/d/2d445333f_1.jpg','image',0),(1709,90,'/2/s/2s2s2sw233_1.jpg','image',0),(1710,90,'/3/d/3d4f4f4d3d_1.jpg','image',0),(1711,90,'/4/f/4f45444r4r_2.jpg','image',0),(1712,90,'/2/d/2d445333f_2.jpg','image',0),(1713,90,'/2/s/2s2s2sw233_2.jpg','image',0),(1714,90,'/3/d/3d4f4f4d3d_2.jpg','image',0),(1715,90,'/4/f/4f45444r4r_3.jpg','image',0),(1716,90,'/2/d/2d445333f_3.jpg','image',0),(1717,90,'/2/s/2s2s2sw233_3.jpg','image',0),(1718,90,'/3/d/3d4f4f4d3d_3.jpg','image',0),(1719,90,'/3/d/3d2d2s3d4d4.jpg','image',0),(1720,90,'/5/g/5g5g43d4d3d.jpg','image',0),(1721,90,'/3/d/3d4f323d4f5f.jpg','image',0),(1722,90,'/5/g/5g4d4f666.jpg','image',0),(1723,90,'/3/d/3d2d2s3d4d4_1.jpg','image',0),(1724,90,'/5/g/5g5g43d4d3d_1.jpg','image',0),(1725,90,'/3/d/3d4f323d4f5f_1.jpg','image',0),(1726,90,'/5/g/5g4d4f666_1.jpg','image',0),(1727,90,'/3/d/3d2d2s3d4d4_2.jpg','image',0),(1728,90,'/5/g/5g5g43d4d3d_2.jpg','image',0),(1729,90,'/3/d/3d4f323d4f5f_2.jpg','image',0),(1730,90,'/5/g/5g4d4f666_2.jpg','image',0),(1731,90,'/3/d/3d2d2s3d4d4_3.jpg','image',0),(1732,90,'/5/g/5g5g43d4d3d_3.jpg','image',0),(1733,90,'/3/d/3d4f323d4f5f_3.jpg','image',0),(1734,90,'/5/g/5g4d4f666_3.jpg','image',0),(1735,90,'/8/j/8jh6f4d4tgg.jpg','image',0),(1736,90,'/1/2/1233s3s4d4.jpg','image',0),(1737,90,'/5/g/5g5gghy66.jpg','image',0),(1738,90,'/o/9/o998uuu.jpg','image',0),(1739,90,'/8/j/8jh6f4d4tgg_1.jpg','image',0),(1740,90,'/1/2/1233s3s4d4_1.jpg','image',0),(1741,90,'/5/g/5g5gghy66_1.jpg','image',0),(1742,90,'/o/9/o998uuu_1.jpg','image',0),(1743,90,'/8/j/8jh6f4d4tgg_2.jpg','image',0),(1744,90,'/1/2/1233s3s4d4_2.jpg','image',0),(1745,90,'/5/g/5g5gghy66_2.jpg','image',0),(1746,90,'/o/9/o998uuu_2.jpg','image',0),(1747,90,'/8/j/8jh6f4d4tgg_3.jpg','image',0),(1748,90,'/1/2/1233s3s4d4_3.jpg','image',0),(1749,90,'/5/g/5g5gghy66_3.jpg','image',0),(1750,90,'/o/9/o998uuu_3.jpg','image',0),(1751,90,'/3/3/33d4f4f3f_1.jpg','image',0),(1752,90,'/4/f/4f4f4g5g5_1.jpg','image',0),(1753,90,'/2/3/23e34f5f_1.jpg','image',0),(1754,90,'/4/t/4t675556_1.jpg','image',0),(1755,90,'/3/3/33d4f4f3f_1_1.jpg','image',0),(1756,90,'/4/f/4f4f4g5g5_1_1.jpg','image',0),(1757,90,'/2/3/23e34f5f_1_1.jpg','image',0),(1758,90,'/4/t/4t675556_1_1.jpg','image',0),(1759,90,'/3/3/33d4f4f3f_1_2.jpg','image',0),(1760,90,'/4/f/4f4f4g5g5_1_2.jpg','image',0),(1761,90,'/2/3/23e34f5f_1_2.jpg','image',0),(1762,90,'/4/t/4t675556_1_2.jpg','image',0),(1763,90,'/3/3/33d4f4f3f_1_3.jpg','image',0),(1764,90,'/4/f/4f4f4g5g5_1_3.jpg','image',0),(1765,90,'/2/3/23e34f5f_1_3.jpg','image',0),(1766,90,'/4/t/4t675556_1_3.jpg','image',0),(1767,90,'/3/g/3g6h765ff.jpg','image',0),(1768,90,'/2/3/2343rdsasas.jpg','image',0),(1769,90,'/3/4/34454342ddd.jpg','image',0),(1770,90,'/3/g/3g6h765ff_1.jpg','image',0),(1771,90,'/2/3/2343rdsasas_1.jpg','image',0),(1772,90,'/3/4/34454342ddd_1.jpg','image',0),(1773,90,'/3/g/3g6h765ff_2.jpg','image',0),(1774,90,'/2/3/2343rdsasas_2.jpg','image',0),(1775,90,'/3/4/34454342ddd_2.jpg','image',0),(1776,90,'/3/g/3g6h765ff_3.jpg','image',0),(1777,90,'/2/3/2343rdsasas_3.jpg','image',0),(1778,90,'/3/4/34454342ddd_3.jpg','image',0),(1779,90,'/3/f/3f4f33d3d3d.jpg','image',0),(1780,90,'/4/5/45ty5t4dd.jpg','image',0),(1781,90,'/3/2/32s453sss.jpg','image',0),(1782,90,'/3/f/3f4f33d3d3d_1.jpg','image',0),(1783,90,'/4/5/45ty5t4dd_1.jpg','image',0),(1784,90,'/3/2/32s453sss_1.jpg','image',0),(1785,90,'/3/f/3f4f33d3d3d_2.jpg','image',0),(1786,90,'/4/5/45ty5t4dd_2.jpg','image',0),(1787,90,'/3/2/32s453sss_2.jpg','image',0),(1788,90,'/3/f/3f4f33d3d3d_3.jpg','image',0),(1789,90,'/4/5/45ty5t4dd_3.jpg','image',0),(1790,90,'/3/2/32s453sss_3.jpg','image',0),(1791,90,'/3/f/3f5g3d3d.jpg','image',0),(1792,90,'/2/4/244r3dss.jpg','image',0),(1793,90,'/3/r/3r45453d.jpg','image',0),(1794,90,'/3/f/3f5g3d3d_1.jpg','image',0),(1795,90,'/2/4/244r3dss_1.jpg','image',0),(1796,90,'/3/r/3r45453d_1.jpg','image',0),(1797,90,'/3/f/3f5g3d3d_2.jpg','image',0),(1798,90,'/2/4/244r3dss_2.jpg','image',0),(1799,90,'/3/r/3r45453d_2.jpg','image',0),(1800,90,'/3/f/3f5g3d3d_3.jpg','image',0),(1801,90,'/2/4/244r3dss_3.jpg','image',0),(1802,90,'/3/r/3r45453d_3.jpg','image',0),(1803,90,'/4/4/4442dd.jpg','image',0),(1804,90,'/3/2/32453ddd.jpg','image',0),(1805,90,'/2/3/23r4sssd.jpg','image',0),(1806,90,'/4/4/4442dd_1.jpg','image',0),(1807,90,'/3/2/32453ddd_1.jpg','image',0),(1808,90,'/2/3/23r4sssd_1.jpg','image',0),(1809,90,'/4/4/4442dd_2.jpg','image',0),(1810,90,'/3/2/32453ddd_2.jpg','image',0),(1811,90,'/2/3/23r4sssd_2.jpg','image',0),(1812,90,'/4/4/4442dd_3.jpg','image',0),(1813,90,'/3/2/32453ddd_3.jpg','image',0),(1814,90,'/2/3/23r4sssd_3.jpg','image',0),(1815,90,'/2/4/24t434fdd.jpg','image',0),(1816,90,'/3/5/3556543fdd.jpg','image',0),(1817,90,'/2/4/24s2ssa.jpg','image',0),(1818,90,'/2/4/24t434fdd_1.jpg','image',0),(1819,90,'/3/5/3556543fdd_1.jpg','image',0),(1820,90,'/2/4/24s2ssa_1.jpg','image',0),(1821,90,'/2/4/24t434fdd_2.jpg','image',0),(1822,90,'/3/5/3556543fdd_2.jpg','image',0),(1823,90,'/2/4/24s2ssa_2.jpg','image',0),(1824,90,'/2/4/24t434fdd_3.jpg','image',0),(1825,90,'/3/5/3556543fdd_3.jpg','image',0),(1826,90,'/2/4/24s2ssa_3.jpg','image',0),(1827,90,'/4/5/4546gf3d32.jpg','image',0),(1828,90,'/d/2/d222w1w.jpg','image',0),(1829,90,'/2/4/24t4f3d3d.jpg','image',0),(1830,90,'/4/5/4546gf3d32_1.jpg','image',0),(1831,90,'/d/2/d222w1w_1.jpg','image',0),(1832,90,'/2/4/24t4f3d3d_1.jpg','image',0),(1833,90,'/4/5/4546gf3d32_2.jpg','image',0),(1834,90,'/d/2/d222w1w_2.jpg','image',0),(1835,90,'/2/4/24t4f3d3d_2.jpg','image',0),(1836,90,'/2/e/2e3d3333.jpg','image',0),(1837,90,'/2/3/234r4d2s.jpg','image',0),(1838,90,'/2/3/23r3d2s443.jpg','image',0),(1839,90,'/2/e/2e3d3333_1.jpg','image',0),(1840,90,'/2/3/234r4d2s_1.jpg','image',0),(1841,90,'/2/3/23r3d2s443_1.jpg','image',0),(1842,90,'/2/e/2e3d3333_2.jpg','image',0),(1843,90,'/2/3/234r4d2s_2.jpg','image',0),(1844,90,'/2/3/23r3d2s443_2.jpg','image',0),(1845,90,'/3/2/3234tfee.jpg','image',0),(1846,90,'/2/3/23rf432sss.jpg','image',0),(1847,90,'/1/2/12es2s2d2s.jpg','image',0),(1848,90,'/3/2/3234tfee_1.jpg','image',0),(1849,90,'/2/3/23rf432sss_1.jpg','image',0),(1850,90,'/1/2/12es2s2d2s_1.jpg','image',0),(1851,90,'/3/2/3234tfee_2.jpg','image',0),(1852,90,'/2/3/23rf432sss_2.jpg','image',0),(1853,90,'/1/2/12es2s2d2s_2.jpg','image',0),(1854,90,'/2/3/23d34d2dww.jpg','image',0),(1855,90,'/2/3/2324wdq11.jpg','image',0),(1856,90,'/2/r/2r42r3edd.jpg','image',0),(1857,90,'/2/3/23d34d2dww_1.jpg','image',0),(1858,90,'/2/3/2324wdq11_1.jpg','image',0),(1859,90,'/2/r/2r42r3edd_1.jpg','image',0),(1860,90,'/2/3/23d34d2dww_2.jpg','image',0),(1861,90,'/2/3/2324wdq11_2.jpg','image',0),(1862,90,'/2/r/2r42r3edd_2.jpg','image',0),(1863,90,'/h/6/h66544.jpg','image',0),(1864,90,'/4/r/4r3d211111.jpg','image',0),(1865,90,'/5/6/56754t3f.jpg','image',0),(1866,90,'/h/6/h66544_1.jpg','image',0),(1867,90,'/4/r/4r3d211111_1.jpg','image',0),(1868,90,'/5/6/56754t3f_1.jpg','image',0),(1869,90,'/h/6/h66544_2.jpg','image',0),(1870,90,'/4/r/4r3d211111_2.jpg','image',0),(1871,90,'/5/6/56754t3f_2.jpg','image',0),(1872,90,'/9/8/9876t.jpg','image',0),(1873,90,'/2/4/243dd3d3d.jpg','image',0),(1874,90,'/7/h/7h65rfff.jpg','image',0),(1875,90,'/9/8/9876t_1.jpg','image',0),(1876,90,'/2/4/243dd3d3d_1.jpg','image',0),(1877,90,'/7/h/7h65rfff_1.jpg','image',0),(1878,90,'/9/8/9876t_2.jpg','image',0),(1879,90,'/2/4/243dd3d3d_2.jpg','image',0),(1880,90,'/7/h/7h65rfff_2.jpg','image',0),(1881,90,'/9/8/9876t_3.jpg','image',0),(1882,90,'/2/4/243dd3d3d_3.jpg','image',0),(1883,90,'/7/h/7h65rfff_3.jpg','image',0),(1884,90,'/9/8/9876t_4.jpg','image',0),(1885,90,'/2/4/243dd3d3d_4.jpg','image',0),(1886,90,'/7/h/7h65rfff_4.jpg','image',0),(1887,90,'/7/h/7h66ggg.jpg','image',0),(1888,90,'/6/y/6y45t44f4.jpg','image',0),(1889,90,'/3/4/345f22.jpg','image',0),(1890,90,'/7/h/7h66ggg_1.jpg','image',0),(1891,90,'/6/y/6y45t44f4_1.jpg','image',0),(1892,90,'/3/4/345f22_1.jpg','image',0),(1893,90,'/7/h/7h66ggg_2.jpg','image',0),(1894,90,'/6/y/6y45t44f4_2.jpg','image',0),(1895,90,'/3/4/345f22_2.jpg','image',0),(1896,90,'/7/h/7h66ggg_3.jpg','image',0),(1897,90,'/6/y/6y45t44f4_3.jpg','image',0),(1898,90,'/3/4/345f22_3.jpg','image',0),(1899,90,'/7/h/7h66ggg_4.jpg','image',0),(1900,90,'/6/y/6y45t44f4_4.jpg','image',0),(1901,90,'/3/4/345f22_4.jpg','image',0),(1902,90,'/4/5/45f222.jpg','image',0),(1903,90,'/3/d/3d2e3ss.jpg','image',0),(1904,90,'/j/8/j8gg866f.jpg','image',0),(1905,90,'/4/5/45f222_1.jpg','image',0),(1906,90,'/3/d/3d2e3ss_1.jpg','image',0),(1907,90,'/j/8/j8gg866f_1.jpg','image',0),(1908,90,'/4/5/45f222_2.jpg','image',0),(1909,90,'/3/d/3d2e3ss_2.jpg','image',0),(1910,90,'/j/8/j8gg866f_2.jpg','image',0),(1911,90,'/4/5/45f222_3.jpg','image',0),(1912,90,'/3/d/3d2e3ss_3.jpg','image',0),(1913,90,'/j/8/j8gg866f_3.jpg','image',0),(1914,90,'/4/5/45f222_4.jpg','image',0),(1915,90,'/3/d/3d2e3ss_4.jpg','image',0),(1916,90,'/j/8/j8gg866f_4.jpg','image',0),(1917,90,'/7/2/72qw21.jpg','image',0),(1918,90,'/2/r/2rr4r2e2d.jpg','image',0),(1919,90,'/2/s/2sw423.jpg','image',0),(1920,90,'/7/2/72qw21_1.jpg','image',0),(1921,90,'/2/r/2rr4r2e2d_1.jpg','image',0),(1922,90,'/2/s/2sw423_1.jpg','image',0),(1923,90,'/7/2/72qw21_2.jpg','image',0),(1924,90,'/2/r/2rr4r2e2d_2.jpg','image',0),(1925,90,'/2/s/2sw423_2.jpg','image',0),(1926,90,'/7/2/72qw21_3.jpg','image',0),(1927,90,'/2/r/2rr4r2e2d_3.jpg','image',0),(1928,90,'/2/s/2sw423_3.jpg','image',0),(1929,90,'/7/2/72qw21_4.jpg','image',0),(1930,90,'/2/r/2rr4r2e2d_4.jpg','image',0),(1931,90,'/2/s/2sw423_4.jpg','image',0),(1932,90,'/2/w/2w32q1_1.jpg','image',0),(1933,90,'/2/3/2345t.jpg','image',0),(1934,90,'/3/6/36654edf.jpg','image',0),(1935,90,'/2/w/2w32q1_1_1.jpg','image',0),(1936,90,'/2/3/2345t_1.jpg','image',0),(1937,90,'/3/6/36654edf_1.jpg','image',0),(1938,90,'/2/w/2w32q1_1_2.jpg','image',0),(1939,90,'/2/3/2345t_2.jpg','image',0),(1940,90,'/3/6/36654edf_2.jpg','image',0),(1941,90,'/2/w/2w32q1_1_3.jpg','image',0),(1942,90,'/2/3/2345t_3.jpg','image',0),(1943,90,'/3/6/36654edf_3.jpg','image',0),(1944,90,'/2/w/2w32q1_1_4.jpg','image',0),(1945,90,'/2/3/2345t_4.jpg','image',0),(1946,90,'/3/6/36654edf_4.jpg','image',0),(1947,90,'/e/4/e43ee.jpg','image',0),(1948,90,'/4/r/4r6t43e3e3e.jpg','image',0),(1949,90,'/3/e/3e3d22s.jpg','image',0),(1950,90,'/4/r/4r5r34r.jpg','image',0),(1951,90,'/e/4/e43ee_1.jpg','image',0),(1952,90,'/4/r/4r6t43e3e3e_1.jpg','image',0),(1953,90,'/3/e/3e3d22s_1.jpg','image',0),(1954,90,'/4/r/4r5r34r_1.jpg','image',0),(1955,90,'/e/4/e43ee_2.jpg','image',0),(1956,90,'/4/r/4r6t43e3e3e_2.jpg','image',0),(1957,90,'/3/e/3e3d22s_2.jpg','image',0),(1958,90,'/4/r/4r5r34r_2.jpg','image',0),(1959,90,'/e/4/e43ee_3.jpg','image',0),(1960,90,'/4/r/4r6t43e3e3e_3.jpg','image',0),(1961,90,'/3/e/3e3d22s_3.jpg','image',0),(1962,90,'/4/r/4r5r34r_3.jpg','image',0),(1963,90,'/b/l/blac.jpg','image',0),(1964,90,'/j/u/juyt6.jpg','image',0),(1965,90,'/w/e/wert4.jpg','image',0),(1966,90,'/3/d/3de423.jpg','image',0),(1967,90,'/b/l/blac_1.jpg','image',0),(1968,90,'/j/u/juyt6_1.jpg','image',0),(1969,90,'/w/e/wert4_1.jpg','image',0),(1970,90,'/3/d/3de423_1.jpg','image',0),(1971,90,'/b/l/blac_2.jpg','image',0),(1972,90,'/j/u/juyt6_2.jpg','image',0),(1973,90,'/w/e/wert4_2.jpg','image',0),(1974,90,'/3/d/3de423_2.jpg','image',0),(1975,90,'/b/l/blac_3.jpg','image',0),(1976,90,'/j/u/juyt6_3.jpg','image',0),(1977,90,'/w/e/wert4_3.jpg','image',0),(1978,90,'/3/d/3de423_3.jpg','image',0),(1979,90,'/5/t/5tr433.jpg','image',0),(1980,90,'/h/u/hup65r.jpg','image',0),(1981,90,'/o/9/o98u7.jpg','image',0),(1982,90,'/k/o/ko908.jpg','image',0),(1983,90,'/5/t/5tr433_1.jpg','image',0),(1984,90,'/h/u/hup65r_1.jpg','image',0),(1985,90,'/o/9/o98u7_1.jpg','image',0),(1986,90,'/k/o/ko908_1.jpg','image',0),(1987,90,'/5/t/5tr433_2.jpg','image',0),(1988,90,'/h/u/hup65r_2.jpg','image',0),(1989,90,'/o/9/o98u7_2.jpg','image',0),(1990,90,'/k/o/ko908_2.jpg','image',0),(1991,90,'/5/t/5tr433_3.jpg','image',0),(1992,90,'/h/u/hup65r_3.jpg','image',0),(1993,90,'/o/9/o98u7_3.jpg','image',0),(1994,90,'/k/o/ko908_3.jpg','image',0),(1995,90,'/j/k/jkjkuiu877.jpg','image',0),(1996,90,'/j/i/jiu766t.jpg','image',0),(1997,90,'/5/r/5r54e33ee.jpg','image',0),(1998,90,'/4/r/4r455t.jpg','image',0),(1999,90,'/j/k/jkjkuiu877_1.jpg','image',0),(2000,90,'/j/i/jiu766t_1.jpg','image',0),(2001,90,'/5/r/5r54e33ee_1.jpg','image',0),(2002,90,'/4/r/4r455t_1.jpg','image',0),(2003,90,'/j/k/jkjkuiu877_2.jpg','image',0),(2004,90,'/j/i/jiu766t_2.jpg','image',0),(2005,90,'/5/r/5r54e33ee_2.jpg','image',0),(2006,90,'/4/r/4r455t_2.jpg','image',0),(2007,90,'/j/k/jkjkuiu877_3.jpg','image',0),(2008,90,'/j/i/jiu766t_3.jpg','image',0),(2009,90,'/5/r/5r54e33ee_3.jpg','image',0),(2010,90,'/4/r/4r455t_3.jpg','image',0),(2011,90,'/j/i/jiyy65t5.jpg','image',0),(2012,90,'/g/6/g65544ee.jpg','image',0),(2013,90,'/3/r/3r44eeee.jpg','image',0),(2014,90,'/k/i/ki9i.jpg','image',0),(2015,90,'/j/i/jiyy65t5_1.jpg','image',0),(2016,90,'/g/6/g65544ee_1.jpg','image',0),(2017,90,'/3/r/3r44eeee_1.jpg','image',0),(2018,90,'/k/i/ki9i_1.jpg','image',0),(2019,90,'/j/i/jiyy65t5_2.jpg','image',0),(2020,90,'/g/6/g65544ee_2.jpg','image',0),(2021,90,'/3/r/3r44eeee_2.jpg','image',0),(2022,90,'/k/i/ki9i_2.jpg','image',0),(2023,90,'/j/i/jiyy65t5_3.jpg','image',0),(2024,90,'/g/6/g65544ee_3.jpg','image',0),(2025,90,'/3/r/3r44eeee_3.jpg','image',0),(2026,90,'/k/i/ki9i_3.jpg','image',0),(2027,90,'/3/3/33e3d.jpg','image',0),(2028,90,'/3/d/3d3ee3e.jpg','image',0),(2029,90,'/k/o/kokiji87y.jpg','image',0),(2030,90,'/3/3/33e3d_1.jpg','image',0),(2031,90,'/3/d/3d3ee3e_1.jpg','image',0),(2032,90,'/k/o/kokiji87y_1.jpg','image',0),(2033,90,'/3/3/33e3d_2.jpg','image',0),(2034,90,'/3/d/3d3ee3e_2.jpg','image',0),(2035,90,'/k/o/kokiji87y_2.jpg','image',0),(2036,90,'/i/m/image_31168244_36_620x757_3_1.jpg','image',0),(2037,90,'/i/m/image_31168244_36_620x757_2_1.jpg','image',0),(2038,90,'/m/a/main_5_9_1.jpg','image',0),(2039,90,'/i/m/image_31168244_36_620x757_3_1_1.jpg','image',0),(2040,90,'/i/m/image_31168244_36_620x757_2_1_1.jpg','image',0),(2041,90,'/m/a/main_5_9_1_1.jpg','image',0),(2042,90,'/i/m/image_31168244_36_620x757_3_2.jpg','image',0),(2043,90,'/i/m/image_31168244_36_620x757_2_2.jpg','image',0),(2044,90,'/m/a/main_5_9_2.jpg','image',0),(2045,90,'/3/e/3e3r4r3e2ww.jpg','image',0),(2046,90,'/2/3/235t6t5.jpg','image',0),(2047,90,'/2/3/232e3e3d.jpg','image',0),(2048,90,'/3/e/3e3r4r3e2ww_1.jpg','image',0),(2049,90,'/2/3/235t6t5_1.jpg','image',0),(2050,90,'/2/3/232e3e3d_1.jpg','image',0),(2051,90,'/3/e/3e3r4r3e2ww_1_1.jpg','image',0),(2052,90,'/2/3/235t6t5_1_1.jpg','image',0),(2053,90,'/2/3/232e3e3d_1_1.jpg','image',0),(2054,90,'/3/e/3e3r4r3e2ww_2.jpg','image',0),(2055,90,'/2/3/235t6t5_2.jpg','image',0),(2056,90,'/2/3/232e3e3d_2.jpg','image',0),(2057,90,'/2/2/22w2w33e.jpg','image',0),(2058,90,'/2/d/2d3e2w1w1.jpg','image',0),(2059,90,'/2/2/22ww2.jpg','image',0),(2060,90,'/2/2/22w2w33e_1.jpg','image',0),(2061,90,'/2/d/2d3e2w1w1_1.jpg','image',0),(2062,90,'/2/2/22ww2_1.jpg','image',0),(2063,90,'/2/2/22w2w33e_2.jpg','image',0),(2064,90,'/2/d/2d3e2w1w1_2.jpg','image',0),(2065,90,'/2/2/22ww2_2.jpg','image',0),(2066,90,'/2/e/2e3d3d3d.jpg','image',0),(2067,90,'/3/e/3e4r3d2ddd.jpg','image',0),(2068,90,'/1/q/1q12w2w.jpg','image',0),(2069,90,'/2/e/2e3d3d3d_1.jpg','image',0),(2070,90,'/3/e/3e4r3d2ddd_1.jpg','image',0),(2071,90,'/1/q/1q12w2w_1.jpg','image',0),(2072,90,'/2/e/2e3d3d3d_2.jpg','image',0),(2073,90,'/3/e/3e4r3d2ddd_2.jpg','image',0),(2074,90,'/1/q/1q12w2w_2.jpg','image',0),(2075,90,'/i/m/image_31322142_31_620x757_3_1.jpg','image',0),(2076,90,'/i/m/image_31322142_31_620x757_2_1.jpg','image',0),(2077,90,'/m/a/main_5_8_1.jpg','image',0),(2078,90,'/i/m/image_31322142_31_620x757_3_1_1.jpg','image',0),(2079,90,'/i/m/image_31322142_31_620x757_2_1_1.jpg','image',0),(2080,90,'/m/a/main_5_8_1_1.jpg','image',0),(2081,90,'/i/m/image_31322142_31_620x757_3_2.jpg','image',0),(2082,90,'/i/m/image_31322142_31_620x757_2_2.jpg','image',0),(2083,90,'/m/a/main_5_8_2.jpg','image',0),(2084,90,'/5/t/5t4t4t5t5.jpg','image',0),(2085,90,'/f/4/f4f4f4f4f4f.jpg','image',0),(2086,90,'/2/w/2we332e2e_1.jpg','image',0),(2087,90,'/3/3/33f4f4f4.jpg','image',0),(2088,90,'/5/t/5t4t4t5t5_1.jpg','image',0),(2089,90,'/f/4/f4f4f4f4f4f_1.jpg','image',0),(2090,90,'/2/w/2we332e2e_1_1.jpg','image',0),(2091,90,'/3/3/33f4f4f4_1.jpg','image',0),(2092,90,'/5/t/5t4t4t5t5_2.jpg','image',0),(2093,90,'/f/4/f4f4f4f4f4f_2.jpg','image',0),(2094,90,'/2/w/2we332e2e_1_2.jpg','image',0),(2095,90,'/3/3/33f4f4f4_2.jpg','image',0),(2096,90,'/2/3/23er4r4r.jpg','image',0),(2097,90,'/4/r/4r44rrr.jpg','image',0),(2098,90,'/2/w/2w2w2eeee22.jpg','image',0),(2099,90,'/2/1/2124554.jpg','image',0),(2100,90,'/2/3/23er4r4r_1.jpg','image',0),(2101,90,'/4/r/4r44rrr_1.jpg','image',0),(2102,90,'/2/w/2w2w2eeee22_1.jpg','image',0),(2103,90,'/2/1/2124554_1.jpg','image',0),(2104,90,'/2/3/23er4r4r_2.jpg','image',0),(2105,90,'/4/r/4r44rrr_2.jpg','image',0),(2106,90,'/2/w/2w2w2eeee22_2.jpg','image',0),(2107,90,'/2/1/2124554_2.jpg','image',0),(2108,90,'/3/e/3e3e3dcrc.jpg','image',0),(2109,90,'/4/3/433434errr.jpg','image',0),(2110,90,'/3/d/3d4e3dde.jpg','image',0),(2111,90,'/3/e/3e3e3dcrc_1.jpg','image',0),(2112,90,'/4/3/433434errr_1.jpg','image',0),(2113,90,'/3/d/3d4e3dde_1.jpg','image',0),(2114,90,'/3/e/3e3e3dcrc_2.jpg','image',0),(2115,90,'/4/3/433434errr_2.jpg','image',0),(2116,90,'/3/d/3d4e3dde_2.jpg','image',0),(2117,90,'/3/e/3e3e3dcrc_3.jpg','image',0),(2118,90,'/4/3/433434errr_3.jpg','image',0),(2119,90,'/3/d/3d4e3dde_3.jpg','image',0),(2120,90,'/3/e/3e3e3dcrc_4.jpg','image',0),(2121,90,'/4/3/433434errr_4.jpg','image',0),(2122,90,'/3/d/3d4e3dde_4.jpg','image',0),(2123,90,'/5/t/5t5t5rr4r4.jpg','image',0),(2124,90,'/3/4/345ff5.jpg','image',0),(2125,90,'/5/t/5t55f5f5f.jpg','image',0),(2126,90,'/5/t/5t5t5rr4r4_1.jpg','image',0),(2127,90,'/3/4/345ff5_1.jpg','image',0),(2128,90,'/5/t/5t55f5f5f_1.jpg','image',0),(2129,90,'/5/t/5t5t5rr4r4_2.jpg','image',0),(2130,90,'/3/4/345ff5_2.jpg','image',0),(2131,90,'/5/t/5t55f5f5f_2.jpg','image',0),(2132,90,'/5/t/5t5t5rr4r4_3.jpg','image',0),(2133,90,'/3/4/345ff5_3.jpg','image',0),(2134,90,'/5/t/5t55f5f5f_3.jpg','image',0),(2135,90,'/5/t/5t5t5rr4r4_4.jpg','image',0),(2136,90,'/3/4/345ff5_4.jpg','image',0),(2137,90,'/5/t/5t55f5f5f_4.jpg','image',0),(2138,90,'/i/m/image_30947478_80_970x1182_0_1_.jpg','image',0),(2139,90,'/i/m/image_30947478_80_970x1182_1_1.jpg','image',0),(2140,90,'/i/m/image_30947478_80_970x1182_4_1_.jpg','image',0),(2141,90,'/i/m/image_30947478_80_970x1182_0_1__1.jpg','image',0),(2142,90,'/i/m/image_30947478_80_970x1182_1_1_1.jpg','image',0),(2143,90,'/i/m/image_30947478_80_970x1182_4_1__1.jpg','image',0),(2144,90,'/i/m/image_30947478_80_970x1182_0_1__2.jpg','image',0),(2145,90,'/i/m/image_30947478_80_970x1182_1_2.jpg','image',0),(2146,90,'/i/m/image_30947478_80_970x1182_4_1__2.jpg','image',0),(2147,90,'/i/m/image_30947478_80_970x1182_0_1__3.jpg','image',0),(2148,90,'/i/m/image_30947478_80_970x1182_1_3.jpg','image',0),(2149,90,'/i/m/image_30947478_80_970x1182_4_1__3.jpg','image',0),(2150,90,'/i/m/image_30947478_80_970x1182_0_1__4.jpg','image',0),(2151,90,'/i/m/image_30947478_80_970x1182_1_4.jpg','image',0),(2152,90,'/i/m/image_30947478_80_970x1182_4_1__4.jpg','image',0),(2153,90,'/3/3/3343rr44.jpg','image',0),(2154,90,'/3/4/34444r4r.jpg','image',0),(2155,90,'/q/3/q3e3e3e3.jpg','image',0),(2156,90,'/2/2/2232e33e3e.jpg','image',0),(2157,90,'/3/3/3343rr44_1.jpg','image',0),(2158,90,'/3/4/34444r4r_1.jpg','image',0),(2159,90,'/q/3/q3e3e3e3_1.jpg','image',0),(2160,90,'/2/2/2232e33e3e_1.jpg','image',0),(2161,90,'/3/4/34r4r4r4.jpg','image',0),(2162,90,'/8/7/87hhou787.jpg','image',0),(2163,90,'/2/3/2343e3d4ff.jpg','image',0),(2164,90,'/6/5/6542334rfd.jpg','image',0),(2165,90,'/2/4/2454654fff.jpg','image',0),(2166,90,'/2/d/2d3ddff5.jpg','image',0),(2167,90,'/2/e/2e3e3ddd.jpg','image',0),(2168,90,'/4/2/422edd33d.jpg','image',0),(2169,90,'/3/4/34r4r4r4_1.jpg','image',0),(2170,90,'/8/7/87hhou787_1.jpg','image',0),(2171,90,'/2/3/2343e3d4ff_1.jpg','image',0),(2172,90,'/6/5/6542334rfd_1.jpg','image',0),(2173,90,'/2/4/2454654fff_1.jpg','image',0),(2174,90,'/2/d/2d3ddff5_1.jpg','image',0),(2175,90,'/2/e/2e3e3ddd_1.jpg','image',0),(2176,90,'/4/2/422edd33d_1.jpg','image',0),(2177,90,'/3/4/34r4r4r4_2.jpg','image',0),(2178,90,'/8/7/87hhou787_2.jpg','image',0),(2179,90,'/2/3/2343e3d4ff_2.jpg','image',0),(2180,90,'/6/5/6542334rfd_2.jpg','image',0),(2181,90,'/2/4/2454654fff_2.jpg','image',0),(2182,90,'/2/d/2d3ddff5_2.jpg','image',0),(2183,90,'/2/e/2e3e3ddd_2.jpg','image',0),(2184,90,'/4/2/422edd33d_2.jpg','image',0),(2185,90,'/3/4/34r4r4r4_3.jpg','image',0),(2186,90,'/8/7/87hhou787_3.jpg','image',0),(2187,90,'/2/3/2343e3d4ff_3.jpg','image',0),(2188,90,'/6/5/6542334rfd_3.jpg','image',0),(2189,90,'/2/4/2454654fff_3.jpg','image',0),(2190,90,'/2/d/2d3ddff5_3.jpg','image',0),(2191,90,'/2/e/2e3e3ddd_3.jpg','image',0),(2192,90,'/4/2/422edd33d_3.jpg','image',0),(2193,90,'/3/4/34r4r4r4_4.jpg','image',0),(2194,90,'/8/7/87hhou787_4.jpg','image',0),(2195,90,'/2/3/2343e3d4ff_4.jpg','image',0),(2196,90,'/6/5/6542334rfd_4.jpg','image',0),(2197,90,'/2/4/2454654fff_4.jpg','image',0),(2198,90,'/2/d/2d3ddff5_4.jpg','image',0),(2199,90,'/2/e/2e3e3ddd_4.jpg','image',0),(2200,90,'/4/2/422edd33d_4.jpg','image',0),(2201,90,'/3/4/34r4r4r4_5.jpg','image',0),(2202,90,'/8/7/87hhou787_5.jpg','image',0),(2203,90,'/2/3/2343e3d4ff_5.jpg','image',0),(2204,90,'/6/5/6542334rfd_5.jpg','image',0),(2205,90,'/2/4/2454654fff_5.jpg','image',0),(2206,90,'/2/d/2d3ddff5_5.jpg','image',0),(2207,90,'/2/e/2e3e3ddd_5.jpg','image',0),(2208,90,'/4/2/422edd33d_5.jpg','image',0),(2209,90,'/3/4/34r4r4r4_6.jpg','image',0),(2210,90,'/8/7/87hhou787_6.jpg','image',0),(2211,90,'/2/3/2343e3d4ff_6.jpg','image',0),(2212,90,'/6/5/6542334rfd_6.jpg','image',0),(2213,90,'/3/4/34r4r4r4_1_1.jpg','image',0),(2214,90,'/8/7/87hhou787_1_1.jpg','image',0),(2215,90,'/2/3/2343e3d4ff_1_1.jpg','image',0),(2216,90,'/6/5/6542334rfd_1_1.jpg','image',0),(2217,90,'/3/4/34r4r4r4_2_1.jpg','image',0),(2218,90,'/8/7/87hhou787_2_1.jpg','image',0),(2219,90,'/2/3/2343e3d4ff_2_1.jpg','image',0),(2220,90,'/6/5/6542334rfd_2_1.jpg','image',0),(2221,90,'/3/4/34r4r4r4_3_1.jpg','image',0),(2222,90,'/8/7/87hhou787_3_1.jpg','image',0),(2223,90,'/2/3/2343e3d4ff_3_1.jpg','image',0),(2224,90,'/6/5/6542334rfd_3_1.jpg','image',0),(2225,90,'/3/4/34r4r4r4_4_1.jpg','image',0),(2226,90,'/8/7/87hhou787_4_1.jpg','image',0),(2227,90,'/2/3/2343e3d4ff_4_1.jpg','image',0),(2228,90,'/6/5/6542334rfd_4_1.jpg','image',0),(2229,90,'/3/4/34r4r4r4_5_1.jpg','image',0),(2230,90,'/8/7/87hhou787_5_1.jpg','image',0),(2231,90,'/2/3/2343e3d4ff_5_1.jpg','image',0),(2232,90,'/6/5/6542334rfd_5_1.jpg','image',0),(2233,90,'/3/4/34r4r4r4_6_1.jpg','image',0),(2234,90,'/8/7/87hhou787_6_1.jpg','image',0),(2235,90,'/2/3/2343e3d4ff_6_1.jpg','image',0),(2236,90,'/6/5/6542334rfd_6_1.jpg','image',0),(2237,90,'/2/4/2454654fff_6.jpg','image',0),(2238,90,'/2/d/2d3ddff5_6.jpg','image',0),(2239,90,'/2/e/2e3e3ddd_6.jpg','image',0),(2240,90,'/4/2/422edd33d_6.jpg','image',0),(2241,90,'/2/4/2454654fff_1_1.jpg','image',0),(2242,90,'/2/d/2d3ddff5_1_1.jpg','image',0),(2243,90,'/2/e/2e3e3ddd_1_1.jpg','image',0),(2244,90,'/4/2/422edd33d_1_1.jpg','image',0),(2245,90,'/2/4/2454654fff_2_1.jpg','image',0),(2246,90,'/2/d/2d3ddff5_2_1.jpg','image',0),(2247,90,'/2/e/2e3e3ddd_2_1.jpg','image',0),(2248,90,'/4/2/422edd33d_2_1.jpg','image',0),(2249,90,'/2/4/2454654fff_3_1.jpg','image',0),(2250,90,'/2/d/2d3ddff5_3_1.jpg','image',0),(2251,90,'/2/e/2e3e3ddd_3_1.jpg','image',0),(2252,90,'/4/2/422edd33d_3_1.jpg','image',0),(2253,90,'/2/4/2454654fff_4_1.jpg','image',0),(2254,90,'/2/d/2d3ddff5_4_1.jpg','image',0),(2255,90,'/2/e/2e3e3ddd_4_1.jpg','image',0),(2256,90,'/4/2/422edd33d_4_1.jpg','image',0),(2257,90,'/2/4/2454654fff_5_1.jpg','image',0),(2258,90,'/2/d/2d3ddff5_5_1.jpg','image',0),(2259,90,'/2/e/2e3e3ddd_5_1.jpg','image',0),(2260,90,'/4/2/422edd33d_5_1.jpg','image',0),(2261,90,'/2/4/2454654fff_6_1.jpg','image',0),(2262,90,'/2/d/2d3ddff5_6_1.jpg','image',0),(2263,90,'/2/e/2e3e3ddd_6_1.jpg','image',0),(2264,90,'/4/2/422edd33d_6_1.jpg','image',0),(2265,90,'/i/m/image_31085465_74_620x757_0_1_1.jpg','image',0),(2266,90,'/i/m/image_31085465_74_620x757_3_1.jpg','image',0),(2267,90,'/i/m/image_31085465_74_620x757_4_1.jpg','image',0),(2268,90,'/i/m/image_31085465_74_620x757_2_1.jpg','image',0),(2269,90,'/i/m/image_31085465_74_620x757_0_1_1_1.jpg','image',0),(2270,90,'/i/m/image_31085465_74_620x757_3_1_1.jpg','image',0),(2271,90,'/i/m/image_31085465_74_620x757_4_1_1.jpg','image',0),(2272,90,'/i/m/image_31085465_74_620x757_2_1_1.jpg','image',0),(2273,90,'/i/m/image_31085465_74_620x757_0_1_2.jpg','image',0),(2274,90,'/i/m/image_31085465_74_620x757_3_1_2.jpg','image',0),(2275,90,'/i/m/image_31085465_74_620x757_4_2.jpg','image',0),(2276,90,'/i/m/image_31085465_74_620x757_2_2.jpg','image',0),(2277,90,'/i/m/image_31085465_74_620x757_0_1_3.jpg','image',0),(2278,90,'/i/m/image_31085465_74_620x757_3_1_3.jpg','image',0),(2279,90,'/i/m/image_31085465_74_620x757_4_3.jpg','image',0),(2280,90,'/i/m/image_31085465_74_620x757_2_3.jpg','image',0),(2281,90,'/i/m/image_31085465_74_620x757_0_1_4.jpg','image',0),(2282,90,'/i/m/image_31085465_74_620x757_3_1_4.jpg','image',0),(2283,90,'/i/m/image_31085465_74_620x757_4_4.jpg','image',0),(2284,90,'/i/m/image_31085465_74_620x757_2_4.jpg','image',0),(2285,90,'/i/m/image_31085465_74_620x757_0_1_5.jpg','image',0),(2286,90,'/i/m/image_31085465_74_620x757_3_1_5.jpg','image',0),(2287,90,'/i/m/image_31085465_74_620x757_4_5.jpg','image',0),(2288,90,'/i/m/image_31085465_74_620x757_2_5.jpg','image',0),(2289,90,'/1/2/12ws33d4e4.jpg','image',0),(2290,90,'/8/i/8i8i88u7y.jpg','image',0),(2291,90,'/2/3/2344rr4rr.jpg','image',0),(2292,90,'/5/t/5t5t55ff5f5f.jpg','image',0),(2293,90,'/1/2/12ws33d4e4_1.jpg','image',0),(2294,90,'/8/i/8i8i88u7y_1.jpg','image',0),(2295,90,'/2/3/2344rr4rr_1.jpg','image',0),(2296,90,'/5/t/5t5t55ff5f5f_1.jpg','image',0),(2297,90,'/1/2/12ws33d4e4_2.jpg','image',0),(2298,90,'/8/i/8i8i88u7y_2.jpg','image',0),(2299,90,'/2/3/2344rr4rr_2.jpg','image',0),(2300,90,'/5/t/5t5t55ff5f5f_2.jpg','image',0),(2301,90,'/1/2/12ws33d4e4_3.jpg','image',0),(2302,90,'/8/i/8i8i88u7y_3.jpg','image',0),(2303,90,'/2/3/2344rr4rr_3.jpg','image',0),(2304,90,'/5/t/5t5t55ff5f5f_3.jpg','image',0),(2305,90,'/1/2/12ws33d4e4_4.jpg','image',0),(2306,90,'/8/i/8i8i88u7y_4.jpg','image',0),(2307,90,'/2/3/2344rr4rr_4.jpg','image',0),(2308,90,'/5/t/5t5t55ff5f5f_4.jpg','image',0),(2309,90,'/1/2/12ws33d4e4_5.jpg','image',0),(2310,90,'/8/i/8i8i88u7y_5.jpg','image',0),(2311,90,'/2/3/2344rr4rr_5.jpg','image',0),(2312,90,'/5/t/5t5t55ff5f5f_5.jpg','image',0),(2313,90,'/3/5/356ggt6t.jpg','image',0),(2314,90,'/2/3/23e4r5r5r.jpg','image',0),(2315,90,'/8/8/888u765_1.jpg','image',0),(2316,90,'/3/5/3566tgg.jpg','image',0),(2317,90,'/3/5/356ggt6t_1.jpg','image',0),(2318,90,'/2/3/23e4r5r5r_1.jpg','image',0),(2319,90,'/8/8/888u765_1_1.jpg','image',0),(2320,90,'/3/5/3566tgg_1.jpg','image',0),(2321,90,'/3/5/356ggt6t_2.jpg','image',0),(2322,90,'/2/3/23e4r5r5r_2.jpg','image',0),(2323,90,'/8/8/888u765_1_2.jpg','image',0),(2324,90,'/3/5/3566tgg_2.jpg','image',0),(2325,90,'/3/5/356ggt6t_3.jpg','image',0),(2326,90,'/2/3/23e4r5r5r_3.jpg','image',0),(2327,90,'/8/8/888u765_1_3.jpg','image',0),(2328,90,'/3/5/3566tgg_3.jpg','image',0),(2329,90,'/3/5/356ggt6t_4.jpg','image',0),(2330,90,'/2/3/23e4r5r5r_4.jpg','image',0),(2331,90,'/8/8/888u765_1_4.jpg','image',0),(2332,90,'/3/5/3566tgg_4.jpg','image',0),(2333,90,'/3/5/356ggt6t_5.jpg','image',0),(2334,90,'/2/3/23e4r5r5r_5.jpg','image',0),(2335,90,'/8/8/888u765_1_5.jpg','image',0),(2336,90,'/3/5/3566tgg_5.jpg','image',0),(2337,90,'/3/4/3445tr4e.jpg','image',0),(2338,90,'/4/5/4566yyy.jpg','image',0),(2339,90,'/4/5/454rfrfrf.jpg','image',0),(2340,90,'/3/4/34rr556t66.jpg','image',0),(2341,90,'/3/4/34eeddd.jpg','image',0),(2342,90,'/3/4/3456tt5.jpg','image',0),(2343,90,'/2/4/24r4r4ee4e.jpg','image',0),(2344,90,'/3/e/3e3drrfrf.jpg','image',0),(2345,90,'/3/4/3445tr4e_1.jpg','image',0),(2346,90,'/4/5/4566yyy_1.jpg','image',0),(2347,90,'/4/5/454rfrfrf_1.jpg','image',0),(2348,90,'/3/4/34rr556t66_1.jpg','image',0),(2349,90,'/3/4/34eeddd_1.jpg','image',0),(2350,90,'/3/4/3456tt5_1.jpg','image',0),(2351,90,'/2/4/24r4r4ee4e_1.jpg','image',0),(2352,90,'/3/e/3e3drrfrf_1.jpg','image',0),(2353,90,'/3/4/3445tr4e_2.jpg','image',0),(2354,90,'/4/5/4566yyy_2.jpg','image',0),(2355,90,'/4/5/454rfrfrf_2.jpg','image',0),(2356,90,'/3/4/34rr556t66_2.jpg','image',0),(2357,90,'/3/4/34eeddd_2.jpg','image',0),(2358,90,'/3/4/3456tt5_2.jpg','image',0),(2359,90,'/2/4/24r4r4ee4e_2.jpg','image',0),(2360,90,'/3/e/3e3drrfrf_2.jpg','image',0),(2361,90,'/3/4/3445tr4e_3.jpg','image',0),(2362,90,'/4/5/4566yyy_3.jpg','image',0),(2363,90,'/4/5/454rfrfrf_3.jpg','image',0),(2364,90,'/3/4/34rr556t66_3.jpg','image',0),(2365,90,'/3/4/34eeddd_3.jpg','image',0),(2366,90,'/3/4/3456tt5_3.jpg','image',0),(2367,90,'/2/4/24r4r4ee4e_3.jpg','image',0),(2368,90,'/3/e/3e3drrfrf_3.jpg','image',0),(2369,90,'/3/4/3445tr4e_4.jpg','image',0),(2370,90,'/4/5/4566yyy_4.jpg','image',0),(2371,90,'/4/5/454rfrfrf_4.jpg','image',0),(2372,90,'/3/4/34rr556t66_4.jpg','image',0),(2373,90,'/3/4/34eeddd_4.jpg','image',0),(2374,90,'/3/4/3456tt5_4.jpg','image',0),(2375,90,'/2/4/24r4r4ee4e_4.jpg','image',0),(2376,90,'/3/e/3e3drrfrf_4.jpg','image',0),(2377,90,'/i/m/image_31305746_81_620x757_0_2_.jpg','image',0),(2378,90,'/i/m/image_31305746_81_620x757_1_2_.jpg','image',0),(2379,90,'/i/m/image_31305746_81_620x757_3_1.jpg','image',0),(2380,90,'/i/m/image_31305746_81_620x757_2_1.jpg','image',0),(2381,90,'/i/m/image_31305746_81_620x757_0_2__1.jpg','image',0),(2382,90,'/i/m/image_31305746_81_620x757_1_2__1.jpg','image',0),(2383,90,'/i/m/image_31305746_81_620x757_3_1_1.jpg','image',0),(2384,90,'/i/m/image_31305746_81_620x757_2_1_1.jpg','image',0),(2385,90,'/i/m/image_31305746_81_620x757_0_2__2.jpg','image',0),(2386,90,'/i/m/image_31305746_81_620x757_1_2__2.jpg','image',0),(2387,90,'/i/m/image_31305746_81_620x757_3_2.jpg','image',0),(2388,90,'/i/m/image_31305746_81_620x757_2_2.jpg','image',0),(2389,90,'/6/t/6t6vttghh7h.jpg','image',0),(2390,90,'/7/6/76554rghrf.jpg','image',0),(2391,90,'/3/d/3d45.jpg','image',0),(2392,90,'/6/h/6h6yy.jpg','image',0),(2393,90,'/6/t/6t6vttghh7h_1.jpg','image',0),(2394,90,'/7/6/76554rghrf_1.jpg','image',0),(2395,90,'/3/d/3d45_1.jpg','image',0),(2396,90,'/6/h/6h6yy_1.jpg','image',0),(2397,90,'/6/t/6t6vttghh7h_2.jpg','image',0),(2398,90,'/7/6/76554rghrf_2.jpg','image',0),(2399,90,'/3/d/3d45_2.jpg','image',0),(2400,90,'/6/h/6h6yy_2.jpg','image',0),(2401,90,'/2/e/2e555r4r4r.jpg','image',0),(2402,90,'/1/w/1w32wwww.jpg','image',0),(2403,90,'/3/e/3e42wqq.jpg','image',0),(2404,90,'/3/e/3eed5e.jpg','image',0),(2405,90,'/2/e/2e555r4r4r_1.jpg','image',0),(2406,90,'/1/w/1w32wwww_1.jpg','image',0),(2407,90,'/3/e/3e42wqq_1.jpg','image',0),(2408,90,'/3/e/3eed5e_1.jpg','image',0),(2409,90,'/2/e/2e555r4r4r_2.jpg','image',0),(2410,90,'/1/w/1w32wwww_2.jpg','image',0),(2411,90,'/3/e/3e42wqq_2.jpg','image',0),(2412,90,'/3/e/3eed5e_2.jpg','image',0),(2413,90,'/3/4/345454t56y6.jpg','image',0),(2414,90,'/4/5/45454t5t5.jpg','image',0),(2415,90,'/3/4/343rf4f5f.jpg','image',0),(2416,90,'/3/r/3r4r5t5ttt.jpg','image',0),(2417,90,'/8/7/87yygyg6g.jpg','image',0),(2418,90,'/4/5/4544r4t45t.jpg','image',0),(2419,90,'/4/5/45343ff.jpg','image',0),(2420,90,'/8/u/8u8u8u8.jpg','image',0),(2421,90,'/3/4/345454t56y6_1.jpg','image',0),(2422,90,'/4/5/45454t5t5_1.jpg','image',0),(2423,90,'/3/4/343rf4f5f_1.jpg','image',0),(2424,90,'/3/r/3r4r5t5ttt_1.jpg','image',0),(2425,90,'/8/7/87yygyg6g_1.jpg','image',0),(2426,90,'/4/5/4544r4t45t_1.jpg','image',0),(2427,90,'/4/5/45343ff_1.jpg','image',0),(2428,90,'/8/u/8u8u8u8_1.jpg','image',0),(2429,90,'/3/4/345454t56y6_2.jpg','image',0),(2430,90,'/4/5/45454t5t5_2.jpg','image',0),(2431,90,'/3/4/343rf4f5f_2.jpg','image',0),(2432,90,'/3/r/3r4r5t5ttt_2.jpg','image',0),(2433,90,'/8/7/87yygyg6g_2.jpg','image',0),(2434,90,'/4/5/4544r4t45t_2.jpg','image',0),(2435,90,'/4/5/45343ff_2.jpg','image',0),(2436,90,'/8/u/8u8u8u8_2.jpg','image',0),(2437,90,'/3/r/3rr44.jpg','image',0),(2438,90,'/3/2/324ffde.jpg','image',0),(2439,90,'/3/5/354dddd.jpg','image',0),(2440,90,'/3/r/3rr44_1.jpg','image',0),(2441,90,'/3/2/324ffde_1.jpg','image',0),(2442,90,'/3/5/354dddd_1.jpg','image',0),(2443,90,'/3/r/3rr44_2.jpg','image',0),(2444,90,'/3/2/324ffde_2.jpg','image',0),(2445,90,'/3/5/354dddd_2.jpg','image',0),(2446,90,'/1/2/12w222.jpg','image',0),(2447,90,'/3/g/3g5g567.jpg','image',0),(2448,90,'/3/e/3er444r.jpg','image',0),(2449,90,'/1/2/12w222_1.jpg','image',0),(2450,90,'/3/g/3g5g567_1.jpg','image',0),(2451,90,'/3/e/3er444r_1.jpg','image',0),(2452,90,'/1/2/12w222_2.jpg','image',0),(2453,90,'/3/g/3g5g567_2.jpg','image',0),(2454,90,'/3/e/3er444r_2.jpg','image',0),(2455,90,'/4/5/45465tggg.jpg','image',0),(2456,90,'/2/w/2w2w2w2w.jpg','image',0),(2457,90,'/2/w/2w2w2w.jpg','image',0),(2458,90,'/3/3/33e3e3e.jpg','image',0),(2459,90,'/4/5/45465tggg_1.jpg','image',0),(2460,90,'/2/w/2w2w2w2w_1.jpg','image',0),(2461,90,'/2/w/2w2w2w_1.jpg','image',0),(2462,90,'/3/3/33e3e3e_1.jpg','image',0),(2463,90,'/4/5/45465tggg_2.jpg','image',0),(2464,90,'/2/w/2w2w2w2w_2.jpg','image',0),(2465,90,'/2/w/2w2w2w_2.jpg','image',0),(2466,90,'/3/3/33e3e3e_2.jpg','image',0),(2467,90,'/4/5/45465tggg_3.jpg','image',0),(2468,90,'/2/w/2w2w2w2w_3.jpg','image',0),(2469,90,'/2/w/2w2w2w_3.jpg','image',0),(2470,90,'/3/3/33e3e3e_3.jpg','image',0),(2471,90,'/2/1/21245tt45t.jpg','image',0),(2472,90,'/2/3/23f4f4f4f.jpg','image',0),(2473,90,'/2/3/232e3e3e3e.jpg','image',0),(2474,90,'/3/4/3434rr4r.jpg','image',0),(2475,90,'/2/1/21245tt45t_1.jpg','image',0),(2476,90,'/2/3/23f4f4f4f_1.jpg','image',0),(2477,90,'/2/3/232e3e3e3e_1.jpg','image',0),(2478,90,'/3/4/3434rr4r_1.jpg','image',0),(2479,90,'/2/1/21245tt45t_2.jpg','image',0),(2480,90,'/2/3/23f4f4f4f_2.jpg','image',0),(2481,90,'/2/3/232e3e3e3e_2.jpg','image',0),(2482,90,'/3/4/3434rr4r_2.jpg','image',0),(2483,90,'/2/1/21245tt45t_3.jpg','image',0),(2484,90,'/2/3/23f4f4f4f_3.jpg','image',0),(2485,90,'/2/3/232e3e3e3e_3.jpg','image',0),(2486,90,'/3/4/3434rr4r_3.jpg','image',0),(2487,90,'/1/w/1w1w1w1w.jpg','image',0),(2488,90,'/4/r/4r4r5t5t.jpg','image',0),(2489,90,'/2/e/2e3e3r4r.jpg','image',0),(2490,90,'/1/w/1w1w1w1w_1.jpg','image',0),(2491,90,'/4/r/4r4r5t5t_1.jpg','image',0),(2492,90,'/2/e/2e3e3r4r_1.jpg','image',0),(2493,90,'/1/w/1w1w1w1w_2.jpg','image',0),(2494,90,'/4/r/4r4r5t5t_2.jpg','image',0),(2495,90,'/2/e/2e3e3r4r_2.jpg','image',0),(2496,90,'/9/8/98kkjj_1.jpg','image',0),(2497,90,'/3/e/3e3er5t5t.jpg','image',0),(2498,90,'/4/r/4r4r4r.jpg','image',0),(2499,90,'/9/8/98kkjj_1_1.jpg','image',0),(2500,90,'/3/e/3e3er5t5t_1.jpg','image',0),(2501,90,'/4/r/4r4r4r_1.jpg','image',0),(2502,90,'/9/8/98kkjj_1_2.jpg','image',0),(2503,90,'/3/e/3e3er5t5t_2.jpg','image',0),(2504,90,'/4/r/4r4r4r_2.jpg','image',0),(2505,90,'/3/e/3e3e3e.jpg','image',0),(2506,90,'/3/e/3er44r4r.jpg','image',0),(2507,90,'/9/8/98kkjj_1_3.jpg','image',0),(2508,90,'/3/e/3e3e3e3e3er4.jpg','image',0),(2509,90,'/3/e/3e3e3e_1.jpg','image',0),(2510,90,'/3/e/3er44r4r_1.jpg','image',0),(2511,90,'/9/8/98kkjj_1_1_1.jpg','image',0),(2512,90,'/3/e/3e3e3e3e3er4_1.jpg','image',0),(2513,90,'/3/e/3e3e3e_2.jpg','image',0),(2514,90,'/3/e/3er44r4r_2.jpg','image',0),(2515,90,'/9/8/98kkjj_1_2_1.jpg','image',0),(2516,90,'/3/e/3e3e3e3e3er4_2.jpg','image',0),(2517,90,'/3/e/3e3e3e_3.jpg','image',0),(2518,90,'/3/e/3er44r4r_3.jpg','image',0),(2519,90,'/9/8/98kkjj_1_3_1.jpg','image',0),(2520,90,'/3/e/3e3e3e3e3er4_3.jpg','image',0),(2521,90,'/2/e/2e2ewwwww.jpg','image',0),(2522,90,'/4/4/44r3r3r3r.jpg','image',0),(2523,90,'/3/e/3e34r4r.jpg','image',0),(2524,90,'/5/y/5y6y6y6y.jpg','image',0),(2525,90,'/2/e/2e2ewwwww_1.jpg','image',0),(2526,90,'/4/4/44r3r3r3r_1.jpg','image',0),(2527,90,'/3/e/3e34r4r_1.jpg','image',0),(2528,90,'/5/y/5y6y6y6y_1.jpg','image',0),(2529,90,'/2/e/2e2ewwwww_2.jpg','image',0),(2530,90,'/4/4/44r3r3r3r_2.jpg','image',0),(2531,90,'/3/e/3e34r4r_2.jpg','image',0),(2532,90,'/5/y/5y6y6y6y_2.jpg','image',0),(2533,90,'/2/e/2e2ewwwww_3.jpg','image',0),(2534,90,'/4/4/44r3r3r3r_3.jpg','image',0),(2535,90,'/3/e/3e34r4r_3.jpg','image',0),(2536,90,'/5/y/5y6y6y6y_3.jpg','image',0),(2635,90,'/4/5/4545t666.jpg','image',0),(2636,90,'/5/6/56565y5y5y.jpg','image',0),(2637,90,'/5/t/5t5t5t5t4t4t.jpg','image',0),(2638,90,'/5/t/5t5t44r4r.jpg','image',0),(2639,90,'/4/5/4545t666_1.jpg','image',0),(2640,90,'/5/6/56565y5y5y_1.jpg','image',0),(2641,90,'/5/t/5t5t5t5t4t4t_1.jpg','image',0),(2642,90,'/5/t/5t5t44r4r_1.jpg','image',0),(2643,90,'/4/5/4545t666_2.jpg','image',0),(2644,90,'/5/6/56565y5y5y_2.jpg','image',0),(2645,90,'/5/t/5t5t5t5t4t4t_2.jpg','image',0),(2646,90,'/5/t/5t5t44r4r_2.jpg','image',0),(2647,90,'/4/5/4545t666_3.jpg','image',0),(2648,90,'/5/6/56565y5y5y_3.jpg','image',0),(2649,90,'/5/t/5t5t5t5t4t4t_3.jpg','image',0),(2650,90,'/5/t/5t5t44r4r_3.jpg','image',0),(2651,90,'/4/5/4545t666_4.jpg','image',0),(2652,90,'/5/6/56565y5y5y_4.jpg','image',0),(2653,90,'/5/t/5t5t5t5t4t4t_4.jpg','image',0),(2654,90,'/5/t/5t5t44r4r_4.jpg','image',0),(2655,90,'/i/m/image_31265248_31_970x1182_3_1.jpg','image',0),(2656,90,'/i/m/image_31265248_31_970x1182_2_1.jpg','image',0),(2657,90,'/i/m/image_31265248_31_970x1182_1_1.jpg','image',0),(2658,90,'/i/m/image_31265248_31_970x1182_0_1.jpg','image',0),(2659,90,'/i/m/image_31265248_31_970x1182_3_1_1.jpg','image',0),(2660,90,'/i/m/image_31265248_31_970x1182_2_1_1.jpg','image',0),(2661,90,'/i/m/image_31265248_31_970x1182_1_1_1.jpg','image',0),(2662,90,'/i/m/image_31265248_31_970x1182_0_1_1.jpg','image',0),(2663,90,'/i/m/image_31265248_31_970x1182_3_2.jpg','image',0),(2664,90,'/i/m/image_31265248_31_970x1182_2_2.jpg','image',0),(2665,90,'/i/m/image_31265248_31_970x1182_1_2.jpg','image',0),(2666,90,'/i/m/image_31265248_31_970x1182_0_2.jpg','image',0),(2667,90,'/i/m/image_31265248_31_970x1182_3_3.jpg','image',0),(2668,90,'/i/m/image_31265248_31_970x1182_2_3.jpg','image',0),(2669,90,'/i/m/image_31265248_31_970x1182_1_3.jpg','image',0),(2670,90,'/i/m/image_31265248_31_970x1182_0_3.jpg','image',0),(2671,90,'/i/m/image_31265248_31_970x1182_3_4.jpg','image',0),(2672,90,'/i/m/image_31265248_31_970x1182_2_4.jpg','image',0),(2673,90,'/i/m/image_31265248_31_970x1182_1_4.jpg','image',0),(2674,90,'/i/m/image_31265248_31_970x1182_0_4.jpg','image',0),(2675,90,'/3/4/3434t5t5t.jpg','image',0),(2676,90,'/6/6/667887878.jpg','image',0),(2677,90,'/6/y/6y6h6h6h6h.jpg','image',0),(2678,90,'/3/4/3434t5t5t_1.jpg','image',0),(2679,90,'/6/6/667887878_1.jpg','image',0),(2680,90,'/6/y/6y6h6h6h6h_1.jpg','image',0),(2681,90,'/3/4/3434t5t5t_2.jpg','image',0),(2682,90,'/6/6/667887878_2.jpg','image',0),(2683,90,'/6/y/6y6h6h6h6h_2.jpg','image',0),(2684,90,'/i/m/image_31203254_31_620x757_3_1.jpg','image',0),(2685,90,'/i/m/image_31203254_31_620x757_2_1.jpg','image',0),(2686,90,'/m/a/main_5_5_1.jpg','image',0),(2687,90,'/i/m/image_31203254_31_620x757_3_1_1.jpg','image',0),(2688,90,'/i/m/image_31203254_31_620x757_2_1_1.jpg','image',0),(2689,90,'/m/a/main_5_5_1_1.jpg','image',0),(2690,90,'/i/m/image_31203254_31_620x757_3_2.jpg','image',0),(2691,90,'/i/m/image_31203254_31_620x757_2_2.jpg','image',0),(2692,90,'/m/a/main_5_5_1_2.jpg','image',0),(2693,90,'/i/m/image_30988045_20_970x1182_0_1_1.jpg','image',0),(2694,90,'/i/m/image_30988045_20_970x1182_3_1_1.jpg','image',0),(2695,90,'/i/m/image_30988045_20_970x1182_2_1_1.jpg','image',0),(2696,90,'/i/m/image_30988045_20_970x1182_1_1_1.jpg','image',0),(2697,90,'/i/m/image_30988045_20_970x1182_0_1_1_1.jpg','image',0),(2698,90,'/i/m/image_30988045_20_970x1182_3_1_1_1.jpg','image',0),(2699,90,'/i/m/image_30988045_20_970x1182_2_1_1_1.jpg','image',0),(2700,90,'/i/m/image_30988045_20_970x1182_1_1_1_1.jpg','image',0),(2701,90,'/i/m/image_30988045_20_970x1182_0_1_2.jpg','image',0),(2702,90,'/i/m/image_30988045_20_970x1182_3_1_2.jpg','image',0),(2703,90,'/i/m/image_30988045_20_970x1182_2_1_2.jpg','image',0),(2704,90,'/i/m/image_30988045_20_970x1182_1_1_2.jpg','image',0),(2705,90,'/i/m/image_30988045_20_970x1182_0_1_3.jpg','image',0),(2706,90,'/i/m/image_30988045_20_970x1182_3_1_3.jpg','image',0),(2707,90,'/i/m/image_30988045_20_970x1182_2_1_3.jpg','image',0),(2708,90,'/i/m/image_30988045_20_970x1182_1_1_3.jpg','image',0),(2709,90,'/4/3/43r3e3e3e_4.jpg','image',0),(2710,90,'/5/t/5t5tr4r4_4.jpg','image',0),(2711,90,'/4/5/4534r4r4r442_4.jpg','image',0),(2712,90,'/5/6/565t55t_4.jpg','image',0),(2713,90,'/4/3/43r3e3e3e_1_1.jpg','image',0),(2714,90,'/5/t/5t5tr4r4_1_1.jpg','image',0),(2715,90,'/4/5/4534r4r4r442_1_1.jpg','image',0),(2716,90,'/5/6/565t55t_1_1.jpg','image',0),(2717,90,'/4/3/43r3e3e3e_2_1.jpg','image',0),(2718,90,'/5/t/5t5tr4r4_2_1.jpg','image',0),(2719,90,'/4/5/4534r4r4r442_2_1.jpg','image',0),(2720,90,'/5/6/565t55t_2_1.jpg','image',0),(2721,90,'/4/3/43r3e3e3e_3_1.jpg','image',0),(2722,90,'/5/t/5t5tr4r4_3_1.jpg','image',0),(2723,90,'/4/5/4534r4r4r442_3_1.jpg','image',0),(2724,90,'/5/6/565t55t_3_1.jpg','image',0),(2725,90,'/6/5/6565g5g5g5g_4.jpg','image',0),(2726,90,'/5/6/565t4t4t4_4.jpg','image',0),(2727,90,'/3/4/3434232eee_4.jpg','image',0),(2728,90,'/3/5/354544r4r4_4.jpg','image',0),(2729,90,'/6/5/6565g5g5g5g_1_1.jpg','image',0),(2730,90,'/5/6/565t4t4t4_1_1.jpg','image',0),(2731,90,'/3/4/3434232eee_1_1.jpg','image',0),(2732,90,'/3/5/354544r4r4_1_1.jpg','image',0),(2733,90,'/6/5/6565g5g5g5g_2_1.jpg','image',0),(2734,90,'/5/6/565t4t4t4_2_1.jpg','image',0),(2735,90,'/3/4/3434232eee_2_1.jpg','image',0),(2736,90,'/3/5/354544r4r4_2_1.jpg','image',0),(2737,90,'/6/5/6565g5g5g5g_3_1.jpg','image',0),(2738,90,'/5/6/565t4t4t4_3_1.jpg','image',0),(2739,90,'/3/4/3434232eee_3_1.jpg','image',0),(2740,90,'/3/5/354544r4r4_3_1.jpg','image',0),(2741,90,'/i/m/image_31226241_25_970x1182_0_1.jpg','image',0),(2742,90,'/i/m/image_31226241_25_970x1182_1_1.jpg','image',0),(2743,90,'/i/m/image_31226241_25_970x1182_3_1.jpg','image',0),(2744,90,'/i/m/image_31226241_25_970x1182_2_1.jpg','image',0),(2745,90,'/i/m/image_31226241_25_970x1182_0_1_1.jpg','image',0),(2746,90,'/i/m/image_31226241_25_970x1182_1_1_1.jpg','image',0),(2747,90,'/i/m/image_31226241_25_970x1182_3_1_1.jpg','image',0),(2748,90,'/i/m/image_31226241_25_970x1182_2_1_1.jpg','image',0),(2749,90,'/i/m/image_31226241_25_970x1182_0_2.jpg','image',0),(2750,90,'/i/m/image_31226241_25_970x1182_1_2.jpg','image',0),(2751,90,'/i/m/image_31226241_25_970x1182_3_2.jpg','image',0),(2752,90,'/i/m/image_31226241_25_970x1182_2_2.jpg','image',0),(2753,90,'/2/3/232323333_1_1.jpg','image',0),(2754,90,'/4/5/455tt4t4t4t_1_1.jpg','image',0),(2755,90,'/2/3/23234r4r4r_1_1.jpg','image',0),(2756,90,'/4/5/45455t5t_1_1.jpg','image',0),(2757,90,'/2/3/232323333_1_1_1.jpg','image',0),(2758,90,'/4/5/455tt4t4t4t_1_1_1.jpg','image',0),(2759,90,'/2/3/23234r4r4r_1_1_1.jpg','image',0),(2760,90,'/4/5/45455t5t_1_1_1.jpg','image',0),(2761,90,'/2/3/232323333_1_2.jpg','image',0),(2762,90,'/4/5/455tt4t4t4t_1_2.jpg','image',0),(2763,90,'/2/3/23234r4r4r_1_2.jpg','image',0),(2764,90,'/4/5/45455t5t_1_2.jpg','image',0),(2765,90,'/2/5/255tt4r4r_1_1.jpg','image',0),(2766,90,'/3/e/3e1wwqw_1_1.jpg','image',0),(2767,90,'/6/5/65y5t5t5t_1_1.jpg','image',0),(2768,90,'/5/7/57565t5g5t_1_1.jpg','image',0),(2769,90,'/2/5/255tt4r4r_1_1_1.jpg','image',0),(2770,90,'/3/e/3e1wwqw_1_1_1.jpg','image',0),(2771,90,'/6/5/65y5t5t5t_1_1_1.jpg','image',0),(2772,90,'/5/7/57565t5g5t_1_1_1.jpg','image',0),(2773,90,'/2/5/255tt4r4r_1_2.jpg','image',0),(2774,90,'/3/e/3e1wwqw_1_2.jpg','image',0),(2775,90,'/6/5/65y5t5t5t_1_2.jpg','image',0),(2776,90,'/5/7/57565t5g5t_1_2.jpg','image',0),(2777,90,'/i/m/image_31250794_20_970x1182_0_1.jpg','image',0),(2778,90,'/i/m/image_31250794_20_970x1182_1_1.jpg','image',0),(2779,90,'/i/m/image_31250794_20_970x1182_3_1.jpg','image',0),(2780,90,'/i/m/image_31250794_20_970x1182_2_1.jpg','image',0),(2781,90,'/i/m/image_31250794_20_970x1182_0_1_1.jpg','image',0),(2782,90,'/i/m/image_31250794_20_970x1182_1_1_1.jpg','image',0),(2783,90,'/i/m/image_31250794_20_970x1182_3_1_1.jpg','image',0),(2784,90,'/i/m/image_31250794_20_970x1182_2_1_1.jpg','image',0),(2785,90,'/i/m/image_31250794_20_970x1182_0_2.jpg','image',0),(2786,90,'/i/m/image_31250794_20_970x1182_1_2.jpg','image',0),(2787,90,'/i/m/image_31250794_20_970x1182_3_2.jpg','image',0),(2788,90,'/i/m/image_31250794_20_970x1182_2_2.jpg','image',0),(2789,90,'/3/2/32e2e2e2e2e_3.jpg','image',0),(2790,90,'/3/4/343f4r4t_3.jpg','image',0),(2791,90,'/6/y/6y6yg44r_3.jpg','image',0),(2792,90,'/5/6/566y5y5t5t_3.jpg','image',0),(2793,90,'/3/2/32e2e2e2e2e_1_1.jpg','image',0),(2794,90,'/3/4/343f4r4t_1_1.jpg','image',0),(2795,90,'/6/y/6y6yg44r_1_1.jpg','image',0),(2796,90,'/5/6/566y5y5t5t_1_1.jpg','image',0),(2797,90,'/3/2/32e2e2e2e2e_2_1.jpg','image',0),(2798,90,'/3/4/343f4r4t_2_1.jpg','image',0),(2799,90,'/6/y/6y6yg44r_2_1.jpg','image',0),(2800,90,'/5/6/566y5y5t5t_2_1.jpg','image',0),(2801,90,'/5/6/567yhthyh_3.jpg','image',0),(2802,90,'/3/4/34rf4f4f_3.jpg','image',0),(2803,90,'/3/4/3434rr_3.jpg','image',0),(2804,90,'/4/6/46yht5t_3.jpg','image',0),(2805,90,'/5/6/567yhthyh_1_1.jpg','image',0),(2806,90,'/3/4/34rf4f4f_1_1.jpg','image',0),(2807,90,'/3/4/3434rr_1_1.jpg','image',0),(2808,90,'/4/6/46yht5t_1_1.jpg','image',0),(2809,90,'/5/6/567yhthyh_2_1.jpg','image',0),(2810,90,'/3/4/34rf4f4f_2_1.jpg','image',0),(2811,90,'/3/4/3434rr_2_1.jpg','image',0),(2812,90,'/4/6/46yht5t_2_1.jpg','image',0),(2813,90,'/m/a/main_5_3_1.jpg','image',0),(2814,90,'/i/m/image_31324632_33_620x757_3_1.jpg','image',0),(2815,90,'/i/m/image_31324632_33_620x757_2_1.jpg','image',0),(2816,90,'/m/a/main_5_3_1_1.jpg','image',0),(2817,90,'/i/m/image_31324632_33_620x757_3_1_1.jpg','image',0),(2818,90,'/i/m/image_31324632_33_620x757_2_1_1.jpg','image',0),(2819,90,'/m/a/main_5_3_2.jpg','image',0),(2820,90,'/i/m/image_31324632_33_620x757_3_2.jpg','image',0),(2821,90,'/i/m/image_31324632_33_620x757_2_2.jpg','image',0),(2822,90,'/2/w/2w2w2wss_3.jpg','image',0),(2823,90,'/2/w/2w33211_3.jpg','image',0),(2824,90,'/2/2/223eeedd_3.jpg','image',0),(2825,90,'/2/w/2w2w2wss_1_1.jpg','image',0),(2826,90,'/2/w/2w33211_1_1.jpg','image',0),(2827,90,'/2/2/223eeedd_1_1.jpg','image',0),(2828,90,'/2/w/2w2w2wss_2_1.jpg','image',0),(2829,90,'/2/w/2w33211_2_1.jpg','image',0),(2830,90,'/2/2/223eeedd_2_1.jpg','image',0),(2831,90,'/3/3/33e3222_3.jpg','image',0),(2832,90,'/2/w/2w1122112_3.jpg','image',0),(2833,90,'/5/t/5t5t4333_3.jpg','image',0),(2834,90,'/3/3/33e3222_1_1.jpg','image',0),(2835,90,'/2/w/2w1122112_1_1.jpg','image',0),(2836,90,'/5/t/5t5t4333_1_1.jpg','image',0),(2837,90,'/3/3/33e3222_2_1.jpg','image',0),(2838,90,'/2/w/2w1122112_2_1.jpg','image',0),(2839,90,'/5/t/5t5t4333_2_1.jpg','image',0),(2840,90,'/5/t/5t4rr4r3r.jpg','image',0),(2841,90,'/5/t/5t4r4r5t5.jpg','image',0),(2842,90,'/4/3/43ee.jpg','image',0),(2843,90,'/6/5/654rttt.jpg','image',0),(2844,90,'/5/t/5t4rr4r3r_1.jpg','image',0),(2845,90,'/5/t/5t4r4r5t5_1.jpg','image',0),(2846,90,'/4/3/43ee_1.jpg','image',0),(2847,90,'/6/5/654rttt_1.jpg','image',0),(2848,90,'/5/t/5t4rr4r3r_2.jpg','image',0),(2849,90,'/5/t/5t4r4r5t5_2.jpg','image',0),(2850,90,'/4/3/43ee_2.jpg','image',0),(2851,90,'/6/5/654rttt_2.jpg','image',0),(2852,90,'/i/m/image_31302817_21_970x1182_0-3_1.jpg','image',0),(2853,90,'/i/m/image_31302817_21_970x1182_1-2_1.jpg','image',0),(2854,90,'/i/m/image_31302817_21_970x1182_2-3_1.jpg','image',0),(2855,90,'/i/m/image_31302817_21_970x1182_3-2_1.jpg','image',0),(2856,90,'/i/m/image_31302817_21_970x1182_0-3_1_1.jpg','image',0),(2857,90,'/i/m/image_31302817_21_970x1182_1-2_1_1.jpg','image',0),(2858,90,'/i/m/image_31302817_21_970x1182_2-3_1_1.jpg','image',0),(2859,90,'/i/m/image_31302817_21_970x1182_3-2_1_1.jpg','image',0),(2860,90,'/i/m/image_31302817_21_970x1182_0-3_2.jpg','image',0),(2861,90,'/i/m/image_31302817_21_970x1182_1-2_2.jpg','image',0),(2862,90,'/i/m/image_31302817_21_970x1182_2-3_2.jpg','image',0),(2863,90,'/i/m/image_31302817_21_970x1182_3-2_2.jpg','image',0),(2864,90,'/3/4/34rew23.jpg','image',0),(2865,90,'/4/f/4fe34555.jpg','image',0),(2866,90,'/1/q/1qw3e4rrr.jpg','image',0),(2867,90,'/2/w/2w3eee.jpg','image',0),(2868,90,'/3/4/34rew23_1.jpg','image',0),(2869,90,'/4/f/4fe34555_1.jpg','image',0),(2870,90,'/1/q/1qw3e4rrr_1.jpg','image',0),(2871,90,'/2/w/2w3eee_1.jpg','image',0),(2872,90,'/3/4/34rew23_2.jpg','image',0),(2873,90,'/4/f/4fe34555_2.jpg','image',0),(2874,90,'/1/q/1qw3e4rrr_2.jpg','image',0),(2875,90,'/2/w/2w3eee_2.jpg','image',0),(2876,90,'/i/m/image_31231309_25_970x1182_0_1.jpg','image',0),(2877,90,'/i/m/image_31231309_25_970x1182_1_1.jpg','image',0),(2878,90,'/i/m/image_31231309_25_970x1182_3_1.jpg','image',0),(2879,90,'/i/m/image_31231309_25_970x1182_2_1.jpg','image',0),(2880,90,'/i/m/image_31231309_25_970x1182_0_1_1.jpg','image',0),(2881,90,'/i/m/image_31231309_25_970x1182_1_1_1.jpg','image',0),(2882,90,'/i/m/image_31231309_25_970x1182_3_1_1.jpg','image',0),(2883,90,'/i/m/image_31231309_25_970x1182_2_1_1.jpg','image',0),(2884,90,'/i/m/image_31231309_25_970x1182_0_2.jpg','image',0),(2885,90,'/i/m/image_31231309_25_970x1182_1_2.jpg','image',0),(2886,90,'/i/m/image_31231309_25_970x1182_3_2.jpg','image',0),(2887,90,'/i/m/image_31231309_25_970x1182_2_2.jpg','image',0),(2888,90,'/w/3/w3e3e2w2w2w.jpg','image',0),(2889,90,'/2/w/2w3e4r4r4r.jpg','image',0),(2890,90,'/1/q/1qw23eww.jpg','image',0),(2891,90,'/1/q/1q1qw2w2w2.jpg','image',0),(2892,90,'/w/3/w3e3e2w2w2w_1.jpg','image',0),(2893,90,'/2/w/2w3e4r4r4r_1.jpg','image',0),(2894,90,'/1/q/1qw23eww_1.jpg','image',0),(2895,90,'/1/q/1q1qw2w2w2_1.jpg','image',0),(2896,90,'/w/3/w3e3e2w2w2w_2.jpg','image',0),(2897,90,'/2/w/2w3e4r4r4r_2.jpg','image',0),(2898,90,'/1/q/1qw23eww_2.jpg','image',0),(2899,90,'/1/q/1q1qw2w2w2_2.jpg','image',0),(2900,90,'/w/3/w3e3e2w2w2w_3.jpg','image',0),(2901,90,'/2/w/2w3e4r4r4r_3.jpg','image',0),(2902,90,'/1/q/1qw23eww_3.jpg','image',0),(2903,90,'/1/q/1q1qw2w2w2_3.jpg','image',0),(2904,90,'/i/m/image_31176055_22_970x1182_0_1.jpg','image',0),(2905,90,'/i/m/image_31176055_22_970x1182_1_1.jpg','image',0),(2906,90,'/i/m/image_31176055_22_970x1182_2_1.jpg','image',0),(2907,90,'/i/m/image_31176055_22_970x1182_3_1.jpg','image',0),(2908,90,'/i/m/image_31176055_22_970x1182_0_1_1.jpg','image',0),(2909,90,'/i/m/image_31176055_22_970x1182_1_1_1.jpg','image',0),(2910,90,'/i/m/image_31176055_22_970x1182_2_1_1.jpg','image',0),(2911,90,'/i/m/image_31176055_22_970x1182_3_1_1.jpg','image',0),(2912,90,'/i/m/image_31176055_22_970x1182_0_2.jpg','image',0),(2913,90,'/i/m/image_31176055_22_970x1182_1_2.jpg','image',0),(2914,90,'/i/m/image_31176055_22_970x1182_2_2.jpg','image',0),(2915,90,'/i/m/image_31176055_22_970x1182_3_2.jpg','image',0),(2916,90,'/i/m/image_31176055_22_970x1182_0_3.jpg','image',0),(2917,90,'/i/m/image_31176055_22_970x1182_1_3.jpg','image',0),(2918,90,'/i/m/image_31176055_22_970x1182_2_3.jpg','image',0),(2919,90,'/i/m/image_31176055_22_970x1182_3_3.jpg','image',0),(2920,90,'/2/w/2w3e4rrr.jpg','image',0),(2921,90,'/2/w/2w2ss.jpg','image',0),(2922,90,'/2/w/2w3e4rrr2.jpg','image',0),(2923,90,'/3/e/3e34r.jpg','image',0),(2924,90,'/2/w/2w3e4rrr_1.jpg','image',0),(2925,90,'/2/w/2w2ss_1.jpg','image',0),(2926,90,'/2/w/2w3e4rrr2_1.jpg','image',0),(2927,90,'/3/e/3e34r_1.jpg','image',0),(2928,90,'/2/w/2w3e4rrr_2.jpg','image',0),(2929,90,'/2/w/2w2ss_2.jpg','image',0),(2930,90,'/2/w/2w3e4rrr2_2.jpg','image',0),(2931,90,'/3/e/3e34r_2.jpg','image',0),(2932,90,'/2/w/2w3e4rrr_3.jpg','image',0),(2933,90,'/2/w/2w2ss_3.jpg','image',0),(2934,90,'/2/w/2w3e4rrr2_3.jpg','image',0),(2935,90,'/3/e/3e34r_3.jpg','image',0),(2936,90,'/i/m/image_31219211_25_970x1182_0_1.jpg','image',0),(2937,90,'/i/m/image_31219211_25_970x1182_1_1.jpg','image',0),(2938,90,'/i/m/image_31219211_25_970x1182_2_1.jpg','image',0),(2939,90,'/i/m/image_31219211_25_970x1182_3_1.jpg','image',0),(2940,90,'/i/m/image_31219211_25_970x1182_0_1_1.jpg','image',0),(2941,90,'/i/m/image_31219211_25_970x1182_1_1_1.jpg','image',0),(2942,90,'/i/m/image_31219211_25_970x1182_2_1_1.jpg','image',0),(2943,90,'/i/m/image_31219211_25_970x1182_3_1_1.jpg','image',0),(2944,90,'/i/m/image_31219211_25_970x1182_0_2.jpg','image',0),(2945,90,'/i/m/image_31219211_25_970x1182_1_2.jpg','image',0),(2946,90,'/i/m/image_31219211_25_970x1182_2_2.jpg','image',0),(2947,90,'/i/m/image_31219211_25_970x1182_3_2.jpg','image',0),(2948,90,'/i/m/image_31219211_25_970x1182_0_3.jpg','image',0),(2949,90,'/i/m/image_31219211_25_970x1182_1_3.jpg','image',0),(2950,90,'/i/m/image_31219211_25_970x1182_2_3.jpg','image',0),(2951,90,'/i/m/image_31219211_25_970x1182_3_3.jpg','image',0),(2952,90,'/e/r/er54t666.jpg','image',0),(2953,90,'/2/3/23e55ttt.jpg','image',0),(2954,90,'/8/u/8u8u8u8u6yy.jpg','image',0),(2955,90,'/j/i/jijijijij.jpg','image',0),(2956,90,'/e/r/er54t666_1.jpg','image',0),(2957,90,'/2/3/23e55ttt_1.jpg','image',0),(2958,90,'/8/u/8u8u8u8u6yy_1.jpg','image',0),(2959,90,'/j/i/jijijijij_1.jpg','image',0),(2960,90,'/e/r/er54t666_2.jpg','image',0),(2961,90,'/2/3/23e55ttt_2.jpg','image',0),(2962,90,'/8/u/8u8u8u8u6yy_2.jpg','image',0),(2963,90,'/j/i/jijijijij_2.jpg','image',0),(2964,90,'/i/m/image_31091479_21_970x1182_0_1.jpg','image',0),(2965,90,'/i/m/image_31091479_21_970x1182_1_1.jpg','image',0),(2966,90,'/i/m/image_31091479_21_970x1182_2_1.jpg','image',0),(2967,90,'/i/m/image_31091479_21_970x1182_3_1.jpg','image',0),(2968,90,'/i/m/image_31091479_21_970x1182_0_1_1.jpg','image',0),(2969,90,'/i/m/image_31091479_21_970x1182_1_1_1.jpg','image',0),(2970,90,'/i/m/image_31091479_21_970x1182_2_1_1.jpg','image',0),(2971,90,'/i/m/image_31091479_21_970x1182_3_1_1.jpg','image',0),(2972,90,'/i/m/image_31091479_21_970x1182_0_2.jpg','image',0),(2973,90,'/i/m/image_31091479_21_970x1182_1_2.jpg','image',0),(2974,90,'/i/m/image_31091479_21_970x1182_2_2.jpg','image',0),(2975,90,'/i/m/image_31091479_21_970x1182_3_2.jpg','image',0),(2976,90,'/2/w/2we4r5tt.jpg','image',0),(2977,90,'/5/t/5t6y7uuu.jpg','image',0),(2978,90,'/3/4/345rtt.jpg','image',0),(2979,90,'/3/4/3455tttgg.jpg','image',0),(2980,90,'/2/w/2we4r5tt_1.jpg','image',0),(2981,90,'/5/t/5t6y7uuu_1.jpg','image',0),(2982,90,'/3/4/345rtt_1.jpg','image',0),(2983,90,'/3/4/3455tttgg_1.jpg','image',0),(2984,90,'/2/w/2we4r5tt_2.jpg','image',0),(2985,90,'/5/t/5t6y7uuu_2.jpg','image',0),(2986,90,'/3/4/345rtt_2.jpg','image',0),(2987,90,'/3/4/3455tttgg_2.jpg','image',0),(2988,90,'/i/m/image_31207365_20_970x1182_0_1.jpg','image',0),(2989,90,'/i/m/image_31207365_20_970x1182_1_1.jpg','image',0),(2990,90,'/i/m/image_31207365_20_970x1182_2_1.jpg','image',0),(2991,90,'/i/m/image_31207365_20_970x1182_3_1.jpg','image',0),(2992,90,'/i/m/image_31207365_20_970x1182_0_1_1.jpg','image',0),(2993,90,'/i/m/image_31207365_20_970x1182_1_1_1.jpg','image',0),(2994,90,'/i/m/image_31207365_20_970x1182_2_1_1.jpg','image',0),(2995,90,'/i/m/image_31207365_20_970x1182_3_1_1.jpg','image',0),(2996,90,'/i/m/image_31207365_20_970x1182_0_2.jpg','image',0),(2997,90,'/i/m/image_31207365_20_970x1182_1_2.jpg','image',0),(2998,90,'/i/m/image_31207365_20_970x1182_2_2.jpg','image',0),(2999,90,'/i/m/image_31207365_20_970x1182_3_2.jpg','image',0),(3000,90,'/8/u/8u87hbhhhhb.jpg','image',0),(3001,90,'/4/5/456yyhhh.jpg','image',0),(3002,90,'/4/r/4r5t66y677.jpg','image',0),(3003,90,'/u/u/uu8888.jpg','image',0),(3004,90,'/8/u/8u87hbhhhhb_1.jpg','image',0),(3005,90,'/4/5/456yyhhh_1.jpg','image',0),(3006,90,'/4/r/4r5t66y677_1.jpg','image',0),(3007,90,'/u/u/uu8888_1.jpg','image',0),(3008,90,'/8/u/8u87hbhhhhb_2.jpg','image',0),(3009,90,'/4/5/456yyhhh_2.jpg','image',0),(3010,90,'/4/r/4r5t66y677_2.jpg','image',0),(3011,90,'/u/u/uu8888_2.jpg','image',0),(3012,90,'/i/m/image_31166144_20_970x1182_0_1.jpg','image',0),(3013,90,'/i/m/image_31166144_20_970x1182_1_1.jpg','image',0),(3014,90,'/i/m/image_31166144_20_970x1182_2_1.jpg','image',0),(3015,90,'/i/m/image_31166144_20_970x1182_3_1.jpg','image',0),(3016,90,'/i/m/image_31166144_20_970x1182_0_1_1.jpg','image',0),(3017,90,'/i/m/image_31166144_20_970x1182_1_1_1.jpg','image',0),(3018,90,'/i/m/image_31166144_20_970x1182_2_1_1.jpg','image',0),(3019,90,'/i/m/image_31166144_20_970x1182_3_1_1.jpg','image',0),(3020,90,'/i/m/image_31166144_20_970x1182_0_2.jpg','image',0),(3021,90,'/i/m/image_31166144_20_970x1182_1_2.jpg','image',0),(3022,90,'/i/m/image_31166144_20_970x1182_2_2.jpg','image',0),(3023,90,'/i/m/image_31166144_20_970x1182_3_2.jpg','image',0),(3024,90,'/e/d/eded3.jpg','image',0),(3025,90,'/5/4/54r43333.jpg','image',0),(3026,90,'/4/r/4r5tt6t6t.jpg','image',0),(3027,90,'/3/4/345trrwq.jpg','image',0),(3028,90,'/e/d/eded3_1.jpg','image',0),(3029,90,'/5/4/54r43333_2.jpg','image',0),(3030,90,'/4/r/4r5tt6t6t_1.jpg','image',0),(3031,90,'/3/4/345trrwq_1.jpg','image',0),(3032,90,'/e/d/eded3_2.jpg','image',0),(3033,90,'/5/4/54r43333_3.jpg','image',0),(3034,90,'/4/r/4r5tt6t6t_2.jpg','image',0),(3035,90,'/3/4/345trrwq_2.jpg','image',0),(3036,90,'/i/m/image_31304863_80_970x1182_0_1.jpg','image',0),(3037,90,'/i/m/image_31304863_80_970x1182_1_1.jpg','image',0),(3038,90,'/i/m/image_31304863_80_970x1182_2_1.jpg','image',0),(3039,90,'/i/m/image_31304863_80_970x1182_3_1.jpg','image',0),(3040,90,'/i/m/image_31304863_80_970x1182_0_1_1.jpg','image',0),(3041,90,'/i/m/image_31304863_80_970x1182_1_1_1.jpg','image',0),(3042,90,'/i/m/image_31304863_80_970x1182_2_1_1.jpg','image',0),(3043,90,'/i/m/image_31304863_80_970x1182_3_1_1.jpg','image',0),(3044,90,'/i/m/image_31304863_80_970x1182_0_2.jpg','image',0),(3045,90,'/i/m/image_31304863_80_970x1182_1_2.jpg','image',0),(3046,90,'/i/m/image_31304863_80_970x1182_2_2.jpg','image',0),(3047,90,'/i/m/image_31304863_80_970x1182_3_2.jpg','image',0),(3072,90,'/6/y/6y6y6y.jpg','image',0),(3073,90,'/5/t/5t6y777.jpg','image',0),(3074,90,'/4/r/4r5t5t6t66t.jpg','image',0),(3075,90,'/6/y/6y6y6y_1.jpg','image',0),(3076,90,'/5/t/5t6y777_1.jpg','image',0),(3077,90,'/4/r/4r5t5t6t66t_1.jpg','image',0),(3078,90,'/m/a/main_3_3_1.jpg','image',0),(3079,90,'/i/m/image_31264080_96_620x757_2_1.jpg','image',0),(3080,90,'/i/m/image_31264080_96_620x757_3_1.jpg','image',0),(3081,90,'/m/a/main_3_3_1_1.jpg','image',0),(3082,90,'/i/m/image_31264080_96_620x757_2_1_1.jpg','image',0),(3083,90,'/i/m/image_31264080_96_620x757_3_1_1.jpg','image',0),(3084,90,'/4/r/4r4f4f4.jpg','image',0),(3085,90,'/7/u/7u7y6y6y6.jpg','image',0),(3086,90,'/5/t/5t5t6y6y6y.jpg','image',0),(3087,90,'/4/5/456ytrg.jpg','image',0),(3088,90,'/4/r/4r4f4f4_1.jpg','image',0),(3089,90,'/7/u/7u7y6y6y6_1.jpg','image',0),(3090,90,'/5/t/5t5t6y6y6y_1.jpg','image',0),(3091,90,'/4/5/456ytrg_1.jpg','image',0),(3092,90,'/4/r/4r4f4f4_2.jpg','image',0),(3093,90,'/7/u/7u7y6y6y6_2.jpg','image',0),(3094,90,'/5/t/5t5t6y6y6y_2.jpg','image',0),(3095,90,'/4/5/456ytrg_2.jpg','image',0),(3096,90,'/i/m/image_31204067_55_970x1182_0_3.jpg','image',0),(3097,90,'/i/m/image_31204067_55_970x1182_1_3.jpg','image',0),(3098,90,'/i/m/image_31204067_55_970x1182_2_3.jpg','image',0),(3099,90,'/i/m/image_31204067_55_970x1182_3_3.jpg','image',0),(3100,90,'/i/m/image_31204067_55_970x1182_0_1.jpg','image',0),(3101,90,'/i/m/image_31204067_55_970x1182_1_1.jpg','image',0),(3102,90,'/i/m/image_31204067_55_970x1182_2_1.jpg','image',0),(3103,90,'/i/m/image_31204067_55_970x1182_3_1.jpg','image',0),(3104,90,'/i/m/image_31204067_55_970x1182_0_2_1.jpg','image',0),(3105,90,'/i/m/image_31204067_55_970x1182_1_2_1.jpg','image',0),(3106,90,'/i/m/image_31204067_55_970x1182_2_2_1.jpg','image',0),(3107,90,'/i/m/image_31204067_55_970x1182_3_2_1.jpg','image',0),(3108,90,'/8/u/8u7yhuhu_3.jpg','image',0),(3109,90,'/e/4/e45trrr_3.jpg','image',0),(3110,90,'/7/y/7y6t6t6tguuu_3.jpg','image',0),(3111,90,'/6/y/6y7u8i9_3.jpg','image',0),(3112,90,'/8/u/8u7yhuhu_1_1.jpg','image',0),(3113,90,'/e/4/e45trrr_1_1.jpg','image',0),(3114,90,'/7/y/7y6t6t6tguuu_1_1.jpg','image',0),(3115,90,'/6/y/6y7u8i9_1_1.jpg','image',0),(3116,90,'/8/u/8u7yhuhu_2_1.jpg','image',0),(3117,90,'/e/4/e45trrr_2_1.jpg','image',0),(3118,90,'/7/y/7y6t6t6tguuu_2_1.jpg','image',0),(3119,90,'/6/y/6y7u8i9_2_1.jpg','image',0),(3120,90,'/4/5/45t6y7uu.jpg','image',0),(3121,90,'/6/y/6y6h7h7h.jpg','image',0),(3122,90,'/4/r/4r3e3er4r4.jpg','image',0),(3123,90,'/5/6/56576y6y6y.jpg','image',0),(3124,90,'/4/5/45t6y7uu_1.jpg','image',0),(3125,90,'/6/y/6y6h7h7h_1.jpg','image',0),(3126,90,'/4/r/4r3e3er4r4_1.jpg','image',0),(3127,90,'/5/6/56576y6y6y_1.jpg','image',0),(3128,90,'/4/5/45t6y7uu_2.jpg','image',0),(3129,90,'/6/y/6y6h7h7h_2.jpg','image',0),(3130,90,'/4/r/4r3e3er4r4_2.jpg','image',0),(3131,90,'/5/6/56576y6y6y_2.jpg','image',0),(3132,90,'/i/m/image_31028523_81_970x1182_0_1_1.jpg','image',0),(3133,90,'/i/m/image_31028523_81_970x1182_1_1.jpg','image',0),(3134,90,'/i/m/image_31028523_81_970x1182_2_1.jpg','image',0),(3135,90,'/i/m/image_31028523_81_970x1182_3_1.jpg','image',0),(3136,90,'/i/m/image_31028523_81_970x1182_0_1_1_1.jpg','image',0),(3137,90,'/i/m/image_31028523_81_970x1182_1_1_1.jpg','image',0),(3138,90,'/i/m/image_31028523_81_970x1182_2_1_1.jpg','image',0),(3139,90,'/i/m/image_31028523_81_970x1182_3_1_1.jpg','image',0),(3140,90,'/i/m/image_31028523_81_970x1182_0_1_2.jpg','image',0),(3141,90,'/i/m/image_31028523_81_970x1182_1_2.jpg','image',0),(3142,90,'/i/m/image_31028523_81_970x1182_2_2.jpg','image',0),(3143,90,'/i/m/image_31028523_81_970x1182_3_2.jpg','image',0),(3144,90,'/4/r/4r5t5t3e2w.jpg','image',0),(3145,90,'/5/t/5t54r4r4r.jpg','image',0),(3146,90,'/5/t/5ttrr3eeee.jpg','image',0),(3147,90,'/r/4/r4r4r3e3e.jpg','image',0),(3148,90,'/4/r/4r5t5t3e2w_1.jpg','image',0),(3149,90,'/5/t/5t54r4r4r_1.jpg','image',0),(3150,90,'/5/t/5ttrr3eeee_1.jpg','image',0),(3151,90,'/r/4/r4r4r3e3e_1.jpg','image',0),(3152,90,'/4/r/4r5t5t3e2w_2.jpg','image',0),(3153,90,'/5/t/5t54r4r4r_2.jpg','image',0),(3154,90,'/5/t/5ttrr3eeee_2.jpg','image',0),(3155,90,'/r/4/r4r4r3e3e_2.jpg','image',0),(3156,90,'/4/r/4r5t5t3e2w_3.jpg','image',0),(3157,90,'/5/t/5t54r4r4r_3.jpg','image',0),(3158,90,'/5/t/5ttrr3eeee_3.jpg','image',0),(3159,90,'/r/4/r4r4r3e3e_3.jpg','image',0),(3160,90,'/i/m/image_31202680_34_970x1182_0_1.jpg','image',0),(3161,90,'/i/m/image_31202680_34_970x1182_1_1.jpg','image',0),(3162,90,'/i/m/image_31202680_34_970x1182_2_1.jpg','image',0),(3163,90,'/i/m/image_31202680_34_970x1182_3_1.jpg','image',0),(3164,90,'/i/m/image_31202680_34_970x1182_0_1_1.jpg','image',0),(3165,90,'/i/m/image_31202680_34_970x1182_1_1_1.jpg','image',0),(3166,90,'/i/m/image_31202680_34_970x1182_2_1_1.jpg','image',0),(3167,90,'/i/m/image_31202680_34_970x1182_3_1_1.jpg','image',0),(3168,90,'/i/m/image_31202680_34_970x1182_0_2.jpg','image',0),(3169,90,'/i/m/image_31202680_34_970x1182_1_2.jpg','image',0),(3170,90,'/i/m/image_31202680_34_970x1182_2_2.jpg','image',0),(3171,90,'/i/m/image_31202680_34_970x1182_3_2.jpg','image',0),(3172,90,'/i/m/image_31202680_34_970x1182_0_3.jpg','image',0),(3173,90,'/i/m/image_31202680_34_970x1182_1_3.jpg','image',0),(3174,90,'/i/m/image_31202680_34_970x1182_2_3.jpg','image',0),(3175,90,'/i/m/image_31202680_34_970x1182_3_3.jpg','image',0),(3200,90,'/5/t/5t6ttt.jpg','image',0),(3201,90,'/5/5/55t6y6y6y.jpg','image',0),(3202,90,'/5/t/5t5t5t5t.jpg','image',0),(3203,90,'/5/5/55t5t6y6y6.jpg','image',0),(3204,90,'/5/t/5t6ttt_1.jpg','image',0),(3205,90,'/5/5/55t6y6y6y_1.jpg','image',0),(3206,90,'/5/t/5t5t5t5t_1.jpg','image',0),(3207,90,'/5/5/55t5t6y6y6_1.jpg','image',0),(3208,90,'/5/t/5t6ttt_2.jpg','image',0),(3209,90,'/5/5/55t6y6y6y_2.jpg','image',0),(3210,90,'/5/t/5t5t5t5t_2.jpg','image',0),(3211,90,'/5/5/55t5t6y6y6_2.jpg','image',0),(3212,90,'/5/t/5t6ttt_3.jpg','image',0),(3213,90,'/5/5/55t6y6y6y_3.jpg','image',0),(3214,90,'/5/t/5t5t5t5t_3.jpg','image',0),(3215,90,'/5/5/55t5t6y6y6_3.jpg','image',0),(3216,90,'/i/m/image_30977108_10_970x1182_0_1_.jpg','image',0),(3217,90,'/i/m/image_30977108_10_970x1182_1_1.jpg','image',0),(3218,90,'/i/m/image_30977108_10_970x1182_2_1.jpg','image',0),(3219,90,'/i/m/image_30977108_10_970x1182_3_1.jpg','image',0),(3220,90,'/i/m/image_30977108_10_970x1182_0_1__1.jpg','image',0),(3221,90,'/i/m/image_30977108_10_970x1182_1_1_1.jpg','image',0),(3222,90,'/i/m/image_30977108_10_970x1182_2_1_1.jpg','image',0),(3223,90,'/i/m/image_30977108_10_970x1182_3_1_1.jpg','image',0),(3224,90,'/i/m/image_30977108_10_970x1182_0_1__2.jpg','image',0),(3225,90,'/i/m/image_30977108_10_970x1182_1_2.jpg','image',0),(3226,90,'/i/m/image_30977108_10_970x1182_2_2.jpg','image',0),(3227,90,'/i/m/image_30977108_10_970x1182_3_2.jpg','image',0),(3228,90,'/i/m/image_30977108_10_970x1182_0_1__3.jpg','image',0),(3229,90,'/i/m/image_30977108_10_970x1182_1_3.jpg','image',0),(3230,90,'/i/m/image_30977108_10_970x1182_2_3.jpg','image',0),(3231,90,'/i/m/image_30977108_10_970x1182_3_3.jpg','image',0),(3232,90,'/6/y/6y6y7y7u7u7u.jpg','image',0),(3233,90,'/6/y/6y66y6y6y6y.jpg','image',0),(3234,90,'/5/t/5t6y6y6y.jpg','image',0),(3235,90,'/5/t/5t5t6y6666.jpg','image',0),(3236,90,'/6/y/6y6y7y7u7u7u_1.jpg','image',0),(3237,90,'/6/y/6y66y6y6y6y_1.jpg','image',0),(3238,90,'/5/t/5t6y6y6y_1.jpg','image',0),(3239,90,'/5/t/5t5t6y6666_1.jpg','image',0),(3240,90,'/6/y/6y6y7y7u7u7u_2.jpg','image',0),(3241,90,'/6/y/6y66y6y6y6y_2.jpg','image',0),(3242,90,'/5/t/5t6y6y6y_2.jpg','image',0),(3243,90,'/5/t/5t5t6y6666_2.jpg','image',0),(3244,90,'/6/y/6y6y7y7u7u7u_3.jpg','image',0),(3245,90,'/6/y/6y66y6y6y6y_3.jpg','image',0),(3246,90,'/5/t/5t6y6y6y_3.jpg','image',0),(3247,90,'/5/t/5t5t6y6666_3.jpg','image',0),(3248,90,'/i/m/image_31291013_25_970x1182_0_1.jpg','image',0),(3249,90,'/i/m/image_31291013_25_970x1182_1_1.jpg','image',0),(3250,90,'/i/m/image_31291013_25_970x1182_2_1.jpg','image',0),(3251,90,'/i/m/image_31291013_25_970x1182_3_1.jpg','image',0),(3252,90,'/i/m/image_31291013_25_970x1182_0_1_1.jpg','image',0),(3253,90,'/i/m/image_31291013_25_970x1182_1_1_1.jpg','image',0),(3254,90,'/i/m/image_31291013_25_970x1182_2_1_1.jpg','image',0),(3255,90,'/i/m/image_31291013_25_970x1182_3_1_1.jpg','image',0),(3256,90,'/i/m/image_31291013_25_970x1182_0_2.jpg','image',0),(3257,90,'/i/m/image_31291013_25_970x1182_1_2.jpg','image',0),(3258,90,'/i/m/image_31291013_25_970x1182_2_2.jpg','image',0),(3259,90,'/i/m/image_31291013_25_970x1182_3_2.jpg','image',0),(3260,90,'/i/m/image_31291013_25_970x1182_0_3.jpg','image',0),(3261,90,'/i/m/image_31291013_25_970x1182_1_3.jpg','image',0),(3262,90,'/i/m/image_31291013_25_970x1182_2_3.jpg','image',0),(3263,90,'/i/m/image_31291013_25_970x1182_3_3.jpg','image',0),(3264,90,'/4/5/456tyu.jpg','image',0),(3265,90,'/4/3/43ew23ee.jpg','image',0),(3266,90,'/1/2/123wqe433.jpg','image',0),(3267,90,'/1/2/123eww4.jpg','image',0),(3268,90,'/4/5/456tyu_1.jpg','image',0),(3269,90,'/4/3/43ew23ee_1.jpg','image',0),(3270,90,'/1/2/123wqe433_1.jpg','image',0),(3271,90,'/1/2/123eww4_1.jpg','image',0),(3272,90,'/4/5/456tyu_2.jpg','image',0),(3273,90,'/4/3/43ew23ee_2.jpg','image',0),(3274,90,'/1/2/123wqe433_2.jpg','image',0),(3275,90,'/1/2/123eww4_2.jpg','image',0),(3276,90,'/4/5/456tyu_3.jpg','image',0),(3277,90,'/4/3/43ew23ee_3.jpg','image',0),(3278,90,'/1/2/123wqe433_3.jpg','image',0),(3279,90,'/1/2/123eww4_3.jpg','image',0),(3280,90,'/i/m/image_31340162_80_970x1182_0_1.jpg','image',0),(3281,90,'/i/m/image_31340162_80_970x1182_1_1.jpg','image',0),(3282,90,'/i/m/image_31340162_80_970x1182_2_1.jpg','image',0),(3283,90,'/i/m/image_31340162_80_970x1182_3_1.jpg','image',0),(3284,90,'/i/m/image_31340162_80_970x1182_0_1_1.jpg','image',0),(3285,90,'/i/m/image_31340162_80_970x1182_1_1_1.jpg','image',0),(3286,90,'/i/m/image_31340162_80_970x1182_2_1_1.jpg','image',0),(3287,90,'/i/m/image_31340162_80_970x1182_3_1_1.jpg','image',0),(3288,90,'/i/m/image_31340162_80_970x1182_0_2.jpg','image',0),(3289,90,'/i/m/image_31340162_80_970x1182_1_2.jpg','image',0),(3290,90,'/i/m/image_31340162_80_970x1182_2_2.jpg','image',0),(3291,90,'/i/m/image_31340162_80_970x1182_3_2.jpg','image',0),(3292,90,'/i/m/image_31340162_80_970x1182_0_3.jpg','image',0),(3293,90,'/i/m/image_31340162_80_970x1182_1_3.jpg','image',0),(3294,90,'/i/m/image_31340162_80_970x1182_2_3.jpg','image',0),(3295,90,'/i/m/image_31340162_80_970x1182_3_3.jpg','image',0),(3296,90,'/2/w/2w3e4rrr_4.jpg','image',0),(3297,90,'/2/3/2344t5t5t5t.jpg','image',0),(3298,90,'/2/w/2w3e4rrr_1_1.jpg','image',0),(3299,90,'/2/3/2344t5t5t5t_1.jpg','image',0),(3300,90,'/i/m/image_31305260_80_620x757_0_1.jpg','image',0),(3301,90,'/i/m/image_31305260_80_620x757_1_1.jpg','image',0),(3302,90,'/i/m/image_31305260_80_620x757_0_1_1.jpg','image',0),(3303,90,'/i/m/image_31305260_80_620x757_1_1_1.jpg','image',0),(3304,90,'/4/r/4r5ew2333.jpg','image',0),(3305,90,'/2/3/23ee4rrr.jpg','image',0),(3306,90,'/4/3/43434rr55.jpg','image',0),(3307,90,'/1/2/1234ee_2.jpg','image',0),(3308,90,'/4/r/4r5ew2333_1.jpg','image',0),(3309,90,'/2/3/23ee4rrr_1.jpg','image',0),(3310,90,'/4/3/43434rr55_1.jpg','image',0),(3311,90,'/1/2/1234ee_2_1.jpg','image',0),(3312,90,'/i/m/image_31240220_10_970x1182_0_1.jpg','image',0),(3313,90,'/i/m/image_31240220_10_970x1182_1_1.jpg','image',0),(3314,90,'/i/m/image_31240220_10_970x1182_2_1.jpg','image',0),(3315,90,'/i/m/image_31240220_10_970x1182_3_1.jpg','image',0),(3316,90,'/i/m/image_31240220_10_970x1182_0_1_1.jpg','image',0),(3317,90,'/i/m/image_31240220_10_970x1182_1_1_1.jpg','image',0),(3318,90,'/i/m/image_31240220_10_970x1182_2_1_1.jpg','image',0),(3319,90,'/i/m/image_31240220_10_970x1182_3_1_1.jpg','image',0),(3320,90,'/1/2/123344e.jpg','image',0),(3321,90,'/2/e/2e43w2q1.jpg','image',0),(3322,90,'/1/2/12w3e4rr4.jpg','image',0),(3323,90,'/1/2/123344e_1.jpg','image',0),(3324,90,'/2/e/2e43w2q1_1.jpg','image',0),(3325,90,'/1/2/12w3e4rr4_1.jpg','image',0),(3326,90,'/1/2/123344e_2.jpg','image',0),(3327,90,'/2/e/2e43w2q1_2.jpg','image',0),(3328,90,'/1/2/12w3e4rr4_2.jpg','image',0),(3329,90,'/i/m/image_31350783_66_620x757_0_1_1.jpg','image',0),(3330,90,'/i/m/image_31350783_66_620x757_1_1_1.jpg','image',0),(3331,90,'/i/m/image_31350783_66_620x757_3_1_1.jpg','image',0),(3332,90,'/i/m/image_31350783_66_620x757_0_1_1_1.jpg','image',0),(3333,90,'/i/m/image_31350783_66_620x757_1_1_1_1.jpg','image',0),(3334,90,'/i/m/image_31350783_66_620x757_3_1_1_1.jpg','image',0),(3335,90,'/i/m/image_31350783_66_620x757_0_1_2.jpg','image',0),(3336,90,'/i/m/image_31350783_66_620x757_1_1_2.jpg','image',0),(3337,90,'/i/m/image_31350783_66_620x757_3_1_2.jpg','image',0),(3338,90,'/q/w/qw3333.jpg','image',0),(3339,90,'/1/4/14r555tt.jpg','image',0),(3340,90,'/4/3/434334rr.jpg','image',0),(3341,90,'/8/7/87y6t6544.jpg','image',0),(3342,90,'/q/w/qw3333_1.jpg','image',0),(3343,90,'/1/4/14r555tt_1.jpg','image',0),(3344,90,'/4/3/434334rr_1.jpg','image',0),(3345,90,'/8/7/87y6t6544_1.jpg','image',0),(3346,90,'/q/w/qw3333_2.jpg','image',0),(3347,90,'/1/4/14r555tt_2.jpg','image',0),(3348,90,'/4/3/434334rr_2.jpg','image',0),(3349,90,'/8/7/87y6t6544_2.jpg','image',0),(3350,90,'/q/w/qw3333_3.jpg','image',0),(3351,90,'/1/4/14r555tt_3.jpg','image',0),(3352,90,'/4/3/434334rr_3.jpg','image',0),(3353,90,'/8/7/87y6t6544_3.jpg','image',0),(3354,90,'/i/m/image_31319864_25_970x1182_0_1.jpg','image',0),(3355,90,'/i/m/image_31319864_25_970x1182_1_1.jpg','image',0),(3356,90,'/i/m/image_31319864_25_970x1182_2_1.jpg','image',0),(3357,90,'/i/m/image_31319864_25_970x1182_3_1.jpg','image',0),(3358,90,'/i/m/image_31319864_25_970x1182_0_1_1.jpg','image',0),(3359,90,'/i/m/image_31319864_25_970x1182_1_1_1.jpg','image',0),(3360,90,'/i/m/image_31319864_25_970x1182_2_1_1.jpg','image',0),(3361,90,'/i/m/image_31319864_25_970x1182_3_1_1.jpg','image',0),(3362,90,'/i/m/image_31319864_25_970x1182_0_2.jpg','image',0),(3363,90,'/i/m/image_31319864_25_970x1182_1_2.jpg','image',0),(3364,90,'/i/m/image_31319864_25_970x1182_2_2.jpg','image',0),(3365,90,'/i/m/image_31319864_25_970x1182_3_2.jpg','image',0),(3366,90,'/i/m/image_31319864_25_970x1182_0_3.jpg','image',0),(3367,90,'/i/m/image_31319864_25_970x1182_1_3.jpg','image',0),(3368,90,'/i/m/image_31319864_25_970x1182_2_3.jpg','image',0),(3369,90,'/i/m/image_31319864_25_970x1182_3_3.jpg','image',0),(3370,90,'/2/3/2343e4e4e.jpg','image',0),(3371,90,'/4/5/4566y6tt.jpg','image',0),(3372,90,'/3/4/3456tt.jpg','image',0),(3373,90,'/3/4/344344rr.jpg','image',0),(3374,90,'/2/3/2343e4e4e_1.jpg','image',0),(3375,90,'/4/5/4566y6tt_1.jpg','image',0),(3376,90,'/3/4/3456tt_1.jpg','image',0),(3377,90,'/3/4/344344rr_1.jpg','image',0),(3378,90,'/2/3/2343e4e4e_2.jpg','image',0),(3379,90,'/4/5/4566y6tt_2.jpg','image',0),(3380,90,'/3/4/3456tt_2.jpg','image',0),(3381,90,'/3/4/344344rr_2.jpg','image',0),(3382,90,'/2/3/2343e4e4e_3.jpg','image',0),(3383,90,'/4/5/4566y6tt_3.jpg','image',0),(3384,90,'/3/4/3456tt_3.jpg','image',0),(3385,90,'/3/4/344344rr_3.jpg','image',0),(3386,90,'/i/m/image_31239294_22_970x1182_0_1.jpg','image',0),(3387,90,'/i/m/image_31239294_22_970x1182_1_1.jpg','image',0),(3388,90,'/i/m/image_31239294_22_970x1182_2_1.jpg','image',0),(3389,90,'/i/m/image_31239294_22_970x1182_3_1.jpg','image',0),(3390,90,'/i/m/image_31239294_22_970x1182_0_1_1.jpg','image',0),(3391,90,'/i/m/image_31239294_22_970x1182_1_1_1.jpg','image',0),(3392,90,'/i/m/image_31239294_22_970x1182_2_1_1.jpg','image',0),(3393,90,'/i/m/image_31239294_22_970x1182_3_1_1.jpg','image',0),(3394,90,'/i/m/image_31239294_22_970x1182_0_2.jpg','image',0),(3395,90,'/i/m/image_31239294_22_970x1182_1_2.jpg','image',0),(3396,90,'/i/m/image_31239294_22_970x1182_2_2.jpg','image',0),(3397,90,'/i/m/image_31239294_22_970x1182_3_2.jpg','image',0),(3398,90,'/i/m/image_31239294_22_970x1182_0_3.jpg','image',0),(3399,90,'/i/m/image_31239294_22_970x1182_1_3.jpg','image',0),(3400,90,'/i/m/image_31239294_22_970x1182_2_3.jpg','image',0),(3401,90,'/i/m/image_31239294_22_970x1182_3_3.jpg','image',0),(3402,90,'/5/4/54rr5.jpg','image',0),(3403,90,'/6/y/6y5t5t5.jpg','image',0),(3404,90,'/5/6/565tt.jpg','image',0),(3405,90,'/5/5/555t6t6t6.jpg','image',0),(3406,90,'/5/4/54rr5_1.jpg','image',0),(3407,90,'/6/y/6y5t5t5_1.jpg','image',0),(3408,90,'/5/6/565tt_1.jpg','image',0),(3409,90,'/5/5/555t6t6t6_1.jpg','image',0),(3410,90,'/5/4/54rr5_2.jpg','image',0),(3411,90,'/6/y/6y5t5t5_2.jpg','image',0),(3412,90,'/5/6/565tt_2.jpg','image',0),(3413,90,'/5/5/555t6t6t6_2.jpg','image',0),(3414,90,'/5/4/54rr5_3.jpg','image',0),(3415,90,'/6/y/6y5t5t5_3.jpg','image',0),(3416,90,'/5/6/565tt_3.jpg','image',0),(3417,90,'/5/5/555t6t6t6_3.jpg','image',0),(3418,90,'/5/4/54rr5_4.jpg','image',0),(3419,90,'/6/y/6y5t5t5_4.jpg','image',0),(3420,90,'/5/6/565tt_4.jpg','image',0),(3421,90,'/5/5/555t6t6t6_4.jpg','image',0),(3422,90,'/i/m/image_30977037_25_970x1182_0_1_.jpg','image',0),(3423,90,'/i/m/image_30977037_25_970x1182_1_1.jpg','image',0),(3424,90,'/i/m/image_30977037_25_970x1182_2_1.jpg','image',0),(3425,90,'/i/m/image_30977037_25_970x1182_3_1.jpg','image',0),(3426,90,'/i/m/image_30977037_25_970x1182_0_1__1.jpg','image',0),(3427,90,'/i/m/image_30977037_25_970x1182_1_1_1.jpg','image',0),(3428,90,'/i/m/image_30977037_25_970x1182_2_1_1.jpg','image',0),(3429,90,'/i/m/image_30977037_25_970x1182_3_1_1.jpg','image',0),(3430,90,'/i/m/image_30977037_25_970x1182_0_1__2.jpg','image',0),(3431,90,'/i/m/image_30977037_25_970x1182_1_2.jpg','image',0),(3432,90,'/i/m/image_30977037_25_970x1182_2_2.jpg','image',0),(3433,90,'/i/m/image_30977037_25_970x1182_3_2.jpg','image',0),(3434,90,'/i/m/image_30977037_25_970x1182_0_1__3.jpg','image',0),(3435,90,'/i/m/image_30977037_25_970x1182_1_3.jpg','image',0),(3436,90,'/i/m/image_30977037_25_970x1182_2_3.jpg','image',0),(3437,90,'/i/m/image_30977037_25_970x1182_3_3.jpg','image',0),(3438,90,'/i/m/image_30977037_25_970x1182_0_1__4.jpg','image',0),(3439,90,'/i/m/image_30977037_25_970x1182_1_4.jpg','image',0),(3440,90,'/i/m/image_30977037_25_970x1182_2_4.jpg','image',0),(3441,90,'/i/m/image_30977037_25_970x1182_3_4.jpg','image',0),(3442,90,'/i/m/image_31218012_21_970x1182_0_1.jpg','image',0),(3443,90,'/i/m/image_31218012_21_970x1182_1_1.jpg','image',0),(3444,90,'/i/m/image_31218012_21_970x1182_2_1.jpg','image',0),(3445,90,'/i/m/image_31218012_21_970x1182_3_1.jpg','image',0),(3446,90,'/i/m/image_31218012_21_970x1182_0_1_1.jpg','image',0),(3447,90,'/i/m/image_31218012_21_970x1182_1_1_1.jpg','image',0),(3448,90,'/i/m/image_31218012_21_970x1182_2_1_1.jpg','image',0),(3449,90,'/i/m/image_31218012_21_970x1182_3_1_1.jpg','image',0),(3450,90,'/i/m/image_31218012_21_970x1182_0_2.jpg','image',0),(3451,90,'/i/m/image_31218012_21_970x1182_1_2.jpg','image',0),(3452,90,'/i/m/image_31218012_21_970x1182_2_2.jpg','image',0),(3453,90,'/i/m/image_31218012_21_970x1182_3_2.jpg','image',0),(3454,90,'/4/5/454r5t5t.jpg','image',0),(3455,90,'/7/y/7y6t666.jpg','image',0),(3456,90,'/3/4/345ree.jpg','image',0),(3457,90,'/6/t/6tr4555.jpg','image',0),(3458,90,'/4/5/454r5t5t_1.jpg','image',0),(3459,90,'/7/y/7y6t666_1.jpg','image',0),(3460,90,'/3/4/345ree_1.jpg','image',0),(3461,90,'/6/t/6tr4555_1.jpg','image',0),(3462,90,'/4/5/454r5t5t_2.jpg','image',0),(3463,90,'/7/y/7y6t666_2.jpg','image',0),(3464,90,'/3/4/345ree_2.jpg','image',0),(3465,90,'/6/t/6tr4555_2.jpg','image',0),(3466,90,'/4/3/43e555rtr.jpg','image',0),(3467,90,'/4/r/4r5t5t5t5t.jpg','image',0),(3468,90,'/5/4/54tt666.jpg','image',0),(3469,90,'/1/2/12ew43.jpg','image',0),(3470,90,'/4/3/43e555rtr_1.jpg','image',0),(3471,90,'/4/r/4r5t5t5t5t_1.jpg','image',0),(3472,90,'/5/4/54tt666_1.jpg','image',0),(3473,90,'/1/2/12ew43_1.jpg','image',0),(3474,90,'/4/3/43e555rtr_2.jpg','image',0),(3475,90,'/4/r/4r5t5t5t5t_2.jpg','image',0),(3476,90,'/5/4/54tt666_2.jpg','image',0),(3477,90,'/1/2/12ew43_2.jpg','image',0),(3478,90,'/4/3/43e555rtr_3.jpg','image',0),(3479,90,'/4/r/4r5t5t5t5t_3.jpg','image',0),(3480,90,'/5/4/54tt666_3.jpg','image',0),(3481,90,'/1/2/12ew43_3.jpg','image',0),(3482,90,'/i/m/image_31266871_25_970x1182_0_1.jpg','image',0),(3483,90,'/i/m/image_31266871_25_970x1182_1_1.jpg','image',0),(3484,90,'/i/m/image_31266871_25_970x1182_2_1.jpg','image',0),(3485,90,'/i/m/image_31266871_25_970x1182_3_1.jpg','image',0),(3486,90,'/i/m/image_31266871_25_970x1182_0_1_1.jpg','image',0),(3487,90,'/i/m/image_31266871_25_970x1182_1_1_1.jpg','image',0),(3488,90,'/i/m/image_31266871_25_970x1182_2_1_1.jpg','image',0),(3489,90,'/i/m/image_31266871_25_970x1182_3_1_1.jpg','image',0),(3490,90,'/i/m/image_31266871_25_970x1182_0_2.jpg','image',0),(3491,90,'/i/m/image_31266871_25_970x1182_1_2.jpg','image',0),(3492,90,'/i/m/image_31266871_25_970x1182_2_2.jpg','image',0),(3493,90,'/i/m/image_31266871_25_970x1182_3_2.jpg','image',0),(3494,90,'/i/m/image_31266871_25_970x1182_0_3.jpg','image',0),(3495,90,'/i/m/image_31266871_25_970x1182_1_3.jpg','image',0),(3496,90,'/i/m/image_31266871_25_970x1182_2_3.jpg','image',0),(3497,90,'/i/m/image_31266871_25_970x1182_3_3.jpg','image',0),(3498,90,'/2/3/2345454.jpg','image',0),(3499,90,'/3/4/3434545t5t.jpg','image',0),(3500,90,'/3/5/354r5r5t5.jpg','image',0),(3501,90,'/5/4/54rt6666.jpg','image',0),(3502,90,'/2/3/2345454_1.jpg','image',0),(3503,90,'/3/4/3434545t5t_1.jpg','image',0),(3504,90,'/3/5/354r5r5t5_1.jpg','image',0),(3505,90,'/5/4/54rt6666_1.jpg','image',0),(3506,90,'/2/3/2345454_2.jpg','image',0),(3507,90,'/3/4/3434545t5t_2.jpg','image',0),(3508,90,'/3/5/354r5r5t5_2.jpg','image',0),(3509,90,'/5/4/54rt6666_2.jpg','image',0),(3510,90,'/i/m/image_31331004_36_970x1182_0_1.jpg','image',0),(3511,90,'/i/m/image_31331004_36_970x1182_1_1.jpg','image',0),(3512,90,'/i/m/image_31331004_36_970x1182_2_1.jpg','image',0),(3513,90,'/i/m/image_31331004_36_970x1182_3_1.jpg','image',0),(3514,90,'/i/m/image_31331004_36_970x1182_0_1_1.jpg','image',0),(3515,90,'/i/m/image_31331004_36_970x1182_1_1_1.jpg','image',0),(3516,90,'/i/m/image_31331004_36_970x1182_2_1_1.jpg','image',0),(3517,90,'/i/m/image_31331004_36_970x1182_3_1_1.jpg','image',0),(3518,90,'/i/m/image_31331004_36_970x1182_0_2.jpg','image',0),(3519,90,'/i/m/image_31331004_36_970x1182_1_2.jpg','image',0),(3520,90,'/i/m/image_31331004_36_970x1182_2_2.jpg','image',0),(3521,90,'/i/m/image_31331004_36_970x1182_3_2.jpg','image',0),(3522,90,'/4/5/45t6y7y7y7y7.jpg','image',0),(3523,90,'/6/t/6t4t4t4t.jpg','image',0),(3524,90,'/3/4/34r4r5t.jpg','image',0),(3525,90,'/3/4/344r4r.jpg','image',0),(3526,90,'/4/5/45t6y7y7y7y7_1.jpg','image',0),(3527,90,'/6/t/6t4t4t4t_1.jpg','image',0),(3528,90,'/3/4/34r4r5t_1.jpg','image',0),(3529,90,'/3/4/344r4r_1.jpg','image',0),(3530,90,'/4/5/45t6y7y7y7y7_2.jpg','image',0),(3531,90,'/6/t/6t4t4t4t_2.jpg','image',0),(3532,90,'/3/4/34r4r5t_2.jpg','image',0),(3533,90,'/3/4/344r4r_2.jpg','image',0),(3534,90,'/4/5/45t6y7y7y7y7_3.jpg','image',0),(3535,90,'/6/t/6t4t4t4t_3.jpg','image',0),(3536,90,'/3/4/34r4r5t_3.jpg','image',0),(3537,90,'/3/4/344r4r_3.jpg','image',0),(3538,90,'/i/m/image_30838511_25_970x1182_0_1.jpg','image',0),(3539,90,'/i/m/image_30838511_25_970x1182_1_1.jpg','image',0),(3540,90,'/i/m/image_30838511_25_970x1182_2_1.jpg','image',0),(3541,90,'/i/m/image_30838511_25_970x1182_3_1.jpg','image',0),(3542,90,'/i/m/image_30838511_25_970x1182_0_1_1.jpg','image',0),(3543,90,'/i/m/image_30838511_25_970x1182_1_1_1.jpg','image',0),(3544,90,'/i/m/image_30838511_25_970x1182_2_1_1.jpg','image',0),(3545,90,'/i/m/image_30838511_25_970x1182_3_1_1.jpg','image',0),(3546,90,'/i/m/image_30838511_25_970x1182_0_2.jpg','image',0),(3547,90,'/i/m/image_30838511_25_970x1182_1_2.jpg','image',0),(3548,90,'/i/m/image_30838511_25_970x1182_2_2.jpg','image',0),(3549,90,'/i/m/image_30838511_25_970x1182_3_2.jpg','image',0),(3550,90,'/i/m/image_30838511_25_970x1182_0_3.jpg','image',0),(3551,90,'/i/m/image_30838511_25_970x1182_1_3.jpg','image',0),(3552,90,'/i/m/image_30838511_25_970x1182_2_3.jpg','image',0),(3553,90,'/i/m/image_30838511_25_970x1182_3_3.jpg','image',0),(3554,90,'/3/e/3e4f4r5r5.jpg','image',0),(3555,90,'/5/t/5t6y56556.jpg','image',0),(3556,90,'/4/5/45rer4545.jpg','image',0),(3557,90,'/3/e/3e4f4r5r5_1.jpg','image',0),(3558,90,'/5/t/5t6y56556_1.jpg','image',0),(3559,90,'/4/5/45rer4545_1.jpg','image',0),(3560,90,'/3/e/3e4f4r5r5_2.jpg','image',0),(3561,90,'/5/t/5t6y56556_2.jpg','image',0),(3562,90,'/4/5/45rer4545_2.jpg','image',0),(3563,90,'/3/e/3e4f4r5r5_3.jpg','image',0),(3564,90,'/5/t/5t6y56556_3.jpg','image',0),(3565,90,'/4/5/45rer4545_3.jpg','image',0),(3566,90,'/3/e/3e4f4r5r5_4.jpg','image',0),(3567,90,'/5/t/5t6y56556_4.jpg','image',0),(3568,90,'/4/5/45rer4545_4.jpg','image',0),(3569,90,'/i/m/image_31197648_45_620x757_0_1.jpg','image',0),(3570,90,'/i/m/image_31197648_45_620x757_1_1.jpg','image',0),(3571,90,'/i/m/image_31197648_45_620x757_2_1.jpg','image',0),(3572,90,'/i/m/image_31197648_45_620x757_0_1_1.jpg','image',0),(3573,90,'/i/m/image_31197648_45_620x757_1_1_1.jpg','image',0),(3574,90,'/i/m/image_31197648_45_620x757_2_1_1.jpg','image',0),(3575,90,'/i/m/image_31197648_45_620x757_0_2.jpg','image',0),(3576,90,'/i/m/image_31197648_45_620x757_1_2.jpg','image',0),(3577,90,'/i/m/image_31197648_45_620x757_2_2.jpg','image',0),(3578,90,'/i/m/image_31197648_45_620x757_0_3.jpg','image',0),(3579,90,'/i/m/image_31197648_45_620x757_1_3.jpg','image',0),(3580,90,'/i/m/image_31197648_45_620x757_2_3.jpg','image',0),(3581,90,'/i/m/image_31197648_45_620x757_0_4.jpg','image',0),(3582,90,'/i/m/image_31197648_45_620x757_1_4.jpg','image',0),(3583,90,'/i/m/image_31197648_45_620x757_2_4.jpg','image',0),(3584,90,'/3/4/3434r55r.jpg','image',0),(3585,90,'/2/4/24rr5r5.jpg','image',0),(3586,90,'/3/e/3e4545.jpg','image',0),(3587,90,'/3/4/3434r55r_1.jpg','image',0),(3588,90,'/2/4/24rr5r5_1.jpg','image',0),(3589,90,'/3/e/3e4545_1.jpg','image',0),(3590,90,'/3/4/3434r55r_2.jpg','image',0),(3591,90,'/2/4/24rr5r5_2.jpg','image',0),(3592,90,'/3/e/3e4545_2.jpg','image',0),(3593,90,'/i/m/image_31292070_22_970x1182_0_1.jpg','image',0),(3594,90,'/i/m/image_31292070_22_970x1182_2_1.jpg','image',0),(3595,90,'/i/m/image_31292070_22_970x1182_3_1.jpg','image',0),(3596,90,'/i/m/image_31292070_22_970x1182_0_1_1.jpg','image',0),(3597,90,'/i/m/image_31292070_22_970x1182_2_1_1.jpg','image',0),(3598,90,'/i/m/image_31292070_22_970x1182_3_1_1.jpg','image',0),(3599,90,'/i/m/image_31292070_22_970x1182_0_2.jpg','image',0),(3600,90,'/i/m/image_31292070_22_970x1182_2_2.jpg','image',0),(3601,90,'/i/m/image_31292070_22_970x1182_3_2.jpg','image',0),(3602,90,'/4/r/4r4e3e23434.jpg','image',0),(3603,90,'/3/2/32w233434.jpg','image',0),(3604,90,'/3/4/34r4r4r.jpg','image',0),(3605,90,'/4/r/4r4e3e23434_1.jpg','image',0),(3606,90,'/3/2/32w233434_1.jpg','image',0),(3607,90,'/3/4/34r4r4r_1.jpg','image',0),(3608,90,'/4/r/4r4e3e23434_2.jpg','image',0),(3609,90,'/3/2/32w233434_2.jpg','image',0),(3610,90,'/3/4/34r4r4r_2.jpg','image',0),(3611,90,'/i/m/image_31292042_34_620x757_0_1.jpg','image',0),(3612,90,'/i/m/image_31292042_34_620x757_1_1.jpg','image',0),(3613,90,'/i/m/image_31292042_34_620x757_3_1.jpg','image',0),(3614,90,'/i/m/image_31292042_34_620x757_0_1_1.jpg','image',0),(3615,90,'/i/m/image_31292042_34_620x757_1_1_1.jpg','image',0),(3616,90,'/i/m/image_31292042_34_620x757_3_1_1.jpg','image',0),(3617,90,'/i/m/image_31292042_34_620x757_0_2.jpg','image',0),(3618,90,'/i/m/image_31292042_34_620x757_1_2.jpg','image',0),(3619,90,'/i/m/image_31292042_34_620x757_3_2.jpg','image',0),(3620,90,'/4/5/454r4r43e3e.jpg','image',0),(3621,90,'/2/3/23ewe343.jpg','image',0),(3622,90,'/3/4/34r34r34r.jpg','image',0),(3623,90,'/2/4/24r3r3r4.jpg','image',0),(3624,90,'/4/5/454r4r43e3e_1.jpg','image',0),(3625,90,'/2/3/23ewe343_1.jpg','image',0),(3626,90,'/3/4/34r34r34r_1.jpg','image',0),(3627,90,'/2/4/24r3r3r4_1.jpg','image',0),(3628,90,'/4/5/454r4r43e3e_2.jpg','image',0),(3629,90,'/2/3/23ewe343_2.jpg','image',0),(3630,90,'/3/4/34r34r34r_2.jpg','image',0),(3631,90,'/2/4/24r3r3r4_2.jpg','image',0),(3632,90,'/i/m/image_31145394_21_970x1182_0_1.jpg','image',0),(3633,90,'/i/m/image_31145394_21_970x1182_1_1.jpg','image',0),(3634,90,'/i/m/image_31145394_21_970x1182_2_1.jpg','image',0),(3635,90,'/i/m/image_31145394_21_970x1182_3_1.jpg','image',0),(3636,90,'/i/m/image_31145394_21_970x1182_0_1_1.jpg','image',0),(3637,90,'/i/m/image_31145394_21_970x1182_1_1_1.jpg','image',0),(3638,90,'/i/m/image_31145394_21_970x1182_2_1_1.jpg','image',0),(3639,90,'/i/m/image_31145394_21_970x1182_3_1_1.jpg','image',0),(3640,90,'/i/m/image_31145394_21_970x1182_0_2.jpg','image',0),(3641,90,'/i/m/image_31145394_21_970x1182_1_2.jpg','image',0),(3642,90,'/i/m/image_31145394_21_970x1182_2_2.jpg','image',0),(3643,90,'/i/m/image_31145394_21_970x1182_3_2.jpg','image',0),(3644,90,'/3/4/34r4r4r4r.jpg','image',0),(3645,90,'/2/4/24r43333434.jpg','image',0),(3646,90,'/3/4/34r5t5t5t4r4r.jpg','image',0),(3647,90,'/3/4/34rr553t5t3.jpg','image',0),(3648,90,'/3/4/34r4r4r4r_1.jpg','image',0),(3649,90,'/2/4/24r43333434_1.jpg','image',0),(3650,90,'/3/4/34r5t5t5t4r4r_1.jpg','image',0),(3651,90,'/3/4/34rr553t5t3_1.jpg','image',0),(3652,90,'/3/4/34r4r4r4r_2.jpg','image',0),(3653,90,'/2/4/24r43333434_2.jpg','image',0),(3654,90,'/3/4/34r5t5t5t4r4r_2.jpg','image',0),(3655,90,'/3/4/34rr553t5t3_2.jpg','image',0),(3656,90,'/i/m/image_31167816_22_970x1182_0_1.jpg','image',0),(3657,90,'/i/m/image_31167816_22_970x1182_1_1.jpg','image',0),(3658,90,'/i/m/image_31167816_22_970x1182_2_1.jpg','image',0),(3659,90,'/i/m/image_31167816_22_970x1182_3_1.jpg','image',0),(3660,90,'/i/m/image_31167816_22_970x1182_0_1_1.jpg','image',0),(3661,90,'/i/m/image_31167816_22_970x1182_1_1_1.jpg','image',0),(3662,90,'/i/m/image_31167816_22_970x1182_2_1_1.jpg','image',0),(3663,90,'/i/m/image_31167816_22_970x1182_3_1_1.jpg','image',0),(3664,90,'/i/m/image_31167816_22_970x1182_0_2.jpg','image',0),(3665,90,'/i/m/image_31167816_22_970x1182_1_2.jpg','image',0),(3666,90,'/i/m/image_31167816_22_970x1182_2_2.jpg','image',0),(3667,90,'/i/m/image_31167816_22_970x1182_3_2.jpg','image',0),(3668,90,'/3/4/34r34r4r.jpg','image',0),(3669,90,'/3/4/3434232323.jpg','image',0),(3670,90,'/6/y/6y46y46y.jpg','image',0),(3671,90,'/2/3/23e23e3e3d.jpg','image',0),(3672,90,'/3/4/34r34r4r_1.jpg','image',0),(3673,90,'/3/4/3434232323_1.jpg','image',0),(3674,90,'/6/y/6y46y46y_1.jpg','image',0),(3675,90,'/2/3/23e23e3e3d_1.jpg','image',0),(3676,90,'/3/4/34r34r4r_2.jpg','image',0),(3677,90,'/3/4/3434232323_2.jpg','image',0),(3678,90,'/6/y/6y46y46y_2.jpg','image',0),(3679,90,'/2/3/23e23e3e3d_2.jpg','image',0),(3680,90,'/i/m/image_31280337_45_970x1182_0_1.jpg','image',0),(3681,90,'/i/m/image_31280337_45_970x1182_1_1.jpg','image',0),(3682,90,'/i/m/image_31280337_45_970x1182_2_1.jpg','image',0),(3683,90,'/i/m/image_31280337_45_970x1182_3_1.jpg','image',0),(3684,90,'/i/m/image_31280337_45_970x1182_0_1_1.jpg','image',0),(3685,90,'/i/m/image_31280337_45_970x1182_1_1_1.jpg','image',0),(3686,90,'/i/m/image_31280337_45_970x1182_2_1_1.jpg','image',0),(3687,90,'/i/m/image_31280337_45_970x1182_3_1_1.jpg','image',0),(3688,90,'/i/m/image_31280337_45_970x1182_0_2.jpg','image',0),(3689,90,'/i/m/image_31280337_45_970x1182_1_2.jpg','image',0),(3690,90,'/i/m/image_31280337_45_970x1182_2_2.jpg','image',0),(3691,90,'/i/m/image_31280337_45_970x1182_3_2.jpg','image',0),(3692,90,'/3/4/34r34r4rd.jpg','image',0),(3693,90,'/3/4/343ee3e3e3e.jpg','image',0),(3694,90,'/3/4/34r213ee.jpg','image',0),(3695,90,'/6/5/654f5t5t5.jpg','image',0),(3696,90,'/3/4/34r34r4rd_1.jpg','image',0),(3697,90,'/3/4/343ee3e3e3e_1.jpg','image',0),(3698,90,'/3/4/34r213ee_1.jpg','image',0),(3699,90,'/6/5/654f5t5t5_1.jpg','image',0),(3700,90,'/3/4/34r34r4rd_2.jpg','image',0),(3701,90,'/3/4/343ee3e3e3e_2.jpg','image',0),(3702,90,'/3/4/34r213ee_2.jpg','image',0),(3703,90,'/6/5/654f5t5t5_2.jpg','image',0),(3704,90,'/i/m/image_31343872_25_970x1182_0_1.jpg','image',0),(3705,90,'/i/m/image_31343872_25_970x1182_1_1.jpg','image',0),(3706,90,'/i/m/image_31343872_25_970x1182_2_1.jpg','image',0),(3707,90,'/i/m/image_31343872_25_970x1182_3_1.jpg','image',0),(3708,90,'/i/m/image_31343872_25_970x1182_0_1_1.jpg','image',0),(3709,90,'/i/m/image_31343872_25_970x1182_1_1_1.jpg','image',0),(3710,90,'/i/m/image_31343872_25_970x1182_2_2.jpg','image',0),(3711,90,'/i/m/image_31343872_25_970x1182_3_1_1.jpg','image',0),(3712,90,'/i/m/image_31343872_25_970x1182_0_2.jpg','image',0),(3713,90,'/i/m/image_31343872_25_970x1182_1_2.jpg','image',0),(3714,90,'/i/m/image_31343872_25_970x1182_2_3.jpg','image',0),(3715,90,'/i/m/image_31343872_25_970x1182_3_2.jpg','image',0),(3716,90,'/2/4/24r34r4.jpg','image',0),(3717,90,'/4/5/454t5tr3e.jpg','image',0),(3718,90,'/3/4/34r4234234.jpg','image',0),(3719,90,'/2/4/24r34r4_1.jpg','image',0),(3720,90,'/4/5/454t5tr3e_1.jpg','image',0),(3721,90,'/3/4/34r4234234_1.jpg','image',0),(3722,90,'/2/4/24r34r4_2.jpg','image',0),(3723,90,'/4/5/454t5tr3e_2.jpg','image',0),(3724,90,'/3/4/34r4234234_2.jpg','image',0),(3725,90,'/2/4/24r34r4_3.jpg','image',0),(3726,90,'/4/5/454t5tr3e_3.jpg','image',0),(3727,90,'/3/4/34r4234234_3.jpg','image',0),(3728,90,'/2/4/24r34r4_4.jpg','image',0),(3729,90,'/4/5/454t5tr3e_4.jpg','image',0),(3730,90,'/3/4/34r4234234_4.jpg','image',0),(3731,90,'/i/m/image_31196404_83_620x757_0_1.jpg','image',0),(3732,90,'/i/m/image_31196404_83_620x757_4_1.jpg','image',0),(3733,90,'/i/m/image_31196404_83_620x757_5_1.jpg','image',0),(3734,90,'/i/m/image_31196404_83_620x757_0_1_1.jpg','image',0),(3735,90,'/i/m/image_31196404_83_620x757_4_1_1.jpg','image',0),(3736,90,'/i/m/image_31196404_83_620x757_5_1_1.jpg','image',0),(3737,90,'/i/m/image_31196404_83_620x757_0_2.jpg','image',0),(3738,90,'/i/m/image_31196404_83_620x757_4_2.jpg','image',0),(3739,90,'/i/m/image_31196404_83_620x757_5_2.jpg','image',0),(3740,90,'/i/m/image_31196404_83_620x757_0_3.jpg','image',0),(3741,90,'/i/m/image_31196404_83_620x757_4_3.jpg','image',0),(3742,90,'/i/m/image_31196404_83_620x757_5_3.jpg','image',0),(3743,90,'/i/m/image_31196404_83_620x757_0_4.jpg','image',0),(3744,90,'/i/m/image_31196404_83_620x757_4_4.jpg','image',0),(3745,90,'/i/m/image_31196404_83_620x757_5_4.jpg','image',0),(3746,90,'/8/u/8u7y6t6.jpg','image',0),(3747,90,'/3/4/345565tyy.jpg','image',0),(3748,90,'/3/4/345345345rr.jpg','image',0),(3749,90,'/8/u/8u7y6t6_1.jpg','image',0),(3750,90,'/3/4/345565tyy_1.jpg','image',0),(3751,90,'/3/4/345345345rr_1.jpg','image',0),(3752,90,'/8/u/8u7y6t6_2.jpg','image',0),(3753,90,'/3/4/345565tyy_2.jpg','image',0),(3754,90,'/3/4/345345345rr_2.jpg','image',0),(3755,90,'/1/0/10502970_50015_100_1.jpg','image',0),(3756,90,'/1/0/10502970_50015_200_1.jpg','image',0),(3757,90,'/1/0/10502970_50015_300_1.jpg','image',0),(3758,90,'/1/0/10502970_50015_100_1_1.jpg','image',0),(3759,90,'/1/0/10502970_50015_200_1_1.jpg','image',0),(3760,90,'/1/0/10502970_50015_300_1_1.jpg','image',0),(3761,90,'/1/0/10502970_50015_100_2.jpg','image',0),(3762,90,'/1/0/10502970_50015_200_2.jpg','image',0),(3763,90,'/1/0/10502970_50015_300_2.jpg','image',0),(3764,90,'/8/u/8u87y6t4d4d.jpg','image',0),(3765,90,'/3/4/34r4r3e3e.jpg','image',0),(3766,90,'/6/t/6t6t5r555.jpg','image',0),(3767,90,'/8/u/8u87y6t4d4d_1.jpg','image',0),(3768,90,'/3/4/34r4r3e3e_1.jpg','image',0),(3769,90,'/6/t/6t6t5r555_1.jpg','image',0),(3770,90,'/8/u/8u87y6t4d4d_2.jpg','image',0),(3771,90,'/3/4/34r4r3e3e_2.jpg','image',0),(3772,90,'/6/t/6t6t5r555_2.jpg','image',0),(3773,90,'/8/u/8u87y6t4d4d_3.jpg','image',0),(3774,90,'/3/4/34r4r3e3e_3.jpg','image',0),(3775,90,'/6/t/6t6t5r555_3.jpg','image',0),(3776,90,'/8/u/8u87y6t4d4d_4.jpg','image',0),(3777,90,'/3/4/34r4r3e3e_4.jpg','image',0),(3778,90,'/6/t/6t6t5r555_4.jpg','image',0),(3779,90,'/8/u/8u87y6t4d4d_5.jpg','image',0),(3780,90,'/3/4/34r4r3e3e_5.jpg','image',0),(3781,90,'/6/t/6t6t5r555_5.jpg','image',0),(3782,90,'/i/m/image_30950832_43_620x757_0_1.jpg','image',0),(3783,90,'/i/m/image_30950832_43_620x757_1_1.jpg','image',0),(3784,90,'/i/m/image_30950832_43_620x757_4_1.jpg','image',0),(3785,90,'/i/m/image_30950832_43_620x757_0_1_1.jpg','image',0),(3786,90,'/i/m/image_30950832_43_620x757_1_1_1.jpg','image',0),(3787,90,'/i/m/image_30950832_43_620x757_4_1_1.jpg','image',0),(3788,90,'/i/m/image_30950832_43_620x757_0_2.jpg','image',0),(3789,90,'/i/m/image_30950832_43_620x757_1_2.jpg','image',0),(3790,90,'/i/m/image_30950832_43_620x757_4_2.jpg','image',0),(3791,90,'/i/m/image_30950832_43_620x757_0_3.jpg','image',0),(3792,90,'/i/m/image_30950832_43_620x757_1_3.jpg','image',0),(3793,90,'/i/m/image_30950832_43_620x757_4_3.jpg','image',0),(3794,90,'/i/m/image_30950832_43_620x757_0_4.jpg','image',0),(3795,90,'/i/m/image_30950832_43_620x757_1_4.jpg','image',0),(3796,90,'/i/m/image_30950832_43_620x757_4_4.jpg','image',0),(3797,90,'/i/m/image_30950832_43_620x757_0_5.jpg','image',0),(3798,90,'/i/m/image_30950832_43_620x757_1_5.jpg','image',0),(3799,90,'/i/m/image_30950832_43_620x757_4_5.jpg','image',0),(3800,90,'/i/m/image_31151579_25_970x1182_0_1.jpg','image',0),(3801,90,'/i/m/image_31151579_25_970x1182_1_1.jpg','image',0),(3802,90,'/i/m/image_31151579_25_970x1182_2_1.jpg','image',0),(3803,90,'/i/m/image_31151579_25_970x1182_3_1.jpg','image',0),(3804,90,'/i/m/image_31151579_25_970x1182_0_1_1.jpg','image',0),(3805,90,'/i/m/image_31151579_25_970x1182_1_1_1.jpg','image',0),(3806,90,'/i/m/image_31151579_25_970x1182_2_1_1.jpg','image',0),(3807,90,'/i/m/image_31151579_25_970x1182_3_1_1.jpg','image',0),(3808,90,'/i/m/image_31151579_25_970x1182_0_2.jpg','image',0),(3809,90,'/i/m/image_31151579_25_970x1182_1_2.jpg','image',0),(3810,90,'/i/m/image_31151579_25_970x1182_2_2.jpg','image',0),(3811,90,'/i/m/image_31151579_25_970x1182_3_2.jpg','image',0),(3812,90,'/i/m/image_31151579_25_970x1182_0_3.jpg','image',0),(3813,90,'/i/m/image_31151579_25_970x1182_1_3.jpg','image',0),(3814,90,'/i/m/image_31151579_25_970x1182_2_3.jpg','image',0),(3815,90,'/i/m/image_31151579_25_970x1182_3_3.jpg','image',0),(3816,90,'/4/5/45t54tf.jpg','image',0),(3817,90,'/7/y/7y6t6t5r.jpg','image',0),(3818,90,'/5/6/564r4r44.jpg','image',0),(3819,90,'/e/5/e5t45t5y.jpg','image',0),(3820,90,'/4/5/45t54tf_1.jpg','image',0),(3821,90,'/7/y/7y6t6t5r_1.jpg','image',0),(3822,90,'/5/6/564r4r44_1.jpg','image',0),(3823,90,'/e/5/e5t45t5y_1.jpg','image',0),(3824,90,'/4/5/45t54tf_2.jpg','image',0),(3825,90,'/7/y/7y6t6t5r_2.jpg','image',0),(3826,90,'/5/6/564r4r44_2.jpg','image',0),(3827,90,'/e/5/e5t45t5y_2.jpg','image',0),(3828,90,'/4/5/45t54tf_3.jpg','image',0),(3829,90,'/7/y/7y6t6t5r_3.jpg','image',0),(3830,90,'/5/6/564r4r44_3.jpg','image',0),(3831,90,'/e/5/e5t45t5y_3.jpg','image',0),(3832,90,'/3/4/343454r4r.jpg','image',0),(3833,90,'/5/4/54545t6t5t5.jpg','image',0),(3834,90,'/7/6/7677y7y7y.jpg','image',0),(3835,90,'/4/3/43e4r4r4r.jpg','image',0),(3836,90,'/3/4/343454r4r_1.jpg','image',0),(3837,90,'/5/4/54545t6t5t5_1.jpg','image',0),(3838,90,'/7/6/7677y7y7y_1.jpg','image',0),(3839,90,'/4/3/43e4r4r4r_1.jpg','image',0),(3840,90,'/3/4/343454r4r_2.jpg','image',0),(3841,90,'/5/4/54545t6t5t5_2.jpg','image',0),(3842,90,'/7/6/7677y7y7y_2.jpg','image',0),(3843,90,'/4/3/43e4r4r4r_2.jpg','image',0),(3844,90,'/i/m/image_31220278_21_970x1182_0_4.jpg','image',0),(3845,90,'/i/m/image_31220278_21_970x1182_1_4.jpg','image',0),(3846,90,'/i/m/image_31220278_21_970x1182_2_4.jpg','image',0),(3847,90,'/i/m/image_31220278_21_970x1182_3_4.jpg','image',0),(3848,90,'/i/m/image_31220278_21_970x1182_0_1_1.jpg','image',0),(3849,90,'/i/m/image_31220278_21_970x1182_1_1_1.jpg','image',0),(3850,90,'/i/m/image_31220278_21_970x1182_2_1_1.jpg','image',0),(3851,90,'/i/m/image_31220278_21_970x1182_3_1_1.jpg','image',0),(3852,90,'/i/m/image_31220278_21_970x1182_0_2_1.jpg','image',0),(3853,90,'/i/m/image_31220278_21_970x1182_1_2_1.jpg','image',0),(3854,90,'/i/m/image_31220278_21_970x1182_2_2_1.jpg','image',0),(3855,90,'/i/m/image_31220278_21_970x1182_3_2_1.jpg','image',0),(3856,90,'/4/5/4565tt.jpg','image',0),(3857,90,'/3/4/345tr4rr4.jpg','image',0),(3858,90,'/3/5/35656565t5t5.jpg','image',0),(3859,90,'/4/5/4565tt_1.jpg','image',0),(3860,90,'/3/4/345tr4rr4_1.jpg','image',0),(3861,90,'/3/5/35656565t5t5_1.jpg','image',0),(3862,90,'/4/5/4565tt_2.jpg','image',0),(3863,90,'/3/4/345tr4rr4_2.jpg','image',0),(3864,90,'/3/5/35656565t5t5_2.jpg','image',0),(3865,90,'/i/m/image_31350778_10_620x757_0_1.jpg','image',0),(3866,90,'/i/m/image_31350778_10_620x757_1_1.jpg','image',0),(3867,90,'/i/m/image_31350778_10_620x757_3_1.jpg','image',0),(3868,90,'/i/m/image_31350778_10_620x757_0_1_1.jpg','image',0),(3869,90,'/i/m/image_31350778_10_620x757_1_1_1.jpg','image',0),(3870,90,'/i/m/image_31350778_10_620x757_3_1_1.jpg','image',0),(3871,90,'/i/m/image_31350778_10_620x757_0_2.jpg','image',0),(3872,90,'/i/m/image_31350778_10_620x757_1_2.jpg','image',0),(3873,90,'/i/m/image_31350778_10_620x757_3_2.jpg','image',0),(3874,90,'/1/2/123w2w2w2.jpg','image',0),(3875,90,'/3/4/3454r4r4r.jpg','image',0),(3876,90,'/2/3/234354234e3.jpg','image',0),(3877,90,'/2/3/23344544e.jpg','image',0),(3878,90,'/1/2/123w2w2w2_1.jpg','image',0),(3879,90,'/3/4/3454r4r4r_1.jpg','image',0),(3880,90,'/2/3/234354234e3_1.jpg','image',0),(3881,90,'/2/3/23344544e_1.jpg','image',0),(3882,90,'/1/2/123w2w2w2_2.jpg','image',0),(3883,90,'/3/4/3454r4r4r_2.jpg','image',0),(3884,90,'/2/3/234354234e3_2.jpg','image',0),(3885,90,'/2/3/23344544e_2.jpg','image',0),(3886,90,'/1/2/123w2w2w2_3.jpg','image',0),(3887,90,'/3/4/3454r4r4r_3.jpg','image',0),(3888,90,'/2/3/234354234e3_3.jpg','image',0),(3889,90,'/2/3/23344544e_3.jpg','image',0),(3890,90,'/i/m/image_31261586_25_970x1182_0_1.jpg','image',0),(3891,90,'/i/m/image_31261586_25_970x1182_1_1.jpg','image',0),(3892,90,'/i/m/image_31261586_25_970x1182_2_1.jpg','image',0),(3893,90,'/i/m/image_31261586_25_970x1182_3_1.jpg','image',0),(3894,90,'/i/m/image_31261586_25_970x1182_0_1_1.jpg','image',0),(3895,90,'/i/m/image_31261586_25_970x1182_1_1_1.jpg','image',0),(3896,90,'/i/m/image_31261586_25_970x1182_2_1_1.jpg','image',0),(3897,90,'/i/m/image_31261586_25_970x1182_3_1_1.jpg','image',0),(3898,90,'/i/m/image_31261586_25_970x1182_0_2.jpg','image',0),(3899,90,'/i/m/image_31261586_25_970x1182_1_2.jpg','image',0),(3900,90,'/i/m/image_31261586_25_970x1182_2_2.jpg','image',0),(3901,90,'/i/m/image_31261586_25_970x1182_3_2.jpg','image',0),(3902,90,'/i/m/image_31261586_25_970x1182_0_3.jpg','image',0),(3903,90,'/i/m/image_31261586_25_970x1182_1_3.jpg','image',0),(3904,90,'/i/m/image_31261586_25_970x1182_2_3.jpg','image',0),(3905,90,'/i/m/image_31261586_25_970x1182_3_3.jpg','image',0),(3906,90,'/3/4/34re34er.jpg','image',0),(3907,90,'/2/1/21123233.jpg','image',0),(3908,90,'/2/3/233e3e3w.jpg','image',0),(3909,90,'/2/3/2323342w2w.jpg','image',0),(3910,90,'/3/4/34re34er_1.jpg','image',0),(3911,90,'/2/1/21123233_1.jpg','image',0),(3912,90,'/2/3/233e3e3w_1.jpg','image',0),(3913,90,'/2/3/2323342w2w_1.jpg','image',0),(3914,90,'/3/4/34re34er_2.jpg','image',0),(3915,90,'/2/1/21123233_2.jpg','image',0),(3916,90,'/2/3/233e3e3w_2.jpg','image',0),(3917,90,'/2/3/2323342w2w_2.jpg','image',0),(3918,90,'/3/4/34re34er_3.jpg','image',0),(3919,90,'/2/1/21123233_3.jpg','image',0),(3920,90,'/2/3/233e3e3w_3.jpg','image',0),(3921,90,'/2/3/2323342w2w_3.jpg','image',0),(3922,90,'/i/m/image_31125033_85_970x1182_0_1.jpg','image',0),(3923,90,'/i/m/image_31125033_85_970x1182_1_1.jpg','image',0),(3924,90,'/i/m/image_31125033_85_970x1182_2_1.jpg','image',0),(3925,90,'/i/m/image_31125033_85_970x1182_3_1.jpg','image',0),(3926,90,'/i/m/image_31125033_85_970x1182_0_1_1.jpg','image',0),(3927,90,'/i/m/image_31125033_85_970x1182_1_1_1.jpg','image',0),(3928,90,'/i/m/image_31125033_85_970x1182_2_1_1.jpg','image',0),(3929,90,'/i/m/image_31125033_85_970x1182_3_1_1.jpg','image',0),(3930,90,'/i/m/image_31125033_85_970x1182_0_2.jpg','image',0),(3931,90,'/i/m/image_31125033_85_970x1182_1_2.jpg','image',0),(3932,90,'/i/m/image_31125033_85_970x1182_2_2.jpg','image',0),(3933,90,'/i/m/image_31125033_85_970x1182_3_2.jpg','image',0),(3934,90,'/i/m/image_31125033_85_970x1182_0_3.jpg','image',0),(3935,90,'/i/m/image_31125033_85_970x1182_1_3.jpg','image',0),(3936,90,'/i/m/image_31125033_85_970x1182_2_3.jpg','image',0),(3937,90,'/i/m/image_31125033_85_970x1182_3_3.jpg','image',0),(3938,90,'/3/4/343e3e3e2.jpg','image',0),(3939,90,'/1/3/13e3e3e3e.jpg','image',0),(3940,90,'/2/3/23e45.jpg','image',0),(3941,90,'/1/2/12w32e33.jpg','image',0),(3942,90,'/3/4/343e3e3e2_1.jpg','image',0),(3943,90,'/1/3/13e3e3e3e_1.jpg','image',0),(3944,90,'/2/3/23e45_1.jpg','image',0),(3945,90,'/1/2/12w32e33_1.jpg','image',0),(3946,90,'/3/4/343e3e3e2_2.jpg','image',0),(3947,90,'/1/3/13e3e3e3e_2.jpg','image',0),(3948,90,'/2/3/23e45_2.jpg','image',0),(3949,90,'/1/2/12w32e33_2.jpg','image',0),(3950,90,'/3/4/343e3e3e2_3.jpg','image',0),(3951,90,'/1/3/13e3e3e3e_3.jpg','image',0),(3952,90,'/2/3/23e45_3.jpg','image',0),(3953,90,'/1/2/12w32e33_3.jpg','image',0),(3954,90,'/3/4/343e3e3e2_4.jpg','image',0),(3955,90,'/1/3/13e3e3e3e_4.jpg','image',0),(3956,90,'/2/3/23e45_4.jpg','image',0),(3957,90,'/1/2/12w32e33_4.jpg','image',0),(3958,90,'/i/m/image_31233103_34_970x1182_0_1.jpg','image',0),(3959,90,'/i/m/image_31233103_34_970x1182_1_1.jpg','image',0),(3960,90,'/i/m/image_31233103_34_970x1182_2_1.jpg','image',0),(3961,90,'/i/m/image_31233103_34_970x1182_3_1.jpg','image',0),(3962,90,'/i/m/image_31233103_34_970x1182_0_1_1.jpg','image',0),(3963,90,'/i/m/image_31233103_34_970x1182_1_1_1.jpg','image',0),(3964,90,'/i/m/image_31233103_34_970x1182_2_1_1.jpg','image',0),(3965,90,'/i/m/image_31233103_34_970x1182_3_1_1.jpg','image',0),(3966,90,'/i/m/image_31233103_34_970x1182_0_2.jpg','image',0),(3967,90,'/i/m/image_31233103_34_970x1182_1_2.jpg','image',0),(3968,90,'/i/m/image_31233103_34_970x1182_2_2.jpg','image',0),(3969,90,'/i/m/image_31233103_34_970x1182_3_2.jpg','image',0),(3970,90,'/i/m/image_31233103_34_970x1182_0_3.jpg','image',0),(3971,90,'/i/m/image_31233103_34_970x1182_1_3.jpg','image',0),(3972,90,'/i/m/image_31233103_34_970x1182_2_3.jpg','image',0),(3973,90,'/i/m/image_31233103_34_970x1182_3_3.jpg','image',0),(3974,90,'/i/m/image_31233103_34_970x1182_0_4.jpg','image',0),(3975,90,'/i/m/image_31233103_34_970x1182_1_4.jpg','image',0),(3976,90,'/i/m/image_31233103_34_970x1182_2_4.jpg','image',0),(3977,90,'/i/m/image_31233103_34_970x1182_3_4.jpg','image',0),(3978,90,'/2/3/232e2e2e2e2e.jpg','image',0),(3979,90,'/3/4/3434242e.jpg','image',0),(3980,90,'/2/3/234324e22e.jpg','image',0),(3981,90,'/2/3/232e2e2e2e2e_1.jpg','image',0),(3982,90,'/3/4/3434242e_1.jpg','image',0),(3983,90,'/2/3/234324e22e_1.jpg','image',0),(3984,90,'/2/3/232e2e2e2e2e_2.jpg','image',0),(3985,90,'/3/4/3434242e_2.jpg','image',0),(3986,90,'/2/3/234324e22e_2.jpg','image',0),(3987,90,'/2/3/232e2e2e2e2e_3.jpg','image',0),(3988,90,'/3/4/3434242e_3.jpg','image',0),(3989,90,'/2/3/234324e22e_3.jpg','image',0),(3990,90,'/i/m/image_31103364_21_620x757_0_2.jpg','image',0),(3991,90,'/i/m/image_31103364_21_620x757_1_2.jpg','image',0),(3992,90,'/i/m/image_31103364_21_620x757_4_2.jpg','image',0),(3993,90,'/i/m/image_31103364_21_620x757_0_1_1.jpg','image',0),(3994,90,'/i/m/image_31103364_21_620x757_1_1_1.jpg','image',0),(3995,90,'/i/m/image_31103364_21_620x757_4_1_1.jpg','image',0),(3996,90,'/i/m/image_31103364_21_620x757_0_2_1.jpg','image',0),(3997,90,'/i/m/image_31103364_21_620x757_1_2_1.jpg','image',0),(3998,90,'/i/m/image_31103364_21_620x757_4_2_1.jpg','image',0),(3999,90,'/i/m/image_31103364_21_620x757_0_3.jpg','image',0),(4000,90,'/i/m/image_31103364_21_620x757_1_3.jpg','image',0),(4001,90,'/i/m/image_31103364_21_620x757_4_3.jpg','image',0),(4002,90,'/2/3/2323r23r.jpg','image',0),(4003,90,'/2/3/2323243e32e2.jpg','image',0),(4004,90,'/2/3/232w2w2w2.jpg','image',0),(4005,90,'/2/3/2323r23r_1.jpg','image',0),(4006,90,'/2/3/2323243e32e2_1.jpg','image',0),(4007,90,'/2/3/232w2w2w2_1.jpg','image',0),(4008,90,'/2/3/2323r23r_2.jpg','image',0),(4009,90,'/2/3/2323243e32e2_2.jpg','image',0),(4010,90,'/2/3/232w2w2w2_2.jpg','image',0),(4011,90,'/2/3/2323r23r_3.jpg','image',0),(4012,90,'/2/3/2323243e32e2_3.jpg','image',0),(4013,90,'/2/3/232w2w2w2_3.jpg','image',0),(4014,90,'/2/3/2323r23r_4.jpg','image',0),(4015,90,'/2/3/2323243e32e2_4.jpg','image',0),(4016,90,'/2/3/232w2w2w2_4.jpg','image',0),(4017,90,'/2/3/2323r23r_5.jpg','image',0),(4018,90,'/2/3/2323243e32e2_5.jpg','image',0),(4019,90,'/2/3/232w2w2w2_5.jpg','image',0),(4020,90,'/i/m/image_31074190_83_620x757_0_1.jpg','image',0),(4021,90,'/i/m/image_31074190_83_620x757_1_1.jpg','image',0),(4022,90,'/i/m/image_31074190_83_620x757_4_1.jpg','image',0),(4023,90,'/i/m/image_31074190_83_620x757_0_1_1.jpg','image',0),(4024,90,'/i/m/image_31074190_83_620x757_1_1_1.jpg','image',0),(4025,90,'/i/m/image_31074190_83_620x757_4_1_1.jpg','image',0),(4026,90,'/i/m/image_31074190_83_620x757_0_2.jpg','image',0),(4027,90,'/i/m/image_31074190_83_620x757_1_2.jpg','image',0),(4028,90,'/i/m/image_31074190_83_620x757_4_2.jpg','image',0),(4029,90,'/i/m/image_31074190_83_620x757_0_3.jpg','image',0),(4030,90,'/i/m/image_31074190_83_620x757_1_3.jpg','image',0),(4031,90,'/i/m/image_31074190_83_620x757_4_3.jpg','image',0),(4032,90,'/i/m/image_31074190_83_620x757_0_4.jpg','image',0),(4033,90,'/i/m/image_31074190_83_620x757_1_4.jpg','image',0),(4034,90,'/i/m/image_31074190_83_620x757_4_4.jpg','image',0),(4035,90,'/i/m/image_31074190_83_620x757_0_5.jpg','image',0),(4036,90,'/i/m/image_31074190_83_620x757_1_5.jpg','image',0),(4037,90,'/i/m/image_31074190_83_620x757_4_5.jpg','image',0),(4038,90,'/2/1/211w1w1w2.jpg','image',0),(4039,90,'/2/e/2e2e2w2w2w.jpg','image',0),(4040,90,'/2/w/2w1q2w2w2.jpg','image',0),(4041,90,'/3/2/3232e2e3e.jpg','image',0),(4042,90,'/2/1/211w1w1w2_1.jpg','image',0),(4043,90,'/2/e/2e2e2w2w2w_1.jpg','image',0),(4044,90,'/2/w/2w1q2w2w2_1.jpg','image',0),(4045,90,'/3/2/3232e2e3e_1.jpg','image',0),(4046,90,'/2/1/211w1w1w2_2.jpg','image',0),(4047,90,'/2/e/2e2e2w2w2w_2.jpg','image',0),(4048,90,'/2/w/2w1q2w2w2_2.jpg','image',0),(4049,90,'/3/2/3232e2e3e_2.jpg','image',0),(4050,90,'/2/1/211w1w1w2_3.jpg','image',0),(4051,90,'/2/e/2e2e2w2w2w_3.jpg','image',0),(4052,90,'/2/w/2w1q2w2w2_3.jpg','image',0),(4053,90,'/3/2/3232e2e3e_3.jpg','image',0),(4054,90,'/i/m/image_30930729_37_970x1182_0_1.jpg','image',0),(4055,90,'/i/m/image_30930729_37_970x1182_1_1.jpg','image',0),(4056,90,'/i/m/image_30930729_37_970x1182_2_1.jpg','image',0),(4057,90,'/i/m/image_30930729_37_970x1182_3_1.jpg','image',0),(4058,90,'/i/m/image_30930729_37_970x1182_0_1_1.jpg','image',0),(4059,90,'/i/m/image_30930729_37_970x1182_1_1_1.jpg','image',0),(4060,90,'/i/m/image_30930729_37_970x1182_2_1_1.jpg','image',0),(4061,90,'/i/m/image_30930729_37_970x1182_3_1_1.jpg','image',0),(4062,90,'/i/m/image_30930729_37_970x1182_0_2.jpg','image',0),(4063,90,'/i/m/image_30930729_37_970x1182_1_2.jpg','image',0),(4064,90,'/i/m/image_30930729_37_970x1182_2_2.jpg','image',0),(4065,90,'/i/m/image_30930729_37_970x1182_3_2.jpg','image',0),(4066,90,'/i/m/image_30930729_37_970x1182_0_3.jpg','image',0),(4067,90,'/i/m/image_30930729_37_970x1182_1_3.jpg','image',0),(4068,90,'/i/m/image_30930729_37_970x1182_2_3.jpg','image',0),(4069,90,'/i/m/image_30930729_37_970x1182_3_3.jpg','image',0),(4070,90,'/2/3/2342ee3e3.jpg','image',0),(4071,90,'/3/3/33e3e23232.jpg','image',0),(4072,90,'/2/e/2e3e3e3e2e.jpg','image',0),(4073,90,'/2/3/2342ee3e3_1.jpg','image',0),(4074,90,'/3/3/33e3e23232_1.jpg','image',0),(4075,90,'/2/e/2e3e3e3e2e_1.jpg','image',0),(4076,90,'/2/3/2342ee3e3_2.jpg','image',0),(4077,90,'/3/3/33e3e23232_2.jpg','image',0),(4078,90,'/2/e/2e3e3e3e2e_2.jpg','image',0),(4079,90,'/2/3/2342ee3e3_3.jpg','image',0),(4080,90,'/3/3/33e3e23232_3.jpg','image',0),(4081,90,'/2/e/2e3e3e3e2e_3.jpg','image',0),(4082,90,'/2/3/2342ee3e3_4.jpg','image',0),(4083,90,'/3/3/33e3e23232_4.jpg','image',0),(4084,90,'/2/e/2e3e3e3e2e_4.jpg','image',0),(4085,90,'/i/m/image_31093629_20_620x757_0_1.jpg','image',0),(4086,90,'/i/m/image_31093629_20_620x757_1_1.jpg','image',0),(4087,90,'/i/m/image_31093629_20_620x757_5_1.jpg','image',0),(4088,90,'/i/m/image_31093629_20_620x757_0_1_1.jpg','image',0),(4089,90,'/i/m/image_31093629_20_620x757_1_1_1.jpg','image',0),(4090,90,'/i/m/image_31093629_20_620x757_5_1_1.jpg','image',0),(4091,90,'/i/m/image_31093629_20_620x757_0_2.jpg','image',0),(4092,90,'/i/m/image_31093629_20_620x757_1_2.jpg','image',0),(4093,90,'/i/m/image_31093629_20_620x757_5_2.jpg','image',0),(4094,90,'/i/m/image_31093629_20_620x757_0_3.jpg','image',0),(4095,90,'/i/m/image_31093629_20_620x757_1_3.jpg','image',0),(4096,90,'/i/m/image_31093629_20_620x757_5_3.jpg','image',0),(4097,90,'/i/m/image_31093629_20_620x757_0_4.jpg','image',0),(4098,90,'/i/m/image_31093629_20_620x757_1_4.jpg','image',0),(4099,90,'/i/m/image_31093629_20_620x757_5_4.jpg','image',0),(4100,90,'/2/3/23423433.jpg','image',0),(4101,90,'/3/4/343d3d4f3.jpg','image',0),(4102,90,'/3/4/343r3r3r.jpg','image',0),(4103,90,'/2/3/23423433_1.jpg','image',0),(4104,90,'/3/4/343d3d4f3_1.jpg','image',0),(4105,90,'/3/4/343r3r3r_1.jpg','image',0),(4106,90,'/2/3/23423433_2.jpg','image',0),(4107,90,'/3/4/343d3d4f3_2.jpg','image',0),(4108,90,'/3/4/343r3r3r_2.jpg','image',0),(4109,90,'/2/3/23423433_3.jpg','image',0),(4110,90,'/3/4/343d3d4f3_3.jpg','image',0),(4111,90,'/3/4/343r3r3r_3.jpg','image',0),(4112,90,'/2/3/23423433_4.jpg','image',0),(4113,90,'/3/4/343d3d4f3_4.jpg','image',0),(4114,90,'/3/4/343r3r3r_4.jpg','image',0),(4115,90,'/4/3/43454r4r4r.jpg','image',0),(4116,90,'/3/4/343422e2e.jpg','image',0),(4117,90,'/3/4/3423w2w2e.jpg','image',0),(4118,90,'/4/3/43454r4r4r_1.jpg','image',0),(4119,90,'/3/4/343422e2e_1.jpg','image',0),(4120,90,'/3/4/3423w2w2e_1.jpg','image',0),(4121,90,'/4/3/43454r4r4r_2.jpg','image',0),(4122,90,'/3/4/343422e2e_2.jpg','image',0),(4123,90,'/3/4/3423w2w2e_2.jpg','image',0),(4124,90,'/4/3/43454r4r4r_3.jpg','image',0),(4125,90,'/3/4/343422e2e_3.jpg','image',0),(4126,90,'/3/4/3423w2w2e_3.jpg','image',0),(4127,90,'/4/3/43454r4r4r_4.jpg','image',0),(4128,90,'/3/4/343422e2e_4.jpg','image',0),(4129,90,'/3/4/3423w2w2e_4.jpg','image',0),(4130,90,'/4/3/43454r4r4r_5.jpg','image',0),(4131,90,'/3/4/343422e2e_5.jpg','image',0),(4132,90,'/3/4/3423w2w2e_5.jpg','image',0),(4133,90,'/i/m/image_30945868_82_620x757_0_1.jpg','image',0),(4134,90,'/i/m/image_30945868_82_620x757_4_1.jpg','image',0),(4135,90,'/i/m/image_30945868_82_620x757_3_1.jpg','image',0),(4136,90,'/i/m/image_30945868_82_620x757_0_1_1.jpg','image',0),(4137,90,'/i/m/image_30945868_82_620x757_4_1_1.jpg','image',0),(4138,90,'/i/m/image_30945868_82_620x757_3_1_1.jpg','image',0),(4139,90,'/i/m/image_30945868_82_620x757_0_2.jpg','image',0),(4140,90,'/i/m/image_30945868_82_620x757_4_2.jpg','image',0),(4141,90,'/i/m/image_30945868_82_620x757_3_2.jpg','image',0),(4142,90,'/i/m/image_30945868_82_620x757_0_3.jpg','image',0),(4143,90,'/i/m/image_30945868_82_620x757_4_3.jpg','image',0),(4144,90,'/i/m/image_30945868_82_620x757_3_3.jpg','image',0),(4145,90,'/i/m/image_30945868_82_620x757_0_4.jpg','image',0),(4146,90,'/i/m/image_30945868_82_620x757_4_4.jpg','image',0),(4147,90,'/i/m/image_30945868_82_620x757_3_4.jpg','image',0),(4148,90,'/i/m/image_30945868_82_620x757_0_5.jpg','image',0),(4149,90,'/i/m/image_30945868_82_620x757_4_5.jpg','image',0),(4150,90,'/i/m/image_30945868_82_620x757_3_5.jpg','image',0),(4151,90,'/2/3/235423r4f4r.jpg','image',0),(4152,90,'/3/4/343r3r4r4.jpg','image',0),(4153,90,'/2/3/232e32e3e.jpg','image',0),(4154,90,'/i/m/image_31333018_65_620x757_0_1.jpg','image',0),(4155,90,'/i/m/image_31333018_65_620x757_4_1.jpg','image',0),(4156,90,'/i/m/image_31333018_65_620x757_1-1_1.jpg','image',0),(4157,90,'/2/3/235423r4f4r_1.jpg','image',0),(4158,90,'/3/4/343r3r4r4_1.jpg','image',0),(4159,90,'/2/3/232e32e3e_1.jpg','image',0),(4160,90,'/i/m/image_31333018_65_620x757_0_1_1.jpg','image',0),(4161,90,'/i/m/image_31333018_65_620x757_4_1_1.jpg','image',0),(4162,90,'/i/m/image_31333018_65_620x757_1-1_1_1.jpg','image',0),(4163,90,'/2/3/235423r4f4r_2.jpg','image',0),(4164,90,'/3/4/343r3r4r4_2.jpg','image',0),(4165,90,'/2/3/232e32e3e_2.jpg','image',0),(4166,90,'/i/m/image_31333018_65_620x757_0_2.jpg','image',0),(4167,90,'/i/m/image_31333018_65_620x757_4_2.jpg','image',0),(4168,90,'/i/m/image_31333018_65_620x757_1-1_2.jpg','image',0),(4169,90,'/2/3/235423r4f4r_3.jpg','image',0),(4170,90,'/3/4/343r3r4r4_3.jpg','image',0),(4171,90,'/2/3/232e32e3e_3.jpg','image',0),(4172,90,'/i/m/image_31333018_65_620x757_0_3.jpg','image',0),(4173,90,'/i/m/image_31333018_65_620x757_4_3.jpg','image',0),(4174,90,'/i/m/image_31333018_65_620x757_1-1_3.jpg','image',0),(4175,90,'/2/3/2323e2e2e.jpg','image',0),(4176,90,'/2/3/2323232.jpg','image',0),(4177,90,'/2/3/2332e32e.jpg','image',0),(4178,90,'/1/2/12132e2e2we.jpg','image',0),(4179,90,'/2/3/2323e2e2e_1.jpg','image',0),(4180,90,'/2/3/2323232_1.jpg','image',0),(4181,90,'/2/3/2332e32e_1.jpg','image',0),(4182,90,'/1/2/12132e2e2we_1.jpg','image',0),(4183,90,'/2/3/2323e2e2e_2.jpg','image',0),(4184,90,'/2/3/2323232_2.jpg','image',0),(4185,90,'/2/3/2332e32e_2.jpg','image',0),(4186,90,'/1/2/12132e2e2we_2.jpg','image',0),(4187,90,'/2/3/2323e2e2e_3.jpg','image',0),(4188,90,'/2/3/2323232_3.jpg','image',0),(4189,90,'/2/3/2332e32e_3.jpg','image',0),(4190,90,'/1/2/12132e2e2we_3.jpg','image',0),(4191,90,'/i/m/image_31237526_30_970x1182_0_1.jpg','image',0),(4192,90,'/i/m/image_31237526_30_970x1182_1_1.jpg','image',0),(4193,90,'/i/m/image_31237526_30_970x1182_2_1.jpg','image',0),(4194,90,'/i/m/image_31237526_30_970x1182_3_1.jpg','image',0),(4195,90,'/i/m/image_31237526_30_970x1182_0_1_1.jpg','image',0),(4196,90,'/i/m/image_31237526_30_970x1182_1_1_1.jpg','image',0),(4197,90,'/i/m/image_31237526_30_970x1182_2_1_1.jpg','image',0),(4198,90,'/i/m/image_31237526_30_970x1182_3_1_1.jpg','image',0),(4199,90,'/i/m/image_31237526_30_970x1182_0_2.jpg','image',0),(4200,90,'/i/m/image_31237526_30_970x1182_1_2.jpg','image',0),(4201,90,'/i/m/image_31237526_30_970x1182_2_2.jpg','image',0),(4202,90,'/i/m/image_31237526_30_970x1182_3_2.jpg','image',0),(4203,90,'/i/m/image_31237526_30_970x1182_0_3.jpg','image',0),(4204,90,'/i/m/image_31237526_30_970x1182_1_3.jpg','image',0),(4205,90,'/i/m/image_31237526_30_970x1182_2_3.jpg','image',0),(4206,90,'/i/m/image_31237526_30_970x1182_3_3.jpg','image',0),(4207,90,'/2/2/22e33r.jpg','image',0),(4208,90,'/2/3/232e3e3e3.jpg','image',0),(4209,90,'/2/2/22w231313.jpg','image',0),(4210,90,'/2/3/2323e2e2e22.jpg','image',0),(4211,90,'/2/2/22e33r_1.jpg','image',0),(4212,90,'/2/3/232e3e3e3_1.jpg','image',0),(4213,90,'/2/2/22w231313_1.jpg','image',0),(4214,90,'/2/3/2323e2e2e22_1.jpg','image',0),(4215,90,'/2/2/22e33r_2.jpg','image',0),(4216,90,'/2/3/232e3e3e3_2.jpg','image',0),(4217,90,'/2/2/22w231313_2.jpg','image',0),(4218,90,'/2/3/2323e2e2e22_2.jpg','image',0),(4219,90,'/i/m/image_30811612_22_970x1182_0_1.jpg','image',0),(4220,90,'/i/m/image_30811612_22_970x1182_1_1.jpg','image',0),(4221,90,'/i/m/image_30811612_22_970x1182_2_1.jpg','image',0),(4222,90,'/i/m/image_30811612_22_970x1182_3_1.jpg','image',0),(4223,90,'/i/m/image_30811612_22_970x1182_0_1_1.jpg','image',0),(4224,90,'/i/m/image_30811612_22_970x1182_1_1_1.jpg','image',0),(4225,90,'/i/m/image_30811612_22_970x1182_2_1_1.jpg','image',0),(4226,90,'/i/m/image_30811612_22_970x1182_3_1_1.jpg','image',0),(4227,90,'/i/m/image_30811612_22_970x1182_0_2.jpg','image',0),(4228,90,'/i/m/image_30811612_22_970x1182_1_2.jpg','image',0),(4229,90,'/i/m/image_30811612_22_970x1182_2_2.jpg','image',0),(4230,90,'/i/m/image_30811612_22_970x1182_3_2.jpg','image',0),(4231,90,'/2/w/2w2w2w111.jpg','image',0),(4232,90,'/2/w/2w23232323.jpg','image',0),(4233,90,'/2/3/23222w2w2ee.jpg','image',0),(4234,90,'/2/3/23232e22w2w.jpg','image',0),(4235,90,'/2/w/2w2w2w111_1.jpg','image',0),(4236,90,'/2/w/2w23232323_1.jpg','image',0),(4237,90,'/2/3/23222w2w2ee_1.jpg','image',0),(4238,90,'/2/3/23232e22w2w_1.jpg','image',0),(4239,90,'/2/w/2w2w2w111_2.jpg','image',0),(4240,90,'/2/w/2w23232323_2.jpg','image',0),(4241,90,'/2/3/23222w2w2ee_2.jpg','image',0),(4242,90,'/2/3/23232e22w2w_2.jpg','image',0),(4243,90,'/i/m/image_31292416_21_970x1182_0_1.jpg','image',0),(4244,90,'/i/m/image_31292416_21_970x1182_1_1.jpg','image',0),(4245,90,'/i/m/image_31292416_21_970x1182_2_1.jpg','image',0),(4246,90,'/i/m/image_31292416_21_970x1182_3_1.jpg','image',0),(4247,90,'/i/m/image_31292416_21_970x1182_0_1_1.jpg','image',0),(4248,90,'/i/m/image_31292416_21_970x1182_1_1_1.jpg','image',0),(4249,90,'/i/m/image_31292416_21_970x1182_2_1_1.jpg','image',0),(4250,90,'/i/m/image_31292416_21_970x1182_3_1_1.jpg','image',0),(4251,90,'/i/m/image_31292416_21_970x1182_0_2.jpg','image',0),(4252,90,'/i/m/image_31292416_21_970x1182_1_2.jpg','image',0),(4253,90,'/i/m/image_31292416_21_970x1182_2_2.jpg','image',0),(4254,90,'/i/m/image_31292416_21_970x1182_3_2.jpg','image',0),(4255,90,'/2/3/232w1w1.jpg','image',0),(4256,90,'/3/5/3543422s2.jpg','image',0),(4257,90,'/2/3/232w2w1w.jpg','image',0),(4258,90,'/3/4/342e2e2e2e.jpg','image',0),(4259,90,'/2/3/232w1w1_1.jpg','image',0),(4260,90,'/3/5/3543422s2_1.jpg','image',0),(4261,90,'/2/3/232w2w1w_1.jpg','image',0),(4262,90,'/3/4/342e2e2e2e_1.jpg','image',0),(4263,90,'/2/3/232w1w1_2.jpg','image',0),(4264,90,'/3/5/3543422s2_2.jpg','image',0),(4265,90,'/2/3/232w2w1w_2.jpg','image',0),(4266,90,'/3/4/342e2e2e2e_2.jpg','image',0),(4267,90,'/i/m/image_31241601_81_620x757_0_1.jpg','image',0),(4268,90,'/i/m/image_31241601_81_620x757_1_1.jpg','image',0),(4269,90,'/i/m/image_31241601_81_620x757_2_1.jpg','image',0),(4270,90,'/i/m/image_31241601_81_620x757_3_1.jpg','image',0),(4271,90,'/i/m/image_31241601_81_620x757_0_1_1.jpg','image',0),(4272,90,'/i/m/image_31241601_81_620x757_1_1_1.jpg','image',0),(4273,90,'/i/m/image_31241601_81_620x757_2_1_1.jpg','image',0),(4274,90,'/i/m/image_31241601_81_620x757_3_1_1.jpg','image',0),(4275,90,'/i/m/image_31241601_81_620x757_0_2.jpg','image',0),(4276,90,'/i/m/image_31241601_81_620x757_1_2.jpg','image',0),(4277,90,'/i/m/image_31241601_81_620x757_2_2.jpg','image',0),(4278,90,'/i/m/image_31241601_81_620x757_3_2.jpg','image',0),(4279,90,'/2/4/2432e2e2e2.jpg','image',0),(4280,90,'/2/3/232e2e3e3.jpg','image',0),(4281,90,'/2/3/232324343.jpg','image',0),(4282,90,'/2/3/232e2d3e2.jpg','image',0),(4283,90,'/2/4/2432e2e2e2_1.jpg','image',0),(4284,90,'/2/3/232e2e3e3_1.jpg','image',0),(4285,90,'/2/3/232324343_1.jpg','image',0),(4286,90,'/2/3/232e2d3e2_1.jpg','image',0),(4287,90,'/2/4/2432e2e2e2_2.jpg','image',0),(4288,90,'/2/3/232e2e3e3_2.jpg','image',0),(4289,90,'/2/3/232324343_2.jpg','image',0),(4290,90,'/2/3/232e2d3e2_2.jpg','image',0),(4291,90,'/i/m/image_31332644_47_970x1182_0_1.jpg','image',0),(4292,90,'/i/m/image_31332644_47_970x1182_1_1.jpg','image',0),(4293,90,'/i/m/image_31332644_47_970x1182_2_1.jpg','image',0),(4294,90,'/i/m/image_31332644_47_970x1182_3_1.jpg','image',0),(4295,90,'/i/m/image_31332644_47_970x1182_0_1_1.jpg','image',0),(4296,90,'/i/m/image_31332644_47_970x1182_1_1_1.jpg','image',0),(4297,90,'/i/m/image_31332644_47_970x1182_2_1_1.jpg','image',0),(4298,90,'/i/m/image_31332644_47_970x1182_3_1_1.jpg','image',0),(4299,90,'/i/m/image_31332644_47_970x1182_0_2.jpg','image',0),(4300,90,'/i/m/image_31332644_47_970x1182_1_2.jpg','image',0),(4301,90,'/i/m/image_31332644_47_970x1182_2_2.jpg','image',0),(4302,90,'/i/m/image_31332644_47_970x1182_3_2.jpg','image',0),(4303,90,'/2/3/232e2e.jpg','image',0),(4304,90,'/2/e/2e2e2e2e.jpg','image',0),(4305,90,'/2/4/2432e2w2w.jpg','image',0),(4306,90,'/2/3/232e23e2.jpg','image',0),(4307,90,'/2/3/232e2e_1.jpg','image',0),(4308,90,'/2/e/2e2e2e2e_1.jpg','image',0),(4309,90,'/2/4/2432e2w2w_1.jpg','image',0),(4310,90,'/2/3/232e23e2_1.jpg','image',0),(4311,90,'/2/3/232e2e_2.jpg','image',0),(4312,90,'/2/e/2e2e2e2e_2.jpg','image',0),(4313,90,'/2/4/2432e2w2w_2.jpg','image',0),(4314,90,'/2/3/232e23e2_2.jpg','image',0),(4315,90,'/i/m/image_31104994_83_970x1182_0_1.jpg','image',0),(4316,90,'/i/m/image_31104994_83_970x1182_1_1.jpg','image',0),(4317,90,'/i/m/image_31104994_83_970x1182_2_1.jpg','image',0),(4318,90,'/i/m/image_31104994_83_970x1182_3_1.jpg','image',0),(4319,90,'/i/m/image_31104994_83_970x1182_0_1_1.jpg','image',0),(4320,90,'/i/m/image_31104994_83_970x1182_1_1_1.jpg','image',0),(4321,90,'/i/m/image_31104994_83_970x1182_2_1_1.jpg','image',0),(4322,90,'/i/m/image_31104994_83_970x1182_3_1_1.jpg','image',0),(4323,90,'/i/m/image_31104994_83_970x1182_0_2.jpg','image',0),(4324,90,'/i/m/image_31104994_83_970x1182_1_2.jpg','image',0),(4325,90,'/i/m/image_31104994_83_970x1182_2_2.jpg','image',0),(4326,90,'/i/m/image_31104994_83_970x1182_3_2.jpg','image',0),(4327,90,'/3/4/343e2e2e3.jpg','image',0),(4328,90,'/2/4/2453464r3r3.jpg','image',0),(4329,90,'/2/4/24435t5t5t.jpg','image',0),(4330,90,'/2/4/24444r4r.jpg','image',0),(4331,90,'/3/4/343e2e2e3_1.jpg','image',0),(4332,90,'/2/4/2453464r3r3_1.jpg','image',0),(4333,90,'/2/4/24435t5t5t_1.jpg','image',0),(4334,90,'/2/4/24444r4r_1.jpg','image',0),(4335,90,'/3/4/343e2e2e3_2.jpg','image',0),(4336,90,'/2/4/2453464r3r3_2.jpg','image',0),(4337,90,'/2/4/24435t5t5t_2.jpg','image',0),(4338,90,'/2/4/24444r4r_2.jpg','image',0),(4339,90,'/i/m/image_31262293_21_970x1182_0_2.jpg','image',0),(4340,90,'/i/m/image_31262293_21_970x1182_1_2.jpg','image',0),(4341,90,'/i/m/image_31262293_21_970x1182_2_2.jpg','image',0),(4342,90,'/i/m/image_31262293_21_970x1182_3_1_.jpg','image',0),(4343,90,'/i/m/image_31262293_21_970x1182_0_1_1.jpg','image',0),(4344,90,'/i/m/image_31262293_21_970x1182_1_1_1.jpg','image',0),(4345,90,'/i/m/image_31262293_21_970x1182_2_1_1.jpg','image',0),(4346,90,'/i/m/image_31262293_21_970x1182_3_1__1.jpg','image',0),(4347,90,'/i/m/image_31262293_21_970x1182_0_2_1.jpg','image',0),(4348,90,'/i/m/image_31262293_21_970x1182_1_2_1.jpg','image',0),(4349,90,'/i/m/image_31262293_21_970x1182_2_2_1.jpg','image',0),(4350,90,'/i/m/image_31262293_21_970x1182_3_1__2.jpg','image',0),(4351,90,'/2/4/24334r4r3r.jpg','image',0),(4352,90,'/2/2/221w1w1w.jpg','image',0),(4353,90,'/2/2/22w11w1www.jpg','image',0),(4354,90,'/2/3/232e2e2.jpg','image',0),(4355,90,'/2/4/24334r4r3r_1.jpg','image',0),(4356,90,'/2/2/221w1w1w_1.jpg','image',0),(4357,90,'/2/2/22w11w1www_1.jpg','image',0),(4358,90,'/2/3/232e2e2_1.jpg','image',0),(4359,90,'/2/4/24334r4r3r_2.jpg','image',0),(4360,90,'/2/2/221w1w1w_2.jpg','image',0),(4361,90,'/2/2/22w11w1www_2.jpg','image',0),(4362,90,'/2/3/232e2e2_2.jpg','image',0),(4363,90,'/i/m/image_31268637_45_970x1182_0_1.jpg','image',0),(4364,90,'/i/m/image_31268637_45_970x1182_1_1.jpg','image',0),(4365,90,'/i/m/image_31268637_45_970x1182_2_1.jpg','image',0),(4366,90,'/i/m/image_31268637_45_970x1182_3_1.jpg','image',0),(4367,90,'/i/m/image_31268637_45_970x1182_0_1_1.jpg','image',0),(4368,90,'/i/m/image_31268637_45_970x1182_1_1_1.jpg','image',0),(4369,90,'/i/m/image_31268637_45_970x1182_2_1_1.jpg','image',0),(4370,90,'/i/m/image_31268637_45_970x1182_3_1_1.jpg','image',0),(4371,90,'/i/m/image_31268637_45_970x1182_0_2.jpg','image',0),(4372,90,'/i/m/image_31268637_45_970x1182_1_2.jpg','image',0),(4373,90,'/i/m/image_31268637_45_970x1182_2_2.jpg','image',0),(4374,90,'/i/m/image_31268637_45_970x1182_3_2.jpg','image',0),(4375,90,'/2/3/23r4r4r4_1.jpg','image',0),(4376,90,'/2/3/2343e3e2e.jpg','image',0),(4377,90,'/3/3/3343r3r.jpg','image',0),(4378,90,'/2/3/23r4r4r4_1_1.jpg','image',0),(4379,90,'/2/3/2343e3e2e_1.jpg','image',0),(4380,90,'/3/3/3343r3r_1.jpg','image',0),(4381,90,'/2/3/23r4r4r4_1_2.jpg','image',0),(4382,90,'/2/3/2343e3e2e_2.jpg','image',0),(4383,90,'/3/3/3343r3r_2.jpg','image',0),(4384,90,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_1.jpg','image',0),(4385,90,'/0/3/038_b2f26eea-4343-4453-ae75-e59def6fa13b_1.jpg','image',0),(4386,90,'/0/3/038_de5e44e3-159d-4df1-a18a-8ef7ea6a45e8_1.jpg','image',0),(4387,90,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_1_1.jpg','image',0),(4388,90,'/0/3/038_b2f26eea-4343-4453-ae75-e59def6fa13b_1_1.jpg','image',0),(4389,90,'/0/3/038_de5e44e3-159d-4df1-a18a-8ef7ea6a45e8_1_1.jpg','image',0),(4390,90,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_2.jpg','image',0),(4391,90,'/0/3/038_b2f26eea-4343-4453-ae75-e59def6fa13b_2.jpg','image',0),(4392,90,'/0/3/038_de5e44e3-159d-4df1-a18a-8ef7ea6a45e8_2.jpg','image',0),(4393,90,'/2/2/22w2w2w_1.jpg','image',0),(4394,90,'/2/3/23e2e2e_1.jpg','image',0),(4395,90,'/2/2/22w2w1w1w21_1.jpg','image',0),(4396,90,'/m/a/main_7_1_1.jpg','image',0),(4397,90,'/i/m/image_31191497_21_620x757_1_1.jpg','image',0),(4398,90,'/i/m/image_31191497_21_620x757_2_1.jpg','image',0),(4399,90,'/2/3/234e3e.jpg','image',0),(4400,90,'/i/m/image_31045897_10_620x757_2_1.jpg','image',0),(4401,90,'/2/2/22w2w1e1e.jpg','image',0),(4402,90,'/8/7/87hu.jpg','image',0),(4403,90,'/2/3/234e3e_1.jpg','image',0),(4404,90,'/i/m/image_31045897_10_620x757_2_1_1.jpg','image',0),(4405,90,'/2/2/22w2w1e1e_1.jpg','image',0),(4406,90,'/8/7/87hu_1.jpg','image',0),(4407,90,'/i/m/image_31045897_10_620x757_1_1.jpg','image',0),(4408,90,'/i/m/image_31045897_10_620x757_2_2.jpg','image',0),(4409,90,'/m/a/main_4_1.jpg','image',0),(4410,90,'/i/m/image_31045897_10_620x757_3_1.jpg','image',0),(4411,90,'/i/m/image_31045897_10_620x757_1_1_1.jpg','image',0),(4412,90,'/i/m/image_31045897_10_620x757_2_1_2.jpg','image',0),(4413,90,'/m/a/main_4_1_1.jpg','image',0),(4414,90,'/i/m/image_31045897_10_620x757_3_1_1.jpg','image',0),(4415,90,'/2/3/2312w2w2w_1.jpg','image',0),(4416,90,'/3/4/34343e2e2e_1.jpg','image',0),(4417,90,'/2/e/2e2w1w1w1_1.jpg','image',0),(4418,90,'/2/e/2e2w1w1w1w1w_1.jpg','image',0),(4419,90,'/m/a/main_15_2_1.jpg','image',0),(4420,90,'/i/m/image_31005341_33_620x757_4_1_1.jpg','image',0),(4421,90,'/i/m/image_31005341_33_620x757_2_1_1.jpg','image',0),(4422,90,'/i/m/image_31005341_33_620x757_1_1_1.jpg','image',0),(4423,90,'/2/3/232e2e2e2e.jpg','image',0),(4424,90,'/2/e/2e2ew2w2w2.jpg','image',0),(4425,90,'/2/3/234232e3e2.jpg','image',0),(4426,90,'/i/m/image_31289374_75_620x757_2_1.jpg','image',0),(4427,90,'/2/3/232e2e2e2e_1.jpg','image',0),(4428,90,'/2/e/2e2ew2w2w2_1.jpg','image',0),(4429,90,'/2/3/234232e3e2_1.jpg','image',0),(4430,90,'/i/m/image_31289374_75_620x757_2_1_1.jpg','image',0),(4431,90,'/i/m/image_31289374_75_620x757_1_1.jpg','image',0),(4432,90,'/m/a/main_15_3.jpg','image',0),(4433,90,'/i/m/image_31289374_75_620x757_3_1.jpg','image',0),(4434,90,'/i/m/image_31289374_75_620x757_2_2.jpg','image',0),(4435,90,'/i/m/image_31289374_75_620x757_1_1_1.jpg','image',0),(4436,90,'/m/a/main_15_1_1.jpg','image',0),(4437,90,'/i/m/image_31289374_75_620x757_3_1_1.jpg','image',0),(4438,90,'/i/m/image_31289374_75_620x757_2_1_2.jpg','image',0),(4439,90,'/2/3/232e2e2e2e_1_1.jpg','image',0),(4440,90,'/2/4/243232e32e_1.jpg','image',0),(4441,90,'/2/3/234243e2e_1.jpg','image',0),(4442,90,'/2/3/2322w12w1w1w2_1.jpg','image',0),(4443,90,'/i/m/image_31175794_72_620x757_1_2_1.jpg','image',0),(4444,90,'/i/m/image_31175794_72_620x757_2_2_1.jpg','image',0),(4445,90,'/i/m/image_31175794_72_620x757_3_2_1.jpg','image',0),(4446,90,'/m/a/main_15_1_1_1.jpg','image',0),(4447,90,'/2/3/232w21212.jpg','image',0),(4448,90,'/2/3/232w2w2e.jpg','image',0),(4449,90,'/i/m/image_31258335_50_620x757_2_1.jpg','image',0),(4450,90,'/3/4/34523r3e3e3.jpg','image',0),(4451,90,'/2/3/232w21212_1.jpg','image',0),(4452,90,'/2/3/232w2w2e_1.jpg','image',0),(4453,90,'/i/m/image_31258335_50_620x757_2_1_1.jpg','image',0),(4454,90,'/3/4/34523r3e3e3_1.jpg','image',0),(4455,90,'/i/m/image_31258335_50_620x757_1_1.jpg','image',0),(4456,90,'/m/a/main_3_1_1.jpg','image',0),(4457,90,'/i/m/image_31258335_50_620x757_2_2.jpg','image',0),(4458,90,'/i/m/image_31258335_50_620x757_3_1.jpg','image',0),(4459,90,'/i/m/image_31258335_50_620x757_1_1_1.jpg','image',0),(4460,90,'/m/a/main_3_1_1_1.jpg','image',0),(4461,90,'/i/m/image_31258335_50_620x757_2_1_2.jpg','image',0),(4462,90,'/i/m/image_31258335_50_620x757_3_1_1.jpg','image',0),(4463,90,'/2/3/231212322e_1.jpg','image',0),(4464,90,'/2/3/232e2d_1.jpg','image',0),(4465,90,'/2/3/233r23rr4r_1.jpg','image',0),(4466,90,'/2/3/2343e2e3e_1.jpg','image',0),(4467,90,'/m/a/main_12_1_1.jpg','image',0),(4468,90,'/i/m/image_31327540_81_620x757_5_1.jpg','image',0),(4469,90,'/i/m/image_31327540_81_620x757_2_1.jpg','image',0),(4470,90,'/i/m/image_31327540_81_620x757_1_1.jpg','image',0),(4471,90,'/2/3/2323e2e2e_1_1.jpg','image',0),(4472,90,'/3/4/342e2e2e2e2e_1.jpg','image',0),(4473,90,'/2/3/232313e3e_1.jpg','image',0),(4474,90,'/1/3/13232e2ww1w_1.jpg','image',0),(4475,90,'/m/a/main_11_1_1.jpg','image',0),(4476,90,'/i/m/image_31304473_72_620x757_2_1.jpg','image',0),(4477,90,'/i/m/image_31304473_72_620x757_3_1.jpg','image',0),(4478,90,'/i/m/image_31304473_72_620x757_1_1.jpg','image',0),(4479,90,'/2/3/232e3e3e_1.jpg','image',0),(4480,90,'/2/3/2342e2e2e_1.jpg','image',0),(4481,90,'/2/4/2432433e3e_1.jpg','image',0),(4482,90,'/2/3/23e3e34_1.jpg','image',0),(4483,90,'/m/a/main_10_1_1.jpg','image',0),(4484,90,'/i/m/image_31223382_72_620x757_4_1.jpg','image',0),(4485,90,'/i/m/image_31223382_72_620x757_2_1.jpg','image',0),(4486,90,'/i/m/image_31223382_72_620x757_1_1.jpg','image',0),(4487,90,'/2/3/232e3e2e2_1.jpg','image',0),(4488,90,'/3/3/33433e2e2e_1.jpg','image',0),(4489,90,'/3/4/3453e3_1.jpg','image',0),(4490,90,'/m/a/main_10_2_1.jpg','image',0),(4491,90,'/i/m/image_31062218_34_620x757_1_1.jpg','image',0),(4492,90,'/i/m/image_31062218_34_620x757_2_1.jpg','image',0),(4493,90,'/3/4/3423r434534_1.jpg','image',0),(4494,90,'/2/3/232433e2e2e_1.jpg','image',0),(4495,90,'/2/3/232e2e2e_1.jpg','image',0),(4496,90,'/3/4/343e3r4r4_1.jpg','image',0),(4497,90,'/i/m/image_31034537_81_620x757_1_1.jpg','image',0),(4498,90,'/i/m/image_31034537_81_620x757_2_1.jpg','image',0),(4499,90,'/2/3/23e2132312.jpg','image',0),(4500,90,'/3/2/32ed3d3e.jpg','image',0),(4501,90,'/4/3/4354r43r3r3r44.jpg','image',0),(4502,90,'/i/m/image_31160296_11_620x757_2_1.jpg','image',0),(4503,90,'/2/3/23e2132312_1.jpg','image',0),(4504,90,'/3/2/32ed3d3e_1.jpg','image',0),(4505,90,'/4/3/4354r43r3r3r44_1.jpg','image',0),(4506,90,'/i/m/image_31160296_11_620x757_2_1_1.jpg','image',0),(4507,90,'/2/3/23e2132312_2.jpg','image',0),(4508,90,'/3/2/32ed3d3e_2.jpg','image',0),(4509,90,'/4/3/4354r43r3r3r44_2.jpg','image',0),(4510,90,'/i/m/image_31160296_11_620x757_2_1_2.jpg','image',0),(4511,90,'/2/3/2323244442.jpg','image',0),(4512,90,'/i/m/image_31160296_11_620x757_1_1.jpg','image',0),(4513,90,'/i/m/image_31160296_11_620x757_3_1.jpg','image',0),(4514,90,'/i/m/image_31160296_11_620x757_2_2.jpg','image',0),(4515,90,'/2/3/2323244442_1.jpg','image',0),(4516,90,'/i/m/image_31160296_11_620x757_1_1_1.jpg','image',0),(4517,90,'/i/m/image_31160296_11_620x757_3_1_1.jpg','image',0),(4518,90,'/i/m/image_31160296_11_620x757_2_1_3.jpg','image',0),(4519,90,'/2/3/2323244442_2.jpg','image',0),(4520,90,'/i/m/image_31160296_11_620x757_1_2.jpg','image',0),(4521,90,'/i/m/image_31160296_11_620x757_3_2.jpg','image',0),(4522,90,'/i/m/image_31160296_11_620x757_2_2_1.jpg','image',0),(4523,90,'/2/4/243r3r3e3e.jpg','image',0),(4524,90,'/1/2/12323232ee3.jpg','image',0),(4525,90,'/i/m/image_31160298_16_620x757_2_1.jpg','image',0),(4526,90,'/2/3/2343e3e3_1.jpg','image',0),(4527,90,'/2/4/243r3r3e3e_1.jpg','image',0),(4528,90,'/1/2/12323232ee3_2.jpg','image',0),(4529,90,'/i/m/image_31160298_16_620x757_2_1_1.jpg','image',0),(4530,90,'/2/3/2343e3e3_1_1.jpg','image',0),(4531,90,'/i/m/image_31160298_16_620x757_1_1.jpg','image',0),(4532,90,'/m/a/main_5_2_1_.jpg','image',0),(4533,90,'/i/m/image_31160298_16_620x757_2_2.jpg','image',0),(4534,90,'/i/m/image_31160298_16_620x757_3_1.jpg','image',0),(4535,90,'/i/m/image_31160298_16_620x757_1_1_1.jpg','image',0),(4536,90,'/m/a/main_5_2_1__1.jpg','image',0),(4537,90,'/i/m/image_31160298_16_620x757_2_1_2.jpg','image',0),(4538,90,'/i/m/image_31160298_16_620x757_3_1_1.jpg','image',0),(4539,90,'/2/3/23434r4r4.jpg','image',0),(4540,90,'/3/5/3543r3e2e2.jpg','image',0),(4541,90,'/i/m/image_31160332_10_620x757_2_1.jpg','image',0),(4542,90,'/1/2/123w233_1.jpg','image',0),(4543,90,'/2/3/23434r4r4_1.jpg','image',0),(4544,90,'/3/5/3543r3e2e2_1.jpg','image',0),(4545,90,'/i/m/image_31160332_10_620x757_2_1_1.jpg','image',0),(4546,90,'/1/2/123w233_1_1.jpg','image',0),(4547,90,'/i/m/image_31160332_10_620x757_0_1.jpg','image',0),(4548,90,'/i/m/image_31160332_10_620x757_1_1.jpg','image',0),(4549,90,'/i/m/image_31160332_10_620x757_2_2.jpg','image',0),(4550,90,'/m/a/main_1_1_1.jpg','image',0),(4551,90,'/i/m/image_31160332_10_620x757_0_1_1.jpg','image',0),(4552,90,'/i/m/image_31160332_10_620x757_1_1_1.jpg','image',0),(4553,90,'/i/m/image_31160332_10_620x757_2_1_2.jpg','image',0),(4554,90,'/m/a/main_1_1_1_1.jpg','image',0),(4555,90,'/2/3/232312e3e3e.jpg','image',0),(4556,90,'/2/3/232w2w.jpg','image',0),(4557,90,'/2/3/23e3e23434.jpg','image',0),(4558,90,'/i/m/image_31300702_10_620x757_2_1.jpg','image',0),(4559,90,'/2/3/232312e3e3e_1.jpg','image',0),(4560,90,'/2/3/232w2w_1.jpg','image',0),(4561,90,'/2/3/23e3e23434_1.jpg','image',0),(4562,90,'/i/m/image_31300702_10_620x757_2_1_1.jpg','image',0),(4563,90,'/m/a/main_4_2_1.jpg','image',0),(4564,90,'/i/m/image_31300702_10_620x757_1_1.jpg','image',0),(4565,90,'/i/m/image_31300702_10_620x757_3_1.jpg','image',0),(4566,90,'/i/m/image_31300702_10_620x757_2_2.jpg','image',0),(4567,90,'/m/a/main_4_2_1_1.jpg','image',0),(4568,90,'/i/m/image_31300702_10_620x757_1_1_1.jpg','image',0),(4569,90,'/i/m/image_31300702_10_620x757_3_1_1.jpg','image',0),(4570,90,'/i/m/image_31300702_10_620x757_2_1_2.jpg','image',0),(4571,90,'/3/4/343e3r4r4_1_1.jpg','image',0),(4572,90,'/3/4/34t45t35_1.jpg','image',0),(4573,90,'/2/3/234343e3e2e_1.jpg','image',0),(4574,90,'/m/a/main_6_1_1.jpg','image',0),(4575,90,'/i/m/image_31162615_74_620x757_1_1.jpg','image',0),(4576,90,'/i/m/image_31162615_74_620x757_2_1.jpg','image',0),(4577,90,'/2/3/23223x23_1.jpg','image',0),(4578,90,'/2/4/242e2e3e3e_1.jpg','image',0),(4579,90,'/2/4/24342323x_1.jpg','image',0),(4580,90,'/m/a/main_8_1_1.jpg','image',0),(4581,90,'/i/m/image_31146614_33_620x757_1_1.jpg','image',0),(4582,90,'/i/m/image_31146614_33_620x757_2_1.jpg','image',0),(4583,90,'/b/l/black.jpg','image',0),(4584,90,'/b/l/black_1.jpg','image',0),(4585,90,'/b/l/black_2.jpg','image',0),(4586,90,'/r/e/red.jpg','image',0),(4587,90,'/r/e/red_1.jpg','image',0),(4588,90,'/r/e/red_2.jpg','image',0),(4589,90,'/g/r/grey.jpg','image',0),(4590,90,'/g/r/grey_1.jpg','image',0),(4591,90,'/g/r/grey_2.jpg','image',0),(4592,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back_3.jpg','image',0),(4593,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_detail_3.jpg','image',0),(4594,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_side_3.jpg','image',0),(4595,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_3.jpg','image',0),(4596,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back_1.jpg','image',0),(4597,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_detail_1.jpg','image',0),(4598,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_side_1.jpg','image',0),(4599,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_1.jpg','image',0),(4600,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back_2_1.jpg','image',0),(4601,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_detail_2_1.jpg','image',0),(4602,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_side_2_1.jpg','image',0),(4603,90,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_2_1.jpg','image',0),(4604,90,'/5/t/5ty77yuuu_3.jpg','image',0),(4605,90,'/5/t/5t6y666_3.jpg','image',0),(4606,90,'/5/t/5t4e4r4r4r_3.jpg','image',0),(4607,90,'/3/5/3545ttt4_3.jpg','image',0),(4608,90,'/5/t/5ty77yuuu_1_1.jpg','image',0),(4609,90,'/5/t/5t6y666_1_1.jpg','image',0),(4610,90,'/5/t/5t4e4r4r4r_1_1.jpg','image',0),(4611,90,'/3/5/3545ttt4_1_1.jpg','image',0),(4612,90,'/5/t/5ty77yuuu_2_1.jpg','image',0),(4613,90,'/5/t/5t6y666_2_1.jpg','image',0),(4614,90,'/5/t/5t4e4r4r4r_2_1.jpg','image',0),(4615,90,'/3/5/3545ttt4_2_1.jpg','image',0),(4616,90,'/2/3/23423e3e3e32.jpg','image',0),(4617,90,'/2/3/234e3e3r_1.jpg','image',0),(4618,90,'/2/3/2342e3e3e3.jpg','image',0),(4619,90,'/i/m/image_31300702_10_620x757_2_1_3.jpg','image',0),(4620,90,'/2/3/23423e3e3e32_1.jpg','image',0),(4621,90,'/2/3/234e3e3r_1_1.jpg','image',0),(4622,90,'/2/3/2342e3e3e3_1.jpg','image',0),(4623,90,'/i/m/image_31300702_10_620x757_2_1_1_1.jpg','image',0),(4624,90,'/i/m/image_31178507_75_620x757_1_1_1.jpg','image',0),(4625,90,'/m/a/main_2_1_1.jpg','image',0),(4626,90,'/i/m/image_31178507_75_620x757_3_1_1.jpg','image',0),(4627,90,'/i/m/image_31300702_10_620x757_2_3.jpg','image',0),(4628,90,'/i/m/image_31178507_75_620x757_1_1_1_1.jpg','image',0),(4629,90,'/m/a/main_2_1_1_1.jpg','image',0),(4630,90,'/i/m/image_31178507_75_620x757_3_1_1_1.jpg','image',0),(4631,90,'/i/m/image_31300702_10_620x757_2_1_4.jpg','image',0),(4638,90,'/w/h/white.jpg','image',0),(4639,90,'/w/h/white_1.jpg','image',0),(4640,90,'/w/h/white_2.jpg','image',0),(4641,90,'/w/h/white_3.jpg','image',0),(4642,90,'/w/h/white_4.jpg','image',0),(4643,90,'/w/h/white_5.jpg','image',0),(4644,90,'/g/r/grey_1_1.jpg','image',0),(4645,90,'/g/r/grey_1_1_1.jpg','image',0),(4646,90,'/g/r/grey_1_2.jpg','image',0),(4647,90,'/g/r/grey_1_3.jpg','image',0),(4648,90,'/g/r/grey_1_4.jpg','image',0),(4649,90,'/g/r/grey_1_5.jpg','image',0),(4650,90,'/b/l/black_1_1.jpg','image',0),(4651,90,'/b/l/black_1_1_1.jpg','image',0),(4652,90,'/b/l/black_1_2.jpg','image',0),(4653,90,'/b/l/black_1_3.jpg','image',0),(4654,90,'/b/l/black_1_4.jpg','image',0),(4655,90,'/b/l/black_1_5.jpg','image',0),(4656,90,'/r/e/red_1_1.jpg','image',0),(4657,90,'/r/e/red_1_1_1.jpg','image',0),(4658,90,'/r/e/red_1_2.jpg','image',0),(4659,90,'/r/e/red_1_3.jpg','image',0),(4660,90,'/r/e/red_1_4.jpg','image',0),(4661,90,'/r/e/red_1_5.jpg','image',0),(4662,90,'/b/l/blue.jpg','image',0),(4663,90,'/b/l/blue_1.jpg','image',0),(4664,90,'/b/l/blue_2.jpg','image',0),(4665,90,'/b/l/blue_3.jpg','image',0),(4666,90,'/b/l/blue_4.jpg','image',0),(4667,90,'/b/l/blue_5.jpg','image',0),(4668,90,'/i/m/image_31091479_21_970x1182_0_3.jpg','image',0),(4669,90,'/i/m/image_31091479_21_970x1182_1_3.jpg','image',0),(4670,90,'/i/m/image_31091479_21_970x1182_2_3.jpg','image',0),(4671,90,'/i/m/image_31091479_21_970x1182_3_3.jpg','image',0),(4672,90,'/g/r/grey_1_6.jpg','image',0),(4673,90,'/g/r/grey2.jpg','image',0),(4674,90,'/g/r/grey3.jpg','image',0),(4675,90,'/g/r/grey4.jpg','image',0),(4676,90,'/g/r/grey_1_1_2.jpg','image',0),(4677,90,'/g/r/grey2_1.jpg','image',0),(4678,90,'/g/r/grey3_1.jpg','image',0),(4679,90,'/g/r/grey4_1.jpg','image',0),(4680,90,'/g/r/grey_1_2_1.jpg','image',0),(4681,90,'/g/r/grey2_2.jpg','image',0),(4682,90,'/g/r/grey3_2.jpg','image',0),(4683,90,'/g/r/grey4_2.jpg','image',0),(4684,90,'/g/r/grey_1_3_1.jpg','image',0),(4685,90,'/g/r/grey2_3.jpg','image',0),(4686,90,'/g/r/grey3_3.jpg','image',0),(4687,90,'/g/r/grey4_3.jpg','image',0),(4688,90,'/g/r/grey_1_4_1.jpg','image',0),(4689,90,'/g/r/grey2_4.jpg','image',0),(4690,90,'/g/r/grey3_4.jpg','image',0),(4691,90,'/g/r/grey4_4.jpg','image',0),(4692,90,'/g/r/grey_1_5_1.jpg','image',0),(4693,90,'/g/r/grey2_5.jpg','image',0),(4694,90,'/g/r/grey3_5.jpg','image',0),(4695,90,'/g/r/grey4_5.jpg','image',0),(4696,90,'/b/l/blue_6.jpg','image',0),(4697,90,'/b/l/blue2.jpg','image',0),(4698,90,'/b/l/blue3.jpg','image',0),(4699,90,'/b/l/blue4.jpg','image',0),(4700,90,'/b/l/blue_1_1.jpg','image',0),(4701,90,'/b/l/blue2_1.jpg','image',0),(4702,90,'/b/l/blue3_1.jpg','image',0),(4703,90,'/b/l/blue4_1.jpg','image',0),(4704,90,'/b/l/blue_2_1.jpg','image',0),(4705,90,'/b/l/blue2_2.jpg','image',0),(4706,90,'/b/l/blue3_2.jpg','image',0),(4707,90,'/b/l/blue4_2.jpg','image',0),(4708,90,'/b/l/blue_3_1.jpg','image',0),(4709,90,'/b/l/blue2_3.jpg','image',0),(4710,90,'/b/l/blue3_3.jpg','image',0),(4711,90,'/b/l/blue4_3.jpg','image',0),(4712,90,'/b/l/blue_4_1.jpg','image',0),(4713,90,'/b/l/blue2_4.jpg','image',0),(4714,90,'/b/l/blue3_4.jpg','image',0),(4715,90,'/b/l/blue4_4.jpg','image',0),(4716,90,'/b/l/blue_5_1.jpg','image',0),(4717,90,'/b/l/blue2_5.jpg','image',0),(4718,90,'/b/l/blue3_5.jpg','image',0),(4719,90,'/b/l/blue4_5.jpg','image',0),(4720,90,'/w/h/white_6.jpg','image',0),(4721,90,'/w/h/white2.jpg','image',0),(4722,90,'/w/h/white3.jpg','image',0),(4723,90,'/w/h/white4.jpg','image',0),(4724,90,'/w/h/white_1_1.jpg','image',0),(4725,90,'/w/h/white2_1.jpg','image',0),(4726,90,'/w/h/white3_1.jpg','image',0),(4727,90,'/w/h/white4_1.jpg','image',0),(4728,90,'/w/h/white_2_1.jpg','image',0),(4729,90,'/w/h/white2_2.jpg','image',0),(4730,90,'/w/h/white3_2.jpg','image',0),(4731,90,'/w/h/white4_2.jpg','image',0),(4732,90,'/w/h/white_3_1.jpg','image',0),(4733,90,'/w/h/white2_3.jpg','image',0),(4734,90,'/w/h/white3_3.jpg','image',0),(4735,90,'/w/h/white4_3.jpg','image',0),(4736,90,'/w/h/white_4_1.jpg','image',0),(4737,90,'/w/h/white2_4.jpg','image',0),(4738,90,'/w/h/white3_4.jpg','image',0),(4739,90,'/w/h/white4_4.jpg','image',0),(4740,90,'/w/h/white_5_1.jpg','image',0),(4741,90,'/w/h/white2_5.jpg','image',0),(4742,90,'/w/h/white3_5.jpg','image',0),(4743,90,'/w/h/white4_5.jpg','image',0),(4744,90,'/b/l/black_1_6.jpg','image',0),(4745,90,'/b/l/black2.jpg','image',0),(4746,90,'/b/l/black3.jpg','image',0),(4747,90,'/b/l/black4.jpg','image',0),(4748,90,'/b/l/black_1_1_2.jpg','image',0),(4749,90,'/b/l/black2_1.jpg','image',0),(4750,90,'/b/l/black3_1.jpg','image',0),(4751,90,'/b/l/black4_1.jpg','image',0),(4752,90,'/b/l/black_1_2_1.jpg','image',0),(4753,90,'/b/l/black2_2.jpg','image',0),(4754,90,'/b/l/black3_2.jpg','image',0),(4755,90,'/b/l/black4_2.jpg','image',0),(4756,90,'/b/l/black_1_3_1.jpg','image',0),(4757,90,'/b/l/black2_3.jpg','image',0),(4758,90,'/b/l/black3_3.jpg','image',0),(4759,90,'/b/l/black4_3.jpg','image',0),(4760,90,'/b/l/black_1_4_1.jpg','image',0),(4761,90,'/b/l/black2_4.jpg','image',0),(4762,90,'/b/l/black3_4.jpg','image',0),(4763,90,'/b/l/black4_4.jpg','image',0),(4764,90,'/b/l/black_1_5_1.jpg','image',0),(4765,90,'/b/l/black2_5.jpg','image',0),(4766,90,'/b/l/black3_5.jpg','image',0),(4767,90,'/b/l/black4_5.jpg','image',0),(4768,90,'/r/e/red_1_6.jpg','image',0),(4769,90,'/r/e/red2.jpg','image',0),(4770,90,'/r/e/red3.jpg','image',0),(4771,90,'/r/e/red4.jpg','image',0),(4772,90,'/r/e/red_1_1_2.jpg','image',0),(4773,90,'/r/e/red2_1.jpg','image',0),(4774,90,'/r/e/red3_1.jpg','image',0),(4775,90,'/r/e/red4_1.jpg','image',0),(4776,90,'/r/e/red_1_2_1.jpg','image',0),(4777,90,'/r/e/red2_2.jpg','image',0),(4778,90,'/r/e/red3_2.jpg','image',0),(4779,90,'/r/e/red4_2.jpg','image',0),(4780,90,'/r/e/red_1_3_1.jpg','image',0),(4781,90,'/r/e/red2_3.jpg','image',0),(4782,90,'/r/e/red3_3.jpg','image',0),(4783,90,'/r/e/red4_3.jpg','image',0),(4784,90,'/r/e/red_1_4_1.jpg','image',0),(4785,90,'/r/e/red2_4.jpg','image',0),(4786,90,'/r/e/red3_4.jpg','image',0),(4787,90,'/r/e/red4_4.jpg','image',0),(4788,90,'/r/e/red_1_5_1.jpg','image',0),(4789,90,'/r/e/red2_5.jpg','image',0),(4790,90,'/r/e/red3_5.jpg','image',0),(4791,90,'/r/e/red4_5.jpg','image',0),(4792,90,'/i/m/image_31091479_21_970x1182_1_2_1.jpg','image',0),(4793,90,'/i/m/image_31091479_21_970x1182_2_2_1.jpg','image',0),(4794,90,'/i/m/image_31091479_21_970x1182_3_2_1.jpg','image',0),(4795,90,'/i/m/image_31091479_21_970x1182_1_2_1_1.jpg','image',0),(4796,90,'/i/m/image_31091479_21_970x1182_2_2_1_1.jpg','image',0),(4797,90,'/i/m/image_31091479_21_970x1182_3_2_1_1.jpg','image',0),(4798,90,'/i/m/image_31091479_21_970x1182_1_2_2.jpg','image',0),(4799,90,'/i/m/image_31091479_21_970x1182_2_2_2.jpg','image',0),(4800,90,'/i/m/image_31091479_21_970x1182_3_2_2.jpg','image',0),(4801,90,'/8/u/8u8u8u8u6yy_3.jpg','image',0),(4802,90,'/2/3/23e55ttt_3.jpg','image',0),(4803,90,'/j/i/jijijijij_3.jpg','image',0),(4804,90,'/8/u/8u8u8u8u6yy_1_1.jpg','image',0),(4805,90,'/2/3/23e55ttt_1_1.jpg','image',0),(4806,90,'/j/i/jijijijij_1_1.jpg','image',0),(4807,90,'/8/u/8u8u8u8u6yy_2_1.jpg','image',0),(4808,90,'/2/3/23e55ttt_2_1.jpg','image',0),(4809,90,'/j/i/jijijijij_2_1.jpg','image',0),(4816,90,'/r/1/r1_1.jpg','image',0),(4817,90,'/r/2/r2_1.jpg','image',0),(4818,90,'/r/3/r3_1.jpg','image',0),(4819,90,'/r/4/r4_1.jpg','image',0),(4820,90,'/r/1/r1_1_1.jpg','image',0),(4821,90,'/r/2/r2_1_1.jpg','image',0),(4822,90,'/r/3/r3_1_1.jpg','image',0),(4823,90,'/r/4/r4_1_1.jpg','image',0),(4824,90,'/r/1/r1_1_2.jpg','image',0),(4825,90,'/r/2/r2_1_2.jpg','image',0),(4826,90,'/r/3/r3_1_2.jpg','image',0),(4827,90,'/r/4/r4_1_2.jpg','image',0),(4828,90,'/r/1/r1_1_3.jpg','image',0),(4829,90,'/r/2/r2_1_3.jpg','image',0),(4830,90,'/r/3/r3_1_3.jpg','image',0),(4831,90,'/r/4/r4_1_3.jpg','image',0),(4832,90,'/r/1/r1_1_4.jpg','image',0),(4833,90,'/r/2/r2_1_4.jpg','image',0),(4834,90,'/r/3/r3_1_4.jpg','image',0),(4835,90,'/r/4/r4_1_4.jpg','image',0),(4836,90,'/r/1/r1_1_5.jpg','image',0),(4837,90,'/r/2/r2_1_5.jpg','image',0),(4838,90,'/r/3/r3_1_5.jpg','image',0),(4839,90,'/r/4/r4_1_5.jpg','image',0),(4840,90,'/r/1/r1_1_6.jpg','image',0),(4841,90,'/r/2/r2_1_6.jpg','image',0),(4842,90,'/r/3/r3_1_6.jpg','image',0),(4843,90,'/r/4/r4_1_6.jpg','image',0),(4844,90,'/1/_/1_1.jpg','image',0),(4845,90,'/2/_/2_1.jpg','image',0),(4846,90,'/3/_/3_1.jpg','image',0),(4847,90,'/4/_/4_1.jpg','image',0),(4848,90,'/1/_/1_1_1.jpg','image',0),(4849,90,'/2/_/2_1_1.jpg','image',0),(4850,90,'/3/_/3_1_1.jpg','image',0),(4851,90,'/4/_/4_1_1.jpg','image',0),(4852,90,'/1/_/1_1_2.jpg','image',0),(4853,90,'/2/_/2_1_2.jpg','image',0),(4854,90,'/3/_/3_1_2.jpg','image',0),(4855,90,'/4/_/4_1_2.jpg','image',0),(4856,90,'/1/_/1_1_3.jpg','image',0),(4857,90,'/2/_/2_1_3.jpg','image',0),(4858,90,'/3/_/3_1_3.jpg','image',0),(4859,90,'/4/_/4_1_3.jpg','image',0),(4860,90,'/1/_/1_1_4.jpg','image',0),(4861,90,'/2/_/2_1_4.jpg','image',0),(4862,90,'/3/_/3_1_4.jpg','image',0),(4863,90,'/4/_/4_1_4.jpg','image',0),(4864,90,'/1/_/1_1_5.jpg','image',0),(4865,90,'/2/_/2_1_5.jpg','image',0),(4866,90,'/3/_/3_1_5.jpg','image',0),(4867,90,'/4/_/4_1_5.jpg','image',0),(4868,90,'/1/_/1_1_6.jpg','image',0),(4869,90,'/2/_/2_1_6.jpg','image',0),(4870,90,'/3/_/3_1_6.jpg','image',0),(4871,90,'/4/_/4_1_6.jpg','image',0),(4872,90,'/w/1/w1.jpg','image',0),(4873,90,'/w/2/w2.jpg','image',0),(4874,90,'/w/3/w3.jpg','image',0),(4875,90,'/w/4/w4.jpg','image',0),(4876,90,'/w/1/w1_1.jpg','image',0),(4877,90,'/w/2/w2_1.jpg','image',0),(4878,90,'/w/3/w3_1.jpg','image',0),(4879,90,'/w/4/w4_1.jpg','image',0),(4880,90,'/w/1/w1_2.jpg','image',0),(4881,90,'/w/2/w2_2.jpg','image',0),(4882,90,'/w/3/w3_2.jpg','image',0),(4883,90,'/w/4/w4_2.jpg','image',0),(4884,90,'/w/1/w1_3.jpg','image',0),(4885,90,'/w/2/w2_3.jpg','image',0),(4886,90,'/w/3/w3_3.jpg','image',0),(4887,90,'/w/4/w4_3.jpg','image',0),(4888,90,'/w/1/w1_4.jpg','image',0),(4889,90,'/w/2/w2_4.jpg','image',0),(4890,90,'/w/3/w3_4.jpg','image',0),(4891,90,'/w/4/w4_4.jpg','image',0),(4892,90,'/w/1/w1_5.jpg','image',0),(4893,90,'/w/2/w2_5.jpg','image',0),(4894,90,'/w/3/w3_5.jpg','image',0),(4895,90,'/w/4/w4_5.jpg','image',0),(4896,90,'/w/1/w1_6.jpg','image',0),(4897,90,'/w/2/w2_6.jpg','image',0),(4898,90,'/w/3/w3_6.jpg','image',0),(4899,90,'/w/4/w4_6.jpg','image',0),(4900,90,'/b/1/b1_1.jpg','image',0),(4901,90,'/b/2/b2_1.jpg','image',0),(4902,90,'/b/3/b3_1.jpg','image',0),(4903,90,'/b/4/b4_1.jpg','image',0),(4904,90,'/b/1/b1_1_1.jpg','image',0),(4905,90,'/b/2/b2_1_1.jpg','image',0),(4906,90,'/b/3/b3_1_1.jpg','image',0),(4907,90,'/b/4/b4_1_1.jpg','image',0),(4908,90,'/b/1/b1_1_2.jpg','image',0),(4909,90,'/b/2/b2_1_2.jpg','image',0),(4910,90,'/b/3/b3_1_2.jpg','image',0),(4911,90,'/b/4/b4_1_2.jpg','image',0),(4912,90,'/b/1/b1_1_3.jpg','image',0),(4913,90,'/b/2/b2_1_3.jpg','image',0),(4914,90,'/b/3/b3_1_3.jpg','image',0),(4915,90,'/b/4/b4_1_3.jpg','image',0),(4916,90,'/b/1/b1_1_4.jpg','image',0),(4917,90,'/b/2/b2_1_4.jpg','image',0),(4918,90,'/b/3/b3_1_4.jpg','image',0),(4919,90,'/b/4/b4_1_4.jpg','image',0),(4920,90,'/b/1/b1_1_5.jpg','image',0),(4921,90,'/b/2/b2_1_5.jpg','image',0),(4922,90,'/b/3/b3_1_5.jpg','image',0),(4923,90,'/b/4/b4_1_5.jpg','image',0),(4924,90,'/b/1/b1_1_6.jpg','image',0),(4925,90,'/b/2/b2_1_6.jpg','image',0),(4926,90,'/b/3/b3_1_6.jpg','image',0),(4927,90,'/b/4/b4_1_6.jpg','image',0),(4928,90,'/d/1/d1.jpg','image',0),(4929,90,'/d/2/d2.jpg','image',0),(4930,90,'/d/3/d3.jpg','image',0),(4931,90,'/d/4/d4.jpg','image',0),(4932,90,'/d/1/d1_1.jpg','image',0),(4933,90,'/d/2/d2_1.jpg','image',0),(4934,90,'/d/3/d3_1.jpg','image',0),(4935,90,'/d/4/d4_1.jpg','image',0),(4936,90,'/d/1/d1_2.jpg','image',0),(4937,90,'/d/2/d2_2.jpg','image',0),(4938,90,'/d/3/d3_2.jpg','image',0),(4939,90,'/d/4/d4_2.jpg','image',0),(4940,90,'/d/1/d1_3.jpg','image',0),(4941,90,'/d/2/d2_3.jpg','image',0),(4942,90,'/d/3/d3_3.jpg','image',0),(4943,90,'/d/4/d4_3.jpg','image',0),(4944,90,'/d/1/d1_4.jpg','image',0),(4945,90,'/d/2/d2_4.jpg','image',0),(4946,90,'/d/3/d3_4.jpg','image',0),(4947,90,'/d/4/d4_4.jpg','image',0),(4948,90,'/d/1/d1_5.jpg','image',0),(4949,90,'/d/2/d2_5.jpg','image',0),(4950,90,'/d/3/d3_5.jpg','image',0),(4951,90,'/d/4/d4_5.jpg','image',0),(4952,90,'/d/1/d1_6.jpg','image',0),(4953,90,'/d/2/d2_6.jpg','image',0),(4954,90,'/d/3/d3_6.jpg','image',0),(4955,90,'/d/4/d4_6.jpg','image',0),(4957,90,'/i/m/image_31219211_25_970x1182_0_1_2.jpg','image',0),(4958,90,'/i/m/image_31219211_25_970x1182_1_1_2.jpg','image',0),(4959,90,'/i/m/image_31219211_25_970x1182_2_1_2.jpg','image',0),(4960,90,'/i/m/image_31219211_25_970x1182_3_1_2.jpg','image',0),(4961,90,'/i/m/image_31219211_25_970x1182_0_1_1_1.jpg','image',0),(4962,90,'/i/m/image_31219211_25_970x1182_1_1_1_1.jpg','image',0),(4963,90,'/i/m/image_31219211_25_970x1182_2_1_1_1.jpg','image',0),(4964,90,'/i/m/image_31219211_25_970x1182_3_1_1_1.jpg','image',0),(4965,90,'/i/m/image_31219211_25_970x1182_0_1_2_1.jpg','image',0),(4966,90,'/i/m/image_31219211_25_970x1182_1_1_2_1.jpg','image',0),(4967,90,'/i/m/image_31219211_25_970x1182_2_1_2_1.jpg','image',0),(4968,90,'/i/m/image_31219211_25_970x1182_3_1_2_1.jpg','image',0),(4969,90,'/i/m/image_31219211_25_970x1182_0_1_3.jpg','image',0),(4970,90,'/i/m/image_31219211_25_970x1182_1_1_3.jpg','image',0),(4971,90,'/i/m/image_31219211_25_970x1182_2_1_3.jpg','image',0),(4972,90,'/i/m/image_31219211_25_970x1182_3_1_3.jpg','image',0),(4973,90,'/2/w/2w3e4rrr_5.jpg','image',0),(4974,90,'/2/w/2w2ss_4.jpg','image',0),(4975,90,'/2/w/2w3e4rrr2_4.jpg','image',0),(4976,90,'/3/e/3e34r_4.jpg','image',0),(4977,90,'/2/w/2w3e4rrr_1_2.jpg','image',0),(4978,90,'/2/w/2w2ss_1_1.jpg','image',0),(4979,90,'/2/w/2w3e4rrr2_1_1.jpg','image',0),(4980,90,'/3/e/3e34r_1_1.jpg','image',0),(4981,90,'/2/w/2w3e4rrr_2_1.jpg','image',0),(4982,90,'/2/w/2w2ss_2_1.jpg','image',0),(4983,90,'/2/w/2w3e4rrr2_2_1.jpg','image',0),(4984,90,'/3/e/3e34r_2_1.jpg','image',0),(4985,90,'/2/w/2w3e4rrr_3_1.jpg','image',0),(4986,90,'/2/w/2w2ss_3_1.jpg','image',0),(4987,90,'/2/w/2w3e4rrr2_3_1.jpg','image',0),(4988,90,'/3/e/3e34r_3_1.jpg','image',0),(4989,90,'/i/m/image_31219211_25_970x1182_0_1_4.jpg','image',0),(4990,90,'/g/1/g1.jpg','image',0),(4991,90,'/g/2/g2.jpg','image',0),(4992,90,'/g/3/g3.jpg','image',0),(4993,90,'/g/1/g1_1.jpg','image',0),(4994,90,'/g/2/g2_1.jpg','image',0),(4995,90,'/g/3/g3_1.jpg','image',0),(4996,90,'/g/1/g1_2.jpg','image',0),(4997,90,'/g/2/g2_2.jpg','image',0),(4998,90,'/g/3/g3_2.jpg','image',0),(4999,90,'/g/1/g1_3.jpg','image',0),(5000,90,'/g/2/g2_3.jpg','image',0),(5001,90,'/g/3/g3_3.jpg','image',0),(5002,90,'/g/1/g1_4.jpg','image',0),(5003,90,'/g/2/g2_4.jpg','image',0),(5004,90,'/g/3/g3_4.jpg','image',0),(5005,90,'/g/1/g1_5.jpg','image',0),(5006,90,'/g/2/g2_5.jpg','image',0),(5007,90,'/g/3/g3_5.jpg','image',0),(5008,90,'/b/1/b1_2.jpg','image',0),(5009,90,'/b/2/b2_2.jpg','image',0),(5010,90,'/b/3/b3_2.jpg','image',0),(5011,90,'/b/1/b1_2_1.jpg','image',0),(5012,90,'/b/2/b2_2_1.jpg','image',0),(5013,90,'/b/3/b3_2_1.jpg','image',0),(5014,90,'/b/1/b1_2_2.jpg','image',0),(5015,90,'/b/2/b2_2_2.jpg','image',0),(5016,90,'/b/3/b3_2_2.jpg','image',0),(5017,90,'/b/1/b1_2_3.jpg','image',0),(5018,90,'/b/2/b2_2_3.jpg','image',0),(5019,90,'/b/3/b3_2_3.jpg','image',0),(5020,90,'/b/1/b1_2_4.jpg','image',0),(5021,90,'/b/2/b2_2_4.jpg','image',0),(5022,90,'/b/3/b3_2_4.jpg','image',0),(5023,90,'/b/1/b1_2_5.jpg','image',0),(5024,90,'/b/2/b2_2_5.jpg','image',0),(5025,90,'/b/3/b3_2_5.jpg','image',0),(5026,90,'/w/1/w1_7.jpg','image',0),(5027,90,'/w/2/w2_7.jpg','image',0),(5028,90,'/w/3/w3_7.jpg','image',0),(5029,90,'/w/1/w1_1_1.jpg','image',0),(5030,90,'/w/2/w2_1_1.jpg','image',0),(5031,90,'/w/3/w3_1_1.jpg','image',0),(5032,90,'/w/1/w1_2_1.jpg','image',0),(5033,90,'/w/2/w2_2_1.jpg','image',0),(5034,90,'/w/3/w3_2_1.jpg','image',0),(5035,90,'/w/1/w1_3_1.jpg','image',0),(5036,90,'/w/2/w2_3_1.jpg','image',0),(5037,90,'/w/3/w3_3_1.jpg','image',0),(5038,90,'/w/1/w1_4_1.jpg','image',0),(5039,90,'/w/2/w2_4_1.jpg','image',0),(5040,90,'/w/3/w3_4_1.jpg','image',0),(5041,90,'/w/1/w1_5_1.jpg','image',0),(5042,90,'/w/2/w2_5_1.jpg','image',0),(5043,90,'/w/3/w3_5_1.jpg','image',0),(5044,90,'/d/1/d1_7.jpg','image',0),(5045,90,'/d/2/d2_7.jpg','image',0),(5046,90,'/d/3/d3_7.jpg','image',0),(5047,90,'/d/1/d1_1_1.jpg','image',0),(5048,90,'/d/2/d2_1_1.jpg','image',0),(5049,90,'/d/3/d3_1_1.jpg','image',0),(5050,90,'/d/1/d1_2_1.jpg','image',0),(5051,90,'/d/2/d2_2_1.jpg','image',0),(5052,90,'/d/3/d3_2_1.jpg','image',0),(5053,90,'/d/1/d1_3_1.jpg','image',0),(5054,90,'/d/2/d2_3_1.jpg','image',0),(5055,90,'/d/3/d3_3_1.jpg','image',0),(5056,90,'/d/1/d1_4_1.jpg','image',0),(5057,90,'/d/2/d2_4_1.jpg','image',0),(5058,90,'/d/3/d3_4_1.jpg','image',0),(5059,90,'/d/1/d1_5_1.jpg','image',0),(5060,90,'/d/2/d2_5_1.jpg','image',0),(5061,90,'/d/3/d3_5_1.jpg','image',0),(5062,90,'/r/1/r1_1_7.jpg','image',0),(5063,90,'/r/2/r2_1_7.jpg','image',0),(5064,90,'/r/3/r3_1_7.jpg','image',0),(5065,90,'/r/1/r1_1_1_1.jpg','image',0),(5066,90,'/r/2/r2_1_1_1.jpg','image',0),(5067,90,'/r/3/r3_1_1_1.jpg','image',0),(5068,90,'/r/1/r1_1_2_1.jpg','image',0),(5069,90,'/r/2/r2_1_2_1.jpg','image',0),(5070,90,'/r/3/r3_1_2_1.jpg','image',0),(5071,90,'/r/1/r1_1_3_1.jpg','image',0),(5072,90,'/r/2/r2_1_3_1.jpg','image',0),(5073,90,'/r/3/r3_1_3_1.jpg','image',0),(5074,90,'/r/1/r1_1_4_1.jpg','image',0),(5075,90,'/r/2/r2_1_4_1.jpg','image',0),(5076,90,'/r/3/r3_1_4_1.jpg','image',0),(5077,90,'/r/1/r1_1_5_1.jpg','image',0),(5078,90,'/r/2/r2_1_5_1.jpg','image',0),(5079,90,'/r/3/r3_1_5_1.jpg','image',0),(5080,90,'/i/m/image_31091479_21_970x1182_0_5.jpg','image',0),(5081,90,'/i/m/image_31091479_21_970x1182_1_3_1.jpg','image',0),(5082,90,'/i/m/image_31091479_21_970x1182_2_3_1.jpg','image',0),(5083,90,'/i/m/image_31091479_21_970x1182_3_3_1.jpg','image',0),(5084,90,'/i/m/image_31091479_21_970x1182_0_1_3.jpg','image',0),(5085,90,'/i/m/image_31091479_21_970x1182_1_3_1_1.jpg','image',0),(5086,90,'/i/m/image_31091479_21_970x1182_2_3_1_1.jpg','image',0),(5087,90,'/i/m/image_31091479_21_970x1182_3_3_1_1.jpg','image',0),(5088,90,'/i/m/image_31091479_21_970x1182_0_2_2.jpg','image',0),(5089,90,'/i/m/image_31091479_21_970x1182_1_3_1_2.jpg','image',0),(5090,90,'/i/m/image_31091479_21_970x1182_2_3_1_2.jpg','image',0),(5091,90,'/i/m/image_31091479_21_970x1182_3_3_1_2.jpg','image',0),(5092,90,'/e/r/er54t666_3.jpg','image',0),(5093,90,'/8/u/8u8u8u8u6yy_2_2.jpg','image',0),(5094,90,'/2/3/23e55ttt_2_2.jpg','image',0),(5095,90,'/j/i/jijijijij_2_2.jpg','image',0),(5096,90,'/e/r/er54t666_1_1.jpg','image',0),(5097,90,'/8/u/8u8u8u8u6yy_2_1_1.jpg','image',0),(5098,90,'/2/3/23e55ttt_2_1_1.jpg','image',0),(5099,90,'/j/i/jijijijij_2_1_1.jpg','image',0),(5100,90,'/e/r/er54t666_2_1.jpg','image',0),(5101,90,'/8/u/8u8u8u8u6yy_2_2_1.jpg','image',0),(5102,90,'/2/3/23e55ttt_2_2_1.jpg','image',0),(5103,90,'/j/i/jijijijij_2_2_1.jpg','image',0),(5104,90,'/d/1/d1_1_2.jpg','image',0),(5105,90,'/d/2/d2_1_2.jpg','image',0),(5106,90,'/d/3/d3_1_2.jpg','image',0),(5107,90,'/d/4/d4_1_1.jpg','image',0),(5108,90,'/d/1/d1_1_1_1.jpg','image',0),(5109,90,'/d/2/d2_1_1_1.jpg','image',0),(5110,90,'/d/3/d3_1_1_1.jpg','image',0),(5111,90,'/d/4/d4_1_1_1.jpg','image',0),(5112,90,'/d/1/d1_1_2_1.jpg','image',0),(5113,90,'/d/2/d2_1_2_1.jpg','image',0),(5114,90,'/d/3/d3_1_2_1.jpg','image',0),(5115,90,'/d/4/d4_1_2.jpg','image',0),(5116,90,'/d/1/d1_1_3.jpg','image',0),(5117,90,'/d/2/d2_1_3.jpg','image',0),(5118,90,'/d/3/d3_1_3.jpg','image',0),(5119,90,'/d/4/d4_1_3.jpg','image',0),(5120,90,'/d/1/d1_1_4.jpg','image',0),(5121,90,'/d/2/d2_1_4.jpg','image',0),(5122,90,'/d/3/d3_1_4.jpg','image',0),(5123,90,'/d/4/d4_1_4.jpg','image',0),(5124,90,'/d/1/d1_1_5.jpg','image',0),(5125,90,'/d/2/d2_1_5.jpg','image',0),(5126,90,'/d/3/d3_1_5.jpg','image',0),(5127,90,'/d/4/d4_1_5.jpg','image',0),(5128,90,'/w/1/w1_8.jpg','image',0),(5129,90,'/w/2/w2_8.jpg','image',0),(5130,90,'/w/3/w3_8.jpg','image',0),(5131,90,'/w/4/w4_7.jpg','image',0),(5132,90,'/w/1/w1_1_2.jpg','image',0),(5133,90,'/w/2/w2_1_2.jpg','image',0),(5134,90,'/w/3/w3_1_2.jpg','image',0),(5135,90,'/w/4/w4_1_1.jpg','image',0),(5136,90,'/w/1/w1_2_2.jpg','image',0),(5137,90,'/w/2/w2_2_2.jpg','image',0),(5138,90,'/w/3/w3_2_2.jpg','image',0),(5139,90,'/w/4/w4_2_1.jpg','image',0),(5140,90,'/w/1/w1_3_2.jpg','image',0),(5141,90,'/w/2/w2_3_2.jpg','image',0),(5142,90,'/w/3/w3_3_2.jpg','image',0),(5143,90,'/w/4/w4_3_1.jpg','image',0),(5144,90,'/w/1/w1_4_2.jpg','image',0),(5145,90,'/w/2/w2_4_2.jpg','image',0),(5146,90,'/w/3/w3_4_2.jpg','image',0),(5147,90,'/w/4/w4_4_1.jpg','image',0),(5148,90,'/w/1/w1_5_2.jpg','image',0),(5149,90,'/w/2/w2_5_2.jpg','image',0),(5150,90,'/w/3/w3_5_2.jpg','image',0),(5151,90,'/w/4/w4_5_1.jpg','image',0),(5152,90,'/1/_/1_1_7.jpg','image',0),(5153,90,'/2/_/2_1_7.jpg','image',0),(5154,90,'/3/_/3_1_7.jpg','image',0),(5155,90,'/4/_/4_1_7.jpg','image',0),(5156,90,'/1/_/1_1_1_1.jpg','image',0),(5157,90,'/2/_/2_1_1_1.jpg','image',0),(5158,90,'/3/_/3_1_1_1.jpg','image',0),(5159,90,'/4/_/4_1_1_1.jpg','image',0),(5160,90,'/1/_/1_1_2_1.jpg','image',0),(5161,90,'/2/_/2_1_2_1.jpg','image',0),(5162,90,'/3/_/3_1_2_1.jpg','image',0),(5163,90,'/4/_/4_1_2_1.jpg','image',0),(5164,90,'/1/_/1_1_3_1.jpg','image',0),(5165,90,'/2/_/2_1_3_1.jpg','image',0),(5166,90,'/3/_/3_1_3_1.jpg','image',0),(5167,90,'/4/_/4_1_3_1.jpg','image',0),(5168,90,'/1/_/1_1_4_1.jpg','image',0),(5169,90,'/2/_/2_1_4_1.jpg','image',0),(5170,90,'/3/_/3_1_4_1.jpg','image',0),(5171,90,'/4/_/4_1_4_1.jpg','image',0),(5172,90,'/1/_/1_1_5_1.jpg','image',0),(5173,90,'/2/_/2_1_5_1.jpg','image',0),(5174,90,'/3/_/3_1_5_1.jpg','image',0),(5175,90,'/4/_/4_1_5_1.jpg','image',0),(5176,90,'/r/1/r1_1_8.jpg','image',0),(5177,90,'/r/2/r2_1_8.jpg','image',0),(5178,90,'/r/3/r3_1_8.jpg','image',0),(5179,90,'/r/4/r4_1_7.jpg','image',0),(5180,90,'/r/1/r1_1_1_2.jpg','image',0),(5181,90,'/r/2/r2_1_1_2.jpg','image',0),(5182,90,'/r/3/r3_1_1_2.jpg','image',0),(5183,90,'/r/4/r4_1_1_1.jpg','image',0),(5184,90,'/r/1/r1_1_2_2.jpg','image',0),(5185,90,'/r/2/r2_1_2_2.jpg','image',0),(5186,90,'/r/3/r3_1_2_2.jpg','image',0),(5187,90,'/r/4/r4_1_2_1.jpg','image',0),(5188,90,'/r/1/r1_1_3_2.jpg','image',0),(5189,90,'/r/2/r2_1_3_2.jpg','image',0),(5190,90,'/r/3/r3_1_3_2.jpg','image',0),(5191,90,'/r/4/r4_1_3_1.jpg','image',0),(5192,90,'/r/1/r1_1_4_2.jpg','image',0),(5193,90,'/r/2/r2_1_4_2.jpg','image',0),(5194,90,'/r/3/r3_1_4_2.jpg','image',0),(5195,90,'/r/4/r4_1_4_1.jpg','image',0),(5196,90,'/r/1/r1_1_5_2.jpg','image',0),(5197,90,'/r/2/r2_1_5_2.jpg','image',0),(5198,90,'/r/3/r3_1_5_2.jpg','image',0),(5199,90,'/r/4/r4_1_5_1.jpg','image',0),(5200,90,'/b/1/b1_2_6.jpg','image',0),(5201,90,'/b/2/b2_2_6.jpg','image',0),(5202,90,'/b/3/b3_2_6.jpg','image',0),(5203,90,'/b/4/b4_1_7.jpg','image',0),(5204,90,'/b/1/b1_2_1_1.jpg','image',0),(5205,90,'/b/2/b2_2_1_1.jpg','image',0),(5206,90,'/b/3/b3_2_1_1.jpg','image',0),(5207,90,'/b/4/b4_1_1_1.jpg','image',0),(5208,90,'/b/1/b1_2_2_1.jpg','image',0),(5209,90,'/b/2/b2_2_2_1.jpg','image',0),(5210,90,'/b/3/b3_2_2_1.jpg','image',0),(5211,90,'/b/4/b4_1_2_1.jpg','image',0),(5212,90,'/b/1/b1_2_3_1.jpg','image',0),(5213,90,'/b/2/b2_2_3_1.jpg','image',0),(5214,90,'/b/3/b3_2_3_1.jpg','image',0),(5215,90,'/b/4/b4_1_3_1.jpg','image',0),(5216,90,'/b/1/b1_2_4_1.jpg','image',0),(5217,90,'/b/2/b2_2_4_1.jpg','image',0),(5218,90,'/b/3/b3_2_4_1.jpg','image',0),(5219,90,'/b/4/b4_1_4_1.jpg','image',0),(5220,90,'/b/1/b1_2_5_1.jpg','image',0),(5221,90,'/b/2/b2_2_5_1.jpg','image',0),(5222,90,'/b/3/b3_2_5_1.jpg','image',0),(5223,90,'/b/4/b4_1_5_1.jpg','image',0),(5224,90,'/i/m/image_31176055_22_970x1182_0_1_2.jpg','image',0),(5225,90,'/i/m/image_31176055_22_970x1182_1_1_2.jpg','image',0),(5226,90,'/i/m/image_31176055_22_970x1182_2_1_2.jpg','image',0),(5227,90,'/i/m/image_31176055_22_970x1182_3_1_2.jpg','image',0),(5228,90,'/i/m/image_31176055_22_970x1182_0_1_1_1.jpg','image',0),(5229,90,'/i/m/image_31176055_22_970x1182_1_1_1_1.jpg','image',0),(5230,90,'/i/m/image_31176055_22_970x1182_2_1_1_1.jpg','image',0),(5231,90,'/i/m/image_31176055_22_970x1182_3_1_1_1.jpg','image',0),(5232,90,'/i/m/image_31176055_22_970x1182_0_1_2_1.jpg','image',0),(5233,90,'/i/m/image_31176055_22_970x1182_1_1_2_1.jpg','image',0),(5234,90,'/i/m/image_31176055_22_970x1182_2_1_2_1.jpg','image',0),(5235,90,'/i/m/image_31176055_22_970x1182_3_1_2_1.jpg','image',0),(5236,90,'/i/m/image_31176055_22_970x1182_0_1_3.jpg','image',0),(5237,90,'/i/m/image_31176055_22_970x1182_1_1_3.jpg','image',0),(5238,90,'/i/m/image_31176055_22_970x1182_2_1_3.jpg','image',0),(5239,90,'/i/m/image_31176055_22_970x1182_3_1_3.jpg','image',0),(5240,90,'/w/3/w3e3e2w2w2w_4.jpg','image',0),(5241,90,'/2/w/2w3e4r4r4r_4.jpg','image',0),(5242,90,'/1/q/1qw23eww_4.jpg','image',0),(5243,90,'/1/q/1q1qw2w2w2_4.jpg','image',0),(5244,90,'/w/3/w3e3e2w2w2w_1_1.jpg','image',0),(5245,90,'/2/w/2w3e4r4r4r_1_1.jpg','image',0),(5246,90,'/1/q/1qw23eww_1_1.jpg','image',0),(5247,90,'/1/q/1q1qw2w2w2_1_1.jpg','image',0),(5248,90,'/w/3/w3e3e2w2w2w_2_1.jpg','image',0),(5249,90,'/2/w/2w3e4r4r4r_2_1.jpg','image',0),(5250,90,'/1/q/1qw23eww_2_1.jpg','image',0),(5251,90,'/1/q/1q1qw2w2w2_2_1.jpg','image',0),(5252,90,'/w/3/w3e3e2w2w2w_3_1.jpg','image',0),(5253,90,'/2/w/2w3e4r4r4r_3_1.jpg','image',0),(5254,90,'/1/q/1qw23eww_3_1.jpg','image',0),(5255,90,'/1/q/1q1qw2w2w2_3_1.jpg','image',0),(5256,90,'/i/m/image_31176055_22_970x1182_0_1_4.jpg','image',0),(5257,90,'/i/m/image_31176055_22_970x1182_1_1_4.jpg','image',0),(5258,90,'/i/m/image_31176055_22_970x1182_2_1_4.jpg','image',0),(5259,90,'/i/m/image_31176055_22_970x1182_3_1_4.jpg','image',0),(5260,90,'/r/1/r1_2.jpg','image',0),(5261,90,'/r/2/r2_2.jpg','image',0),(5262,90,'/r/3/r3_2.jpg','image',0),(5263,90,'/r/4/r4_2.jpg','image',0),(5264,90,'/d/1/d1_2_2.jpg','image',0),(5265,90,'/d/2/d2_2_2.jpg','image',0),(5266,90,'/d/3/d3_2_2.jpg','image',0),(5267,90,'/d/4/d4_2_1.jpg','image',0),(5268,90,'/w/1/w1_1_3.jpg','image',0),(5269,90,'/w/2/w2_1_3.jpg','image',0),(5270,90,'/w/3/w3_1_3.jpg','image',0),(5271,90,'/w/4/w4_1_2.jpg','image',0),(5272,90,'/b/1/b1_3.jpg','image',0),(5273,90,'/b/2/b2_3.jpg','image',0),(5274,90,'/b/3/b3_3.jpg','image',0),(5275,90,'/b/4/b4_2.jpg','image',0),(5276,90,'/g/1/g1_1_1.jpg','image',0),(5277,90,'/g/2/g2_1_1.jpg','image',0),(5278,90,'/g/3/g3_1_1.jpg','image',0),(5279,90,'/g/4/g4_1.jpg','image',0),(5280,90,'/r/1/r1_2_1.jpg','image',0),(5281,90,'/r/2/r2_2_1.jpg','image',0),(5282,90,'/r/3/r3_2_1.jpg','image',0),(5283,90,'/r/4/r4_2_1.jpg','image',0),(5284,90,'/d/1/d1_2_1_1.jpg','image',0),(5285,90,'/d/2/d2_2_1_1.jpg','image',0),(5286,90,'/d/3/d3_2_1_1.jpg','image',0),(5287,90,'/d/4/d4_2_1_1.jpg','image',0),(5288,90,'/w/1/w1_1_1_1.jpg','image',0),(5289,90,'/w/2/w2_1_1_1.jpg','image',0),(5290,90,'/w/3/w3_1_1_1.jpg','image',0),(5291,90,'/w/4/w4_1_1_1.jpg','image',0),(5292,90,'/b/1/b1_3_1.jpg','image',0),(5293,90,'/b/2/b2_3_1.jpg','image',0),(5294,90,'/b/3/b3_3_1.jpg','image',0),(5295,90,'/b/4/b4_2_1.jpg','image',0),(5296,90,'/g/1/g1_1_1_1.jpg','image',0),(5297,90,'/g/2/g2_1_1_1.jpg','image',0),(5298,90,'/g/3/g3_1_1_1.jpg','image',0),(5299,90,'/g/4/g4_1_1.jpg','image',0),(5300,90,'/r/1/r1_2_2.jpg','image',0),(5301,90,'/r/2/r2_2_2.jpg','image',0),(5302,90,'/r/3/r3_2_2.jpg','image',0),(5303,90,'/r/4/r4_2_2.jpg','image',0),(5304,90,'/d/1/d1_2_2_1.jpg','image',0),(5305,90,'/d/2/d2_2_2_1.jpg','image',0),(5306,90,'/d/3/d3_2_2_1.jpg','image',0),(5307,90,'/d/4/d4_2_2.jpg','image',0),(5308,90,'/w/1/w1_1_2_1.jpg','image',0),(5309,90,'/w/2/w2_1_2_1.jpg','image',0),(5310,90,'/w/3/w3_1_2_1.jpg','image',0),(5311,90,'/w/4/w4_1_2_1.jpg','image',0),(5312,90,'/b/1/b1_3_2.jpg','image',0),(5313,90,'/b/2/b2_3_2.jpg','image',0),(5314,90,'/b/3/b3_3_2.jpg','image',0),(5315,90,'/b/4/b4_2_2.jpg','image',0),(5316,90,'/g/1/g1_1_2.jpg','image',0),(5317,90,'/g/2/g2_1_2.jpg','image',0),(5318,90,'/g/3/g3_1_2.jpg','image',0),(5319,90,'/g/4/g4_1_2.jpg','image',0),(5320,90,'/r/1/r1_2_3.jpg','image',0),(5321,90,'/r/2/r2_2_3.jpg','image',0),(5322,90,'/r/3/r3_2_3.jpg','image',0),(5323,90,'/r/4/r4_2_3.jpg','image',0),(5324,90,'/d/1/d1_2_3.jpg','image',0),(5325,90,'/d/2/d2_2_3.jpg','image',0),(5326,90,'/d/3/d3_2_3.jpg','image',0),(5327,90,'/d/4/d4_2_3.jpg','image',0),(5328,90,'/w/1/w1_1_3_1.jpg','image',0),(5329,90,'/w/2/w2_1_3_1.jpg','image',0),(5330,90,'/w/3/w3_1_3_1.jpg','image',0),(5331,90,'/w/4/w4_1_3.jpg','image',0),(5332,90,'/b/1/b1_3_3.jpg','image',0),(5333,90,'/b/2/b2_3_3.jpg','image',0),(5334,90,'/b/3/b3_3_3.jpg','image',0),(5335,90,'/b/4/b4_2_3.jpg','image',0),(5336,90,'/g/1/g1_1_3.jpg','image',0),(5337,90,'/g/2/g2_1_3.jpg','image',0),(5338,90,'/g/3/g3_1_3.jpg','image',0),(5339,90,'/g/4/g4_1_3.jpg','image',0),(5340,90,'/r/1/r1_2_4.jpg','image',0),(5341,90,'/r/2/r2_2_4.jpg','image',0),(5342,90,'/r/3/r3_2_4.jpg','image',0),(5343,90,'/r/4/r4_2_4.jpg','image',0),(5344,90,'/d/1/d1_2_4.jpg','image',0),(5345,90,'/d/2/d2_2_4.jpg','image',0),(5346,90,'/d/3/d3_2_4.jpg','image',0),(5347,90,'/d/4/d4_2_4.jpg','image',0),(5348,90,'/w/1/w1_1_4.jpg','image',0),(5349,90,'/w/2/w2_1_4.jpg','image',0),(5350,90,'/w/3/w3_1_4.jpg','image',0),(5351,90,'/w/4/w4_1_4.jpg','image',0),(5352,90,'/b/1/b1_3_4.jpg','image',0),(5353,90,'/b/2/b2_3_4.jpg','image',0),(5354,90,'/b/3/b3_3_4.jpg','image',0),(5355,90,'/b/4/b4_2_4.jpg','image',0),(5356,90,'/g/1/g1_1_4.jpg','image',0),(5357,90,'/g/2/g2_1_4.jpg','image',0),(5358,90,'/g/3/g3_1_4.jpg','image',0),(5359,90,'/g/4/g4_1_4.jpg','image',0),(5360,90,'/i/m/image_31231309_25_970x1182_0_1_2.jpg','image',0),(5361,90,'/i/m/image_31231309_25_970x1182_1_1_2.jpg','image',0),(5362,90,'/i/m/image_31231309_25_970x1182_3_1_2.jpg','image',0),(5363,90,'/i/m/image_31231309_25_970x1182_2_1_2.jpg','image',0),(5364,90,'/i/m/image_31231309_25_970x1182_0_1_2_1.jpg','image',0),(5365,90,'/i/m/image_31231309_25_970x1182_1_1_2_1.jpg','image',0),(5366,90,'/i/m/image_31231309_25_970x1182_3_1_2_1.jpg','image',0),(5367,90,'/i/m/image_31231309_25_970x1182_2_1_2_1.jpg','image',0),(5368,90,'/i/m/image_31231309_25_970x1182_0_1_3.jpg','image',0),(5369,90,'/i/m/image_31231309_25_970x1182_1_1_3.jpg','image',0),(5370,90,'/i/m/image_31231309_25_970x1182_3_1_3.jpg','image',0),(5371,90,'/i/m/image_31231309_25_970x1182_2_1_3.jpg','image',0),(5372,90,'/3/4/34rew23_3.jpg','image',0),(5373,90,'/4/f/4fe34555_3.jpg','image',0),(5374,90,'/1/q/1qw3e4rrr_3.jpg','image',0),(5375,90,'/2/w/2w3eee_3.jpg','image',0),(5376,90,'/3/4/34rew23_1_1.jpg','image',0),(5377,90,'/4/f/4fe34555_1_1.jpg','image',0),(5378,90,'/1/q/1qw3e4rrr_1_1.jpg','image',0),(5379,90,'/2/w/2w3eee_1_1.jpg','image',0),(5380,90,'/3/4/34rew23_2_1.jpg','image',0),(5381,90,'/4/f/4fe34555_2_1.jpg','image',0),(5382,90,'/1/q/1qw3e4rrr_2_1.jpg','image',0),(5383,90,'/2/w/2w3eee_2_1.jpg','image',0),(5384,90,'/i/m/image_31231309_25_970x1182_0_1_1_1.jpg','image',0),(5385,90,'/i/m/image_31231309_25_970x1182_1_1_1_1.jpg','image',0),(5386,90,'/i/m/image_31231309_25_970x1182_3_1_1_1.jpg','image',0),(5387,90,'/i/m/image_31231309_25_970x1182_2_1_1_1.jpg','image',0),(5388,90,'/i/m/image_31302817_21_970x1182_0-3_1_2.jpg','image',0),(5389,90,'/i/m/image_31302817_21_970x1182_1-2_1_2.jpg','image',0),(5390,90,'/i/m/image_31302817_21_970x1182_2-3_1_2.jpg','image',0),(5391,90,'/i/m/image_31302817_21_970x1182_3-2_1_2.jpg','image',0),(5392,90,'/i/m/image_31302817_21_970x1182_0-3_1_2_1.jpg','image',0),(5393,90,'/i/m/image_31302817_21_970x1182_1-2_1_2_1.jpg','image',0),(5394,90,'/i/m/image_31302817_21_970x1182_2-3_1_2_1.jpg','image',0),(5395,90,'/i/m/image_31302817_21_970x1182_3-2_1_2_1.jpg','image',0),(5396,90,'/i/m/image_31302817_21_970x1182_0-3_1_3.jpg','image',0),(5397,90,'/i/m/image_31302817_21_970x1182_1-2_1_3.jpg','image',0),(5398,90,'/i/m/image_31302817_21_970x1182_2-3_1_3.jpg','image',0),(5399,90,'/i/m/image_31302817_21_970x1182_3-2_1_3.jpg','image',0),(5400,90,'/5/t/5t4rr4r3r_3.jpg','image',0),(5401,90,'/5/t/5t4r4r5t5_3.jpg','image',0),(5402,90,'/4/3/43ee_3.jpg','image',0),(5403,90,'/6/5/654rttt_3.jpg','image',0),(5404,90,'/r/1/r1_3.jpg','image',0),(5405,90,'/r/2/r2_3.jpg','image',0),(5406,90,'/r/3/r3_3.jpg','image',0),(5407,90,'/r/1/r1_3_1.jpg','image',0),(5408,90,'/r/2/r2_3_1.jpg','image',0),(5409,90,'/r/3/r3_3_1.jpg','image',0),(5410,90,'/5/t/5t4rr4r3r_1_1.jpg','image',0),(5411,90,'/5/t/5t4r4r5t5_1_1.jpg','image',0),(5412,90,'/4/3/43ee_1_1.jpg','image',0),(5413,90,'/6/5/654rttt_1_1.jpg','image',0),(5414,90,'/r/1/r1_3_2.jpg','image',0),(5415,90,'/r/2/r2_3_2.jpg','image',0),(5416,90,'/r/3/r3_3_2.jpg','image',0),(5417,90,'/r/1/r1_3_3.jpg','image',0),(5418,90,'/r/2/r2_3_3.jpg','image',0),(5419,90,'/r/3/r3_3_3.jpg','image',0),(5420,90,'/d/1/d1_3_2.jpg','image',0),(5421,90,'/d/2/d2_3_2.jpg','image',0),(5422,90,'/d/3/d3_3_2.jpg','image',0),(5423,90,'/5/t/5t4rr4r3r_2_1.jpg','image',0),(5424,90,'/5/t/5t4r4r5t5_2_1.jpg','image',0),(5425,90,'/4/3/43ee_2_1.jpg','image',0),(5426,90,'/6/5/654rttt_2_1.jpg','image',0),(5427,90,'/d/1/d1_3_1_1.jpg','image',0),(5428,90,'/d/2/d2_3_1_1.jpg','image',0),(5429,90,'/d/3/d3_3_1_1.jpg','image',0),(5430,90,'/d/1/d1_3_2_1.jpg','image',0),(5431,90,'/d/2/d2_3_2_1.jpg','image',0),(5432,90,'/d/3/d3_3_2_1.jpg','image',0),(5433,90,'/d/1/d1_3_3.jpg','image',0),(5434,90,'/d/2/d2_3_3.jpg','image',0),(5435,90,'/d/3/d3_3_3.jpg','image',0),(5436,90,'/i/m/image_31302817_21_970x1182_0-3_1_1_1.jpg','image',0),(5437,90,'/i/m/image_31302817_21_970x1182_1-2_1_1_1.jpg','image',0),(5438,90,'/i/m/image_31302817_21_970x1182_2-3_1_1_1.jpg','image',0),(5439,90,'/i/m/image_31302817_21_970x1182_3-2_1_1_1.jpg','image',0),(5440,90,'/1/_/1_2.jpg','image',0),(5441,90,'/2/_/2_2.jpg','image',0),(5442,90,'/3/_/3_2.jpg','image',0),(5443,90,'/1/_/1_2_1.jpg','image',0),(5444,90,'/2/_/2_2_1.jpg','image',0),(5445,90,'/3/_/3_2_1.jpg','image',0),(5446,90,'/1/_/1_2_2.jpg','image',0),(5447,90,'/2/_/2_2_2.jpg','image',0),(5448,90,'/3/_/3_2_2.jpg','image',0),(5449,90,'/1/_/1_2_3.jpg','image',0),(5450,90,'/2/_/2_2_3.jpg','image',0),(5451,90,'/3/_/3_2_3.jpg','image',0),(5452,90,'/w/1/w1_2_3.jpg','image',0),(5453,90,'/w/2/w2_2_3.jpg','image',0),(5454,90,'/w/3/w3_2_3.jpg','image',0),(5455,90,'/w/1/w1_2_1_1.jpg','image',0),(5456,90,'/w/2/w2_2_1_1.jpg','image',0),(5457,90,'/w/3/w3_2_1_1.jpg','image',0),(5458,90,'/w/1/w1_2_2_1.jpg','image',0),(5459,90,'/w/2/w2_2_2_1.jpg','image',0),(5460,90,'/w/3/w3_2_2_1.jpg','image',0),(5461,90,'/w/1/w1_2_3_1.jpg','image',0),(5462,90,'/w/2/w2_2_3_1.jpg','image',0),(5463,90,'/w/3/w3_2_3_1.jpg','image',0),(5464,90,'/b/1/b1_5.jpg','image',0),(5465,90,'/b/2/b2_5.jpg','image',0),(5466,90,'/b/3/b3_5.jpg','image',0),(5467,90,'/b/1/b1_5_1.jpg','image',0),(5468,90,'/b/2/b2_5_1.jpg','image',0),(5469,90,'/b/3/b3_5_1.jpg','image',0),(5470,90,'/b/1/b1_5_2.jpg','image',0),(5471,90,'/b/2/b2_5_2.jpg','image',0),(5472,90,'/b/3/b3_5_2.jpg','image',0),(5473,90,'/b/1/b1_5_3.jpg','image',0),(5474,90,'/b/2/b2_5_3.jpg','image',0),(5475,90,'/b/3/b3_5_3.jpg','image',0),(5476,90,'/w/1/w1_2_4.jpg','image',0),(5477,90,'/w/2/w2_2_4.jpg','image',0),(5478,90,'/w/3/w3_2_4.jpg','image',0),(5479,90,'/3/4/3434t5t5t_1_1.jpg','image',0),(5480,90,'/6/6/667887878_1_1.jpg','image',0),(5481,90,'/6/y/6y6h6h6h6h_1_1.jpg','image',0),(5482,90,'/3/4/3434t5t5t_1_1_1.jpg','image',0),(5483,90,'/6/6/667887878_1_1_1.jpg','image',0),(5484,90,'/6/y/6y6h6h6h6h_1_1_1.jpg','image',0),(5485,90,'/3/4/3434t5t5t_1_2.jpg','image',0),(5486,90,'/6/6/667887878_1_2.jpg','image',0),(5487,90,'/6/y/6y6h6h6h6h_1_2.jpg','image',0),(5488,90,'/i/m/image_31203254_31_620x757_3_1_2.jpg','image',0),(5489,90,'/i/m/image_31203254_31_620x757_2_1_2.jpg','image',0),(5490,90,'/m/a/main_5_5_1_2_1.jpg','image',0),(5491,90,'/i/m/image_31203254_31_620x757_3_1_2_1.jpg','image',0),(5492,90,'/i/m/image_31203254_31_620x757_2_1_2_1.jpg','image',0),(5493,90,'/m/a/main_5_5_1_2_1_1.jpg','image',0),(5494,90,'/i/m/image_31203254_31_620x757_3_1_2_2.jpg','image',0),(5495,90,'/i/m/image_31203254_31_620x757_2_1_2_2.jpg','image',0),(5496,90,'/m/a/main_5_5_1_2_2.jpg','image',0),(5497,90,'/m/a/main_5_5_1_3.jpg','image',0),(5498,90,'/i/m/image_31203254_31_620x757_2_1_3.jpg','image',0),(5499,90,'/i/m/image_31203254_31_620x757_3_1_3.jpg','image',0),(5500,90,'/r/1/r1_4.jpg','image',0),(5501,90,'/r/2/r2_4.jpg','image',0),(5502,90,'/r/3/r3_4.jpg','image',0),(5503,90,'/r/4/r4_3.jpg','image',0),(5504,90,'/1/_/1_5.jpg','image',0),(5505,90,'/2/_/2_5.jpg','image',0),(5506,90,'/3/_/3_5.jpg','image',0),(5507,90,'/4/_/4_2.jpg','image',0),(5508,90,'/w/1/w1_3_3.jpg','image',0),(5509,90,'/w/2/w2_3_3.jpg','image',0),(5510,90,'/w/3/w3_3_3.jpg','image',0),(5511,90,'/w/4/w4_2_2.jpg','image',0),(5512,90,'/b/1/b1_7.jpg','image',0),(5513,90,'/b/2/b2_7.jpg','image',0),(5514,90,'/b/3/b3_7.jpg','image',0),(5515,90,'/b/4/b4_4.jpg','image',0),(5516,90,'/g/1/g1_2_1.jpg','image',0),(5517,90,'/g/2/g2_2_1.jpg','image',0),(5518,90,'/g/3/g3_2_1.jpg','image',0),(5519,90,'/g/4/g4_2.jpg','image',0),(5520,90,'/r/1/r1_4_1.jpg','image',0),(5521,90,'/r/2/r2_4_1.jpg','image',0),(5522,90,'/r/3/r3_4_1.jpg','image',0),(5523,90,'/r/4/r4_3_1.jpg','image',0),(5524,90,'/1/_/1_5_1.jpg','image',0),(5525,90,'/2/_/2_5_1.jpg','image',0),(5526,90,'/3/_/3_5_1.jpg','image',0),(5527,90,'/4/_/4_2_1.jpg','image',0),(5528,90,'/w/1/w1_3_1_1.jpg','image',0),(5529,90,'/w/2/w2_3_1_1.jpg','image',0),(5530,90,'/w/3/w3_3_1_1.jpg','image',0),(5531,90,'/w/4/w4_2_1_1.jpg','image',0),(5532,90,'/b/1/b1_7_1.jpg','image',0),(5533,90,'/b/2/b2_7_1.jpg','image',0),(5534,90,'/b/3/b3_7_1.jpg','image',0),(5535,90,'/b/4/b4_4_1.jpg','image',0),(5536,90,'/g/1/g1_2_1_1.jpg','image',0),(5537,90,'/g/2/g2_2_1_1.jpg','image',0),(5538,90,'/g/3/g3_2_1_1.jpg','image',0),(5539,90,'/g/4/g4_2_1.jpg','image',0),(5540,90,'/r/1/r1_4_2.jpg','image',0),(5541,90,'/r/2/r2_4_2.jpg','image',0),(5542,90,'/r/3/r3_4_2.jpg','image',0),(5543,90,'/r/4/r4_3_2.jpg','image',0),(5544,90,'/1/_/1_5_2.jpg','image',0),(5545,90,'/2/_/2_5_2.jpg','image',0),(5546,90,'/3/_/3_5_2.jpg','image',0),(5547,90,'/4/_/4_2_2.jpg','image',0),(5548,90,'/w/1/w1_3_2_1.jpg','image',0),(5549,90,'/w/2/w2_3_2_1.jpg','image',0),(5550,90,'/w/3/w3_3_2_1.jpg','image',0),(5551,90,'/w/4/w4_2_2_1.jpg','image',0),(5552,90,'/b/1/b1_7_2.jpg','image',0),(5553,90,'/b/2/b2_7_2.jpg','image',0),(5554,90,'/b/3/b3_7_2.jpg','image',0),(5555,90,'/b/4/b4_4_2.jpg','image',0),(5556,90,'/g/1/g1_2_2.jpg','image',0),(5557,90,'/g/2/g2_2_2.jpg','image',0),(5558,90,'/g/3/g3_2_2.jpg','image',0),(5559,90,'/g/4/g4_2_2.jpg','image',0),(5560,90,'/1/_/1_3.jpg','image',0),(5561,90,'/2/_/2_3.jpg','image',0),(5562,90,'/3/_/3_3.jpg','image',0),(5563,90,'/i/m/image_31265248_31_970x1182_3_1_2.jpg','image',0),(5564,90,'/i/m/image_31265248_31_970x1182_2_1_2.jpg','image',0),(5565,90,'/i/m/image_31265248_31_970x1182_1_1_2.jpg','image',0),(5566,90,'/i/m/image_31265248_31_970x1182_0_1_2.jpg','image',0),(5567,90,'/i/m/image_31265248_31_970x1182_3_1_2_1.jpg','image',0),(5568,90,'/i/m/image_31265248_31_970x1182_2_1_2_1.jpg','image',0),(5569,90,'/i/m/image_31265248_31_970x1182_1_1_2_1.jpg','image',0),(5570,90,'/i/m/image_31265248_31_970x1182_0_1_2_1.jpg','image',0),(5571,90,'/i/m/image_31265248_31_970x1182_3_1_3.jpg','image',0),(5572,90,'/i/m/image_31265248_31_970x1182_2_1_3.jpg','image',0),(5573,90,'/i/m/image_31265248_31_970x1182_1_1_3.jpg','image',0),(5574,90,'/i/m/image_31265248_31_970x1182_0_1_3.jpg','image',0),(5575,90,'/i/m/image_31265248_31_970x1182_3_1_4.jpg','image',0),(5576,90,'/i/m/image_31265248_31_970x1182_2_1_4.jpg','image',0),(5577,90,'/i/m/image_31265248_31_970x1182_1_1_4.jpg','image',0),(5578,90,'/i/m/image_31265248_31_970x1182_0_1_4.jpg','image',0),(5579,90,'/i/m/image_31265248_31_970x1182_3_1_5.jpg','image',0),(5580,90,'/i/m/image_31265248_31_970x1182_2_1_5.jpg','image',0),(5581,90,'/i/m/image_31265248_31_970x1182_1_1_5.jpg','image',0),(5582,90,'/i/m/image_31265248_31_970x1182_0_1_5.jpg','image',0),(5583,90,'/4/5/4545t666_5.jpg','image',0),(5584,90,'/5/6/56565y5y5y_5.jpg','image',0),(5585,90,'/5/t/5t5t5t5t4t4t_5.jpg','image',0),(5586,90,'/5/t/5t5t44r4r_5.jpg','image',0),(5587,90,'/4/5/4545t666_1_1.jpg','image',0),(5588,90,'/5/6/56565y5y5y_1_1.jpg','image',0),(5589,90,'/5/t/5t5t5t5t4t4t_1_1.jpg','image',0),(5590,90,'/5/t/5t5t44r4r_1_1.jpg','image',0),(5591,90,'/4/5/4545t666_2_1.jpg','image',0),(5592,90,'/5/6/56565y5y5y_2_1.jpg','image',0),(5593,90,'/5/t/5t5t5t5t4t4t_2_1.jpg','image',0),(5594,90,'/5/t/5t5t44r4r_2_1.jpg','image',0),(5595,90,'/4/5/4545t666_3_1.jpg','image',0),(5596,90,'/5/6/56565y5y5y_3_1.jpg','image',0),(5597,90,'/5/t/5t5t5t5t4t4t_3_1.jpg','image',0),(5598,90,'/5/t/5t5t44r4r_3_1.jpg','image',0),(5599,90,'/4/5/4545t666_4_1.jpg','image',0),(5600,90,'/5/6/56565y5y5y_4_1.jpg','image',0),(5601,90,'/5/t/5t5t5t5t4t4t_4_1.jpg','image',0),(5602,90,'/5/t/5t5t44r4r_4_1.jpg','image',0),(5603,90,'/i/m/image_31265248_31_970x1182_0_1_1_1.jpg','image',0),(5604,90,'/i/m/image_31265248_31_970x1182_1_1_1_1.jpg','image',0),(5605,90,'/i/m/image_31265248_31_970x1182_2_1_1_1.jpg','image',0),(5606,90,'/i/m/image_31265248_31_970x1182_3_1_1_1.jpg','image',0),(5607,90,'/b/1/b1_8.jpg','image',0),(5608,90,'/b/2/b2_8.jpg','image',0),(5609,90,'/b/3/b3_8.jpg','image',0),(5610,90,'/b/1/b1_8_1.jpg','image',0),(5611,90,'/b/2/b2_8_1.jpg','image',0),(5612,90,'/b/3/b3_8_1.jpg','image',0),(5613,90,'/b/1/b1_8_2.jpg','image',0),(5614,90,'/b/2/b2_8_2.jpg','image',0),(5615,90,'/b/3/b3_8_2.jpg','image',0),(5616,90,'/r/1/r1_5.jpg','image',0),(5617,90,'/r/2/r2_5.jpg','image',0),(5618,90,'/r/3/r3_5.jpg','image',0),(5619,90,'/r/1/r1_5_1.jpg','image',0),(5620,90,'/r/2/r2_5_1.jpg','image',0),(5621,90,'/r/3/r3_5_1.jpg','image',0),(5622,90,'/r/1/r1_5_2.jpg','image',0),(5623,90,'/r/2/r2_5_2.jpg','image',0),(5624,90,'/r/3/r3_5_2.jpg','image',0),(5625,90,'/1/_/1_6.jpg','image',0),(5626,90,'/2/_/2_6.jpg','image',0),(5627,90,'/3/_/3_6.jpg','image',0),(5628,90,'/1/_/1_6_1.jpg','image',0),(5629,90,'/2/_/2_6_1.jpg','image',0),(5630,90,'/3/_/3_6_1.jpg','image',0),(5631,90,'/1/_/1_6_2.jpg','image',0),(5632,90,'/2/_/2_6_2.jpg','image',0),(5633,90,'/3/_/3_6_2.jpg','image',0),(5634,90,'/w/1/w1_4_3.jpg','image',0),(5635,90,'/w/2/w2_4_3.jpg','image',0),(5636,90,'/w/3/w3_4_3.jpg','image',0),(5637,90,'/w/1/w1_4_1_1.jpg','image',0),(5638,90,'/w/2/w2_4_1_1.jpg','image',0),(5639,90,'/w/3/w3_4_1_1.jpg','image',0),(5640,90,'/w/1/w1_4_2_1.jpg','image',0),(5641,90,'/w/2/w2_4_2_1.jpg','image',0),(5642,90,'/w/3/w3_4_2_1.jpg','image',0),(5643,90,'/1/1/11.jpg','image',0),(5644,90,'/2/2/22.jpg','image',0),(5645,90,'/3/3/33.jpg','image',0),(5646,90,'/i/m/image_30988045_20_970x1182_0_1_1_2.jpg','image',0),(5647,90,'/i/m/image_30988045_20_970x1182_3_1_1_2.jpg','image',0),(5648,90,'/i/m/image_30988045_20_970x1182_2_1_1_2.jpg','image',0),(5649,90,'/i/m/image_30988045_20_970x1182_1_1_1_2.jpg','image',0),(5650,90,'/i/m/image_30988045_20_970x1182_0_1_1_2_1.jpg','image',0),(5651,90,'/i/m/image_30988045_20_970x1182_3_1_1_2_1.jpg','image',0),(5652,90,'/i/m/image_30988045_20_970x1182_2_1_1_2_1.jpg','image',0),(5653,90,'/i/m/image_30988045_20_970x1182_1_1_1_2_1.jpg','image',0),(5654,90,'/i/m/image_30988045_20_970x1182_0_1_1_3.jpg','image',0),(5655,90,'/i/m/image_30988045_20_970x1182_3_1_1_3.jpg','image',0),(5656,90,'/i/m/image_30988045_20_970x1182_2_1_1_3.jpg','image',0),(5657,90,'/i/m/image_30988045_20_970x1182_1_1_1_3.jpg','image',0),(5658,90,'/i/m/image_30988045_20_970x1182_0_1_1_4.jpg','image',0),(5659,90,'/i/m/image_30988045_20_970x1182_3_1_1_4.jpg','image',0),(5660,90,'/i/m/image_30988045_20_970x1182_2_1_1_4.jpg','image',0),(5661,90,'/i/m/image_30988045_20_970x1182_1_1_1_4.jpg','image',0),(5662,90,'/4/3/43r3e3e3e_4_1.jpg','image',0),(5663,90,'/5/t/5t5tr4r4_4_1.jpg','image',0),(5664,90,'/4/5/4534r4r4r442_4_1.jpg','image',0),(5665,90,'/5/6/565t55t_4_1.jpg','image',0),(5666,90,'/4/3/43r3e3e3e_4_1_1.jpg','image',0),(5667,90,'/5/t/5t5tr4r4_4_1_1.jpg','image',0),(5668,90,'/4/5/4534r4r4r442_4_1_1.jpg','image',0),(5669,90,'/5/6/565t55t_4_1_1.jpg','image',0),(5670,90,'/4/3/43r3e3e3e_4_2.jpg','image',0),(5671,90,'/5/t/5t5tr4r4_4_2.jpg','image',0),(5672,90,'/4/5/4534r4r4r442_4_2.jpg','image',0),(5673,90,'/5/6/565t55t_4_2.jpg','image',0),(5674,90,'/4/3/43r3e3e3e_4_3.jpg','image',0),(5675,90,'/5/t/5t5tr4r4_4_3.jpg','image',0),(5676,90,'/4/5/4534r4r4r442_4_3.jpg','image',0),(5677,90,'/5/6/565t55t_4_3.jpg','image',0),(5678,90,'/6/5/6565g5g5g5g_4_1.jpg','image',0),(5679,90,'/5/6/565t4t4t4_4_1.jpg','image',0),(5680,90,'/3/4/3434232eee_4_1.jpg','image',0),(5681,90,'/3/5/354544r4r4_4_1.jpg','image',0),(5682,90,'/6/5/6565g5g5g5g_4_1_1.jpg','image',0),(5683,90,'/5/6/565t4t4t4_4_1_1.jpg','image',0),(5684,90,'/3/4/3434232eee_4_1_1.jpg','image',0),(5685,90,'/3/5/354544r4r4_4_1_1.jpg','image',0),(5686,90,'/6/5/6565g5g5g5g_4_2.jpg','image',0),(5687,90,'/5/6/565t4t4t4_4_2.jpg','image',0),(5688,90,'/3/4/3434232eee_4_2.jpg','image',0),(5689,90,'/3/5/354544r4r4_4_2.jpg','image',0),(5690,90,'/6/5/6565g5g5g5g_4_3.jpg','image',0),(5691,90,'/5/6/565t4t4t4_4_3.jpg','image',0),(5692,90,'/3/4/3434232eee_4_3.jpg','image',0),(5693,90,'/3/5/354544r4r4_4_3.jpg','image',0),(5694,90,'/i/m/image_30988045_20_970x1182_0_1_1_1_1.jpg','image',0),(5695,90,'/i/m/image_30988045_20_970x1182_1_1_1_1_1.jpg','image',0),(5696,90,'/i/m/image_30988045_20_970x1182_2_1_1_1_1.jpg','image',0),(5697,90,'/i/m/image_30988045_20_970x1182_3_1_1_1_1.jpg','image',0),(5698,90,'/b/1/b1_9.jpg','image',0),(5699,90,'/b/2/b2_9.jpg','image',0),(5700,90,'/b/3/b3_9.jpg','image',0),(5701,90,'/g/1/g1_3_1.jpg','image',0),(5702,90,'/g/2/g2_3_1.jpg','image',0),(5703,90,'/g/3/g3_3_1.jpg','image',0),(5704,90,'/w/1/w1_5_3.jpg','image',0),(5705,90,'/w/2/w2_5_3.jpg','image',0),(5706,90,'/w/3/w3_5_3.jpg','image',0),(5707,90,'/1/_/1_7.jpg','image',0),(5708,90,'/2/_/2_7.jpg','image',0),(5709,90,'/3/_/3_7.jpg','image',0),(5710,90,'/r/1/r1_copy_.jpg','image',0),(5711,90,'/r/2/r2_copy_.jpg','image',0),(5712,90,'/r/3/r3_copy_.jpg','image',0),(5713,90,'/b/1/b1_9_1.jpg','image',0),(5714,90,'/b/2/b2_9_1.jpg','image',0),(5715,90,'/b/3/b3_9_1.jpg','image',0),(5716,90,'/g/1/g1_3_1_1.jpg','image',0),(5717,90,'/g/2/g2_3_1_1.jpg','image',0),(5718,90,'/g/3/g3_3_1_1.jpg','image',0),(5719,90,'/w/1/w1_5_1_1.jpg','image',0),(5720,90,'/w/2/w2_5_1_1.jpg','image',0),(5721,90,'/w/3/w3_5_1_1.jpg','image',0),(5722,90,'/1/_/1_7_1.jpg','image',0),(5723,90,'/2/_/2_7_1.jpg','image',0),(5724,90,'/3/_/3_7_1.jpg','image',0),(5725,90,'/r/1/r1_copy__1.jpg','image',0),(5726,90,'/r/2/r2_copy__1.jpg','image',0),(5727,90,'/r/3/r3_copy__1.jpg','image',0),(5728,90,'/b/1/b1_9_2.jpg','image',0),(5729,90,'/b/2/b2_9_2.jpg','image',0),(5730,90,'/b/3/b3_9_2.jpg','image',0),(5731,90,'/g/1/g1_3_2.jpg','image',0),(5732,90,'/g/2/g2_3_2.jpg','image',0),(5733,90,'/g/3/g3_3_2.jpg','image',0),(5734,90,'/w/1/w1_5_2_1.jpg','image',0),(5735,90,'/w/2/w2_5_2_1.jpg','image',0),(5736,90,'/w/3/w3_5_2_1.jpg','image',0),(5737,90,'/1/_/1_7_2.jpg','image',0),(5738,90,'/2/_/2_7_2.jpg','image',0),(5739,90,'/3/_/3_7_2.jpg','image',0),(5740,90,'/r/1/r1_copy__2.jpg','image',0),(5741,90,'/r/2/r2_copy__2.jpg','image',0),(5742,90,'/r/3/r3_copy__2.jpg','image',0),(5743,90,'/b/1/b1_9_3.jpg','image',0),(5744,90,'/b/2/b2_9_3.jpg','image',0),(5745,90,'/b/3/b3_9_3.jpg','image',0),(5746,90,'/g/1/g1_3_3.jpg','image',0),(5747,90,'/g/2/g2_3_3.jpg','image',0),(5748,90,'/g/3/g3_3_3.jpg','image',0),(5749,90,'/w/1/w1_5_3_1.jpg','image',0),(5750,90,'/w/2/w2_5_3_1.jpg','image',0),(5751,90,'/w/3/w3_5_3_1.jpg','image',0),(5752,90,'/1/_/1_7_3.jpg','image',0),(5753,90,'/2/_/2_7_3.jpg','image',0),(5754,90,'/3/_/3_7_3.jpg','image',0),(5755,90,'/r/1/r1_copy__3.jpg','image',0),(5756,90,'/r/2/r2_copy__3.jpg','image',0),(5757,90,'/r/3/r3_copy__3.jpg','image',0),(5758,90,'/1/1/111.jpg','image',0),(5759,90,'/2/2/222.jpg','image',0),(5760,90,'/3/3/333.jpg','image',0),(5761,90,'/b/1/b1_10.jpg','image',0),(5762,90,'/b/2/b2_10.jpg','image',0),(5763,90,'/b/3/b3_10.jpg','image',0),(5764,90,'/r/1/r1_6.jpg','image',0),(5765,90,'/r/2/r2_6.jpg','image',0),(5766,90,'/r/3/r3_6.jpg','image',0),(5767,90,'/w/1/w1_6_1.jpg','image',0),(5768,90,'/w/2/w2_6_1.jpg','image',0),(5769,90,'/w/3/w3_6_1.jpg','image',0),(5770,90,'/1/_/1_8.jpg','image',0),(5771,90,'/2/_/2_8.jpg','image',0),(5772,90,'/3/_/3_8.jpg','image',0),(5773,90,'/g/1/g1_4_1.jpg','image',0),(5774,90,'/g/2/g2_4_1.jpg','image',0),(5775,90,'/g/3/g3_4_1.jpg','image',0),(5776,90,'/b/1/b1_10_1.jpg','image',0),(5777,90,'/b/2/b2_10_1.jpg','image',0),(5778,90,'/b/3/b3_10_1.jpg','image',0),(5779,90,'/r/1/r1_6_1.jpg','image',0),(5780,90,'/r/2/r2_6_1.jpg','image',0),(5781,90,'/r/3/r3_6_1.jpg','image',0),(5782,90,'/w/1/w1_6_1_1.jpg','image',0),(5783,90,'/w/2/w2_6_1_1.jpg','image',0),(5784,90,'/w/3/w3_6_1_1.jpg','image',0),(5785,90,'/1/_/1_8_1.jpg','image',0),(5786,90,'/2/_/2_8_1.jpg','image',0),(5787,90,'/3/_/3_8_1.jpg','image',0),(5788,90,'/g/1/g1_4_1_1.jpg','image',0),(5789,90,'/g/2/g2_4_1_1.jpg','image',0),(5790,90,'/g/3/g3_4_1_1.jpg','image',0),(5791,90,'/b/1/b1_10_2.jpg','image',0),(5792,90,'/b/2/b2_10_2.jpg','image',0),(5793,90,'/b/3/b3_10_2.jpg','image',0),(5794,90,'/r/1/r1_6_2.jpg','image',0),(5795,90,'/r/2/r2_6_2.jpg','image',0),(5796,90,'/r/3/r3_6_2.jpg','image',0),(5797,90,'/w/1/w1_6_2.jpg','image',0),(5798,90,'/w/2/w2_6_2.jpg','image',0),(5799,90,'/w/3/w3_6_2.jpg','image',0),(5804,90,'/1/_/1_8_2.jpg','image',0),(5805,90,'/2/_/2_8_2.jpg','image',0),(5806,90,'/3/_/3_8_2.jpg','image',0),(5807,90,'/g/1/g1_4_2.jpg','image',0),(5808,90,'/g/2/g2_4_2.jpg','image',0),(5809,90,'/g/3/g3_4_2.jpg','image',0),(5810,90,'/b/1/b1_10_3.jpg','image',0),(5811,90,'/b/2/b2_10_3.jpg','image',0),(5812,90,'/b/3/b3_10_3.jpg','image',0),(5813,90,'/r/1/r1_6_3.jpg','image',0),(5814,90,'/r/2/r2_6_3.jpg','image',0),(5815,90,'/r/3/r3_6_3.jpg','image',0),(5816,90,'/w/1/w1_6_3.jpg','image',0),(5817,90,'/w/2/w2_6_3.jpg','image',0),(5818,90,'/w/3/w3_6_3.jpg','image',0),(5819,90,'/1/_/1_8_3.jpg','image',0),(5820,90,'/2/_/2_8_3.jpg','image',0),(5821,90,'/3/_/3_8_3.jpg','image',0),(5822,90,'/g/1/g1_4_3.jpg','image',0),(5823,90,'/g/2/g2_4_3.jpg','image',0),(5824,90,'/g/3/g3_4_3.jpg','image',0),(5825,90,'/z/1/z1.jpg','image',0),(5826,90,'/z/2/z2.jpg','image',0),(5827,90,'/z/3/z3.jpg','image',0),(5828,90,'/i/m/image_31226241_25_970x1182_0_1_3.jpg','image',0),(5829,90,'/i/m/image_31226241_25_970x1182_1_1_3.jpg','image',0),(5830,90,'/i/m/image_31226241_25_970x1182_3_1_3.jpg','image',0),(5831,90,'/i/m/image_31226241_25_970x1182_2_1_3.jpg','image',0),(5832,90,'/i/m/image_31226241_25_970x1182_0_1_5.jpg','image',0),(5833,90,'/i/m/image_31226241_25_970x1182_1_1_5.jpg','image',0),(5834,90,'/i/m/image_31226241_25_970x1182_3_1_5.jpg','image',0),(5835,90,'/i/m/image_31226241_25_970x1182_2_1_5.jpg','image',0),(5836,90,'/i/m/image_31226241_25_970x1182_0_1_6.jpg','image',0),(5837,90,'/i/m/image_31226241_25_970x1182_1_1_6.jpg','image',0),(5838,90,'/i/m/image_31226241_25_970x1182_3_1_6.jpg','image',0),(5839,90,'/i/m/image_31226241_25_970x1182_2_1_6.jpg','image',0),(5840,90,'/2/3/232323333_1_1_3.jpg','image',0),(5841,90,'/4/5/455tt4t4t4t_1_1_3.jpg','image',0),(5842,90,'/2/3/23234r4r4r_1_1_3.jpg','image',0),(5843,90,'/4/5/45455t5t_1_1_3.jpg','image',0),(5844,90,'/2/3/232323333_1_1_3_1.jpg','image',0),(5845,90,'/4/5/455tt4t4t4t_1_1_3_1.jpg','image',0),(5846,90,'/2/3/23234r4r4r_1_1_3_1.jpg','image',0),(5847,90,'/4/5/45455t5t_1_1_3_1.jpg','image',0),(5848,90,'/2/3/232323333_1_1_3_2.jpg','image',0),(5849,90,'/4/5/455tt4t4t4t_1_1_3_2.jpg','image',0),(5850,90,'/2/3/23234r4r4r_1_1_3_2.jpg','image',0),(5851,90,'/4/5/45455t5t_1_1_3_2.jpg','image',0),(5852,90,'/2/5/255tt4r4r_1_1_3.jpg','image',0),(5853,90,'/3/e/3e1wwqw_1_1_3.jpg','image',0),(5854,90,'/6/5/65y5t5t5t_1_1_3.jpg','image',0),(5855,90,'/5/7/57565t5g5t_1_1_3.jpg','image',0),(5856,90,'/2/5/255tt4r4r_1_1_3_1.jpg','image',0),(5857,90,'/3/e/3e1wwqw_1_1_3_1.jpg','image',0),(5858,90,'/6/5/65y5t5t5t_1_1_3_1.jpg','image',0),(5859,90,'/5/7/57565t5g5t_1_1_3_1.jpg','image',0),(5860,90,'/2/5/255tt4r4r_1_1_3_2.jpg','image',0),(5861,90,'/3/e/3e1wwqw_1_1_3_2.jpg','image',0),(5862,90,'/6/5/65y5t5t5t_1_1_3_2.jpg','image',0),(5863,90,'/5/7/57565t5g5t_1_1_3_2.jpg','image',0),(5864,90,'/i/m/image_31226241_25_970x1182_0_1_1_1.jpg','image',0),(5865,90,'/i/m/image_31226241_25_970x1182_1_1_1_1.jpg','image',0),(5866,90,'/i/m/image_31226241_25_970x1182_2_1_1_1.jpg','image',0),(5867,90,'/i/m/image_31226241_25_970x1182_3_1_1_1.jpg','image',0),(5868,90,'/i/m/image_31226241_25_970x1182_0_1_4.jpg','image',0),(5869,90,'/i/m/image_31226241_25_970x1182_1_1_4.jpg','image',0),(5870,90,'/i/m/image_31226241_25_970x1182_2_1_4.jpg','image',0),(5871,90,'/i/m/image_31226241_25_970x1182_3_1_4.jpg','image',0),(5872,90,'/d/1/d1_4_2.jpg','image',0),(5873,90,'/d/2/d2_4_2.jpg','image',0),(5874,90,'/d/3/d3_4_2.jpg','image',0),(5875,90,'/d/1/d1_4_1_1.jpg','image',0),(5876,90,'/d/2/d2_4_1_1.jpg','image',0),(5877,90,'/d/3/d3_4_1_1.jpg','image',0),(5878,90,'/d/1/d1_4_2_1.jpg','image',0),(5879,90,'/d/2/d2_4_2_1.jpg','image',0),(5880,90,'/d/3/d3_4_2_1.jpg','image',0),(5881,90,'/r/1/r1_7.jpg','image',0),(5882,90,'/r/2/r2_7.jpg','image',0),(5883,90,'/r/3/r3_7.jpg','image',0),(5884,90,'/r/1/r1_7_1.jpg','image',0),(5885,90,'/r/2/r2_7_1.jpg','image',0),(5886,90,'/r/3/r3_7_1.jpg','image',0),(5887,90,'/r/1/r1_7_2.jpg','image',0),(5888,90,'/r/2/r2_7_2.jpg','image',0),(5889,90,'/r/3/r3_7_2.jpg','image',0),(5890,90,'/w/1/w1_7_1.jpg','image',0),(5891,90,'/w/2/w2_7_1.jpg','image',0),(5892,90,'/w/3/w3_7_1.jpg','image',0),(5893,90,'/w/1/w1_7_1_1.jpg','image',0),(5894,90,'/w/2/w2_7_1_1.jpg','image',0),(5895,90,'/w/3/w3_7_1_1.jpg','image',0),(5896,90,'/w/1/w1_7_2.jpg','image',0),(5897,90,'/w/2/w2_7_2.jpg','image',0),(5898,90,'/w/3/w3_7_2.jpg','image',0),(5899,90,'/b/1/b1_11.jpg','image',0),(5900,90,'/b/2/b2_11.jpg','image',0),(5901,90,'/b/3/b3_11.jpg','image',0),(5902,90,'/b/1/b1_11_1.jpg','image',0),(5903,90,'/b/2/b2_11_1.jpg','image',0),(5904,90,'/b/3/b3_11_1.jpg','image',0),(5905,90,'/b/1/b1_11_2.jpg','image',0),(5906,90,'/b/2/b2_11_2.jpg','image',0),(5907,90,'/b/3/b3_11_2.jpg','image',0),(5908,90,'/g/1/g1_5_1.jpg','image',0),(5909,90,'/g/2/g2_5_1.jpg','image',0),(5910,90,'/g/3/g3_5_1.jpg','image',0),(5911,90,'/g/1/g1_5_1_1.jpg','image',0),(5912,90,'/g/2/g2_5_1_1.jpg','image',0),(5913,90,'/g/3/g3_5_1_1.jpg','image',0),(5914,90,'/g/1/g1_5_2.jpg','image',0),(5915,90,'/g/2/g2_5_2.jpg','image',0),(5916,90,'/g/3/g3_5_2.jpg','image',0),(5917,90,'/b/b/bb1.jpg','image',0),(5918,90,'/b/b/bb2.jpg','image',0),(5919,90,'/b/b/bb3.jpg','image',0),(5920,90,'/i/m/image_31250794_20_970x1182_0_1_2.jpg','image',0),(5921,90,'/i/m/image_31250794_20_970x1182_1_1_2.jpg','image',0),(5922,90,'/i/m/image_31250794_20_970x1182_3_1_2.jpg','image',0),(5923,90,'/i/m/image_31250794_20_970x1182_2_1_2.jpg','image',0),(5924,90,'/i/m/image_31250794_20_970x1182_0_1_2_1.jpg','image',0),(5925,90,'/i/m/image_31250794_20_970x1182_1_1_2_1.jpg','image',0),(5926,90,'/i/m/image_31250794_20_970x1182_3_1_2_1.jpg','image',0),(5927,90,'/i/m/image_31250794_20_970x1182_2_1_2_1.jpg','image',0),(5928,90,'/i/m/image_31250794_20_970x1182_0_1_3.jpg','image',0),(5929,90,'/i/m/image_31250794_20_970x1182_1_1_3.jpg','image',0),(5930,90,'/i/m/image_31250794_20_970x1182_3_1_3.jpg','image',0),(5931,90,'/i/m/image_31250794_20_970x1182_2_1_3.jpg','image',0),(5932,90,'/5/6/567yhthyh_3_1.jpg','image',0),(5933,90,'/3/4/34rf4f4f_3_1.jpg','image',0),(5934,90,'/3/4/3434rr_3_1.jpg','image',0),(5935,90,'/4/6/46yht5t_3_1.jpg','image',0),(5936,90,'/5/6/567yhthyh_3_1_1.jpg','image',0),(5937,90,'/3/4/34rf4f4f_3_1_1.jpg','image',0),(5938,90,'/3/4/3434rr_3_1_1.jpg','image',0),(5939,90,'/4/6/46yht5t_3_1_1.jpg','image',0),(5940,90,'/5/6/567yhthyh_3_2.jpg','image',0),(5941,90,'/3/4/34rf4f4f_3_2.jpg','image',0),(5942,90,'/3/4/3434rr_3_2.jpg','image',0),(5943,90,'/4/6/46yht5t_3_2.jpg','image',0),(5944,90,'/3/2/32e2e2e2e2e_3_1.jpg','image',0),(5945,90,'/3/4/343f4r4t_3_1.jpg','image',0),(5946,90,'/6/y/6y6yg44r_3_1.jpg','image',0),(5947,90,'/5/6/566y5y5t5t_3_1.jpg','image',0),(5948,90,'/3/2/32e2e2e2e2e_3_1_1.jpg','image',0),(5949,90,'/3/4/343f4r4t_3_1_1.jpg','image',0),(5950,90,'/6/y/6y6yg44r_3_1_1.jpg','image',0),(5951,90,'/5/6/566y5y5t5t_3_1_1.jpg','image',0),(5952,90,'/3/2/32e2e2e2e2e_3_2.jpg','image',0),(5953,90,'/3/4/343f4r4t_3_2.jpg','image',0),(5954,90,'/6/y/6y6yg44r_3_2.jpg','image',0),(5955,90,'/5/6/566y5y5t5t_3_2.jpg','image',0),(5956,90,'/i/m/image_31250794_20_970x1182_0_1_1_1.jpg','image',0),(5957,90,'/i/m/image_31250794_20_970x1182_1_1_1_1.jpg','image',0),(5958,90,'/i/m/image_31250794_20_970x1182_2_1_1_1.jpg','image',0),(5959,90,'/i/m/image_31250794_20_970x1182_3_1_1_1.jpg','image',0),(5960,90,'/r/1/r1_8.jpg','image',0),(5961,90,'/r/2/r2_8.jpg','image',0),(5962,90,'/r/3/r3_8.jpg','image',0),(5963,90,'/r/1/r1_8_1.jpg','image',0),(5964,90,'/r/2/r2_8_1.jpg','image',0),(5965,90,'/r/3/r3_8_1.jpg','image',0),(5966,90,'/r/1/r1_8_2.jpg','image',0),(5967,90,'/r/2/r2_8_2.jpg','image',0),(5968,90,'/r/3/r3_8_2.jpg','image',0),(5969,90,'/r/1/r1_8_3.jpg','image',0),(5970,90,'/r/2/r2_8_3.jpg','image',0),(5971,90,'/r/3/r3_8_3.jpg','image',0),(5972,90,'/w/1/w1_8_1.jpg','image',0),(5973,90,'/w/2/w2_8_1.jpg','image',0),(5974,90,'/w/3/w3_8_1.jpg','image',0),(5975,90,'/w/1/w1_8_1_1.jpg','image',0),(5976,90,'/w/2/w2_8_1_1.jpg','image',0),(5977,90,'/w/3/w3_8_1_1.jpg','image',0),(5978,90,'/w/1/w1_8_2.jpg','image',0),(5979,90,'/w/2/w2_8_2.jpg','image',0),(5980,90,'/w/3/w3_8_2.jpg','image',0),(5981,90,'/w/1/w1_8_3.jpg','image',0),(5982,90,'/w/2/w2_8_3.jpg','image',0),(5983,90,'/w/3/w3_8_3.jpg','image',0),(5984,90,'/b/1/b1_12.jpg','image',0),(5985,90,'/b/2/b2_12.jpg','image',0),(5986,90,'/b/3/b3_12.jpg','image',0),(5987,90,'/b/1/b1_12_1.jpg','image',0),(5988,90,'/b/2/b2_12_1.jpg','image',0),(5989,90,'/b/3/b3_12_1.jpg','image',0),(5990,90,'/b/1/b1_12_2.jpg','image',0),(5991,90,'/b/2/b2_12_2.jpg','image',0),(5992,90,'/b/3/b3_12_2.jpg','image',0),(5993,90,'/b/1/b1_12_3.jpg','image',0),(5994,90,'/b/2/b2_12_3.jpg','image',0),(5995,90,'/b/3/b3_12_3.jpg','image',0),(5996,90,'/b/b/bb1_1.jpg','image',0),(5997,90,'/b/b/bb2_1.jpg','image',0),(5998,90,'/b/b/bb3_1.jpg','image',0),(5999,90,'/b/b/bb1_1_1.jpg','image',0),(6000,90,'/b/b/bb2_1_1.jpg','image',0),(6001,90,'/b/b/bb3_1_1.jpg','image',0),(6002,90,'/b/b/bb1_1_2.jpg','image',0),(6003,90,'/b/b/bb2_1_2.jpg','image',0),(6004,90,'/b/b/bb3_1_2.jpg','image',0),(6005,90,'/b/b/bb1_1_3.jpg','image',0),(6006,90,'/b/b/bb2_1_3.jpg','image',0),(6007,90,'/b/b/bb3_1_3.jpg','image',0),(6008,90,'/d/1/d1_5_2.jpg','image',0),(6009,90,'/d/2/d2_5_2.jpg','image',0),(6010,90,'/d/3/d3_5_2.jpg','image',0),(6011,90,'/d/1/d1_5_1_1.jpg','image',0),(6012,90,'/d/2/d2_5_1_1.jpg','image',0),(6013,90,'/d/3/d3_5_1_1.jpg','image',0),(6014,90,'/d/1/d1_5_2_1.jpg','image',0),(6015,90,'/d/2/d2_5_2_1.jpg','image',0),(6016,90,'/d/3/d3_5_2_1.jpg','image',0),(6017,90,'/d/1/d1_5_3.jpg','image',0),(6018,90,'/d/2/d2_5_3.jpg','image',0),(6019,90,'/d/3/d3_5_3.jpg','image',0),(6020,90,'/d/d/dd1.jpg','image',0),(6021,90,'/d/d/dd2.jpg','image',0),(6022,90,'/d/d/ddd3.jpg','image',0),(6023,90,'/w/1/w1_9.jpg','image',0),(6024,90,'/w/2/w2_9.jpg','image',0),(6025,90,'/w/3/w3_9.jpg','image',0),(6026,90,'/w/4/w4_3_2.jpg','image',0),(6027,90,'/r/1/r1_9.jpg','image',0),(6028,90,'/r/2/r2_9.jpg','image',0),(6029,90,'/r/3/r3_9.jpg','image',0),(6030,90,'/r/4/r4_4.jpg','image',0),(6031,90,'/d/1/d1_6_1.jpg','image',0),(6032,90,'/d/2/d2_6_1.jpg','image',0),(6033,90,'/d/3/d3_6_1.jpg','image',0),(6034,90,'/d/4/d4_3_1.jpg','image',0),(6035,90,'/1/_/1_9.jpg','image',0),(6036,90,'/2/_/2_9.jpg','image',0),(6037,90,'/3/_/3_9.jpg','image',0),(6038,90,'/4/_/4_3.jpg','image',0),(6039,90,'/g/1/g1_6.jpg','image',0),(6040,90,'/g/2/g2_6.jpg','image',0),(6041,90,'/g/3/g3_6.jpg','image',0),(6042,90,'/g/4/g4_3.jpg','image',0),(6043,90,'/w/1/w1_9_1.jpg','image',0),(6044,90,'/w/2/w2_9_1.jpg','image',0),(6045,90,'/w/3/w3_9_1.jpg','image',0),(6046,90,'/w/4/w4_3_1_1.jpg','image',0),(6047,90,'/r/1/r1_9_1.jpg','image',0),(6048,90,'/r/2/r2_9_1.jpg','image',0),(6049,90,'/r/3/r3_9_1.jpg','image',0),(6050,90,'/r/4/r4_4_1.jpg','image',0),(6051,90,'/d/1/d1_6_1_1.jpg','image',0),(6052,90,'/d/2/d2_6_1_1.jpg','image',0),(6053,90,'/d/3/d3_6_1_1.jpg','image',0),(6054,90,'/d/4/d4_3_1_1.jpg','image',0),(6055,90,'/1/_/1_9_1.jpg','image',0),(6056,90,'/2/_/2_9_1.jpg','image',0),(6057,90,'/3/_/3_9_1.jpg','image',0),(6058,90,'/4/_/4_3_1.jpg','image',0),(6059,90,'/g/1/g1_6_1.jpg','image',0),(6060,90,'/g/2/g2_6_1.jpg','image',0),(6061,90,'/g/3/g3_6_1.jpg','image',0),(6062,90,'/g/4/g4_3_1.jpg','image',0),(6063,90,'/w/1/w1_9_2.jpg','image',0),(6064,90,'/w/2/w2_9_2.jpg','image',0),(6065,90,'/w/3/w3_9_2.jpg','image',0),(6066,90,'/w/4/w4_3_2_1.jpg','image',0),(6067,90,'/r/1/r1_9_2.jpg','image',0),(6068,90,'/r/2/r2_9_2.jpg','image',0),(6069,90,'/r/3/r3_9_2.jpg','image',0),(6070,90,'/r/4/r4_4_2.jpg','image',0),(6071,90,'/d/1/d1_6_2.jpg','image',0),(6072,90,'/d/2/d2_6_2.jpg','image',0),(6073,90,'/d/3/d3_6_2.jpg','image',0),(6074,90,'/d/4/d4_3_2.jpg','image',0),(6075,90,'/1/_/1_9_2.jpg','image',0),(6076,90,'/2/_/2_9_2.jpg','image',0),(6077,90,'/3/_/3_9_2.jpg','image',0),(6078,90,'/4/_/4_3_2.jpg','image',0),(6079,90,'/g/1/g1_6_2.jpg','image',0),(6080,90,'/g/2/g2_6_2.jpg','image',0),(6081,90,'/g/3/g3_6_2.jpg','image',0),(6082,90,'/g/4/g4_3_2.jpg','image',0),(6083,90,'/w/1/w1_9_3.jpg','image',0),(6084,90,'/w/2/w2_9_3.jpg','image',0),(6085,90,'/w/3/w3_9_3.jpg','image',0),(6086,90,'/w/4/w4_3_3.jpg','image',0),(6087,90,'/r/1/r1_9_3.jpg','image',0),(6088,90,'/r/2/r2_9_3.jpg','image',0),(6089,90,'/r/3/r3_9_3.jpg','image',0),(6090,90,'/r/4/r4_4_3.jpg','image',0),(6091,90,'/d/1/d1_6_3.jpg','image',0),(6092,90,'/d/2/d2_6_3.jpg','image',0),(6093,90,'/d/3/d3_6_3.jpg','image',0),(6094,90,'/d/4/d4_3_3.jpg','image',0),(6095,90,'/1/_/1_9_3.jpg','image',0),(6096,90,'/2/_/2_9_3.jpg','image',0),(6097,90,'/3/_/3_9_3.jpg','image',0),(6098,90,'/4/_/4_3_3.jpg','image',0),(6099,90,'/g/1/g1_6_3.jpg','image',0),(6100,90,'/g/2/g2_6_3.jpg','image',0),(6101,90,'/g/3/g3_6_3.jpg','image',0),(6102,90,'/g/4/g4_3_3.jpg','image',0),(6103,90,'/b/1/b1_13.jpg','image',0),(6104,90,'/b/2/b2_13.jpg','image',0),(6105,90,'/b/3/b3_13.jpg','image',0),(6106,90,'/b/4/b4_5.jpg','image',0),(6107,90,'/3/3/33e3222_3_1.jpg','image',0),(6108,90,'/2/w/2w1122112_3_1.jpg','image',0),(6109,90,'/5/t/5t5t4333_3_1.jpg','image',0),(6110,90,'/3/3/33e3222_3_1_1.jpg','image',0),(6111,90,'/2/w/2w1122112_3_1_1.jpg','image',0),(6112,90,'/5/t/5t5t4333_3_1_1.jpg','image',0),(6113,90,'/3/3/33e3222_3_2.jpg','image',0),(6114,90,'/2/w/2w1122112_3_2.jpg','image',0),(6115,90,'/5/t/5t5t4333_3_2.jpg','image',0),(6116,90,'/m/a/main_5_3_1_2.jpg','image',0),(6117,90,'/i/m/image_31324632_33_620x757_3_1_2.jpg','image',0),(6118,90,'/i/m/image_31324632_33_620x757_2_1_2.jpg','image',0),(6119,90,'/m/a/main_5_3_1_2_1.jpg','image',0),(6120,90,'/i/m/image_31324632_33_620x757_3_1_2_1.jpg','image',0),(6121,90,'/i/m/image_31324632_33_620x757_2_1_2_1.jpg','image',0),(6122,90,'/m/a/main_5_3_1_3.jpg','image',0),(6123,90,'/i/m/image_31324632_33_620x757_3_1_3.jpg','image',0),(6124,90,'/i/m/image_31324632_33_620x757_2_1_3.jpg','image',0),(6125,90,'/2/w/2w2w2wss_3_1.jpg','image',0),(6126,90,'/2/w/2w33211_3_1.jpg','image',0),(6127,90,'/2/2/223eeedd_3_1.jpg','image',0),(6128,90,'/2/w/2w2w2wss_3_1_1.jpg','image',0),(6129,90,'/2/w/2w33211_3_1_1.jpg','image',0),(6130,90,'/2/2/223eeedd_3_1_1.jpg','image',0),(6131,90,'/2/w/2w2w2wss_3_2.jpg','image',0),(6132,90,'/2/w/2w33211_3_2.jpg','image',0),(6133,90,'/2/2/223eeedd_3_2.jpg','image',0),(6134,90,'/m/a/main_5_3_1_1_1.jpg','image',0),(6135,90,'/i/m/image_31324632_33_620x757_2_1_1_1.jpg','image',0),(6136,90,'/i/m/image_31324632_33_620x757_3_1_1_1.jpg','image',0),(6137,90,'/r/1/r1_10.jpg','image',0),(6138,90,'/r/2/r2_10.jpg','image',0),(6139,90,'/r/3/r3_10.jpg','image',0),(6140,90,'/r/1/r1_10_1.jpg','image',0),(6141,90,'/r/2/r2_10_1.jpg','image',0),(6142,90,'/r/3/r3_10_1.jpg','image',0),(6143,90,'/r/1/r1_10_2.jpg','image',0),(6144,90,'/r/2/r2_10_2.jpg','image',0),(6145,90,'/r/3/r3_10_2.jpg','image',0),(6146,90,'/r/1/r1_10_3.jpg','image',0),(6147,90,'/r/2/r2_10_3.jpg','image',0),(6148,90,'/r/3/r3_10_3.jpg','image',0),(6149,90,'/w/1/w1_10.jpg','image',0),(6150,90,'/w/2/w2_10.jpg','image',0),(6151,90,'/w/3/w3_10.jpg','image',0),(6152,90,'/w/1/w1_10_1.jpg','image',0),(6153,90,'/w/2/w2_10_1.jpg','image',0),(6154,90,'/w/3/w3_10_1.jpg','image',0),(6155,90,'/w/1/w1_10_2.jpg','image',0),(6156,90,'/w/2/w2_10_2.jpg','image',0),(6157,90,'/w/3/w3_10_2.jpg','image',0),(6158,90,'/w/1/w1_10_3.jpg','image',0),(6159,90,'/w/2/w2_10_3.jpg','image',0),(6160,90,'/w/3/w3_10_3.jpg','image',0),(6161,90,'/1/_/1_10.jpg','image',0),(6162,90,'/2/_/2_10.jpg','image',0),(6163,90,'/3/_/3_10.jpg','image',0),(6164,90,'/1/_/1_10_1.jpg','image',0),(6165,90,'/2/_/2_10_1.jpg','image',0),(6166,90,'/3/_/3_10_1.jpg','image',0),(6167,90,'/1/_/1_10_2.jpg','image',0),(6168,90,'/2/_/2_10_2.jpg','image',0),(6169,90,'/3/_/3_10_2.jpg','image',0),(6170,90,'/1/_/1_10_3.jpg','image',0),(6171,90,'/2/_/2_10_3.jpg','image',0),(6172,90,'/3/_/3_10_3.jpg','image',0),(6173,90,'/b/1/b1_14.jpg','image',0),(6174,90,'/b/2/b2_14.jpg','image',0),(6175,90,'/b/3/b3_14.jpg','image',0),(6176,90,'/b/1/b1_14_1.jpg','image',0),(6177,90,'/b/2/b2_14_1.jpg','image',0),(6178,90,'/b/3/b3_14_1.jpg','image',0),(6179,90,'/b/1/b1_14_2.jpg','image',0),(6180,90,'/b/2/b2_14_2.jpg','image',0),(6181,90,'/b/3/b3_14_2.jpg','image',0),(6182,90,'/b/1/b1_14_3.jpg','image',0),(6183,90,'/b/2/b2_14_3.jpg','image',0),(6184,90,'/b/3/b3_14_3.jpg','image',0),(6185,90,'/g/1/g1_7.jpg','image',0),(6186,90,'/g/2/g2_7.jpg','image',0),(6187,90,'/g/3/g3_7.jpg','image',0),(6188,90,'/g/1/g1_7_1.jpg','image',0),(6189,90,'/g/2/g2_7_1.jpg','image',0),(6190,90,'/g/3/g3_7_1.jpg','image',0),(6191,90,'/g/1/g1_7_2.jpg','image',0),(6192,90,'/g/2/g2_7_2.jpg','image',0),(6193,90,'/g/3/g3_7_2.jpg','image',0),(6194,90,'/g/1/g1_7_3.jpg','image',0),(6195,90,'/g/2/g2_7_3.jpg','image',0),(6196,90,'/g/3/g3_7_3.jpg','image',0),(6197,90,'/2/e/2e2ewwwww_4.jpg','image',0),(6198,90,'/4/4/44r3r3r3r_4.jpg','image',0),(6199,90,'/3/e/3e34r4r_4.jpg','image',0),(6200,90,'/5/y/5y6y6y6y_4.jpg','image',0),(6201,90,'/2/e/2e2ewwwww_1_1.jpg','image',0),(6202,90,'/4/4/44r3r3r3r_1_1.jpg','image',0),(6203,90,'/3/e/3e34r4r_1_1.jpg','image',0),(6204,90,'/5/y/5y6y6y6y_1_1.jpg','image',0),(6205,90,'/2/e/2e2ewwwww_2_1.jpg','image',0),(6206,90,'/4/4/44r3r3r3r_2_1.jpg','image',0),(6207,90,'/3/e/3e34r4r_2_1.jpg','image',0),(6208,90,'/5/y/5y6y6y6y_2_1.jpg','image',0),(6209,90,'/2/e/2e2ewwwww_3_1.jpg','image',0),(6210,90,'/4/4/44r3r3r3r_3_1.jpg','image',0),(6211,90,'/3/e/3e34r4r_3_1.jpg','image',0),(6212,90,'/5/y/5y6y6y6y_3_1.jpg','image',0),(6213,90,'/9/8/98kkjj_1_3_2.jpg','image',0),(6214,90,'/3/e/3e3e3e3e3er4_4.jpg','image',0),(6215,90,'/3/e/3er44r4r_4.jpg','image',0),(6216,90,'/3/e/3e3e3e_4.jpg','image',0),(6217,90,'/9/8/98kkjj_1_3_2_1.jpg','image',0),(6218,90,'/3/e/3e3e3e3e3er4_2_1.jpg','image',0),(6219,90,'/3/e/3er44r4r_2_1.jpg','image',0),(6220,90,'/3/e/3e3e3e_2_1.jpg','image',0),(6221,90,'/9/8/98kkjj_1_3_3.jpg','image',0),(6222,90,'/3/e/3e3e3e3e3er4_3_1.jpg','image',0),(6223,90,'/3/e/3er44r4r_3_1.jpg','image',0),(6224,90,'/3/e/3e3e3e_3_1.jpg','image',0),(6225,90,'/9/8/98kkjj_1_3_4.jpg','image',0),(6226,90,'/3/e/3e3e3e3e3er4_4_1.jpg','image',0),(6227,90,'/3/e/3er44r4r_4_1.jpg','image',0),(6228,90,'/3/e/3e3e3e_4_1.jpg','image',0),(6229,90,'/9/8/98kkjj_1_3_1_1.jpg','image',0),(6230,90,'/3/e/3e3e3e3e3er4_1_1.jpg','image',0),(6231,90,'/3/e/3er44r4r_1_1.jpg','image',0),(6232,90,'/3/e/3e3e3e_1_1.jpg','image',0),(6233,90,'/b/b/bb1_2.jpg','image',0),(6234,90,'/b/b/bb2_2.jpg','image',0),(6235,90,'/b/b/bb3_2.jpg','image',0),(6236,90,'/w/1/w1_11.jpg','image',0),(6237,90,'/w/2/w2_11.jpg','image',0),(6238,90,'/w/3/w3_11.jpg','image',0),(6239,90,'/1/_/1_11.jpg','image',0),(6240,90,'/2/_/2_11.jpg','image',0),(6241,90,'/3/_/3_11.jpg','image',0),(6242,90,'/b/1/b1_15.jpg','image',0),(6243,90,'/b/2/b2_15.jpg','image',0),(6244,90,'/b/3/b3_15.jpg','image',0),(6245,90,'/r/1/r1_11.jpg','image',0),(6246,90,'/r/2/r2_11.jpg','image',0),(6247,90,'/r/3/r3_11.jpg','image',0),(6248,90,'/b/b/bb1_2_1.jpg','image',0),(6249,90,'/b/b/bb2_2_1.jpg','image',0),(6250,90,'/b/b/bb3_2_1.jpg','image',0),(6251,90,'/w/1/w1_11_1.jpg','image',0),(6252,90,'/w/2/w2_11_1.jpg','image',0),(6253,90,'/w/3/w3_11_1.jpg','image',0),(6254,90,'/1/_/1_11_1.jpg','image',0),(6255,90,'/2/_/2_11_1.jpg','image',0),(6256,90,'/3/_/3_11_1.jpg','image',0),(6257,90,'/b/1/b1_15_1.jpg','image',0),(6258,90,'/b/2/b2_15_1.jpg','image',0),(6259,90,'/b/3/b3_15_1.jpg','image',0),(6260,90,'/r/1/r1_11_1.jpg','image',0),(6261,90,'/r/2/r2_11_1.jpg','image',0),(6262,90,'/r/3/r3_11_1.jpg','image',0),(6263,90,'/b/b/bb1_2_2.jpg','image',0),(6264,90,'/b/b/bb2_2_2.jpg','image',0),(6265,90,'/b/b/bb3_2_2.jpg','image',0),(6266,90,'/w/1/w1_11_2.jpg','image',0),(6267,90,'/w/2/w2_11_2.jpg','image',0),(6268,90,'/w/3/w3_11_2.jpg','image',0),(6269,90,'/1/_/1_11_2.jpg','image',0),(6270,90,'/2/_/2_11_2.jpg','image',0),(6271,90,'/3/_/3_11_2.jpg','image',0),(6272,90,'/b/1/b1_15_2.jpg','image',0),(6273,90,'/b/2/b2_15_2.jpg','image',0),(6274,90,'/b/3/b3_15_2.jpg','image',0),(6275,90,'/r/1/r1_11_2.jpg','image',0),(6276,90,'/r/2/r2_11_2.jpg','image',0),(6277,90,'/r/3/r3_11_2.jpg','image',0),(6278,90,'/g/1/g1_copy_.jpg','image',0),(6279,90,'/g/2/g2_copy_.jpg','image',0),(6280,90,'/g/3/g3_copy_.jpg','image',0),(6281,90,'/1/w/1w1w1w1w_3.jpg','image',0),(6282,90,'/4/r/4r4r5t5t_3.jpg','image',0),(6283,90,'/2/e/2e3e3r4r_3.jpg','image',0),(6284,90,'/1/w/1w1w1w1w_2_1.jpg','image',0),(6285,90,'/4/r/4r4r5t5t_2_1.jpg','image',0),(6286,90,'/2/e/2e3e3r4r_2_1.jpg','image',0),(6287,90,'/1/w/1w1w1w1w_3_1.jpg','image',0),(6288,90,'/4/r/4r4r5t5t_3_1.jpg','image',0),(6289,90,'/2/e/2e3e3r4r_3_1.jpg','image',0),(6290,90,'/9/8/98kkjj_1_4.jpg','image',0),(6291,90,'/3/e/3e3er5t5t_3.jpg','image',0),(6292,90,'/4/r/4r4r4r_3.jpg','image',0),(6293,90,'/9/8/98kkjj_1_1_2.jpg','image',0),(6294,90,'/3/e/3e3er5t5t_1_1.jpg','image',0),(6295,90,'/4/r/4r4r4r_1_1.jpg','image',0),(6296,90,'/9/8/98kkjj_1_2_2.jpg','image',0),(6297,90,'/3/e/3e3er5t5t_2_1.jpg','image',0),(6298,90,'/4/r/4r4r4r_2_1.jpg','image',0),(6299,90,'/1/w/1w1w1w1w_1_1.jpg','image',0),(6300,90,'/2/e/2e3e3r4r_1_1.jpg','image',0),(6301,90,'/4/r/4r4r5t5t_1_1.jpg','image',0),(6302,90,'/b/1/b1_17.jpg','image',0),(6303,90,'/b/2/b2_17.jpg','image',0),(6304,90,'/b/3/b3_17.jpg','image',0),(6305,90,'/b/1/b1_17_1.jpg','image',0),(6306,90,'/b/2/b2_17_1.jpg','image',0),(6307,90,'/b/3/b3_17_1.jpg','image',0),(6308,90,'/b/1/b1_17_2.jpg','image',0),(6309,90,'/b/2/b2_17_2.jpg','image',0),(6310,90,'/b/3/b3_17_2.jpg','image',0),(6311,90,'/b/1/b1_17_3.jpg','image',0),(6312,90,'/b/2/b2_17_3.jpg','image',0),(6313,90,'/b/3/b3_17_3.jpg','image',0),(6314,90,'/b/1/b1_17_4.jpg','image',0),(6315,90,'/b/2/b2_17_4.jpg','image',0),(6316,90,'/b/3/b3_17_4.jpg','image',0),(6317,90,'/w/1/w1_13.jpg','image',0),(6318,90,'/w/2/w2_13.jpg','image',0),(6319,90,'/w/3/w3_13.jpg','image',0),(6320,90,'/w/1/w1_13_1.jpg','image',0),(6321,90,'/w/2/w2_13_1.jpg','image',0),(6322,90,'/w/3/w3_13_1.jpg','image',0),(6323,90,'/w/1/w1_13_2.jpg','image',0),(6324,90,'/w/2/w2_13_2.jpg','image',0),(6325,90,'/w/3/w3_13_2.jpg','image',0),(6326,90,'/w/1/w1_13_3.jpg','image',0),(6327,90,'/w/2/w2_13_3.jpg','image',0),(6328,90,'/w/3/w3_13_3.jpg','image',0),(6329,90,'/w/1/w1_13_4.jpg','image',0),(6330,90,'/w/2/w2_13_4.jpg','image',0),(6331,90,'/w/3/w3_13_4.jpg','image',0),(6332,90,'/g/1/g1_10.jpg','image',0),(6333,90,'/g/2/g2_10.jpg','image',0),(6334,90,'/g/3/g3_10.jpg','image',0),(6335,90,'/g/1/g1_10_1.jpg','image',0),(6336,90,'/g/2/g2_10_1.jpg','image',0),(6337,90,'/g/3/g3_10_1.jpg','image',0),(6338,90,'/g/1/g1_10_2.jpg','image',0),(6339,90,'/g/2/g2_10_2.jpg','image',0),(6340,90,'/g/3/g3_10_2.jpg','image',0),(6341,90,'/g/1/g1_10_3.jpg','image',0),(6342,90,'/g/2/g2_10_3.jpg','image',0),(6343,90,'/g/3/g3_10_3.jpg','image',0),(6344,90,'/g/1/g1_10_4.jpg','image',0),(6345,90,'/g/2/g2_10_4.jpg','image',0),(6346,90,'/g/3/g3_10_4.jpg','image',0),(6347,90,'/1/_/1_13.jpg','image',0),(6348,90,'/2/_/2_13.jpg','image',0),(6349,90,'/3/_/3_13.jpg','image',0),(6350,90,'/1/_/1_13_1.jpg','image',0),(6351,90,'/2/_/2_13_1.jpg','image',0),(6352,90,'/3/_/3_13_1.jpg','image',0),(6353,90,'/1/_/1_13_2.jpg','image',0),(6354,90,'/2/_/2_13_2.jpg','image',0),(6355,90,'/3/_/3_13_2.jpg','image',0),(6356,90,'/1/_/1_13_3.jpg','image',0),(6357,90,'/2/_/2_13_3.jpg','image',0),(6358,90,'/3/_/3_13_3.jpg','image',0),(6359,90,'/1/_/1_13_4.jpg','image',0),(6360,90,'/2/_/2_13_4.jpg','image',0),(6361,90,'/3/_/3_13_4.jpg','image',0),(6362,90,'/r/1/r1_12.jpg','image',0),(6363,90,'/r/2/r2_12.jpg','image',0),(6364,90,'/r/3/r3_12.jpg','image',0),(6365,90,'/r/1/r1_12_1.jpg','image',0),(6366,90,'/r/2/r2_12_1.jpg','image',0),(6367,90,'/r/3/r3_12_1.jpg','image',0),(6368,90,'/r/1/r1_12_2.jpg','image',0),(6369,90,'/r/2/r2_12_2.jpg','image',0),(6370,90,'/r/3/r3_12_2.jpg','image',0),(6371,90,'/r/1/r1_12_3.jpg','image',0),(6372,90,'/r/2/r2_12_3.jpg','image',0),(6373,90,'/r/3/r3_12_3.jpg','image',0),(6374,90,'/r/1/r1_12_4.jpg','image',0),(6375,90,'/r/2/r2_12_4.jpg','image',0),(6376,90,'/r/3/r3_12_4.jpg','image',0),(6377,90,'/r/1/r1_13.jpg','image',0),(6378,90,'/r/2/r2_13.jpg','image',0),(6379,90,'/r/3/r3_13.jpg','image',0),(6380,90,'/2/1/21245tt45t_4.jpg','image',0),(6381,90,'/2/3/23f4f4f4f_4.jpg','image',0),(6382,90,'/2/3/232e3e3e3e_4.jpg','image',0),(6383,90,'/3/4/3434rr4r_4.jpg','image',0),(6384,90,'/2/1/21245tt45t_2_1.jpg','image',0),(6385,90,'/2/3/23f4f4f4f_2_1.jpg','image',0),(6386,90,'/2/3/232e3e3e3e_2_1.jpg','image',0),(6387,90,'/3/4/3434rr4r_2_1.jpg','image',0),(6388,90,'/2/1/21245tt45t_3_1.jpg','image',0),(6389,90,'/2/3/23f4f4f4f_3_1.jpg','image',0),(6390,90,'/2/3/232e3e3e3e_3_1.jpg','image',0),(6391,90,'/3/4/3434rr4r_3_1.jpg','image',0),(6392,90,'/2/1/21245tt45t_4_1.jpg','image',0),(6393,90,'/2/3/23f4f4f4f_4_1.jpg','image',0),(6394,90,'/2/3/232e3e3e3e_4_1.jpg','image',0),(6395,90,'/3/4/3434rr4r_4_1.jpg','image',0),(6396,90,'/4/5/45465tggg_4.jpg','image',0),(6397,90,'/2/w/2w2w2w2w_4.jpg','image',0),(6398,90,'/2/w/2w2w2w_4.jpg','image',0),(6399,90,'/3/3/33e3e3e_4.jpg','image',0),(6400,90,'/4/5/45465tggg_1_1.jpg','image',0),(6401,90,'/2/w/2w2w2w2w_1_1.jpg','image',0),(6402,90,'/2/w/2w2w2w_1_1.jpg','image',0),(6403,90,'/3/3/33e3e3e_1_1.jpg','image',0),(6404,90,'/4/5/45465tggg_2_1.jpg','image',0),(6405,90,'/2/w/2w2w2w2w_2_1.jpg','image',0),(6406,90,'/2/w/2w2w2w_2_1.jpg','image',0),(6407,90,'/3/3/33e3e3e_2_1.jpg','image',0),(6408,90,'/4/5/45465tggg_3_1.jpg','image',0),(6409,90,'/2/w/2w2w2w2w_3_1.jpg','image',0),(6410,90,'/2/w/2w2w2w_3_1.jpg','image',0),(6411,90,'/3/3/33e3e3e_3_1.jpg','image',0),(6412,90,'/2/1/21245tt45t_1_1.jpg','image',0),(6413,90,'/2/3/23f4f4f4f_1_1.jpg','image',0),(6414,90,'/3/4/3434rr4r_1_1.jpg','image',0),(6415,90,'/2/3/232e3e3e3e_1_1.jpg','image',0),(6416,90,'/d/1/d1_7_1.jpg','image',0),(6417,90,'/d/2/d2_7_1.jpg','image',0),(6418,90,'/d/3/d3_7_1.jpg','image',0),(6419,90,'/d/4/d4_4_1.jpg','image',0),(6420,90,'/b/1/b1_18.jpg','image',0),(6421,90,'/b/2/b2_18.jpg','image',0),(6422,90,'/b/3/b3_18.jpg','image',0),(6423,90,'/b/4/b4_6.jpg','image',0),(6424,90,'/g/1/g1_11.jpg','image',0),(6425,90,'/g/2/g2_11.jpg','image',0),(6426,90,'/g/3/g3_11.jpg','image',0),(6427,90,'/g/4/g4_4.jpg','image',0),(6428,90,'/d/1/d1_7_1_1.jpg','image',0),(6429,90,'/d/2/d2_7_1_1.jpg','image',0),(6430,90,'/d/3/d3_7_1_1.jpg','image',0),(6431,90,'/d/4/d4_4_1_1.jpg','image',0),(6432,90,'/b/1/b1_18_1.jpg','image',0),(6433,90,'/b/2/b2_18_1.jpg','image',0),(6434,90,'/b/3/b3_18_1.jpg','image',0),(6435,90,'/b/4/b4_6_1.jpg','image',0),(6436,90,'/g/1/g1_11_1.jpg','image',0),(6437,90,'/g/2/g2_11_1.jpg','image',0),(6438,90,'/g/3/g3_11_1.jpg','image',0),(6439,90,'/g/4/g4_4_1.jpg','image',0),(6440,90,'/d/1/d1_7_2.jpg','image',0),(6441,90,'/d/2/d2_7_2.jpg','image',0),(6442,90,'/d/3/d3_7_2.jpg','image',0),(6443,90,'/d/4/d4_4_2.jpg','image',0),(6444,90,'/b/1/b1_18_2.jpg','image',0),(6445,90,'/b/2/b2_18_2.jpg','image',0),(6446,90,'/b/3/b3_18_2.jpg','image',0),(6447,90,'/b/4/b4_6_2.jpg','image',0),(6448,90,'/g/1/g1_11_2.jpg','image',0),(6449,90,'/g/2/g2_11_2.jpg','image',0),(6450,90,'/g/3/g3_11_2.jpg','image',0),(6451,90,'/g/4/g4_4_2.jpg','image',0),(6452,90,'/d/1/d1_7_3.jpg','image',0),(6453,90,'/d/2/d2_7_3.jpg','image',0),(6454,90,'/d/3/d3_7_3.jpg','image',0),(6455,90,'/d/4/d4_4_3.jpg','image',0),(6456,90,'/b/1/b1_18_3.jpg','image',0),(6457,90,'/b/2/b2_18_3.jpg','image',0),(6458,90,'/b/3/b3_18_3.jpg','image',0),(6459,90,'/b/4/b4_6_3.jpg','image',0),(6460,90,'/g/1/g1_11_3.jpg','image',0),(6461,90,'/g/2/g2_11_3.jpg','image',0),(6462,90,'/g/3/g3_11_3.jpg','image',0),(6463,90,'/g/4/g4_4_3.jpg','image',0),(6464,90,'/w/1/w1_14.jpg','image',0),(6465,90,'/w/2/w2_14.jpg','image',0),(6466,90,'/w/3/w3_14.jpg','image',0),(6467,90,'/w/4/w4_4_2.jpg','image',0),(6468,90,'/1/_/1_14.jpg','image',0),(6469,90,'/2/_/2_14.jpg','image',0),(6470,90,'/3/_/3_14.jpg','image',0),(6471,90,'/1/_/1_14_1.jpg','image',0),(6472,90,'/2/_/2_14_1.jpg','image',0),(6473,90,'/3/_/3_14_1.jpg','image',0),(6474,90,'/1/_/1_14_2.jpg','image',0),(6475,90,'/2/_/2_14_2.jpg','image',0),(6476,90,'/3/_/3_14_2.jpg','image',0),(6477,90,'/1/_/1_15.jpg','image',0),(6478,90,'/2/_/2_15.jpg','image',0),(6479,90,'/3/_/3_15.jpg','image',0),(6480,90,'/1/_/1_16.jpg','image',0),(6481,90,'/2/_/2_16.jpg','image',0),(6482,90,'/3/_/3_16.jpg','image',0),(6483,90,'/1/_/1_16_1.jpg','image',0),(6484,90,'/2/_/2_16_1.jpg','image',0),(6485,90,'/3/_/3_16_1.jpg','image',0),(6486,90,'/1/_/1_16_2.jpg','image',0),(6487,90,'/2/_/2_16_2.jpg','image',0),(6488,90,'/3/_/3_16_2.jpg','image',0),(6489,90,'/3/_/3_17.jpg','image',0),(6490,90,'/2/_/2_17.jpg','image',0),(6491,90,'/1/_/1_17.jpg','image',0),(6492,90,'/1/2/12w222_3.jpg','image',0),(6493,90,'/3/g/3g5g567_3.jpg','image',0),(6494,90,'/3/e/3er444r_3.jpg','image',0),(6495,90,'/1/2/12w222_1_1.jpg','image',0),(6496,90,'/3/g/3g5g567_1_1.jpg','image',0),(6497,90,'/3/e/3er444r_1_1.jpg','image',0),(6498,90,'/1/2/12w222_2_1.jpg','image',0),(6499,90,'/3/g/3g5g567_2_1.jpg','image',0),(6500,90,'/3/e/3er444r_2_1.jpg','image',0),(6501,90,'/3/r/3rr44_3.jpg','image',0),(6502,90,'/3/2/324ffde_3.jpg','image',0),(6503,90,'/3/5/354dddd_3.jpg','image',0),(6504,90,'/3/r/3rr44_2_1.jpg','image',0),(6505,90,'/3/2/324ffde_2_1.jpg','image',0),(6506,90,'/3/5/354dddd_2_1.jpg','image',0),(6507,90,'/3/r/3rr44_3_1.jpg','image',0),(6508,90,'/3/2/324ffde_3_1.jpg','image',0),(6509,90,'/3/5/354dddd_3_1.jpg','image',0),(6510,90,'/3/r/3rr44_1_1.jpg','image',0),(6511,90,'/3/5/354dddd_1_1.jpg','image',0),(6512,90,'/3/2/324ffde_1_1.jpg','image',0),(6513,90,'/r/1/r1_14.jpg','image',0),(6514,90,'/r/2/r2_14.jpg','image',0),(6515,90,'/r/3/r3_14.jpg','image',0),(6516,90,'/r/4/r4_6.jpg','image',0),(6517,90,'/r/1/r1_14_1.jpg','image',0),(6518,90,'/r/2/r2_14_1.jpg','image',0),(6519,90,'/r/3/r3_14_1.jpg','image',0),(6520,90,'/r/4/r4_6_1.jpg','image',0),(6521,90,'/r/1/r1_14_2.jpg','image',0),(6522,90,'/r/2/r2_14_2.jpg','image',0),(6523,90,'/r/3/r3_14_2.jpg','image',0),(6524,90,'/r/4/r4_6_2.jpg','image',0),(6525,90,'/1/_/1_18.jpg','image',0),(6526,90,'/2/_/2_18.jpg','image',0),(6527,90,'/3/_/3_18.jpg','image',0),(6528,90,'/4/_/4_5.jpg','image',0),(6529,90,'/1/_/1_18_1.jpg','image',0),(6530,90,'/2/_/2_18_1.jpg','image',0),(6531,90,'/3/_/3_18_1.jpg','image',0),(6532,90,'/4/_/4_5_1.jpg','image',0),(6533,90,'/1/_/1_18_2.jpg','image',0),(6534,90,'/2/_/2_18_2.jpg','image',0),(6535,90,'/3/_/3_18_2.jpg','image',0),(6536,90,'/4/_/4_5_2.jpg','image',0),(6537,90,'/g/1/g1_12.jpg','image',0),(6538,90,'/g/2/g2_12.jpg','image',0),(6539,90,'/g/3/g3_12.jpg','image',0),(6540,90,'/g/4/g4_5.jpg','image',0),(6541,90,'/d/1/d1_8.jpg','image',0),(6542,90,'/d/2/d2_8.jpg','image',0),(6543,90,'/d/3/d3_8.jpg','image',0),(6544,90,'/d/4/d4_5_1.jpg','image',0),(6545,90,'/d/1/d1_8_1.jpg','image',0),(6546,90,'/d/2/d2_8_1.jpg','image',0),(6547,90,'/d/3/d3_8_1.jpg','image',0),(6548,90,'/d/4/d4_5_1_1.jpg','image',0),(6549,90,'/d/1/d1_8_2.jpg','image',0),(6550,90,'/d/2/d2_8_2.jpg','image',0),(6551,90,'/d/3/d3_8_2.jpg','image',0),(6552,90,'/d/4/d4_5_2.jpg','image',0),(6553,90,'/r/1/r1_15.jpg','image',0),(6554,90,'/r/2/r2_15.jpg','image',0),(6555,90,'/r/3/r3_15.jpg','image',0),(6556,90,'/r/4/r4_7.jpg','image',0),(6557,90,'/r/1/r1_15_1.jpg','image',0),(6558,90,'/r/2/r2_15_1.jpg','image',0),(6559,90,'/r/3/r3_15_1.jpg','image',0),(6560,90,'/r/4/r4_7_1.jpg','image',0),(6561,90,'/r/1/r1_15_2.jpg','image',0),(6562,90,'/r/2/r2_15_2.jpg','image',0),(6563,90,'/r/3/r3_15_2.jpg','image',0),(6564,90,'/r/4/r4_7_2.jpg','image',0),(6565,90,'/g/1/g1_13.jpg','image',0),(6566,90,'/g/2/g2_13.jpg','image',0),(6567,90,'/g/3/g3_13.jpg','image',0),(6568,90,'/g/4/g4_6.jpg','image',0),(6569,90,'/g/1/g1_13_1.jpg','image',0),(6570,90,'/g/2/g2_13_1.jpg','image',0),(6571,90,'/g/3/g3_13_1.jpg','image',0),(6572,90,'/g/4/g4_6_1.jpg','image',0),(6573,90,'/g/1/g1_13_2.jpg','image',0),(6574,90,'/g/2/g2_13_2.jpg','image',0),(6575,90,'/g/3/g3_13_2.jpg','image',0),(6576,90,'/g/4/g4_6_2.jpg','image',0),(6577,90,'/g/1/g1_14.jpg','image',0),(6578,90,'/g/2/g2_14.jpg','image',0),(6579,90,'/g/3/g3_14.jpg','image',0),(6580,90,'/g/4/g4_7.jpg','image',0),(6581,90,'/8/7/87yygyg6g_3.jpg','image',0),(6582,90,'/4/5/4544r4t45t_3.jpg','image',0),(6583,90,'/4/5/45343ff_3.jpg','image',0),(6584,90,'/8/u/8u8u8u8_3.jpg','image',0),(6585,90,'/8/7/87yygyg6g_1_1.jpg','image',0),(6586,90,'/4/5/4544r4t45t_1_1.jpg','image',0),(6587,90,'/4/5/45343ff_1_1.jpg','image',0),(6588,90,'/8/u/8u8u8u8_1_1.jpg','image',0),(6589,90,'/8/7/87yygyg6g_2_1.jpg','image',0),(6590,90,'/4/5/4544r4t45t_2_1.jpg','image',0),(6591,90,'/4/5/45343ff_2_1.jpg','image',0),(6592,90,'/8/u/8u8u8u8_2_1.jpg','image',0),(6593,90,'/3/4/345454t56y6_3.jpg','image',0),(6594,90,'/4/5/45454t5t5_3.jpg','image',0),(6595,90,'/3/4/343rf4f5f_3.jpg','image',0),(6596,90,'/3/r/3r4r5t5ttt_3.jpg','image',0),(6597,90,'/3/4/345454t56y6_2_1.jpg','image',0),(6598,90,'/4/5/45454t5t5_2_1.jpg','image',0),(6599,90,'/3/4/343rf4f5f_2_1.jpg','image',0),(6600,90,'/3/r/3r4r5t5ttt_2_1.jpg','image',0),(6601,90,'/3/4/345454t56y6_3_1.jpg','image',0),(6602,90,'/4/5/45454t5t5_3_1.jpg','image',0),(6603,90,'/3/4/343rf4f5f_3_1.jpg','image',0),(6604,90,'/3/r/3r4r5t5ttt_3_1.jpg','image',0),(6605,90,'/3/4/345454t56y6_1_1.jpg','image',0),(6606,90,'/3/r/3r4r5t5ttt_1_1.jpg','image',0),(6607,90,'/3/4/343rf4f5f_1_1.jpg','image',0),(6608,90,'/4/5/45454t5t5_1_1.jpg','image',0),(6609,90,'/5/t/5t5t5rr4r4_1_1.jpg','image',0),(6610,90,'/3/4/345ff5_1_1.jpg','image',0),(6611,90,'/5/t/5t55f5f5f_1_1.jpg','image',0),(6612,90,'/3/e/3e3e3dcrc_1_1.jpg','image',0),(6613,90,'/4/3/433434errr_1_1.jpg','image',0),(6614,90,'/3/d/3d4e3dde_1_1.jpg','image',0),(6615,90,'/i/m/image_30947478_80_970x1182_0_1__1_1.jpg','image',0),(6616,90,'/i/m/image_30947478_80_970x1182_1_1_1_1.jpg','image',0),(6617,90,'/i/m/image_30947478_80_970x1182_4_1__1_1.jpg','image',0),(6618,90,'/5/t/5t5t5rr4r4_1_1_1.jpg','image',0),(6619,90,'/3/4/345ff5_1_1_1.jpg','image',0),(6620,90,'/5/t/5t55f5f5f_1_1_1.jpg','image',0),(6621,90,'/3/e/3e3e3dcrc_1_1_1.jpg','image',0),(6622,90,'/4/3/433434errr_1_1_1.jpg','image',0),(6623,90,'/3/d/3d4e3dde_1_1_1.jpg','image',0),(6624,90,'/i/m/image_30947478_80_970x1182_0_1__1_2.jpg','image',0),(6625,90,'/i/m/image_30947478_80_970x1182_1_1_1_2.jpg','image',0),(6626,90,'/i/m/image_30947478_80_970x1182_4_1__1_2.jpg','image',0),(6627,90,'/5/t/5t5t5rr4r4_1_2.jpg','image',0),(6628,90,'/3/4/345ff5_1_2.jpg','image',0),(6629,90,'/5/t/5t55f5f5f_1_1_2.jpg','image',0),(6630,90,'/3/e/3e3e3dcrc_1_2.jpg','image',0),(6631,90,'/4/3/433434errr_1_2.jpg','image',0),(6632,90,'/3/d/3d4e3dde_1_2.jpg','image',0),(6633,90,'/i/m/image_30947478_80_970x1182_0_1__1_3.jpg','image',0),(6634,90,'/i/m/image_30947478_80_970x1182_1_1_1_3.jpg','image',0),(6635,90,'/i/m/image_30947478_80_970x1182_4_1__1_3.jpg','image',0),(6636,90,'/5/t/5t5t5rr4r4_1_3.jpg','image',0),(6637,90,'/3/4/345ff5_1_3.jpg','image',0),(6638,90,'/5/t/5t55f5f5f_1_1_3.jpg','image',0),(6639,90,'/3/e/3e3e3dcrc_1_3.jpg','image',0),(6640,90,'/4/3/433434errr_1_3.jpg','image',0),(6641,90,'/3/d/3d4e3dde_1_3.jpg','image',0),(6642,90,'/i/m/image_30947478_80_970x1182_0_1__1_4.jpg','image',0),(6643,90,'/i/m/image_30947478_80_970x1182_1_1_1_4.jpg','image',0),(6644,90,'/i/m/image_30947478_80_970x1182_4_1__1_4.jpg','image',0),(6645,90,'/5/t/5t5t5rr4r4_1_4.jpg','image',0),(6646,90,'/3/4/345ff5_1_4.jpg','image',0),(6647,90,'/5/t/5t55f5f5f_1_1_4.jpg','image',0),(6648,90,'/3/e/3e3e3dcrc_1_4.jpg','image',0),(6649,90,'/4/3/433434errr_1_4.jpg','image',0),(6650,90,'/3/d/3d4e3dde_1_4.jpg','image',0),(6651,90,'/i/m/image_30947478_80_970x1182_0_1__1_5.jpg','image',0),(6652,90,'/i/m/image_30947478_80_970x1182_1_1_1_5.jpg','image',0),(6653,90,'/i/m/image_30947478_80_970x1182_4_1__1_5.jpg','image',0),(6654,90,'/i/m/image_30947478_80_970x1182_0_1__1_1_1.jpg','image',0),(6655,90,'/i/m/image_30947478_80_970x1182_1_1_1_1_1.jpg','image',0),(6656,90,'/i/m/image_30947478_80_970x1182_4_1__1_1_1.jpg','image',0),(6657,90,'/3/3/3343rr44_2.jpg','image',0),(6658,90,'/3/4/34444r4r_2.jpg','image',0),(6659,90,'/q/3/q3e3e3e3_2.jpg','image',0),(6660,90,'/2/2/2232e33e3e_2.jpg','image',0),(6661,90,'/3/3/3343rr44_2_1.jpg','image',0),(6662,90,'/3/4/34444r4r_2_1.jpg','image',0),(6663,90,'/q/3/q3e3e3e3_2_1.jpg','image',0),(6664,90,'/2/2/2232e33e3e_2_1.jpg','image',0),(6665,90,'/3/3/3343rr44_1_1.jpg','image',0),(6666,90,'/q/3/q3e3e3e3_1_1.jpg','image',0),(6667,90,'/2/2/2232e33e3e_1_1.jpg','image',0),(6668,90,'/3/4/34444r4r_1_1.jpg','image',0),(6669,90,'/3/4/34r4r4r4_6_2.jpg','image',0),(6670,90,'/8/7/87hhou787_6_2.jpg','image',0),(6671,90,'/2/3/2343e3d4ff_6_2.jpg','image',0),(6672,90,'/6/5/6542334rfd_6_2.jpg','image',0),(6673,90,'/3/4/34r4r4r4_6_2_1.jpg','image',0),(6674,90,'/8/7/87hhou787_6_2_1.jpg','image',0),(6675,90,'/2/3/2343e3d4ff_6_2_1.jpg','image',0),(6676,90,'/6/5/6542334rfd_6_2_1.jpg','image',0),(6677,90,'/3/4/34r4r4r4_6_3.jpg','image',0),(6678,90,'/8/7/87hhou787_6_3.jpg','image',0),(6679,90,'/2/3/2343e3d4ff_6_3.jpg','image',0),(6680,90,'/6/5/6542334rfd_6_3.jpg','image',0),(6681,90,'/3/4/34r4r4r4_6_4.jpg','image',0),(6682,90,'/8/7/87hhou787_6_4.jpg','image',0),(6683,90,'/2/3/2343e3d4ff_6_4.jpg','image',0),(6684,90,'/6/5/6542334rfd_6_4.jpg','image',0),(6685,90,'/3/4/34r4r4r4_6_5.jpg','image',0),(6686,90,'/8/7/87hhou787_6_5.jpg','image',0),(6687,90,'/2/3/2343e3d4ff_6_5.jpg','image',0),(6688,90,'/6/5/6542334rfd_6_5.jpg','image',0),(6689,90,'/3/4/34r4r4r4_6_6.jpg','image',0),(6690,90,'/8/7/87hhou787_6_6.jpg','image',0),(6691,90,'/2/3/2343e3d4ff_6_6.jpg','image',0),(6692,90,'/6/5/6542334rfd_6_6.jpg','image',0),(6693,90,'/3/4/34r4r4r4_6_7.jpg','image',0),(6694,90,'/8/7/87hhou787_6_7.jpg','image',0),(6695,90,'/2/3/2343e3d4ff_6_7.jpg','image',0),(6696,90,'/6/5/6542334rfd_6_7.jpg','image',0),(6697,90,'/2/4/2454654fff_6_2.jpg','image',0),(6698,90,'/2/d/2d3ddff5_6_2.jpg','image',0),(6699,90,'/2/e/2e3e3ddd_6_2.jpg','image',0),(6700,90,'/4/2/422edd33d_6_2.jpg','image',0),(6701,90,'/2/4/2454654fff_6_1_1.jpg','image',0),(6702,90,'/2/d/2d3ddff5_6_1_1.jpg','image',0),(6703,90,'/2/e/2e3e3ddd_6_1_1.jpg','image',0),(6704,90,'/4/2/422edd33d_6_1_1.jpg','image',0),(6705,90,'/2/4/2454654fff_6_2_1.jpg','image',0),(6706,90,'/2/d/2d3ddff5_6_2_1.jpg','image',0),(6707,90,'/2/e/2e3e3ddd_6_2_1.jpg','image',0),(6708,90,'/4/2/422edd33d_6_2_1.jpg','image',0),(6709,90,'/2/4/2454654fff_6_3.jpg','image',0),(6710,90,'/2/d/2d3ddff5_6_3.jpg','image',0),(6711,90,'/2/e/2e3e3ddd_6_3.jpg','image',0),(6712,90,'/4/2/422edd33d_6_3.jpg','image',0),(6713,90,'/2/4/2454654fff_6_4.jpg','image',0),(6714,90,'/2/d/2d3ddff5_6_4.jpg','image',0),(6715,90,'/2/e/2e3e3ddd_6_4.jpg','image',0),(6716,90,'/4/2/422edd33d_6_4.jpg','image',0),(6717,90,'/2/4/2454654fff_6_5.jpg','image',0),(6718,90,'/2/d/2d3ddff5_6_5.jpg','image',0),(6719,90,'/2/e/2e3e3ddd_6_5.jpg','image',0),(6720,90,'/4/2/422edd33d_6_5.jpg','image',0),(6721,90,'/2/4/2454654fff_6_6.jpg','image',0),(6722,90,'/2/d/2d3ddff5_6_6.jpg','image',0),(6723,90,'/2/e/2e3e3ddd_6_6.jpg','image',0),(6724,90,'/4/2/422edd33d_6_6.jpg','image',0),(6725,90,'/3/4/34r4r4r4_6_1_1.jpg','image',0),(6726,90,'/2/3/2343e3d4ff_6_1_1.jpg','image',0),(6727,90,'/6/5/6542334rfd_6_1_1.jpg','image',0),(6728,90,'/8/7/87hhou787_6_1_1.jpg','image',0),(6729,90,'/3/4/3445tr4e_5.jpg','image',0),(6730,90,'/4/5/4566yyy_5.jpg','image',0),(6731,90,'/4/5/454rfrfrf_5.jpg','image',0),(6732,90,'/3/4/34rr556t66_5.jpg','image',0),(6733,90,'/3/4/3445tr4e_1_1.jpg','image',0),(6734,90,'/4/5/4566yyy_1_1.jpg','image',0),(6735,90,'/4/5/454rfrfrf_1_1.jpg','image',0),(6736,90,'/3/4/34rr556t66_1_1.jpg','image',0),(6737,90,'/3/4/3445tr4e_2_1.jpg','image',0),(6738,90,'/4/5/4566yyy_2_1.jpg','image',0),(6739,90,'/4/5/454rfrfrf_2_1.jpg','image',0),(6740,90,'/3/4/34rr556t66_2_1.jpg','image',0),(6741,90,'/3/4/3445tr4e_3_1.jpg','image',0),(6742,90,'/4/5/4566yyy_3_1.jpg','image',0),(6743,90,'/4/5/454rfrfrf_3_1.jpg','image',0),(6744,90,'/3/4/34rr556t66_3_1.jpg','image',0),(6745,90,'/3/4/3445tr4e_4_1.jpg','image',0),(6746,90,'/4/5/4566yyy_4_1.jpg','image',0),(6747,90,'/4/5/454rfrfrf_4_1.jpg','image',0),(6748,90,'/3/4/34rr556t66_4_1.jpg','image',0),(6749,90,'/3/4/34eeddd_5.jpg','image',0),(6750,90,'/3/4/3456tt5_5.jpg','image',0),(6751,90,'/2/4/24r4r4ee4e_5.jpg','image',0),(6752,90,'/3/e/3e3drrfrf_5.jpg','image',0),(6753,90,'/3/4/34eeddd_2_1.jpg','image',0),(6754,90,'/3/4/3456tt5_2_1.jpg','image',0),(6755,90,'/2/4/24r4r4ee4e_2_1.jpg','image',0),(6756,90,'/3/e/3e3drrfrf_2_1.jpg','image',0),(6757,90,'/3/4/34eeddd_3_1.jpg','image',0),(6758,90,'/3/4/3456tt5_3_1.jpg','image',0),(6759,90,'/2/4/24r4r4ee4e_3_1.jpg','image',0),(6760,90,'/3/e/3e3drrfrf_3_1.jpg','image',0),(6761,90,'/3/4/34eeddd_4_1.jpg','image',0),(6762,90,'/3/4/3456tt5_4_1.jpg','image',0),(6763,90,'/2/4/24r4r4ee4e_4_1.jpg','image',0),(6764,90,'/3/e/3e3drrfrf_4_1.jpg','image',0),(6765,90,'/3/4/34eeddd_5_1.jpg','image',0),(6766,90,'/3/4/3456tt5_5_1.jpg','image',0),(6767,90,'/2/4/24r4r4ee4e_5_1.jpg','image',0),(6768,90,'/3/e/3e3drrfrf_5_1.jpg','image',0),(6769,90,'/3/4/34eeddd_1_1.jpg','image',0),(6770,90,'/3/4/3456tt5_1_1.jpg','image',0),(6771,90,'/3/e/3e3drrfrf_1_1.jpg','image',0),(6772,90,'/2/4/24r4r4ee4e_1_1.jpg','image',0),(6773,90,'/i/m/image_31085465_74_620x757_0_1_1_2.jpg','image',0),(6774,90,'/i/m/image_31085465_74_620x757_3_1_6.jpg','image',0),(6775,90,'/i/m/image_31085465_74_620x757_4_1_2.jpg','image',0),(6776,90,'/i/m/image_31085465_74_620x757_2_1_2.jpg','image',0),(6777,90,'/1/2/12ws33d4e4_6.jpg','image',0),(6778,90,'/8/i/8i8i88u7y_6.jpg','image',0),(6779,90,'/2/3/2344rr4rr_6.jpg','image',0),(6780,90,'/5/t/5t5t55ff5f5f_6.jpg','image',0),(6781,90,'/3/5/356ggt6t_6.jpg','image',0),(6782,90,'/2/3/23e4r5r5r_6.jpg','image',0),(6783,90,'/8/8/888u765_1_6.jpg','image',0),(6784,90,'/3/5/3566tgg_6.jpg','image',0),(6785,90,'/i/m/image_31085465_74_620x757_0_1_1_1_1.jpg','image',0),(6786,90,'/i/m/image_31085465_74_620x757_3_1_1_1.jpg','image',0),(6787,90,'/i/m/image_31085465_74_620x757_4_1_1_1.jpg','image',0),(6788,90,'/i/m/image_31085465_74_620x757_2_1_1_1.jpg','image',0),(6789,90,'/1/2/12ws33d4e4_2_1.jpg','image',0),(6790,90,'/8/i/8i8i88u7y_2_1.jpg','image',0),(6791,90,'/2/3/2344rr4rr_2_1.jpg','image',0),(6792,90,'/5/t/5t5t55ff5f5f_2_1.jpg','image',0),(6793,90,'/3/5/356ggt6t_1_1.jpg','image',0),(6794,90,'/2/3/23e4r5r5r_1_1.jpg','image',0),(6795,90,'/8/8/888u765_1_1_1.jpg','image',0),(6796,90,'/3/5/3566tgg_1_1.jpg','image',0),(6797,90,'/i/m/image_31085465_74_620x757_0_1_1_2_1.jpg','image',0),(6798,90,'/i/m/image_31085465_74_620x757_3_1_2_1.jpg','image',0),(6799,90,'/i/m/image_31085465_74_620x757_4_1_2_1.jpg','image',0),(6800,90,'/i/m/image_31085465_74_620x757_2_1_2_1.jpg','image',0),(6801,90,'/1/2/12ws33d4e4_3_1.jpg','image',0),(6802,90,'/8/i/8i8i88u7y_3_1.jpg','image',0),(6803,90,'/2/3/2344rr4rr_3_1.jpg','image',0),(6804,90,'/5/t/5t5t55ff5f5f_3_1.jpg','image',0),(6805,90,'/3/5/356ggt6t_2_1.jpg','image',0),(6806,90,'/2/3/23e4r5r5r_2_1.jpg','image',0),(6807,90,'/8/8/888u765_1_2_1.jpg','image',0),(6808,90,'/3/5/3566tgg_2_1.jpg','image',0),(6809,90,'/i/m/image_31085465_74_620x757_0_1_1_3.jpg','image',0),(6810,90,'/i/m/image_31085465_74_620x757_3_1_3_1.jpg','image',0),(6811,90,'/i/m/image_31085465_74_620x757_4_1_3.jpg','image',0),(6812,90,'/i/m/image_31085465_74_620x757_2_1_3.jpg','image',0),(6813,90,'/1/2/12ws33d4e4_4_1.jpg','image',0),(6814,90,'/8/i/8i8i88u7y_4_1.jpg','image',0),(6815,90,'/2/3/2344rr4rr_4_1.jpg','image',0),(6816,90,'/5/t/5t5t55ff5f5f_4_1.jpg','image',0),(6817,90,'/3/5/356ggt6t_3_1.jpg','image',0),(6818,90,'/2/3/23e4r5r5r_3_1.jpg','image',0),(6819,90,'/8/8/888u765_1_3_1.jpg','image',0),(6820,90,'/3/5/3566tgg_3_1.jpg','image',0),(6821,90,'/i/m/image_31085465_74_620x757_0_1_1_4.jpg','image',0),(6822,90,'/i/m/image_31085465_74_620x757_3_1_4_1.jpg','image',0),(6823,90,'/i/m/image_31085465_74_620x757_4_1_4.jpg','image',0),(6824,90,'/i/m/image_31085465_74_620x757_2_1_4.jpg','image',0),(6825,90,'/1/2/12ws33d4e4_5_1.jpg','image',0),(6826,90,'/8/i/8i8i88u7y_5_1.jpg','image',0),(6827,90,'/2/3/2344rr4rr_5_1.jpg','image',0),(6828,90,'/5/t/5t5t55ff5f5f_5_1.jpg','image',0),(6829,90,'/3/5/356ggt6t_4_1.jpg','image',0),(6830,90,'/2/3/23e4r5r5r_4_1.jpg','image',0),(6831,90,'/8/8/888u765_1_4_1.jpg','image',0),(6832,90,'/3/5/3566tgg_4_1.jpg','image',0),(6833,90,'/i/m/image_31085465_74_620x757_0_1_1_5.jpg','image',0),(6834,90,'/i/m/image_31085465_74_620x757_3_1_5_1.jpg','image',0),(6835,90,'/i/m/image_31085465_74_620x757_4_1_5.jpg','image',0),(6836,90,'/i/m/image_31085465_74_620x757_2_1_5.jpg','image',0),(6837,90,'/1/2/12ws33d4e4_6_1.jpg','image',0),(6838,90,'/8/i/8i8i88u7y_6_1.jpg','image',0),(6839,90,'/2/3/2344rr4rr_6_1.jpg','image',0),(6840,90,'/5/t/5t5t55ff5f5f_6_1.jpg','image',0),(6841,90,'/3/5/356ggt6t_5_1.jpg','image',0),(6842,90,'/2/3/23e4r5r5r_5_1.jpg','image',0),(6843,90,'/8/8/888u765_1_5_1.jpg','image',0),(6844,90,'/3/5/3566tgg_5_1.jpg','image',0),(6845,90,'/1/2/12ws33d4e4_1_1.jpg','image',0),(6846,90,'/5/t/5t5t55ff5f5f_1_1.jpg','image',0),(6847,90,'/8/i/8i8i88u7y_1_1.jpg','image',0),(6848,90,'/2/3/2344rr4rr_1_1.jpg','image',0),(6849,90,'/g/1/g1_15.jpg','image',0),(6850,90,'/g/2/g2_15.jpg','image',0),(6851,90,'/g/3/g3_15.jpg','image',0),(6852,90,'/g/1/g1_15_1.jpg','image',0),(6853,90,'/g/2/g2_15_1.jpg','image',0),(6854,90,'/g/3/g3_15_1.jpg','image',0),(6855,90,'/b/1/b1_19.jpg','image',0),(6856,90,'/b/2/b2_19.jpg','image',0),(6857,90,'/b/3/b3_19.jpg','image',0),(6858,90,'/b/1/b1_19_1.jpg','image',0),(6859,90,'/b/2/b2_19_1.jpg','image',0),(6860,90,'/b/3/b3_19_1.jpg','image',0),(6861,90,'/b/1/b1_20.jpg','image',0),(6862,90,'/b/2/b2_20.jpg','image',0),(6863,90,'/b/3/b3_20.jpg','image',0),(6864,90,'/m/a/main_2_1_2.jpg','image',0),(6865,90,'/i/m/image_31178507_75_620x757_1_1_2.jpg','image',0),(6866,90,'/i/m/image_31178507_75_620x757_2_1_1.jpg','image',0),(6867,90,'/i/m/image_31178507_75_620x757_3_1_2.jpg','image',0),(6868,90,'/m/a/main_2_1_1_2.jpg','image',0),(6869,90,'/i/m/image_31178507_75_620x757_1_1_2_1.jpg','image',0),(6870,90,'/i/m/image_31178507_75_620x757_2_1_2.jpg','image',0),(6871,90,'/i/m/image_31178507_75_620x757_3_1_2_1.jpg','image',0),(6872,90,'/2/3/234e3e3r_1_2.jpg','image',0),(6873,90,'/2/3/23423e3e3e32_2.jpg','image',0),(6874,90,'/i/m/image_31300702_10_620x757_2_1_3_1.jpg','image',0),(6875,90,'/2/3/2342e3e3e3_2.jpg','image',0),(6876,90,'/2/3/234e3e3r_1_1_1.jpg','image',0),(6877,90,'/2/3/23423e3e3e32_1_1.jpg','image',0),(6878,90,'/i/m/image_31300702_10_620x757_2_1_3_1_1.jpg','image',0),(6879,90,'/2/3/2342e3e3e3_1_1.jpg','image',0),(6880,90,'/m/a/main_2_2_1.jpg','image',0),(6881,90,'/i/m/image_31178507_75_620x757_1_1_1_2.jpg','image',0),(6882,90,'/i/m/image_31178507_75_620x757_2_1_1_1.jpg','image',0),(6883,90,'/i/m/image_31178507_75_620x757_3_1_1_2.jpg','image',0),(6884,90,'/r/1/r1_17.jpg','image',0),(6885,90,'/r/2/r2_17.jpg','image',0),(6886,90,'/r/3/r3_17.jpg','image',0),(6887,90,'/r/4/r4_9.jpg','image',0),(6888,90,'/r/1/r1_17_1.jpg','image',0),(6889,90,'/r/2/r2_17_1.jpg','image',0),(6890,90,'/r/3/r3_17_1.jpg','image',0),(6891,90,'/r/4/r4_9_1.jpg','image',0),(6892,90,'/r/1/r1_17_2.jpg','image',0),(6893,90,'/r/2/r2_17_2.jpg','image',0),(6894,90,'/r/3/r3_17_2.jpg','image',0),(6895,90,'/r/4/r4_9_2.jpg','image',0),(6896,90,'/r/1/r1_17_3.jpg','image',0),(6897,90,'/r/2/r2_17_3.jpg','image',0),(6898,90,'/r/3/r3_17_3.jpg','image',0),(6899,90,'/r/4/r4_9_3.jpg','image',0),(6900,90,'/b/1/b1_23.jpg','image',0),(6901,90,'/b/2/b2_23.jpg','image',0),(6902,90,'/b/3/b3_23.jpg','image',0),(6903,90,'/b/4/b4_10.jpg','image',0),(6904,90,'/b/1/b1_23_1.jpg','image',0),(6905,90,'/b/2/b2_23_1.jpg','image',0),(6906,90,'/b/3/b3_23_1.jpg','image',0),(6907,90,'/b/4/b4_10_1.jpg','image',0),(6908,90,'/b/1/b1_23_2.jpg','image',0),(6909,90,'/b/2/b2_23_2.jpg','image',0),(6910,90,'/b/3/b3_23_2.jpg','image',0),(6911,90,'/b/4/b4_10_2.jpg','image',0),(6912,90,'/b/1/b1_23_3.jpg','image',0),(6913,90,'/b/2/b2_23_3.jpg','image',0),(6914,90,'/b/3/b3_23_3.jpg','image',0),(6915,90,'/b/4/b4_10_3.jpg','image',0),(6916,90,'/b/1/b1_24.jpg','image',0),(6917,90,'/b/2/b2_24.jpg','image',0),(6918,90,'/b/3/b3_24.jpg','image',0),(6919,90,'/b/4/b4_11.jpg','image',0),(6920,90,'/w/1/w1_15.jpg','image',0),(6921,90,'/w/2/w2_15.jpg','image',0),(6922,90,'/w/3/w3_15.jpg','image',0),(6923,90,'/w/4/w4_5_2.jpg','image',0),(6924,90,'/w/1/w1_15_1.jpg','image',0),(6925,90,'/w/2/w2_15_1.jpg','image',0),(6926,90,'/w/3/w3_15_1.jpg','image',0),(6927,90,'/w/4/w4_5_1_1.jpg','image',0),(6928,90,'/w/1/w1_15_2.jpg','image',0),(6929,90,'/w/2/w2_15_2.jpg','image',0),(6930,90,'/w/3/w3_15_2.jpg','image',0),(6931,90,'/w/4/w4_5_2_1.jpg','image',0),(6932,90,'/r/1/r1_18.jpg','image',0),(6933,90,'/r/2/r2_18.jpg','image',0),(6934,90,'/r/3/r3_18.jpg','image',0),(6935,90,'/r/4/r4_10.jpg','image',0),(6936,90,'/r/1/r1_18_1.jpg','image',0),(6937,90,'/r/2/r2_18_1.jpg','image',0),(6938,90,'/r/3/r3_18_1.jpg','image',0),(6939,90,'/r/4/r4_10_1.jpg','image',0),(6940,90,'/r/1/r1_18_2.jpg','image',0),(6941,90,'/r/2/r2_18_2.jpg','image',0),(6942,90,'/r/3/r3_18_2.jpg','image',0),(6943,90,'/r/4/r4_10_2.jpg','image',0),(6944,90,'/2/3/23223x23_1_1.jpg','image',0),(6945,90,'/2/4/242e2e3e3e_1_1.jpg','image',0),(6946,90,'/2/4/24342323x_1_1.jpg','image',0),(6947,90,'/m/a/main_8_2_1.jpg','image',0),(6948,90,'/i/m/image_31146614_33_620x757_1_1_1.jpg','image',0),(6949,90,'/i/m/image_31146614_33_620x757_2_1_1.jpg','image',0),(6950,90,'/m/a/main_8_3.jpg','image',0),(6951,90,'/i/m/image_31146614_33_620x757_1_2.jpg','image',0),(6952,90,'/i/m/image_31146614_33_620x757_2_2.jpg','image',0),(6953,90,'/d/1/d1_9.jpg','image',0),(6954,90,'/d/2/d2_9.jpg','image',0),(6955,90,'/d/3/d3_9.jpg','image',0),(6956,90,'/d/4/d4_6_1.jpg','image',0),(6957,90,'/d/1/d1_9_1.jpg','image',0),(6958,90,'/d/2/d2_9_1.jpg','image',0),(6959,90,'/d/3/d3_9_1.jpg','image',0),(6960,90,'/d/4/d4_6_1_1.jpg','image',0),(6961,90,'/d/1/d1_9_2.jpg','image',0),(6962,90,'/d/2/d2_9_2.jpg','image',0),(6963,90,'/d/3/d3_9_2.jpg','image',0),(6964,90,'/d/4/d4_6_2.jpg','image',0),(6965,90,'/d/1/d1_9_3.jpg','image',0),(6966,90,'/d/2/d2_9_3.jpg','image',0),(6967,90,'/d/3/d3_9_3.jpg','image',0),(6968,90,'/d/4/d4_6_3.jpg','image',0),(6969,90,'/b/1/b1_25.jpg','image',0),(6970,90,'/b/2/b2_25.jpg','image',0),(6971,90,'/b/3/b3_25.jpg','image',0),(6972,90,'/b/4/b4_12.jpg','image',0),(6973,90,'/b/1/b1_25_1.jpg','image',0),(6974,90,'/b/2/b2_25_1.jpg','image',0),(6975,90,'/b/3/b3_25_1.jpg','image',0),(6976,90,'/b/4/b4_12_1.jpg','image',0),(6977,90,'/b/1/b1_25_2.jpg','image',0),(6978,90,'/b/2/b2_25_2.jpg','image',0),(6979,90,'/b/3/b3_25_2.jpg','image',0),(6980,90,'/b/4/b4_12_2.jpg','image',0),(6981,90,'/b/1/b1_25_3.jpg','image',0),(6982,90,'/b/2/b2_25_3.jpg','image',0),(6983,90,'/b/3/b3_25_3.jpg','image',0),(6984,90,'/b/4/b4_12_3.jpg','image',0),(6985,90,'/d/1/d1_10.jpg','image',0),(6986,90,'/d/2/d2_10.jpg','image',0),(6987,90,'/d/3/d3_10.jpg','image',0),(6988,90,'/d/4/d4_7.jpg','image',0),(6989,90,'/m/a/main_6_2_1.jpg','image',0),(6990,90,'/i/m/image_31162615_74_620x757_1_1_1.jpg','image',0),(6991,90,'/i/m/image_31162615_74_620x757_2_1_1.jpg','image',0),(6992,90,'/3/4/343e3r4r4_1_1_1.jpg','image',0),(6993,90,'/3/4/34t45t35_1_1.jpg','image',0),(6994,90,'/2/3/234343e3e2e_1_1.jpg','image',0),(6995,90,'/m/a/main_6_3.jpg','image',0),(6996,90,'/i/m/image_31162615_74_620x757_1_2.jpg','image',0),(6997,90,'/i/m/image_31162615_74_620x757_2_2.jpg','image',0),(6998,90,'/d/1/d1_11.jpg','image',0),(6999,90,'/d/2/d2_11.jpg','image',0),(7000,90,'/d/3/d3_11.jpg','image',0),(7001,90,'/d/4/d4_8.jpg','image',0),(7002,90,'/d/1/d1_11_1.jpg','image',0),(7003,90,'/d/2/d2_11_1.jpg','image',0),(7004,90,'/d/3/d3_11_1.jpg','image',0),(7005,90,'/d/4/d4_8_1.jpg','image',0),(7006,90,'/d/1/d1_11_2.jpg','image',0),(7007,90,'/d/2/d2_11_2.jpg','image',0),(7008,90,'/d/3/d3_11_2.jpg','image',0),(7009,90,'/d/4/d4_8_2.jpg','image',0),(7010,90,'/d/1/d1_11_3.jpg','image',0),(7011,90,'/d/2/d2_11_3.jpg','image',0),(7012,90,'/d/3/d3_11_3.jpg','image',0),(7013,90,'/d/4/d4_8_3.jpg','image',0),(7014,90,'/w/1/w1_16.jpg','image',0),(7015,90,'/w/2/w2_16.jpg','image',0),(7016,90,'/w/3/w3_16.jpg','image',0),(7017,90,'/w/4/w4_6_1.jpg','image',0),(7018,90,'/w/1/w1_16_1.jpg','image',0),(7019,90,'/w/2/w2_16_1.jpg','image',0),(7020,90,'/w/3/w3_16_1.jpg','image',0),(7021,90,'/w/4/w4_6_1_1.jpg','image',0),(7022,90,'/w/1/w1_16_2.jpg','image',0),(7023,90,'/w/2/w2_16_2.jpg','image',0),(7024,90,'/w/3/w3_16_2.jpg','image',0),(7025,90,'/w/4/w4_6_2.jpg','image',0),(7026,90,'/w/1/w1_16_3.jpg','image',0),(7027,90,'/w/2/w2_16_3.jpg','image',0),(7028,90,'/w/3/w3_16_3.jpg','image',0),(7029,90,'/w/4/w4_6_3.jpg','image',0),(7030,90,'/w/1/w1_17.jpg','image',0),(7031,90,'/w/2/w2_17.jpg','image',0),(7032,90,'/w/3/w3_17.jpg','image',0),(7033,90,'/w/4/w4_7_1.jpg','image',0),(7034,90,'/b/1/b1_26.jpg','image',0),(7035,90,'/b/2/b2_26.jpg','image',0),(7036,90,'/b/3/b3_26.jpg','image',0),(7037,90,'/b/4/b4_13.jpg','image',0),(7038,90,'/b/1/b1_26_1.jpg','image',0),(7039,90,'/b/2/b2_26_1.jpg','image',0),(7040,90,'/b/3/b3_26_1.jpg','image',0),(7041,90,'/b/4/b4_13_1.jpg','image',0),(7042,90,'/b/1/b1_26_2.jpg','image',0),(7043,90,'/b/2/b2_26_2.jpg','image',0),(7044,90,'/b/3/b3_26_2.jpg','image',0),(7045,90,'/b/4/b4_13_2.jpg','image',0),(7046,90,'/b/1/b1_26_3.jpg','image',0),(7047,90,'/b/2/b2_26_3.jpg','image',0),(7048,90,'/b/3/b3_26_3.jpg','image',0),(7049,90,'/b/4/b4_13_3.jpg','image',0),(7050,90,'/g/1/g1_16.jpg','image',0),(7051,90,'/g/2/g2_16.jpg','image',0),(7052,90,'/g/3/g3_16.jpg','image',0),(7053,90,'/g/4/g4_7_1.jpg','image',0),(7054,90,'/g/1/g1_16_1.jpg','image',0),(7055,90,'/g/2/g2_16_1.jpg','image',0),(7056,90,'/g/3/g3_16_1.jpg','image',0),(7057,90,'/g/4/g4_7_1_1.jpg','image',0),(7058,90,'/g/1/g1_16_2.jpg','image',0),(7059,90,'/g/2/g2_16_2.jpg','image',0),(7060,90,'/g/3/g3_16_2.jpg','image',0),(7061,90,'/g/4/g4_7_2.jpg','image',0),(7062,90,'/g/1/g1_16_3.jpg','image',0),(7063,90,'/g/2/g2_16_3.jpg','image',0),(7064,90,'/g/3/g3_16_3.jpg','image',0),(7065,90,'/g/4/g4_7_3.jpg','image',0),(7066,90,'/g/1/g1_17.jpg','image',0),(7067,90,'/g/2/g2_17.jpg','image',0),(7068,90,'/g/3/g3_17.jpg','image',0),(7069,90,'/g/4/g4_8.jpg','image',0),(7070,90,'/m/a/main_4_2_2.jpg','image',0),(7071,90,'/i/m/image_31300702_10_620x757_1_2.jpg','image',0),(7072,90,'/i/m/image_31300702_10_620x757_3_2.jpg','image',0),(7073,90,'/i/m/image_31300702_10_620x757_2_4.jpg','image',0),(7074,90,'/m/a/main_4_2_2_1.jpg','image',0),(7075,90,'/i/m/image_31300702_10_620x757_1_2_1.jpg','image',0),(7076,90,'/i/m/image_31300702_10_620x757_3_2_1.jpg','image',0),(7077,90,'/i/m/image_31300702_10_620x757_2_3_1.jpg','image',0),(7078,90,'/2/3/232312e3e3e_2.jpg','image',0),(7079,90,'/2/3/232w2w_2.jpg','image',0),(7080,90,'/2/3/23e3e23434_2.jpg','image',0),(7081,90,'/i/m/image_31300702_10_620x757_2_1_5.jpg','image',0),(7082,90,'/2/3/232312e3e3e_1_1.jpg','image',0),(7083,90,'/2/3/232w2w_1_1.jpg','image',0),(7084,90,'/2/3/23e3e23434_1_1.jpg','image',0),(7085,90,'/i/m/image_31300702_10_620x757_2_1_1_2.jpg','image',0),(7086,90,'/m/a/main_4_2_1_2.jpg','image',0),(7087,90,'/i/m/image_31300702_10_620x757_1_1_2.jpg','image',0),(7088,90,'/i/m/image_31300702_10_620x757_2_2_1.jpg','image',0),(7089,90,'/i/m/image_31300702_10_620x757_3_1_2.jpg','image',0),(7090,90,'/b/1/b1_27.jpg','image',0),(7091,90,'/b/2/b2_27.jpg','image',0),(7092,90,'/g/1/g1_18.jpg','image',0),(7093,90,'/g/2/g2_18.jpg','image',0),(7094,90,'/b/1/b1_27_1.jpg','image',0),(7095,90,'/b/2/b2_27_1.jpg','image',0),(7096,90,'/g/1/g1_18_1.jpg','image',0),(7097,90,'/g/2/g2_18_1.jpg','image',0),(7098,90,'/g/1/g1_19.jpg','image',0),(7099,90,'/g/2/g2_19.jpg','image',0),(7100,90,'/d/1/d1_12.jpg','image',0),(7101,90,'/d/2/d2_12.jpg','image',0),(7102,90,'/d/3/d3_12.jpg','image',0),(7103,90,'/d/4/d4_9.jpg','image',0),(7104,90,'/d/1/d1_12_1.jpg','image',0),(7105,90,'/d/2/d2_12_1.jpg','image',0),(7106,90,'/d/3/d3_12_1.jpg','image',0),(7107,90,'/d/4/d4_9_1.jpg','image',0),(7108,90,'/g/1/g1_20.jpg','image',0),(7109,90,'/g/2/g2_20.jpg','image',0),(7110,90,'/g/3/g3_18.jpg','image',0),(7111,90,'/g/4/g4_9.jpg','image',0),(7112,90,'/g/1/g1_20_1.jpg','image',0),(7113,90,'/g/2/g2_20_1.jpg','image',0),(7114,90,'/g/3/g3_18_1.jpg','image',0),(7115,90,'/g/4/g4_9_1.jpg','image',0),(7116,90,'/d/1/d1_13.jpg','image',0),(7117,90,'/d/2/d2_13.jpg','image',0),(7118,90,'/d/3/d3_13.jpg','image',0),(7119,90,'/d/4/d4_10.jpg','image',0),(7120,90,'/r/1/r1_19.jpg','image',0),(7121,90,'/r/2/r2_19.jpg','image',0),(7122,90,'/r/3/r3_19.jpg','image',0),(7123,90,'/r/1/r1_19_1.jpg','image',0),(7124,90,'/r/2/r2_19_1.jpg','image',0),(7125,90,'/r/3/r3_19_1.jpg','image',0),(7126,90,'/r/1/r1_19_2.jpg','image',0),(7127,90,'/r/2/r2_19_2.jpg','image',0),(7128,90,'/r/3/r3_19_2.jpg','image',0),(7129,90,'/w/1/w1_18.jpg','image',0),(7130,90,'/w/2/w2_18.jpg','image',0),(7131,90,'/w/3/w3_18.jpg','image',0),(7132,90,'/w/1/w1_18_1.jpg','image',0),(7133,90,'/w/2/w2_18_1.jpg','image',0),(7134,90,'/w/3/w3_18_1.jpg','image',0),(7135,90,'/w/1/w1_18_2.jpg','image',0),(7136,90,'/w/2/w2_18_2.jpg','image',0),(7137,90,'/w/3/w3_18_2.jpg','image',0),(7138,90,'/w/1/w1_19.jpg','image',0),(7139,90,'/w/2/w2_19.jpg','image',0),(7140,90,'/w/3/w3_19.jpg','image',0),(7141,90,'/i/m/image_31160332_10_620x757_0_2.jpg','image',0),(7142,90,'/i/m/image_31160332_10_620x757_1_2.jpg','image',0),(7143,90,'/i/m/image_31160332_10_620x757_2_3.jpg','image',0),(7144,90,'/m/a/main_1_1_2.jpg','image',0),(7145,90,'/i/m/image_31160332_10_620x757_0_2_1.jpg','image',0),(7146,90,'/i/m/image_31160332_10_620x757_1_2_1.jpg','image',0),(7147,90,'/i/m/image_31160332_10_620x757_2_3_1.jpg','image',0),(7148,90,'/m/a/main_1_1_1_2.jpg','image',0),(7149,90,'/2/3/23434r4r4_2.jpg','image',0),(7150,90,'/3/5/3543r3e2e2_2.jpg','image',0),(7151,90,'/i/m/image_31160332_10_620x757_2_1_3.jpg','image',0),(7152,90,'/1/2/123w233_1_2.jpg','image',0),(7153,90,'/2/3/23434r4r4_1_1.jpg','image',0),(7154,90,'/3/5/3543r3e2e2_1_1.jpg','image',0),(7155,90,'/i/m/image_31160332_10_620x757_2_1_1_1.jpg','image',0),(7156,90,'/1/2/123w233_1_1_1.jpg','image',0),(7157,90,'/i/m/image_31160332_10_620x757_0_1_2.jpg','image',0),(7158,90,'/i/m/image_31160332_10_620x757_1_1_2.jpg','image',0),(7159,90,'/i/m/image_31160332_10_620x757_2_2_1.jpg','image',0),(7160,90,'/m/a/main_1_2_1.jpg','image',0),(7161,90,'/b/1/b1_28.jpg','image',0),(7162,90,'/b/2/b2_28.jpg','image',0),(7163,90,'/b/3/b3_27.jpg','image',0),(7164,90,'/b/4/b4_14.jpg','image',0),(7165,90,'/b/1/b1_28_1.jpg','image',0),(7166,90,'/b/2/b2_28_1.jpg','image',0),(7167,90,'/b/3/b3_27_1.jpg','image',0),(7168,90,'/b/4/b4_14_1.jpg','image',0),(7169,90,'/b/1/b1_28_2.jpg','image',0),(7170,90,'/b/2/b2_28_2.jpg','image',0),(7171,90,'/b/3/b3_27_2.jpg','image',0),(7172,90,'/b/4/b4_14_2.jpg','image',0),(7173,90,'/w/1/w1_20.jpg','image',0),(7174,90,'/w/2/w2_20.jpg','image',0),(7175,90,'/w/3/w3_20.jpg','image',0),(7176,90,'/w/4/w4_8.jpg','image',0),(7177,90,'/w/1/w1_20_1.jpg','image',0),(7178,90,'/w/2/w2_20_1.jpg','image',0),(7179,90,'/w/3/w3_20_1.jpg','image',0),(7180,90,'/w/4/w4_8_1.jpg','image',0),(7181,90,'/w/1/w1_20_2.jpg','image',0),(7182,90,'/w/2/w2_20_2.jpg','image',0),(7183,90,'/w/3/w3_20_2.jpg','image',0),(7184,90,'/w/4/w4_8_2.jpg','image',0),(7185,90,'/w/1/w1_21.jpg','image',0),(7186,90,'/w/2/w2_21.jpg','image',0),(7187,90,'/w/3/w3_21.jpg','image',0),(7188,90,'/w/4/w4_9.jpg','image',0),(7189,90,'/2/4/243r3r3e3e_2.jpg','image',0),(7190,90,'/1/2/12323232ee3_1.jpg','image',0),(7191,90,'/i/m/image_31160298_16_620x757_2_1_3.jpg','image',0),(7192,90,'/2/3/2343e3e3_1_2.jpg','image',0),(7193,90,'/2/4/243r3r3e3e_1_1.jpg','image',0),(7194,90,'/1/2/12323232ee3_2_1.jpg','image',0),(7195,90,'/i/m/image_31160298_16_620x757_2_1_1_1.jpg','image',0),(7196,90,'/2/3/2343e3e3_1_1_1.jpg','image',0),(7197,90,'/i/m/image_31160298_16_620x757_1_2.jpg','image',0),(7198,90,'/m/a/main_5_2_1.jpg','image',0),(7199,90,'/i/m/image_31160298_16_620x757_2_3.jpg','image',0),(7200,90,'/i/m/image_31160298_16_620x757_3_2.jpg','image',0),(7201,90,'/i/m/image_31160298_16_620x757_1_2_1.jpg','image',0),(7202,90,'/m/a/main_5_2_2.jpg','image',0),(7203,90,'/i/m/image_31160298_16_620x757_2_3_1.jpg','image',0),(7204,90,'/i/m/image_31160298_16_620x757_3_2_1.jpg','image',0),(7205,90,'/m/a/main_5_2_1_1.jpg','image',0),(7206,90,'/i/m/image_31160298_16_620x757_1_1_2.jpg','image',0),(7207,90,'/i/m/image_31160298_16_620x757_2_2_1.jpg','image',0),(7208,90,'/i/m/image_31160298_16_620x757_3_1_2.jpg','image',0),(7209,90,'/r/1/r1_20.jpg','image',0),(7210,90,'/r/2/r2_20.jpg','image',0),(7211,90,'/r/3/r3_20.jpg','image',0),(7212,90,'/r/4/r4_11.jpg','image',0),(7213,90,'/r/1/r1_20_1.jpg','image',0),(7214,90,'/r/2/r2_20_1.jpg','image',0),(7215,90,'/r/3/r3_20_1.jpg','image',0),(7216,90,'/r/4/r4_11_1.jpg','image',0),(7217,90,'/r/1/r1_20_2.jpg','image',0),(7218,90,'/r/2/r2_20_2.jpg','image',0),(7219,90,'/r/3/r3_20_2.jpg','image',0),(7220,90,'/r/4/r4_11_2.jpg','image',0),(7221,90,'/r/1/r1_20_3.jpg','image',0),(7222,90,'/r/2/r2_20_3.jpg','image',0),(7223,90,'/r/3/r3_20_3.jpg','image',0),(7224,90,'/r/4/r4_11_3.jpg','image',0),(7225,90,'/w/1/w1_22.jpg','image',0),(7226,90,'/w/2/w2_22.jpg','image',0),(7227,90,'/w/3/w3_22.jpg','image',0),(7228,90,'/w/4/w4_10.jpg','image',0),(7229,90,'/w/1/w1_22_1.jpg','image',0),(7230,90,'/w/2/w2_22_1.jpg','image',0),(7231,90,'/w/3/w3_22_1.jpg','image',0),(7232,90,'/w/4/w4_10_1.jpg','image',0),(7233,90,'/w/1/w1_22_2.jpg','image',0),(7234,90,'/w/2/w2_22_2.jpg','image',0),(7235,90,'/w/3/w3_22_2.jpg','image',0),(7236,90,'/w/4/w4_10_2.jpg','image',0),(7237,90,'/w/1/w1_22_3.jpg','image',0),(7238,90,'/w/2/w2_22_3.jpg','image',0),(7239,90,'/w/3/w3_22_3.jpg','image',0),(7240,90,'/w/4/w4_10_3.jpg','image',0),(7241,90,'/r/1/r1_21.jpg','image',0),(7242,90,'/r/2/r2_21.jpg','image',0),(7243,90,'/r/3/r3_21.jpg','image',0),(7244,90,'/r/4/r4_12.jpg','image',0),(7245,90,'/m/a/main_5_1_1.jpg','image',0),(7246,90,'/i/m/image_31160296_11_620x757_1_3.jpg','image',0),(7247,90,'/i/m/image_31160296_11_620x757_3_3.jpg','image',0),(7248,90,'/i/m/image_31160296_11_620x757_2_3.jpg','image',0),(7249,90,'/m/a/main_5_1_1_1.jpg','image',0),(7250,90,'/i/m/image_31160296_11_620x757_1_2_1.jpg','image',0),(7251,90,'/i/m/image_31160296_11_620x757_3_2_1.jpg','image',0),(7252,90,'/i/m/image_31160296_11_620x757_2_3_1.jpg','image',0),(7253,90,'/m/a/main_5_1_2.jpg','image',0),(7254,90,'/i/m/image_31160296_11_620x757_1_3_1.jpg','image',0),(7255,90,'/i/m/image_31160296_11_620x757_3_3_1.jpg','image',0),(7256,90,'/i/m/image_31160296_11_620x757_2_4.jpg','image',0),(7257,90,'/2/3/23e2132312_3.jpg','image',0),(7258,90,'/3/2/32ed3d3e_3.jpg','image',0),(7259,90,'/4/3/4354r43r3r3r44_3.jpg','image',0),(7260,90,'/i/m/image_31160296_11_620x757_2_1_4.jpg','image',0),(7261,90,'/2/3/23e2132312_1_1.jpg','image',0),(7262,90,'/3/2/32ed3d3e_1_1.jpg','image',0),(7263,90,'/4/3/4354r43r3r3r44_1_1.jpg','image',0),(7264,90,'/i/m/image_31160296_11_620x757_2_1_1_1.jpg','image',0),(7265,90,'/2/3/23e2132312_2_1.jpg','image',0),(7266,90,'/3/2/32ed3d3e_2_1.jpg','image',0),(7267,90,'/4/3/4354r43r3r3r44_2_1.jpg','image',0),(7268,90,'/i/m/image_31160296_11_620x757_2_1_2_1.jpg','image',0),(7269,90,'/m/a/main_5_3_3.jpg','image',0),(7270,90,'/i/m/image_31160296_11_620x757_1_1_2.jpg','image',0),(7271,90,'/i/m/image_31160296_11_620x757_2_2_2.jpg','image',0),(7272,90,'/i/m/image_31160296_11_620x757_3_1_2.jpg','image',0),(7273,90,'/w/1/w1_23.jpg','image',0),(7274,90,'/w/2/w2_23.jpg','image',0),(7275,90,'/w/3/w3_23.jpg','image',0),(7276,90,'/w/4/w4_11.jpg','image',0),(7277,90,'/w/1/w1_23_1.jpg','image',0),(7278,90,'/w/2/w2_23_1.jpg','image',0),(7279,90,'/w/3/w3_23_1.jpg','image',0),(7280,90,'/w/4/w4_11_1.jpg','image',0),(7281,90,'/w/1/w1_23_2.jpg','image',0),(7282,90,'/w/2/w2_23_2.jpg','image',0),(7283,90,'/w/3/w3_23_2.jpg','image',0),(7284,90,'/w/4/w4_11_2.jpg','image',0),(7285,90,'/w/1/w1_23_3.jpg','image',0),(7286,90,'/w/2/w2_23_3.jpg','image',0),(7287,90,'/w/3/w3_23_3.jpg','image',0),(7288,90,'/w/4/w4_11_3.jpg','image',0),(7289,90,'/w/1/w1_23_4.jpg','image',0),(7290,90,'/w/2/w2_23_4.jpg','image',0),(7291,90,'/w/3/w3_23_4.jpg','image',0),(7292,90,'/w/4/w4_11_4.jpg','image',0),(7293,90,'/b/1/b1_30.jpg','image',0),(7294,90,'/b/2/b2_30.jpg','image',0),(7295,90,'/b/3/b3_29.jpg','image',0),(7296,90,'/b/4/b4_16.jpg','image',0),(7297,90,'/b/1/b1_30_1.jpg','image',0),(7298,90,'/b/2/b2_30_1.jpg','image',0),(7299,90,'/b/3/b3_29_1.jpg','image',0),(7300,90,'/b/4/b4_16_1.jpg','image',0),(7301,90,'/b/1/b1_30_2.jpg','image',0),(7302,90,'/b/2/b2_30_2.jpg','image',0),(7303,90,'/b/3/b3_29_2.jpg','image',0),(7304,90,'/b/4/b4_16_2.jpg','image',0),(7305,90,'/b/1/b1_30_3.jpg','image',0),(7306,90,'/b/2/b2_30_3.jpg','image',0),(7307,90,'/b/3/b3_29_3.jpg','image',0),(7308,90,'/b/4/b4_16_3.jpg','image',0),(7309,90,'/b/1/b1_30_4.jpg','image',0),(7310,90,'/b/2/b2_30_4.jpg','image',0),(7311,90,'/b/3/b3_29_4.jpg','image',0),(7312,90,'/b/4/b4_16_4.jpg','image',0),(7313,90,'/w/1/w1_24.jpg','image',0),(7314,90,'/w/2/w2_24.jpg','image',0),(7315,90,'/w/3/w3_24.jpg','image',0),(7316,90,'/w/4/w4_12.jpg','image',0),(7317,90,'/b/1/b1_32.jpg','image',0),(7318,90,'/b/2/b2_32.jpg','image',0),(7319,90,'/b/3/b3_31.jpg','image',0),(7320,90,'/b/4/b4_18.jpg','image',0),(7321,90,'/b/1/b1_32_1.jpg','image',0),(7322,90,'/b/2/b2_32_1.jpg','image',0),(7323,90,'/b/3/b3_31_1.jpg','image',0),(7324,90,'/b/4/b4_18_1.jpg','image',0),(7325,90,'/b/1/b1_32_2.jpg','image',0),(7326,90,'/b/2/b2_32_2.jpg','image',0),(7327,90,'/b/3/b3_31_2.jpg','image',0),(7328,90,'/b/4/b4_18_2.jpg','image',0),(7329,90,'/w/1/w1_25.jpg','image',0),(7330,90,'/w/2/w2_25.jpg','image',0),(7331,90,'/w/3/w3_25.jpg','image',0),(7332,90,'/w/4/w4_13.jpg','image',0),(7333,90,'/w/1/w1_25_1.jpg','image',0),(7334,90,'/w/2/w2_25_1.jpg','image',0),(7335,90,'/w/3/w3_25_1.jpg','image',0),(7336,90,'/w/4/w4_13_1.jpg','image',0),(7337,90,'/w/1/w1_25_2.jpg','image',0),(7338,90,'/w/2/w2_25_2.jpg','image',0),(7339,90,'/w/3/w3_25_2.jpg','image',0),(7340,90,'/w/4/w4_13_2.jpg','image',0),(7341,90,'/b/1/b1_33.jpg','image',0),(7342,90,'/b/2/b2_33.jpg','image',0),(7343,90,'/b/3/b3_32.jpg','image',0),(7344,90,'/b/4/b4_19.jpg','image',0),(7345,90,'/w/1/w1_26.jpg','image',0),(7346,90,'/w/2/w2_26.jpg','image',0),(7347,90,'/w/3/w3_26.jpg','image',0),(7348,90,'/w/4/w4_14.jpg','image',0),(7349,90,'/w/1/w1_26_1.jpg','image',0),(7350,90,'/w/2/w2_26_1.jpg','image',0),(7351,90,'/w/3/w3_26_1.jpg','image',0),(7352,90,'/w/4/w4_14_1.jpg','image',0),(7353,90,'/w/1/w1_26_2.jpg','image',0),(7354,90,'/w/2/w2_26_2.jpg','image',0),(7355,90,'/w/3/w3_26_2.jpg','image',0),(7356,90,'/w/4/w4_14_2.jpg','image',0),(7357,90,'/w/1/w1_26_3.jpg','image',0),(7358,90,'/w/2/w2_26_3.jpg','image',0),(7359,90,'/w/3/w3_26_3.jpg','image',0),(7360,90,'/w/4/w4_14_3.jpg','image',0),(7361,90,'/b/1/b1_34.jpg','image',0),(7362,90,'/b/2/b2_34.jpg','image',0),(7363,90,'/b/3/b3_33.jpg','image',0),(7364,90,'/b/4/b4_20.jpg','image',0),(7365,90,'/b/1/b1_34_1.jpg','image',0),(7366,90,'/b/2/b2_34_1.jpg','image',0),(7367,90,'/b/3/b3_33_1.jpg','image',0),(7368,90,'/b/4/b4_20_1.jpg','image',0),(7369,90,'/b/1/b1_34_2.jpg','image',0),(7370,90,'/b/2/b2_34_2.jpg','image',0),(7371,90,'/b/3/b3_33_2.jpg','image',0),(7372,90,'/b/4/b4_20_2.jpg','image',0),(7373,90,'/b/1/b1_34_3.jpg','image',0),(7374,90,'/b/2/b2_34_3.jpg','image',0),(7375,90,'/b/3/b3_33_3.jpg','image',0),(7376,90,'/b/4/b4_20_3.jpg','image',0),(7377,90,'/w/1/w1_27.jpg','image',0),(7378,90,'/w/2/w2_27.jpg','image',0),(7379,90,'/w/3/w3_27.jpg','image',0),(7380,90,'/w/4/w4_15.jpg','image',0),(7381,90,'/m/a/main_9_1_1.jpg','image',0),(7382,90,'/i/m/image_31034537_81_620x757_1_1_1.jpg','image',0),(7383,90,'/i/m/image_31034537_81_620x757_2_1_1.jpg','image',0),(7384,90,'/3/4/3423r434534_1_1.jpg','image',0),(7385,90,'/2/3/232433e2e2e_1_1.jpg','image',0),(7386,90,'/2/3/232e2e2e_1_1.jpg','image',0),(7387,90,'/m/a/main_9_2.jpg','image',0),(7388,90,'/i/m/image_31034537_81_620x757_1_2.jpg','image',0),(7389,90,'/i/m/image_31034537_81_620x757_2_2.jpg','image',0),(7390,90,'/m/a/main_10_3_1.jpg','image',0),(7391,90,'/i/m/image_31062218_34_620x757_1_1_1.jpg','image',0),(7392,90,'/i/m/image_31062218_34_620x757_2_1_1.jpg','image',0),(7393,90,'/2/3/232e3e2e2_1_1.jpg','image',0),(7394,90,'/3/3/33433e2e2e_1_1.jpg','image',0),(7395,90,'/3/4/3453e3_1_1.jpg','image',0),(7396,90,'/m/a/main_10_4.jpg','image',0),(7397,90,'/i/m/image_31062218_34_620x757_1_2.jpg','image',0),(7398,90,'/i/m/image_31062218_34_620x757_2_2.jpg','image',0),(7399,90,'/b/1/b1_35.jpg','image',0),(7400,90,'/b/2/b2_35.jpg','image',0),(7401,90,'/b/3/b3_34.jpg','image',0),(7402,90,'/b/4/b4_21.jpg','image',0),(7403,90,'/b/1/b1_35_1.jpg','image',0),(7404,90,'/b/2/b2_35_1.jpg','image',0),(7405,90,'/b/3/b3_34_1.jpg','image',0),(7406,90,'/b/4/b4_21_1.jpg','image',0),(7407,90,'/b/1/b1_35_2.jpg','image',0),(7408,90,'/b/2/b2_35_2.jpg','image',0),(7409,90,'/b/3/b3_34_2.jpg','image',0),(7410,90,'/b/4/b4_21_2.jpg','image',0),(7411,90,'/r/1/r1_22.jpg','image',0),(7412,90,'/r/2/r2_22.jpg','image',0),(7413,90,'/r/3/r3_22.jpg','image',0),(7414,90,'/r/4/r4_13.jpg','image',0),(7415,90,'/r/1/r1_22_1.jpg','image',0),(7416,90,'/r/2/r2_22_1.jpg','image',0),(7417,90,'/r/3/r3_22_1.jpg','image',0),(7418,90,'/r/4/r4_13_1.jpg','image',0),(7419,90,'/r/1/r1_22_2.jpg','image',0),(7420,90,'/r/2/r2_22_2.jpg','image',0),(7421,90,'/r/3/r3_22_2.jpg','image',0),(7422,90,'/r/4/r4_13_2.jpg','image',0),(7423,90,'/b/1/b1_36.jpg','image',0),(7424,90,'/b/2/b2_36.jpg','image',0),(7425,90,'/b/3/b3_35.jpg','image',0),(7426,90,'/b/4/b4_22.jpg','image',0),(7427,90,'/2/3/2323e2e2e_1_1_1.jpg','image',0),(7428,90,'/3/4/342e2e2e2e2e_1_1.jpg','image',0),(7429,90,'/2/3/232313e3e_1_1.jpg','image',0),(7430,90,'/1/3/13232e2ww1w_1_1.jpg','image',0),(7431,90,'/m/a/main_11_2_1.jpg','image',0),(7432,90,'/i/m/image_31304473_72_620x757_2_1_1.jpg','image',0),(7433,90,'/i/m/image_31304473_72_620x757_3_1_1.jpg','image',0),(7434,90,'/i/m/image_31304473_72_620x757_1_1_1.jpg','image',0),(7435,90,'/w/1/w1_28.jpg','image',0),(7436,90,'/w/2/w2_28.jpg','image',0),(7437,90,'/w/3/w3_28.jpg','image',0),(7438,90,'/w/4/w4_16.jpg','image',0),(7439,90,'/m/a/main_11_3.jpg','image',0),(7440,90,'/i/m/image_31304473_72_620x757_2_2.jpg','image',0),(7441,90,'/i/m/image_31304473_72_620x757_3_2.jpg','image',0),(7442,90,'/i/m/image_31304473_72_620x757_1_2.jpg','image',0),(7443,90,'/i/m/image_31304473_72_620x757_4_1.jpg','image',0),(7444,90,'/w/1/w1_28_1.jpg','image',0),(7445,90,'/w/2/w2_28_1.jpg','image',0),(7446,90,'/w/3/w3_28_1.jpg','image',0),(7447,90,'/w/4/w4_16_1.jpg','image',0),(7448,90,'/w/1/w1_28_2.jpg','image',0),(7449,90,'/w/2/w2_28_2.jpg','image',0),(7450,90,'/w/3/w3_28_2.jpg','image',0),(7451,90,'/w/4/w4_16_2.jpg','image',0),(7452,90,'/w/1/w1_28_3.jpg','image',0),(7453,90,'/w/2/w2_28_3.jpg','image',0),(7454,90,'/w/3/w3_28_3.jpg','image',0),(7455,90,'/w/4/w4_16_3.jpg','image',0),(7456,90,'/b/1/b1_37.jpg','image',0),(7457,90,'/b/2/b2_37.jpg','image',0),(7458,90,'/b/3/b3_36.jpg','image',0),(7459,90,'/b/4/b4_23.jpg','image',0),(7460,90,'/b/1/b1_37_1.jpg','image',0),(7461,90,'/b/2/b2_37_1.jpg','image',0),(7462,90,'/b/3/b3_36_1.jpg','image',0),(7463,90,'/b/4/b4_23_1.jpg','image',0),(7464,90,'/b/1/b1_37_2.jpg','image',0),(7465,90,'/b/2/b2_37_2.jpg','image',0),(7466,90,'/b/3/b3_36_2.jpg','image',0),(7467,90,'/b/4/b4_23_2.jpg','image',0),(7468,90,'/b/1/b1_37_3.jpg','image',0),(7469,90,'/b/2/b2_37_3.jpg','image',0),(7470,90,'/b/3/b3_36_3.jpg','image',0),(7471,90,'/b/4/b4_23_3.jpg','image',0),(7472,90,'/w/1/w1_29.jpg','image',0),(7473,90,'/w/2/w2_29.jpg','image',0),(7474,90,'/w/3/w3_29.jpg','image',0),(7475,90,'/w/4/w4_17.jpg','image',0),(7476,90,'/b/1/b1_38.jpg','image',0),(7477,90,'/b/2/b2_38.jpg','image',0),(7478,90,'/b/3/b3_37.jpg','image',0),(7479,90,'/b/1/b1_38_1.jpg','image',0),(7480,90,'/b/2/b2_38_1.jpg','image',0),(7481,90,'/b/3/b3_37_1.jpg','image',0),(7482,90,'/b/1/b1_38_2.jpg','image',0),(7483,90,'/b/2/b2_38_2.jpg','image',0),(7484,90,'/b/3/b3_37_2.jpg','image',0),(7485,90,'/b/1/b1_38_3.jpg','image',0),(7486,90,'/b/2/b2_38_3.jpg','image',0),(7487,90,'/b/3/b3_37_3.jpg','image',0),(7488,90,'/b/1/b1_38_4.jpg','image',0),(7489,90,'/b/2/b2_38_4.jpg','image',0),(7490,90,'/b/3/b3_37_4.jpg','image',0),(7491,90,'/1/_/1_19.jpg','image',0),(7492,90,'/2/_/2_19.jpg','image',0),(7493,90,'/3/_/3_19.jpg','image',0),(7494,90,'/1/_/1_19_1.jpg','image',0),(7495,90,'/2/_/2_19_1.jpg','image',0),(7496,90,'/3/_/3_19_1.jpg','image',0),(7497,90,'/1/_/1_19_2.jpg','image',0),(7498,90,'/2/_/2_19_2.jpg','image',0),(7499,90,'/3/_/3_19_2.jpg','image',0),(7500,90,'/1/_/1_19_3.jpg','image',0),(7501,90,'/2/_/2_19_3.jpg','image',0),(7502,90,'/3/_/3_19_3.jpg','image',0),(7503,90,'/1/_/1_19_4.jpg','image',0),(7504,90,'/2/_/2_19_4.jpg','image',0),(7505,90,'/3/_/3_19_4.jpg','image',0),(7506,90,'/b/1/b1_39.jpg','image',0),(7507,90,'/b/2/b2_39.jpg','image',0),(7508,90,'/b/3/b3_38.jpg','image',0),(7509,90,'/m/a/main_12_2_1.jpg','image',0),(7510,90,'/i/m/image_31327540_81_620x757_5_1_1.jpg','image',0),(7511,90,'/i/m/image_31327540_81_620x757_2_1_1.jpg','image',0),(7512,90,'/i/m/image_31327540_81_620x757_1_1_1.jpg','image',0),(7513,90,'/2/3/231212322e_1_1.jpg','image',0),(7514,90,'/2/3/232e2d_1_1.jpg','image',0),(7515,90,'/2/3/233r23rr4r_1_1.jpg','image',0),(7516,90,'/2/3/2343e2e3e_1_1.jpg','image',0),(7517,90,'/m/a/main_12_3.jpg','image',0),(7518,90,'/i/m/image_31327540_81_620x757_5_2.jpg','image',0),(7519,90,'/i/m/image_31327540_81_620x757_2_2.jpg','image',0),(7520,90,'/i/m/image_31327540_81_620x757_1_2.jpg','image',0),(7521,90,'/i/m/image_31327540_81_620x757_4_1.jpg','image',0),(7522,90,'/i/m/image_31327540_81_620x757_3_1.jpg','image',0),(7523,90,'/i/m/image_31327540_81_620x757_6_1.jpg','image',0),(7524,90,'/r/1/r1_23.jpg','image',0),(7525,90,'/r/2/r2_23.jpg','image',0),(7526,90,'/r/3/r3_23.jpg','image',0),(7527,90,'/r/1/r1_23_1.jpg','image',0),(7528,90,'/r/2/r2_23_1.jpg','image',0),(7529,90,'/r/3/r3_23_1.jpg','image',0),(7530,90,'/r/1/r1_23_2.jpg','image',0),(7531,90,'/r/2/r2_23_2.jpg','image',0),(7532,90,'/r/3/r3_23_2.jpg','image',0),(7533,90,'/b/1/b1_40.jpg','image',0),(7534,90,'/b/2/b2_40.jpg','image',0),(7535,90,'/b/3/b3_39.jpg','image',0),(7536,90,'/b/1/b1_40_1.jpg','image',0),(7537,90,'/b/2/b2_40_1.jpg','image',0),(7538,90,'/b/3/b3_39_1.jpg','image',0),(7539,90,'/b/1/b1_40_2.jpg','image',0),(7540,90,'/b/2/b2_40_2.jpg','image',0),(7541,90,'/b/3/b3_39_2.jpg','image',0),(7542,90,'/b/1/b1_41.jpg','image',0),(7543,90,'/b/2/b2_41.jpg','image',0),(7544,90,'/b/3/b3_40.jpg','image',0),(7545,90,'/r/1/r1_24.jpg','image',0),(7546,90,'/r/2/r2_24.jpg','image',0),(7547,90,'/r/3/r3_24.jpg','image',0),(7548,90,'/r/1/r1_24_1.jpg','image',0),(7549,90,'/r/2/r2_24_1.jpg','image',0),(7550,90,'/r/3/r3_24_1.jpg','image',0),(7551,90,'/r/1/r1_24_2.jpg','image',0),(7552,90,'/r/2/r2_24_2.jpg','image',0),(7553,90,'/r/3/r3_24_2.jpg','image',0),(7554,90,'/g/1/g1_21.jpg','image',0),(7555,90,'/g/2/g2_21.jpg','image',0),(7556,90,'/g/3/g3_19.jpg','image',0),(7557,90,'/g/1/g1_21_1.jpg','image',0),(7558,90,'/g/2/g2_21_1.jpg','image',0),(7559,90,'/g/3/g3_19_1.jpg','image',0),(7560,90,'/g/1/g1_21_2.jpg','image',0),(7561,90,'/g/2/g2_21_2.jpg','image',0),(7562,90,'/g/3/g3_19_2.jpg','image',0),(7563,90,'/g/1/g1_22.jpg','image',0),(7564,90,'/g/2/g2_22.jpg','image',0),(7565,90,'/g/3/g3_20.jpg','image',0),(7566,90,'/i/m/image_31258335_50_620x757_1_2.jpg','image',0),(7567,90,'/m/a/main_3_1_2.jpg','image',0),(7568,90,'/i/m/image_31258335_50_620x757_2_3.jpg','image',0),(7569,90,'/i/m/image_31258335_50_620x757_3_2.jpg','image',0),(7570,90,'/i/m/image_31258335_50_620x757_1_2_1.jpg','image',0),(7571,90,'/m/a/main_3_1_2_1.jpg','image',0),(7572,90,'/i/m/image_31258335_50_620x757_2_3_1.jpg','image',0),(7573,90,'/i/m/image_31258335_50_620x757_3_2_1.jpg','image',0),(7574,90,'/2/3/232w21212_2.jpg','image',0),(7575,90,'/2/3/232w2w2e_2.jpg','image',0),(7576,90,'/i/m/image_31258335_50_620x757_2_1_3.jpg','image',0),(7577,90,'/3/4/34523r3e3e3_2.jpg','image',0),(7578,90,'/2/3/232w21212_1_1.jpg','image',0),(7579,90,'/2/3/232w2w2e_1_1.jpg','image',0),(7580,90,'/i/m/image_31258335_50_620x757_2_1_1_1.jpg','image',0),(7581,90,'/3/4/34523r3e3e3_1_1.jpg','image',0),(7582,90,'/m/a/main_3_1_1_2.jpg','image',0),(7583,90,'/i/m/image_31258335_50_620x757_1_1_2.jpg','image',0),(7584,90,'/i/m/image_31258335_50_620x757_2_2_1.jpg','image',0),(7585,90,'/i/m/image_31258335_50_620x757_3_1_2.jpg','image',0),(7586,90,'/b/1/b1_42.jpg','image',0),(7587,90,'/b/2/b2_42.jpg','image',0),(7588,90,'/b/3/b3_41.jpg','image',0),(7589,90,'/b/4/b4_25.jpg','image',0),(7590,90,'/b/1/b1_42_1.jpg','image',0),(7591,90,'/b/2/b2_42_1.jpg','image',0),(7592,90,'/b/3/b3_41_1.jpg','image',0),(7593,90,'/b/4/b4_25_1.jpg','image',0),(7594,90,'/b/1/b1_42_2.jpg','image',0),(7595,90,'/b/2/b2_42_2.jpg','image',0),(7596,90,'/b/3/b3_41_2.jpg','image',0),(7597,90,'/b/4/b4_25_2.jpg','image',0),(7598,90,'/g/1/g1_23.jpg','image',0),(7599,90,'/g/2/g2_23.jpg','image',0),(7600,90,'/g/3/g3_21.jpg','image',0),(7601,90,'/g/4/g4_11.jpg','image',0),(7602,90,'/g/1/g1_23_1.jpg','image',0),(7603,90,'/g/2/g2_23_1.jpg','image',0),(7604,90,'/g/3/g3_21_1.jpg','image',0),(7605,90,'/g/4/g4_11_1.jpg','image',0),(7606,90,'/g/1/g1_23_2.jpg','image',0),(7607,90,'/g/2/g2_23_2.jpg','image',0),(7608,90,'/g/3/g3_21_2.jpg','image',0),(7609,90,'/g/4/g4_11_2.jpg','image',0),(7610,90,'/b/1/b1_43.jpg','image',0),(7611,90,'/b/2/b2_43.jpg','image',0),(7612,90,'/b/3/b3_42.jpg','image',0),(7613,90,'/b/4/b4_26.jpg','image',0),(7614,90,'/g/1/g1_24.jpg','image',0),(7615,90,'/g/2/g2_24.jpg','image',0),(7616,90,'/g/3/g3_22.jpg','image',0),(7617,90,'/g/4/g4_12.jpg','image',0),(7618,90,'/g/1/g1_24_1.jpg','image',0),(7619,90,'/g/2/g2_24_1.jpg','image',0),(7620,90,'/g/3/g3_22_1.jpg','image',0),(7621,90,'/g/4/g4_12_1.jpg','image',0),(7622,90,'/g/1/g1_24_2.jpg','image',0),(7623,90,'/g/2/g2_24_2.jpg','image',0),(7624,90,'/g/3/g3_22_2.jpg','image',0),(7625,90,'/g/4/g4_12_2.jpg','image',0),(7626,90,'/b/1/b1_44.jpg','image',0),(7627,90,'/b/2/b2_44.jpg','image',0),(7628,90,'/b/3/b3_43.jpg','image',0),(7629,90,'/b/4/b4_27.jpg','image',0),(7630,90,'/b/1/b1_44_1.jpg','image',0),(7631,90,'/b/2/b2_44_1.jpg','image',0),(7632,90,'/b/3/b3_43_1.jpg','image',0),(7633,90,'/b/4/b4_27_1.jpg','image',0),(7634,90,'/b/1/b1_44_2.jpg','image',0),(7635,90,'/b/2/b2_44_2.jpg','image',0),(7636,90,'/b/3/b3_43_2.jpg','image',0),(7637,90,'/b/4/b4_27_2.jpg','image',0),(7638,90,'/g/1/g1_25.jpg','image',0),(7639,90,'/g/2/g2_25.jpg','image',0),(7640,90,'/g/3/g3_23.jpg','image',0),(7641,90,'/g/4/g4_13.jpg','image',0),(7642,90,'/i/m/image_31175794_72_620x757_1_2_1_1.jpg','image',0),(7643,90,'/i/m/image_31175794_72_620x757_2_2_1_1.jpg','image',0),(7644,90,'/i/m/image_31175794_72_620x757_3_2_1_1.jpg','image',0),(7645,90,'/m/a/main_15_3_1.jpg','image',0),(7646,90,'/2/3/232e2e2e2e_1_1_1.jpg','image',0),(7647,90,'/2/4/243232e32e_1_1.jpg','image',0),(7648,90,'/2/3/234243e2e_1_1.jpg','image',0),(7649,90,'/2/3/2322w12w1w1w2_1_1.jpg','image',0),(7650,90,'/m/a/main_15_4.jpg','image',0),(7651,90,'/i/m/image_31175794_72_620x757_1_2_2.jpg','image',0),(7652,90,'/i/m/image_31175794_72_620x757_3_2_2.jpg','image',0),(7653,90,'/i/m/image_31175794_72_620x757_2_2_2.jpg','image',0),(7654,90,'/i/m/image_31175794_72_620x757_5_2_1.jpg','image',0),(7655,90,'/i/m/image_31175794_72_620x757_7_2_1.jpg','image',0),(7656,90,'/i/m/image_31289374_75_620x757_1_2.jpg','image',0),(7657,90,'/m/a/main_16.jpg','image',0),(7658,90,'/i/m/image_31289374_75_620x757_3_2.jpg','image',0),(7659,90,'/i/m/image_31289374_75_620x757_2_3.jpg','image',0),(7660,90,'/i/m/image_31289374_75_620x757_1_2_1.jpg','image',0),(7661,90,'/m/a/main_16_1.jpg','image',0),(7662,90,'/i/m/image_31289374_75_620x757_3_2_1.jpg','image',0),(7663,90,'/i/m/image_31289374_75_620x757_2_3_1.jpg','image',0),(7664,90,'/2/3/232e2e2e2e_2.jpg','image',0),(7665,90,'/2/e/2e2ew2w2w2_2.jpg','image',0),(7666,90,'/2/3/234232e3e2_2.jpg','image',0),(7667,90,'/i/m/image_31289374_75_620x757_2_1_3.jpg','image',0),(7668,90,'/2/3/232e2e2e2e_2_1.jpg','image',0),(7669,90,'/2/e/2e2ew2w2w2_1_1.jpg','image',0),(7670,90,'/2/3/234232e3e2_1_1.jpg','image',0),(7671,90,'/i/m/image_31289374_75_620x757_2_1_1_1.jpg','image',0),(7672,90,'/m/a/main_17.jpg','image',0),(7673,90,'/i/m/image_31289374_75_620x757_1_1_2.jpg','image',0),(7674,90,'/i/m/image_31289374_75_620x757_2_2_1.jpg','image',0),(7675,90,'/i/m/image_31289374_75_620x757_3_1_2.jpg','image',0),(7676,90,'/d/1/d1_14.jpg','image',0),(7677,90,'/d/2/d2_14.jpg','image',0),(7678,90,'/d/3/d3_14.jpg','image',0),(7679,90,'/d/4/d4_11.jpg','image',0),(7680,90,'/d/1/d1_14_1.jpg','image',0),(7681,90,'/d/2/d2_14_1.jpg','image',0),(7682,90,'/d/3/d3_14_1.jpg','image',0),(7683,90,'/d/4/d4_11_1.jpg','image',0),(7684,90,'/d/1/d1_14_2.jpg','image',0),(7685,90,'/d/2/d2_14_2.jpg','image',0),(7686,90,'/d/3/d3_14_2.jpg','image',0),(7687,90,'/d/4/d4_11_2.jpg','image',0),(7688,90,'/b/1/b1_45.jpg','image',0),(7689,90,'/b/2/b2_45.jpg','image',0),(7690,90,'/b/3/b3_44.jpg','image',0),(7691,90,'/b/4/b4_28.jpg','image',0),(7692,90,'/b/1/b1_45_1.jpg','image',0),(7693,90,'/b/2/b2_45_1.jpg','image',0),(7694,90,'/b/3/b3_44_1.jpg','image',0),(7695,90,'/b/4/b4_28_1.jpg','image',0),(7696,90,'/b/1/b1_45_2.jpg','image',0),(7697,90,'/b/2/b2_45_2.jpg','image',0),(7698,90,'/b/3/b3_44_2.jpg','image',0),(7699,90,'/b/4/b4_28_2.jpg','image',0),(7700,90,'/b/1/b1_46.jpg','image',0),(7701,90,'/b/2/b2_46.jpg','image',0),(7702,90,'/b/3/b3_45.jpg','image',0),(7703,90,'/b/4/b4_29.jpg','image',0),(7704,90,'/m/a/main_15_2_1_1.jpg','image',0),(7705,90,'/i/m/image_31005341_33_620x757_4_1_1_1.jpg','image',0),(7706,90,'/i/m/image_31005341_33_620x757_2_1_1_1.jpg','image',0),(7707,90,'/i/m/image_31005341_33_620x757_1_1_1_1.jpg','image',0),(7708,90,'/2/3/2312w2w2w_1_1.jpg','image',0),(7709,90,'/3/4/34343e2e2e_1_1.jpg','image',0),(7710,90,'/2/e/2e2w1w1w1_1_1.jpg','image',0),(7711,90,'/2/e/2e2w1w1w1w1w_1_1.jpg','image',0),(7712,90,'/m/a/main_15_2_2.jpg','image',0),(7713,90,'/i/m/image_31005341_33_620x757_4_1_2.jpg','image',0),(7714,90,'/i/m/image_31005341_33_620x757_2_1_2.jpg','image',0),(7715,90,'/i/m/image_31005341_33_620x757_1_1_2.jpg','image',0),(7716,90,'/i/m/image_31005341_33_620x757_3_1_1.jpg','image',0),(7717,90,'/i/m/image_31005341_33_620x757_5_1_1.jpg','image',0),(7718,90,'/r/1/r1_25.jpg','image',0),(7719,90,'/r/2/r2_25.jpg','image',0),(7720,90,'/r/3/r3_25.jpg','image',0),(7721,90,'/r/4/r4_14.jpg','image',0),(7722,90,'/b/1/b1_47.jpg','image',0),(7723,90,'/b/2/b2_47.jpg','image',0),(7724,90,'/b/3/b3_46.jpg','image',0),(7725,90,'/b/4/b4_30.jpg','image',0),(7726,90,'/r/1/r1_25_1.jpg','image',0),(7727,90,'/r/2/r2_25_1.jpg','image',0),(7728,90,'/r/3/r3_25_1.jpg','image',0),(7729,90,'/r/4/r4_14_1.jpg','image',0),(7730,90,'/b/1/b1_47_1.jpg','image',0),(7731,90,'/b/2/b2_47_1.jpg','image',0),(7732,90,'/b/3/b3_46_1.jpg','image',0),(7733,90,'/b/4/b4_30_1.jpg','image',0),(7734,90,'/r/1/r1_25_2.jpg','image',0),(7735,90,'/r/2/r2_25_2.jpg','image',0),(7736,90,'/r/3/r3_25_2.jpg','image',0),(7737,90,'/r/4/r4_14_2.jpg','image',0),(7738,90,'/b/1/b1_47_2.jpg','image',0),(7739,90,'/b/2/b2_47_2.jpg','image',0),(7740,90,'/b/3/b3_46_2.jpg','image',0),(7741,90,'/b/4/b4_30_2.jpg','image',0),(7742,90,'/b/1/b1_48.jpg','image',0),(7743,90,'/b/2/b2_48.jpg','image',0),(7744,90,'/b/3/b3_47.jpg','image',0),(7745,90,'/b/4/b4_31.jpg','image',0),(7746,90,'/2/3/234e3e_2.jpg','image',0),(7747,90,'/i/m/image_31045897_10_620x757_2_3.jpg','image',0),(7748,90,'/2/2/22w2w1e1e_2.jpg','image',0),(7749,90,'/8/7/87hu_2.jpg','image',0),(7750,90,'/2/3/234e3e_1_1.jpg','image',0),(7751,90,'/i/m/image_31045897_10_620x757_2_2_1.jpg','image',0),(7752,90,'/2/2/22w2w1e1e_1_1.jpg','image',0),(7753,90,'/8/7/87hu_1_1.jpg','image',0),(7754,90,'/i/m/image_31045897_10_620x757_1_2.jpg','image',0),(7755,90,'/i/m/image_31045897_10_620x757_2_1_3.jpg','image',0),(7756,90,'/m/a/main_4_1_2.jpg','image',0),(7757,90,'/i/m/image_31045897_10_620x757_3_1_2.jpg','image',0),(7758,90,'/i/m/image_31045897_10_620x757_1_2_1.jpg','image',0),(7759,90,'/i/m/image_31045897_10_620x757_2_1_2_1.jpg','image',0),(7760,90,'/m/a/main_4_1_1_1.jpg','image',0),(7761,90,'/i/m/image_31045897_10_620x757_3_1_1_1.jpg','image',0),(7762,90,'/m/a/main_4_2_3.jpg','image',0),(7763,90,'/i/m/image_31045897_10_620x757_1_1_2.jpg','image',0),(7764,90,'/i/m/image_31045897_10_620x757_2_1_1_1.jpg','image',0),(7765,90,'/i/m/image_31045897_10_620x757_3_2.jpg','image',0),(7766,90,'/b/1/b1_49.jpg','image',0),(7767,90,'/b/2/b2_49.jpg','image',0),(7768,90,'/b/3/b3_48.jpg','image',0),(7769,90,'/b/1/b1_49_1.jpg','image',0),(7770,90,'/b/2/b2_49_1.jpg','image',0),(7771,90,'/b/3/b3_48_1.jpg','image',0),(7772,90,'/b/1/b1_49_2.jpg','image',0),(7773,90,'/b/2/b2_49_2.jpg','image',0),(7774,90,'/b/3/b3_48_2.jpg','image',0),(7775,90,'/b/1/b1_49_3.jpg','image',0),(7776,90,'/b/2/b2_49_3.jpg','image',0),(7777,90,'/b/3/b3_48_3.jpg','image',0),(7778,90,'/b/1/b1_49_4.jpg','image',0),(7779,90,'/b/2/b2_49_4.jpg','image',0),(7780,90,'/b/3/b3_48_4.jpg','image',0),(7781,90,'/1/_/1_20.jpg','image',0),(7782,90,'/2/_/2_20.jpg','image',0),(7783,90,'/3/_/3_20.jpg','image',0),(7784,90,'/1/_/1_20_1.jpg','image',0),(7785,90,'/2/_/2_20_1.jpg','image',0),(7786,90,'/3/_/3_20_1.jpg','image',0),(7787,90,'/1/_/1_20_2.jpg','image',0),(7788,90,'/2/_/2_20_2.jpg','image',0),(7789,90,'/3/_/3_20_2.jpg','image',0),(7790,90,'/1/_/1_20_3.jpg','image',0),(7791,90,'/2/_/2_20_3.jpg','image',0),(7792,90,'/3/_/3_20_3.jpg','image',0),(7793,90,'/1/_/1_20_4.jpg','image',0),(7794,90,'/2/_/2_20_4.jpg','image',0),(7795,90,'/3/_/3_20_4.jpg','image',0),(7796,90,'/b/1/b1_50.jpg','image',0),(7797,90,'/b/3/b3_49.jpg','image',0),(7798,90,'/b/2/b2_50.jpg','image',0),(7799,90,'/r/1/r1_26.jpg','image',0),(7800,90,'/r/2/r2_26.jpg','image',0),(7801,90,'/r/3/r3_26.jpg','image',0),(7802,90,'/r/1/r1_26_1.jpg','image',0),(7803,90,'/r/2/r2_26_1.jpg','image',0),(7804,90,'/r/3/r3_26_1.jpg','image',0),(7805,90,'/r/1/r1_26_2.jpg','image',0),(7806,90,'/r/2/r2_26_2.jpg','image',0),(7807,90,'/r/3/r3_26_2.jpg','image',0),(7808,90,'/g/1/g1_26.jpg','image',0),(7809,90,'/g/2/g2_26.jpg','image',0),(7810,90,'/g/3/g3_24.jpg','image',0),(7811,90,'/g/1/g1_26_1.jpg','image',0),(7812,90,'/g/2/g2_26_1.jpg','image',0),(7813,90,'/g/3/g3_24_1.jpg','image',0),(7814,90,'/g/1/g1_26_2.jpg','image',0),(7815,90,'/g/2/g2_26_2.jpg','image',0),(7816,90,'/g/3/g3_24_2.jpg','image',0),(7817,90,'/g/1/g1_27.jpg','image',0),(7818,90,'/g/2/g2_27.jpg','image',0),(7819,90,'/g/3/g3_25.jpg','image',0),(7820,90,'/m/a/main_7_2_1.jpg','image',0),(7821,90,'/i/m/image_31191497_21_620x757_1_1_1.jpg','image',0),(7822,90,'/i/m/image_31191497_21_620x757_2_1_1.jpg','image',0),(7823,90,'/2/2/22w2w2w_1_1.jpg','image',0),(7824,90,'/2/3/23e2e2e_1_1.jpg','image',0),(7825,90,'/2/2/22w2w1w1w21_1_1.jpg','image',0),(7826,90,'/m/a/main_7_3.jpg','image',0),(7827,90,'/i/m/image_31191497_21_620x757_1_2.jpg','image',0),(7828,90,'/i/m/image_31191497_21_620x757_2_2.jpg','image',0),(7829,90,'/d/1/d1_15.jpg','image',0),(7830,90,'/d/2/d2_15.jpg','image',0),(7831,90,'/d/3/d3_15.jpg','image',0),(7832,90,'/d/1/d1_15_1.jpg','image',0),(7833,90,'/d/2/d2_15_1.jpg','image',0),(7834,90,'/d/3/d3_15_1.jpg','image',0),(7835,90,'/d/1/d1_15_2.jpg','image',0),(7836,90,'/d/2/d2_15_2.jpg','image',0),(7837,90,'/d/3/d3_15_2.jpg','image',0),(7838,90,'/d/1/d1_15_3.jpg','image',0),(7839,90,'/d/2/d2_15_3.jpg','image',0),(7840,90,'/d/3/d3_15_3.jpg','image',0),(7841,90,'/d/1/d1_15_4.jpg','image',0),(7842,90,'/d/2/d2_15_4.jpg','image',0),(7843,90,'/d/3/d3_15_4.jpg','image',0),(7844,90,'/d/1/d1_15_5.jpg','image',0),(7845,90,'/d/2/d2_15_5.jpg','image',0),(7846,90,'/d/3/d3_15_5.jpg','image',0),(7847,90,'/r/1/r1_27.jpg','image',0),(7848,90,'/r/2/r2_27.jpg','image',0),(7849,90,'/r/3/r3_27.jpg','image',0),(7850,90,'/r/1/r1_27_1.jpg','image',0),(7851,90,'/r/2/r2_27_1.jpg','image',0),(7852,90,'/r/3/r3_27_1.jpg','image',0),(7853,90,'/r/1/r1_27_2.jpg','image',0),(7854,90,'/r/2/r2_27_2.jpg','image',0),(7855,90,'/r/3/r3_27_2.jpg','image',0),(7856,90,'/r/1/r1_27_3.jpg','image',0),(7857,90,'/r/2/r2_27_3.jpg','image',0),(7858,90,'/r/3/r3_27_3.jpg','image',0),(7859,90,'/r/1/r1_27_4.jpg','image',0),(7860,90,'/r/2/r2_27_4.jpg','image',0),(7861,90,'/r/3/r3_27_4.jpg','image',0),(7862,90,'/r/1/r1_27_5.jpg','image',0),(7863,90,'/r/2/r2_27_5.jpg','image',0),(7864,90,'/r/3/r3_27_5.jpg','image',0),(7865,90,'/r/1/r1_28.jpg','image',0),(7866,90,'/r/2/r2_28.jpg','image',0),(7867,90,'/r/3/r3_28.jpg','image',0),(7868,90,'/b/1/b1_51.jpg','image',0),(7869,90,'/b/2/b2_51.jpg','image',0),(7870,90,'/b/3/b3_50.jpg','image',0),(7871,90,'/b/4/b4_32.jpg','image',0),(7872,90,'/b/1/b1_51_1.jpg','image',0),(7873,90,'/b/2/b2_51_1.jpg','image',0),(7874,90,'/b/3/b3_50_1.jpg','image',0),(7875,90,'/b/4/b4_32_1.jpg','image',0),(7876,90,'/b/1/b1_51_2.jpg','image',0),(7877,90,'/b/2/b2_51_2.jpg','image',0),(7878,90,'/b/3/b3_50_2.jpg','image',0),(7879,90,'/b/4/b4_32_2.jpg','image',0),(7880,90,'/b/1/b1_51_3.jpg','image',0),(7881,90,'/b/2/b2_51_3.jpg','image',0),(7882,90,'/b/3/b3_50_3.jpg','image',0),(7883,90,'/b/4/b4_32_3.jpg','image',0),(7884,90,'/w/1/w1_30.jpg','image',0),(7885,90,'/w/2/w2_30.jpg','image',0),(7886,90,'/w/3/w3_30.jpg','image',0),(7887,90,'/w/4/w4_18.jpg','image',0),(7888,90,'/w/1/w1_30_1.jpg','image',0),(7889,90,'/w/2/w2_30_1.jpg','image',0),(7890,90,'/w/3/w3_30_1.jpg','image',0),(7891,90,'/w/4/w4_18_1.jpg','image',0),(7892,90,'/w/1/w1_30_2.jpg','image',0),(7893,90,'/w/2/w2_30_2.jpg','image',0),(7894,90,'/w/3/w3_30_2.jpg','image',0),(7895,90,'/w/4/w4_18_2.jpg','image',0),(7896,90,'/w/1/w1_30_3.jpg','image',0),(7897,90,'/w/2/w2_30_3.jpg','image',0),(7898,90,'/w/3/w3_30_3.jpg','image',0),(7899,90,'/w/4/w4_18_3.jpg','image',0),(7900,90,'/b/1/b1_52.jpg','image',0),(7901,90,'/b/2/b2_52.jpg','image',0),(7902,90,'/b/3/b3_51.jpg','image',0),(7903,90,'/b/4/b4_33.jpg','image',0),(7904,90,'/b/1/b1_53.jpg','image',0),(7905,90,'/b/2/b2_53.jpg','image',0),(7906,90,'/b/3/b3_52.jpg','image',0),(7907,90,'/b/4/b4_34.jpg','image',0),(7908,90,'/b/1/b1_53_1.jpg','image',0),(7909,90,'/b/2/b2_53_1.jpg','image',0),(7910,90,'/b/3/b3_52_1.jpg','image',0),(7911,90,'/b/4/b4_34_1.jpg','image',0),(7912,90,'/b/1/b1_53_2.jpg','image',0),(7913,90,'/b/2/b2_53_2.jpg','image',0),(7914,90,'/b/3/b3_52_2.jpg','image',0),(7915,90,'/b/4/b4_34_2.jpg','image',0),(7916,90,'/1/_/1_21.jpg','image',0),(7917,90,'/2/_/2_21.jpg','image',0),(7918,90,'/3/_/3_21.jpg','image',0),(7919,90,'/4/_/4_6.jpg','image',0),(7920,90,'/1/_/1_21_1.jpg','image',0),(7921,90,'/2/_/2_21_1.jpg','image',0),(7922,90,'/3/_/3_21_1.jpg','image',0),(7923,90,'/4/_/4_6_1.jpg','image',0),(7924,90,'/1/_/1_21_2.jpg','image',0),(7925,90,'/2/_/2_21_2.jpg','image',0),(7926,90,'/3/_/3_21_2.jpg','image',0),(7927,90,'/4/_/4_6_2.jpg','image',0),(7928,90,'/b/1/b1_54.jpg','image',0),(7929,90,'/b/2/b2_54.jpg','image',0),(7930,90,'/b/3/b3_53.jpg','image',0),(7931,90,'/b/4/b4_35.jpg','image',0),(7932,90,'/b/1/b1_55.jpg','image',0),(7933,90,'/b/2/b2_55.jpg','image',0),(7934,90,'/b/3/b3_54.jpg','image',0),(7935,90,'/b/1/b1_55_1.jpg','image',0),(7936,90,'/b/2/b2_55_1.jpg','image',0),(7937,90,'/b/3/b3_54_1.jpg','image',0),(7938,90,'/b/1/b1_55_2.jpg','image',0),(7939,90,'/b/2/b2_55_2.jpg','image',0),(7940,90,'/b/3/b3_54_2.jpg','image',0),(7941,90,'/d/1/d1_16.jpg','image',0),(7942,90,'/d/2/d2_16.jpg','image',0),(7943,90,'/d/3/d3_16.jpg','image',0),(7944,90,'/d/1/d1_16_1.jpg','image',0),(7945,90,'/d/2/d2_16_1.jpg','image',0),(7946,90,'/d/3/d3_16_1.jpg','image',0),(7947,90,'/d/1/d1_16_2.jpg','image',0),(7948,90,'/d/2/d2_16_2.jpg','image',0),(7949,90,'/d/3/d3_16_2.jpg','image',0),(7950,90,'/d/1/d1_17.jpg','image',0),(7951,90,'/d/2/d2_17.jpg','image',0),(7952,90,'/d/3/d3_17.jpg','image',0),(7953,90,'/w/1/w1_31.jpg','image',0),(7954,90,'/w/2/w2_31.jpg','image',0),(7955,90,'/w/3/w3_31.jpg','image',0),(7956,90,'/w/4/w4_19.jpg','image',0),(7957,90,'/b/1/b1_56.jpg','image',0),(7958,90,'/b/2/b2_56.jpg','image',0),(7959,90,'/b/3/b3_55.jpg','image',0),(7960,90,'/b/4/b4_35_1.jpg','image',0),(7961,90,'/w/1/w1_31_1.jpg','image',0),(7962,90,'/w/2/w2_31_1.jpg','image',0),(7963,90,'/w/3/w3_31_1.jpg','image',0),(7964,90,'/w/4/w4_19_1.jpg','image',0),(7965,90,'/b/1/b1_56_1.jpg','image',0),(7966,90,'/b/2/b2_56_1.jpg','image',0),(7967,90,'/b/3/b3_55_1.jpg','image',0),(7968,90,'/b/4/b4_35_1_1.jpg','image',0),(7969,90,'/w/1/w1_31_2.jpg','image',0),(7970,90,'/w/2/w2_31_2.jpg','image',0),(7971,90,'/w/3/w3_31_2.jpg','image',0),(7972,90,'/w/4/w4_19_2.jpg','image',0),(7973,90,'/b/1/b1_56_2.jpg','image',0),(7974,90,'/b/2/b2_56_2.jpg','image',0),(7975,90,'/b/3/b3_55_2.jpg','image',0),(7976,90,'/b/4/b4_35_2.jpg','image',0),(7977,90,'/w/1/w1_31_3.jpg','image',0),(7978,90,'/w/2/w2_31_3.jpg','image',0),(7979,90,'/w/3/w3_31_3.jpg','image',0),(7980,90,'/w/4/w4_19_3.jpg','image',0),(7981,90,'/b/1/b1_56_3.jpg','image',0),(7982,90,'/b/2/b2_56_3.jpg','image',0),(7983,90,'/b/3/b3_55_3.jpg','image',0),(7984,90,'/b/4/b4_35_3.jpg','image',0),(7985,90,'/w/1/w1_32.jpg','image',0),(7986,90,'/w/2/w2_32.jpg','image',0),(7987,90,'/w/3/w3_32.jpg','image',0),(7988,90,'/w/4/w4_20.jpg','image',0),(7989,90,'/d/1/d1_18.jpg','image',0),(7990,90,'/d/2/d2_18.jpg','image',0),(7991,90,'/d/3/d3_18.jpg','image',0),(7992,90,'/d/4/d4_13.jpg','image',0),(7993,90,'/d/1/d1_18_1.jpg','image',0),(7994,90,'/d/2/d2_18_1.jpg','image',0),(7995,90,'/d/3/d3_18_1.jpg','image',0),(7996,90,'/d/4/d4_13_1.jpg','image',0),(7997,90,'/d/1/d1_18_2.jpg','image',0),(7998,90,'/d/2/d2_18_2.jpg','image',0),(7999,90,'/d/3/d3_18_2.jpg','image',0),(8000,90,'/d/4/d4_13_2.jpg','image',0),(8001,90,'/d/1/d1_18_3.jpg','image',0),(8002,90,'/d/2/d2_18_3.jpg','image',0),(8003,90,'/d/3/d3_18_3.jpg','image',0),(8004,90,'/d/4/d4_13_3.jpg','image',0),(8005,90,'/g/1/g1_28.jpg','image',0),(8006,90,'/g/2/g2_28.jpg','image',0),(8007,90,'/g/3/g3_26.jpg','image',0),(8008,90,'/g/4/g4_14.jpg','image',0),(8009,90,'/g/1/g1_28_1.jpg','image',0),(8010,90,'/g/2/g2_28_1.jpg','image',0),(8011,90,'/g/3/g3_26_1.jpg','image',0),(8012,90,'/g/4/g4_14_1.jpg','image',0),(8013,90,'/g/1/g1_28_2.jpg','image',0),(8014,90,'/g/2/g2_28_2.jpg','image',0),(8015,90,'/g/3/g3_26_2.jpg','image',0),(8016,90,'/g/4/g4_14_2.jpg','image',0),(8017,90,'/g/1/g1_28_3.jpg','image',0),(8018,90,'/g/2/g2_28_3.jpg','image',0),(8019,90,'/g/3/g3_26_3.jpg','image',0),(8020,90,'/g/4/g4_14_3.jpg','image',0),(8021,90,'/d/1/d1_19.jpg','image',0),(8022,90,'/d/2/d2_19.jpg','image',0),(8023,90,'/d/3/d3_19.jpg','image',0),(8024,90,'/d/4/d4_14.jpg','image',0),(8025,90,'/g/1/g1_29.jpg','image',0),(8026,90,'/g/2/g2_29.jpg','image',0),(8027,90,'/g/3/g3_27.jpg','image',0),(8028,90,'/g/4/g4_15.jpg','image',0),(8029,90,'/g/1/g1_29_1.jpg','image',0),(8030,90,'/g/2/g2_29_1.jpg','image',0),(8031,90,'/g/3/g3_27_1.jpg','image',0),(8032,90,'/g/4/g4_15_1.jpg','image',0),(8033,90,'/g/1/g1_29_2.jpg','image',0),(8034,90,'/g/2/g2_29_2.jpg','image',0),(8035,90,'/g/3/g3_27_2.jpg','image',0),(8036,90,'/g/4/g4_15_2.jpg','image',0),(8037,90,'/g/1/g1_29_3.jpg','image',0),(8038,90,'/g/2/g2_29_3.jpg','image',0),(8039,90,'/g/3/g3_27_3.jpg','image',0),(8040,90,'/g/4/g4_15_3.jpg','image',0),(8041,90,'/g/1/g1_29_4.jpg','image',0),(8042,90,'/g/2/g2_29_4.jpg','image',0),(8043,90,'/g/3/g3_27_4.jpg','image',0),(8044,90,'/g/4/g4_15_4.jpg','image',0),(8045,90,'/b/1/b1_57.jpg','image',0),(8046,90,'/b/2/b2_57.jpg','image',0),(8047,90,'/b/3/b3_56.jpg','image',0),(8048,90,'/b/4/b4_36.jpg','image',0),(8049,90,'/b/1/b1_57_1.jpg','image',0),(8050,90,'/b/2/b2_57_1.jpg','image',0),(8051,90,'/b/3/b3_56_1.jpg','image',0),(8052,90,'/b/4/b4_36_1.jpg','image',0),(8053,90,'/b/1/b1_57_2.jpg','image',0),(8054,90,'/b/2/b2_57_2.jpg','image',0),(8055,90,'/b/3/b3_56_2.jpg','image',0),(8056,90,'/b/4/b4_36_2.jpg','image',0),(8057,90,'/b/1/b1_57_3.jpg','image',0),(8058,90,'/b/2/b2_57_3.jpg','image',0),(8059,90,'/b/3/b3_56_3.jpg','image',0),(8060,90,'/b/4/b4_36_3.jpg','image',0),(8061,90,'/b/1/b1_57_4.jpg','image',0),(8062,90,'/b/2/b2_57_4.jpg','image',0),(8063,90,'/b/3/b3_56_4.jpg','image',0),(8064,90,'/b/4/b4_36_4.jpg','image',0),(8065,90,'/b/1/b1_58.jpg','image',0),(8066,90,'/b/2/b2_58.jpg','image',0),(8067,90,'/b/3/b3_57.jpg','image',0),(8068,90,'/b/4/b4_37.jpg','image',0),(8069,90,'/1/_/1_22.jpg','image',0),(8070,90,'/2/_/2_22.jpg','image',0),(8071,90,'/3/_/3_22.jpg','image',0),(8072,90,'/1/_/1_22_1.jpg','image',0),(8073,90,'/2/_/2_22_1.jpg','image',0),(8074,90,'/3/_/3_22_1.jpg','image',0),(8075,90,'/1/_/1_22_2.jpg','image',0),(8076,90,'/2/_/2_22_2.jpg','image',0),(8077,90,'/3/_/3_22_2.jpg','image',0),(8078,90,'/1/_/1_22_3.jpg','image',0),(8079,90,'/2/_/2_22_3.jpg','image',0),(8080,90,'/3/_/3_22_3.jpg','image',0),(8081,90,'/b/1/b1_59.jpg','image',0),(8082,90,'/b/2/b2_59.jpg','image',0),(8083,90,'/b/3/b3_58.jpg','image',0),(8084,90,'/b/1/b1_59_1.jpg','image',0),(8085,90,'/b/2/b2_59_1.jpg','image',0),(8086,90,'/b/3/b3_58_1.jpg','image',0),(8087,90,'/b/1/b1_59_2.jpg','image',0),(8088,90,'/b/2/b2_59_2.jpg','image',0),(8089,90,'/b/3/b3_58_2.jpg','image',0),(8090,90,'/b/1/b1_59_3.jpg','image',0),(8091,90,'/b/2/b2_59_3.jpg','image',0),(8092,90,'/b/3/b3_58_3.jpg','image',0),(8093,90,'/b/1/b1_60.jpg','image',0),(8094,90,'/b/2/b2_60.jpg','image',0),(8095,90,'/b/3/b3_59.jpg','image',0),(8096,90,'/w/1/w1_33.jpg','image',0),(8097,90,'/w/2/w2_33.jpg','image',0),(8098,90,'/w/3/w3_33.jpg','image',0),(8099,90,'/w/4/w4_21.jpg','image',0),(8100,90,'/w/1/w1_33_1.jpg','image',0),(8101,90,'/w/2/w2_33_1.jpg','image',0),(8102,90,'/w/3/w3_33_1.jpg','image',0),(8103,90,'/w/4/w4_21_1.jpg','image',0),(8104,90,'/w/1/w1_33_2.jpg','image',0),(8105,90,'/w/2/w2_33_2.jpg','image',0),(8106,90,'/w/3/w3_33_2.jpg','image',0),(8107,90,'/w/4/w4_21_2.jpg','image',0),(8108,90,'/b/1/b1_61.jpg','image',0),(8109,90,'/b/2/b2_61.jpg','image',0),(8110,90,'/b/3/b3_60.jpg','image',0),(8111,90,'/b/4/b4_38.jpg','image',0),(8112,90,'/b/1/b1_61_1.jpg','image',0),(8113,90,'/b/2/b2_61_1.jpg','image',0),(8114,90,'/b/3/b3_60_1.jpg','image',0),(8115,90,'/b/4/b4_38_1.jpg','image',0),(8116,90,'/b/1/b1_61_2.jpg','image',0),(8117,90,'/b/2/b2_61_2.jpg','image',0),(8118,90,'/b/3/b3_60_2.jpg','image',0),(8119,90,'/b/4/b4_38_2.jpg','image',0),(8120,90,'/w/1/w1_34.jpg','image',0),(8121,90,'/w/2/w2_34.jpg','image',0),(8122,90,'/w/3/w3_34.jpg','image',0),(8123,90,'/w/4/w4_22.jpg','image',0),(8124,90,'/r/1/r1_29.jpg','image',0),(8125,90,'/r/2/r2_29.jpg','image',0),(8126,90,'/r/3/r3_29.jpg','image',0),(8127,90,'/r/4/r4_16.jpg','image',0),(8128,90,'/r/1/r1_29_1.jpg','image',0),(8129,90,'/r/2/r2_29_1.jpg','image',0),(8130,90,'/r/3/r3_29_1.jpg','image',0),(8131,90,'/r/4/r4_16_1.jpg','image',0),(8132,90,'/r/1/r1_29_2.jpg','image',0),(8133,90,'/r/2/r2_29_2.jpg','image',0),(8134,90,'/r/3/r3_29_2.jpg','image',0),(8135,90,'/r/4/r4_16_2.jpg','image',0),(8136,90,'/w/1/w1_35.jpg','image',0),(8137,90,'/w/2/w2_35.jpg','image',0),(8138,90,'/w/3/w3_35.jpg','image',0),(8139,90,'/w/4/w4_23.jpg','image',0),(8140,90,'/w/1/w1_35_1.jpg','image',0),(8141,90,'/w/2/w2_35_1.jpg','image',0),(8142,90,'/w/3/w3_35_1.jpg','image',0),(8143,90,'/w/4/w4_23_1.jpg','image',0),(8144,90,'/w/1/w1_35_2.jpg','image',0),(8145,90,'/w/2/w2_35_2.jpg','image',0),(8146,90,'/w/3/w3_35_2.jpg','image',0),(8147,90,'/w/4/w4_23_2.jpg','image',0),(8148,90,'/w/1/w1_36.jpg','image',0),(8149,90,'/w/2/w2_36.jpg','image',0),(8150,90,'/w/3/w3_36.jpg','image',0),(8151,90,'/w/4/w4_24.jpg','image',0),(8152,90,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_3.jpg','image',0),(8153,90,'/0/3/038_b2f26eea-4343-4453-ae75-e59def6fa13b_3.jpg','image',0),(8154,90,'/0/3/038_de5e44e3-159d-4df1-a18a-8ef7ea6a45e8_3.jpg','image',0),(8155,90,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_2_1.jpg','image',0),(8156,90,'/0/3/038_b2f26eea-4343-4453-ae75-e59def6fa13b_2_1.jpg','image',0),(8157,90,'/0/3/038_de5e44e3-159d-4df1-a18a-8ef7ea6a45e8_2_1.jpg','image',0),(8158,90,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_3_1.jpg','image',0),(8159,90,'/0/3/038_b2f26eea-4343-4453-ae75-e59def6fa13b_3_1.jpg','image',0),(8160,90,'/0/3/038_de5e44e3-159d-4df1-a18a-8ef7ea6a45e8_3_1.jpg','image',0),(8161,90,'/2/3/23r4r4r4_1_1_1.jpg','image',0),(8162,90,'/2/3/2343e3e2e_1_1.jpg','image',0),(8163,90,'/3/3/3343r3r_1_1.jpg','image',0),(8164,90,'/2/3/23r4r4r4_1_1_1_1.jpg','image',0),(8165,90,'/2/3/2343e3e2e_1_1_1.jpg','image',0),(8166,90,'/3/3/3343r3r_1_1_1.jpg','image',0),(8167,90,'/2/3/23r4r4r4_1_1_2.jpg','image',0),(8168,90,'/2/3/2343e3e2e_1_2.jpg','image',0),(8169,90,'/3/3/3343r3r_1_2.jpg','image',0),(8170,90,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_1_2.jpg','image',0),(8171,90,'/0/3/038_b2f26eea-4343-4453-ae75-e59def6fa13b_1_2.jpg','image',0),(8172,90,'/0/3/038_de5e44e3-159d-4df1-a18a-8ef7ea6a45e8_1_2.jpg','image',0),(8173,90,'/2/4/24334r4r3r_3.jpg','image',0),(8174,90,'/2/2/221w1w1w_3.jpg','image',0),(8175,90,'/2/2/22w11w1www_3.jpg','image',0),(8176,90,'/2/3/232e2e2_3.jpg','image',0),(8177,90,'/2/4/24334r4r3r_1_1.jpg','image',0),(8178,90,'/2/2/221w1w1w_1_1.jpg','image',0),(8179,90,'/2/2/22w11w1www_1_1.jpg','image',0),(8180,90,'/2/3/232e2e2_1_1.jpg','image',0),(8181,90,'/2/4/24334r4r3r_2_1.jpg','image',0),(8182,90,'/2/2/221w1w1w_2_1.jpg','image',0),(8183,90,'/2/2/22w11w1www_2_1.jpg','image',0),(8184,90,'/2/3/232e2e2_2_1.jpg','image',0),(8185,90,'/i/m/image_31268637_45_970x1182_0_3.jpg','image',0),(8186,90,'/i/m/image_31268637_45_970x1182_1_3.jpg','image',0),(8187,90,'/i/m/image_31268637_45_970x1182_2_3.jpg','image',0),(8188,90,'/i/m/image_31268637_45_970x1182_3_3.jpg','image',0),(8189,90,'/i/m/image_31268637_45_970x1182_0_1_2.jpg','image',0),(8190,90,'/i/m/image_31268637_45_970x1182_1_1_2.jpg','image',0),(8191,90,'/i/m/image_31268637_45_970x1182_2_1_2.jpg','image',0),(8192,90,'/i/m/image_31268637_45_970x1182_3_1_2.jpg','image',0),(8193,90,'/i/m/image_31268637_45_970x1182_0_2_1.jpg','image',0),(8194,90,'/i/m/image_31268637_45_970x1182_1_2_1.jpg','image',0),(8195,90,'/i/m/image_31268637_45_970x1182_2_2_1.jpg','image',0),(8196,90,'/i/m/image_31268637_45_970x1182_3_2_1.jpg','image',0),(8197,90,'/w/1/w1_37.jpg','image',0),(8198,90,'/w/2/w2_37.jpg','image',0),(8199,90,'/w/3/w3_37.jpg','image',0),(8200,90,'/w/4/w4_25.jpg','image',0),(8201,90,'/b/1/b1_62.jpg','image',0),(8202,90,'/b/2/b2_62.jpg','image',0),(8203,90,'/b/3/b3_61.jpg','image',0),(8204,90,'/b/4/b4_39.jpg','image',0),(8205,90,'/w/1/w1_37_1.jpg','image',0),(8206,90,'/w/2/w2_37_1.jpg','image',0),(8207,90,'/w/3/w3_37_1.jpg','image',0),(8208,90,'/w/4/w4_25_1.jpg','image',0),(8209,90,'/b/1/b1_62_1.jpg','image',0),(8210,90,'/b/2/b2_62_1.jpg','image',0),(8211,90,'/b/3/b3_61_1.jpg','image',0),(8212,90,'/b/4/b4_39_1.jpg','image',0),(8213,90,'/w/1/w1_37_2.jpg','image',0),(8214,90,'/w/2/w2_37_2.jpg','image',0),(8215,90,'/w/3/w3_37_2.jpg','image',0),(8216,90,'/w/4/w4_25_2.jpg','image',0),(8217,90,'/b/1/b1_62_2.jpg','image',0),(8218,90,'/b/2/b2_62_2.jpg','image',0),(8219,90,'/b/3/b3_61_2.jpg','image',0),(8220,90,'/b/4/b4_39_2.jpg','image',0),(8221,90,'/w/1/w1_37_3.jpg','image',0),(8222,90,'/w/2/w2_37_3.jpg','image',0),(8223,90,'/w/3/w3_37_3.jpg','image',0),(8224,90,'/w/4/w4_25_3.jpg','image',0),(8225,90,'/b/1/b1_62_3.jpg','image',0),(8226,90,'/b/2/b2_62_3.jpg','image',0),(8227,90,'/b/3/b3_61_3.jpg','image',0),(8228,90,'/b/4/b4_39_3.jpg','image',0),(8229,90,'/w/1/w1_38.jpg','image',0),(8230,90,'/w/2/w2_38.jpg','image',0),(8231,90,'/w/3/w3_38.jpg','image',0),(8232,90,'/w/4/w4_26.jpg','image',0),(8233,90,'/i/m/image_31262293_21_970x1182_0_3.jpg','image',0),(8234,90,'/i/m/image_31262293_21_970x1182_1_3.jpg','image',0),(8235,90,'/i/m/image_31262293_21_970x1182_2_3.jpg','image',0),(8236,90,'/i/m/image_31262293_21_970x1182_3_2.jpg','image',0),(8237,90,'/i/m/image_31262293_21_970x1182_0_1_2.jpg','image',0),(8238,90,'/i/m/image_31262293_21_970x1182_1_1_2.jpg','image',0),(8239,90,'/i/m/image_31262293_21_970x1182_2_1_2.jpg','image',0),(8240,90,'/i/m/image_31262293_21_970x1182_3_1_1.jpg','image',0),(8241,90,'/i/m/image_31262293_21_970x1182_0_2_2.jpg','image',0),(8242,90,'/i/m/image_31262293_21_970x1182_1_2_2.jpg','image',0),(8243,90,'/i/m/image_31262293_21_970x1182_2_2_2.jpg','image',0),(8244,90,'/i/m/image_31262293_21_970x1182_3_2_1.jpg','image',0),(8245,90,'/3/4/343e2e2e3_3.jpg','image',0),(8246,90,'/2/4/2453464r3r3_3.jpg','image',0),(8247,90,'/2/4/24435t5t5t_3.jpg','image',0),(8248,90,'/2/4/24444r4r_3.jpg','image',0),(8249,90,'/3/4/343e2e2e3_1_1.jpg','image',0),(8250,90,'/2/4/2453464r3r3_1_1.jpg','image',0),(8251,90,'/2/4/24435t5t5t_1_1.jpg','image',0),(8252,90,'/2/4/24444r4r_1_1.jpg','image',0),(8253,90,'/3/4/343e2e2e3_2_1.jpg','image',0),(8254,90,'/2/4/2453464r3r3_2_1.jpg','image',0),(8255,90,'/2/4/24435t5t5t_2_1.jpg','image',0),(8256,90,'/2/4/24444r4r_2_1.jpg','image',0),(8257,90,'/i/m/image_31262293_21_970x1182_3_3.jpg','image',0),(8258,90,'/i/m/image_31262293_21_970x1182_2_4.jpg','image',0),(8259,90,'/i/m/image_31262293_21_970x1182_1_4.jpg','image',0),(8260,90,'/i/m/image_31262293_21_970x1182_0_4.jpg','image',0),(8261,90,'/d/1/d1_20.jpg','image',0),(8262,90,'/d/2/d2_20.jpg','image',0),(8263,90,'/d/3/d3_20.jpg','image',0),(8264,90,'/d/1/d1_20_1.jpg','image',0),(8265,90,'/d/2/d2_20_1.jpg','image',0),(8266,90,'/d/3/d3_20_1.jpg','image',0),(8267,90,'/d/1/d1_20_2.jpg','image',0),(8268,90,'/d/2/d2_20_2.jpg','image',0),(8269,90,'/d/3/d3_20_2.jpg','image',0),(8270,90,'/r/1/r1_30.jpg','image',0),(8271,90,'/r/2/r2_30.jpg','image',0),(8272,90,'/r/3/r3_30.jpg','image',0),(8273,90,'/r/1/r1_30_1.jpg','image',0),(8274,90,'/r/2/r2_30_1.jpg','image',0),(8275,90,'/r/3/r3_30_1.jpg','image',0),(8276,90,'/r/1/r1_30_2.jpg','image',0),(8277,90,'/r/2/r2_30_2.jpg','image',0),(8278,90,'/r/3/r3_30_2.jpg','image',0),(8279,90,'/w/1/w1_39.jpg','image',0),(8280,90,'/w/2/w2_39.jpg','image',0),(8281,90,'/w/3/w3_39.jpg','image',0),(8282,90,'/w/1/w1_39_1.jpg','image',0),(8283,90,'/w/2/w2_39_1.jpg','image',0),(8284,90,'/w/3/w3_39_1.jpg','image',0),(8285,90,'/w/1/w1_39_2.jpg','image',0),(8286,90,'/w/2/w2_39_2.jpg','image',0),(8287,90,'/w/3/w3_39_2.jpg','image',0),(8288,90,'/b/b/bb1_2_3.jpg','image',0),(8289,90,'/b/b/bb2_2_3.jpg','image',0),(8290,90,'/b/b/bb3_2_3.jpg','image',0),(8291,90,'/b/b/bb1_2_1_1.jpg','image',0),(8292,90,'/b/b/bb2_2_1_1.jpg','image',0),(8293,90,'/b/b/bb3_2_1_1.jpg','image',0),(8294,90,'/b/b/bb1_2_2_1.jpg','image',0),(8295,90,'/b/b/bb2_2_2_1.jpg','image',0),(8296,90,'/b/b/bb3_2_2_1.jpg','image',0),(8297,90,'/b/1/b1_63.jpg','image',0),(8298,90,'/b/2/b2_63.jpg','image',0),(8299,90,'/b/3/b3_62.jpg','image',0),(8300,90,'/b/1/b1_63_1.jpg','image',0),(8301,90,'/b/2/b2_63_1.jpg','image',0),(8302,90,'/b/3/b3_62_1.jpg','image',0),(8303,90,'/b/1/b1_63_2.jpg','image',0),(8304,90,'/b/2/b2_63_2.jpg','image',0),(8305,90,'/b/3/b3_62_2.jpg','image',0),(8306,90,'/1/_/1_23.jpg','image',0),(8307,90,'/2/_/2_23.jpg','image',0),(8308,90,'/3/_/3_23.jpg','image',0),(8309,90,'/2/3/232e2e_3.jpg','image',0),(8310,90,'/2/e/2e2e2e2e_3.jpg','image',0),(8311,90,'/2/4/2432e2w2w_3.jpg','image',0),(8312,90,'/2/3/232e23e2_3.jpg','image',0),(8313,90,'/2/3/232e2e_1_1.jpg','image',0),(8314,90,'/2/e/2e2e2e2e_1_1.jpg','image',0),(8315,90,'/2/4/2432e2w2w_1_1.jpg','image',0),(8316,90,'/2/3/232e23e2_1_1.jpg','image',0),(8317,90,'/2/3/232e2e_2_1.jpg','image',0),(8318,90,'/2/e/2e2e2e2e_2_1.jpg','image',0),(8319,90,'/2/4/2432e2w2w_2_1.jpg','image',0),(8320,90,'/2/3/232e23e2_2_1.jpg','image',0),(8321,90,'/i/m/image_31104994_83_970x1182_0_3.jpg','image',0),(8322,90,'/i/m/image_31104994_83_970x1182_1_3.jpg','image',0),(8323,90,'/i/m/image_31104994_83_970x1182_2_3.jpg','image',0),(8324,90,'/i/m/image_31104994_83_970x1182_3_3.jpg','image',0),(8325,90,'/i/m/image_31104994_83_970x1182_0_2_1.jpg','image',0),(8326,90,'/i/m/image_31104994_83_970x1182_1_2_1.jpg','image',0),(8327,90,'/i/m/image_31104994_83_970x1182_2_2_1.jpg','image',0),(8328,90,'/i/m/image_31104994_83_970x1182_3_2_1.jpg','image',0),(8329,90,'/i/m/image_31104994_83_970x1182_0_3_1.jpg','image',0),(8330,90,'/i/m/image_31104994_83_970x1182_1_3_1.jpg','image',0),(8331,90,'/i/m/image_31104994_83_970x1182_2_3_1.jpg','image',0),(8332,90,'/i/m/image_31104994_83_970x1182_3_3_1.jpg','image',0),(8333,90,'/i/m/image_31104994_83_970x1182_3_1_2.jpg','image',0),(8334,90,'/i/m/image_31104994_83_970x1182_2_1_2.jpg','image',0),(8335,90,'/i/m/image_31104994_83_970x1182_1_1_2.jpg','image',0),(8336,90,'/i/m/image_31104994_83_970x1182_0_1_2.jpg','image',0),(8337,90,'/1/_/1_24_2.jpg','image',0),(8338,90,'/2/_/2_24_2.jpg','image',0),(8339,90,'/3/_/3_24_2.jpg','image',0),(8340,90,'/4/_/4_7_2.jpg','image',0),(8341,90,'/1/_/1_25.jpg','image',0),(8342,90,'/2/_/2_25.jpg','image',0),(8343,90,'/3/_/3_25.jpg','image',0),(8344,90,'/1/_/1_26.jpg','image',0),(8345,90,'/2/_/2_26.jpg','image',0),(8346,90,'/3/_/3_26.jpg','image',0),(8347,90,'/4/_/4_8.jpg','image',0),(8348,90,'/1/_/1_27.jpg','image',0),(8349,90,'/2/_/2_27.jpg','image',0),(8350,90,'/3/_/3_27.jpg','image',0),(8351,90,'/4/_/4_9.jpg','image',0),(8352,90,'/2/4/2432e2e2e2_3.jpg','image',0),(8353,90,'/2/3/232e2e3e3_3.jpg','image',0),(8354,90,'/2/3/232324343_3.jpg','image',0),(8355,90,'/2/3/232e2d3e2_3.jpg','image',0),(8356,90,'/2/4/2432e2e2e2_1_1.jpg','image',0),(8357,90,'/2/3/232e2e3e3_1_1.jpg','image',0),(8358,90,'/2/3/232324343_1_1.jpg','image',0),(8359,90,'/2/3/232e2d3e2_1_1.jpg','image',0),(8360,90,'/2/4/2432e2e2e2_2_1.jpg','image',0),(8361,90,'/2/3/232e2e3e3_2_1.jpg','image',0),(8362,90,'/2/3/232324343_2_1.jpg','image',0),(8363,90,'/2/3/232e2d3e2_2_1.jpg','image',0),(8364,90,'/i/m/image_31332644_47_970x1182_0_3.jpg','image',0),(8365,90,'/i/m/image_31332644_47_970x1182_1_3.jpg','image',0),(8366,90,'/i/m/image_31332644_47_970x1182_2_3.jpg','image',0),(8367,90,'/i/m/image_31332644_47_970x1182_3_3.jpg','image',0),(8368,90,'/i/m/image_31332644_47_970x1182_0_2_1.jpg','image',0),(8369,90,'/i/m/image_31332644_47_970x1182_1_2_1.jpg','image',0),(8370,90,'/i/m/image_31332644_47_970x1182_2_2_1.jpg','image',0),(8371,90,'/i/m/image_31332644_47_970x1182_3_2_1.jpg','image',0),(8372,90,'/i/m/image_31332644_47_970x1182_0_3_1.jpg','image',0),(8373,90,'/i/m/image_31332644_47_970x1182_1_3_1.jpg','image',0),(8374,90,'/i/m/image_31332644_47_970x1182_2_3_1.jpg','image',0),(8375,90,'/i/m/image_31332644_47_970x1182_3_3_1.jpg','image',0),(8376,90,'/i/m/image_31332644_47_970x1182_0_1_2.jpg','image',0),(8377,90,'/i/m/image_31332644_47_970x1182_1_1_2.jpg','image',0),(8378,90,'/i/m/image_31332644_47_970x1182_2_1_2.jpg','image',0),(8379,90,'/i/m/image_31332644_47_970x1182_3_1_2.jpg','image',0),(8380,90,'/i/m/image_31241601_81_620x757_0_3.jpg','image',0),(8381,90,'/i/m/image_31241601_81_620x757_1_3.jpg','image',0),(8382,90,'/i/m/image_31241601_81_620x757_2_3.jpg','image',0),(8383,90,'/i/m/image_31241601_81_620x757_3_3.jpg','image',0),(8384,90,'/i/m/image_31241601_81_620x757_0_2_1.jpg','image',0),(8385,90,'/i/m/image_31241601_81_620x757_1_2_1.jpg','image',0),(8386,90,'/i/m/image_31241601_81_620x757_2_2_1.jpg','image',0),(8387,90,'/i/m/image_31241601_81_620x757_3_2_1.jpg','image',0),(8388,90,'/i/m/image_31241601_81_620x757_0_3_1.jpg','image',0),(8389,90,'/i/m/image_31241601_81_620x757_1_3_1.jpg','image',0),(8390,90,'/i/m/image_31241601_81_620x757_2_3_1.jpg','image',0),(8391,90,'/i/m/image_31241601_81_620x757_3_3_1.jpg','image',0),(8392,90,'/2/3/232w1w1_3.jpg','image',0),(8393,90,'/3/5/3543422s2_3.jpg','image',0),(8394,90,'/2/3/232w2w1w_3.jpg','image',0),(8395,90,'/3/4/342e2e2e2e_3.jpg','image',0),(8396,90,'/2/3/232w1w1_1_1.jpg','image',0),(8397,90,'/3/5/3543422s2_1_1.jpg','image',0),(8398,90,'/2/3/232w2w1w_1_1.jpg','image',0),(8399,90,'/3/4/342e2e2e2e_1_1.jpg','image',0),(8400,90,'/2/3/232w1w1_2_1.jpg','image',0),(8401,90,'/3/5/3543422s2_2_1.jpg','image',0),(8402,90,'/2/3/232w2w1w_2_1.jpg','image',0),(8403,90,'/3/4/342e2e2e2e_2_1.jpg','image',0),(8404,90,'/i/m/image_31241601_81_620x757_0_1_2.jpg','image',0),(8405,90,'/i/m/image_31241601_81_620x757_1_1_2.jpg','image',0),(8406,90,'/i/m/image_31241601_81_620x757_2_1_2.jpg','image',0),(8407,90,'/i/m/image_31241601_81_620x757_3_1_2.jpg','image',0),(8408,90,'/b/1/b1_64.jpg','image',0),(8409,90,'/b/2/b2_64.jpg','image',0),(8410,90,'/b/3/b3_63.jpg','image',0),(8411,90,'/b/4/b4_40.jpg','image',0),(8412,90,'/b/1/b1_64_1.jpg','image',0),(8413,90,'/b/2/b2_64_1.jpg','image',0),(8414,90,'/b/3/b3_63_1.jpg','image',0),(8415,90,'/b/4/b4_40_1.jpg','image',0),(8416,90,'/b/1/b1_64_2.jpg','image',0),(8417,90,'/b/2/b2_64_2.jpg','image',0),(8418,90,'/b/3/b3_63_2.jpg','image',0),(8419,90,'/b/4/b4_40_2.jpg','image',0),(8420,90,'/d/1/d1_22.jpg','image',0),(8421,90,'/d/2/d2_22.jpg','image',0),(8422,90,'/d/3/d3_22.jpg','image',0),(8423,90,'/d/4/d4_15.jpg','image',0),(8424,90,'/d/1/d1_22_1.jpg','image',0),(8425,90,'/d/2/d2_22_1.jpg','image',0),(8426,90,'/d/3/d3_22_1.jpg','image',0),(8427,90,'/d/4/d4_15_1.jpg','image',0),(8428,90,'/d/1/d1_22_2.jpg','image',0),(8429,90,'/d/2/d2_22_2.jpg','image',0),(8430,90,'/d/3/d3_22_2.jpg','image',0),(8431,90,'/d/4/d4_15_2.jpg','image',0),(8432,90,'/b/1/b1_65.jpg','image',0),(8433,90,'/b/2/b2_65.jpg','image',0),(8434,90,'/b/3/b3_64.jpg','image',0),(8435,90,'/b/4/b4_41.jpg','image',0),(8436,90,'/i/m/image_31292416_21_970x1182_0_3.jpg','image',0),(8437,90,'/i/m/image_31292416_21_970x1182_1_3.jpg','image',0),(8438,90,'/i/m/image_31292416_21_970x1182_2_3.jpg','image',0),(8439,90,'/i/m/image_31292416_21_970x1182_3_3.jpg','image',0),(8440,90,'/i/m/image_31292416_21_970x1182_0_2_1.jpg','image',0),(8441,90,'/i/m/image_31292416_21_970x1182_1_2_1.jpg','image',0),(8442,90,'/i/m/image_31292416_21_970x1182_2_2_1.jpg','image',0),(8443,90,'/i/m/image_31292416_21_970x1182_3_2_1.jpg','image',0),(8444,90,'/i/m/image_31292416_21_970x1182_0_3_1.jpg','image',0),(8445,90,'/i/m/image_31292416_21_970x1182_1_3_1.jpg','image',0),(8446,90,'/i/m/image_31292416_21_970x1182_2_3_1.jpg','image',0),(8447,90,'/i/m/image_31292416_21_970x1182_3_3_1.jpg','image',0),(8448,90,'/2/w/2w2w2w111_1_1.jpg','image',0),(8449,90,'/2/w/2w23232323_1_1.jpg','image',0),(8450,90,'/2/3/23222w2w2ee_1_1.jpg','image',0),(8451,90,'/2/3/23232e22w2w_1_1.jpg','image',0),(8452,90,'/2/w/2w2w2w111_1_1_1.jpg','image',0),(8453,90,'/2/w/2w23232323_1_1_1.jpg','image',0),(8454,90,'/2/3/23222w2w2ee_1_1_1.jpg','image',0),(8455,90,'/2/3/23232e22w2w_1_1_1.jpg','image',0),(8456,90,'/2/w/2w2w2w111_1_2.jpg','image',0),(8457,90,'/2/w/2w23232323_1_2.jpg','image',0),(8458,90,'/2/3/23222w2w2ee_1_2.jpg','image',0),(8459,90,'/2/3/23232e22w2w_1_2.jpg','image',0),(8460,90,'/i/m/image_31292416_21_970x1182_0_1_2.jpg','image',0),(8461,90,'/i/m/image_31292416_21_970x1182_1_1_2.jpg','image',0),(8462,90,'/i/m/image_31292416_21_970x1182_2_1_2.jpg','image',0),(8463,90,'/i/m/image_31292416_21_970x1182_3_1_2.jpg','image',0),(8464,90,'/i/m/image_30811612_22_970x1182_0_3.jpg','image',0),(8465,90,'/i/m/image_30811612_22_970x1182_1_3.jpg','image',0),(8466,90,'/i/m/image_30811612_22_970x1182_2_1_2.jpg','image',0),(8467,90,'/i/m/image_30811612_22_970x1182_3_3.jpg','image',0),(8468,90,'/i/m/image_30811612_22_970x1182_0_2_1.jpg','image',0),(8469,90,'/i/m/image_30811612_22_970x1182_1_2_1.jpg','image',0),(8470,90,'/i/m/image_30811612_22_970x1182_2_1_1_1.jpg','image',0),(8471,90,'/i/m/image_30811612_22_970x1182_3_2_1.jpg','image',0),(8472,90,'/i/m/image_30811612_22_970x1182_0_3_1.jpg','image',0),(8473,90,'/i/m/image_30811612_22_970x1182_1_3_1.jpg','image',0),(8474,90,'/i/m/image_30811612_22_970x1182_2_1_2_1.jpg','image',0),(8475,90,'/i/m/image_30811612_22_970x1182_3_3_1.jpg','image',0),(8476,90,'/2/2/22e33r_3.jpg','image',0),(8477,90,'/2/3/232e3e3e3_3.jpg','image',0),(8478,90,'/2/2/22w231313_3.jpg','image',0),(8479,90,'/2/3/2323e2e2e22_3.jpg','image',0),(8480,90,'/2/2/22e33r_1_1.jpg','image',0),(8481,90,'/2/3/232e3e3e3_1_1.jpg','image',0),(8482,90,'/2/2/22w231313_1_1.jpg','image',0),(8483,90,'/2/3/2323e2e2e22_1_1.jpg','image',0),(8484,90,'/2/2/22e33r_2_1.jpg','image',0),(8485,90,'/2/3/232e3e3e3_2_1.jpg','image',0),(8486,90,'/2/2/22w231313_2_1.jpg','image',0),(8487,90,'/2/3/2323e2e2e22_2_1.jpg','image',0),(8488,90,'/i/m/image_30811612_22_970x1182_0_1_2.jpg','image',0),(8489,90,'/i/m/image_30811612_22_970x1182_1_1_2.jpg','image',0),(8490,90,'/i/m/image_30811612_22_970x1182_2_2_1.jpg','image',0),(8491,90,'/i/m/image_30811612_22_970x1182_3_1_2.jpg','image',0),(8492,90,'/2/3/2323e2e2e_2_1.jpg','image',0),(8493,90,'/2/3/2323232_4.jpg','image',0),(8494,90,'/2/3/2332e32e_4.jpg','image',0),(8495,90,'/1/2/12132e2e2we_4.jpg','image',0),(8496,90,'/2/3/2323e2e2e_2_1_1.jpg','image',0),(8497,90,'/2/3/2323232_1_1.jpg','image',0),(8498,90,'/2/3/2332e32e_1_1.jpg','image',0),(8499,90,'/1/2/12132e2e2we_1_1.jpg','image',0),(8500,90,'/2/3/2323e2e2e_2_2.jpg','image',0),(8501,90,'/2/3/2323232_2_1.jpg','image',0),(8502,90,'/2/3/2332e32e_2_1.jpg','image',0),(8503,90,'/1/2/12132e2e2we_2_1.jpg','image',0),(8504,90,'/2/3/2323e2e2e_2_3.jpg','image',0),(8505,90,'/2/3/2323232_3_1.jpg','image',0),(8506,90,'/2/3/2332e32e_3_1.jpg','image',0),(8507,90,'/1/2/12132e2e2we_3_1.jpg','image',0),(8508,90,'/i/m/image_31237526_30_970x1182_0_4.jpg','image',0),(8509,90,'/i/m/image_31237526_30_970x1182_1_4.jpg','image',0),(8510,90,'/i/m/image_31237526_30_970x1182_2_4.jpg','image',0),(8511,90,'/i/m/image_31237526_30_970x1182_3_4.jpg','image',0),(8512,90,'/i/m/image_31237526_30_970x1182_0_2_1.jpg','image',0),(8513,90,'/i/m/image_31237526_30_970x1182_1_2_1.jpg','image',0),(8514,90,'/i/m/image_31237526_30_970x1182_2_2_1.jpg','image',0),(8515,90,'/i/m/image_31237526_30_970x1182_3_2_1.jpg','image',0),(8516,90,'/i/m/image_31237526_30_970x1182_0_3_1.jpg','image',0),(8517,90,'/i/m/image_31237526_30_970x1182_1_3_1.jpg','image',0),(8518,90,'/i/m/image_31237526_30_970x1182_2_3_1.jpg','image',0),(8519,90,'/i/m/image_31237526_30_970x1182_3_3_1.jpg','image',0),(8520,90,'/i/m/image_31237526_30_970x1182_0_4_1.jpg','image',0),(8521,90,'/i/m/image_31237526_30_970x1182_1_4_1.jpg','image',0),(8522,90,'/i/m/image_31237526_30_970x1182_2_4_1.jpg','image',0),(8523,90,'/i/m/image_31237526_30_970x1182_3_4_1.jpg','image',0),(8524,90,'/i/m/image_31237526_30_970x1182_0_1_2.jpg','image',0),(8525,90,'/i/m/image_31237526_30_970x1182_2_1_2.jpg','image',0),(8526,90,'/i/m/image_31237526_30_970x1182_1_1_2.jpg','image',0),(8527,90,'/i/m/image_31237526_30_970x1182_3_1_2.jpg','image',0),(8528,90,'/2/3/23423433_5.jpg','image',0),(8529,90,'/3/4/343d3d4f3_5.jpg','image',0),(8530,90,'/3/4/343r3r3r_5.jpg','image',0),(8531,90,'/2/3/23423433_1_1.jpg','image',0),(8532,90,'/3/4/343d3d4f3_1_1.jpg','image',0),(8533,90,'/3/4/343r3r3r_1_1.jpg','image',0),(8534,90,'/2/3/23423433_2_1.jpg','image',0),(8535,90,'/3/4/343d3d4f3_2_1.jpg','image',0),(8536,90,'/3/4/343r3r3r_2_1.jpg','image',0),(8537,90,'/2/3/23423433_3_1.jpg','image',0),(8538,90,'/3/4/343d3d4f3_3_1.jpg','image',0),(8539,90,'/3/4/343r3r3r_3_1.jpg','image',0),(8540,90,'/2/3/23423433_4_1.jpg','image',0),(8541,90,'/3/4/343d3d4f3_4_1.jpg','image',0),(8542,90,'/3/4/343r3r3r_4_1.jpg','image',0),(8543,90,'/i/m/image_31093629_20_620x757_0_5.jpg','image',0),(8544,90,'/i/m/image_31093629_20_620x757_1_5.jpg','image',0),(8545,90,'/i/m/image_31093629_20_620x757_5_5.jpg','image',0),(8546,90,'/i/m/image_31093629_20_620x757_0_2_1.jpg','image',0),(8547,90,'/i/m/image_31093629_20_620x757_1_2_1.jpg','image',0),(8548,90,'/i/m/image_31093629_20_620x757_5_2_1.jpg','image',0),(8549,90,'/i/m/image_31093629_20_620x757_0_3_1.jpg','image',0),(8550,90,'/i/m/image_31093629_20_620x757_1_3_1.jpg','image',0),(8551,90,'/i/m/image_31093629_20_620x757_5_3_1.jpg','image',0),(8552,90,'/i/m/image_31093629_20_620x757_0_4_1.jpg','image',0),(8553,90,'/i/m/image_31093629_20_620x757_1_4_1.jpg','image',0),(8554,90,'/i/m/image_31093629_20_620x757_5_4_1.jpg','image',0),(8555,90,'/i/m/image_31093629_20_620x757_0_5_1.jpg','image',0),(8556,90,'/i/m/image_31093629_20_620x757_1_5_1.jpg','image',0),(8557,90,'/i/m/image_31093629_20_620x757_5_5_1.jpg','image',0),(8558,90,'/2/3/2342ee3e3_5.jpg','image',0),(8559,90,'/3/3/33e3e23232_5.jpg','image',0),(8560,90,'/2/e/2e3e3e3e2e_5.jpg','image',0),(8561,90,'/2/3/2342ee3e3_1_1.jpg','image',0),(8562,90,'/3/3/33e3e23232_1_1.jpg','image',0),(8563,90,'/2/e/2e3e3e3e2e_1_1.jpg','image',0),(8564,90,'/2/3/2342ee3e3_2_1.jpg','image',0),(8565,90,'/3/3/33e3e23232_2_1.jpg','image',0),(8566,90,'/2/e/2e3e3e3e2e_2_1.jpg','image',0),(8567,90,'/2/3/2342ee3e3_3_1.jpg','image',0),(8568,90,'/3/3/33e3e23232_3_1.jpg','image',0),(8569,90,'/2/e/2e3e3e3e2e_3_1.jpg','image',0),(8570,90,'/2/3/2342ee3e3_4_1.jpg','image',0),(8571,90,'/3/3/33e3e23232_4_1.jpg','image',0),(8572,90,'/2/e/2e3e3e3e2e_4_1.jpg','image',0),(8573,90,'/i/m/image_31093629_20_620x757_0_1_2.jpg','image',0),(8574,90,'/i/m/image_31093629_20_620x757_1_1_2.jpg','image',0),(8575,90,'/i/m/image_31093629_20_620x757_5_1_2.jpg','image',0),(8576,90,'/2/3/235423r4f4r_3_1.jpg','image',0),(8577,90,'/3/4/343r3r4r4_3_1.jpg','image',0),(8578,90,'/2/3/232e32e3e_3_1.jpg','image',0),(8579,90,'/2/3/235423r4f4r_3_1_1.jpg','image',0),(8580,90,'/3/4/343r3r4r4_3_1_1.jpg','image',0),(8581,90,'/2/3/232e32e3e_3_1_1.jpg','image',0),(8582,90,'/2/3/235423r4f4r_3_2.jpg','image',0),(8583,90,'/3/4/343r3r4r4_3_2.jpg','image',0),(8584,90,'/2/3/232e32e3e_3_2.jpg','image',0),(8585,90,'/2/3/235423r4f4r_3_3.jpg','image',0),(8586,90,'/3/4/343r3r4r4_3_3.jpg','image',0),(8587,90,'/2/3/232e32e3e_3_3.jpg','image',0),(8588,90,'/i/m/image_31333018_65_620x757_0_4.jpg','image',0),(8589,90,'/i/m/image_31333018_65_620x757_4_4.jpg','image',0),(8590,90,'/i/m/image_31333018_65_620x757_1-1_4.jpg','image',0),(8591,90,'/i/m/image_31333018_65_620x757_0_2_1.jpg','image',0),(8592,90,'/i/m/image_31333018_65_620x757_4_2_1.jpg','image',0),(8593,90,'/i/m/image_31333018_65_620x757_1-1_2_1.jpg','image',0),(8594,90,'/i/m/image_31333018_65_620x757_0_3_1.jpg','image',0),(8595,90,'/i/m/image_31333018_65_620x757_4_3_1.jpg','image',0),(8596,90,'/i/m/image_31333018_65_620x757_1-1_3_1.jpg','image',0),(8597,90,'/i/m/image_31333018_65_620x757_0_4_1.jpg','image',0),(8598,90,'/i/m/image_31333018_65_620x757_4_4_1.jpg','image',0),(8599,90,'/i/m/image_31333018_65_620x757_1-1_4_1.jpg','image',0),(8600,90,'/i/m/image_31333018_65_620x757_0_1_2.jpg','image',0),(8601,90,'/i/m/image_31333018_65_620x757_1-1_1_2.jpg','image',0),(8602,90,'/i/m/image_31333018_65_620x757_4_1_2.jpg','image',0),(8603,90,'/i/m/image_30945868_82_620x757_0_6.jpg','image',0),(8604,90,'/i/m/image_30945868_82_620x757_4_6.jpg','image',0),(8605,90,'/i/m/image_30945868_82_620x757_3_6.jpg','image',0),(8606,90,'/i/m/image_30945868_82_620x757_0_2_1.jpg','image',0),(8607,90,'/i/m/image_30945868_82_620x757_4_2_1.jpg','image',0),(8608,90,'/i/m/image_30945868_82_620x757_3_2_1.jpg','image',0),(8609,90,'/i/m/image_30945868_82_620x757_0_3_1.jpg','image',0),(8610,90,'/i/m/image_30945868_82_620x757_4_3_1.jpg','image',0),(8611,90,'/i/m/image_30945868_82_620x757_3_3_1.jpg','image',0),(8612,90,'/i/m/image_30945868_82_620x757_0_4_1.jpg','image',0),(8613,90,'/i/m/image_30945868_82_620x757_4_4_1.jpg','image',0),(8614,90,'/i/m/image_30945868_82_620x757_3_4_1.jpg','image',0),(8615,90,'/i/m/image_30945868_82_620x757_0_5_1.jpg','image',0),(8616,90,'/i/m/image_30945868_82_620x757_4_5_1.jpg','image',0),(8617,90,'/i/m/image_30945868_82_620x757_3_5_1.jpg','image',0),(8618,90,'/i/m/image_30945868_82_620x757_0_6_1.jpg','image',0),(8619,90,'/i/m/image_30945868_82_620x757_4_6_1.jpg','image',0),(8620,90,'/i/m/image_30945868_82_620x757_3_6_1.jpg','image',0),(8621,90,'/4/3/43454r4r4r_3_1.jpg','image',0),(8622,90,'/3/4/343422e2e_3_1.jpg','image',0),(8623,90,'/3/4/3423w2w2e_3_1.jpg','image',0),(8624,90,'/4/3/43454r4r4r_3_1_1.jpg','image',0),(8625,90,'/3/4/343422e2e_3_1_1.jpg','image',0),(8626,90,'/3/4/3423w2w2e_3_1_1.jpg','image',0),(8627,90,'/4/3/43454r4r4r_3_2.jpg','image',0),(8628,90,'/3/4/343422e2e_3_2.jpg','image',0),(8629,90,'/3/4/3423w2w2e_3_2.jpg','image',0),(8630,90,'/4/3/43454r4r4r_3_3.jpg','image',0),(8631,90,'/3/4/343422e2e_3_3.jpg','image',0),(8632,90,'/3/4/3423w2w2e_3_3.jpg','image',0),(8633,90,'/4/3/43454r4r4r_3_4.jpg','image',0),(8634,90,'/3/4/343422e2e_3_4.jpg','image',0),(8635,90,'/3/4/3423w2w2e_3_4.jpg','image',0),(8636,90,'/4/3/43454r4r4r_3_5.jpg','image',0),(8637,90,'/3/4/343422e2e_3_5.jpg','image',0),(8638,90,'/3/4/3423w2w2e_3_5.jpg','image',0),(8639,90,'/i/m/image_30945868_82_620x757_0_1_2.jpg','image',0),(8640,90,'/i/m/image_30945868_82_620x757_4_1_2.jpg','image',0),(8641,90,'/i/m/image_30945868_82_620x757_3_1_2.jpg','image',0),(8642,90,'/2/1/211w1w1w2_3_1.jpg','image',0),(8643,90,'/2/e/2e2e2w2w2w_3_1.jpg','image',0),(8644,90,'/2/w/2w1q2w2w2_3_1.jpg','image',0),(8645,90,'/3/2/3232e2e3e_3_1.jpg','image',0),(8646,90,'/2/1/211w1w1w2_3_1_1.jpg','image',0),(8647,90,'/2/e/2e2e2w2w2w_3_1_1.jpg','image',0),(8648,90,'/2/w/2w1q2w2w2_3_1_1.jpg','image',0),(8649,90,'/3/2/3232e2e3e_3_1_1.jpg','image',0),(8650,90,'/2/1/211w1w1w2_3_1_2.jpg','image',0),(8651,90,'/2/e/2e2e2w2w2w_3_1_2.jpg','image',0),(8652,90,'/2/w/2w1q2w2w2_3_1_2.jpg','image',0),(8653,90,'/3/2/3232e2e3e_3_1_2.jpg','image',0),(8654,90,'/2/1/211w1w1w2_3_1_3.jpg','image',0),(8655,90,'/2/e/2e2e2w2w2w_3_1_3.jpg','image',0),(8656,90,'/2/w/2w1q2w2w2_3_1_3.jpg','image',0),(8657,90,'/3/2/3232e2e3e_3_1_3.jpg','image',0),(8658,90,'/i/m/image_30930729_37_970x1182_0_2_1.jpg','image',0),(8659,90,'/i/m/image_30930729_37_970x1182_1_2_1.jpg','image',0),(8660,90,'/i/m/image_30930729_37_970x1182_2_2_1.jpg','image',0),(8661,90,'/i/m/image_30930729_37_970x1182_3_2_1.jpg','image',0),(8662,90,'/i/m/image_30930729_37_970x1182_0_2_1_1.jpg','image',0),(8663,90,'/i/m/image_30930729_37_970x1182_1_2_1_1.jpg','image',0),(8664,90,'/i/m/image_30930729_37_970x1182_2_2_1_1.jpg','image',0),(8665,90,'/i/m/image_30930729_37_970x1182_3_2_1_1.jpg','image',0),(8666,90,'/i/m/image_30930729_37_970x1182_0_2_2.jpg','image',0),(8667,90,'/i/m/image_30930729_37_970x1182_1_2_2.jpg','image',0),(8668,90,'/i/m/image_30930729_37_970x1182_2_2_2.jpg','image',0),(8669,90,'/i/m/image_30930729_37_970x1182_3_2_2.jpg','image',0),(8670,90,'/i/m/image_30930729_37_970x1182_0_2_3.jpg','image',0),(8671,90,'/i/m/image_30930729_37_970x1182_1_2_3.jpg','image',0),(8672,90,'/i/m/image_30930729_37_970x1182_2_2_3.jpg','image',0),(8673,90,'/i/m/image_30930729_37_970x1182_3_2_3.jpg','image',0),(8674,90,'/i/m/image_30930729_37_970x1182_0_3_1.jpg','image',0),(8675,90,'/i/m/image_30930729_37_970x1182_1_3_1.jpg','image',0),(8676,90,'/i/m/image_30930729_37_970x1182_3_3_1.jpg','image',0),(8677,90,'/i/m/image_30930729_37_970x1182_2_3_1.jpg','image',0),(8678,90,'/i/m/image_31074190_83_620x757_0_6.jpg','image',0),(8679,90,'/i/m/image_31074190_83_620x757_1_6.jpg','image',0),(8680,90,'/i/m/image_31074190_83_620x757_4_6.jpg','image',0),(8681,90,'/i/m/image_31074190_83_620x757_0_2_1.jpg','image',0),(8682,90,'/i/m/image_31074190_83_620x757_1_2_1.jpg','image',0),(8683,90,'/i/m/image_31074190_83_620x757_4_2_1.jpg','image',0),(8684,90,'/i/m/image_31074190_83_620x757_0_3_1.jpg','image',0),(8685,90,'/i/m/image_31074190_83_620x757_1_3_1.jpg','image',0),(8686,90,'/i/m/image_31074190_83_620x757_4_3_1.jpg','image',0),(8687,90,'/i/m/image_31074190_83_620x757_0_4_1.jpg','image',0),(8688,90,'/i/m/image_31074190_83_620x757_1_4_1.jpg','image',0),(8689,90,'/i/m/image_31074190_83_620x757_4_4_1.jpg','image',0),(8690,90,'/i/m/image_31074190_83_620x757_0_5_1.jpg','image',0),(8691,90,'/i/m/image_31074190_83_620x757_1_5_1.jpg','image',0),(8692,90,'/i/m/image_31074190_83_620x757_4_5_1.jpg','image',0),(8693,90,'/i/m/image_31074190_83_620x757_0_6_1.jpg','image',0),(8694,90,'/i/m/image_31074190_83_620x757_1_6_1.jpg','image',0),(8695,90,'/i/m/image_31074190_83_620x757_4_6_1.jpg','image',0),(8696,90,'/2/3/2323r23r_5_1.jpg','image',0),(8697,90,'/2/3/2323243e32e2_5_1.jpg','image',0),(8698,90,'/2/3/232w2w2w2_5_1.jpg','image',0),(8699,90,'/2/3/2323r23r_5_1_1.jpg','image',0),(8700,90,'/2/3/2323243e32e2_5_1_1.jpg','image',0),(8701,90,'/2/3/232w2w2w2_5_1_1.jpg','image',0),(8702,90,'/2/3/2323r23r_5_2.jpg','image',0),(8703,90,'/2/3/2323243e32e2_5_2.jpg','image',0),(8704,90,'/2/3/232w2w2w2_5_2.jpg','image',0),(8705,90,'/2/3/2323r23r_5_3.jpg','image',0),(8706,90,'/2/3/2323243e32e2_5_3.jpg','image',0),(8707,90,'/2/3/232w2w2w2_5_3.jpg','image',0),(8708,90,'/2/3/2323r23r_5_4.jpg','image',0),(8709,90,'/2/3/2323243e32e2_5_4.jpg','image',0),(8710,90,'/2/3/232w2w2w2_5_4.jpg','image',0),(8711,90,'/2/3/2323r23r_5_5.jpg','image',0),(8712,90,'/2/3/2323243e32e2_5_5.jpg','image',0),(8713,90,'/2/3/232w2w2w2_5_5.jpg','image',0),(8714,90,'/i/m/image_31074190_83_620x757_0_1_2.jpg','image',0),(8715,90,'/i/m/image_31074190_83_620x757_4_1_2.jpg','image',0),(8716,90,'/i/m/image_31074190_83_620x757_1_1_2.jpg','image',0),(8717,90,'/i/m/image_31304863_80_970x1182_0_3.jpg','image',0),(8718,90,'/i/m/image_31304863_80_970x1182_1_3.jpg','image',0),(8719,90,'/i/m/image_31304863_80_970x1182_2_3.jpg','image',0),(8720,90,'/i/m/image_31304863_80_970x1182_3_3.jpg','image',0),(8721,90,'/i/m/image_31304863_80_970x1182_0_2_1.jpg','image',0),(8722,90,'/i/m/image_31304863_80_970x1182_1_2_1.jpg','image',0),(8723,90,'/i/m/image_31304863_80_970x1182_2_2_1.jpg','image',0),(8724,90,'/i/m/image_31304863_80_970x1182_3_2_1.jpg','image',0),(8725,90,'/i/m/image_31304863_80_970x1182_0_3_1.jpg','image',0),(8726,90,'/i/m/image_31304863_80_970x1182_1_3_1.jpg','image',0),(8727,90,'/i/m/image_31304863_80_970x1182_2_3_1.jpg','image',0),(8728,90,'/i/m/image_31304863_80_970x1182_3_3_1.jpg','image',0),(8729,90,'/e/d/eded3_2_1.jpg','image',0),(8730,90,'/5/4/54r43333_3_1.jpg','image',0),(8731,90,'/4/r/4r5tt6t6t_2_1.jpg','image',0),(8732,90,'/3/4/345trrwq_2_1.jpg','image',0),(8733,90,'/e/d/eded3_2_1_1.jpg','image',0),(8734,90,'/5/4/54r43333_3_1_1.jpg','image',0),(8735,90,'/4/r/4r5tt6t6t_2_1_1.jpg','image',0),(8736,90,'/3/4/345trrwq_2_1_1.jpg','image',0),(8737,90,'/e/d/eded3_2_2.jpg','image',0),(8738,90,'/5/4/54r43333_3_2.jpg','image',0),(8739,90,'/4/r/4r5tt6t6t_2_2.jpg','image',0),(8740,90,'/3/4/345trrwq_2_2.jpg','image',0),(8741,90,'/i/m/image_31304863_80_970x1182_0_1_2.jpg','image',0),(8742,90,'/i/m/image_31304863_80_970x1182_1_1_2.jpg','image',0),(8743,90,'/i/m/image_31304863_80_970x1182_2_1_2.jpg','image',0),(8744,90,'/i/m/image_31304863_80_970x1182_3_1_2.jpg','image',0),(8745,90,'/i/m/image_31204067_55_970x1182_0_2.jpg','image',0),(8746,90,'/i/m/image_31204067_55_970x1182_1_2.jpg','image',0),(8747,90,'/i/m/image_31204067_55_970x1182_2_2.jpg','image',0),(8748,90,'/i/m/image_31204067_55_970x1182_3_2.jpg','image',0),(8749,90,'/i/m/image_31204067_55_970x1182_0_2_2.jpg','image',0),(8750,90,'/i/m/image_31204067_55_970x1182_1_2_2.jpg','image',0),(8751,90,'/i/m/image_31204067_55_970x1182_2_2_2.jpg','image',0),(8752,90,'/i/m/image_31204067_55_970x1182_3_2_2.jpg','image',0),(8753,90,'/i/m/image_31204067_55_970x1182_0_3_1.jpg','image',0),(8754,90,'/i/m/image_31204067_55_970x1182_1_3_1.jpg','image',0),(8755,90,'/i/m/image_31204067_55_970x1182_2_3_1.jpg','image',0),(8756,90,'/i/m/image_31204067_55_970x1182_3_3_1.jpg','image',0),(8757,90,'/8/u/8u7yhuhu_2_1_1.jpg','image',0),(8758,90,'/e/4/e45trrr_2_1_1.jpg','image',0),(8759,90,'/7/y/7y6t6t6tguuu_2_1_1.jpg','image',0),(8760,90,'/6/y/6y7u8i9_2_1_1.jpg','image',0),(8761,90,'/8/u/8u7yhuhu_2_1_1_1.jpg','image',0),(8762,90,'/e/4/e45trrr_2_1_1_1.jpg','image',0),(8763,90,'/7/y/7y6t6t6tguuu_2_1_1_1.jpg','image',0),(8764,90,'/6/y/6y7u8i9_2_1_1_1.jpg','image',0),(8765,90,'/8/u/8u7yhuhu_2_1_2.jpg','image',0),(8766,90,'/e/4/e45trrr_2_1_2.jpg','image',0),(8767,90,'/7/y/7y6t6t6tguuu_2_1_2.jpg','image',0),(8768,90,'/6/y/6y7u8i9_2_1_2.jpg','image',0),(8769,90,'/4/r/4r4f4f4_1_1.jpg','image',0),(8770,90,'/7/u/7u7y6y6y6_1_1.jpg','image',0),(8771,90,'/5/t/5t5t6y6y6y_1_1.jpg','image',0),(8772,90,'/4/5/456ytrg_1_1.jpg','image',0),(8773,90,'/4/r/4r4f4f4_1_1_1.jpg','image',0),(8774,90,'/7/u/7u7y6y6y6_1_1_1.jpg','image',0),(8775,90,'/5/t/5t5t6y6y6y_1_1_1.jpg','image',0),(8776,90,'/4/5/456ytrg_1_1_1.jpg','image',0),(8777,90,'/4/r/4r4f4f4_1_2.jpg','image',0),(8778,90,'/7/u/7u7y6y6y6_1_2.jpg','image',0),(8779,90,'/5/t/5t5t6y6y6y_1_2.jpg','image',0),(8780,90,'/4/5/456ytrg_1_2.jpg','image',0),(8781,90,'/i/m/image_31204067_55_970x1182_0_1_1.jpg','image',0),(8782,90,'/i/m/image_31204067_55_970x1182_1_1_1.jpg','image',0),(8783,90,'/i/m/image_31204067_55_970x1182_2_1_1.jpg','image',0),(8784,90,'/i/m/image_31204067_55_970x1182_3_1_1.jpg','image',0),(8785,90,'/i/m/image_31124658_10_970x1182_0_4.jpg','image',0),(8786,90,'/i/m/image_31124658_10_970x1182_3_4.jpg','image',0),(8787,90,'/i/m/image_31124658_10_970x1182_2_4.jpg','image',0),(8788,90,'/i/m/image_31124658_10_970x1182_1_4.jpg','image',0),(8789,90,'/i/m/image_31124658_10_970x1182_0_2_2.jpg','image',0),(8790,90,'/i/m/image_31124658_10_970x1182_3_2_2.jpg','image',0),(8791,90,'/i/m/image_31124658_10_970x1182_2_2_2.jpg','image',0),(8792,90,'/i/m/image_31124658_10_970x1182_1_2_2.jpg','image',0),(8793,90,'/i/m/image_31124658_10_970x1182_0_3_1.jpg','image',0),(8794,90,'/i/m/image_31124658_10_970x1182_3_3_1.jpg','image',0),(8795,90,'/i/m/image_31124658_10_970x1182_2_3_1.jpg','image',0),(8796,90,'/i/m/image_31124658_10_970x1182_1_3_1.jpg','image',0),(8797,90,'/8/7/87yygyg6g_2_3.jpg','image',0),(8798,90,'/4/5/4544r4t45t_2_3.jpg','image',0),(8799,90,'/4/5/45343ff_2_3.jpg','image',0),(8800,90,'/8/u/8u8u8u8_2_3.jpg','image',0),(8801,90,'/8/7/87yygyg6g_2_1_2.jpg','image',0),(8802,90,'/4/5/4544r4t45t_2_1_2.jpg','image',0),(8803,90,'/4/5/45343ff_2_1_2.jpg','image',0),(8804,90,'/8/u/8u8u8u8_2_1_2.jpg','image',0),(8805,90,'/8/7/87yygyg6g_2_2_2.jpg','image',0),(8806,90,'/4/5/4544r4t45t_2_2_2.jpg','image',0),(8807,90,'/4/5/45343ff_2_2_2.jpg','image',0),(8808,90,'/8/u/8u8u8u8_2_2_2.jpg','image',0),(8809,90,'/i/m/image_31124658_10_970x1182_0_1_2.jpg','image',0),(8810,90,'/i/m/image_31124658_10_970x1182_1_1_2.jpg','image',0),(8811,90,'/i/m/image_31124658_10_970x1182_2_1_2.jpg','image',0),(8812,90,'/i/m/image_31124658_10_970x1182_3_1_2.jpg','image',0),(8813,90,'/b/1/b1_66.jpg','image',0),(8814,90,'/b/2/b2_66.jpg','image',0),(8815,90,'/b/3/b3_65.jpg','image',0),(8816,90,'/b/1/b1_66_1.jpg','image',0),(8817,90,'/b/2/b2_66_1.jpg','image',0),(8818,90,'/b/3/b3_65_1.jpg','image',0),(8819,90,'/b/1/b1_66_2.jpg','image',0),(8820,90,'/b/2/b2_66_2.jpg','image',0),(8821,90,'/b/3/b3_65_2.jpg','image',0),(8822,90,'/b/1/b1_66_3.jpg','image',0),(8823,90,'/b/2/b2_66_3.jpg','image',0),(8824,90,'/b/3/b3_65_3.jpg','image',0),(8825,90,'/1/_/1_29.jpg','image',0),(8826,90,'/2/_/2_29.jpg','image',0),(8827,90,'/3/_/3_29.jpg','image',0),(8828,90,'/1/_/1_29_1.jpg','image',0),(8829,90,'/2/_/2_29_1.jpg','image',0),(8830,90,'/3/_/3_29_1.jpg','image',0),(8831,90,'/1/_/1_29_2.jpg','image',0),(8832,90,'/2/_/2_29_2.jpg','image',0),(8833,90,'/3/_/3_29_2.jpg','image',0),(8834,90,'/1/_/1_29_3.jpg','image',0),(8835,90,'/2/_/2_29_3.jpg','image',0),(8836,90,'/3/_/3_29_3.jpg','image',0),(8837,90,'/b/1/b1_67.jpg','image',0),(8838,90,'/b/2/b2_67.jpg','image',0),(8839,90,'/b/3/b3_66.jpg','image',0),(8840,90,'/i/m/image_31151579_25_970x1182_0_4.jpg','image',0),(8841,90,'/i/m/image_31151579_25_970x1182_1_4.jpg','image',0),(8842,90,'/i/m/image_31151579_25_970x1182_2_4.jpg','image',0),(8843,90,'/i/m/image_31151579_25_970x1182_3_4.jpg','image',0),(8844,90,'/i/m/image_31151579_25_970x1182_0_2_1.jpg','image',0),(8845,90,'/i/m/image_31151579_25_970x1182_1_2_1.jpg','image',0),(8846,90,'/i/m/image_31151579_25_970x1182_2_2_1.jpg','image',0),(8847,90,'/i/m/image_31151579_25_970x1182_3_2_1.jpg','image',0),(8848,90,'/i/m/image_31151579_25_970x1182_0_3_1.jpg','image',0),(8849,90,'/i/m/image_31151579_25_970x1182_1_3_1.jpg','image',0),(8850,90,'/i/m/image_31151579_25_970x1182_2_3_1.jpg','image',0),(8851,90,'/i/m/image_31151579_25_970x1182_3_3_1.jpg','image',0),(8852,90,'/i/m/image_31151579_25_970x1182_0_4_1.jpg','image',0),(8853,90,'/i/m/image_31151579_25_970x1182_1_4_1.jpg','image',0),(8854,90,'/i/m/image_31151579_25_970x1182_2_4_1.jpg','image',0),(8855,90,'/i/m/image_31151579_25_970x1182_3_4_1.jpg','image',0),(8856,90,'/4/5/45t54tf_4.jpg','image',0),(8857,90,'/7/y/7y6t6t5r_4.jpg','image',0),(8858,90,'/5/6/564r4r44_4.jpg','image',0),(8859,90,'/e/5/e5t45t5y_4.jpg','image',0),(8860,90,'/4/5/45t54tf_1_1.jpg','image',0),(8861,90,'/7/y/7y6t6t5r_1_1.jpg','image',0),(8862,90,'/5/6/564r4r44_1_1.jpg','image',0),(8863,90,'/e/5/e5t45t5y_1_1.jpg','image',0),(8864,90,'/4/5/45t54tf_2_1.jpg','image',0),(8865,90,'/7/y/7y6t6t5r_2_1.jpg','image',0),(8866,90,'/5/6/564r4r44_2_1.jpg','image',0),(8867,90,'/e/5/e5t45t5y_2_1.jpg','image',0),(8868,90,'/4/5/45t54tf_3_1.jpg','image',0),(8869,90,'/7/y/7y6t6t5r_3_1.jpg','image',0),(8870,90,'/5/6/564r4r44_3_1.jpg','image',0),(8871,90,'/e/5/e5t45t5y_3_1.jpg','image',0),(8872,90,'/i/m/image_31151579_25_970x1182_0_1_2.jpg','image',0),(8873,90,'/i/m/image_31151579_25_970x1182_1_1_2.jpg','image',0),(8874,90,'/i/m/image_31151579_25_970x1182_2_1_2.jpg','image',0),(8875,90,'/i/m/image_31151579_25_970x1182_3_1_2.jpg','image',0),(8876,90,'/1/_/1_30.jpg','image',0),(8877,90,'/2/_/2_30.jpg','image',0),(8878,90,'/3/_/3_30.jpg','image',0),(8879,90,'/4/_/4_10.jpg','image',0),(8880,90,'/1/_/1_31.jpg','image',0),(8881,90,'/2/_/2_31.jpg','image',0),(8882,90,'/3/_/3_31.jpg','image',0),(8883,90,'/1/_/1_1.png','image',0),(8884,90,'/2/_/2_32.jpg','image',0),(8885,90,'/3/_/3_32.jpg','image',0),(8886,90,'/4/_/4_11.jpg','image',0),(8887,90,'/5/_/5_1.jpg','image',0),(8888,90,'/1/_/1_32.jpg','image',0),(8889,90,'/2/_/2_33.jpg','image',0),(8890,90,'/3/_/3_33.jpg','image',0),(8891,90,'/4/_/4_12.jpg','image',0);
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_media_gallery_value`
--

DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_entity_media_gallery_value` (
  `value_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Value ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `label` varchar(255) DEFAULT NULL COMMENT 'Label',
  `position` int(10) unsigned DEFAULT NULL COMMENT 'Position',
  `disabled` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Disabled',
  `record_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Id',
  PRIMARY KEY (`record_id`),
  KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_VALUE_ID` (`value_id`),
  KEY `CAT_PRD_ENTT_MDA_GLR_VAL_ENTT_ID_VAL_ID_STORE_ID` (`entity_id`,`value_id`,`store_id`),
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_VAL_ID_CAT_PRD_ENTT_MDA_GLR_VAL_ID` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=12240 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Media Gallery Attribute Value Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_media_gallery_value`
--

LOCK TABLES `catalog_product_entity_media_gallery_value` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_media_gallery_value` VALUES (375,0,81,NULL,5,0,2107),(376,0,81,NULL,6,0,2108),(377,0,81,NULL,7,0,2109),(378,0,81,NULL,8,0,2110),(686,0,549,NULL,1,0,2284),(687,0,549,NULL,2,0,2285),(688,0,549,NULL,3,0,2286),(689,0,549,NULL,4,0,2287),(690,0,550,NULL,1,0,2288),(691,0,550,NULL,2,0,2289),(692,0,550,NULL,3,0,2290),(693,0,550,NULL,4,0,2291),(694,0,551,NULL,1,0,2292),(695,0,551,NULL,2,0,2293),(696,0,551,NULL,3,0,2294),(697,0,551,NULL,4,0,2295),(698,0,552,NULL,1,0,2296),(699,0,552,NULL,2,0,2297),(700,0,552,NULL,3,0,2298),(701,0,552,NULL,4,0,2299),(702,0,553,NULL,1,0,2300),(703,0,553,NULL,2,0,2301),(704,0,553,NULL,3,0,2302),(705,0,553,NULL,4,0,2303),(706,0,554,NULL,1,0,2304),(707,0,554,NULL,2,0,2305),(708,0,554,NULL,3,0,2306),(709,0,554,NULL,4,0,2307),(710,0,555,NULL,1,0,2308),(711,0,555,NULL,2,0,2309),(712,0,555,NULL,3,0,2310),(713,0,555,NULL,4,0,2311),(714,0,556,NULL,1,0,2312),(715,0,556,NULL,2,0,2313),(716,0,556,NULL,3,0,2314),(717,0,556,NULL,4,0,2315),(718,0,557,NULL,1,0,2316),(719,0,557,NULL,2,0,2317),(720,0,557,NULL,3,0,2318),(721,0,557,NULL,4,0,2319),(722,0,558,NULL,1,0,2320),(723,0,558,NULL,2,0,2321),(724,0,558,NULL,3,0,2322),(725,0,558,NULL,4,0,2323),(726,0,559,NULL,1,0,2324),(727,0,559,NULL,2,0,2325),(728,0,559,NULL,3,0,2326),(729,0,559,NULL,4,0,2327),(730,0,560,NULL,1,0,2328),(731,0,560,NULL,2,0,2329),(732,0,560,NULL,3,0,2330),(733,0,560,NULL,4,0,2331),(734,0,561,NULL,1,0,2332),(735,0,561,NULL,2,0,2333),(736,0,561,NULL,3,0,2334),(737,0,561,NULL,4,0,2335),(738,0,562,NULL,1,0,2336),(739,0,562,NULL,2,0,2337),(740,0,562,NULL,3,0,2338),(741,0,562,NULL,4,0,2339),(742,0,563,NULL,1,0,2340),(743,0,563,NULL,2,0,2341),(744,0,563,NULL,3,0,2342),(745,0,563,NULL,4,0,2343),(746,0,564,NULL,1,0,2344),(747,0,564,NULL,2,0,2345),(748,0,564,NULL,3,0,2346),(749,0,564,NULL,4,0,2347),(750,0,565,NULL,1,0,2348),(751,0,565,NULL,2,0,2349),(752,0,565,NULL,3,0,2350),(753,0,565,NULL,4,0,2351),(754,0,566,NULL,1,0,2352),(755,0,566,NULL,2,0,2353),(756,0,566,NULL,3,0,2354),(757,0,566,NULL,4,0,2355),(758,0,567,NULL,1,0,2356),(759,0,567,NULL,2,0,2357),(760,0,567,NULL,3,0,2358),(761,0,567,NULL,4,0,2359),(762,0,568,NULL,1,0,2360),(763,0,568,NULL,2,0,2361),(764,0,568,NULL,3,0,2362),(765,0,568,NULL,4,0,2363),(766,0,569,NULL,1,0,2364),(767,0,569,NULL,2,0,2365),(768,0,569,NULL,3,0,2366),(769,0,569,NULL,4,0,2367),(770,0,570,NULL,1,0,2368),(771,0,570,NULL,2,0,2369),(772,0,570,NULL,3,0,2370),(773,0,570,NULL,4,0,2371),(774,0,571,NULL,1,0,2372),(775,0,571,NULL,2,0,2373),(776,0,571,NULL,3,0,2374),(777,0,571,NULL,4,0,2375),(778,0,572,NULL,1,0,2376),(779,0,572,NULL,2,0,2377),(780,0,572,NULL,3,0,2378),(781,0,572,NULL,4,0,2379),(782,0,573,NULL,1,0,2380),(783,0,573,NULL,2,0,2381),(784,0,573,NULL,3,0,2382),(785,0,573,NULL,4,0,2383),(786,0,574,NULL,1,0,2384),(787,0,574,NULL,2,0,2385),(788,0,574,NULL,3,0,2386),(789,0,574,NULL,4,0,2387),(790,0,575,NULL,1,0,2388),(791,0,575,NULL,2,0,2389),(792,0,575,NULL,3,0,2390),(793,0,575,NULL,4,0,2391),(794,0,576,NULL,1,0,2392),(795,0,576,NULL,2,0,2393),(796,0,576,NULL,3,0,2394),(797,0,576,NULL,4,0,2395),(798,0,577,NULL,1,0,2396),(799,0,577,NULL,2,0,2397),(800,0,577,NULL,3,0,2398),(801,0,577,NULL,4,0,2399),(802,0,578,NULL,1,0,2400),(803,0,578,NULL,2,0,2401),(804,0,578,NULL,3,0,2402),(805,0,578,NULL,4,0,2403),(954,0,614,NULL,1,0,2569),(955,0,614,NULL,2,0,2570),(956,0,614,NULL,3,0,2571),(957,0,615,NULL,1,0,2572),(958,0,615,NULL,2,0,2573),(959,0,615,NULL,3,0,2574),(960,0,616,NULL,1,0,2575),(961,0,616,NULL,2,0,2576),(962,0,616,NULL,3,0,2577),(963,0,617,NULL,1,0,2578),(964,0,617,NULL,2,0,2579),(965,0,617,NULL,3,0,2580),(966,0,618,NULL,1,0,2581),(967,0,618,NULL,2,0,2582),(968,0,618,NULL,3,0,2583),(969,0,619,NULL,1,0,2584),(970,0,619,NULL,2,0,2585),(971,0,619,NULL,3,0,2586),(972,0,620,NULL,1,0,2587),(973,0,620,NULL,2,0,2588),(974,0,620,NULL,3,0,2589),(975,0,621,NULL,1,0,2590),(976,0,621,NULL,2,0,2591),(977,0,621,NULL,3,0,2592),(978,0,622,NULL,1,0,2593),(979,0,622,NULL,2,0,2594),(980,0,622,NULL,3,0,2595),(981,0,623,NULL,1,0,2596),(982,0,623,NULL,2,0,2597),(983,0,623,NULL,3,0,2598),(984,0,624,NULL,1,0,2599),(985,0,624,NULL,2,0,2600),(986,0,624,NULL,3,0,2601),(987,0,625,NULL,1,0,2602),(988,0,625,NULL,2,0,2603),(989,0,625,NULL,3,0,2604),(990,0,626,NULL,1,0,2605),(991,0,626,NULL,2,0,2606),(992,0,626,NULL,3,0,2607),(993,0,627,NULL,1,0,2608),(994,0,627,NULL,2,0,2609),(995,0,627,NULL,3,0,2610),(996,0,628,NULL,1,0,2611),(997,0,628,NULL,2,0,2612),(998,0,628,NULL,3,0,2613),(999,0,629,NULL,1,0,2614),(1000,0,629,NULL,2,0,2615),(1001,0,629,NULL,3,0,2616),(1002,0,630,NULL,1,0,2617),(1003,0,630,NULL,2,0,2618),(1004,0,630,NULL,3,0,2619),(1005,0,631,NULL,1,0,2620),(1006,0,631,NULL,2,0,2621),(1007,0,631,NULL,3,0,2622),(1008,0,632,NULL,1,0,2623),(1009,0,632,NULL,2,0,2624),(1010,0,632,NULL,3,0,2625),(1011,0,633,NULL,1,0,2626),(1012,0,633,NULL,2,0,2627),(1013,0,633,NULL,3,0,2628),(1014,0,634,NULL,1,0,2629),(1015,0,634,NULL,2,0,2630),(1016,0,634,NULL,3,0,2631),(1017,0,635,NULL,1,0,2632),(1018,0,635,NULL,2,0,2633),(1019,0,635,NULL,3,0,2634),(1020,0,636,NULL,1,0,2635),(1021,0,636,NULL,2,0,2636),(1022,0,636,NULL,3,0,2637),(1023,0,637,NULL,1,0,2638),(1024,0,637,NULL,2,0,2639),(1025,0,637,NULL,3,0,2640),(1026,0,638,NULL,1,0,2641),(1027,0,638,NULL,2,0,2642),(1028,0,638,NULL,3,0,2643),(1029,0,639,NULL,1,0,2644),(1030,0,639,NULL,2,0,2645),(1031,0,639,NULL,3,0,2646),(1032,0,640,NULL,1,0,2647),(1033,0,640,NULL,2,0,2648),(1034,0,640,NULL,3,0,2649),(1035,0,641,NULL,1,0,2650),(1036,0,641,NULL,2,0,2651),(1037,0,641,NULL,3,0,2652),(1038,0,642,NULL,1,0,2653),(1039,0,642,NULL,2,0,2654),(1040,0,642,NULL,3,0,2655),(1041,0,643,NULL,1,0,2656),(1042,0,643,NULL,2,0,2657),(1043,0,643,NULL,3,0,2658),(1047,0,644,NULL,1,0,2668),(1048,0,644,NULL,3,0,2669),(1049,0,644,NULL,4,0,2670),(1050,0,644,NULL,5,0,2671),(1051,0,645,NULL,1,0,2672),(1052,0,645,NULL,3,0,2673),(1053,0,645,NULL,4,0,2674),(1054,0,645,NULL,5,0,2675),(1055,0,646,NULL,1,0,2676),(1056,0,646,NULL,3,0,2677),(1057,0,646,NULL,4,0,2678),(1058,0,646,NULL,5,0,2679),(1059,0,647,NULL,1,0,2680),(1060,0,647,NULL,3,0,2681),(1061,0,647,NULL,4,0,2682),(1062,0,647,NULL,5,0,2683),(1063,0,648,NULL,1,0,2684),(1064,0,648,NULL,3,0,2685),(1065,0,648,NULL,4,0,2686),(1066,0,648,NULL,5,0,2687),(1067,0,649,NULL,1,0,2688),(1068,0,649,NULL,3,0,2689),(1069,0,649,NULL,4,0,2690),(1070,0,649,NULL,5,0,2691),(1071,0,650,NULL,1,0,2692),(1072,0,650,NULL,2,0,2693),(1073,0,650,NULL,3,0,2694),(1074,0,650,NULL,4,0,2695),(1075,0,651,NULL,1,0,2696),(1076,0,651,NULL,2,0,2697),(1077,0,651,NULL,3,0,2698),(1078,0,651,NULL,4,0,2699),(1079,0,652,NULL,1,0,2700),(1080,0,652,NULL,2,0,2701),(1081,0,652,NULL,3,0,2702),(1082,0,652,NULL,4,0,2703),(1083,0,653,NULL,1,0,2704),(1084,0,653,NULL,2,0,2705),(1085,0,653,NULL,3,0,2706),(1086,0,653,NULL,4,0,2707),(1087,0,654,NULL,1,0,2708),(1088,0,654,NULL,2,0,2709),(1089,0,654,NULL,3,0,2710),(1090,0,654,NULL,4,0,2711),(1091,0,655,NULL,1,0,2712),(1092,0,655,NULL,2,0,2713),(1093,0,655,NULL,3,0,2714),(1094,0,655,NULL,4,0,2715),(1095,0,656,NULL,1,0,2716),(1096,0,656,NULL,2,0,2717),(1097,0,656,NULL,3,0,2718),(1098,0,656,NULL,4,0,2719),(1099,0,657,NULL,1,0,2720),(1100,0,657,NULL,2,0,2721),(1101,0,657,NULL,3,0,2722),(1102,0,657,NULL,4,0,2723),(1103,0,658,NULL,1,0,2724),(1104,0,658,NULL,2,0,2725),(1105,0,658,NULL,3,0,2726),(1106,0,658,NULL,4,0,2727),(1107,0,659,NULL,1,0,2728),(1108,0,659,NULL,2,0,2729),(1109,0,659,NULL,3,0,2730),(1110,0,659,NULL,4,0,2731),(1111,0,660,NULL,1,0,2732),(1112,0,660,NULL,2,0,2733),(1113,0,660,NULL,3,0,2734),(1114,0,660,NULL,4,0,2735),(1115,0,661,NULL,1,0,2736),(1116,0,661,NULL,2,0,2737),(1117,0,661,NULL,3,0,2738),(1118,0,661,NULL,4,0,2739),(1119,0,662,NULL,1,0,2740),(1120,0,662,NULL,2,0,2741),(1121,0,662,NULL,3,0,2742),(1122,0,662,NULL,4,0,2743),(1123,0,663,NULL,1,0,2744),(1124,0,663,NULL,2,0,2745),(1125,0,663,NULL,3,0,2746),(1126,0,663,NULL,4,0,2747),(1127,0,664,NULL,1,0,2748),(1128,0,664,NULL,2,0,2749),(1129,0,664,NULL,3,0,2750),(1130,0,664,NULL,4,0,2751),(1131,0,665,NULL,1,0,2752),(1132,0,665,NULL,2,0,2753),(1133,0,665,NULL,3,0,2754),(1134,0,665,NULL,4,0,2755),(1135,0,666,NULL,1,0,2756),(1136,0,666,NULL,2,0,2757),(1137,0,666,NULL,3,0,2758),(1138,0,666,NULL,4,0,2759),(1139,0,667,NULL,1,0,2760),(1140,0,667,NULL,2,0,2761),(1141,0,667,NULL,3,0,2762),(1142,0,667,NULL,4,0,2763),(1143,0,668,NULL,1,0,2764),(1144,0,668,NULL,2,0,2765),(1145,0,668,NULL,3,0,2766),(1146,0,668,NULL,4,0,2767),(1147,0,669,NULL,1,0,2768),(1148,0,669,NULL,2,0,2769),(1149,0,669,NULL,3,0,2770),(1150,0,669,NULL,4,0,2771),(1151,0,670,NULL,1,0,2772),(1152,0,670,NULL,2,0,2773),(1153,0,670,NULL,3,0,2774),(1154,0,670,NULL,4,0,2775),(1155,0,671,NULL,1,0,2776),(1156,0,671,NULL,2,0,2777),(1157,0,671,NULL,3,0,2778),(1158,0,671,NULL,4,0,2779),(1159,0,672,NULL,1,0,2780),(1160,0,672,NULL,2,0,2781),(1161,0,672,NULL,3,0,2782),(1162,0,672,NULL,4,0,2783),(1163,0,673,NULL,1,0,2784),(1164,0,673,NULL,2,0,2785),(1165,0,673,NULL,3,0,2786),(1166,0,673,NULL,4,0,2787),(1171,0,674,NULL,1,0,2796),(1172,0,674,NULL,2,0,2797),(1173,0,674,NULL,4,0,2798),(1174,0,674,NULL,5,0,2799),(1175,0,675,NULL,2,0,2800),(1176,0,675,NULL,3,0,2801),(1177,0,675,NULL,4,0,2802),(1178,0,675,NULL,5,0,2803),(1179,0,676,NULL,1,0,2804),(1180,0,676,NULL,2,0,2805),(1181,0,676,NULL,3,0,2806),(1182,0,676,NULL,4,0,2807),(1183,0,677,NULL,1,0,2808),(1184,0,677,NULL,2,0,2809),(1185,0,677,NULL,3,0,2810),(1186,0,677,NULL,4,0,2811),(1187,0,678,NULL,1,0,2812),(1188,0,678,NULL,2,0,2813),(1189,0,678,NULL,3,0,2814),(1190,0,678,NULL,4,0,2815),(1191,0,679,NULL,1,0,2816),(1192,0,679,NULL,2,0,2817),(1193,0,679,NULL,4,0,2818),(1194,0,679,NULL,5,0,2819),(1195,0,680,NULL,2,0,2820),(1196,0,680,NULL,3,0,2821),(1197,0,680,NULL,4,0,2822),(1198,0,680,NULL,5,0,2823),(1199,0,681,NULL,1,0,2824),(1200,0,681,NULL,2,0,2825),(1201,0,681,NULL,3,0,2826),(1202,0,681,NULL,4,0,2827),(1203,0,682,NULL,1,0,2828),(1204,0,682,NULL,2,0,2829),(1205,0,682,NULL,3,0,2830),(1206,0,682,NULL,4,0,2831),(1207,0,683,NULL,1,0,2832),(1208,0,683,NULL,2,0,2833),(1209,0,683,NULL,3,0,2834),(1210,0,683,NULL,4,0,2835),(1211,0,684,NULL,1,0,2836),(1212,0,684,NULL,2,0,2837),(1213,0,684,NULL,4,0,2838),(1214,0,684,NULL,5,0,2839),(1215,0,685,NULL,2,0,2840),(1216,0,685,NULL,3,0,2841),(1217,0,685,NULL,4,0,2842),(1218,0,685,NULL,5,0,2843),(1219,0,686,NULL,1,0,2844),(1220,0,686,NULL,2,0,2845),(1221,0,686,NULL,3,0,2846),(1222,0,686,NULL,4,0,2847),(1223,0,687,NULL,1,0,2848),(1224,0,687,NULL,2,0,2849),(1225,0,687,NULL,3,0,2850),(1226,0,687,NULL,4,0,2851),(1227,0,688,NULL,1,0,2852),(1228,0,688,NULL,2,0,2853),(1229,0,688,NULL,3,0,2854),(1230,0,688,NULL,4,0,2855),(1231,0,689,NULL,1,0,2856),(1232,0,689,NULL,2,0,2857),(1233,0,689,NULL,4,0,2858),(1234,0,689,NULL,5,0,2859),(1235,0,690,NULL,2,0,2860),(1236,0,690,NULL,3,0,2861),(1237,0,690,NULL,4,0,2862),(1238,0,690,NULL,5,0,2863),(1239,0,691,NULL,1,0,2864),(1240,0,691,NULL,2,0,2865),(1241,0,691,NULL,3,0,2866),(1242,0,691,NULL,4,0,2867),(1243,0,692,NULL,1,0,2868),(1244,0,692,NULL,2,0,2869),(1245,0,692,NULL,3,0,2870),(1246,0,692,NULL,4,0,2871),(1247,0,693,NULL,1,0,2872),(1248,0,693,NULL,2,0,2873),(1249,0,693,NULL,3,0,2874),(1250,0,693,NULL,4,0,2875),(1251,0,694,NULL,1,0,2876),(1252,0,694,NULL,2,0,2877),(1253,0,694,NULL,4,0,2878),(1254,0,694,NULL,5,0,2879),(1255,0,695,NULL,2,0,2880),(1256,0,695,NULL,3,0,2881),(1257,0,695,NULL,4,0,2882),(1258,0,695,NULL,5,0,2883),(1259,0,696,NULL,1,0,2884),(1260,0,696,NULL,2,0,2885),(1261,0,696,NULL,3,0,2886),(1262,0,696,NULL,4,0,2887),(1263,0,697,NULL,1,0,2888),(1264,0,697,NULL,2,0,2889),(1265,0,697,NULL,3,0,2890),(1266,0,697,NULL,4,0,2891),(1267,0,698,NULL,1,0,2892),(1268,0,698,NULL,2,0,2893),(1269,0,698,NULL,3,0,2894),(1270,0,698,NULL,4,0,2895),(1275,0,699,NULL,1,0,2908),(1276,0,699,NULL,2,0,2909),(1277,0,699,NULL,3,0,2910),(1278,0,699,NULL,4,0,2911),(1279,0,700,NULL,1,0,2912),(1280,0,700,NULL,2,0,2913),(1281,0,700,NULL,3,0,2914),(1282,0,700,NULL,4,0,2915),(1283,0,701,NULL,1,0,2916),(1284,0,701,NULL,2,0,2917),(1285,0,701,NULL,3,0,2918),(1286,0,701,NULL,4,0,2919),(1287,0,702,NULL,1,0,2920),(1288,0,702,NULL,2,0,2921),(1289,0,702,NULL,3,0,2922),(1290,0,702,NULL,4,0,2923),(1291,0,703,NULL,1,0,2924),(1292,0,703,NULL,2,0,2925),(1293,0,703,NULL,3,0,2926),(1294,0,703,NULL,4,0,2927),(1295,0,704,NULL,1,0,2928),(1296,0,704,NULL,2,0,2929),(1297,0,704,NULL,3,0,2930),(1298,0,704,NULL,4,0,2931),(1299,0,705,NULL,1,0,2932),(1300,0,705,NULL,2,0,2933),(1301,0,705,NULL,3,0,2934),(1302,0,705,NULL,4,0,2935),(1303,0,706,NULL,1,0,2936),(1304,0,706,NULL,2,0,2937),(1305,0,706,NULL,3,0,2938),(1306,0,706,NULL,4,0,2939),(1307,0,707,NULL,1,0,2940),(1308,0,707,NULL,2,0,2941),(1309,0,707,NULL,3,0,2942),(1310,0,707,NULL,4,0,2943),(1311,0,708,NULL,1,0,2944),(1312,0,708,NULL,2,0,2945),(1313,0,708,NULL,3,0,2946),(1314,0,708,NULL,4,0,2947),(1315,0,709,NULL,1,0,2948),(1316,0,709,NULL,2,0,2949),(1317,0,709,NULL,3,0,2950),(1318,0,709,NULL,4,0,2951),(1319,0,710,NULL,1,0,2952),(1320,0,710,NULL,2,0,2953),(1321,0,710,NULL,3,0,2954),(1322,0,710,NULL,4,0,2955),(1323,0,711,NULL,1,0,2956),(1324,0,711,NULL,2,0,2957),(1325,0,711,NULL,3,0,2958),(1326,0,711,NULL,4,0,2959),(1327,0,712,NULL,1,0,2960),(1328,0,712,NULL,2,0,2961),(1329,0,712,NULL,3,0,2962),(1330,0,712,NULL,4,0,2963),(1331,0,713,NULL,1,0,2964),(1332,0,713,NULL,2,0,2965),(1333,0,713,NULL,3,0,2966),(1334,0,713,NULL,4,0,2967),(1339,0,714,NULL,1,0,2972),(1340,0,714,NULL,2,0,2973),(1341,0,714,NULL,3,0,2974),(1342,0,715,NULL,1,0,2975),(1343,0,715,NULL,2,0,2976),(1344,0,715,NULL,3,0,2977),(1345,0,716,NULL,1,0,2978),(1346,0,716,NULL,2,0,2979),(1347,0,716,NULL,3,0,2980),(1348,0,717,NULL,1,0,2981),(1349,0,717,NULL,2,0,2982),(1350,0,717,NULL,3,0,2983),(1351,0,718,NULL,1,0,2984),(1352,0,718,NULL,2,0,2985),(1353,0,718,NULL,3,0,2986),(1354,0,719,NULL,1,0,2987),(1355,0,719,NULL,2,0,2988),(1356,0,719,NULL,3,0,2989),(1357,0,720,NULL,1,0,2990),(1358,0,720,NULL,2,0,2991),(1359,0,720,NULL,3,0,2992),(1360,0,721,NULL,1,0,2993),(1361,0,721,NULL,2,0,2994),(1362,0,721,NULL,3,0,2995),(1363,0,722,NULL,1,0,2996),(1364,0,722,NULL,2,0,2997),(1365,0,722,NULL,3,0,2998),(1366,0,723,NULL,1,0,2999),(1367,0,723,NULL,2,0,3000),(1368,0,723,NULL,3,0,3001),(1369,0,724,NULL,1,0,3002),(1370,0,724,NULL,2,0,3003),(1371,0,724,NULL,3,0,3004),(1372,0,725,NULL,1,0,3005),(1373,0,725,NULL,2,0,3006),(1374,0,725,NULL,3,0,3007),(1375,0,726,NULL,1,0,3008),(1376,0,726,NULL,2,0,3009),(1377,0,726,NULL,3,0,3010),(1378,0,727,NULL,1,0,3011),(1379,0,727,NULL,2,0,3012),(1380,0,727,NULL,3,0,3013),(1381,0,728,NULL,1,0,3014),(1382,0,728,NULL,2,0,3015),(1383,0,728,NULL,3,0,3016),(1384,0,729,NULL,1,0,3017),(1385,0,729,NULL,2,0,3018),(1386,0,729,NULL,3,0,3019),(1387,0,730,NULL,1,0,3020),(1388,0,730,NULL,2,0,3021),(1389,0,730,NULL,3,0,3022),(1390,0,731,NULL,1,0,3023),(1391,0,731,NULL,2,0,3024),(1392,0,731,NULL,3,0,3025),(1393,0,732,NULL,1,0,3026),(1394,0,732,NULL,2,0,3027),(1395,0,732,NULL,3,0,3028),(1396,0,733,NULL,1,0,3029),(1397,0,733,NULL,2,0,3030),(1398,0,733,NULL,3,0,3031),(1402,0,734,NULL,1,0,3035),(1403,0,734,NULL,2,0,3036),(1404,0,734,NULL,3,0,3037),(1405,0,735,NULL,1,0,3038),(1406,0,735,NULL,2,0,3039),(1407,0,735,NULL,3,0,3040),(1408,0,736,NULL,1,0,3041),(1409,0,736,NULL,2,0,3042),(1410,0,736,NULL,3,0,3043),(1411,0,737,NULL,1,0,3044),(1412,0,737,NULL,2,0,3045),(1413,0,737,NULL,3,0,3046),(1414,0,738,NULL,1,0,3047),(1415,0,738,NULL,2,0,3048),(1416,0,738,NULL,3,0,3049),(1417,0,739,NULL,1,0,3050),(1418,0,739,NULL,2,0,3051),(1419,0,739,NULL,3,0,3052),(1420,0,740,NULL,1,0,3053),(1421,0,740,NULL,2,0,3054),(1422,0,740,NULL,3,0,3055),(1423,0,741,NULL,1,0,3056),(1424,0,741,NULL,2,0,3057),(1425,0,741,NULL,3,0,3058),(1426,0,742,NULL,1,0,3059),(1427,0,742,NULL,2,0,3060),(1428,0,742,NULL,3,0,3061),(1429,0,743,NULL,1,0,3062),(1430,0,743,NULL,2,0,3063),(1431,0,743,NULL,3,0,3064),(1432,0,744,NULL,1,0,3065),(1433,0,744,NULL,2,0,3066),(1434,0,744,NULL,3,0,3067),(1435,0,745,NULL,1,0,3068),(1436,0,745,NULL,2,0,3069),(1437,0,745,NULL,3,0,3070),(1438,0,746,NULL,1,0,3071),(1439,0,746,NULL,2,0,3072),(1440,0,746,NULL,3,0,3073),(1441,0,747,NULL,1,0,3074),(1442,0,747,NULL,2,0,3075),(1443,0,747,NULL,3,0,3076),(1444,0,748,NULL,1,0,3077),(1445,0,748,NULL,2,0,3078),(1446,0,748,NULL,3,0,3079),(1450,0,749,NULL,1,0,3083),(1451,0,749,NULL,2,0,3084),(1452,0,749,NULL,3,0,3085),(1453,0,750,NULL,1,0,3086),(1454,0,750,NULL,2,0,3087),(1455,0,750,NULL,3,0,3088),(1456,0,751,NULL,1,0,3089),(1457,0,751,NULL,2,0,3090),(1458,0,751,NULL,3,0,3091),(1459,0,752,NULL,1,0,3092),(1460,0,752,NULL,2,0,3093),(1461,0,752,NULL,3,0,3094),(1462,0,753,NULL,1,0,3095),(1463,0,753,NULL,2,0,3096),(1464,0,753,NULL,3,0,3097),(1465,0,754,NULL,1,0,3098),(1466,0,754,NULL,2,0,3099),(1467,0,754,NULL,3,0,3100),(1468,0,755,NULL,1,0,3101),(1469,0,755,NULL,2,0,3102),(1470,0,755,NULL,3,0,3103),(1471,0,756,NULL,1,0,3104),(1472,0,756,NULL,2,0,3105),(1473,0,756,NULL,3,0,3106),(1474,0,757,NULL,1,0,3107),(1475,0,757,NULL,2,0,3108),(1476,0,757,NULL,3,0,3109),(1477,0,758,NULL,1,0,3110),(1478,0,758,NULL,2,0,3111),(1479,0,758,NULL,3,0,3112),(1480,0,759,NULL,1,0,3113),(1481,0,759,NULL,2,0,3114),(1482,0,759,NULL,3,0,3115),(1483,0,760,NULL,1,0,3116),(1484,0,760,NULL,2,0,3117),(1485,0,760,NULL,3,0,3118),(1486,0,761,NULL,1,0,3119),(1487,0,761,NULL,2,0,3120),(1488,0,761,NULL,3,0,3121),(1489,0,762,NULL,1,0,3122),(1490,0,762,NULL,2,0,3123),(1491,0,762,NULL,3,0,3124),(1492,0,763,NULL,1,0,3125),(1493,0,763,NULL,2,0,3126),(1494,0,763,NULL,3,0,3127),(1495,0,764,NULL,1,0,3128),(1496,0,764,NULL,2,0,3129),(1497,0,764,NULL,3,0,3130),(1498,0,765,NULL,1,0,3131),(1499,0,765,NULL,2,0,3132),(1500,0,765,NULL,3,0,3133),(1501,0,766,NULL,1,0,3134),(1502,0,766,NULL,2,0,3135),(1503,0,766,NULL,3,0,3136),(1504,0,767,NULL,1,0,3137),(1505,0,767,NULL,2,0,3138),(1506,0,767,NULL,3,0,3139),(1507,0,768,NULL,1,0,3140),(1508,0,768,NULL,2,0,3141),(1509,0,768,NULL,3,0,3142),(1513,0,769,NULL,1,0,3146),(1514,0,769,NULL,2,0,3147),(1515,0,769,NULL,3,0,3148),(1516,0,770,NULL,1,0,3149),(1517,0,770,NULL,2,0,3150),(1518,0,770,NULL,3,0,3151),(1519,0,771,NULL,1,0,3152),(1520,0,771,NULL,2,0,3153),(1521,0,771,NULL,3,0,3154),(1522,0,772,NULL,1,0,3155),(1523,0,772,NULL,2,0,3156),(1524,0,772,NULL,3,0,3157),(1525,0,773,NULL,1,0,3158),(1526,0,773,NULL,2,0,3159),(1527,0,773,NULL,3,0,3160),(1528,0,774,NULL,1,0,3161),(1529,0,774,NULL,2,0,3162),(1530,0,774,NULL,3,0,3163),(1531,0,775,NULL,1,0,3164),(1532,0,775,NULL,2,0,3165),(1533,0,775,NULL,3,0,3166),(1534,0,776,NULL,1,0,3167),(1535,0,776,NULL,2,0,3168),(1536,0,776,NULL,3,0,3169),(1537,0,777,NULL,1,0,3170),(1538,0,777,NULL,2,0,3171),(1539,0,777,NULL,3,0,3172),(1540,0,778,NULL,1,0,3173),(1541,0,778,NULL,2,0,3174),(1542,0,778,NULL,3,0,3175),(1543,0,779,NULL,1,0,3176),(1544,0,779,NULL,2,0,3177),(1545,0,779,NULL,3,0,3178),(1546,0,780,NULL,1,0,3179),(1547,0,780,NULL,2,0,3180),(1548,0,780,NULL,3,0,3181),(1549,0,781,NULL,1,0,3182),(1550,0,781,NULL,2,0,3183),(1551,0,781,NULL,4,0,3184),(1552,0,782,NULL,1,0,3185),(1553,0,782,NULL,2,0,3186),(1554,0,782,NULL,4,0,3187),(1555,0,783,NULL,1,0,3188),(1556,0,783,NULL,2,0,3189),(1557,0,783,NULL,4,0,3190),(1558,0,784,NULL,1,0,3191),(1559,0,784,NULL,2,0,3192),(1560,0,784,NULL,4,0,3193),(1561,0,785,NULL,1,0,3194),(1562,0,785,NULL,2,0,3195),(1563,0,785,NULL,3,0,3196),(1564,0,786,NULL,1,0,3197),(1565,0,786,NULL,2,0,3198),(1566,0,786,NULL,3,0,3199),(1567,0,787,NULL,1,0,3200),(1568,0,787,NULL,2,0,3201),(1569,0,787,NULL,3,0,3202),(1570,0,788,NULL,1,0,3203),(1571,0,788,NULL,2,0,3204),(1572,0,788,NULL,3,0,3205),(1576,0,789,NULL,1,0,3212),(1577,0,789,NULL,2,0,3213),(1578,0,789,NULL,3,0,3214),(1579,0,790,NULL,1,0,3215),(1580,0,790,NULL,2,0,3216),(1581,0,790,NULL,3,0,3217),(1582,0,791,NULL,1,0,3218),(1583,0,791,NULL,2,0,3219),(1584,0,791,NULL,3,0,3220),(1585,0,792,NULL,1,0,3221),(1586,0,792,NULL,2,0,3222),(1587,0,792,NULL,3,0,3223),(1588,0,793,NULL,1,0,3224),(1589,0,793,NULL,2,0,3225),(1590,0,793,NULL,3,0,3226),(1591,0,794,NULL,1,0,3227),(1592,0,794,NULL,2,0,3228),(1593,0,794,NULL,3,0,3229),(1594,0,795,NULL,1,0,3230),(1595,0,795,NULL,2,0,3231),(1596,0,795,NULL,3,0,3232),(1597,0,796,NULL,1,0,3233),(1598,0,796,NULL,2,0,3234),(1599,0,796,NULL,3,0,3235),(1600,0,797,NULL,1,0,3236),(1601,0,797,NULL,2,0,3237),(1602,0,797,NULL,3,0,3238),(1603,0,798,NULL,1,0,3239),(1604,0,798,NULL,2,0,3240),(1605,0,798,NULL,3,0,3241),(1606,0,799,NULL,1,0,3242),(1607,0,799,NULL,2,0,3243),(1608,0,799,NULL,3,0,3244),(1609,0,800,NULL,1,0,3245),(1610,0,800,NULL,2,0,3246),(1611,0,800,NULL,3,0,3247),(1612,0,801,NULL,1,0,3248),(1613,0,801,NULL,2,0,3249),(1614,0,801,NULL,3,0,3250),(1615,0,802,NULL,1,0,3251),(1616,0,802,NULL,2,0,3252),(1617,0,802,NULL,3,0,3253),(1618,0,803,NULL,1,0,3254),(1619,0,803,NULL,2,0,3255),(1620,0,803,NULL,3,0,3256),(1624,0,804,NULL,1,0,3260),(1625,0,804,NULL,2,0,3261),(1626,0,804,NULL,3,0,3262),(1627,0,805,NULL,1,0,3263),(1628,0,805,NULL,2,0,3264),(1629,0,805,NULL,3,0,3265),(1630,0,806,NULL,1,0,3266),(1631,0,806,NULL,2,0,3267),(1632,0,806,NULL,3,0,3268),(1633,0,807,NULL,1,0,3269),(1634,0,807,NULL,2,0,3270),(1635,0,807,NULL,3,0,3271),(1636,0,808,NULL,1,0,3272),(1637,0,808,NULL,2,0,3273),(1638,0,808,NULL,4,0,3274),(1639,0,809,NULL,1,0,3275),(1640,0,809,NULL,2,0,3276),(1641,0,809,NULL,4,0,3277),(1642,0,810,NULL,1,0,3278),(1643,0,810,NULL,2,0,3279),(1644,0,810,NULL,4,0,3280),(1645,0,811,NULL,1,0,3281),(1646,0,811,NULL,2,0,3282),(1647,0,811,NULL,4,0,3283),(1648,0,812,NULL,1,0,3284),(1649,0,812,NULL,2,0,3285),(1650,0,812,NULL,3,0,3286),(1651,0,813,NULL,1,0,3287),(1652,0,813,NULL,2,0,3288),(1653,0,813,NULL,3,0,3289),(1654,0,814,NULL,1,0,3290),(1655,0,814,NULL,2,0,3291),(1656,0,814,NULL,3,0,3292),(1657,0,815,NULL,1,0,3293),(1658,0,815,NULL,2,0,3294),(1659,0,815,NULL,3,0,3295),(1660,0,816,NULL,1,0,3296),(1661,0,816,NULL,2,0,3297),(1662,0,816,NULL,3,0,3298),(1663,0,817,NULL,1,0,3299),(1664,0,817,NULL,2,0,3300),(1665,0,817,NULL,3,0,3301),(1666,0,818,NULL,1,0,3302),(1667,0,818,NULL,2,0,3303),(1668,0,818,NULL,3,0,3304),(1669,0,819,NULL,1,0,3305),(1670,0,819,NULL,2,0,3306),(1671,0,819,NULL,3,0,3307),(1672,0,820,NULL,1,0,3308),(1673,0,820,NULL,2,0,3309),(1674,0,820,NULL,3,0,3310),(1675,0,821,NULL,1,0,3311),(1676,0,821,NULL,2,0,3312),(1677,0,821,NULL,3,0,3313),(1678,0,822,NULL,1,0,3314),(1679,0,822,NULL,2,0,3315),(1680,0,822,NULL,3,0,3316),(1681,0,823,NULL,1,0,3317),(1682,0,823,NULL,2,0,3318),(1683,0,823,NULL,3,0,3319),(1687,0,824,NULL,5,0,3323),(1688,0,824,NULL,6,0,3324),(1689,0,824,NULL,7,0,3325),(1690,0,824,NULL,8,0,3326),(1691,0,825,NULL,5,0,3327),(1692,0,825,NULL,6,0,3328),(1693,0,825,NULL,7,0,3329),(1694,0,825,NULL,8,0,3330),(1695,0,826,NULL,5,0,3331),(1696,0,826,NULL,6,0,3332),(1697,0,826,NULL,7,0,3333),(1698,0,826,NULL,8,0,3334),(1699,0,827,NULL,5,0,3335),(1700,0,827,NULL,6,0,3336),(1701,0,827,NULL,7,0,3337),(1702,0,827,NULL,8,0,3338),(1703,0,828,NULL,1,0,3339),(1704,0,828,NULL,2,0,3340),(1705,0,828,NULL,3,0,3341),(1706,0,828,NULL,4,0,3342),(1707,0,829,NULL,1,0,3343),(1708,0,829,NULL,2,0,3344),(1709,0,829,NULL,3,0,3345),(1710,0,829,NULL,4,0,3346),(1711,0,830,NULL,1,0,3347),(1712,0,830,NULL,2,0,3348),(1713,0,830,NULL,3,0,3349),(1714,0,830,NULL,4,0,3350),(1715,0,831,NULL,1,0,3351),(1716,0,831,NULL,2,0,3352),(1717,0,831,NULL,3,0,3353),(1718,0,831,NULL,4,0,3354),(1719,0,832,NULL,1,0,3355),(1720,0,832,NULL,2,0,3356),(1721,0,832,NULL,3,0,3357),(1722,0,832,NULL,4,0,3358),(1723,0,833,NULL,1,0,3359),(1724,0,833,NULL,2,0,3360),(1725,0,833,NULL,3,0,3361),(1726,0,833,NULL,4,0,3362),(1727,0,834,NULL,1,0,3363),(1728,0,834,NULL,2,0,3364),(1729,0,834,NULL,3,0,3365),(1730,0,834,NULL,4,0,3366),(1731,0,835,NULL,1,0,3367),(1732,0,835,NULL,2,0,3368),(1733,0,835,NULL,3,0,3369),(1734,0,835,NULL,4,0,3370),(1735,0,836,NULL,1,0,3371),(1736,0,836,NULL,2,0,3372),(1737,0,836,NULL,3,0,3373),(1738,0,836,NULL,4,0,3374),(1739,0,837,NULL,1,0,3375),(1740,0,837,NULL,2,0,3376),(1741,0,837,NULL,3,0,3377),(1742,0,837,NULL,4,0,3378),(1743,0,838,NULL,1,0,3379),(1744,0,838,NULL,2,0,3380),(1745,0,838,NULL,3,0,3381),(1746,0,838,NULL,4,0,3382),(1747,0,839,NULL,1,0,3383),(1748,0,839,NULL,2,0,3384),(1749,0,839,NULL,3,0,3385),(1750,0,839,NULL,4,0,3386),(1751,0,840,NULL,1,0,3387),(1752,0,840,NULL,2,0,3388),(1753,0,840,NULL,3,0,3389),(1754,0,840,NULL,4,0,3390),(1755,0,841,NULL,1,0,3391),(1756,0,841,NULL,2,0,3392),(1757,0,841,NULL,3,0,3393),(1758,0,841,NULL,4,0,3394),(1759,0,842,NULL,1,0,3395),(1760,0,842,NULL,2,0,3396),(1761,0,842,NULL,3,0,3397),(1762,0,842,NULL,4,0,3398),(1763,0,843,NULL,1,0,3399),(1764,0,843,NULL,2,0,3400),(1765,0,843,NULL,3,0,3401),(1766,0,843,NULL,4,0,3402),(1767,0,844,NULL,1,0,3411),(1768,0,844,NULL,2,0,3412),(1769,0,844,NULL,3,0,3413),(1770,0,845,NULL,1,0,3414),(1771,0,845,NULL,2,0,3415),(1772,0,845,NULL,3,0,3416),(1773,0,846,NULL,1,0,3417),(1774,0,846,NULL,2,0,3418),(1775,0,846,NULL,3,0,3419),(1776,0,847,NULL,1,0,3420),(1777,0,847,NULL,2,0,3421),(1778,0,847,NULL,3,0,3422),(1779,0,848,NULL,1,0,3423),(1780,0,848,NULL,2,0,3424),(1781,0,848,NULL,3,0,3425),(1782,0,849,NULL,1,0,3426),(1783,0,849,NULL,2,0,3427),(1784,0,849,NULL,3,0,3428),(1785,0,850,NULL,1,0,3429),(1786,0,850,NULL,2,0,3430),(1787,0,850,NULL,3,0,3431),(1788,0,851,NULL,1,0,3432),(1789,0,851,NULL,2,0,3433),(1790,0,851,NULL,3,0,3434),(1791,0,852,NULL,1,0,3435),(1792,0,852,NULL,2,0,3436),(1793,0,852,NULL,3,0,3437),(1794,0,853,NULL,1,0,3438),(1795,0,853,NULL,2,0,3439),(1796,0,853,NULL,3,0,3440),(1797,0,854,NULL,1,0,3441),(1798,0,854,NULL,2,0,3442),(1799,0,854,NULL,3,0,3443),(1800,0,855,NULL,1,0,3444),(1801,0,855,NULL,2,0,3445),(1802,0,855,NULL,3,0,3446),(1803,0,856,NULL,1,0,3447),(1804,0,856,NULL,2,0,3448),(1805,0,856,NULL,3,0,3449),(1806,0,857,NULL,1,0,3450),(1807,0,857,NULL,2,0,3451),(1808,0,857,NULL,3,0,3452),(1809,0,858,NULL,1,0,3453),(1810,0,858,NULL,2,0,3454),(1811,0,858,NULL,3,0,3455),(1812,0,859,NULL,1,0,3456),(1813,0,859,NULL,2,0,3457),(1814,0,859,NULL,3,0,3458),(1815,0,860,NULL,1,0,3459),(1816,0,860,NULL,2,0,3460),(1817,0,860,NULL,3,0,3461),(1818,0,861,NULL,1,0,3462),(1819,0,861,NULL,2,0,3463),(1820,0,861,NULL,3,0,3464),(1821,0,862,NULL,1,0,3465),(1822,0,862,NULL,2,0,3466),(1823,0,862,NULL,3,0,3467),(1824,0,863,NULL,1,0,3468),(1825,0,863,NULL,2,0,3469),(1826,0,863,NULL,3,0,3470),(1827,0,864,NULL,1,0,3474),(1828,0,864,NULL,2,0,3475),(1829,0,864,NULL,3,0,3476),(1830,0,865,NULL,1,0,3477),(1831,0,865,NULL,2,0,3478),(1832,0,865,NULL,3,0,3479),(1833,0,866,NULL,1,0,3480),(1834,0,866,NULL,2,0,3481),(1835,0,866,NULL,3,0,3482),(1836,0,867,NULL,1,0,3483),(1837,0,867,NULL,2,0,3484),(1838,0,867,NULL,3,0,3485),(1839,0,868,NULL,1,0,3486),(1840,0,868,NULL,2,0,3487),(1841,0,868,NULL,3,0,3488),(1842,0,869,NULL,1,0,3489),(1843,0,869,NULL,2,0,3490),(1844,0,869,NULL,3,0,3491),(1845,0,870,NULL,1,0,3492),(1846,0,870,NULL,2,0,3493),(1847,0,870,NULL,3,0,3494),(1848,0,871,NULL,1,0,3495),(1849,0,871,NULL,2,0,3496),(1850,0,871,NULL,3,0,3497),(1851,0,872,NULL,1,0,3498),(1852,0,872,NULL,2,0,3499),(1853,0,872,NULL,3,0,3500),(1854,0,873,NULL,1,0,3501),(1855,0,873,NULL,2,0,3502),(1856,0,873,NULL,3,0,3503),(1857,0,874,NULL,1,0,3504),(1858,0,874,NULL,2,0,3505),(1859,0,874,NULL,3,0,3506),(1860,0,875,NULL,1,0,3507),(1861,0,875,NULL,2,0,3508),(1862,0,875,NULL,3,0,3509),(1863,0,876,NULL,1,0,3510),(1864,0,876,NULL,2,0,3511),(1865,0,876,NULL,3,0,3512),(1866,0,877,NULL,1,0,3513),(1867,0,877,NULL,2,0,3514),(1868,0,877,NULL,3,0,3515),(1869,0,878,NULL,1,0,3516),(1870,0,878,NULL,2,0,3517),(1871,0,878,NULL,3,0,3518),(1872,0,879,NULL,3,0,3522),(1873,0,879,NULL,4,0,3523),(1874,0,879,NULL,5,0,3524),(1875,0,880,NULL,3,0,3525),(1876,0,880,NULL,4,0,3526),(1877,0,880,NULL,5,0,3527),(1878,0,881,NULL,3,0,3528),(1879,0,881,NULL,4,0,3529),(1880,0,881,NULL,5,0,3530),(1881,0,882,NULL,3,0,3531),(1882,0,882,NULL,4,0,3532),(1883,0,882,NULL,5,0,3533),(1884,0,883,NULL,3,0,3534),(1885,0,883,NULL,4,0,3535),(1886,0,883,NULL,5,0,3536),(1887,0,884,NULL,1,0,3537),(1888,0,884,NULL,2,0,3538),(1889,0,884,NULL,3,0,3539),(1890,0,885,NULL,1,0,3540),(1891,0,885,NULL,2,0,3541),(1892,0,885,NULL,3,0,3542),(1893,0,886,NULL,1,0,3543),(1894,0,886,NULL,2,0,3544),(1895,0,886,NULL,3,0,3545),(1896,0,887,NULL,1,0,3546),(1897,0,887,NULL,2,0,3547),(1898,0,887,NULL,3,0,3548),(1899,0,888,NULL,1,0,3549),(1900,0,888,NULL,2,0,3550),(1901,0,888,NULL,3,0,3551),(1902,0,889,NULL,1,0,3552),(1903,0,889,NULL,2,0,3553),(1904,0,889,NULL,3,0,3554),(1905,0,890,NULL,1,0,3555),(1906,0,890,NULL,2,0,3556),(1907,0,890,NULL,3,0,3557),(1908,0,891,NULL,1,0,3558),(1909,0,891,NULL,2,0,3559),(1910,0,891,NULL,3,0,3560),(1911,0,892,NULL,1,0,3561),(1912,0,892,NULL,2,0,3562),(1913,0,892,NULL,3,0,3563),(1914,0,893,NULL,1,0,3564),(1915,0,893,NULL,2,0,3565),(1916,0,893,NULL,3,0,3566),(1917,0,894,NULL,1,0,3567),(1918,0,894,NULL,2,0,3568),(1919,0,894,NULL,3,0,3569),(1920,0,895,NULL,1,0,3570),(1921,0,895,NULL,2,0,3571),(1922,0,895,NULL,3,0,3572),(1923,0,896,NULL,1,0,3573),(1924,0,896,NULL,2,0,3574),(1925,0,896,NULL,3,0,3575),(1926,0,897,NULL,1,0,3576),(1927,0,897,NULL,2,0,3577),(1928,0,897,NULL,3,0,3578),(1929,0,898,NULL,1,0,3579),(1930,0,898,NULL,2,0,3580),(1931,0,898,NULL,3,0,3581),(1932,0,899,NULL,1,0,3582),(1933,0,899,NULL,2,0,3583),(1934,0,899,NULL,3,0,3584),(1935,0,900,NULL,1,0,3585),(1936,0,900,NULL,2,0,3586),(1937,0,900,NULL,3,0,3587),(1938,0,901,NULL,1,0,3588),(1939,0,901,NULL,2,0,3589),(1940,0,901,NULL,3,0,3590),(1941,0,902,NULL,1,0,3591),(1942,0,902,NULL,2,0,3592),(1943,0,902,NULL,3,0,3593),(1944,0,903,NULL,1,0,3594),(1945,0,903,NULL,2,0,3595),(1946,0,903,NULL,3,0,3596),(1947,0,904,NULL,1,0,3603),(1948,0,904,NULL,2,0,3604),(1949,0,904,NULL,3,0,3605),(1950,0,904,NULL,4,0,3606),(1951,0,905,NULL,1,0,3607),(1952,0,905,NULL,2,0,3608),(1953,0,905,NULL,3,0,3609),(1954,0,905,NULL,4,0,3610),(1955,0,906,NULL,1,0,3611),(1956,0,906,NULL,2,0,3612),(1957,0,906,NULL,3,0,3613),(1958,0,906,NULL,4,0,3614),(1959,0,907,NULL,1,0,3615),(1960,0,907,NULL,2,0,3616),(1961,0,907,NULL,3,0,3617),(1962,0,907,NULL,4,0,3618),(1963,0,908,NULL,1,0,3619),(1964,0,908,NULL,2,0,3620),(1965,0,908,NULL,3,0,3621),(1966,0,908,NULL,4,0,3622),(1967,0,909,NULL,1,0,3623),(1968,0,909,NULL,2,0,3624),(1969,0,909,NULL,3,0,3625),(1970,0,909,NULL,4,0,3626),(1971,0,910,NULL,1,0,3627),(1972,0,910,NULL,2,0,3628),(1973,0,910,NULL,3,0,3629),(1974,0,910,NULL,4,0,3630),(1975,0,911,NULL,1,0,3631),(1976,0,911,NULL,2,0,3632),(1977,0,911,NULL,3,0,3633),(1978,0,911,NULL,4,0,3634),(1979,0,912,NULL,1,0,3635),(1980,0,912,NULL,2,0,3636),(1981,0,912,NULL,3,0,3637),(1982,0,912,NULL,4,0,3638),(1983,0,913,NULL,1,0,3639),(1984,0,913,NULL,2,0,3640),(1985,0,913,NULL,3,0,3641),(1986,0,913,NULL,4,0,3642),(1987,0,914,NULL,1,0,3643),(1988,0,914,NULL,2,0,3644),(1989,0,914,NULL,3,0,3645),(1990,0,914,NULL,4,0,3646),(1991,0,915,NULL,1,0,3647),(1992,0,915,NULL,2,0,3648),(1993,0,915,NULL,3,0,3649),(1994,0,915,NULL,4,0,3650),(2027,0,924,NULL,1,0,3695),(2028,0,924,NULL,2,0,3696),(2029,0,924,NULL,3,0,3697),(2030,0,925,NULL,1,0,3698),(2031,0,925,NULL,2,0,3699),(2032,0,925,NULL,3,0,3700),(2033,0,926,NULL,1,0,3701),(2034,0,926,NULL,2,0,3702),(2035,0,926,NULL,3,0,3703),(2036,0,927,NULL,1,0,3704),(2037,0,927,NULL,2,0,3705),(2038,0,927,NULL,3,0,3706),(2039,0,928,NULL,1,0,3707),(2040,0,928,NULL,2,0,3708),(2041,0,928,NULL,3,0,3709),(2042,0,929,NULL,1,0,3710),(2043,0,929,NULL,2,0,3711),(2044,0,929,NULL,3,0,3712),(2048,0,930,NULL,1,0,3716),(2049,0,930,NULL,2,0,3717),(2050,0,930,NULL,3,0,3718),(2051,0,931,NULL,1,0,3719),(2052,0,931,NULL,2,0,3720),(2053,0,931,NULL,3,0,3721),(2054,0,932,NULL,1,0,3722),(2055,0,932,NULL,2,0,3723),(2056,0,932,NULL,3,0,3724),(2057,0,933,NULL,1,0,3728),(2058,0,933,NULL,2,0,3729),(2059,0,933,NULL,3,0,3730),(2060,0,934,NULL,1,0,3731),(2061,0,934,NULL,2,0,3732),(2062,0,934,NULL,3,0,3733),(2063,0,935,NULL,1,0,3734),(2064,0,935,NULL,2,0,3735),(2065,0,935,NULL,3,0,3736),(2066,0,936,NULL,1,0,3737),(2067,0,936,NULL,2,0,3738),(2068,0,936,NULL,3,0,3739),(2069,0,937,NULL,1,0,3740),(2070,0,937,NULL,2,0,3741),(2071,0,937,NULL,3,0,3742),(2072,0,938,NULL,1,0,3743),(2073,0,938,NULL,2,0,3744),(2074,0,938,NULL,3,0,3745),(2075,0,939,NULL,1,0,3749),(2076,0,939,NULL,2,0,3750),(2077,0,939,NULL,3,0,3751),(2078,0,940,NULL,1,0,3752),(2079,0,940,NULL,2,0,3753),(2080,0,940,NULL,3,0,3754),(2081,0,941,NULL,1,0,3755),(2082,0,941,NULL,2,0,3756),(2083,0,941,NULL,3,0,3757),(2084,0,942,NULL,2,0,3761),(2085,0,942,NULL,3,0,3762),(2086,0,942,NULL,4,0,3763),(2087,0,942,NULL,5,0,3764),(2088,0,943,NULL,2,0,3765),(2089,0,943,NULL,3,0,3766),(2090,0,943,NULL,4,0,3767),(2091,0,943,NULL,5,0,3768),(2092,0,944,NULL,2,0,3769),(2093,0,944,NULL,3,0,3770),(2094,0,944,NULL,4,0,3771),(2095,0,944,NULL,5,0,3772),(2096,0,945,NULL,1,0,3773),(2097,0,945,NULL,2,0,3774),(2098,0,945,NULL,3,0,3775),(2099,0,945,NULL,4,0,3776),(2100,0,946,NULL,1,0,3777),(2101,0,946,NULL,2,0,3778),(2102,0,946,NULL,3,0,3779),(2103,0,946,NULL,4,0,3780),(2104,0,947,NULL,1,0,3781),(2105,0,947,NULL,2,0,3782),(2106,0,947,NULL,3,0,3783),(2107,0,947,NULL,4,0,3784),(2108,0,948,NULL,1,0,3789),(2109,0,948,NULL,2,0,3790),(2110,0,948,NULL,3,0,3791),(2111,0,949,NULL,1,0,3792),(2112,0,949,NULL,2,0,3793),(2113,0,949,NULL,3,0,3794),(2114,0,950,NULL,1,0,3795),(2115,0,950,NULL,2,0,3796),(2116,0,950,NULL,3,0,3797),(2117,0,951,NULL,1,0,3798),(2118,0,951,NULL,2,0,3799),(2119,0,951,NULL,3,0,3800),(2120,0,952,NULL,1,0,3801),(2121,0,952,NULL,2,0,3802),(2122,0,952,NULL,3,0,3803),(2123,0,953,NULL,1,0,3804),(2124,0,953,NULL,2,0,3805),(2125,0,953,NULL,3,0,3806),(2126,0,954,NULL,1,0,3807),(2127,0,954,NULL,2,0,3808),(2128,0,954,NULL,3,0,3809),(2129,0,955,NULL,1,0,3810),(2130,0,955,NULL,2,0,3811),(2131,0,955,NULL,3,0,3812),(2132,0,956,NULL,1,0,3813),(2133,0,956,NULL,2,0,3814),(2134,0,956,NULL,3,0,3815),(2135,0,957,NULL,1,0,3816),(2136,0,957,NULL,2,0,3817),(2137,0,957,NULL,3,0,3818),(2138,0,267,NULL,1,0,3819),(2139,0,267,NULL,2,0,3820),(2140,0,267,NULL,3,0,3821),(2141,0,265,NULL,1,0,3822),(2142,0,265,NULL,2,0,3823),(2143,0,265,NULL,3,0,3824),(2144,0,266,NULL,1,0,3825),(2145,0,266,NULL,2,0,3826),(2146,0,266,NULL,3,0,3827),(2147,0,269,NULL,1,0,3828),(2148,0,269,NULL,2,0,3829),(2149,0,269,NULL,3,0,3830),(2150,0,268,NULL,1,0,3831),(2151,0,268,NULL,2,0,3832),(2152,0,268,NULL,3,0,3833),(156,0,43,NULL,1,0,3834),(157,0,43,NULL,2,0,3835),(158,0,43,NULL,3,0,3836),(2153,0,958,NULL,1,0,3837),(2154,0,958,NULL,2,0,3838),(2155,0,958,NULL,3,0,3839),(2156,0,958,NULL,4,0,3840),(2157,0,959,NULL,1,0,3841),(2158,0,959,NULL,2,0,3842),(2159,0,959,NULL,3,0,3843),(2160,0,959,NULL,4,0,3844),(22,0,6,NULL,1,0,3845),(23,0,6,NULL,2,0,3846),(24,0,6,NULL,3,0,3847),(25,0,6,NULL,4,0,3848),(2209,0,972,NULL,1,0,3901),(2210,0,972,NULL,2,0,3902),(2211,0,972,NULL,3,0,3903),(2212,0,972,NULL,4,0,3904),(2213,0,973,NULL,1,0,3905),(2214,0,973,NULL,2,0,3906),(2215,0,973,NULL,3,0,3907),(2216,0,973,NULL,4,0,3908),(2217,0,974,NULL,1,0,3909),(2218,0,974,NULL,2,0,3910),(2219,0,974,NULL,3,0,3911),(2220,0,974,NULL,4,0,3912),(2221,0,975,NULL,1,0,3913),(2222,0,975,NULL,2,0,3914),(2223,0,975,NULL,3,0,3915),(2224,0,975,NULL,4,0,3916),(2225,0,976,NULL,1,0,3917),(2226,0,976,NULL,2,0,3918),(2227,0,976,NULL,3,0,3919),(2228,0,976,NULL,4,0,3920),(2229,0,977,NULL,1,0,3921),(2230,0,977,NULL,2,0,3922),(2231,0,977,NULL,3,0,3923),(2232,0,977,NULL,4,0,3924),(2233,0,978,NULL,1,0,3925),(2234,0,978,NULL,2,0,3926),(2235,0,978,NULL,3,0,3927),(2236,0,978,NULL,4,0,3928),(2237,0,979,NULL,1,0,3929),(2238,0,979,NULL,2,0,3930),(2239,0,979,NULL,3,0,3931),(2240,0,979,NULL,4,0,3932),(2241,0,980,NULL,1,0,3933),(2242,0,980,NULL,2,0,3934),(2243,0,980,NULL,3,0,3935),(2244,0,980,NULL,4,0,3936),(2245,0,981,NULL,1,0,3937),(2246,0,981,NULL,2,0,3938),(2247,0,981,NULL,3,0,3939),(2248,0,981,NULL,4,0,3940),(2249,0,982,NULL,1,0,3941),(2250,0,982,NULL,2,0,3942),(2251,0,982,NULL,3,0,3943),(2252,0,982,NULL,4,0,3944),(2253,0,983,NULL,1,0,3945),(2254,0,983,NULL,2,0,3946),(2255,0,983,NULL,3,0,3947),(2256,0,983,NULL,4,0,3948),(2257,0,984,NULL,1,0,3949),(2258,0,984,NULL,2,0,3950),(2259,0,984,NULL,3,0,3951),(2260,0,984,NULL,4,0,3952),(2261,0,985,NULL,1,0,3953),(2262,0,985,NULL,2,0,3954),(2263,0,985,NULL,3,0,3955),(2264,0,985,NULL,4,0,3956),(96,0,25,NULL,1,0,3957),(97,0,25,NULL,2,0,3958),(98,0,25,NULL,3,0,3959),(99,0,25,NULL,5,0,3960),(2265,0,986,NULL,1,0,3961),(2266,0,986,NULL,2,0,3962),(2267,0,986,NULL,3,0,3963),(2268,0,986,NULL,4,0,3964),(2269,0,987,NULL,1,0,3965),(2270,0,987,NULL,2,0,3966),(2271,0,987,NULL,3,0,3967),(2272,0,987,NULL,4,0,3968),(2273,0,988,NULL,1,0,3969),(2274,0,988,NULL,2,0,3970),(2275,0,988,NULL,3,0,3971),(2276,0,988,NULL,4,0,3972),(2277,0,989,NULL,1,0,3973),(2278,0,989,NULL,2,0,3974),(2279,0,989,NULL,3,0,3975),(2280,0,989,NULL,4,0,3976),(2281,0,990,NULL,1,0,3977),(2282,0,990,NULL,2,0,3978),(2283,0,990,NULL,3,0,3979),(2284,0,990,NULL,4,0,3980),(2285,0,991,NULL,1,0,3981),(2286,0,991,NULL,2,0,3982),(2287,0,991,NULL,3,0,3983),(2288,0,991,NULL,4,0,3984),(2289,0,992,NULL,1,0,3985),(2290,0,992,NULL,2,0,3986),(2291,0,992,NULL,3,0,3987),(2292,0,992,NULL,4,0,3988),(2293,0,993,NULL,1,0,3989),(2294,0,993,NULL,2,0,3990),(2295,0,993,NULL,3,0,3991),(2296,0,993,NULL,4,0,3992),(2297,0,994,NULL,1,0,3993),(2298,0,994,NULL,2,0,3994),(2299,0,994,NULL,3,0,3995),(2300,0,994,NULL,4,0,3996),(2301,0,995,NULL,1,0,3997),(2302,0,995,NULL,2,0,3998),(2303,0,995,NULL,3,0,3999),(2304,0,995,NULL,4,0,4000),(2305,0,996,NULL,1,0,4001),(2306,0,996,NULL,2,0,4002),(2307,0,996,NULL,3,0,4003),(2308,0,996,NULL,4,0,4004),(2309,0,997,NULL,1,0,4005),(2310,0,997,NULL,2,0,4006),(2311,0,997,NULL,3,0,4007),(2312,0,997,NULL,4,0,4008),(2313,0,998,NULL,1,0,4009),(2314,0,998,NULL,3,0,4010),(2315,0,998,NULL,4,0,4011),(2316,0,998,NULL,6,0,4012),(2317,0,999,NULL,1,0,4013),(2318,0,999,NULL,3,0,4014),(2319,0,999,NULL,4,0,4015),(2320,0,999,NULL,6,0,4016),(2321,0,1000,NULL,1,0,4017),(2322,0,1000,NULL,3,0,4018),(2323,0,1000,NULL,4,0,4019),(2324,0,1000,NULL,6,0,4020),(2325,0,1001,NULL,1,0,4021),(2326,0,1001,NULL,3,0,4022),(2327,0,1001,NULL,4,0,4023),(2328,0,1001,NULL,6,0,4024),(2329,0,1002,NULL,1,0,4025),(2330,0,1002,NULL,3,0,4026),(2331,0,1002,NULL,4,0,4027),(2332,0,1002,NULL,6,0,4028),(2333,0,1003,NULL,1,0,4029),(2334,0,1003,NULL,3,0,4030),(2335,0,1003,NULL,4,0,4031),(2336,0,1003,NULL,6,0,4032),(62,0,16,NULL,1,0,4033),(63,0,16,NULL,2,0,4034),(64,0,16,NULL,3,0,4035),(65,0,16,NULL,4,0,4036),(2337,0,1004,NULL,1,0,4037),(2338,0,1004,NULL,2,0,4038),(2339,0,1004,NULL,3,0,4039),(2340,0,1004,NULL,4,0,4040),(2341,0,1005,NULL,1,0,4041),(2342,0,1005,NULL,2,0,4042),(2343,0,1005,NULL,3,0,4043),(2344,0,1005,NULL,4,0,4044),(2345,0,1006,NULL,1,0,4045),(2346,0,1006,NULL,2,0,4046),(2347,0,1006,NULL,3,0,4047),(2348,0,1006,NULL,4,0,4048),(2349,0,1007,NULL,1,0,4049),(2350,0,1007,NULL,2,0,4050),(2351,0,1007,NULL,3,0,4051),(2352,0,1007,NULL,4,0,4052),(2353,0,1008,NULL,1,0,4053),(2354,0,1008,NULL,2,0,4054),(2355,0,1008,NULL,3,0,4055),(2356,0,1008,NULL,4,0,4056),(2357,0,1009,NULL,1,0,4057),(2358,0,1009,NULL,2,0,4058),(2359,0,1009,NULL,3,0,4059),(2360,0,1009,NULL,4,0,4060),(2361,0,1010,NULL,1,0,4061),(2362,0,1010,NULL,2,0,4062),(2363,0,1010,NULL,3,0,4063),(2364,0,1010,NULL,4,0,4064),(2365,0,1011,NULL,1,0,4065),(2366,0,1011,NULL,2,0,4066),(2367,0,1011,NULL,3,0,4067),(2368,0,1011,NULL,4,0,4068),(2369,0,1012,NULL,1,0,4069),(2370,0,1012,NULL,2,0,4070),(2371,0,1012,NULL,3,0,4071),(2372,0,1012,NULL,4,0,4072),(2373,0,1013,NULL,1,0,4073),(2374,0,1013,NULL,2,0,4074),(2375,0,1013,NULL,3,0,4075),(2376,0,1013,NULL,4,0,4076),(14,0,4,NULL,1,0,4077),(15,0,4,NULL,2,0,4078),(16,0,4,NULL,3,0,4079),(17,0,4,NULL,4,0,4080),(2377,0,1014,NULL,1,0,4081),(2378,0,1014,NULL,2,0,4082),(2379,0,1014,NULL,3,0,4083),(2380,0,1014,NULL,4,0,4084),(2381,0,1015,NULL,1,0,4085),(2382,0,1015,NULL,2,0,4086),(2383,0,1015,NULL,3,0,4087),(2384,0,1015,NULL,4,0,4088),(2385,0,1016,NULL,1,0,4089),(2386,0,1016,NULL,2,0,4090),(2387,0,1016,NULL,3,0,4091),(2388,0,1016,NULL,4,0,4092),(2389,0,1017,NULL,1,0,4093),(2390,0,1017,NULL,2,0,4094),(2391,0,1017,NULL,3,0,4095),(2392,0,1017,NULL,4,0,4096),(2393,0,1018,NULL,1,0,4097),(2394,0,1018,NULL,2,0,4098),(2395,0,1018,NULL,3,0,4099),(2396,0,1018,NULL,4,0,4100),(2397,0,1019,NULL,1,0,4101),(2398,0,1019,NULL,2,0,4102),(2399,0,1019,NULL,3,0,4103),(2400,0,1019,NULL,4,0,4104),(2401,0,1020,NULL,1,0,4105),(2402,0,1020,NULL,2,0,4106),(2403,0,1020,NULL,3,0,4107),(2404,0,1020,NULL,4,0,4108),(2405,0,1021,NULL,1,0,4109),(2406,0,1021,NULL,2,0,4110),(2407,0,1021,NULL,3,0,4111),(2408,0,1021,NULL,4,0,4112),(2409,0,1022,NULL,1,0,4113),(2410,0,1022,NULL,2,0,4114),(2411,0,1022,NULL,3,0,4115),(2412,0,1022,NULL,4,0,4116),(2413,0,1023,NULL,1,0,4121),(2414,0,1023,NULL,2,0,4122),(2415,0,1023,NULL,3,0,4123),(2416,0,1023,NULL,4,0,4124),(2417,0,1024,NULL,1,0,4125),(2418,0,1024,NULL,2,0,4126),(2419,0,1024,NULL,3,0,4127),(2420,0,1024,NULL,4,0,4128),(2421,0,1025,NULL,1,0,4129),(2422,0,1025,NULL,2,0,4130),(2423,0,1025,NULL,3,0,4131),(2424,0,1025,NULL,4,0,4132),(2425,0,1026,NULL,1,0,4133),(2426,0,1026,NULL,2,0,4134),(2427,0,1026,NULL,3,0,4135),(2428,0,1026,NULL,4,0,4136),(2429,0,1027,NULL,1,0,4137),(2430,0,1027,NULL,2,0,4138),(2431,0,1027,NULL,3,0,4139),(2432,0,1027,NULL,4,0,4140),(2433,0,1028,NULL,1,0,4141),(2434,0,1028,NULL,2,0,4142),(2435,0,1028,NULL,3,0,4143),(2436,0,1028,NULL,4,0,4144),(349,0,78,NULL,1,0,4145),(350,0,78,NULL,2,0,4146),(351,0,78,NULL,3,0,4147),(352,0,78,NULL,4,0,4148),(2437,0,1029,NULL,1,0,4149),(2438,0,1029,NULL,2,0,4150),(2439,0,1029,NULL,3,0,4151),(2440,0,1030,NULL,1,0,4152),(2441,0,1030,NULL,2,0,4153),(2442,0,1030,NULL,3,0,4154),(2443,0,1031,NULL,1,0,4155),(2444,0,1031,NULL,2,0,4156),(2445,0,1031,NULL,3,0,4157),(2446,0,1032,NULL,1,0,4158),(2447,0,1032,NULL,2,0,4159),(2448,0,1032,NULL,3,0,4160),(2449,0,1033,NULL,1,0,4161),(2450,0,1033,NULL,2,0,4162),(2451,0,1033,NULL,3,0,4163),(2452,0,1034,NULL,1,0,4164),(2453,0,1034,NULL,2,0,4165),(2454,0,1034,NULL,3,0,4166),(209,0,55,NULL,1,0,4167),(210,0,55,NULL,2,0,4168),(211,0,55,NULL,3,0,4169),(2455,0,1035,NULL,1,0,4170),(2456,0,1035,NULL,2,0,4171),(2457,0,1035,NULL,3,0,4172),(2458,0,1035,NULL,4,0,4173),(2459,0,1036,NULL,1,0,4174),(2460,0,1036,NULL,2,0,4175),(2461,0,1036,NULL,3,0,4176),(2462,0,1036,NULL,4,0,4177),(2463,0,1037,NULL,1,0,4178),(2464,0,1037,NULL,2,0,4179),(2465,0,1037,NULL,3,0,4180),(2466,0,1037,NULL,4,0,4181),(2467,0,1038,NULL,1,0,4182),(2468,0,1038,NULL,2,0,4183),(2469,0,1038,NULL,3,0,4184),(2470,0,1038,NULL,4,0,4185),(2471,0,1039,NULL,1,0,4186),(2472,0,1039,NULL,2,0,4187),(2473,0,1039,NULL,3,0,4188),(2474,0,1039,NULL,4,0,4189),(2475,0,1040,NULL,1,0,4190),(2476,0,1040,NULL,2,0,4191),(2477,0,1040,NULL,3,0,4192),(2478,0,1040,NULL,4,0,4193),(2479,0,1041,NULL,1,0,4194),(2480,0,1041,NULL,2,0,4195),(2481,0,1041,NULL,3,0,4196),(2482,0,1041,NULL,4,0,4197),(2483,0,1042,NULL,1,0,4198),(2484,0,1042,NULL,2,0,4199),(2485,0,1042,NULL,3,0,4200),(2486,0,1042,NULL,4,0,4201),(274,0,68,NULL,1,0,4202),(275,0,68,NULL,2,0,4203),(276,0,68,NULL,3,0,4204),(277,0,68,NULL,4,0,4205),(950,0,3,NULL,6,0,4210),(951,0,3,NULL,7,0,4211),(952,0,3,NULL,8,0,4212),(953,0,3,NULL,9,0,4213),(2487,0,1043,NULL,2,0,4214),(2488,0,1043,NULL,3,0,4215),(2489,0,1043,NULL,4,0,4216),(2490,0,1044,NULL,2,0,4217),(2491,0,1044,NULL,3,0,4218),(2492,0,1044,NULL,4,0,4219),(2493,0,1045,NULL,2,0,4220),(2494,0,1045,NULL,3,0,4221),(2495,0,1045,NULL,4,0,4222),(2496,0,1046,NULL,1,0,4223),(2497,0,1046,NULL,2,0,4224),(2498,0,1046,NULL,3,0,4225),(2499,0,1047,NULL,1,0,4226),(2500,0,1047,NULL,2,0,4227),(2501,0,1047,NULL,3,0,4228),(2502,0,1048,NULL,1,0,4229),(2503,0,1048,NULL,2,0,4230),(2504,0,1048,NULL,3,0,4231),(399,0,85,NULL,1,0,4232),(400,0,85,NULL,2,0,4233),(401,0,85,NULL,3,0,4234),(2505,0,1049,NULL,1,0,4235),(2506,0,1049,NULL,2,0,4236),(2507,0,1049,NULL,3,0,4237),(2508,0,1049,NULL,4,0,4238),(2509,0,1050,NULL,1,0,4239),(2510,0,1050,NULL,2,0,4240),(2511,0,1050,NULL,3,0,4241),(2512,0,1050,NULL,4,0,4242),(2513,0,1051,NULL,1,0,4243),(2514,0,1051,NULL,2,0,4244),(2515,0,1051,NULL,3,0,4245),(2516,0,1051,NULL,4,0,4246),(2517,0,1052,NULL,1,0,4247),(2518,0,1052,NULL,2,0,4248),(2519,0,1052,NULL,3,0,4249),(2520,0,1052,NULL,4,0,4250),(2521,0,1053,NULL,1,0,4251),(2522,0,1053,NULL,2,0,4252),(2523,0,1053,NULL,3,0,4253),(2524,0,1053,NULL,4,0,4254),(2525,0,1054,NULL,1,0,4255),(2526,0,1054,NULL,2,0,4256),(2527,0,1054,NULL,3,0,4257),(2528,0,1054,NULL,4,0,4258),(2529,0,1055,NULL,1,0,4259),(2530,0,1055,NULL,2,0,4260),(2531,0,1055,NULL,3,0,4261),(2532,0,1055,NULL,4,0,4262),(2533,0,1056,NULL,1,0,4263),(2534,0,1056,NULL,2,0,4264),(2535,0,1056,NULL,3,0,4265),(2536,0,1056,NULL,4,0,4266),(240,0,63,NULL,1,0,4267),(241,0,63,NULL,2,0,4268),(242,0,63,NULL,3,0,4269),(243,0,63,NULL,4,0,4270),(2635,0,1083,NULL,1,0,4388),(2636,0,1083,NULL,2,0,4389),(2637,0,1083,NULL,3,0,4390),(2638,0,1083,NULL,5,0,4391),(2639,0,1084,NULL,1,0,4392),(2640,0,1084,NULL,2,0,4393),(2641,0,1084,NULL,3,0,4394),(2642,0,1084,NULL,5,0,4395),(2643,0,1085,NULL,1,0,4396),(2644,0,1085,NULL,2,0,4397),(2645,0,1085,NULL,3,0,4398),(2646,0,1085,NULL,5,0,4399),(2647,0,1086,NULL,1,0,4400),(2648,0,1086,NULL,2,0,4401),(2649,0,1086,NULL,3,0,4402),(2650,0,1086,NULL,5,0,4403),(2651,0,1087,NULL,1,0,4404),(2652,0,1087,NULL,2,0,4405),(2653,0,1087,NULL,3,0,4406),(2654,0,1087,NULL,5,0,4407),(2655,0,341,NULL,1,0,4408),(2656,0,341,NULL,2,0,4409),(2657,0,341,NULL,3,0,4410),(2658,0,341,NULL,4,0,4411),(2659,0,342,NULL,1,0,4412),(2660,0,342,NULL,2,0,4413),(2661,0,342,NULL,3,0,4414),(2662,0,342,NULL,4,0,4415),(2663,0,343,NULL,1,0,4416),(2664,0,343,NULL,2,0,4417),(2665,0,343,NULL,3,0,4418),(2666,0,343,NULL,4,0,4419),(2667,0,344,NULL,1,0,4420),(2668,0,344,NULL,2,0,4421),(2669,0,344,NULL,3,0,4422),(2670,0,344,NULL,4,0,4423),(2671,0,345,NULL,1,0,4424),(2672,0,345,NULL,2,0,4425),(2673,0,345,NULL,3,0,4426),(2674,0,345,NULL,4,0,4427),(263,0,66,NULL,1,0,4428),(264,0,66,NULL,2,0,4429),(265,0,66,NULL,3,0,4430),(266,0,66,NULL,4,0,4431),(2675,0,1088,NULL,1,0,4432),(2676,0,1088,NULL,2,0,4433),(2677,0,1088,NULL,3,0,4434),(2678,0,1089,NULL,1,0,4435),(2679,0,1089,NULL,2,0,4436),(2680,0,1089,NULL,3,0,4437),(2681,0,1090,NULL,1,0,4438),(2682,0,1090,NULL,2,0,4439),(2683,0,1090,NULL,3,0,4440),(2684,0,440,NULL,1,0,4441),(2685,0,440,NULL,2,0,4442),(2686,0,440,NULL,3,0,4443),(2687,0,441,NULL,1,0,4444),(2688,0,441,NULL,2,0,4445),(2689,0,441,NULL,3,0,4446),(2690,0,442,NULL,1,0,4447),(2691,0,442,NULL,2,0,4448),(2692,0,442,NULL,3,0,4449),(416,0,88,NULL,1,0,4450),(417,0,88,NULL,2,0,4451),(418,0,88,NULL,3,0,4452),(2693,0,1091,NULL,1,0,4453),(2694,0,1091,NULL,2,0,4454),(2695,0,1091,NULL,3,0,4455),(2696,0,1091,NULL,4,0,4456),(2697,0,1092,NULL,1,0,4457),(2698,0,1092,NULL,2,0,4458),(2699,0,1092,NULL,3,0,4459),(2700,0,1092,NULL,4,0,4460),(2701,0,1093,NULL,1,0,4461),(2702,0,1093,NULL,2,0,4462),(2703,0,1093,NULL,3,0,4463),(2704,0,1093,NULL,4,0,4464),(2705,0,1094,NULL,1,0,4465),(2706,0,1094,NULL,2,0,4466),(2707,0,1094,NULL,3,0,4467),(2708,0,1094,NULL,4,0,4468),(2709,0,1075,NULL,1,0,4469),(2710,0,1075,NULL,2,0,4470),(2711,0,1075,NULL,3,0,4471),(2712,0,1075,NULL,4,0,4472),(2713,0,1076,NULL,1,0,4473),(2714,0,1076,NULL,2,0,4474),(2715,0,1076,NULL,3,0,4475),(2716,0,1076,NULL,4,0,4476),(2717,0,1077,NULL,1,0,4477),(2718,0,1077,NULL,2,0,4478),(2719,0,1077,NULL,3,0,4479),(2720,0,1077,NULL,4,0,4480),(2721,0,1078,NULL,1,0,4481),(2722,0,1078,NULL,2,0,4482),(2723,0,1078,NULL,3,0,4483),(2724,0,1078,NULL,4,0,4484),(2725,0,1079,NULL,1,0,4485),(2726,0,1079,NULL,2,0,4486),(2727,0,1079,NULL,3,0,4487),(2728,0,1079,NULL,4,0,4488),(2729,0,1080,NULL,1,0,4489),(2730,0,1080,NULL,2,0,4490),(2731,0,1080,NULL,3,0,4491),(2732,0,1080,NULL,4,0,4492),(2733,0,1081,NULL,1,0,4493),(2734,0,1081,NULL,2,0,4494),(2735,0,1081,NULL,3,0,4495),(2736,0,1081,NULL,4,0,4496),(2737,0,1082,NULL,1,0,4497),(2738,0,1082,NULL,2,0,4498),(2739,0,1082,NULL,3,0,4499),(2740,0,1082,NULL,4,0,4500),(408,0,83,NULL,5,0,4501),(409,0,83,NULL,6,0,4502),(410,0,83,NULL,7,0,4503),(411,0,83,NULL,8,0,4504),(2741,0,1095,NULL,1,0,4505),(2742,0,1095,NULL,2,0,4506),(2743,0,1095,NULL,3,0,4507),(2744,0,1095,NULL,4,0,4508),(2745,0,1096,NULL,1,0,4509),(2746,0,1096,NULL,2,0,4510),(2747,0,1096,NULL,3,0,4511),(2748,0,1096,NULL,4,0,4512),(2749,0,1097,NULL,1,0,4513),(2750,0,1097,NULL,2,0,4514),(2751,0,1097,NULL,3,0,4515),(2752,0,1097,NULL,4,0,4516),(2753,0,1069,NULL,1,0,4517),(2754,0,1069,NULL,2,0,4518),(2755,0,1069,NULL,3,0,4519),(2756,0,1069,NULL,4,0,4520),(2757,0,1070,NULL,1,0,4521),(2758,0,1070,NULL,2,0,4522),(2759,0,1070,NULL,3,0,4523),(2760,0,1070,NULL,4,0,4524),(2761,0,1071,NULL,1,0,4525),(2762,0,1071,NULL,2,0,4526),(2763,0,1071,NULL,3,0,4527),(2764,0,1071,NULL,4,0,4528),(2765,0,1072,NULL,1,0,4529),(2766,0,1072,NULL,2,0,4530),(2767,0,1072,NULL,3,0,4531),(2768,0,1072,NULL,4,0,4532),(2769,0,1073,NULL,1,0,4533),(2770,0,1073,NULL,2,0,4534),(2771,0,1073,NULL,3,0,4535),(2772,0,1073,NULL,4,0,4536),(2773,0,1074,NULL,1,0,4537),(2774,0,1074,NULL,2,0,4538),(2775,0,1074,NULL,3,0,4539),(2776,0,1074,NULL,4,0,4540),(508,0,102,NULL,5,0,4541),(509,0,102,NULL,6,0,4542),(510,0,102,NULL,7,0,4543),(511,0,102,NULL,8,0,4544),(2777,0,1098,NULL,1,0,4545),(2778,0,1098,NULL,2,0,4546),(2779,0,1098,NULL,3,0,4547),(2780,0,1098,NULL,4,0,4548),(2781,0,1099,NULL,1,0,4549),(2782,0,1099,NULL,2,0,4550),(2783,0,1099,NULL,3,0,4551),(2784,0,1099,NULL,4,0,4552),(2785,0,1100,NULL,1,0,4553),(2786,0,1100,NULL,2,0,4554),(2787,0,1100,NULL,3,0,4555),(2788,0,1100,NULL,4,0,4556),(2789,0,1066,NULL,1,0,4557),(2790,0,1066,NULL,2,0,4558),(2791,0,1066,NULL,3,0,4559),(2792,0,1066,NULL,4,0,4560),(2793,0,1067,NULL,1,0,4561),(2794,0,1067,NULL,2,0,4562),(2795,0,1067,NULL,3,0,4563),(2796,0,1067,NULL,4,0,4564),(2797,0,1068,NULL,1,0,4565),(2798,0,1068,NULL,2,0,4566),(2799,0,1068,NULL,3,0,4567),(2800,0,1068,NULL,4,0,4568),(2801,0,1063,NULL,1,0,4569),(2802,0,1063,NULL,2,0,4570),(2803,0,1063,NULL,3,0,4571),(2804,0,1063,NULL,4,0,4572),(2805,0,1064,NULL,1,0,4573),(2806,0,1064,NULL,2,0,4574),(2807,0,1064,NULL,3,0,4575),(2808,0,1064,NULL,4,0,4576),(2809,0,1065,NULL,1,0,4577),(2810,0,1065,NULL,2,0,4578),(2811,0,1065,NULL,3,0,4579),(2812,0,1065,NULL,4,0,4580),(451,0,92,NULL,5,0,4581),(452,0,92,NULL,6,0,4582),(453,0,92,NULL,7,0,4583),(454,0,92,NULL,8,0,4584),(2813,0,1101,NULL,1,0,4585),(2814,0,1101,NULL,2,0,4586),(2815,0,1101,NULL,3,0,4587),(2816,0,1102,NULL,1,0,4588),(2817,0,1102,NULL,2,0,4589),(2818,0,1102,NULL,3,0,4590),(2819,0,1103,NULL,1,0,4591),(2820,0,1103,NULL,2,0,4592),(2821,0,1103,NULL,3,0,4593),(2822,0,1057,NULL,1,0,4594),(2823,0,1057,NULL,2,0,4595),(2824,0,1057,NULL,3,0,4596),(2825,0,1058,NULL,1,0,4597),(2826,0,1058,NULL,2,0,4598),(2827,0,1058,NULL,3,0,4599),(2828,0,1059,NULL,1,0,4600),(2829,0,1059,NULL,2,0,4601),(2830,0,1059,NULL,3,0,4602),(2831,0,1060,NULL,1,0,4603),(2832,0,1060,NULL,2,0,4604),(2833,0,1060,NULL,3,0,4605),(2834,0,1061,NULL,1,0,4606),(2835,0,1061,NULL,2,0,4607),(2836,0,1061,NULL,3,0,4608),(2837,0,1062,NULL,1,0,4609),(2838,0,1062,NULL,2,0,4610),(2839,0,1062,NULL,3,0,4611),(357,0,79,NULL,1,0,4612),(358,0,79,NULL,2,0,4613),(359,0,79,NULL,3,0,4614),(2840,0,1104,NULL,1,0,4615),(2841,0,1104,NULL,2,0,4616),(2842,0,1104,NULL,3,0,4617),(2843,0,1104,NULL,4,0,4618),(2844,0,1105,NULL,1,0,4619),(2845,0,1105,NULL,2,0,4620),(2846,0,1105,NULL,3,0,4621),(2847,0,1105,NULL,4,0,4622),(2848,0,1106,NULL,1,0,4623),(2849,0,1106,NULL,2,0,4624),(2850,0,1106,NULL,3,0,4625),(2851,0,1106,NULL,4,0,4626),(2852,0,437,NULL,1,0,4627),(2853,0,437,NULL,2,0,4628),(2854,0,437,NULL,3,0,4629),(2855,0,437,NULL,4,0,4630),(2856,0,439,NULL,1,0,4631),(2857,0,439,NULL,2,0,4632),(2858,0,439,NULL,3,0,4633),(2859,0,439,NULL,4,0,4634),(2860,0,438,NULL,1,0,4635),(2861,0,438,NULL,2,0,4636),(2862,0,438,NULL,3,0,4637),(2863,0,438,NULL,4,0,4638),(431,0,87,NULL,5,0,4639),(432,0,87,NULL,6,0,4640),(433,0,87,NULL,7,0,4641),(434,0,87,NULL,8,0,4642),(2864,0,1107,NULL,1,0,4643),(2865,0,1107,NULL,2,0,4644),(2866,0,1107,NULL,3,0,4645),(2867,0,1107,NULL,4,0,4646),(2868,0,1108,NULL,1,0,4647),(2869,0,1108,NULL,2,0,4648),(2870,0,1108,NULL,3,0,4649),(2871,0,1108,NULL,4,0,4650),(2872,0,1109,NULL,1,0,4651),(2873,0,1109,NULL,2,0,4652),(2874,0,1109,NULL,3,0,4653),(2875,0,1109,NULL,4,0,4654),(2876,0,488,NULL,1,0,4655),(2877,0,488,NULL,2,0,4656),(2878,0,488,NULL,3,0,4657),(2879,0,488,NULL,4,0,4658),(2880,0,489,NULL,1,0,4659),(2881,0,489,NULL,2,0,4660),(2882,0,489,NULL,3,0,4661),(2883,0,489,NULL,4,0,4662),(2884,0,490,NULL,1,0,4663),(2885,0,490,NULL,2,0,4664),(2886,0,490,NULL,3,0,4665),(2887,0,490,NULL,4,0,4666),(516,0,103,NULL,5,0,4667),(517,0,103,NULL,6,0,4668),(518,0,103,NULL,7,0,4669),(519,0,103,NULL,8,0,4670),(2888,0,1110,NULL,1,0,4671),(2889,0,1110,NULL,2,0,4672),(2890,0,1110,NULL,3,0,4673),(2891,0,1110,NULL,4,0,4674),(2892,0,1111,NULL,1,0,4675),(2893,0,1111,NULL,2,0,4676),(2894,0,1111,NULL,3,0,4677),(2895,0,1111,NULL,4,0,4678),(2896,0,1112,NULL,1,0,4679),(2897,0,1112,NULL,2,0,4680),(2898,0,1112,NULL,3,0,4681),(2899,0,1112,NULL,4,0,4682),(2900,0,1113,NULL,1,0,4683),(2901,0,1113,NULL,2,0,4684),(2902,0,1113,NULL,3,0,4685),(2903,0,1113,NULL,4,0,4686),(2904,0,471,NULL,1,0,4687),(2905,0,471,NULL,2,0,4688),(2906,0,471,NULL,3,0,4689),(2907,0,471,NULL,4,0,4690),(2908,0,473,NULL,1,0,4691),(2909,0,473,NULL,2,0,4692),(2910,0,473,NULL,3,0,4693),(2911,0,473,NULL,4,0,4694),(2912,0,474,NULL,1,0,4695),(2913,0,474,NULL,2,0,4696),(2914,0,474,NULL,3,0,4697),(2915,0,474,NULL,4,0,4698),(2916,0,472,NULL,1,0,4699),(2917,0,472,NULL,2,0,4700),(2918,0,472,NULL,3,0,4701),(2919,0,472,NULL,4,0,4702),(488,0,98,NULL,5,0,4703),(489,0,98,NULL,6,0,4704),(490,0,98,NULL,7,0,4705),(491,0,98,NULL,8,0,4706),(2920,0,1114,NULL,1,0,4707),(2921,0,1114,NULL,2,0,4708),(2922,0,1114,NULL,3,0,4709),(2923,0,1114,NULL,4,0,4710),(2924,0,1115,NULL,1,0,4711),(2925,0,1115,NULL,2,0,4712),(2926,0,1115,NULL,3,0,4713),(2927,0,1115,NULL,4,0,4714),(2928,0,1116,NULL,1,0,4715),(2929,0,1116,NULL,2,0,4716),(2930,0,1116,NULL,3,0,4717),(2931,0,1116,NULL,4,0,4718),(2932,0,1117,NULL,1,0,4719),(2933,0,1117,NULL,2,0,4720),(2934,0,1117,NULL,3,0,4721),(2935,0,1117,NULL,4,0,4722),(2936,0,461,NULL,1,0,4723),(2937,0,461,NULL,2,0,4724),(2938,0,461,NULL,3,0,4725),(2939,0,461,NULL,4,0,4726),(2940,0,462,NULL,1,0,4727),(2941,0,462,NULL,2,0,4728),(2942,0,462,NULL,3,0,4729),(2943,0,462,NULL,4,0,4730),(2944,0,464,NULL,1,0,4731),(2945,0,464,NULL,2,0,4732),(2946,0,464,NULL,3,0,4733),(2947,0,464,NULL,4,0,4734),(2948,0,463,NULL,1,0,4735),(2949,0,463,NULL,2,0,4736),(2950,0,463,NULL,3,0,4737),(2951,0,463,NULL,4,0,4738),(459,0,93,NULL,5,0,4739),(460,0,93,NULL,6,0,4740),(461,0,93,NULL,7,0,4741),(462,0,93,NULL,8,0,4742),(2952,0,1118,NULL,1,0,4743),(2953,0,1118,NULL,2,0,4744),(2954,0,1118,NULL,3,0,4745),(2955,0,1118,NULL,4,0,4746),(2956,0,1119,NULL,1,0,4747),(2957,0,1119,NULL,2,0,4748),(2958,0,1119,NULL,3,0,4749),(2959,0,1119,NULL,4,0,4750),(2960,0,1120,NULL,1,0,4751),(2961,0,1120,NULL,2,0,4752),(2962,0,1120,NULL,3,0,4753),(2963,0,1120,NULL,4,0,4754),(2964,0,455,NULL,1,0,4755),(2965,0,455,NULL,2,0,4756),(2966,0,455,NULL,3,0,4757),(2967,0,455,NULL,4,0,4758),(2968,0,456,NULL,1,0,4759),(2969,0,456,NULL,2,0,4760),(2970,0,456,NULL,3,0,4761),(2971,0,456,NULL,4,0,4762),(2972,0,457,NULL,1,0,4763),(2973,0,457,NULL,2,0,4764),(2974,0,457,NULL,3,0,4765),(2975,0,457,NULL,4,0,4766),(2976,0,1121,NULL,1,0,4775),(2977,0,1121,NULL,2,0,4776),(2978,0,1121,NULL,3,0,4777),(2979,0,1121,NULL,4,0,4778),(2980,0,1122,NULL,1,0,4779),(2981,0,1122,NULL,2,0,4780),(2982,0,1122,NULL,3,0,4781),(2983,0,1122,NULL,4,0,4782),(2984,0,1123,NULL,1,0,4783),(2985,0,1123,NULL,2,0,4784),(2986,0,1123,NULL,3,0,4785),(2987,0,1123,NULL,4,0,4786),(2988,0,478,NULL,1,0,4787),(2989,0,478,NULL,2,0,4788),(2990,0,478,NULL,3,0,4789),(2991,0,478,NULL,4,0,4790),(2992,0,479,NULL,1,0,4791),(2993,0,479,NULL,2,0,4792),(2994,0,479,NULL,3,0,4793),(2995,0,479,NULL,4,0,4794),(2996,0,480,NULL,1,0,4795),(2997,0,480,NULL,2,0,4796),(2998,0,480,NULL,3,0,4797),(2999,0,480,NULL,4,0,4798),(3000,0,1124,NULL,1,0,4803),(3001,0,1124,NULL,2,0,4804),(3002,0,1124,NULL,3,0,4805),(3003,0,1124,NULL,4,0,4806),(3004,0,1125,NULL,1,0,4807),(3005,0,1125,NULL,2,0,4808),(3006,0,1125,NULL,3,0,4809),(3007,0,1125,NULL,4,0,4810),(3008,0,1126,NULL,1,0,4811),(3009,0,1126,NULL,2,0,4812),(3010,0,1126,NULL,3,0,4813),(3011,0,1126,NULL,4,0,4814),(3012,0,465,NULL,1,0,4815),(3013,0,465,NULL,2,0,4816),(3014,0,465,NULL,3,0,4817),(3015,0,465,NULL,4,0,4818),(3016,0,466,NULL,1,0,4819),(3017,0,466,NULL,2,0,4820),(3018,0,466,NULL,3,0,4821),(3019,0,466,NULL,4,0,4822),(3020,0,467,NULL,1,0,4823),(3021,0,467,NULL,2,0,4824),(3022,0,467,NULL,3,0,4825),(3023,0,467,NULL,4,0,4826),(3024,0,1127,NULL,1,0,4831),(3025,0,1127,NULL,2,0,4832),(3026,0,1127,NULL,3,0,4833),(3027,0,1127,NULL,5,0,4834),(3028,0,1128,NULL,1,0,4835),(3029,0,1128,NULL,2,0,4836),(3030,0,1128,NULL,3,0,4837),(3031,0,1128,NULL,5,0,4838),(3032,0,1129,NULL,1,0,4839),(3033,0,1129,NULL,2,0,4840),(3034,0,1129,NULL,3,0,4841),(3035,0,1129,NULL,5,0,4842),(3036,0,386,NULL,1,0,4843),(3037,0,386,NULL,2,0,4844),(3038,0,386,NULL,3,0,4845),(3039,0,386,NULL,4,0,4846),(3040,0,385,NULL,1,0,4847),(3041,0,385,NULL,2,0,4848),(3042,0,385,NULL,3,0,4849),(3043,0,385,NULL,4,0,4850),(3044,0,387,NULL,1,0,4851),(3045,0,387,NULL,2,0,4852),(3046,0,387,NULL,3,0,4853),(3047,0,387,NULL,4,0,4854),(3072,0,1133,NULL,1,0,4887),(3073,0,1133,NULL,2,0,4888),(3074,0,1133,NULL,3,0,4889),(3075,0,1134,NULL,1,0,4890),(3076,0,1134,NULL,2,0,4891),(3077,0,1134,NULL,3,0,4892),(3078,0,131,NULL,1,0,4893),(3079,0,131,NULL,2,0,4894),(3080,0,131,NULL,3,0,4895),(3081,0,130,NULL,1,0,4896),(3082,0,130,NULL,2,0,4897),(3083,0,130,NULL,3,0,4898),(3084,0,1135,NULL,1,0,4902),(3085,0,1135,NULL,2,0,4903),(3086,0,1135,NULL,3,0,4904),(3087,0,1135,NULL,4,0,4905),(3088,0,1136,NULL,1,0,4906),(3089,0,1136,NULL,2,0,4907),(3090,0,1136,NULL,3,0,4908),(3091,0,1136,NULL,4,0,4909),(3092,0,1137,NULL,1,0,4910),(3093,0,1137,NULL,2,0,4911),(3094,0,1137,NULL,3,0,4912),(3095,0,1137,NULL,4,0,4913),(3096,0,358,NULL,1,0,4914),(3097,0,358,NULL,2,0,4915),(3098,0,358,NULL,3,0,4916),(3099,0,358,NULL,4,0,4917),(3100,0,359,NULL,1,0,4918),(3101,0,359,NULL,2,0,4919),(3102,0,359,NULL,3,0,4920),(3103,0,359,NULL,4,0,4921),(3104,0,360,NULL,1,0,4922),(3105,0,360,NULL,2,0,4923),(3106,0,360,NULL,3,0,4924),(3107,0,360,NULL,4,0,4925),(3108,0,1130,NULL,1,0,4926),(3109,0,1130,NULL,2,0,4927),(3110,0,1130,NULL,3,0,4928),(3111,0,1130,NULL,4,0,4929),(3112,0,1131,NULL,1,0,4930),(3113,0,1131,NULL,2,0,4931),(3114,0,1131,NULL,3,0,4932),(3115,0,1131,NULL,4,0,4933),(3116,0,1132,NULL,1,0,4934),(3117,0,1132,NULL,2,0,4935),(3118,0,1132,NULL,3,0,4936),(3119,0,1132,NULL,4,0,4937),(3120,0,1138,NULL,1,0,4942),(3121,0,1138,NULL,2,0,4943),(3122,0,1138,NULL,3,0,4944),(3123,0,1138,NULL,4,0,4945),(3124,0,1139,NULL,1,0,4946),(3125,0,1139,NULL,2,0,4947),(3126,0,1139,NULL,3,0,4948),(3127,0,1139,NULL,4,0,4949),(3128,0,1140,NULL,1,0,4950),(3129,0,1140,NULL,2,0,4951),(3130,0,1140,NULL,3,0,4952),(3131,0,1140,NULL,4,0,4953),(3132,0,502,NULL,1,0,4954),(3133,0,502,NULL,2,0,4955),(3134,0,502,NULL,3,0,4956),(3135,0,502,NULL,4,0,4957),(3136,0,501,NULL,1,0,4958),(3137,0,501,NULL,2,0,4959),(3138,0,501,NULL,3,0,4960),(3139,0,501,NULL,4,0,4961),(3140,0,503,NULL,1,0,4962),(3141,0,503,NULL,2,0,4963),(3142,0,503,NULL,3,0,4964),(3143,0,503,NULL,4,0,4965),(3144,0,1141,NULL,1,0,4970),(3145,0,1141,NULL,2,0,4971),(3146,0,1141,NULL,3,0,4972),(3147,0,1141,NULL,4,0,4973),(3148,0,1142,NULL,1,0,4974),(3149,0,1142,NULL,2,0,4975),(3150,0,1142,NULL,3,0,4976),(3151,0,1142,NULL,4,0,4977),(3152,0,1143,NULL,1,0,4978),(3153,0,1143,NULL,2,0,4979),(3154,0,1143,NULL,3,0,4980),(3155,0,1143,NULL,4,0,4981),(3156,0,1144,NULL,1,0,4982),(3157,0,1144,NULL,2,0,4983),(3158,0,1144,NULL,3,0,4984),(3159,0,1144,NULL,4,0,4985),(3160,0,237,NULL,1,0,4986),(3161,0,237,NULL,2,0,4987),(3162,0,237,NULL,3,0,4988),(3163,0,237,NULL,4,0,4989),(3164,0,235,NULL,1,0,4990),(3165,0,235,NULL,2,0,4991),(3166,0,235,NULL,3,0,4992),(3167,0,235,NULL,4,0,4993),(3168,0,236,NULL,1,0,4994),(3169,0,236,NULL,2,0,4995),(3170,0,236,NULL,3,0,4996),(3171,0,236,NULL,4,0,4997),(3172,0,238,NULL,1,0,4998),(3173,0,238,NULL,2,0,4999),(3174,0,238,NULL,3,0,5000),(3175,0,238,NULL,4,0,5001),(3200,0,1148,NULL,1,0,5035),(3201,0,1148,NULL,2,0,5036),(3202,0,1148,NULL,3,0,5037),(3203,0,1148,NULL,4,0,5038),(3204,0,1149,NULL,1,0,5039),(3205,0,1149,NULL,2,0,5040),(3206,0,1149,NULL,3,0,5041),(3207,0,1149,NULL,4,0,5042),(3208,0,1150,NULL,1,0,5043),(3209,0,1150,NULL,2,0,5044),(3210,0,1150,NULL,3,0,5045),(3211,0,1150,NULL,4,0,5046),(3212,0,1151,NULL,1,0,5047),(3213,0,1151,NULL,2,0,5048),(3214,0,1151,NULL,3,0,5049),(3215,0,1151,NULL,4,0,5050),(3216,0,167,NULL,1,0,5051),(3217,0,167,NULL,2,0,5052),(3218,0,167,NULL,3,0,5053),(3219,0,167,NULL,4,0,5054),(3220,0,168,NULL,1,0,5055),(3221,0,168,NULL,2,0,5056),(3222,0,168,NULL,3,0,5057),(3223,0,168,NULL,4,0,5058),(3224,0,169,NULL,1,0,5059),(3225,0,169,NULL,2,0,5060),(3226,0,169,NULL,3,0,5061),(3227,0,169,NULL,4,0,5062),(3228,0,166,NULL,1,0,5063),(3229,0,166,NULL,2,0,5064),(3230,0,166,NULL,3,0,5065),(3231,0,166,NULL,4,0,5066),(3232,0,1152,NULL,1,0,5071),(3233,0,1152,NULL,2,0,5072),(3234,0,1152,NULL,3,0,5073),(3235,0,1152,NULL,4,0,5074),(3236,0,1153,NULL,1,0,5075),(3237,0,1153,NULL,2,0,5076),(3238,0,1153,NULL,3,0,5077),(3239,0,1153,NULL,4,0,5078),(3240,0,1154,NULL,1,0,5079),(3241,0,1154,NULL,2,0,5080),(3242,0,1154,NULL,3,0,5081),(3243,0,1154,NULL,4,0,5082),(3244,0,1155,NULL,1,0,5083),(3245,0,1155,NULL,2,0,5084),(3246,0,1155,NULL,3,0,5085),(3247,0,1155,NULL,4,0,5086),(3248,0,355,NULL,1,0,5087),(3249,0,355,NULL,2,0,5088),(3250,0,355,NULL,3,0,5089),(3251,0,355,NULL,4,0,5090),(3252,0,354,NULL,1,0,5091),(3253,0,354,NULL,2,0,5092),(3254,0,354,NULL,3,0,5093),(3255,0,354,NULL,4,0,5094),(3256,0,357,NULL,1,0,5095),(3257,0,357,NULL,2,0,5096),(3258,0,357,NULL,3,0,5097),(3259,0,357,NULL,4,0,5098),(3260,0,356,NULL,1,0,5099),(3261,0,356,NULL,2,0,5100),(3262,0,356,NULL,3,0,5101),(3263,0,356,NULL,4,0,5102),(3264,0,1156,NULL,1,0,5107),(3265,0,1156,NULL,2,0,5108),(3266,0,1156,NULL,3,0,5109),(3267,0,1156,NULL,4,0,5110),(3268,0,1157,NULL,1,0,5111),(3269,0,1157,NULL,2,0,5112),(3270,0,1157,NULL,3,0,5113),(3271,0,1157,NULL,4,0,5114),(3272,0,1158,NULL,1,0,5115),(3273,0,1158,NULL,2,0,5116),(3274,0,1158,NULL,3,0,5117),(3275,0,1158,NULL,4,0,5118),(3276,0,1159,NULL,1,0,5119),(3277,0,1159,NULL,2,0,5120),(3278,0,1159,NULL,3,0,5121),(3279,0,1159,NULL,4,0,5122),(3280,0,186,NULL,1,0,5123),(3281,0,186,NULL,2,0,5124),(3282,0,186,NULL,3,0,5125),(3283,0,186,NULL,4,0,5126),(3284,0,187,NULL,1,0,5127),(3285,0,187,NULL,2,0,5128),(3286,0,187,NULL,3,0,5129),(3287,0,187,NULL,4,0,5130),(3288,0,188,NULL,1,0,5131),(3289,0,188,NULL,2,0,5132),(3290,0,188,NULL,3,0,5133),(3291,0,188,NULL,4,0,5134),(3292,0,189,NULL,1,0,5135),(3293,0,189,NULL,2,0,5136),(3294,0,189,NULL,3,0,5137),(3295,0,189,NULL,4,0,5138),(3296,0,1160,NULL,1,0,5143),(3297,0,1160,NULL,2,0,5144),(3298,0,1161,NULL,1,0,5145),(3299,0,1161,NULL,2,0,5146),(3300,0,542,NULL,1,0,5147),(3301,0,542,NULL,2,0,5148),(3302,0,543,NULL,1,0,5149),(3303,0,543,NULL,2,0,5150),(3304,0,1162,NULL,1,0,5153),(3305,0,1162,NULL,2,0,5154),(3306,0,1162,NULL,5,0,5155),(3307,0,1162,NULL,6,0,5156),(3308,0,1163,NULL,1,0,5157),(3309,0,1163,NULL,2,0,5158),(3310,0,1163,NULL,5,0,5159),(3311,0,1163,NULL,6,0,5160),(3312,0,170,NULL,1,0,5161),(3313,0,170,NULL,2,0,5162),(3314,0,170,NULL,3,0,5163),(3315,0,170,NULL,4,0,5164),(3316,0,171,NULL,1,0,5165),(3317,0,171,NULL,2,0,5166),(3318,0,171,NULL,3,0,5167),(3319,0,171,NULL,4,0,5168),(3320,0,1164,NULL,1,0,5173),(3321,0,1164,NULL,2,0,5174),(3322,0,1164,NULL,3,0,5175),(3323,0,1165,NULL,1,0,5176),(3324,0,1165,NULL,2,0,5177),(3325,0,1165,NULL,3,0,5178),(3326,0,1166,NULL,1,0,5179),(3327,0,1166,NULL,2,0,5180),(3328,0,1166,NULL,3,0,5181),(3329,0,535,NULL,1,0,5182),(3330,0,535,NULL,2,0,5183),(3331,0,535,NULL,3,0,5184),(3332,0,536,NULL,1,0,5185),(3333,0,536,NULL,2,0,5186),(3334,0,536,NULL,3,0,5187),(3335,0,537,NULL,1,0,5188),(3336,0,537,NULL,2,0,5189),(3337,0,537,NULL,3,0,5190),(3338,0,1167,NULL,1,0,5194),(3339,0,1167,NULL,2,0,5195),(3340,0,1167,NULL,3,0,5196),(3341,0,1167,NULL,4,0,5197),(3342,0,1168,NULL,1,0,5198),(3343,0,1168,NULL,2,0,5199),(3344,0,1168,NULL,3,0,5200),(3345,0,1168,NULL,4,0,5201),(3346,0,1169,NULL,1,0,5202),(3347,0,1169,NULL,2,0,5203),(3348,0,1169,NULL,3,0,5204),(3349,0,1169,NULL,4,0,5205),(3350,0,1170,NULL,1,0,5206),(3351,0,1170,NULL,2,0,5207),(3352,0,1170,NULL,3,0,5208),(3353,0,1170,NULL,4,0,5209),(3354,0,366,NULL,1,0,5210),(3355,0,366,NULL,2,0,5211),(3356,0,366,NULL,3,0,5212),(3357,0,366,NULL,4,0,5213),(3358,0,364,NULL,1,0,5214),(3359,0,364,NULL,2,0,5215),(3360,0,364,NULL,3,0,5216),(3361,0,364,NULL,4,0,5217),(3362,0,365,NULL,1,0,5218),(3363,0,365,NULL,2,0,5219),(3364,0,365,NULL,3,0,5220),(3365,0,365,NULL,4,0,5221),(3366,0,367,NULL,1,0,5222),(3367,0,367,NULL,2,0,5223),(3368,0,367,NULL,3,0,5224),(3369,0,367,NULL,4,0,5225),(3370,0,1171,NULL,1,0,5230),(3371,0,1171,NULL,2,0,5231),(3372,0,1171,NULL,3,0,5232),(3373,0,1171,NULL,4,0,5233),(3374,0,1172,NULL,1,0,5234),(3375,0,1172,NULL,2,0,5235),(3376,0,1172,NULL,3,0,5236),(3377,0,1172,NULL,4,0,5237),(3378,0,1173,NULL,1,0,5238),(3379,0,1173,NULL,2,0,5239),(3380,0,1173,NULL,3,0,5240),(3381,0,1173,NULL,4,0,5241),(3382,0,1174,NULL,1,0,5242),(3383,0,1174,NULL,2,0,5243),(3384,0,1174,NULL,3,0,5244),(3385,0,1174,NULL,4,0,5245),(3386,0,398,NULL,1,0,5246),(3387,0,398,NULL,2,0,5247),(3388,0,398,NULL,3,0,5248),(3389,0,398,NULL,4,0,5249),(3390,0,397,NULL,1,0,5250),(3391,0,397,NULL,2,0,5251),(3392,0,397,NULL,3,0,5252),(3393,0,397,NULL,4,0,5253),(3394,0,400,NULL,1,0,5254),(3395,0,400,NULL,2,0,5255),(3396,0,400,NULL,3,0,5256),(3397,0,400,NULL,4,0,5257),(3398,0,399,NULL,1,0,5258),(3399,0,399,NULL,2,0,5259),(3400,0,399,NULL,3,0,5260),(3401,0,399,NULL,4,0,5261),(3402,0,1175,NULL,1,0,5266),(3403,0,1175,NULL,2,0,5267),(3404,0,1175,NULL,3,0,5268),(3405,0,1175,NULL,4,0,5269),(3406,0,1176,NULL,1,0,5270),(3407,0,1176,NULL,2,0,5271),(3408,0,1176,NULL,3,0,5272),(3409,0,1176,NULL,4,0,5273),(3410,0,1177,NULL,1,0,5274),(3411,0,1177,NULL,2,0,5275),(3412,0,1177,NULL,3,0,5276),(3413,0,1177,NULL,4,0,5277),(3414,0,1178,NULL,1,0,5278),(3415,0,1178,NULL,2,0,5279),(3416,0,1178,NULL,3,0,5280),(3417,0,1178,NULL,4,0,5281),(3418,0,1179,NULL,1,0,5282),(3419,0,1179,NULL,2,0,5283),(3420,0,1179,NULL,3,0,5284),(3421,0,1179,NULL,4,0,5285),(3422,0,218,NULL,1,0,5286),(3423,0,218,NULL,2,0,5287),(3424,0,218,NULL,3,0,5288),(3425,0,218,NULL,4,0,5289),(3426,0,219,NULL,1,0,5290),(3427,0,219,NULL,2,0,5291),(3428,0,219,NULL,3,0,5292),(3429,0,219,NULL,4,0,5293),(3430,0,220,NULL,1,0,5294),(3431,0,220,NULL,2,0,5295),(3432,0,220,NULL,3,0,5296),(3433,0,220,NULL,4,0,5297),(3434,0,217,NULL,1,0,5298),(3435,0,217,NULL,2,0,5299),(3436,0,217,NULL,3,0,5300),(3437,0,217,NULL,4,0,5301),(3438,0,221,NULL,1,0,5302),(3439,0,221,NULL,2,0,5303),(3440,0,221,NULL,3,0,5304),(3441,0,221,NULL,4,0,5305),(3442,0,504,NULL,1,0,5310),(3443,0,504,NULL,2,0,5311),(3444,0,504,NULL,3,0,5312),(3445,0,504,NULL,4,0,5313),(3446,0,505,NULL,1,0,5314),(3447,0,505,NULL,2,0,5315),(3448,0,505,NULL,3,0,5316),(3449,0,505,NULL,4,0,5317),(3450,0,506,NULL,1,0,5318),(3451,0,506,NULL,2,0,5319),(3452,0,506,NULL,3,0,5320),(3453,0,506,NULL,4,0,5321),(3454,0,507,NULL,1,0,5322),(3455,0,507,NULL,2,0,5323),(3456,0,507,NULL,3,0,5324),(3457,0,507,NULL,4,0,5325),(3458,0,508,NULL,1,0,5326),(3459,0,508,NULL,2,0,5327),(3460,0,508,NULL,3,0,5328),(3461,0,508,NULL,4,0,5329),(3462,0,509,NULL,1,0,5330),(3463,0,509,NULL,2,0,5331),(3464,0,509,NULL,3,0,5332),(3465,0,509,NULL,4,0,5333),(3466,0,1180,NULL,1,0,5338),(3467,0,1180,NULL,2,0,5339),(3468,0,1180,NULL,3,0,5340),(3469,0,1180,NULL,4,0,5341),(3470,0,1181,NULL,1,0,5342),(3471,0,1181,NULL,2,0,5343),(3472,0,1181,NULL,3,0,5344),(3473,0,1181,NULL,4,0,5345),(3474,0,1182,NULL,1,0,5346),(3475,0,1182,NULL,2,0,5347),(3476,0,1182,NULL,3,0,5348),(3477,0,1182,NULL,4,0,5349),(3478,0,1183,NULL,1,0,5350),(3479,0,1183,NULL,2,0,5351),(3480,0,1183,NULL,3,0,5352),(3481,0,1183,NULL,4,0,5353),(3482,0,334,NULL,1,0,5354),(3483,0,334,NULL,2,0,5355),(3484,0,334,NULL,3,0,5356),(3485,0,334,NULL,4,0,5357),(3486,0,335,NULL,1,0,5358),(3487,0,335,NULL,2,0,5359),(3488,0,335,NULL,3,0,5360),(3489,0,335,NULL,4,0,5361),(3490,0,336,NULL,1,0,5362),(3491,0,336,NULL,2,0,5363),(3492,0,336,NULL,3,0,5364),(3493,0,336,NULL,4,0,5365),(3494,0,337,NULL,1,0,5366),(3495,0,337,NULL,2,0,5367),(3496,0,337,NULL,3,0,5368),(3497,0,337,NULL,4,0,5369),(3498,0,1184,NULL,1,0,5374),(3499,0,1184,NULL,2,0,5375),(3500,0,1184,NULL,3,0,5376),(3501,0,1184,NULL,4,0,5377),(3502,0,1185,NULL,1,0,5378),(3503,0,1185,NULL,2,0,5379),(3504,0,1185,NULL,3,0,5380),(3505,0,1185,NULL,4,0,5381),(3506,0,1186,NULL,1,0,5382),(3507,0,1186,NULL,2,0,5383),(3508,0,1186,NULL,3,0,5384),(3509,0,1186,NULL,4,0,5385),(3510,0,173,NULL,1,0,5386),(3511,0,173,NULL,2,0,5387),(3512,0,173,NULL,3,0,5388),(3513,0,173,NULL,4,0,5389),(3514,0,174,NULL,1,0,5390),(3515,0,174,NULL,2,0,5391),(3516,0,174,NULL,3,0,5392),(3517,0,174,NULL,4,0,5393),(3518,0,172,NULL,1,0,5394),(3519,0,172,NULL,2,0,5395),(3520,0,172,NULL,3,0,5396),(3521,0,172,NULL,4,0,5397),(3522,0,1187,NULL,1,0,5402),(3523,0,1187,NULL,2,0,5403),(3524,0,1187,NULL,3,0,5404),(3525,0,1187,NULL,4,0,5405),(3526,0,1188,NULL,1,0,5406),(3527,0,1188,NULL,2,0,5407),(3528,0,1188,NULL,3,0,5408),(3529,0,1188,NULL,4,0,5409),(3530,0,1189,NULL,1,0,5410),(3531,0,1189,NULL,2,0,5411),(3532,0,1189,NULL,3,0,5412),(3533,0,1189,NULL,4,0,5413),(3534,0,1190,NULL,1,0,5414),(3535,0,1190,NULL,2,0,5415),(3536,0,1190,NULL,3,0,5416),(3537,0,1190,NULL,4,0,5417),(3538,0,320,NULL,1,0,5418),(3539,0,320,NULL,2,0,5419),(3540,0,320,NULL,3,0,5420),(3541,0,320,NULL,4,0,5421),(3542,0,318,NULL,1,0,5422),(3543,0,318,NULL,2,0,5423),(3544,0,318,NULL,3,0,5424),(3545,0,318,NULL,4,0,5425),(3546,0,319,NULL,1,0,5426),(3547,0,319,NULL,2,0,5427),(3548,0,319,NULL,3,0,5428),(3549,0,319,NULL,4,0,5429),(3550,0,321,NULL,1,0,5430),(3551,0,321,NULL,2,0,5431),(3552,0,321,NULL,3,0,5432),(3553,0,321,NULL,4,0,5433),(3554,0,1191,NULL,1,0,5438),(3555,0,1191,NULL,2,0,5439),(3556,0,1191,NULL,3,0,5440),(3557,0,1192,NULL,1,0,5441),(3558,0,1192,NULL,2,0,5442),(3559,0,1192,NULL,3,0,5443),(3560,0,1193,NULL,1,0,5444),(3561,0,1193,NULL,2,0,5445),(3562,0,1193,NULL,3,0,5446),(3563,0,1194,NULL,1,0,5447),(3564,0,1194,NULL,2,0,5448),(3565,0,1194,NULL,3,0,5449),(3566,0,1195,NULL,1,0,5450),(3567,0,1195,NULL,2,0,5451),(3568,0,1195,NULL,3,0,5452),(3569,0,407,NULL,1,0,5453),(3570,0,407,NULL,2,0,5454),(3571,0,407,NULL,3,0,5455),(3572,0,408,NULL,1,0,5456),(3573,0,408,NULL,2,0,5457),(3574,0,408,NULL,3,0,5458),(3575,0,409,NULL,1,0,5459),(3576,0,409,NULL,2,0,5460),(3577,0,409,NULL,3,0,5461),(3578,0,410,NULL,1,0,5462),(3579,0,410,NULL,2,0,5463),(3580,0,410,NULL,3,0,5464),(3581,0,411,NULL,1,0,5465),(3582,0,411,NULL,2,0,5466),(3583,0,411,NULL,3,0,5467),(3584,0,1196,NULL,1,0,5471),(3585,0,1196,NULL,2,0,5472),(3586,0,1196,NULL,3,0,5473),(3587,0,1197,NULL,1,0,5474),(3588,0,1197,NULL,2,0,5475),(3589,0,1197,NULL,3,0,5476),(3590,0,1198,NULL,1,0,5477),(3591,0,1198,NULL,2,0,5478),(3592,0,1198,NULL,3,0,5479),(3593,0,524,NULL,1,0,5480),(3594,0,524,NULL,2,0,5481),(3595,0,524,NULL,3,0,5482),(3596,0,525,NULL,1,0,5483),(3597,0,525,NULL,2,0,5484),(3598,0,525,NULL,3,0,5485),(3599,0,526,NULL,1,0,5486),(3600,0,526,NULL,2,0,5487),(3601,0,526,NULL,3,0,5488),(3602,0,1199,NULL,1,0,5493),(3603,0,1199,NULL,2,0,5494),(3604,0,1199,NULL,3,0,5495),(3605,0,1200,NULL,1,0,5496),(3606,0,1200,NULL,2,0,5497),(3607,0,1200,NULL,3,0,5498),(3608,0,1201,NULL,1,0,5499),(3609,0,1201,NULL,2,0,5500),(3610,0,1201,NULL,3,0,5501),(3611,0,538,NULL,1,0,5502),(3612,0,538,NULL,2,0,5503),(3613,0,538,NULL,3,0,5504),(3614,0,539,NULL,1,0,5505),(3615,0,539,NULL,2,0,5506),(3616,0,539,NULL,3,0,5507),(3617,0,540,NULL,1,0,5508),(3618,0,540,NULL,2,0,5509),(3619,0,540,NULL,3,0,5510),(3620,0,1202,NULL,1,0,5514),(3621,0,1202,NULL,2,0,5515),(3622,0,1202,NULL,3,0,5516),(3623,0,1202,NULL,4,0,5517),(3624,0,1203,NULL,1,0,5518),(3625,0,1203,NULL,2,0,5519),(3626,0,1203,NULL,3,0,5520),(3627,0,1203,NULL,4,0,5521),(3628,0,1204,NULL,1,0,5522),(3629,0,1204,NULL,2,0,5523),(3630,0,1204,NULL,3,0,5524),(3631,0,1204,NULL,4,0,5525),(3632,0,499,NULL,1,0,5526),(3633,0,499,NULL,2,0,5527),(3634,0,499,NULL,3,0,5528),(3635,0,499,NULL,4,0,5529),(3636,0,498,NULL,1,0,5530),(3637,0,498,NULL,2,0,5531),(3638,0,498,NULL,3,0,5532),(3639,0,498,NULL,4,0,5533),(3640,0,500,NULL,1,0,5534),(3641,0,500,NULL,2,0,5535),(3642,0,500,NULL,3,0,5536),(3643,0,500,NULL,4,0,5537),(3644,0,1205,NULL,1,0,5542),(3645,0,1205,NULL,2,0,5543),(3646,0,1205,NULL,3,0,5544),(3647,0,1205,NULL,4,0,5545),(3648,0,1206,NULL,1,0,5546),(3649,0,1206,NULL,2,0,5547),(3650,0,1206,NULL,3,0,5548),(3651,0,1206,NULL,4,0,5549),(3652,0,1207,NULL,1,0,5550),(3653,0,1207,NULL,2,0,5551),(3654,0,1207,NULL,3,0,5552),(3655,0,1207,NULL,4,0,5553),(3656,0,528,NULL,1,0,5554),(3657,0,528,NULL,2,0,5555),(3658,0,528,NULL,3,0,5556),(3659,0,528,NULL,4,0,5557),(3660,0,529,NULL,1,0,5558),(3661,0,529,NULL,2,0,5559),(3662,0,529,NULL,3,0,5560),(3663,0,529,NULL,4,0,5561),(3664,0,530,NULL,1,0,5562),(3665,0,530,NULL,2,0,5563),(3666,0,530,NULL,3,0,5564),(3667,0,530,NULL,4,0,5565),(3668,0,1208,NULL,1,0,5570),(3669,0,1208,NULL,2,0,5571),(3670,0,1208,NULL,3,0,5572),(3671,0,1208,NULL,4,0,5573),(3672,0,1209,NULL,1,0,5574),(3673,0,1209,NULL,2,0,5575),(3674,0,1209,NULL,3,0,5576),(3675,0,1209,NULL,4,0,5577),(3676,0,1210,NULL,1,0,5578),(3677,0,1210,NULL,2,0,5579),(3678,0,1210,NULL,3,0,5580),(3679,0,1210,NULL,4,0,5581),(3680,0,520,NULL,1,0,5582),(3681,0,520,NULL,2,0,5583),(3682,0,520,NULL,3,0,5584),(3683,0,520,NULL,4,0,5585),(3684,0,521,NULL,1,0,5586),(3685,0,521,NULL,2,0,5587),(3686,0,521,NULL,3,0,5588),(3687,0,521,NULL,4,0,5589),(3688,0,522,NULL,1,0,5590),(3689,0,522,NULL,2,0,5591),(3690,0,522,NULL,3,0,5592),(3691,0,522,NULL,4,0,5593),(3692,0,1211,NULL,1,0,5598),(3693,0,1211,NULL,2,0,5599),(3694,0,1211,NULL,4,0,5600),(3695,0,1211,NULL,5,0,5601),(3696,0,1212,NULL,1,0,5602),(3697,0,1212,NULL,2,0,5603),(3698,0,1212,NULL,4,0,5604),(3699,0,1212,NULL,5,0,5605),(3700,0,1213,NULL,1,0,5606),(3701,0,1213,NULL,2,0,5607),(3702,0,1213,NULL,4,0,5608),(3703,0,1213,NULL,5,0,5609),(3704,0,496,NULL,1,0,5610),(3705,0,496,NULL,2,0,5611),(3706,0,496,NULL,3,0,5612),(3707,0,496,NULL,4,0,5613),(3708,0,495,NULL,1,0,5614),(3709,0,495,NULL,2,0,5615),(3710,0,495,NULL,3,0,5616),(3711,0,495,NULL,4,0,5617),(3712,0,497,NULL,1,0,5618),(3713,0,497,NULL,2,0,5619),(3714,0,497,NULL,3,0,5620),(3715,0,497,NULL,4,0,5621),(3716,0,1214,NULL,1,0,5626),(3717,0,1214,NULL,2,0,5627),(3718,0,1214,NULL,3,0,5628),(3719,0,1215,NULL,1,0,5629),(3720,0,1215,NULL,2,0,5630),(3721,0,1215,NULL,3,0,5631),(3722,0,1216,NULL,1,0,5632),(3723,0,1216,NULL,2,0,5633),(3724,0,1216,NULL,3,0,5634),(3725,0,1217,NULL,1,0,5635),(3726,0,1217,NULL,2,0,5636),(3727,0,1217,NULL,3,0,5637),(3728,0,1218,NULL,1,0,5638),(3729,0,1218,NULL,2,0,5639),(3730,0,1218,NULL,3,0,5640),(3731,0,380,NULL,1,0,5641),(3732,0,380,NULL,2,0,5642),(3733,0,380,NULL,3,0,5643),(3734,0,384,NULL,1,0,5644),(3735,0,384,NULL,2,0,5645),(3736,0,384,NULL,3,0,5646),(3737,0,381,NULL,1,0,5647),(3738,0,381,NULL,2,0,5648),(3739,0,381,NULL,3,0,5649),(3740,0,382,NULL,1,0,5650),(3741,0,382,NULL,2,0,5651),(3742,0,382,NULL,3,0,5652),(3743,0,383,NULL,1,0,5653),(3744,0,383,NULL,2,0,5654),(3745,0,383,NULL,3,0,5655),(3746,0,1219,NULL,1,0,5659),(3747,0,1219,NULL,2,0,5660),(3748,0,1219,NULL,3,0,5661),(3749,0,1220,NULL,1,0,5662),(3750,0,1220,NULL,2,0,5663),(3751,0,1220,NULL,3,0,5664),(3752,0,1221,NULL,1,0,5665),(3753,0,1221,NULL,2,0,5666),(3754,0,1221,NULL,3,0,5667),(3755,0,195,NULL,1,0,5668),(3756,0,195,NULL,2,0,5669),(3757,0,195,NULL,3,0,5670),(3758,0,196,NULL,1,0,5671),(3759,0,196,NULL,2,0,5672),(3760,0,196,NULL,3,0,5673),(3761,0,194,NULL,1,0,5674),(3762,0,194,NULL,2,0,5675),(3763,0,194,NULL,3,0,5676),(3764,0,1222,NULL,1,0,5680),(3765,0,1222,NULL,2,0,5681),(3766,0,1222,NULL,3,0,5682),(3767,0,1223,NULL,1,0,5683),(3768,0,1223,NULL,2,0,5684),(3769,0,1223,NULL,3,0,5685),(3770,0,1224,NULL,1,0,5686),(3771,0,1224,NULL,2,0,5687),(3772,0,1224,NULL,3,0,5688),(3773,0,1225,NULL,1,0,5689),(3774,0,1225,NULL,2,0,5690),(3775,0,1225,NULL,3,0,5691),(3776,0,1226,NULL,1,0,5692),(3777,0,1226,NULL,2,0,5693),(3778,0,1226,NULL,3,0,5694),(3779,0,1227,NULL,1,0,5695),(3780,0,1227,NULL,2,0,5696),(3781,0,1227,NULL,3,0,5697),(3782,0,302,NULL,1,0,5698),(3783,0,302,NULL,2,0,5699),(3784,0,302,NULL,3,0,5700),(3785,0,300,NULL,1,0,5701),(3786,0,300,NULL,2,0,5702),(3787,0,300,NULL,3,0,5703),(3788,0,301,NULL,1,0,5704),(3789,0,301,NULL,2,0,5705),(3790,0,301,NULL,3,0,5706),(3791,0,303,NULL,1,0,5707),(3792,0,303,NULL,2,0,5708),(3793,0,303,NULL,3,0,5709),(3794,0,304,NULL,1,0,5710),(3795,0,304,NULL,2,0,5711),(3796,0,304,NULL,3,0,5712),(3797,0,305,NULL,1,0,5713),(3798,0,305,NULL,2,0,5714),(3799,0,305,NULL,3,0,5715),(3800,0,369,NULL,1,0,5719),(3801,0,369,NULL,2,0,5720),(3802,0,369,NULL,3,0,5721),(3803,0,369,NULL,4,0,5722),(3804,0,368,NULL,1,0,5723),(3805,0,368,NULL,2,0,5724),(3806,0,368,NULL,3,0,5725),(3807,0,368,NULL,4,0,5726),(3808,0,370,NULL,1,0,5727),(3809,0,370,NULL,2,0,5728),(3810,0,370,NULL,3,0,5729),(3811,0,370,NULL,4,0,5730),(3812,0,371,NULL,1,0,5731),(3813,0,371,NULL,2,0,5732),(3814,0,371,NULL,3,0,5733),(3815,0,371,NULL,4,0,5734),(3816,0,373,NULL,1,0,5735),(3817,0,373,NULL,2,0,5736),(3818,0,373,NULL,3,0,5737),(3819,0,373,NULL,4,0,5738),(3820,0,372,NULL,1,0,5739),(3821,0,372,NULL,2,0,5740),(3822,0,372,NULL,3,0,5741),(3823,0,372,NULL,4,0,5742),(3824,0,374,NULL,1,0,5743),(3825,0,374,NULL,2,0,5744),(3826,0,374,NULL,3,0,5745),(3827,0,374,NULL,4,0,5746),(3828,0,375,NULL,1,0,5747),(3829,0,375,NULL,2,0,5748),(3830,0,375,NULL,3,0,5749),(3831,0,375,NULL,4,0,5750),(3832,0,1228,NULL,1,0,5755),(3833,0,1228,NULL,2,0,5756),(3834,0,1228,NULL,3,0,5757),(3835,0,1228,NULL,4,0,5758),(3836,0,1229,NULL,1,0,5759),(3837,0,1229,NULL,2,0,5760),(3838,0,1229,NULL,3,0,5761),(3839,0,1229,NULL,4,0,5762),(3840,0,1230,NULL,1,0,5763),(3841,0,1230,NULL,2,0,5764),(3842,0,1230,NULL,3,0,5765),(3843,0,1230,NULL,4,0,5766),(3844,0,290,NULL,1,0,5767),(3845,0,290,NULL,2,0,5768),(3846,0,290,NULL,3,0,5769),(3847,0,290,NULL,4,0,5770),(3848,0,291,NULL,1,0,5771),(3849,0,291,NULL,2,0,5772),(3850,0,291,NULL,3,0,5773),(3851,0,291,NULL,4,0,5774),(3852,0,292,NULL,1,0,5775),(3853,0,292,NULL,2,0,5776),(3854,0,292,NULL,3,0,5777),(3855,0,292,NULL,4,0,5778),(3856,0,1231,NULL,1,0,5783),(3857,0,1231,NULL,2,0,5784),(3858,0,1231,NULL,3,0,5785),(3859,0,1232,NULL,1,0,5786),(3860,0,1232,NULL,2,0,5787),(3861,0,1232,NULL,3,0,5788),(3862,0,1233,NULL,1,0,5789),(3863,0,1233,NULL,2,0,5790),(3864,0,1233,NULL,3,0,5791),(3865,0,532,NULL,1,0,5792),(3866,0,532,NULL,2,0,5793),(3867,0,532,NULL,3,0,5794),(3868,0,533,NULL,1,0,5795),(3869,0,533,NULL,2,0,5796),(3870,0,533,NULL,3,0,5797),(3871,0,534,NULL,1,0,5798),(3872,0,534,NULL,2,0,5799),(3873,0,534,NULL,3,0,5800),(3874,0,1234,NULL,1,0,5804),(3875,0,1234,NULL,2,0,5805),(3876,0,1234,NULL,3,0,5806),(3877,0,1234,NULL,4,0,5807),(3878,0,1235,NULL,1,0,5808),(3879,0,1235,NULL,2,0,5809),(3880,0,1235,NULL,3,0,5810),(3881,0,1235,NULL,4,0,5811),(3882,0,1236,NULL,1,0,5812),(3883,0,1236,NULL,2,0,5813),(3884,0,1236,NULL,3,0,5814),(3885,0,1236,NULL,4,0,5815),(3886,0,1237,NULL,1,0,5816),(3887,0,1237,NULL,2,0,5817),(3888,0,1237,NULL,3,0,5818),(3889,0,1237,NULL,4,0,5819),(3890,0,259,NULL,1,0,5820),(3891,0,259,NULL,2,0,5821),(3892,0,259,NULL,3,0,5822),(3893,0,259,NULL,4,0,5823),(3894,0,257,NULL,1,0,5824),(3895,0,257,NULL,2,0,5825),(3896,0,257,NULL,3,0,5826),(3897,0,257,NULL,4,0,5827),(3898,0,258,NULL,1,0,5828),(3899,0,258,NULL,2,0,5829),(3900,0,258,NULL,3,0,5830),(3901,0,258,NULL,4,0,5831),(3902,0,260,NULL,1,0,5832),(3903,0,260,NULL,2,0,5833),(3904,0,260,NULL,3,0,5834),(3905,0,260,NULL,4,0,5835),(3906,0,1238,NULL,1,0,5840),(3907,0,1238,NULL,2,0,5841),(3908,0,1238,NULL,3,0,5842),(3909,0,1238,NULL,4,0,5843),(3910,0,1239,NULL,1,0,5844),(3911,0,1239,NULL,2,0,5845),(3912,0,1239,NULL,3,0,5846),(3913,0,1239,NULL,4,0,5847),(3914,0,1240,NULL,1,0,5848),(3915,0,1240,NULL,2,0,5849),(3916,0,1240,NULL,3,0,5850),(3917,0,1240,NULL,4,0,5851),(3918,0,1241,NULL,1,0,5852),(3919,0,1241,NULL,2,0,5853),(3920,0,1241,NULL,3,0,5854),(3921,0,1241,NULL,4,0,5855),(3922,0,190,NULL,1,0,5856),(3923,0,190,NULL,2,0,5857),(3924,0,190,NULL,3,0,5858),(3925,0,190,NULL,4,0,5859),(3926,0,192,NULL,1,0,5860),(3927,0,192,NULL,2,0,5861),(3928,0,192,NULL,3,0,5862),(3929,0,192,NULL,4,0,5863),(3930,0,193,NULL,1,0,5864),(3931,0,193,NULL,2,0,5865),(3932,0,193,NULL,3,0,5866),(3933,0,193,NULL,4,0,5867),(3934,0,191,NULL,1,0,5868),(3935,0,191,NULL,2,0,5869),(3936,0,191,NULL,3,0,5870),(3937,0,191,NULL,4,0,5871),(3938,0,1242,NULL,1,0,5876),(3939,0,1242,NULL,2,0,5877),(3940,0,1242,NULL,3,0,5878),(3941,0,1242,NULL,4,0,5879),(3942,0,1243,NULL,1,0,5880),(3943,0,1243,NULL,2,0,5881),(3944,0,1243,NULL,3,0,5882),(3945,0,1243,NULL,4,0,5883),(3946,0,1244,NULL,1,0,5884),(3947,0,1244,NULL,2,0,5885),(3948,0,1244,NULL,3,0,5886),(3949,0,1244,NULL,4,0,5887),(3950,0,1245,NULL,1,0,5888),(3951,0,1245,NULL,2,0,5889),(3952,0,1245,NULL,3,0,5890),(3953,0,1245,NULL,4,0,5891),(3954,0,1246,NULL,1,0,5892),(3955,0,1246,NULL,2,0,5893),(3956,0,1246,NULL,3,0,5894),(3957,0,1246,NULL,4,0,5895),(3958,0,274,NULL,1,0,5896),(3959,0,274,NULL,2,0,5897),(3960,0,274,NULL,3,0,5898),(3961,0,274,NULL,4,0,5899),(3962,0,272,NULL,1,0,5900),(3963,0,272,NULL,2,0,5901),(3964,0,272,NULL,3,0,5902),(3965,0,272,NULL,4,0,5903),(3966,0,273,NULL,1,0,5904),(3967,0,273,NULL,2,0,5905),(3968,0,273,NULL,3,0,5906),(3969,0,273,NULL,4,0,5907),(3970,0,275,NULL,1,0,5908),(3971,0,275,NULL,2,0,5909),(3972,0,275,NULL,3,0,5910),(3973,0,275,NULL,4,0,5911),(3974,0,276,NULL,1,0,5912),(3975,0,276,NULL,2,0,5913),(3976,0,276,NULL,3,0,5914),(3977,0,276,NULL,4,0,5915),(3978,0,1247,NULL,1,0,5920),(3979,0,1247,NULL,2,0,5921),(3980,0,1247,NULL,3,0,5922),(3981,0,1248,NULL,1,0,5923),(3982,0,1248,NULL,2,0,5924),(3983,0,1248,NULL,3,0,5925),(3984,0,1249,NULL,1,0,5926),(3985,0,1249,NULL,2,0,5927),(3986,0,1249,NULL,3,0,5928),(3987,0,1250,NULL,1,0,5929),(3988,0,1250,NULL,2,0,5930),(3989,0,1250,NULL,3,0,5931),(3990,0,351,NULL,1,0,5932),(3991,0,351,NULL,2,0,5933),(3992,0,351,NULL,3,0,5934),(3993,0,350,NULL,1,0,5935),(3994,0,350,NULL,2,0,5936),(3995,0,350,NULL,3,0,5937),(3996,0,352,NULL,1,0,5938),(3997,0,352,NULL,2,0,5939),(3998,0,352,NULL,3,0,5940),(3999,0,353,NULL,1,0,5941),(4000,0,353,NULL,2,0,5942),(4001,0,353,NULL,3,0,5943),(4002,0,1251,NULL,1,0,5947),(4003,0,1251,NULL,2,0,5948),(4004,0,1251,NULL,3,0,5949),(4005,0,1252,NULL,1,0,5950),(4006,0,1252,NULL,2,0,5951),(4007,0,1252,NULL,3,0,5952),(4008,0,1253,NULL,1,0,5953),(4009,0,1253,NULL,2,0,5954),(4010,0,1253,NULL,3,0,5955),(4011,0,1254,NULL,1,0,5956),(4012,0,1254,NULL,2,0,5957),(4013,0,1254,NULL,3,0,5958),(4014,0,1255,NULL,1,0,5959),(4015,0,1255,NULL,2,0,5960),(4016,0,1255,NULL,3,0,5961),(4017,0,1256,NULL,1,0,5962),(4018,0,1256,NULL,2,0,5963),(4019,0,1256,NULL,3,0,5964),(4020,0,322,NULL,1,0,5965),(4021,0,322,NULL,2,0,5966),(4022,0,322,NULL,3,0,5967),(4023,0,323,NULL,1,0,5968),(4024,0,323,NULL,2,0,5969),(4025,0,323,NULL,3,0,5970),(4026,0,324,NULL,1,0,5971),(4027,0,324,NULL,2,0,5972),(4028,0,324,NULL,3,0,5973),(4029,0,325,NULL,1,0,5974),(4030,0,325,NULL,2,0,5975),(4031,0,325,NULL,3,0,5976),(4032,0,326,NULL,1,0,5977),(4033,0,326,NULL,2,0,5978),(4034,0,326,NULL,3,0,5979),(4035,0,327,NULL,1,0,5980),(4036,0,327,NULL,2,0,5981),(4037,0,327,NULL,3,0,5982),(278,0,60,NULL,4,0,5983),(279,0,60,NULL,5,0,5984),(280,0,60,NULL,6,0,5985),(4038,0,1257,NULL,1,0,5986),(4039,0,1257,NULL,2,0,5987),(4040,0,1257,NULL,3,0,5988),(4041,0,1257,NULL,4,0,5989),(4042,0,1258,NULL,1,0,5990),(4043,0,1258,NULL,2,0,5991),(4044,0,1258,NULL,3,0,5992),(4045,0,1258,NULL,4,0,5993),(4046,0,1259,NULL,1,0,5994),(4047,0,1259,NULL,2,0,5995),(4048,0,1259,NULL,3,0,5996),(4049,0,1259,NULL,4,0,5997),(4050,0,1260,NULL,1,0,5998),(4051,0,1260,NULL,2,0,5999),(4052,0,1260,NULL,3,0,6000),(4053,0,1260,NULL,4,0,6001),(4054,0,315,NULL,1,0,6002),(4055,0,315,NULL,2,0,6003),(4056,0,315,NULL,3,0,6004),(4057,0,315,NULL,4,0,6005),(4058,0,314,NULL,1,0,6006),(4059,0,314,NULL,2,0,6007),(4060,0,314,NULL,3,0,6008),(4061,0,314,NULL,4,0,6009),(4062,0,312,NULL,1,0,6010),(4063,0,312,NULL,2,0,6011),(4064,0,312,NULL,3,0,6012),(4065,0,312,NULL,4,0,6013),(4066,0,313,NULL,1,0,6014),(4067,0,313,NULL,2,0,6015),(4068,0,313,NULL,3,0,6016),(4069,0,313,NULL,4,0,6017),(216,0,57,NULL,1,0,6018),(217,0,57,NULL,2,0,6019),(218,0,57,NULL,3,0,6020),(219,0,57,NULL,4,0,6021),(4070,0,1261,NULL,1,0,6022),(4071,0,1261,NULL,2,0,6023),(4072,0,1261,NULL,3,0,6024),(4073,0,1262,NULL,1,0,6025),(4074,0,1262,NULL,2,0,6026),(4075,0,1262,NULL,3,0,6027),(4076,0,1263,NULL,1,0,6028),(4077,0,1263,NULL,2,0,6029),(4078,0,1263,NULL,3,0,6030),(4079,0,1264,NULL,1,0,6031),(4080,0,1264,NULL,2,0,6032),(4081,0,1264,NULL,3,0,6033),(4082,0,1265,NULL,1,0,6034),(4083,0,1265,NULL,2,0,6035),(4084,0,1265,NULL,3,0,6036),(4085,0,416,NULL,1,0,6037),(4086,0,416,NULL,2,0,6038),(4087,0,416,NULL,3,0,6039),(4088,0,417,NULL,1,0,6040),(4089,0,417,NULL,2,0,6041),(4090,0,417,NULL,3,0,6042),(4091,0,418,NULL,1,0,6043),(4092,0,418,NULL,2,0,6044),(4093,0,418,NULL,3,0,6045),(4094,0,420,NULL,1,0,6046),(4095,0,420,NULL,2,0,6047),(4096,0,420,NULL,3,0,6048),(4097,0,419,NULL,1,0,6049),(4098,0,419,NULL,2,0,6050),(4099,0,419,NULL,3,0,6051),(4100,0,421,NULL,1,0,6052),(4101,0,421,NULL,2,0,6053),(4102,0,421,NULL,3,0,6054),(4103,0,422,NULL,1,0,6055),(4104,0,422,NULL,2,0,6056),(4105,0,422,NULL,3,0,6057),(4106,0,423,NULL,1,0,6058),(4107,0,423,NULL,2,0,6059),(4108,0,423,NULL,3,0,6060),(4109,0,425,NULL,1,0,6061),(4110,0,425,NULL,2,0,6062),(4111,0,425,NULL,3,0,6063),(4112,0,424,NULL,1,0,6064),(4113,0,424,NULL,2,0,6065),(4114,0,424,NULL,3,0,6066),(402,0,84,NULL,4,0,6067),(403,0,84,NULL,5,0,6068),(404,0,84,NULL,6,0,6069),(4115,0,1266,NULL,1,0,6070),(4116,0,1266,NULL,2,0,6071),(4117,0,1266,NULL,3,0,6072),(4118,0,1267,NULL,1,0,6073),(4119,0,1267,NULL,2,0,6074),(4120,0,1267,NULL,3,0,6075),(4121,0,1268,NULL,1,0,6076),(4122,0,1268,NULL,2,0,6077),(4123,0,1268,NULL,3,0,6078),(4124,0,1269,NULL,1,0,6079),(4125,0,1269,NULL,2,0,6080),(4126,0,1269,NULL,3,0,6081),(4127,0,1270,NULL,1,0,6082),(4128,0,1270,NULL,2,0,6083),(4129,0,1270,NULL,3,0,6084),(4130,0,1271,NULL,1,0,6085),(4131,0,1271,NULL,2,0,6086),(4132,0,1271,NULL,3,0,6087),(4133,0,449,NULL,1,0,6088),(4134,0,449,NULL,2,0,6089),(4135,0,449,NULL,3,0,6090),(4136,0,450,NULL,1,0,6091),(4137,0,450,NULL,2,0,6092),(4138,0,450,NULL,3,0,6093),(4139,0,451,NULL,1,0,6094),(4140,0,451,NULL,2,0,6095),(4141,0,451,NULL,3,0,6096),(4142,0,453,NULL,1,0,6097),(4143,0,453,NULL,2,0,6098),(4144,0,453,NULL,3,0,6099),(4145,0,452,NULL,1,0,6100),(4146,0,452,NULL,2,0,6101),(4147,0,452,NULL,3,0,6102),(4148,0,454,NULL,1,0,6103),(4149,0,454,NULL,2,0,6104),(4150,0,454,NULL,3,0,6105),(428,0,89,NULL,4,0,6106),(429,0,89,NULL,5,0,6107),(430,0,89,NULL,6,0,6108),(4151,0,1272,NULL,1,0,6109),(4152,0,1272,NULL,2,0,6110),(4153,0,1272,NULL,3,0,6111),(4154,0,1273,NULL,1,0,6112),(4155,0,1273,NULL,2,0,6113),(4156,0,1273,NULL,3,0,6114),(4157,0,1274,NULL,1,0,6115),(4158,0,1274,NULL,2,0,6116),(4159,0,1274,NULL,3,0,6117),(4160,0,1275,NULL,1,0,6118),(4161,0,1275,NULL,2,0,6119),(4162,0,1275,NULL,3,0,6120),(4163,0,1276,NULL,1,0,6121),(4164,0,1276,NULL,2,0,6122),(4165,0,1276,NULL,3,0,6123),(4166,0,1277,NULL,1,0,6124),(4167,0,1277,NULL,2,0,6125),(4168,0,1277,NULL,3,0,6126),(4169,0,1278,NULL,1,0,6127),(4170,0,1278,NULL,2,0,6128),(4171,0,1278,NULL,3,0,6129),(4172,0,1279,NULL,1,0,6130),(4173,0,1279,NULL,2,0,6131),(4174,0,1279,NULL,3,0,6132),(419,0,86,NULL,4,0,6133),(420,0,86,NULL,5,0,6134),(421,0,86,NULL,6,0,6135),(4175,0,1280,NULL,1,0,6136),(4176,0,1280,NULL,2,0,6137),(4177,0,1280,NULL,3,0,6138),(4178,0,1280,NULL,4,0,6139),(4179,0,1281,NULL,1,0,6140),(4180,0,1281,NULL,2,0,6141),(4181,0,1281,NULL,3,0,6142),(4182,0,1281,NULL,4,0,6143),(4183,0,1282,NULL,1,0,6144),(4184,0,1282,NULL,2,0,6145),(4185,0,1282,NULL,3,0,6146),(4186,0,1282,NULL,4,0,6147),(4187,0,1283,NULL,1,0,6148),(4188,0,1283,NULL,2,0,6149),(4189,0,1283,NULL,3,0,6150),(4190,0,1283,NULL,4,0,6151),(4191,0,204,NULL,1,0,6152),(4192,0,204,NULL,2,0,6153),(4193,0,204,NULL,3,0,6154),(4194,0,204,NULL,4,0,6155),(4195,0,203,NULL,1,0,6156),(4196,0,203,NULL,2,0,6157),(4197,0,203,NULL,3,0,6158),(4198,0,203,NULL,4,0,6159),(4199,0,205,NULL,1,0,6160),(4200,0,205,NULL,2,0,6161),(4201,0,205,NULL,3,0,6162),(4202,0,205,NULL,4,0,6163),(4203,0,206,NULL,1,0,6164),(4204,0,206,NULL,2,0,6165),(4205,0,206,NULL,3,0,6166),(4206,0,206,NULL,4,0,6167),(85,0,22,NULL,1,0,6168),(86,0,22,NULL,2,0,6169),(87,0,22,NULL,3,0,6170),(88,0,22,NULL,4,0,6171),(4207,0,1284,NULL,1,0,6172),(4208,0,1284,NULL,2,0,6173),(4209,0,1284,NULL,3,0,6174),(4210,0,1284,NULL,4,0,6175),(4211,0,1285,NULL,1,0,6176),(4212,0,1285,NULL,2,0,6177),(4213,0,1285,NULL,3,0,6178),(4214,0,1285,NULL,4,0,6179),(4215,0,1286,NULL,1,0,6180),(4216,0,1286,NULL,2,0,6181),(4217,0,1286,NULL,3,0,6182),(4218,0,1286,NULL,4,0,6183),(4219,0,309,NULL,1,0,6184),(4220,0,309,NULL,2,0,6185),(4221,0,309,NULL,3,0,6186),(4222,0,309,NULL,4,0,6187),(4223,0,310,NULL,1,0,6188),(4224,0,310,NULL,2,0,6189),(4225,0,310,NULL,3,0,6190),(4226,0,310,NULL,4,0,6191),(4227,0,311,NULL,1,0,6192),(4228,0,311,NULL,2,0,6193),(4229,0,311,NULL,3,0,6194),(4230,0,311,NULL,4,0,6195),(220,0,56,NULL,5,0,6196),(221,0,56,NULL,6,0,6197),(222,0,56,NULL,7,0,6198),(223,0,56,NULL,8,0,6199),(4231,0,1287,NULL,1,0,6200),(4232,0,1287,NULL,2,0,6201),(4233,0,1287,NULL,4,0,6202),(4234,0,1287,NULL,5,0,6203),(4235,0,1288,NULL,1,0,6204),(4236,0,1288,NULL,2,0,6205),(4237,0,1288,NULL,4,0,6206),(4238,0,1288,NULL,5,0,6207),(4239,0,1289,NULL,1,0,6208),(4240,0,1289,NULL,2,0,6209),(4241,0,1289,NULL,4,0,6210),(4242,0,1289,NULL,5,0,6211),(4243,0,389,NULL,1,0,6212),(4244,0,389,NULL,2,0,6213),(4245,0,389,NULL,3,0,6214),(4246,0,389,NULL,4,0,6215),(4247,0,388,NULL,1,0,6216),(4248,0,388,NULL,2,0,6217),(4249,0,388,NULL,3,0,6218),(4250,0,388,NULL,4,0,6219),(4251,0,390,NULL,1,0,6220),(4252,0,390,NULL,2,0,6221),(4253,0,390,NULL,3,0,6222),(4254,0,390,NULL,4,0,6223),(353,0,77,NULL,5,0,6224),(354,0,77,NULL,6,0,6225),(355,0,77,NULL,7,0,6226),(356,0,77,NULL,8,0,6227),(4255,0,1290,NULL,1,0,6228),(4256,0,1290,NULL,2,0,6229),(4257,0,1290,NULL,3,0,6230),(4258,0,1290,NULL,4,0,6231),(4259,0,1291,NULL,1,0,6232),(4260,0,1291,NULL,2,0,6233),(4261,0,1291,NULL,3,0,6234),(4262,0,1291,NULL,4,0,6235),(4263,0,1292,NULL,1,0,6236),(4264,0,1292,NULL,2,0,6237),(4265,0,1292,NULL,3,0,6238),(4266,0,1292,NULL,4,0,6239),(4267,0,164,NULL,1,0,6240),(4268,0,164,NULL,2,0,6241),(4269,0,164,NULL,3,0,6242),(4270,0,164,NULL,4,0,6243),(4271,0,163,NULL,1,0,6244),(4272,0,163,NULL,2,0,6245),(4273,0,163,NULL,3,0,6246),(4274,0,163,NULL,4,0,6247),(4275,0,165,NULL,1,0,6248),(4276,0,165,NULL,2,0,6249),(4277,0,165,NULL,3,0,6250),(4278,0,165,NULL,4,0,6251),(34,0,9,NULL,1,0,6252),(35,0,9,NULL,2,0,6253),(36,0,9,NULL,3,0,6254),(37,0,9,NULL,4,0,6255),(4279,0,1293,NULL,1,0,6256),(4280,0,1293,NULL,2,0,6257),(4281,0,1293,NULL,3,0,6258),(4282,0,1293,NULL,4,0,6259),(4283,0,1294,NULL,1,0,6260),(4284,0,1294,NULL,2,0,6261),(4285,0,1294,NULL,3,0,6262),(4286,0,1294,NULL,4,0,6263),(4287,0,1295,NULL,1,0,6264),(4288,0,1295,NULL,2,0,6265),(4289,0,1295,NULL,3,0,6266),(4290,0,1295,NULL,4,0,6267),(4291,0,229,NULL,1,0,6268),(4292,0,229,NULL,2,0,6269),(4293,0,229,NULL,3,0,6270),(4294,0,229,NULL,4,0,6271),(4295,0,228,NULL,1,0,6272),(4296,0,228,NULL,2,0,6273),(4297,0,228,NULL,3,0,6274),(4298,0,228,NULL,4,0,6275),(4299,0,230,NULL,1,0,6276),(4300,0,230,NULL,2,0,6277),(4301,0,230,NULL,3,0,6278),(4302,0,230,NULL,4,0,6279),(112,0,30,NULL,1,0,6280),(113,0,30,NULL,2,0,6281),(114,0,30,NULL,3,0,6282),(115,0,30,NULL,4,0,6283),(4303,0,1296,NULL,1,0,6284),(4304,0,1296,NULL,2,0,6285),(4305,0,1296,NULL,3,0,6286),(4306,0,1296,NULL,4,0,6287),(4307,0,1297,NULL,1,0,6288),(4308,0,1297,NULL,2,0,6289),(4309,0,1297,NULL,3,0,6290),(4310,0,1297,NULL,4,0,6291),(4311,0,1298,NULL,1,0,6292),(4312,0,1298,NULL,2,0,6293),(4313,0,1298,NULL,3,0,6294),(4314,0,1298,NULL,4,0,6295),(4315,0,513,NULL,1,0,6296),(4316,0,513,NULL,2,0,6297),(4317,0,513,NULL,3,0,6298),(4318,0,513,NULL,4,0,6299),(4319,0,514,NULL,1,0,6300),(4320,0,514,NULL,2,0,6301),(4321,0,514,NULL,3,0,6302),(4322,0,514,NULL,4,0,6303),(4323,0,515,NULL,1,0,6304),(4324,0,515,NULL,2,0,6305),(4325,0,515,NULL,3,0,6306),(4326,0,515,NULL,4,0,6307),(576,0,110,NULL,5,0,6308),(577,0,110,NULL,6,0,6309),(578,0,110,NULL,7,0,6310),(579,0,110,NULL,8,0,6311),(4327,0,1299,NULL,1,0,6312),(4328,0,1299,NULL,2,0,6313),(4329,0,1299,NULL,3,0,6314),(4330,0,1299,NULL,4,0,6315),(4331,0,1300,NULL,1,0,6316),(4332,0,1300,NULL,2,0,6317),(4333,0,1300,NULL,3,0,6318),(4334,0,1300,NULL,4,0,6319),(4335,0,1301,NULL,1,0,6320),(4336,0,1301,NULL,2,0,6321),(4337,0,1301,NULL,3,0,6322),(4338,0,1301,NULL,4,0,6323),(4339,0,510,NULL,1,0,6324),(4340,0,510,NULL,2,0,6325),(4341,0,510,NULL,3,0,6326),(4342,0,510,NULL,4,0,6327),(4343,0,511,NULL,1,0,6328),(4344,0,511,NULL,2,0,6329),(4345,0,511,NULL,3,0,6330),(4346,0,511,NULL,4,0,6331),(4347,0,512,NULL,1,0,6332),(4348,0,512,NULL,2,0,6333),(4349,0,512,NULL,3,0,6334),(4350,0,512,NULL,4,0,6335),(583,0,109,NULL,5,0,6336),(584,0,109,NULL,6,0,6337),(585,0,109,NULL,7,0,6338),(586,0,109,NULL,8,0,6339),(4351,0,1302,NULL,1,0,6340),(4352,0,1302,NULL,2,0,6341),(4353,0,1302,NULL,3,0,6342),(4354,0,1302,NULL,4,0,6343),(4355,0,1303,NULL,1,0,6344),(4356,0,1303,NULL,2,0,6345),(4357,0,1303,NULL,3,0,6346),(4358,0,1303,NULL,4,0,6347),(4359,0,1304,NULL,1,0,6348),(4360,0,1304,NULL,2,0,6349),(4361,0,1304,NULL,3,0,6350),(4362,0,1304,NULL,4,0,6351),(4363,0,517,NULL,1,0,6352),(4364,0,517,NULL,2,0,6353),(4365,0,517,NULL,3,0,6354),(4366,0,517,NULL,4,0,6355),(4367,0,518,NULL,1,0,6356),(4368,0,518,NULL,2,0,6357),(4369,0,518,NULL,3,0,6358),(4370,0,518,NULL,4,0,6359),(4371,0,519,NULL,1,0,6360),(4372,0,519,NULL,2,0,6361),(4373,0,519,NULL,3,0,6362),(4374,0,519,NULL,4,0,6363),(595,0,112,NULL,4,0,6364),(596,0,112,NULL,5,0,6365),(597,0,112,NULL,6,0,6366),(598,0,112,NULL,7,0,6367),(4375,0,1305,NULL,1,0,6368),(4376,0,1305,NULL,2,0,6369),(4377,0,1305,NULL,3,0,6370),(4378,0,1306,NULL,1,0,6371),(4379,0,1306,NULL,2,0,6372),(4380,0,1306,NULL,3,0,6373),(4381,0,1307,NULL,1,0,6374),(4382,0,1307,NULL,2,0,6375),(4383,0,1307,NULL,3,0,6376),(4384,0,209,NULL,2,0,6377),(4385,0,209,NULL,3,0,6378),(4386,0,209,NULL,4,0,6379),(4387,0,207,NULL,2,0,6380),(4388,0,207,NULL,3,0,6381),(4389,0,207,NULL,4,0,6382),(4390,0,208,NULL,2,0,6383),(4391,0,208,NULL,3,0,6384),(4392,0,208,NULL,4,0,6385),(93,0,24,NULL,1,0,6386),(94,0,24,NULL,2,0,6387),(95,0,24,NULL,3,0,6388),(4393,0,1308,NULL,1,0,6389),(4394,0,1308,NULL,2,0,6390),(4395,0,1308,NULL,3,0,6391),(603,0,114,NULL,0,0,6395),(604,0,114,NULL,1,0,6396),(605,0,114,NULL,2,0,6397),(4399,0,1309,NULL,1,0,6398),(4400,0,1309,NULL,2,0,6399),(4401,0,1309,NULL,3,0,6400),(4402,0,1309,NULL,4,0,6401),(4403,0,1310,NULL,1,0,6402),(4404,0,1310,NULL,2,0,6403),(4405,0,1310,NULL,3,0,6404),(4406,0,1310,NULL,4,0,6405),(4407,0,316,NULL,1,0,6406),(4408,0,316,NULL,2,0,6407),(4409,0,316,NULL,3,0,6408),(4410,0,316,NULL,4,0,6409),(4411,0,317,NULL,1,0,6410),(4412,0,317,NULL,2,0,6411),(4413,0,317,NULL,3,0,6412),(4414,0,317,NULL,4,0,6413),(224,0,58,NULL,1,0,6414),(225,0,58,NULL,2,0,6415),(226,0,58,NULL,3,0,6416),(227,0,58,NULL,4,0,6417),(4415,0,1311,NULL,1,0,6418),(4416,0,1311,NULL,2,0,6419),(4417,0,1311,NULL,3,0,6420),(4418,0,1311,NULL,4,0,6421),(4419,0,548,NULL,1,0,6422),(4420,0,548,NULL,2,0,6423),(4421,0,548,NULL,3,0,6424),(4422,0,548,NULL,4,0,6425),(679,0,128,NULL,0,0,6426),(680,0,128,NULL,1,0,6427),(681,0,128,NULL,2,0,6428),(682,0,128,NULL,3,0,6429),(683,0,128,NULL,4,0,6430),(684,0,128,NULL,5,0,6431),(4423,0,1312,NULL,1,0,6432),(4424,0,1312,NULL,2,0,6433),(4425,0,1312,NULL,4,0,6434),(4426,0,1312,NULL,5,0,6435),(4427,0,1313,NULL,1,0,6436),(4428,0,1313,NULL,2,0,6437),(4429,0,1313,NULL,4,0,6438),(4430,0,1313,NULL,5,0,6439),(4431,0,231,NULL,1,0,6440),(4432,0,231,NULL,2,0,6441),(4433,0,231,NULL,3,0,6442),(4434,0,231,NULL,4,0,6443),(4435,0,232,NULL,1,0,6444),(4436,0,232,NULL,2,0,6445),(4437,0,232,NULL,3,0,6446),(4438,0,232,NULL,4,0,6447),(116,0,31,NULL,0,0,6448),(117,0,31,NULL,1,0,6449),(118,0,31,NULL,2,0,6450),(119,0,31,NULL,3,0,6451),(4439,0,1314,NULL,2,0,6452),(4440,0,1314,NULL,3,0,6453),(4441,0,1314,NULL,4,0,6454),(4442,0,1314,NULL,5,0,6455),(4443,0,547,NULL,1,0,6456),(4444,0,547,NULL,2,0,6457),(4445,0,547,NULL,3,0,6458),(4446,0,547,NULL,5,0,6459),(673,0,127,NULL,0,0,6460),(674,0,127,NULL,1,0,6461),(675,0,127,NULL,2,0,6462),(676,0,127,NULL,3,0,6463),(677,0,127,NULL,4,0,6464),(678,0,127,NULL,5,0,6465),(4447,0,1315,NULL,1,0,6466),(4448,0,1315,NULL,2,0,6467),(4449,0,1315,NULL,3,0,6468),(4450,0,1315,NULL,4,0,6469),(4451,0,1316,NULL,1,0,6470),(4452,0,1316,NULL,2,0,6471),(4453,0,1316,NULL,3,0,6472),(4454,0,1316,NULL,4,0,6473),(4455,0,285,NULL,1,0,6474),(4456,0,285,NULL,2,0,6475),(4457,0,285,NULL,3,0,6476),(4458,0,285,NULL,4,0,6477),(4459,0,286,NULL,1,0,6478),(4460,0,286,NULL,2,0,6479),(4461,0,286,NULL,3,0,6480),(4462,0,286,NULL,4,0,6481),(177,0,48,NULL,0,0,6482),(178,0,48,NULL,1,0,6483),(179,0,48,NULL,2,0,6484),(180,0,48,NULL,3,0,6485),(4463,0,1317,NULL,1,0,6486),(4464,0,1317,NULL,2,0,6487),(4465,0,1317,NULL,3,0,6488),(4466,0,1317,NULL,4,0,6489),(4467,0,546,NULL,1,0,6490),(4468,0,546,NULL,2,0,6491),(4469,0,546,NULL,3,0,6492),(4470,0,546,NULL,4,0,6493),(666,0,126,NULL,0,0,6494),(667,0,126,NULL,1,0,6495),(668,0,126,NULL,2,0,6496),(669,0,126,NULL,3,0,6497),(670,0,126,NULL,4,0,6498),(671,0,126,NULL,5,0,6499),(672,0,126,NULL,6,0,6500),(4471,0,1318,NULL,2,0,6501),(4472,0,1318,NULL,3,0,6502),(4473,0,1318,NULL,4,0,6503),(4474,0,1318,NULL,5,0,6504),(661,0,125,NULL,0,0,6509),(662,0,125,NULL,1,0,6510),(663,0,125,NULL,2,0,6511),(664,0,125,NULL,3,0,6512),(665,0,125,NULL,4,0,6513),(4479,0,1319,NULL,1,0,6514),(4480,0,1319,NULL,2,0,6515),(4481,0,1319,NULL,3,0,6516),(4482,0,1319,NULL,4,0,6517),(4483,0,544,NULL,1,0,6518),(4484,0,544,NULL,2,0,6519),(4485,0,544,NULL,3,0,6520),(4486,0,544,NULL,4,0,6521),(655,0,124,NULL,0,0,6522),(656,0,124,NULL,1,0,6523),(657,0,124,NULL,2,0,6524),(658,0,124,NULL,3,0,6525),(659,0,124,NULL,4,0,6526),(660,0,124,NULL,5,0,6527),(4487,0,1320,NULL,1,0,6528),(4488,0,1320,NULL,2,0,6529),(4489,0,1320,NULL,3,0,6530),(4490,0,541,NULL,1,0,6531),(4491,0,541,NULL,2,0,6532),(4492,0,541,NULL,3,0,6533),(641,0,121,NULL,0,0,6534),(642,0,121,NULL,1,0,6535),(643,0,121,NULL,2,0,6536),(4493,0,1321,NULL,1,0,6537),(4494,0,1321,NULL,2,0,6538),(4495,0,1321,NULL,3,0,6539),(4496,0,531,NULL,1,0,6540),(4497,0,531,NULL,2,0,6541),(4498,0,531,NULL,3,0,6542),(629,0,118,NULL,0,0,6543),(630,0,118,NULL,1,0,6544),(631,0,118,NULL,2,0,6545),(4499,0,1322,NULL,1,0,6546),(4500,0,1322,NULL,2,0,6547),(4501,0,1322,NULL,3,0,6548),(4502,0,1322,NULL,4,0,6549),(4503,0,1323,NULL,1,0,6550),(4504,0,1323,NULL,2,0,6551),(4505,0,1323,NULL,3,0,6552),(4506,0,1323,NULL,4,0,6553),(4507,0,1324,NULL,1,0,6554),(4508,0,1324,NULL,2,0,6555),(4509,0,1324,NULL,3,0,6556),(4510,0,1324,NULL,4,0,6557),(4511,0,339,NULL,1,0,6558),(4512,0,339,NULL,2,0,6559),(4513,0,339,NULL,3,0,6560),(4514,0,339,NULL,4,0,6561),(4515,0,338,NULL,1,0,6562),(4516,0,338,NULL,2,0,6563),(4517,0,338,NULL,3,0,6564),(4518,0,338,NULL,4,0,6565),(4519,0,340,NULL,1,0,6566),(4520,0,340,NULL,2,0,6567),(4521,0,340,NULL,3,0,6568),(4522,0,340,NULL,4,0,6569),(281,0,65,NULL,4,0,6570),(282,0,65,NULL,5,0,6571),(283,0,65,NULL,6,0,6572),(284,0,65,NULL,7,0,6573),(4523,0,1325,NULL,1,0,6574),(4524,0,1325,NULL,2,0,6575),(4525,0,1325,NULL,4,0,6576),(4526,0,1325,NULL,6,0,6577),(4527,0,1326,NULL,1,0,6578),(4528,0,1326,NULL,2,0,6579),(4529,0,1326,NULL,4,0,6580),(4530,0,1326,NULL,6,0,6581),(4531,0,378,NULL,1,0,6582),(4532,0,378,NULL,2,0,6583),(4533,0,378,NULL,3,0,6584),(4534,0,378,NULL,4,0,6585),(4535,0,379,NULL,1,0,6586),(4536,0,379,NULL,2,0,6587),(4537,0,379,NULL,3,0,6588),(4538,0,379,NULL,4,0,6589),(330,0,74,NULL,0,0,6590),(331,0,74,NULL,1,0,6591),(332,0,74,NULL,2,0,6592),(333,0,74,NULL,3,0,6593),(4539,0,1327,NULL,1,0,6594),(4540,0,1327,NULL,2,0,6595),(4541,0,1327,NULL,3,0,6596),(4542,0,1327,NULL,5,0,6597),(4543,0,1328,NULL,1,0,6598),(4544,0,1328,NULL,2,0,6599),(4545,0,1328,NULL,3,0,6600),(4546,0,1328,NULL,5,0,6601),(4547,0,233,NULL,1,0,6602),(4548,0,233,NULL,2,0,6603),(4549,0,233,NULL,3,0,6604),(4550,0,233,NULL,4,0,6605),(4551,0,234,NULL,1,0,6606),(4552,0,234,NULL,2,0,6607),(4553,0,234,NULL,3,0,6608),(4554,0,234,NULL,4,0,6609),(124,0,32,NULL,1,0,6610),(125,0,32,NULL,2,0,6611),(126,0,32,NULL,3,0,6612),(127,0,32,NULL,5,0,6613),(4555,0,1329,NULL,2,0,6614),(4556,0,1329,NULL,3,0,6615),(4557,0,1329,NULL,4,0,6616),(4558,0,1329,NULL,5,0,6617),(4559,0,1330,NULL,2,0,6618),(4560,0,1330,NULL,3,0,6619),(4561,0,1330,NULL,4,0,6620),(4562,0,1330,NULL,5,0,6621),(4563,0,328,NULL,1,0,6622),(4564,0,328,NULL,2,0,6623),(4565,0,328,NULL,3,0,6624),(4566,0,328,NULL,4,0,6625),(4567,0,329,NULL,1,0,6626),(4568,0,329,NULL,2,0,6627),(4569,0,329,NULL,3,0,6628),(4570,0,329,NULL,4,0,6629),(255,0,61,NULL,4,0,6630),(256,0,61,NULL,5,0,6631),(257,0,61,NULL,6,0,6632),(258,0,61,NULL,7,0,6633),(4571,0,1331,NULL,1,0,6634),(4572,0,1331,NULL,2,0,6635),(4573,0,1331,NULL,3,0,6636),(4574,0,516,NULL,1,0,6637),(4575,0,516,NULL,2,0,6638),(4576,0,516,NULL,3,0,6639),(580,0,111,NULL,0,0,6640),(581,0,111,NULL,1,0,6641),(582,0,111,NULL,2,0,6642),(4577,0,1332,NULL,1,0,6643),(4578,0,1332,NULL,2,0,6644),(4579,0,1332,NULL,3,0,6645),(4580,0,527,NULL,1,0,6646),(4581,0,527,NULL,2,0,6647),(4582,0,527,NULL,3,0,6648),(4583,0,1333,NULL,1,0,6652),(4584,0,1334,NULL,1,0,6653),(4585,0,1335,NULL,1,0,6654),(4586,0,1336,NULL,1,0,6655),(4587,0,1337,NULL,1,0,6656),(4588,0,1338,NULL,1,0,6657),(4589,0,1339,NULL,1,0,6658),(4590,0,1340,NULL,1,0,6659),(4591,0,1341,NULL,1,0,6660),(4592,0,158,NULL,1,0,6661),(4593,0,158,NULL,2,0,6662),(4594,0,158,NULL,3,0,6663),(4595,0,158,NULL,4,0,6664),(4596,0,157,NULL,1,0,6665),(4597,0,157,NULL,2,0,6666),(4598,0,157,NULL,3,0,6667),(4599,0,157,NULL,4,0,6668),(4600,0,159,NULL,1,0,6669),(4601,0,159,NULL,2,0,6670),(4602,0,159,NULL,3,0,6671),(4603,0,159,NULL,4,0,6672),(4604,0,1145,NULL,1,0,6673),(4605,0,1145,NULL,2,0,6674),(4606,0,1145,NULL,3,0,6675),(4607,0,1145,NULL,4,0,6676),(4608,0,1146,NULL,1,0,6677),(4609,0,1146,NULL,2,0,6678),(4610,0,1146,NULL,3,0,6679),(4611,0,1146,NULL,4,0,6680),(4612,0,1147,NULL,1,0,6681),(4613,0,1147,NULL,2,0,6682),(4614,0,1147,NULL,3,0,6683),(4615,0,1147,NULL,4,0,6684),(4616,0,1343,NULL,2,0,6690),(4617,0,1343,NULL,3,0,6691),(4618,0,1343,NULL,4,0,6692),(4619,0,1343,NULL,5,0,6693),(4620,0,1344,NULL,2,0,6694),(4621,0,1344,NULL,3,0,6695),(4622,0,1344,NULL,4,0,6696),(4623,0,1344,NULL,5,0,6697),(4624,0,270,NULL,1,0,6698),(4625,0,270,NULL,2,0,6699),(4626,0,270,NULL,3,0,6700),(4627,0,270,NULL,4,0,6701),(4628,0,271,NULL,1,0,6702),(4629,0,271,NULL,2,0,6703),(4630,0,271,NULL,3,0,6704),(4631,0,271,NULL,4,0,6705),(4638,0,1352,NULL,1,0,6720),(4639,0,1353,NULL,1,0,6721),(4640,0,1354,NULL,1,0,6722),(4641,0,1355,NULL,1,0,6723),(4642,0,1356,NULL,1,0,6724),(4643,0,1357,NULL,1,0,6725),(4644,0,1358,NULL,2,0,6726),(4645,0,1359,NULL,2,0,6727),(4646,0,1360,NULL,2,0,6728),(4647,0,1361,NULL,2,0,6729),(4648,0,1362,NULL,2,0,6730),(4649,0,1363,NULL,2,0,6731),(4650,0,1364,NULL,2,0,6732),(4651,0,1365,NULL,2,0,6733),(4652,0,1366,NULL,2,0,6734),(4653,0,1367,NULL,2,0,6735),(4654,0,1368,NULL,2,0,6736),(4655,0,1369,NULL,2,0,6737),(4656,0,1370,NULL,2,0,6738),(4657,0,1371,NULL,2,0,6739),(4658,0,1372,NULL,2,0,6740),(4659,0,1373,NULL,2,0,6741),(4660,0,1374,NULL,2,0,6742),(4661,0,1375,NULL,2,0,6743),(4662,0,1376,NULL,1,0,6744),(4663,0,1377,NULL,1,0,6745),(4664,0,1378,NULL,1,0,6746),(4665,0,1379,NULL,1,0,6747),(4666,0,1380,NULL,1,0,6748),(4667,0,1381,NULL,1,0,6749),(337,0,76,NULL,1,0,6754),(338,0,76,NULL,2,0,6755),(339,0,76,NULL,3,0,6756),(340,0,76,NULL,4,0,6757),(4672,0,1383,NULL,1,0,6770),(4673,0,1383,NULL,2,0,6771),(4674,0,1383,NULL,3,0,6772),(4675,0,1383,NULL,4,0,6773),(4676,0,1384,NULL,1,0,6774),(4677,0,1384,NULL,2,0,6775),(4678,0,1384,NULL,3,0,6776),(4679,0,1384,NULL,4,0,6777),(4680,0,1385,NULL,1,0,6778),(4681,0,1385,NULL,2,0,6779),(4682,0,1385,NULL,3,0,6780),(4683,0,1385,NULL,4,0,6781),(4684,0,1386,NULL,1,0,6782),(4685,0,1386,NULL,2,0,6783),(4686,0,1386,NULL,3,0,6784),(4687,0,1386,NULL,4,0,6785),(4688,0,1387,NULL,1,0,6786),(4689,0,1387,NULL,2,0,6787),(4690,0,1387,NULL,3,0,6788),(4691,0,1387,NULL,4,0,6789),(4692,0,1388,NULL,1,0,6790),(4693,0,1388,NULL,2,0,6791),(4694,0,1388,NULL,3,0,6792),(4695,0,1388,NULL,4,0,6793),(4696,0,1389,NULL,1,0,6794),(4697,0,1389,NULL,2,0,6795),(4698,0,1389,NULL,3,0,6796),(4699,0,1389,NULL,4,0,6797),(4700,0,1390,NULL,1,0,6798),(4701,0,1390,NULL,2,0,6799),(4702,0,1390,NULL,3,0,6800),(4703,0,1390,NULL,4,0,6801),(4704,0,1391,NULL,1,0,6802),(4705,0,1391,NULL,2,0,6803),(4706,0,1391,NULL,3,0,6804),(4707,0,1391,NULL,4,0,6805),(4708,0,1392,NULL,1,0,6806),(4709,0,1392,NULL,2,0,6807),(4710,0,1392,NULL,3,0,6808),(4711,0,1392,NULL,4,0,6809),(4712,0,1393,NULL,1,0,6810),(4713,0,1393,NULL,2,0,6811),(4714,0,1393,NULL,3,0,6812),(4715,0,1393,NULL,4,0,6813),(4716,0,1394,NULL,1,0,6814),(4717,0,1394,NULL,2,0,6815),(4718,0,1394,NULL,3,0,6816),(4719,0,1394,NULL,4,0,6817),(4720,0,1395,NULL,1,0,6818),(4721,0,1395,NULL,2,0,6819),(4722,0,1395,NULL,3,0,6820),(4723,0,1395,NULL,4,0,6821),(4724,0,1396,NULL,1,0,6822),(4725,0,1396,NULL,2,0,6823),(4726,0,1396,NULL,3,0,6824),(4727,0,1396,NULL,4,0,6825),(4728,0,1397,NULL,1,0,6826),(4729,0,1397,NULL,2,0,6827),(4730,0,1397,NULL,3,0,6828),(4731,0,1397,NULL,4,0,6829),(4732,0,1398,NULL,1,0,6830),(4733,0,1398,NULL,2,0,6831),(4734,0,1398,NULL,3,0,6832),(4735,0,1398,NULL,4,0,6833),(4736,0,1399,NULL,1,0,6834),(4737,0,1399,NULL,2,0,6835),(4738,0,1399,NULL,3,0,6836),(4739,0,1399,NULL,4,0,6837),(4740,0,1400,NULL,1,0,6838),(4741,0,1400,NULL,2,0,6839),(4742,0,1400,NULL,3,0,6840),(4743,0,1400,NULL,4,0,6841),(4744,0,1401,NULL,1,0,6842),(4745,0,1401,NULL,2,0,6843),(4746,0,1401,NULL,3,0,6844),(4747,0,1401,NULL,4,0,6845),(4748,0,1402,NULL,1,0,6846),(4749,0,1402,NULL,2,0,6847),(4750,0,1402,NULL,3,0,6848),(4751,0,1402,NULL,4,0,6849),(4752,0,1403,NULL,1,0,6850),(4753,0,1403,NULL,2,0,6851),(4754,0,1403,NULL,3,0,6852),(4755,0,1403,NULL,4,0,6853),(4756,0,1404,NULL,1,0,6854),(4757,0,1404,NULL,2,0,6855),(4758,0,1404,NULL,3,0,6856),(4759,0,1404,NULL,4,0,6857),(4760,0,1405,NULL,1,0,6858),(4761,0,1405,NULL,2,0,6859),(4762,0,1405,NULL,3,0,6860),(4763,0,1405,NULL,4,0,6861),(4764,0,1406,NULL,1,0,6862),(4765,0,1406,NULL,2,0,6863),(4766,0,1406,NULL,3,0,6864),(4767,0,1406,NULL,4,0,6865),(4768,0,1407,NULL,1,0,6866),(4769,0,1407,NULL,2,0,6867),(4770,0,1407,NULL,3,0,6868),(4771,0,1407,NULL,4,0,6869),(4772,0,1408,NULL,1,0,6870),(4773,0,1408,NULL,2,0,6871),(4774,0,1408,NULL,3,0,6872),(4775,0,1408,NULL,4,0,6873),(4776,0,1409,NULL,1,0,6874),(4777,0,1409,NULL,2,0,6875),(4778,0,1409,NULL,3,0,6876),(4779,0,1409,NULL,4,0,6877),(4780,0,1410,NULL,1,0,6878),(4781,0,1410,NULL,2,0,6879),(4782,0,1410,NULL,3,0,6880),(4783,0,1410,NULL,4,0,6881),(4784,0,1411,NULL,1,0,6882),(4785,0,1411,NULL,2,0,6883),(4786,0,1411,NULL,3,0,6884),(4787,0,1411,NULL,4,0,6885),(4788,0,1412,NULL,1,0,6886),(4789,0,1412,NULL,2,0,6887),(4790,0,1412,NULL,3,0,6888),(4791,0,1412,NULL,4,0,6889),(307,0,71,NULL,1,0,6890),(308,0,71,NULL,2,0,6891),(309,0,71,NULL,3,0,6892),(310,0,71,NULL,4,0,6893),(4792,0,1345,NULL,1,0,6894),(4793,0,1345,NULL,2,0,6895),(4794,0,1345,NULL,3,0,6896),(4795,0,1346,NULL,1,0,6897),(4796,0,1346,NULL,2,0,6898),(4797,0,1346,NULL,3,0,6899),(4798,0,1347,NULL,1,0,6900),(4799,0,1347,NULL,2,0,6901),(4800,0,1347,NULL,3,0,6902),(4801,0,1348,NULL,1,0,6903),(4802,0,1348,NULL,2,0,6904),(4803,0,1348,NULL,3,0,6905),(4804,0,1349,NULL,1,0,6906),(4805,0,1349,NULL,2,0,6907),(4806,0,1349,NULL,3,0,6908),(4807,0,1350,NULL,1,0,6909),(4808,0,1350,NULL,2,0,6910),(4809,0,1350,NULL,3,0,6911),(4816,0,1420,NULL,1,0,6930),(4817,0,1420,NULL,2,0,6931),(4818,0,1420,NULL,3,0,6932),(4819,0,1420,NULL,4,0,6933),(4820,0,1421,NULL,1,0,6934),(4821,0,1421,NULL,2,0,6935),(4822,0,1421,NULL,3,0,6936),(4823,0,1421,NULL,4,0,6937),(4824,0,1422,NULL,1,0,6938),(4825,0,1422,NULL,2,0,6939),(4826,0,1422,NULL,3,0,6940),(4827,0,1422,NULL,4,0,6941),(4828,0,1423,NULL,1,0,6942),(4829,0,1423,NULL,2,0,6943),(4830,0,1423,NULL,3,0,6944),(4831,0,1423,NULL,4,0,6945),(4832,0,1424,NULL,1,0,6946),(4833,0,1424,NULL,2,0,6947),(4834,0,1424,NULL,3,0,6948),(4835,0,1424,NULL,4,0,6949),(4836,0,1425,NULL,1,0,6950),(4837,0,1425,NULL,2,0,6951),(4838,0,1425,NULL,3,0,6952),(4839,0,1425,NULL,4,0,6953),(4840,0,1426,NULL,1,0,6954),(4841,0,1426,NULL,2,0,6955),(4842,0,1426,NULL,3,0,6956),(4843,0,1426,NULL,4,0,6957),(4844,0,1427,NULL,1,0,6958),(4845,0,1427,NULL,2,0,6959),(4846,0,1427,NULL,3,0,6960),(4847,0,1427,NULL,4,0,6961),(4848,0,1428,NULL,1,0,6962),(4849,0,1428,NULL,2,0,6963),(4850,0,1428,NULL,3,0,6964),(4851,0,1428,NULL,4,0,6965),(4852,0,1429,NULL,1,0,6966),(4853,0,1429,NULL,2,0,6967),(4854,0,1429,NULL,3,0,6968),(4855,0,1429,NULL,4,0,6969),(4856,0,1430,NULL,1,0,6970),(4857,0,1430,NULL,2,0,6971),(4858,0,1430,NULL,3,0,6972),(4859,0,1430,NULL,4,0,6973),(4860,0,1431,NULL,1,0,6974),(4861,0,1431,NULL,2,0,6975),(4862,0,1431,NULL,3,0,6976),(4863,0,1431,NULL,4,0,6977),(4864,0,1432,NULL,1,0,6978),(4865,0,1432,NULL,2,0,6979),(4866,0,1432,NULL,3,0,6980),(4867,0,1432,NULL,4,0,6981),(4868,0,1433,NULL,1,0,6982),(4869,0,1433,NULL,2,0,6983),(4870,0,1433,NULL,3,0,6984),(4871,0,1433,NULL,4,0,6985),(4872,0,1434,NULL,1,0,6986),(4873,0,1434,NULL,2,0,6987),(4874,0,1434,NULL,3,0,6988),(4875,0,1434,NULL,4,0,6989),(4876,0,1435,NULL,1,0,6990),(4877,0,1435,NULL,2,0,6991),(4878,0,1435,NULL,3,0,6992),(4879,0,1435,NULL,4,0,6993),(4880,0,1436,NULL,1,0,6994),(4881,0,1436,NULL,2,0,6995),(4882,0,1436,NULL,3,0,6996),(4883,0,1436,NULL,4,0,6997),(4884,0,1437,NULL,1,0,6998),(4885,0,1437,NULL,2,0,6999),(4886,0,1437,NULL,3,0,7000),(4887,0,1437,NULL,4,0,7001),(4888,0,1438,NULL,1,0,7002),(4889,0,1438,NULL,2,0,7003),(4890,0,1438,NULL,3,0,7004),(4891,0,1438,NULL,4,0,7005),(4892,0,1439,NULL,1,0,7006),(4893,0,1439,NULL,2,0,7007),(4894,0,1439,NULL,3,0,7008),(4895,0,1439,NULL,4,0,7009),(4896,0,1440,NULL,1,0,7010),(4897,0,1440,NULL,2,0,7011),(4898,0,1440,NULL,3,0,7012),(4899,0,1440,NULL,4,0,7013),(4900,0,1441,NULL,1,0,7014),(4901,0,1441,NULL,2,0,7015),(4902,0,1441,NULL,3,0,7016),(4903,0,1441,NULL,4,0,7017),(4904,0,1442,NULL,1,0,7018),(4905,0,1442,NULL,2,0,7019),(4906,0,1442,NULL,3,0,7020),(4907,0,1442,NULL,4,0,7021),(4908,0,1443,NULL,1,0,7022),(4909,0,1443,NULL,2,0,7023),(4910,0,1443,NULL,3,0,7024),(4911,0,1443,NULL,4,0,7025),(4912,0,1444,NULL,1,0,7026),(4913,0,1444,NULL,2,0,7027),(4914,0,1444,NULL,3,0,7028),(4915,0,1444,NULL,4,0,7029),(4916,0,1445,NULL,1,0,7030),(4917,0,1445,NULL,2,0,7031),(4918,0,1445,NULL,3,0,7032),(4919,0,1445,NULL,4,0,7033),(4920,0,1446,NULL,1,0,7034),(4921,0,1446,NULL,2,0,7035),(4922,0,1446,NULL,3,0,7036),(4923,0,1446,NULL,4,0,7037),(4924,0,1447,NULL,1,0,7038),(4925,0,1447,NULL,2,0,7039),(4926,0,1447,NULL,3,0,7040),(4927,0,1447,NULL,4,0,7041),(4928,0,1448,NULL,1,0,7042),(4929,0,1448,NULL,2,0,7043),(4930,0,1448,NULL,3,0,7044),(4931,0,1448,NULL,4,0,7045),(4932,0,1449,NULL,1,0,7046),(4933,0,1449,NULL,2,0,7047),(4934,0,1449,NULL,3,0,7048),(4935,0,1449,NULL,4,0,7049),(4936,0,1450,NULL,1,0,7050),(4937,0,1450,NULL,2,0,7051),(4938,0,1450,NULL,3,0,7052),(4939,0,1450,NULL,4,0,7053),(4940,0,1451,NULL,1,0,7054),(4941,0,1451,NULL,2,0,7055),(4942,0,1451,NULL,3,0,7056),(4943,0,1451,NULL,4,0,7057),(4944,0,1452,NULL,1,0,7058),(4945,0,1452,NULL,2,0,7059),(4946,0,1452,NULL,3,0,7060),(4947,0,1452,NULL,4,0,7061),(4948,0,1453,NULL,1,0,7062),(4949,0,1453,NULL,2,0,7063),(4950,0,1453,NULL,3,0,7064),(4951,0,1453,NULL,4,0,7065),(4952,0,1454,NULL,1,0,7066),(4953,0,1454,NULL,2,0,7067),(4954,0,1454,NULL,3,0,7068),(4955,0,1454,NULL,4,0,7069),(4957,0,1456,NULL,1,0,7071),(4958,0,1456,NULL,2,0,7072),(4959,0,1456,NULL,3,0,7073),(4960,0,1456,NULL,4,0,7074),(4961,0,1457,NULL,1,0,7075),(4962,0,1457,NULL,2,0,7076),(4963,0,1457,NULL,3,0,7077),(4964,0,1457,NULL,4,0,7078),(4965,0,1458,NULL,1,0,7079),(4966,0,1458,NULL,2,0,7080),(4967,0,1458,NULL,3,0,7081),(4968,0,1458,NULL,4,0,7082),(4969,0,1459,NULL,1,0,7083),(4970,0,1459,NULL,2,0,7084),(4971,0,1459,NULL,3,0,7085),(4972,0,1459,NULL,4,0,7086),(4973,0,1460,NULL,2,0,7087),(4974,0,1460,NULL,1,0,7088),(4975,0,1460,NULL,3,0,7089),(4976,0,1460,NULL,4,0,7090),(4977,0,1461,NULL,2,0,7091),(4978,0,1461,NULL,1,0,7092),(4979,0,1461,NULL,3,0,7093),(4980,0,1461,NULL,4,0,7094),(4981,0,1462,NULL,2,0,7095),(4982,0,1462,NULL,1,0,7096),(4983,0,1462,NULL,3,0,7097),(4984,0,1462,NULL,4,0,7098),(4985,0,1463,NULL,2,0,7099),(4986,0,1463,NULL,1,0,7100),(4987,0,1463,NULL,3,0,7101),(4988,0,1463,NULL,4,0,7102),(4990,0,1465,NULL,1,0,7104),(4991,0,1465,NULL,2,0,7105),(4992,0,1465,NULL,3,0,7106),(4993,0,1466,NULL,1,0,7107),(4994,0,1466,NULL,2,0,7108),(4995,0,1466,NULL,3,0,7109),(4996,0,1467,NULL,1,0,7110),(4997,0,1467,NULL,2,0,7111),(4998,0,1467,NULL,3,0,7112),(4999,0,1468,NULL,1,0,7113),(5000,0,1468,NULL,2,0,7114),(5001,0,1468,NULL,3,0,7115),(5002,0,1469,NULL,1,0,7116),(5003,0,1469,NULL,2,0,7117),(5004,0,1469,NULL,3,0,7118),(5005,0,1470,NULL,1,0,7119),(5006,0,1470,NULL,2,0,7120),(5007,0,1470,NULL,3,0,7121),(5008,0,1471,NULL,4,0,7122),(5009,0,1471,NULL,5,0,7123),(5010,0,1471,NULL,6,0,7124),(5011,0,1472,NULL,4,0,7125),(5012,0,1472,NULL,5,0,7126),(5013,0,1472,NULL,6,0,7127),(5014,0,1473,NULL,4,0,7128),(5015,0,1473,NULL,5,0,7129),(5016,0,1473,NULL,6,0,7130),(5017,0,1474,NULL,4,0,7131),(5018,0,1474,NULL,5,0,7132),(5019,0,1474,NULL,6,0,7133),(5020,0,1475,NULL,4,0,7134),(5021,0,1475,NULL,5,0,7135),(5022,0,1475,NULL,6,0,7136),(5023,0,1476,NULL,4,0,7137),(5024,0,1476,NULL,5,0,7138),(5025,0,1476,NULL,6,0,7139),(5026,0,1477,NULL,1,0,7140),(5027,0,1477,NULL,2,0,7141),(5028,0,1477,NULL,3,0,7142),(5029,0,1478,NULL,1,0,7143),(5030,0,1478,NULL,2,0,7144),(5031,0,1478,NULL,3,0,7145),(5032,0,1479,NULL,1,0,7146),(5033,0,1479,NULL,2,0,7147),(5034,0,1479,NULL,3,0,7148),(5035,0,1480,NULL,1,0,7149),(5036,0,1480,NULL,2,0,7150),(5037,0,1480,NULL,3,0,7151),(5038,0,1481,NULL,1,0,7152),(5039,0,1481,NULL,2,0,7153),(5040,0,1481,NULL,3,0,7154),(5041,0,1482,NULL,1,0,7155),(5042,0,1482,NULL,2,0,7156),(5043,0,1482,NULL,3,0,7157),(5044,0,1483,NULL,1,0,7158),(5045,0,1483,NULL,2,0,7159),(5046,0,1483,NULL,3,0,7160),(5047,0,1484,NULL,1,0,7161),(5048,0,1484,NULL,2,0,7162),(5049,0,1484,NULL,3,0,7163),(5050,0,1485,NULL,1,0,7164),(5051,0,1485,NULL,2,0,7165),(5052,0,1485,NULL,3,0,7166),(5053,0,1486,NULL,1,0,7167),(5054,0,1486,NULL,2,0,7168),(5055,0,1486,NULL,3,0,7169),(5056,0,1487,NULL,1,0,7170),(5057,0,1487,NULL,2,0,7171),(5058,0,1487,NULL,3,0,7172),(5059,0,1488,NULL,1,0,7173),(5060,0,1488,NULL,2,0,7174),(5061,0,1488,NULL,3,0,7175),(5062,0,1489,NULL,1,0,7176),(5063,0,1489,NULL,2,0,7177),(5064,0,1489,NULL,3,0,7178),(5065,0,1490,NULL,1,0,7179),(5066,0,1490,NULL,2,0,7180),(5067,0,1490,NULL,3,0,7181),(5068,0,1491,NULL,1,0,7182),(5069,0,1491,NULL,2,0,7183),(5070,0,1491,NULL,3,0,7184),(5071,0,1492,NULL,1,0,7185),(5072,0,1492,NULL,2,0,7186),(5073,0,1492,NULL,3,0,7187),(5074,0,1493,NULL,1,0,7188),(5075,0,1493,NULL,2,0,7189),(5076,0,1493,NULL,3,0,7190),(5077,0,1494,NULL,1,0,7191),(5078,0,1494,NULL,2,0,7192),(5079,0,1494,NULL,3,0,7193),(5080,0,1414,NULL,1,0,7194),(5081,0,1414,NULL,2,0,7195),(5082,0,1414,NULL,3,0,7196),(5083,0,1414,NULL,4,0,7197),(5084,0,1415,NULL,1,0,7198),(5085,0,1415,NULL,2,0,7199),(5086,0,1415,NULL,3,0,7200),(5087,0,1415,NULL,4,0,7201),(5088,0,1416,NULL,1,0,7202),(5089,0,1416,NULL,2,0,7203),(5090,0,1416,NULL,3,0,7204),(5091,0,1416,NULL,4,0,7205),(5092,0,1417,NULL,3,0,7206),(5093,0,1417,NULL,1,0,7207),(5094,0,1417,NULL,2,0,7208),(5095,0,1417,NULL,4,0,7209),(5096,0,1418,NULL,3,0,7210),(5097,0,1418,NULL,1,0,7211),(5098,0,1418,NULL,2,0,7212),(5099,0,1418,NULL,4,0,7213),(5100,0,1419,NULL,3,0,7214),(5101,0,1419,NULL,1,0,7215),(5102,0,1419,NULL,2,0,7216),(5103,0,1419,NULL,4,0,7217),(5104,0,1496,NULL,1,0,7222),(5105,0,1496,NULL,2,0,7223),(5106,0,1496,NULL,3,0,7224),(5107,0,1496,NULL,4,0,7225),(5108,0,1497,NULL,1,0,7226),(5109,0,1497,NULL,2,0,7227),(5110,0,1497,NULL,3,0,7228),(5111,0,1497,NULL,4,0,7229),(5112,0,1498,NULL,1,0,7230),(5113,0,1498,NULL,2,0,7231),(5114,0,1498,NULL,3,0,7232),(5115,0,1498,NULL,4,0,7233),(5116,0,1499,NULL,1,0,7234),(5117,0,1499,NULL,2,0,7235),(5118,0,1499,NULL,3,0,7236),(5119,0,1499,NULL,4,0,7237),(5120,0,1500,NULL,1,0,7238),(5121,0,1500,NULL,2,0,7239),(5122,0,1500,NULL,3,0,7240),(5123,0,1500,NULL,4,0,7241),(5124,0,1501,NULL,1,0,7242),(5125,0,1501,NULL,2,0,7243),(5126,0,1501,NULL,3,0,7244),(5127,0,1501,NULL,4,0,7245),(5128,0,1502,NULL,1,0,7246),(5129,0,1502,NULL,2,0,7247),(5130,0,1502,NULL,3,0,7248),(5131,0,1502,NULL,4,0,7249),(5132,0,1503,NULL,1,0,7250),(5133,0,1503,NULL,2,0,7251),(5134,0,1503,NULL,3,0,7252),(5135,0,1503,NULL,4,0,7253),(5136,0,1504,NULL,1,0,7254),(5137,0,1504,NULL,2,0,7255),(5138,0,1504,NULL,3,0,7256),(5139,0,1504,NULL,4,0,7257),(5140,0,1505,NULL,1,0,7258),(5141,0,1505,NULL,2,0,7259),(5142,0,1505,NULL,3,0,7260),(5143,0,1505,NULL,4,0,7261),(5144,0,1506,NULL,1,0,7262),(5145,0,1506,NULL,2,0,7263),(5146,0,1506,NULL,3,0,7264),(5147,0,1506,NULL,4,0,7265),(5148,0,1507,NULL,1,0,7266),(5149,0,1507,NULL,2,0,7267),(5150,0,1507,NULL,3,0,7268),(5151,0,1507,NULL,4,0,7269),(5152,0,1508,NULL,1,0,7270),(5153,0,1508,NULL,2,0,7271),(5154,0,1508,NULL,3,0,7272),(5155,0,1508,NULL,4,0,7273),(5156,0,1509,NULL,1,0,7274),(5157,0,1509,NULL,2,0,7275),(5158,0,1509,NULL,3,0,7276),(5159,0,1509,NULL,4,0,7277),(5160,0,1510,NULL,1,0,7278),(5161,0,1510,NULL,2,0,7279),(5162,0,1510,NULL,3,0,7280),(5163,0,1510,NULL,4,0,7281),(5164,0,1511,NULL,1,0,7282),(5165,0,1511,NULL,2,0,7283),(5166,0,1511,NULL,3,0,7284),(5167,0,1511,NULL,4,0,7285),(5168,0,1512,NULL,1,0,7286),(5169,0,1512,NULL,2,0,7287),(5170,0,1512,NULL,3,0,7288),(5171,0,1512,NULL,4,0,7289),(5172,0,1513,NULL,1,0,7290),(5173,0,1513,NULL,2,0,7291),(5174,0,1513,NULL,3,0,7292),(5175,0,1513,NULL,4,0,7293),(5176,0,1514,NULL,1,0,7294),(5177,0,1514,NULL,2,0,7295),(5178,0,1514,NULL,3,0,7296),(5179,0,1514,NULL,4,0,7297),(5180,0,1515,NULL,1,0,7298),(5181,0,1515,NULL,2,0,7299),(5182,0,1515,NULL,3,0,7300),(5183,0,1515,NULL,4,0,7301),(5184,0,1516,NULL,1,0,7302),(5185,0,1516,NULL,2,0,7303),(5186,0,1516,NULL,3,0,7304),(5187,0,1516,NULL,4,0,7305),(5188,0,1517,NULL,1,0,7306),(5189,0,1517,NULL,2,0,7307),(5190,0,1517,NULL,3,0,7308),(5191,0,1517,NULL,4,0,7309),(5192,0,1518,NULL,1,0,7310),(5193,0,1518,NULL,2,0,7311),(5194,0,1518,NULL,3,0,7312),(5195,0,1518,NULL,4,0,7313),(5196,0,1519,NULL,1,0,7314),(5197,0,1519,NULL,2,0,7315),(5198,0,1519,NULL,3,0,7316),(5199,0,1519,NULL,4,0,7317),(5200,0,1520,NULL,1,0,7318),(5201,0,1520,NULL,2,0,7319),(5202,0,1520,NULL,3,0,7320),(5203,0,1520,NULL,4,0,7321),(5204,0,1521,NULL,1,0,7322),(5205,0,1521,NULL,2,0,7323),(5206,0,1521,NULL,3,0,7324),(5207,0,1521,NULL,4,0,7325),(5208,0,1522,NULL,1,0,7326),(5209,0,1522,NULL,2,0,7327),(5210,0,1522,NULL,3,0,7328),(5211,0,1522,NULL,4,0,7329),(5212,0,1523,NULL,1,0,7330),(5213,0,1523,NULL,2,0,7331),(5214,0,1523,NULL,3,0,7332),(5215,0,1523,NULL,4,0,7333),(5216,0,1524,NULL,1,0,7334),(5217,0,1524,NULL,2,0,7335),(5218,0,1524,NULL,3,0,7336),(5219,0,1524,NULL,4,0,7337),(5220,0,1525,NULL,1,0,7338),(5221,0,1525,NULL,2,0,7339),(5222,0,1525,NULL,3,0,7340),(5223,0,1525,NULL,4,0,7341),(5224,0,1527,NULL,1,0,7342),(5225,0,1527,NULL,2,0,7343),(5226,0,1527,NULL,3,0,7344),(5227,0,1527,NULL,4,0,7345),(5228,0,1528,NULL,1,0,7346),(5229,0,1528,NULL,2,0,7347),(5230,0,1528,NULL,3,0,7348),(5231,0,1528,NULL,4,0,7349),(5232,0,1529,NULL,1,0,7350),(5233,0,1529,NULL,2,0,7351),(5234,0,1529,NULL,3,0,7352),(5235,0,1529,NULL,4,0,7353),(5236,0,1530,NULL,1,0,7354),(5237,0,1530,NULL,2,0,7355),(5238,0,1530,NULL,3,0,7356),(5239,0,1530,NULL,4,0,7357),(5240,0,1531,NULL,4,0,7358),(5241,0,1531,NULL,3,0,7359),(5242,0,1531,NULL,2,0,7360),(5243,0,1531,NULL,1,0,7361),(5244,0,1532,NULL,4,0,7362),(5245,0,1532,NULL,3,0,7363),(5246,0,1532,NULL,2,0,7364),(5247,0,1532,NULL,1,0,7365),(5248,0,1533,NULL,4,0,7366),(5249,0,1533,NULL,3,0,7367),(5250,0,1533,NULL,2,0,7368),(5251,0,1533,NULL,1,0,7369),(5252,0,1534,NULL,4,0,7370),(5253,0,1534,NULL,3,0,7371),(5254,0,1534,NULL,2,0,7372),(5255,0,1534,NULL,1,0,7373),(5260,0,1536,NULL,5,0,7378),(5261,0,1536,NULL,6,0,7379),(5262,0,1536,NULL,7,0,7380),(5263,0,1536,NULL,8,0,7381),(5264,0,1537,NULL,5,0,7382),(5265,0,1537,NULL,6,0,7383),(5266,0,1537,NULL,7,0,7384),(5267,0,1537,NULL,8,0,7385),(5268,0,1538,NULL,5,0,7386),(5269,0,1538,NULL,6,0,7387),(5270,0,1538,NULL,7,0,7388),(5271,0,1538,NULL,8,0,7389),(5272,0,1539,NULL,5,0,7390),(5273,0,1539,NULL,6,0,7391),(5274,0,1539,NULL,7,0,7392),(5275,0,1539,NULL,8,0,7393),(5276,0,1540,NULL,5,0,7394),(5277,0,1540,NULL,6,0,7395),(5278,0,1540,NULL,7,0,7396),(5279,0,1540,NULL,8,0,7397),(5280,0,1541,NULL,5,0,7398),(5281,0,1541,NULL,6,0,7399),(5282,0,1541,NULL,7,0,7400),(5283,0,1541,NULL,8,0,7401),(5284,0,1542,NULL,5,0,7402),(5285,0,1542,NULL,6,0,7403),(5286,0,1542,NULL,7,0,7404),(5287,0,1542,NULL,8,0,7405),(5288,0,1543,NULL,5,0,7406),(5289,0,1543,NULL,6,0,7407),(5290,0,1543,NULL,7,0,7408),(5291,0,1543,NULL,8,0,7409),(5292,0,1544,NULL,5,0,7410),(5293,0,1544,NULL,6,0,7411),(5294,0,1544,NULL,7,0,7412),(5295,0,1544,NULL,8,0,7413),(5296,0,1545,NULL,5,0,7414),(5297,0,1545,NULL,6,0,7415),(5298,0,1545,NULL,7,0,7416),(5299,0,1545,NULL,8,0,7417),(5300,0,1546,NULL,5,0,7418),(5301,0,1546,NULL,6,0,7419),(5302,0,1546,NULL,7,0,7420),(5303,0,1546,NULL,8,0,7421),(5304,0,1547,NULL,5,0,7422),(5305,0,1547,NULL,6,0,7423),(5306,0,1547,NULL,7,0,7424),(5307,0,1547,NULL,8,0,7425),(5308,0,1548,NULL,5,0,7426),(5309,0,1548,NULL,6,0,7427),(5310,0,1548,NULL,7,0,7428),(5311,0,1548,NULL,8,0,7429),(5312,0,1549,NULL,5,0,7430),(5313,0,1549,NULL,6,0,7431),(5314,0,1549,NULL,7,0,7432),(5315,0,1549,NULL,8,0,7433),(5316,0,1550,NULL,5,0,7434),(5317,0,1550,NULL,6,0,7435),(5318,0,1550,NULL,7,0,7436),(5319,0,1550,NULL,8,0,7437),(5320,0,1551,NULL,5,0,7438),(5321,0,1551,NULL,6,0,7439),(5322,0,1551,NULL,7,0,7440),(5323,0,1551,NULL,8,0,7441),(5324,0,1552,NULL,5,0,7442),(5325,0,1552,NULL,6,0,7443),(5326,0,1552,NULL,7,0,7444),(5327,0,1552,NULL,8,0,7445),(5328,0,1553,NULL,5,0,7446),(5329,0,1553,NULL,6,0,7447),(5330,0,1553,NULL,7,0,7448),(5331,0,1553,NULL,8,0,7449),(5332,0,1554,NULL,5,0,7450),(5333,0,1554,NULL,6,0,7451),(5334,0,1554,NULL,7,0,7452),(5335,0,1554,NULL,8,0,7453),(5336,0,1555,NULL,5,0,7454),(5337,0,1555,NULL,6,0,7455),(5338,0,1555,NULL,7,0,7456),(5339,0,1555,NULL,8,0,7457),(5340,0,1556,NULL,5,0,7458),(5341,0,1556,NULL,6,0,7459),(5342,0,1556,NULL,7,0,7460),(5343,0,1556,NULL,8,0,7461),(5344,0,1557,NULL,5,0,7462),(5345,0,1557,NULL,6,0,7463),(5346,0,1557,NULL,7,0,7464),(5347,0,1557,NULL,8,0,7465),(5348,0,1558,NULL,5,0,7466),(5349,0,1558,NULL,6,0,7467),(5350,0,1558,NULL,7,0,7468),(5351,0,1558,NULL,8,0,7469),(5352,0,1559,NULL,5,0,7470),(5353,0,1559,NULL,6,0,7471),(5354,0,1559,NULL,7,0,7472),(5355,0,1559,NULL,8,0,7473),(5356,0,1560,NULL,5,0,7474),(5357,0,1560,NULL,6,0,7475),(5358,0,1560,NULL,7,0,7476),(5359,0,1560,NULL,8,0,7477),(5360,0,1562,NULL,1,0,7478),(5361,0,1562,NULL,2,0,7479),(5362,0,1562,NULL,4,0,7480),(5363,0,1562,NULL,3,0,7481),(5364,0,1563,NULL,1,0,7482),(5365,0,1563,NULL,2,0,7483),(5366,0,1563,NULL,4,0,7484),(5367,0,1563,NULL,3,0,7485),(5368,0,1564,NULL,1,0,7486),(5369,0,1564,NULL,2,0,7487),(5370,0,1564,NULL,4,0,7488),(5371,0,1564,NULL,3,0,7489),(5372,0,1565,NULL,4,0,7490),(5373,0,1565,NULL,3,0,7491),(5374,0,1565,NULL,1,0,7492),(5375,0,1565,NULL,2,0,7493),(5376,0,1566,NULL,4,0,7494),(5377,0,1566,NULL,3,0,7495),(5378,0,1566,NULL,1,0,7496),(5379,0,1566,NULL,2,0,7497),(5380,0,1567,NULL,4,0,7498),(5381,0,1567,NULL,3,0,7499),(5382,0,1567,NULL,1,0,7500),(5383,0,1567,NULL,2,0,7501),(5388,0,1569,NULL,1,0,7506),(5389,0,1569,NULL,2,0,7507),(5390,0,1569,NULL,3,0,7508),(5391,0,1569,NULL,4,0,7509),(5392,0,1570,NULL,1,0,7510),(5393,0,1570,NULL,2,0,7511),(5394,0,1570,NULL,3,0,7512),(5395,0,1570,NULL,4,0,7513),(5396,0,1571,NULL,1,0,7514),(5397,0,1571,NULL,2,0,7515),(5398,0,1571,NULL,3,0,7516),(5399,0,1571,NULL,4,0,7517),(5400,0,1572,NULL,2,0,7518),(5401,0,1572,NULL,1,0,7519),(5402,0,1572,NULL,3,0,7520),(5403,0,1572,NULL,4,0,7521),(5404,0,1573,NULL,4,0,7522),(5405,0,1573,NULL,5,0,7523),(5406,0,1573,NULL,6,0,7524),(5407,0,1574,NULL,4,0,7525),(5408,0,1574,NULL,5,0,7526),(5409,0,1574,NULL,6,0,7527),(5410,0,1575,NULL,2,0,7528),(5411,0,1575,NULL,1,0,7529),(5412,0,1575,NULL,3,0,7530),(5413,0,1575,NULL,4,0,7531),(5414,0,1576,NULL,4,0,7532),(5415,0,1576,NULL,5,0,7533),(5416,0,1576,NULL,6,0,7534),(5417,0,1577,NULL,4,0,7535),(5418,0,1577,NULL,5,0,7536),(5419,0,1577,NULL,6,0,7537),(5420,0,1578,NULL,4,0,7538),(5421,0,1578,NULL,5,0,7539),(5422,0,1578,NULL,6,0,7540),(5423,0,1579,NULL,2,0,7541),(5424,0,1579,NULL,1,0,7542),(5425,0,1579,NULL,3,0,7543),(5426,0,1579,NULL,4,0,7544),(5427,0,1580,NULL,4,0,7545),(5428,0,1580,NULL,5,0,7546),(5429,0,1580,NULL,6,0,7547),(5430,0,1581,NULL,4,0,7548),(5431,0,1581,NULL,5,0,7549),(5432,0,1581,NULL,6,0,7550),(5433,0,1582,NULL,4,0,7551),(5434,0,1582,NULL,5,0,7552),(5435,0,1582,NULL,6,0,7553),(5440,0,1584,NULL,4,0,7558),(5441,0,1584,NULL,5,0,7559),(5442,0,1584,NULL,6,0,7560),(5443,0,1585,NULL,4,0,7561),(5444,0,1585,NULL,5,0,7562),(5445,0,1585,NULL,6,0,7563),(5446,0,1586,NULL,4,0,7564),(5447,0,1586,NULL,5,0,7565),(5448,0,1586,NULL,6,0,7566),(5449,0,1587,NULL,4,0,7567),(5450,0,1587,NULL,5,0,7568),(5451,0,1587,NULL,6,0,7569),(5452,0,1588,NULL,4,0,7570),(5453,0,1588,NULL,5,0,7571),(5454,0,1588,NULL,6,0,7572),(5455,0,1589,NULL,4,0,7573),(5456,0,1589,NULL,5,0,7574),(5457,0,1589,NULL,6,0,7575),(5458,0,1590,NULL,4,0,7576),(5459,0,1590,NULL,5,0,7577),(5460,0,1590,NULL,6,0,7578),(5461,0,1591,NULL,4,0,7579),(5462,0,1591,NULL,5,0,7580),(5463,0,1591,NULL,6,0,7581),(5464,0,1592,NULL,1,0,7582),(5465,0,1592,NULL,2,0,7583),(5466,0,1592,NULL,3,0,7584),(5467,0,1593,NULL,1,0,7585),(5468,0,1593,NULL,2,0,7586),(5469,0,1593,NULL,3,0,7587),(5470,0,1594,NULL,1,0,7588),(5471,0,1594,NULL,2,0,7589),(5472,0,1594,NULL,3,0,7590),(5473,0,1595,NULL,1,0,7591),(5474,0,1595,NULL,2,0,7592),(5475,0,1595,NULL,3,0,7593),(5479,0,1598,NULL,2,0,7597),(5480,0,1598,NULL,3,0,7598),(5481,0,1598,NULL,1,0,7599),(5482,0,1599,NULL,2,0,7600),(5483,0,1599,NULL,3,0,7601),(5484,0,1599,NULL,1,0,7602),(5485,0,1600,NULL,2,0,7603),(5486,0,1600,NULL,3,0,7604),(5487,0,1600,NULL,1,0,7605),(5488,0,1601,NULL,2,0,7606),(5489,0,1601,NULL,1,0,7607),(5490,0,1601,NULL,3,0,7608),(5491,0,1602,NULL,2,0,7609),(5492,0,1602,NULL,1,0,7610),(5493,0,1602,NULL,3,0,7611),(5494,0,1603,NULL,2,0,7612),(5495,0,1603,NULL,1,0,7613),(5496,0,1603,NULL,3,0,7614),(5500,0,1605,NULL,5,0,7618),(5501,0,1605,NULL,6,0,7619),(5502,0,1605,NULL,7,0,7620),(5503,0,1605,NULL,8,0,7621),(5504,0,1606,NULL,5,0,7622),(5505,0,1606,NULL,6,0,7623),(5506,0,1606,NULL,7,0,7624),(5507,0,1606,NULL,8,0,7625),(5508,0,1607,NULL,5,0,7626),(5509,0,1607,NULL,6,0,7627),(5510,0,1607,NULL,7,0,7628),(5511,0,1607,NULL,8,0,7629),(5512,0,1608,NULL,9,0,7630),(5513,0,1608,NULL,10,0,7631),(5514,0,1608,NULL,11,0,7632),(5515,0,1608,NULL,12,0,7633),(5516,0,1609,NULL,5,0,7634),(5517,0,1609,NULL,6,0,7635),(5518,0,1609,NULL,7,0,7636),(5519,0,1609,NULL,8,0,7637),(5520,0,1610,NULL,5,0,7638),(5521,0,1610,NULL,6,0,7639),(5522,0,1610,NULL,7,0,7640),(5523,0,1610,NULL,8,0,7641),(5524,0,1611,NULL,5,0,7642),(5525,0,1611,NULL,6,0,7643),(5526,0,1611,NULL,7,0,7644),(5527,0,1611,NULL,8,0,7645),(5528,0,1612,NULL,5,0,7646),(5529,0,1612,NULL,6,0,7647),(5530,0,1612,NULL,7,0,7648),(5531,0,1612,NULL,8,0,7649),(5532,0,1613,NULL,9,0,7650),(5533,0,1613,NULL,10,0,7651),(5534,0,1613,NULL,11,0,7652),(5535,0,1613,NULL,12,0,7653),(5536,0,1614,NULL,5,0,7654),(5537,0,1614,NULL,6,0,7655),(5538,0,1614,NULL,7,0,7656),(5539,0,1614,NULL,8,0,7657),(5540,0,1615,NULL,5,0,7658),(5541,0,1615,NULL,6,0,7659),(5542,0,1615,NULL,7,0,7660),(5543,0,1615,NULL,8,0,7661),(5544,0,1616,NULL,5,0,7662),(5545,0,1616,NULL,6,0,7663),(5546,0,1616,NULL,7,0,7664),(5547,0,1616,NULL,8,0,7665),(5548,0,1617,NULL,5,0,7666),(5549,0,1617,NULL,6,0,7667),(5550,0,1617,NULL,7,0,7668),(5551,0,1617,NULL,8,0,7669),(5552,0,1618,NULL,9,0,7670),(5553,0,1618,NULL,10,0,7671),(5554,0,1618,NULL,11,0,7672),(5555,0,1618,NULL,12,0,7673),(5556,0,1619,NULL,5,0,7674),(5557,0,1619,NULL,6,0,7675),(5558,0,1619,NULL,7,0,7676),(5559,0,1619,NULL,8,0,7677),(5563,0,1620,NULL,4,0,7681),(5564,0,1620,NULL,3,0,7682),(5565,0,1620,NULL,2,0,7683),(5566,0,1620,NULL,1,0,7684),(5567,0,1621,NULL,4,0,7685),(5568,0,1621,NULL,3,0,7686),(5569,0,1621,NULL,2,0,7687),(5570,0,1621,NULL,1,0,7688),(5571,0,1622,NULL,4,0,7689),(5572,0,1622,NULL,3,0,7690),(5573,0,1622,NULL,2,0,7691),(5574,0,1622,NULL,1,0,7692),(5575,0,1623,NULL,4,0,7693),(5576,0,1623,NULL,3,0,7694),(5577,0,1623,NULL,2,0,7695),(5578,0,1623,NULL,1,0,7696),(5579,0,1624,NULL,4,0,7697),(5580,0,1624,NULL,3,0,7698),(5581,0,1624,NULL,2,0,7699),(5582,0,1624,NULL,1,0,7700),(5583,0,1625,NULL,3,0,7701),(5584,0,1625,NULL,4,0,7702),(5585,0,1625,NULL,1,0,7703),(5586,0,1625,NULL,2,0,7704),(5587,0,1626,NULL,3,0,7705),(5588,0,1626,NULL,4,0,7706),(5589,0,1626,NULL,1,0,7707),(5590,0,1626,NULL,2,0,7708),(5591,0,1627,NULL,3,0,7709),(5592,0,1627,NULL,4,0,7710),(5593,0,1627,NULL,1,0,7711),(5594,0,1627,NULL,2,0,7712),(5595,0,1628,NULL,3,0,7713),(5596,0,1628,NULL,4,0,7714),(5597,0,1628,NULL,1,0,7715),(5598,0,1628,NULL,2,0,7716),(5599,0,1629,NULL,3,0,7717),(5600,0,1629,NULL,4,0,7718),(5601,0,1629,NULL,1,0,7719),(5602,0,1629,NULL,2,0,7720),(5607,0,1631,NULL,4,0,7729),(5608,0,1631,NULL,5,0,7730),(5609,0,1631,NULL,6,0,7731),(5610,0,1632,NULL,4,0,7732),(5611,0,1632,NULL,5,0,7733),(5612,0,1632,NULL,6,0,7734),(5613,0,1633,NULL,4,0,7735),(5614,0,1633,NULL,5,0,7736),(5615,0,1633,NULL,6,0,7737),(5616,0,1634,NULL,4,0,7738),(5617,0,1634,NULL,5,0,7739),(5618,0,1634,NULL,6,0,7740),(5619,0,1635,NULL,4,0,7741),(5620,0,1635,NULL,5,0,7742),(5621,0,1635,NULL,6,0,7743),(5622,0,1636,NULL,4,0,7744),(5623,0,1636,NULL,5,0,7745),(5624,0,1636,NULL,6,0,7746),(5625,0,1637,NULL,7,0,7747),(5626,0,1637,NULL,8,0,7748),(5627,0,1637,NULL,9,0,7749),(5628,0,1638,NULL,7,0,7750),(5629,0,1638,NULL,8,0,7751),(5630,0,1638,NULL,9,0,7752),(5631,0,1639,NULL,7,0,7753),(5632,0,1639,NULL,8,0,7754),(5633,0,1639,NULL,9,0,7755),(5634,0,1640,NULL,4,0,7756),(5635,0,1640,NULL,5,0,7757),(5636,0,1640,NULL,6,0,7758),(5637,0,1641,NULL,4,0,7759),(5638,0,1641,NULL,5,0,7760),(5639,0,1641,NULL,6,0,7761),(5640,0,1642,NULL,4,0,7762),(5641,0,1642,NULL,5,0,7763),(5642,0,1642,NULL,6,0,7764),(5646,0,1644,NULL,1,0,7768),(5647,0,1644,NULL,4,0,7769),(5648,0,1644,NULL,3,0,7770),(5649,0,1644,NULL,2,0,7771),(5650,0,1645,NULL,1,0,7772),(5651,0,1645,NULL,4,0,7773),(5652,0,1645,NULL,3,0,7774),(5653,0,1645,NULL,2,0,7775),(5654,0,1646,NULL,1,0,7776),(5655,0,1646,NULL,4,0,7777),(5656,0,1646,NULL,3,0,7778),(5657,0,1646,NULL,2,0,7779),(5658,0,1647,NULL,1,0,7780),(5659,0,1647,NULL,4,0,7781),(5660,0,1647,NULL,3,0,7782),(5661,0,1647,NULL,2,0,7783),(5662,0,1648,NULL,2,0,7784),(5663,0,1648,NULL,1,0,7785),(5664,0,1648,NULL,4,0,7786),(5665,0,1648,NULL,3,0,7787),(5666,0,1649,NULL,2,0,7788),(5667,0,1649,NULL,1,0,7789),(5668,0,1649,NULL,4,0,7790),(5669,0,1649,NULL,3,0,7791),(5670,0,1650,NULL,2,0,7792),(5671,0,1650,NULL,1,0,7793),(5672,0,1650,NULL,4,0,7794),(5673,0,1650,NULL,3,0,7795),(5674,0,1651,NULL,2,0,7796),(5675,0,1651,NULL,1,0,7797),(5676,0,1651,NULL,4,0,7798),(5677,0,1651,NULL,3,0,7799),(5678,0,1652,NULL,2,0,7800),(5679,0,1652,NULL,1,0,7801),(5680,0,1652,NULL,4,0,7802),(5681,0,1652,NULL,3,0,7803),(5682,0,1653,NULL,2,0,7804),(5683,0,1653,NULL,1,0,7805),(5684,0,1653,NULL,4,0,7806),(5685,0,1653,NULL,3,0,7807),(5686,0,1654,NULL,2,0,7808),(5687,0,1654,NULL,1,0,7809),(5688,0,1654,NULL,4,0,7810),(5689,0,1654,NULL,3,0,7811),(5690,0,1655,NULL,2,0,7812),(5691,0,1655,NULL,1,0,7813),(5692,0,1655,NULL,4,0,7814),(5693,0,1655,NULL,3,0,7815),(5698,0,1657,NULL,4,0,7820),(5699,0,1657,NULL,5,0,7821),(5700,0,1657,NULL,6,0,7822),(5701,0,1658,NULL,4,0,7823),(5702,0,1658,NULL,5,0,7824),(5703,0,1658,NULL,6,0,7825),(5704,0,1659,NULL,4,0,7826),(5705,0,1659,NULL,5,0,7827),(5706,0,1659,NULL,6,0,7828),(5707,0,1660,NULL,4,0,7829),(5708,0,1660,NULL,5,0,7830),(5709,0,1660,NULL,6,0,7831),(5710,0,1661,NULL,4,0,7832),(5711,0,1661,NULL,5,0,7833),(5712,0,1661,NULL,6,0,7834),(5713,0,1662,NULL,4,0,7835),(5714,0,1662,NULL,5,0,7836),(5715,0,1662,NULL,6,0,7837),(5716,0,1663,NULL,4,0,7838),(5717,0,1663,NULL,5,0,7839),(5718,0,1663,NULL,6,0,7840),(5719,0,1664,NULL,4,0,7841),(5720,0,1664,NULL,5,0,7842),(5721,0,1664,NULL,6,0,7843),(5722,0,1665,NULL,4,0,7844),(5723,0,1665,NULL,5,0,7845),(5724,0,1665,NULL,6,0,7846),(5725,0,1666,NULL,4,0,7847),(5726,0,1666,NULL,5,0,7848),(5727,0,1666,NULL,6,0,7849),(5728,0,1667,NULL,4,0,7850),(5729,0,1667,NULL,5,0,7851),(5730,0,1667,NULL,6,0,7852),(5731,0,1668,NULL,4,0,7853),(5732,0,1668,NULL,5,0,7854),(5733,0,1668,NULL,6,0,7855),(5734,0,1669,NULL,4,0,7856),(5735,0,1669,NULL,5,0,7857),(5736,0,1669,NULL,6,0,7858),(5737,0,1670,NULL,4,0,7859),(5738,0,1670,NULL,5,0,7860),(5739,0,1670,NULL,6,0,7861),(5740,0,1671,NULL,4,0,7862),(5741,0,1671,NULL,5,0,7863),(5742,0,1671,NULL,6,0,7864),(5743,0,1672,NULL,4,0,7865),(5744,0,1672,NULL,5,0,7866),(5745,0,1672,NULL,6,0,7867),(5746,0,1673,NULL,4,0,7868),(5747,0,1673,NULL,5,0,7869),(5748,0,1673,NULL,6,0,7870),(5749,0,1674,NULL,4,0,7871),(5750,0,1674,NULL,5,0,7872),(5751,0,1674,NULL,6,0,7873),(5752,0,1675,NULL,4,0,7874),(5753,0,1675,NULL,5,0,7875),(5754,0,1675,NULL,6,0,7876),(5755,0,1676,NULL,4,0,7877),(5756,0,1676,NULL,5,0,7878),(5757,0,1676,NULL,6,0,7879),(5761,0,1678,NULL,4,0,7883),(5762,0,1678,NULL,5,0,7884),(5763,0,1678,NULL,6,0,7885),(5764,0,1679,NULL,1,0,7886),(5765,0,1679,NULL,2,0,7887),(5766,0,1679,NULL,3,0,7888),(5767,0,1680,NULL,4,0,7889),(5768,0,1680,NULL,5,0,7890),(5769,0,1680,NULL,6,0,7891),(5770,0,1681,NULL,4,0,7892),(5771,0,1681,NULL,5,0,7893),(5772,0,1681,NULL,6,0,7894),(5773,0,1682,NULL,4,0,7895),(5774,0,1682,NULL,5,0,7896),(5775,0,1682,NULL,6,0,7897),(5776,0,1683,NULL,4,0,7898),(5777,0,1683,NULL,5,0,7899),(5778,0,1683,NULL,6,0,7900),(5779,0,1684,NULL,1,0,7901),(5780,0,1684,NULL,2,0,7902),(5781,0,1684,NULL,3,0,7903),(5782,0,1685,NULL,4,0,7904),(5783,0,1685,NULL,5,0,7905),(5784,0,1685,NULL,6,0,7906),(5785,0,1686,NULL,4,0,7907),(5786,0,1686,NULL,5,0,7908),(5787,0,1686,NULL,6,0,7909),(5788,0,1687,NULL,4,0,7910),(5789,0,1687,NULL,5,0,7911),(5790,0,1687,NULL,6,0,7912),(5791,0,1688,NULL,4,0,7913),(5792,0,1688,NULL,5,0,7914),(5793,0,1688,NULL,6,0,7915),(5794,0,1689,NULL,1,0,7916),(5795,0,1689,NULL,2,0,7917),(5796,0,1689,NULL,3,0,7918),(5797,0,1690,NULL,4,0,7919),(5798,0,1690,NULL,5,0,7920),(5799,0,1690,NULL,6,0,7921),(5804,0,1692,NULL,4,0,7926),(5805,0,1692,NULL,5,0,7927),(5806,0,1692,NULL,6,0,7928),(5807,0,1693,NULL,4,0,7929),(5808,0,1693,NULL,5,0,7930),(5809,0,1693,NULL,6,0,7931),(5810,0,1694,NULL,4,0,7932),(5811,0,1694,NULL,5,0,7933),(5812,0,1694,NULL,6,0,7934),(5813,0,1695,NULL,1,0,7935),(5814,0,1695,NULL,2,0,7936),(5815,0,1695,NULL,3,0,7937),(5816,0,1696,NULL,4,0,7938),(5817,0,1696,NULL,5,0,7939),(5818,0,1696,NULL,6,0,7940),(5819,0,1697,NULL,4,0,7941),(5820,0,1697,NULL,5,0,7942),(5821,0,1697,NULL,6,0,7943),(5822,0,1698,NULL,4,0,7944),(5823,0,1698,NULL,5,0,7945),(5824,0,1698,NULL,6,0,7946),(5828,0,1700,NULL,1,0,7950),(5829,0,1700,NULL,2,0,7951),(5830,0,1700,NULL,4,0,7952),(5831,0,1700,NULL,3,0,7953),(5832,0,1701,NULL,1,0,7954),(5833,0,1701,NULL,2,0,7955),(5834,0,1701,NULL,4,0,7956),(5835,0,1701,NULL,3,0,7957),(5836,0,1702,NULL,1,0,7958),(5837,0,1702,NULL,2,0,7959),(5838,0,1702,NULL,4,0,7960),(5839,0,1702,NULL,3,0,7961),(5840,0,1703,NULL,4,0,7962),(5841,0,1703,NULL,1,0,7963),(5842,0,1703,NULL,2,0,7964),(5843,0,1703,NULL,3,0,7965),(5844,0,1704,NULL,4,0,7966),(5845,0,1704,NULL,1,0,7967),(5846,0,1704,NULL,2,0,7968),(5847,0,1704,NULL,3,0,7969),(5848,0,1705,NULL,4,0,7970),(5849,0,1705,NULL,1,0,7971),(5850,0,1705,NULL,2,0,7972),(5851,0,1705,NULL,3,0,7973),(5852,0,1706,NULL,3,0,7974),(5853,0,1706,NULL,1,0,7975),(5854,0,1706,NULL,2,0,7976),(5855,0,1706,NULL,4,0,7977),(5856,0,1707,NULL,3,0,7978),(5857,0,1707,NULL,1,0,7979),(5858,0,1707,NULL,2,0,7980),(5859,0,1707,NULL,4,0,7981),(5860,0,1708,NULL,3,0,7982),(5861,0,1708,NULL,1,0,7983),(5862,0,1708,NULL,2,0,7984),(5863,0,1708,NULL,4,0,7985),(5872,0,1710,NULL,4,0,7994),(5873,0,1710,NULL,5,0,7995),(5874,0,1710,NULL,6,0,7996),(5875,0,1711,NULL,4,0,7997),(5876,0,1711,NULL,5,0,7998),(5877,0,1711,NULL,6,0,7999),(5878,0,1712,NULL,4,0,8000),(5879,0,1712,NULL,5,0,8001),(5880,0,1712,NULL,6,0,8002),(5881,0,1713,NULL,4,0,8003),(5882,0,1713,NULL,5,0,8004),(5883,0,1713,NULL,6,0,8005),(5884,0,1714,NULL,4,0,8006),(5885,0,1714,NULL,5,0,8007),(5886,0,1714,NULL,6,0,8008),(5887,0,1715,NULL,4,0,8009),(5888,0,1715,NULL,5,0,8010),(5889,0,1715,NULL,6,0,8011),(5890,0,1716,NULL,4,0,8012),(5891,0,1716,NULL,5,0,8013),(5892,0,1716,NULL,6,0,8014),(5893,0,1717,NULL,4,0,8015),(5894,0,1717,NULL,5,0,8016),(5895,0,1717,NULL,6,0,8017),(5896,0,1718,NULL,4,0,8018),(5897,0,1718,NULL,5,0,8019),(5898,0,1718,NULL,6,0,8020),(5899,0,1719,NULL,4,0,8021),(5900,0,1719,NULL,5,0,8022),(5901,0,1719,NULL,6,0,8023),(5902,0,1720,NULL,4,0,8024),(5903,0,1720,NULL,5,0,8025),(5904,0,1720,NULL,6,0,8026),(5905,0,1721,NULL,4,0,8027),(5906,0,1721,NULL,5,0,8028),(5907,0,1721,NULL,6,0,8029),(5908,0,1722,NULL,4,0,8030),(5909,0,1722,NULL,5,0,8031),(5910,0,1722,NULL,6,0,8032),(5911,0,1723,NULL,4,0,8033),(5912,0,1723,NULL,5,0,8034),(5913,0,1723,NULL,6,0,8035),(5914,0,1724,NULL,4,0,8036),(5915,0,1724,NULL,5,0,8037),(5916,0,1724,NULL,6,0,8038),(5920,0,1726,NULL,1,0,8042),(5921,0,1726,NULL,2,0,8043),(5922,0,1726,NULL,4,0,8044),(5923,0,1726,NULL,3,0,8045),(5924,0,1727,NULL,1,0,8046),(5925,0,1727,NULL,2,0,8047),(5926,0,1727,NULL,4,0,8048),(5927,0,1727,NULL,3,0,8049),(5928,0,1728,NULL,1,0,8050),(5929,0,1728,NULL,2,0,8051),(5930,0,1728,NULL,4,0,8052),(5931,0,1728,NULL,3,0,8053),(5932,0,1729,NULL,3,0,8054),(5933,0,1729,NULL,1,0,8055),(5934,0,1729,NULL,4,0,8056),(5935,0,1729,NULL,2,0,8057),(5936,0,1730,NULL,3,0,8058),(5937,0,1730,NULL,1,0,8059),(5938,0,1730,NULL,4,0,8060),(5939,0,1730,NULL,2,0,8061),(5940,0,1731,NULL,3,0,8062),(5941,0,1731,NULL,1,0,8063),(5942,0,1731,NULL,4,0,8064),(5943,0,1731,NULL,2,0,8065),(5944,0,1732,NULL,2,0,8066),(5945,0,1732,NULL,3,0,8067),(5946,0,1732,NULL,1,0,8068),(5947,0,1732,NULL,4,0,8069),(5948,0,1733,NULL,2,0,8070),(5949,0,1733,NULL,3,0,8071),(5950,0,1733,NULL,1,0,8072),(5951,0,1733,NULL,4,0,8073),(5952,0,1734,NULL,2,0,8074),(5953,0,1734,NULL,3,0,8075),(5954,0,1734,NULL,1,0,8076),(5955,0,1734,NULL,4,0,8077),(5960,0,1736,NULL,4,0,8082),(5961,0,1736,NULL,5,0,8083),(5962,0,1736,NULL,6,0,8084),(5963,0,1737,NULL,4,0,8085),(5964,0,1737,NULL,5,0,8086),(5965,0,1737,NULL,6,0,8087),(5966,0,1738,NULL,4,0,8088),(5967,0,1738,NULL,5,0,8089),(5968,0,1738,NULL,6,0,8090),(5969,0,1739,NULL,4,0,8091),(5970,0,1739,NULL,5,0,8092),(5971,0,1739,NULL,6,0,8093),(5972,0,1740,NULL,4,0,8094),(5973,0,1740,NULL,5,0,8095),(5974,0,1740,NULL,6,0,8096),(5975,0,1741,NULL,4,0,8097),(5976,0,1741,NULL,5,0,8098),(5977,0,1741,NULL,6,0,8099),(5978,0,1742,NULL,4,0,8100),(5979,0,1742,NULL,5,0,8101),(5980,0,1742,NULL,6,0,8102),(5981,0,1743,NULL,4,0,8103),(5982,0,1743,NULL,5,0,8104),(5983,0,1743,NULL,6,0,8105),(5984,0,1744,NULL,4,0,8106),(5985,0,1744,NULL,5,0,8107),(5986,0,1744,NULL,6,0,8108),(5987,0,1745,NULL,4,0,8109),(5988,0,1745,NULL,5,0,8110),(5989,0,1745,NULL,6,0,8111),(5990,0,1746,NULL,4,0,8112),(5991,0,1746,NULL,5,0,8113),(5992,0,1746,NULL,6,0,8114),(5993,0,1747,NULL,4,0,8115),(5994,0,1747,NULL,5,0,8116),(5995,0,1747,NULL,6,0,8117),(5996,0,1748,NULL,4,0,8118),(5997,0,1748,NULL,5,0,8119),(5998,0,1748,NULL,6,0,8120),(5999,0,1749,NULL,4,0,8121),(6000,0,1749,NULL,5,0,8122),(6001,0,1749,NULL,6,0,8123),(6002,0,1750,NULL,4,0,8124),(6003,0,1750,NULL,5,0,8125),(6004,0,1750,NULL,6,0,8126),(6005,0,1751,NULL,4,0,8127),(6006,0,1751,NULL,5,0,8128),(6007,0,1751,NULL,6,0,8129),(6008,0,1752,NULL,4,0,8130),(6009,0,1752,NULL,5,0,8131),(6010,0,1752,NULL,6,0,8132),(6011,0,1753,NULL,4,0,8133),(6012,0,1753,NULL,5,0,8134),(6013,0,1753,NULL,6,0,8135),(6014,0,1754,NULL,4,0,8136),(6015,0,1754,NULL,5,0,8137),(6016,0,1754,NULL,6,0,8138),(6017,0,1755,NULL,4,0,8139),(6018,0,1755,NULL,5,0,8140),(6019,0,1755,NULL,6,0,8141),(6023,0,1757,NULL,5,0,8145),(6024,0,1757,NULL,6,0,8146),(6025,0,1757,NULL,7,0,8147),(6026,0,1757,NULL,8,0,8148),(6027,0,1758,NULL,1,0,8149),(6028,0,1758,NULL,2,0,8150),(6029,0,1758,NULL,3,0,8151),(6030,0,1758,NULL,4,0,8152),(6031,0,1759,NULL,5,0,8153),(6032,0,1759,NULL,6,0,8154),(6033,0,1759,NULL,7,0,8155),(6034,0,1759,NULL,8,0,8156),(6035,0,1760,NULL,5,0,8157),(6036,0,1760,NULL,6,0,8158),(6037,0,1760,NULL,7,0,8159),(6038,0,1760,NULL,8,0,8160),(6039,0,1761,NULL,5,0,8161),(6040,0,1761,NULL,6,0,8162),(6041,0,1761,NULL,7,0,8163),(6042,0,1761,NULL,8,0,8164),(6043,0,1762,NULL,5,0,8165),(6044,0,1762,NULL,6,0,8166),(6045,0,1762,NULL,7,0,8167),(6046,0,1762,NULL,8,0,8168),(6047,0,1763,NULL,1,0,8169),(6048,0,1763,NULL,2,0,8170),(6049,0,1763,NULL,3,0,8171),(6050,0,1763,NULL,4,0,8172),(6051,0,1764,NULL,5,0,8173),(6052,0,1764,NULL,6,0,8174),(6053,0,1764,NULL,7,0,8175),(6054,0,1764,NULL,8,0,8176),(6055,0,1765,NULL,5,0,8177),(6056,0,1765,NULL,6,0,8178),(6057,0,1765,NULL,7,0,8179),(6058,0,1765,NULL,8,0,8180),(6059,0,1766,NULL,5,0,8181),(6060,0,1766,NULL,6,0,8182),(6061,0,1766,NULL,7,0,8183),(6062,0,1766,NULL,8,0,8184),(6063,0,1767,NULL,5,0,8185),(6064,0,1767,NULL,6,0,8186),(6065,0,1767,NULL,7,0,8187),(6066,0,1767,NULL,8,0,8188),(6067,0,1768,NULL,1,0,8189),(6068,0,1768,NULL,2,0,8190),(6069,0,1768,NULL,3,0,8191),(6070,0,1768,NULL,4,0,8192),(6071,0,1769,NULL,5,0,8193),(6072,0,1769,NULL,6,0,8194),(6073,0,1769,NULL,7,0,8195),(6074,0,1769,NULL,8,0,8196),(6075,0,1770,NULL,5,0,8197),(6076,0,1770,NULL,6,0,8198),(6077,0,1770,NULL,7,0,8199),(6078,0,1770,NULL,8,0,8200),(6079,0,1771,NULL,5,0,8201),(6080,0,1771,NULL,6,0,8202),(6081,0,1771,NULL,7,0,8203),(6082,0,1771,NULL,8,0,8204),(6083,0,1772,NULL,5,0,8205),(6084,0,1772,NULL,6,0,8206),(6085,0,1772,NULL,7,0,8207),(6086,0,1772,NULL,8,0,8208),(6087,0,1773,NULL,1,0,8209),(6088,0,1773,NULL,2,0,8210),(6089,0,1773,NULL,3,0,8211),(6090,0,1773,NULL,4,0,8212),(6091,0,1774,NULL,5,0,8213),(6092,0,1774,NULL,6,0,8214),(6093,0,1774,NULL,7,0,8215),(6094,0,1774,NULL,8,0,8216),(6095,0,1775,NULL,5,0,8217),(6096,0,1775,NULL,6,0,8218),(6097,0,1775,NULL,7,0,8219),(6098,0,1775,NULL,8,0,8220),(6099,0,1776,NULL,5,0,8221),(6100,0,1776,NULL,6,0,8222),(6101,0,1776,NULL,7,0,8223),(6102,0,1776,NULL,8,0,8224),(6107,0,1778,NULL,3,0,8229),(6108,0,1778,NULL,1,0,8230),(6109,0,1778,NULL,2,0,8231),(6110,0,1779,NULL,3,0,8232),(6111,0,1779,NULL,1,0,8233),(6112,0,1779,NULL,2,0,8234),(6113,0,1780,NULL,3,0,8235),(6114,0,1780,NULL,1,0,8236),(6115,0,1780,NULL,2,0,8237),(6116,0,1781,NULL,3,0,8238),(6117,0,1781,NULL,2,0,8239),(6118,0,1781,NULL,1,0,8240),(6119,0,1782,NULL,3,0,8241),(6120,0,1782,NULL,2,0,8242),(6121,0,1782,NULL,1,0,8243),(6122,0,1783,NULL,3,0,8244),(6123,0,1783,NULL,2,0,8245),(6124,0,1783,NULL,1,0,8246),(6125,0,1784,NULL,1,0,8247),(6126,0,1784,NULL,2,0,8248),(6127,0,1784,NULL,3,0,8249),(6128,0,1785,NULL,1,0,8250),(6129,0,1785,NULL,2,0,8251),(6130,0,1785,NULL,3,0,8252),(6131,0,1786,NULL,1,0,8253),(6132,0,1786,NULL,2,0,8254),(6133,0,1786,NULL,3,0,8255),(6137,0,1788,NULL,4,0,8259),(6138,0,1788,NULL,5,0,8260),(6139,0,1788,NULL,6,0,8261),(6140,0,1789,NULL,4,0,8262),(6141,0,1789,NULL,5,0,8263),(6142,0,1789,NULL,6,0,8264),(6143,0,1790,NULL,4,0,8265),(6144,0,1790,NULL,5,0,8266),(6145,0,1790,NULL,6,0,8267),(6146,0,1791,NULL,4,0,8268),(6147,0,1791,NULL,5,0,8269),(6148,0,1791,NULL,6,0,8270),(6149,0,1792,NULL,4,0,8271),(6150,0,1792,NULL,5,0,8272),(6151,0,1792,NULL,6,0,8273),(6152,0,1793,NULL,4,0,8274),(6153,0,1793,NULL,5,0,8275),(6154,0,1793,NULL,6,0,8276),(6155,0,1794,NULL,4,0,8277),(6156,0,1794,NULL,5,0,8278),(6157,0,1794,NULL,6,0,8279),(6158,0,1795,NULL,4,0,8280),(6159,0,1795,NULL,5,0,8281),(6160,0,1795,NULL,6,0,8282),(6161,0,1796,NULL,4,0,8283),(6162,0,1796,NULL,5,0,8284),(6163,0,1796,NULL,6,0,8285),(6164,0,1797,NULL,4,0,8286),(6165,0,1797,NULL,5,0,8287),(6166,0,1797,NULL,6,0,8288),(6167,0,1798,NULL,4,0,8289),(6168,0,1798,NULL,5,0,8290),(6169,0,1798,NULL,6,0,8291),(6170,0,1799,NULL,4,0,8292),(6171,0,1799,NULL,5,0,8293),(6172,0,1799,NULL,6,0,8294),(6173,0,1800,NULL,4,0,8295),(6174,0,1800,NULL,5,0,8296),(6175,0,1800,NULL,6,0,8297),(6176,0,1801,NULL,4,0,8298),(6177,0,1801,NULL,5,0,8299),(6178,0,1801,NULL,6,0,8300),(6179,0,1802,NULL,4,0,8301),(6180,0,1802,NULL,5,0,8302),(6181,0,1802,NULL,6,0,8303),(6182,0,1803,NULL,4,0,8304),(6183,0,1803,NULL,5,0,8305),(6184,0,1803,NULL,6,0,8306),(6185,0,1804,NULL,4,0,8307),(6186,0,1804,NULL,5,0,8308),(6187,0,1804,NULL,6,0,8309),(6188,0,1805,NULL,4,0,8310),(6189,0,1805,NULL,5,0,8311),(6190,0,1805,NULL,6,0,8312),(6191,0,1806,NULL,4,0,8313),(6192,0,1806,NULL,5,0,8314),(6193,0,1806,NULL,6,0,8315),(6194,0,1807,NULL,4,0,8316),(6195,0,1807,NULL,5,0,8317),(6196,0,1807,NULL,6,0,8318),(6197,0,1809,NULL,1,0,8319),(6198,0,1809,NULL,4,0,8320),(6199,0,1809,NULL,2,0,8321),(6200,0,1809,NULL,3,0,8322),(6201,0,1810,NULL,1,0,8323),(6202,0,1810,NULL,4,0,8324),(6203,0,1810,NULL,2,0,8325),(6204,0,1810,NULL,3,0,8326),(6205,0,1811,NULL,1,0,8327),(6206,0,1811,NULL,4,0,8328),(6207,0,1811,NULL,2,0,8329),(6208,0,1811,NULL,3,0,8330),(6209,0,1812,NULL,1,0,8331),(6210,0,1812,NULL,4,0,8332),(6211,0,1812,NULL,2,0,8333),(6212,0,1812,NULL,3,0,8334),(6213,0,1813,NULL,4,0,8335),(6214,0,1813,NULL,2,0,8336),(6215,0,1813,NULL,3,0,8337),(6216,0,1813,NULL,1,0,8338),(6217,0,1814,NULL,4,0,8339),(6218,0,1814,NULL,2,0,8340),(6219,0,1814,NULL,3,0,8341),(6220,0,1814,NULL,1,0,8342),(6221,0,1815,NULL,4,0,8343),(6222,0,1815,NULL,2,0,8344),(6223,0,1815,NULL,3,0,8345),(6224,0,1815,NULL,1,0,8346),(6225,0,1816,NULL,4,0,8347),(6226,0,1816,NULL,2,0,8348),(6227,0,1816,NULL,3,0,8349),(6228,0,1816,NULL,1,0,8350),(6281,0,1834,NULL,1,0,8403),(6282,0,1834,NULL,3,0,8404),(6283,0,1834,NULL,2,0,8405),(6284,0,1835,NULL,1,0,8406),(6285,0,1835,NULL,3,0,8407),(6286,0,1835,NULL,2,0,8408),(6287,0,1836,NULL,1,0,8409),(6288,0,1836,NULL,3,0,8410),(6289,0,1836,NULL,2,0,8411),(6290,0,1837,NULL,3,0,8412),(6291,0,1837,NULL,1,0,8413),(6292,0,1837,NULL,2,0,8414),(6293,0,1838,NULL,3,0,8415),(6294,0,1838,NULL,1,0,8416),(6295,0,1838,NULL,2,0,8417),(6296,0,1839,NULL,3,0,8418),(6297,0,1839,NULL,1,0,8419),(6298,0,1839,NULL,2,0,8420),(6302,0,1841,NULL,1,0,8424),(6303,0,1841,NULL,2,0,8425),(6304,0,1841,NULL,3,0,8426),(6305,0,1842,NULL,1,0,8427),(6306,0,1842,NULL,2,0,8428),(6307,0,1842,NULL,3,0,8429),(6308,0,1843,NULL,1,0,8430),(6309,0,1843,NULL,2,0,8431),(6310,0,1843,NULL,3,0,8432),(6311,0,1844,NULL,1,0,8433),(6312,0,1844,NULL,2,0,8434),(6313,0,1844,NULL,3,0,8435),(6314,0,1845,NULL,1,0,8436),(6315,0,1845,NULL,2,0,8437),(6316,0,1845,NULL,3,0,8438),(6317,0,1846,NULL,1,0,8439),(6318,0,1846,NULL,2,0,8440),(6319,0,1846,NULL,3,0,8441),(6320,0,1847,NULL,1,0,8442),(6321,0,1847,NULL,2,0,8443),(6322,0,1847,NULL,3,0,8444),(6323,0,1848,NULL,1,0,8445),(6324,0,1848,NULL,2,0,8446),(6325,0,1848,NULL,3,0,8447),(6326,0,1849,NULL,1,0,8448),(6327,0,1849,NULL,2,0,8449),(6328,0,1849,NULL,3,0,8450),(6329,0,1850,NULL,1,0,8451),(6330,0,1850,NULL,2,0,8452),(6331,0,1850,NULL,3,0,8453),(6332,0,1851,NULL,1,0,8454),(6333,0,1851,NULL,2,0,8455),(6334,0,1851,NULL,3,0,8456),(6335,0,1852,NULL,1,0,8457),(6336,0,1852,NULL,2,0,8458),(6337,0,1852,NULL,3,0,8459),(6338,0,1853,NULL,1,0,8460),(6339,0,1853,NULL,2,0,8461),(6340,0,1853,NULL,3,0,8462),(6341,0,1854,NULL,1,0,8463),(6342,0,1854,NULL,2,0,8464),(6343,0,1854,NULL,3,0,8465),(6344,0,1855,NULL,1,0,8466),(6345,0,1855,NULL,2,0,8467),(6346,0,1855,NULL,3,0,8468),(6347,0,1856,NULL,1,0,8469),(6348,0,1856,NULL,2,0,8470),(6349,0,1856,NULL,3,0,8471),(6350,0,1857,NULL,1,0,8472),(6351,0,1857,NULL,2,0,8473),(6352,0,1857,NULL,3,0,8474),(6353,0,1858,NULL,1,0,8475),(6354,0,1858,NULL,2,0,8476),(6355,0,1858,NULL,3,0,8477),(6356,0,1859,NULL,1,0,8478),(6357,0,1859,NULL,2,0,8479),(6358,0,1859,NULL,3,0,8480),(6359,0,1860,NULL,1,0,8481),(6360,0,1860,NULL,2,0,8482),(6361,0,1860,NULL,3,0,8483),(6362,0,1861,NULL,4,0,8484),(6363,0,1861,NULL,5,0,8485),(6364,0,1861,NULL,6,0,8486),(6365,0,1862,NULL,4,0,8487),(6366,0,1862,NULL,5,0,8488),(6367,0,1862,NULL,6,0,8489),(6368,0,1863,NULL,4,0,8490),(6369,0,1863,NULL,5,0,8491),(6370,0,1863,NULL,6,0,8492),(6371,0,1864,NULL,4,0,8493),(6372,0,1864,NULL,5,0,8494),(6373,0,1864,NULL,6,0,8495),(6374,0,1865,NULL,4,0,8496),(6375,0,1865,NULL,5,0,8497),(6376,0,1865,NULL,6,0,8498),(6380,0,1867,NULL,4,0,8502),(6381,0,1867,NULL,1,0,8503),(6382,0,1867,NULL,2,0,8504),(6383,0,1867,NULL,3,0,8505),(6384,0,1868,NULL,4,0,8506),(6385,0,1868,NULL,1,0,8507),(6386,0,1868,NULL,2,0,8508),(6387,0,1868,NULL,3,0,8509),(6388,0,1869,NULL,4,0,8510),(6389,0,1869,NULL,1,0,8511),(6390,0,1869,NULL,2,0,8512),(6391,0,1869,NULL,3,0,8513),(6392,0,1870,NULL,4,0,8514),(6393,0,1870,NULL,1,0,8515),(6394,0,1870,NULL,2,0,8516),(6395,0,1870,NULL,3,0,8517),(6396,0,1871,NULL,4,0,8518),(6397,0,1871,NULL,2,0,8519),(6398,0,1871,NULL,1,0,8520),(6399,0,1871,NULL,3,0,8521),(6400,0,1872,NULL,4,0,8522),(6401,0,1872,NULL,2,0,8523),(6402,0,1872,NULL,1,0,8524),(6403,0,1872,NULL,3,0,8525),(6404,0,1873,NULL,4,0,8526),(6405,0,1873,NULL,2,0,8527),(6406,0,1873,NULL,1,0,8528),(6407,0,1873,NULL,3,0,8529),(6408,0,1874,NULL,4,0,8530),(6409,0,1874,NULL,2,0,8531),(6410,0,1874,NULL,1,0,8532),(6411,0,1874,NULL,3,0,8533),(6416,0,1876,NULL,5,0,8538),(6417,0,1876,NULL,6,0,8539),(6418,0,1876,NULL,7,0,8540),(6419,0,1876,NULL,8,0,8541),(6420,0,1877,NULL,5,0,8542),(6421,0,1877,NULL,6,0,8543),(6422,0,1877,NULL,7,0,8544),(6423,0,1877,NULL,8,0,8545),(6424,0,1878,NULL,5,0,8546),(6425,0,1878,NULL,6,0,8547),(6426,0,1878,NULL,7,0,8548),(6427,0,1878,NULL,8,0,8549),(6428,0,1879,NULL,5,0,8550),(6429,0,1879,NULL,6,0,8551),(6430,0,1879,NULL,7,0,8552),(6431,0,1879,NULL,8,0,8553),(6432,0,1880,NULL,5,0,8554),(6433,0,1880,NULL,6,0,8555),(6434,0,1880,NULL,7,0,8556),(6435,0,1880,NULL,8,0,8557),(6436,0,1881,NULL,5,0,8558),(6437,0,1881,NULL,6,0,8559),(6438,0,1881,NULL,7,0,8560),(6439,0,1881,NULL,8,0,8561),(6440,0,1882,NULL,5,0,8562),(6441,0,1882,NULL,6,0,8563),(6442,0,1882,NULL,7,0,8564),(6443,0,1882,NULL,8,0,8565),(6444,0,1883,NULL,5,0,8566),(6445,0,1883,NULL,6,0,8567),(6446,0,1883,NULL,7,0,8568),(6447,0,1883,NULL,8,0,8569),(6448,0,1884,NULL,5,0,8570),(6449,0,1884,NULL,6,0,8571),(6450,0,1884,NULL,7,0,8572),(6451,0,1884,NULL,8,0,8573),(6452,0,1885,NULL,5,0,8574),(6453,0,1885,NULL,6,0,8575),(6454,0,1885,NULL,7,0,8576),(6455,0,1885,NULL,8,0,8577),(6456,0,1886,NULL,5,0,8578),(6457,0,1886,NULL,6,0,8579),(6458,0,1886,NULL,7,0,8580),(6459,0,1886,NULL,8,0,8581),(6460,0,1887,NULL,5,0,8582),(6461,0,1887,NULL,6,0,8583),(6462,0,1887,NULL,7,0,8584),(6463,0,1887,NULL,8,0,8585),(6468,0,1889,NULL,4,0,8590),(6469,0,1889,NULL,5,0,8591),(6470,0,1889,NULL,6,0,8592),(6471,0,1890,NULL,4,0,8593),(6472,0,1890,NULL,5,0,8594),(6473,0,1890,NULL,6,0,8595),(6474,0,1891,NULL,4,0,8596),(6475,0,1891,NULL,5,0,8597),(6476,0,1891,NULL,6,0,8598),(6480,0,1893,NULL,7,0,8602),(6481,0,1893,NULL,8,0,8603),(6482,0,1893,NULL,9,0,8604),(6483,0,1894,NULL,7,0,8605),(6484,0,1894,NULL,8,0,8606),(6485,0,1894,NULL,9,0,8607),(6486,0,1895,NULL,7,0,8608),(6487,0,1895,NULL,8,0,8609),(6488,0,1895,NULL,9,0,8610),(6492,0,1897,NULL,3,0,8614),(6493,0,1897,NULL,2,0,8615),(6494,0,1897,NULL,1,0,8616),(6495,0,1898,NULL,3,0,8617),(6496,0,1898,NULL,2,0,8618),(6497,0,1898,NULL,1,0,8619),(6498,0,1899,NULL,3,0,8620),(6499,0,1899,NULL,2,0,8621),(6500,0,1899,NULL,1,0,8622),(6501,0,1900,NULL,1,0,8623),(6502,0,1900,NULL,2,0,8624),(6503,0,1900,NULL,3,0,8625),(6504,0,1901,NULL,1,0,8626),(6505,0,1901,NULL,2,0,8627),(6506,0,1901,NULL,3,0,8628),(6507,0,1902,NULL,1,0,8629),(6508,0,1902,NULL,2,0,8630),(6509,0,1902,NULL,3,0,8631),(6513,0,1904,NULL,9,0,8635),(6514,0,1904,NULL,10,0,8636),(6515,0,1904,NULL,11,0,8637),(6516,0,1904,NULL,12,0,8638),(6517,0,1905,NULL,9,0,8639),(6518,0,1905,NULL,10,0,8640),(6519,0,1905,NULL,11,0,8641),(6520,0,1905,NULL,12,0,8642),(6521,0,1906,NULL,9,0,8643),(6522,0,1906,NULL,10,0,8644),(6523,0,1906,NULL,11,0,8645),(6524,0,1906,NULL,12,0,8646),(6525,0,1907,NULL,9,0,8647),(6526,0,1907,NULL,10,0,8648),(6527,0,1907,NULL,11,0,8649),(6528,0,1907,NULL,12,0,8650),(6529,0,1908,NULL,9,0,8651),(6530,0,1908,NULL,10,0,8652),(6531,0,1908,NULL,11,0,8653),(6532,0,1908,NULL,12,0,8654),(6533,0,1909,NULL,9,0,8655),(6534,0,1909,NULL,10,0,8656),(6535,0,1909,NULL,11,0,8657),(6536,0,1909,NULL,12,0,8658),(6541,0,1911,NULL,5,0,8663),(6542,0,1911,NULL,6,0,8664),(6543,0,1911,NULL,7,0,8665),(6544,0,1911,NULL,8,0,8666),(6545,0,1912,NULL,5,0,8667),(6546,0,1912,NULL,6,0,8668),(6547,0,1912,NULL,7,0,8669),(6548,0,1912,NULL,8,0,8670),(6549,0,1913,NULL,5,0,8671),(6550,0,1913,NULL,6,0,8672),(6551,0,1913,NULL,7,0,8673),(6552,0,1913,NULL,8,0,8674),(6553,0,1914,NULL,5,0,8675),(6554,0,1914,NULL,6,0,8676),(6555,0,1914,NULL,7,0,8677),(6556,0,1914,NULL,8,0,8678),(6557,0,1915,NULL,5,0,8679),(6558,0,1915,NULL,6,0,8680),(6559,0,1915,NULL,7,0,8681),(6560,0,1915,NULL,8,0,8682),(6561,0,1916,NULL,5,0,8683),(6562,0,1916,NULL,6,0,8684),(6563,0,1916,NULL,7,0,8685),(6564,0,1916,NULL,8,0,8686),(6565,0,1917,NULL,5,0,8687),(6566,0,1917,NULL,6,0,8688),(6567,0,1917,NULL,7,0,8689),(6568,0,1917,NULL,8,0,8690),(6569,0,1918,NULL,5,0,8691),(6570,0,1918,NULL,6,0,8692),(6571,0,1918,NULL,7,0,8693),(6572,0,1918,NULL,8,0,8694),(6573,0,1919,NULL,5,0,8695),(6574,0,1919,NULL,6,0,8696),(6575,0,1919,NULL,7,0,8697),(6576,0,1919,NULL,8,0,8698),(6609,0,1928,NULL,2,0,8731),(6610,0,1928,NULL,4,0,8732),(6611,0,1928,NULL,3,0,8733),(6612,0,1929,NULL,2,0,8734),(6613,0,1929,NULL,3,0,8735),(6614,0,1929,NULL,1,0,8736),(6615,0,1930,NULL,1,0,8737),(6616,0,1930,NULL,2,0,8738),(6617,0,1930,NULL,3,0,8739),(6618,0,1931,NULL,2,0,8740),(6619,0,1931,NULL,4,0,8741),(6620,0,1931,NULL,3,0,8742),(6621,0,1932,NULL,2,0,8743),(6622,0,1932,NULL,3,0,8744),(6623,0,1932,NULL,1,0,8745),(6624,0,1933,NULL,1,0,8746),(6625,0,1933,NULL,2,0,8747),(6626,0,1933,NULL,3,0,8748),(6627,0,1934,NULL,2,0,8749),(6628,0,1934,NULL,4,0,8750),(6629,0,1934,NULL,3,0,8751),(6630,0,1935,NULL,2,0,8752),(6631,0,1935,NULL,3,0,8753),(6632,0,1935,NULL,1,0,8754),(6633,0,1936,NULL,1,0,8755),(6634,0,1936,NULL,2,0,8756),(6635,0,1936,NULL,3,0,8757),(6636,0,1937,NULL,2,0,8758),(6637,0,1937,NULL,4,0,8759),(6638,0,1937,NULL,3,0,8760),(6639,0,1938,NULL,2,0,8761),(6640,0,1938,NULL,3,0,8762),(6641,0,1938,NULL,1,0,8763),(6642,0,1939,NULL,1,0,8764),(6643,0,1939,NULL,2,0,8765),(6644,0,1939,NULL,3,0,8766),(6645,0,1940,NULL,2,0,8767),(6646,0,1940,NULL,4,0,8768),(6647,0,1940,NULL,3,0,8769),(6648,0,1941,NULL,2,0,8770),(6649,0,1941,NULL,3,0,8771),(6650,0,1941,NULL,1,0,8772),(6651,0,1942,NULL,1,0,8773),(6652,0,1942,NULL,2,0,8774),(6653,0,1942,NULL,3,0,8775),(6657,0,1944,NULL,2,0,8779),(6658,0,1944,NULL,3,0,8780),(6659,0,1944,NULL,4,0,8781),(6660,0,1944,NULL,1,0,8782),(6661,0,1945,NULL,2,0,8783),(6662,0,1945,NULL,3,0,8784),(6663,0,1945,NULL,4,0,8785),(6664,0,1945,NULL,1,0,8786),(6669,0,1947,NULL,1,0,8791),(6670,0,1947,NULL,2,0,8792),(6671,0,1947,NULL,3,0,8793),(6672,0,1947,NULL,4,0,8794),(6673,0,1948,NULL,1,0,8795),(6674,0,1948,NULL,2,0,8796),(6675,0,1948,NULL,3,0,8797),(6676,0,1948,NULL,4,0,8798),(6677,0,1949,NULL,1,0,8799),(6678,0,1949,NULL,2,0,8800),(6679,0,1949,NULL,3,0,8801),(6680,0,1949,NULL,4,0,8802),(6681,0,1950,NULL,1,0,8803),(6682,0,1950,NULL,2,0,8804),(6683,0,1950,NULL,3,0,8805),(6684,0,1950,NULL,4,0,8806),(6685,0,1951,NULL,1,0,8807),(6686,0,1951,NULL,2,0,8808),(6687,0,1951,NULL,3,0,8809),(6688,0,1951,NULL,4,0,8810),(6689,0,1952,NULL,1,0,8811),(6690,0,1952,NULL,2,0,8812),(6691,0,1952,NULL,3,0,8813),(6692,0,1952,NULL,4,0,8814),(6693,0,1953,NULL,1,0,8815),(6694,0,1953,NULL,2,0,8816),(6695,0,1953,NULL,3,0,8817),(6696,0,1953,NULL,4,0,8818),(6697,0,1954,NULL,4,0,8819),(6698,0,1954,NULL,1,0,8820),(6699,0,1954,NULL,2,0,8821),(6700,0,1954,NULL,3,0,8822),(6701,0,1955,NULL,4,0,8823),(6702,0,1955,NULL,1,0,8824),(6703,0,1955,NULL,2,0,8825),(6704,0,1955,NULL,3,0,8826),(6705,0,1956,NULL,4,0,8827),(6706,0,1956,NULL,1,0,8828),(6707,0,1956,NULL,2,0,8829),(6708,0,1956,NULL,3,0,8830),(6709,0,1957,NULL,4,0,8831),(6710,0,1957,NULL,1,0,8832),(6711,0,1957,NULL,2,0,8833),(6712,0,1957,NULL,3,0,8834),(6713,0,1958,NULL,4,0,8835),(6714,0,1958,NULL,1,0,8836),(6715,0,1958,NULL,2,0,8837),(6716,0,1958,NULL,3,0,8838),(6717,0,1959,NULL,4,0,8839),(6718,0,1959,NULL,1,0,8840),(6719,0,1959,NULL,2,0,8841),(6720,0,1959,NULL,3,0,8842),(6721,0,1960,NULL,4,0,8843),(6722,0,1960,NULL,1,0,8844),(6723,0,1960,NULL,2,0,8845),(6724,0,1960,NULL,3,0,8846),(6729,0,1962,NULL,3,0,8851),(6730,0,1962,NULL,4,0,8852),(6731,0,1962,NULL,2,0,8853),(6732,0,1962,NULL,1,0,8854),(6733,0,1963,NULL,3,0,8855),(6734,0,1963,NULL,4,0,8856),(6735,0,1963,NULL,2,0,8857),(6736,0,1963,NULL,1,0,8858),(6737,0,1964,NULL,3,0,8859),(6738,0,1964,NULL,4,0,8860),(6739,0,1964,NULL,2,0,8861),(6740,0,1964,NULL,1,0,8862),(6741,0,1965,NULL,3,0,8863),(6742,0,1965,NULL,4,0,8864),(6743,0,1965,NULL,2,0,8865),(6744,0,1965,NULL,1,0,8866),(6745,0,1966,NULL,3,0,8867),(6746,0,1966,NULL,4,0,8868),(6747,0,1966,NULL,2,0,8869),(6748,0,1966,NULL,1,0,8870),(6749,0,1967,NULL,3,0,8871),(6750,0,1967,NULL,4,0,8872),(6751,0,1967,NULL,2,0,8873),(6752,0,1967,NULL,1,0,8874),(6753,0,1968,NULL,3,0,8875),(6754,0,1968,NULL,4,0,8876),(6755,0,1968,NULL,2,0,8877),(6756,0,1968,NULL,1,0,8878),(6757,0,1969,NULL,3,0,8879),(6758,0,1969,NULL,4,0,8880),(6759,0,1969,NULL,2,0,8881),(6760,0,1969,NULL,1,0,8882),(6761,0,1970,NULL,3,0,8883),(6762,0,1970,NULL,4,0,8884),(6763,0,1970,NULL,2,0,8885),(6764,0,1970,NULL,1,0,8886),(6765,0,1971,NULL,3,0,8887),(6766,0,1971,NULL,4,0,8888),(6767,0,1971,NULL,2,0,8889),(6768,0,1971,NULL,1,0,8890),(6773,0,1973,NULL,1,0,8895),(6774,0,1973,NULL,3,0,8896),(6775,0,1973,NULL,4,0,8897),(6776,0,1973,NULL,2,0,8898),(6777,0,1974,NULL,3,0,8899),(6778,0,1974,NULL,2,0,8900),(6779,0,1974,NULL,4,0,8901),(6780,0,1974,NULL,1,0,8902),(6781,0,1975,NULL,2,0,8903),(6782,0,1975,NULL,1,0,8904),(6783,0,1975,NULL,3,0,8905),(6784,0,1975,NULL,4,0,8906),(6785,0,1976,NULL,1,0,8907),(6786,0,1976,NULL,3,0,8908),(6787,0,1976,NULL,4,0,8909),(6788,0,1976,NULL,2,0,8910),(6789,0,1977,NULL,3,0,8911),(6790,0,1977,NULL,2,0,8912),(6791,0,1977,NULL,4,0,8913),(6792,0,1977,NULL,1,0,8914),(6793,0,1978,NULL,2,0,8915),(6794,0,1978,NULL,1,0,8916),(6795,0,1978,NULL,3,0,8917),(6796,0,1978,NULL,4,0,8918),(6797,0,1979,NULL,1,0,8919),(6798,0,1979,NULL,3,0,8920),(6799,0,1979,NULL,4,0,8921),(6800,0,1979,NULL,2,0,8922),(6801,0,1980,NULL,3,0,8923),(6802,0,1980,NULL,2,0,8924),(6803,0,1980,NULL,4,0,8925),(6804,0,1980,NULL,1,0,8926),(6805,0,1981,NULL,2,0,8927),(6806,0,1981,NULL,1,0,8928),(6807,0,1981,NULL,3,0,8929),(6808,0,1981,NULL,4,0,8930),(6809,0,1982,NULL,1,0,8931),(6810,0,1982,NULL,3,0,8932),(6811,0,1982,NULL,4,0,8933),(6812,0,1982,NULL,2,0,8934),(6813,0,1983,NULL,3,0,8935),(6814,0,1983,NULL,2,0,8936),(6815,0,1983,NULL,4,0,8937),(6816,0,1983,NULL,1,0,8938),(6817,0,1984,NULL,2,0,8939),(6818,0,1984,NULL,1,0,8940),(6819,0,1984,NULL,3,0,8941),(6820,0,1984,NULL,4,0,8942),(6821,0,1985,NULL,1,0,8943),(6822,0,1985,NULL,3,0,8944),(6823,0,1985,NULL,4,0,8945),(6824,0,1985,NULL,2,0,8946),(6825,0,1986,NULL,3,0,8947),(6826,0,1986,NULL,2,0,8948),(6827,0,1986,NULL,4,0,8949),(6828,0,1986,NULL,1,0,8950),(6829,0,1987,NULL,2,0,8951),(6830,0,1987,NULL,1,0,8952),(6831,0,1987,NULL,3,0,8953),(6832,0,1987,NULL,4,0,8954),(6833,0,1988,NULL,1,0,8955),(6834,0,1988,NULL,3,0,8956),(6835,0,1988,NULL,4,0,8957),(6836,0,1988,NULL,2,0,8958),(6837,0,1989,NULL,3,0,8959),(6838,0,1989,NULL,2,0,8960),(6839,0,1989,NULL,4,0,8961),(6840,0,1989,NULL,1,0,8962),(6841,0,1990,NULL,2,0,8963),(6842,0,1990,NULL,1,0,8964),(6843,0,1990,NULL,3,0,8965),(6844,0,1990,NULL,4,0,8966),(4396,0,523,NULL,1,0,8971),(4397,0,523,NULL,2,0,8972),(4398,0,523,NULL,3,0,8973),(4475,0,545,NULL,1,0,8974),(4476,0,545,NULL,2,0,8975),(4477,0,545,NULL,3,0,8976),(4478,0,545,NULL,4,0,8977),(159,0,44,NULL,4,0,8978),(160,0,44,NULL,5,0,8979),(161,0,44,NULL,6,0,8980),(162,0,44,NULL,7,0,8981),(6849,0,1992,NULL,7,0,8982),(6850,0,1992,NULL,8,0,8983),(6851,0,1992,NULL,9,0,8984),(6852,0,1993,NULL,7,0,8985),(6853,0,1993,NULL,8,0,8986),(6854,0,1993,NULL,9,0,8987),(6855,0,1994,NULL,4,0,8988),(6856,0,1994,NULL,5,0,8989),(6857,0,1994,NULL,6,0,8990),(6858,0,1995,NULL,4,0,8991),(6859,0,1995,NULL,5,0,8992),(6860,0,1995,NULL,6,0,8993),(6864,0,1997,NULL,4,0,8997),(6865,0,1997,NULL,1,0,8998),(6866,0,1997,NULL,2,0,8999),(6867,0,1997,NULL,3,0,9000),(6868,0,1998,NULL,4,0,9001),(6869,0,1998,NULL,1,0,9002),(6870,0,1998,NULL,2,0,9003),(6871,0,1998,NULL,3,0,9004),(6872,0,1999,NULL,1,0,9005),(6873,0,1999,NULL,3,0,9006),(6874,0,1999,NULL,4,0,9007),(6875,0,1999,NULL,2,0,9008),(6876,0,2000,NULL,1,0,9009),(6877,0,2000,NULL,3,0,9010),(6878,0,2000,NULL,4,0,9011),(6879,0,2000,NULL,2,0,9012),(6884,0,2002,NULL,1,0,9021),(6885,0,2002,NULL,2,0,9022),(6886,0,2002,NULL,3,0,9023),(6887,0,2002,NULL,4,0,9024),(6888,0,2003,NULL,1,0,9025),(6889,0,2003,NULL,2,0,9026),(6890,0,2003,NULL,3,0,9027),(6891,0,2003,NULL,4,0,9028),(6892,0,2004,NULL,1,0,9029),(6893,0,2004,NULL,2,0,9030),(6894,0,2004,NULL,3,0,9031),(6895,0,2004,NULL,4,0,9032),(6896,0,2005,NULL,1,0,9033),(6897,0,2005,NULL,2,0,9034),(6898,0,2005,NULL,3,0,9035),(6899,0,2005,NULL,4,0,9036),(6900,0,2006,NULL,1,0,9037),(6901,0,2006,NULL,2,0,9038),(6902,0,2006,NULL,3,0,9039),(6903,0,2006,NULL,4,0,9040),(6904,0,2007,NULL,1,0,9041),(6905,0,2007,NULL,2,0,9042),(6906,0,2007,NULL,3,0,9043),(6907,0,2007,NULL,4,0,9044),(6908,0,2008,NULL,1,0,9045),(6909,0,2008,NULL,2,0,9046),(6910,0,2008,NULL,3,0,9047),(6911,0,2008,NULL,4,0,9048),(6912,0,2009,NULL,1,0,9049),(6913,0,2009,NULL,2,0,9050),(6914,0,2009,NULL,3,0,9051),(6915,0,2009,NULL,4,0,9052),(614,0,116,NULL,0,0,9057),(615,0,116,NULL,1,0,9058),(616,0,116,NULL,2,0,9059),(6920,0,2011,NULL,5,0,9060),(6921,0,2011,NULL,6,0,9061),(6922,0,2011,NULL,7,0,9062),(6923,0,2011,NULL,8,0,9063),(6924,0,2012,NULL,5,0,9064),(6925,0,2012,NULL,6,0,9065),(6926,0,2012,NULL,7,0,9066),(6927,0,2012,NULL,8,0,9067),(6928,0,2013,NULL,5,0,9068),(6929,0,2013,NULL,6,0,9069),(6930,0,2013,NULL,7,0,9070),(6931,0,2013,NULL,8,0,9071),(6932,0,2014,NULL,5,0,9072),(6933,0,2014,NULL,6,0,9073),(6934,0,2014,NULL,7,0,9074),(6935,0,2014,NULL,8,0,9075),(6936,0,2015,NULL,5,0,9076),(6937,0,2015,NULL,6,0,9077),(6938,0,2015,NULL,7,0,9078),(6939,0,2015,NULL,8,0,9079),(6940,0,2016,NULL,5,0,9080),(6941,0,2016,NULL,6,0,9081),(6942,0,2016,NULL,7,0,9082),(6943,0,2016,NULL,8,0,9083),(6944,0,2018,NULL,2,0,9084),(6945,0,2018,NULL,1,0,9085),(6946,0,2018,NULL,3,0,9086),(6947,0,2019,NULL,3,0,9087),(6948,0,2019,NULL,1,0,9088),(6949,0,2019,NULL,2,0,9089),(6953,0,2021,NULL,5,0,9093),(6954,0,2021,NULL,6,0,9094),(6955,0,2021,NULL,7,0,9095),(6956,0,2021,NULL,8,0,9096),(6957,0,2022,NULL,5,0,9097),(6958,0,2022,NULL,6,0,9098),(6959,0,2022,NULL,7,0,9099),(6960,0,2022,NULL,8,0,9100),(6961,0,2023,NULL,5,0,9101),(6962,0,2023,NULL,6,0,9102),(6963,0,2023,NULL,7,0,9103),(6964,0,2023,NULL,8,0,9104),(6965,0,2024,NULL,5,0,9105),(6966,0,2024,NULL,6,0,9106),(6967,0,2024,NULL,7,0,9107),(6968,0,2024,NULL,8,0,9108),(6969,0,2025,NULL,9,0,9109),(6970,0,2025,NULL,10,0,9110),(6971,0,2025,NULL,11,0,9111),(6972,0,2025,NULL,12,0,9112),(6973,0,2026,NULL,9,0,9113),(6974,0,2026,NULL,10,0,9114),(6975,0,2026,NULL,11,0,9115),(6976,0,2026,NULL,12,0,9116),(6977,0,2027,NULL,9,0,9117),(6978,0,2027,NULL,10,0,9118),(6979,0,2027,NULL,11,0,9119),(6980,0,2027,NULL,12,0,9120),(6981,0,2028,NULL,9,0,9121),(6982,0,2028,NULL,10,0,9122),(6983,0,2028,NULL,11,0,9123),(6984,0,2028,NULL,12,0,9124),(6989,0,2030,NULL,3,0,9129),(6990,0,2030,NULL,1,0,9130),(6991,0,2030,NULL,2,0,9131),(6992,0,2031,NULL,2,0,9132),(6993,0,2031,NULL,1,0,9133),(6994,0,2031,NULL,3,0,9134),(7034,0,2042,NULL,5,0,9174),(7035,0,2042,NULL,6,0,9175),(7036,0,2042,NULL,7,0,9176),(7037,0,2042,NULL,8,0,9177),(7038,0,2043,NULL,5,0,9178),(7039,0,2043,NULL,6,0,9179),(7040,0,2043,NULL,7,0,9180),(7041,0,2043,NULL,8,0,9181),(7042,0,2044,NULL,5,0,9182),(7043,0,2044,NULL,6,0,9183),(7044,0,2044,NULL,7,0,9184),(7045,0,2044,NULL,8,0,9185),(7046,0,2045,NULL,5,0,9186),(7047,0,2045,NULL,6,0,9187),(7048,0,2045,NULL,7,0,9188),(7049,0,2045,NULL,8,0,9189),(7050,0,2046,NULL,5,0,9190),(7051,0,2046,NULL,6,0,9191),(7052,0,2046,NULL,7,0,9192),(7053,0,2046,NULL,8,0,9193),(7054,0,2047,NULL,5,0,9194),(7055,0,2047,NULL,6,0,9195),(7056,0,2047,NULL,7,0,9196),(7057,0,2047,NULL,8,0,9197),(7058,0,2048,NULL,5,0,9198),(7059,0,2048,NULL,6,0,9199),(7060,0,2048,NULL,7,0,9200),(7061,0,2048,NULL,8,0,9201),(7062,0,2049,NULL,5,0,9202),(7063,0,2049,NULL,6,0,9203),(7064,0,2049,NULL,7,0,9204),(7065,0,2049,NULL,8,0,9205),(7070,0,2051,NULL,4,0,9210),(7071,0,2051,NULL,1,0,9211),(7072,0,2051,NULL,3,0,9212),(7073,0,2051,NULL,2,0,9213),(7074,0,2052,NULL,4,0,9214),(7075,0,2052,NULL,1,0,9215),(7076,0,2052,NULL,3,0,9216),(7077,0,2052,NULL,2,0,9217),(7078,0,2053,NULL,3,0,9218),(7079,0,2053,NULL,2,0,9219),(7080,0,2053,NULL,1,0,9220),(7081,0,2053,NULL,4,0,9221),(7082,0,2054,NULL,3,0,9222),(7083,0,2054,NULL,2,0,9223),(7084,0,2054,NULL,1,0,9224),(7085,0,2054,NULL,4,0,9225),(7090,0,2056,NULL,3,0,9230),(7091,0,2056,NULL,4,0,9231),(7092,0,2057,NULL,5,0,9232),(7093,0,2057,NULL,6,0,9233),(7094,0,2058,NULL,3,0,9234),(7095,0,2058,NULL,4,0,9235),(7096,0,2059,NULL,5,0,9236),(7097,0,2059,NULL,6,0,9237),(7100,0,2061,NULL,5,0,9240),(7101,0,2061,NULL,6,0,9241),(7102,0,2061,NULL,7,0,9242),(7103,0,2061,NULL,8,0,9243),(7104,0,2062,NULL,5,0,9244),(7105,0,2062,NULL,6,0,9245),(7106,0,2062,NULL,7,0,9246),(7107,0,2062,NULL,8,0,9247),(7108,0,2063,NULL,9,0,9248),(7109,0,2063,NULL,10,0,9249),(7110,0,2063,NULL,11,0,9250),(7111,0,2063,NULL,12,0,9251),(7112,0,2064,NULL,9,0,9252),(7113,0,2064,NULL,10,0,9253),(7114,0,2064,NULL,11,0,9254),(7115,0,2064,NULL,12,0,9255),(7120,0,2066,NULL,4,0,9260),(7121,0,2066,NULL,5,0,9261),(7122,0,2066,NULL,6,0,9262),(7123,0,2067,NULL,4,0,9263),(7124,0,2067,NULL,5,0,9264),(7125,0,2067,NULL,6,0,9265),(7126,0,2068,NULL,4,0,9266),(7127,0,2068,NULL,5,0,9267),(7128,0,2068,NULL,6,0,9268),(7129,0,2069,NULL,7,0,9269),(7130,0,2069,NULL,8,0,9270),(7131,0,2069,NULL,9,0,9271),(7132,0,2070,NULL,7,0,9272),(7133,0,2070,NULL,8,0,9273),(7134,0,2070,NULL,9,0,9274),(7135,0,2071,NULL,7,0,9275),(7136,0,2071,NULL,8,0,9276),(7137,0,2071,NULL,9,0,9277),(7141,0,2073,NULL,1,0,9281),(7142,0,2073,NULL,2,0,9282),(7143,0,2073,NULL,3,0,9283),(7144,0,2073,NULL,4,0,9284),(7145,0,2074,NULL,1,0,9285),(7146,0,2074,NULL,2,0,9286),(7147,0,2074,NULL,3,0,9287),(7148,0,2074,NULL,4,0,9288),(7149,0,2075,NULL,3,0,9289),(7150,0,2075,NULL,2,0,9290),(7151,0,2075,NULL,4,0,9291),(7152,0,2075,NULL,1,0,9292),(7153,0,2076,NULL,3,0,9293),(7154,0,2076,NULL,2,0,9294),(7155,0,2076,NULL,4,0,9295),(7156,0,2076,NULL,1,0,9296),(7161,0,2078,NULL,5,0,9301),(7162,0,2078,NULL,6,0,9302),(7163,0,2078,NULL,7,0,9303),(7164,0,2078,NULL,8,0,9304),(7165,0,2079,NULL,5,0,9305),(7166,0,2079,NULL,6,0,9306),(7167,0,2079,NULL,7,0,9307),(7168,0,2079,NULL,8,0,9308),(7169,0,2080,NULL,5,0,9309),(7170,0,2080,NULL,6,0,9310),(7171,0,2080,NULL,7,0,9311),(7172,0,2080,NULL,8,0,9312),(7173,0,2081,NULL,9,0,9313),(7174,0,2081,NULL,10,0,9314),(7175,0,2081,NULL,11,0,9315),(7176,0,2081,NULL,12,0,9316),(7177,0,2082,NULL,9,0,9317),(7178,0,2082,NULL,10,0,9318),(7179,0,2082,NULL,11,0,9319),(7180,0,2082,NULL,12,0,9320),(7181,0,2083,NULL,9,0,9321),(7182,0,2083,NULL,10,0,9322),(7183,0,2083,NULL,11,0,9323),(7184,0,2083,NULL,12,0,9324),(7189,0,2085,NULL,1,0,9329),(7190,0,2085,NULL,3,0,9330),(7191,0,2085,NULL,4,0,9331),(7192,0,2085,NULL,2,0,9332),(7193,0,2086,NULL,1,0,9333),(7194,0,2086,NULL,3,0,9334),(7195,0,2086,NULL,4,0,9335),(7196,0,2086,NULL,2,0,9336),(7197,0,2087,NULL,1,0,9337),(7198,0,2087,NULL,4,0,9338),(7199,0,2087,NULL,2,0,9339),(7200,0,2087,NULL,3,0,9340),(7201,0,2088,NULL,1,0,9341),(7202,0,2088,NULL,4,0,9342),(7203,0,2088,NULL,2,0,9343),(7204,0,2088,NULL,3,0,9344),(7209,0,2090,NULL,5,0,9349),(7210,0,2090,NULL,6,0,9350),(7211,0,2090,NULL,7,0,9351),(7212,0,2090,NULL,8,0,9352),(7213,0,2091,NULL,5,0,9353),(7214,0,2091,NULL,6,0,9354),(7215,0,2091,NULL,7,0,9355),(7216,0,2091,NULL,8,0,9356),(7217,0,2092,NULL,5,0,9357),(7218,0,2092,NULL,6,0,9358),(7219,0,2092,NULL,7,0,9359),(7220,0,2092,NULL,8,0,9360),(7221,0,2093,NULL,5,0,9361),(7222,0,2093,NULL,6,0,9362),(7223,0,2093,NULL,7,0,9363),(7224,0,2093,NULL,8,0,9364),(7225,0,2094,NULL,9,0,9365),(7226,0,2094,NULL,10,0,9366),(7227,0,2094,NULL,11,0,9367),(7228,0,2094,NULL,12,0,9368),(7229,0,2095,NULL,9,0,9369),(7230,0,2095,NULL,10,0,9370),(7231,0,2095,NULL,11,0,9371),(7232,0,2095,NULL,12,0,9372),(7233,0,2096,NULL,9,0,9373),(7234,0,2096,NULL,10,0,9374),(7235,0,2096,NULL,11,0,9375),(7236,0,2096,NULL,12,0,9376),(7237,0,2097,NULL,9,0,9377),(7238,0,2097,NULL,10,0,9378),(7239,0,2097,NULL,11,0,9379),(7240,0,2097,NULL,12,0,9380),(7245,0,2099,NULL,4,0,9385),(7246,0,2099,NULL,1,0,9386),(7247,0,2099,NULL,3,0,9387),(7248,0,2099,NULL,2,0,9388),(7249,0,2100,NULL,4,0,9389),(7250,0,2100,NULL,1,0,9390),(7251,0,2100,NULL,3,0,9391),(7252,0,2100,NULL,2,0,9392),(7253,0,2101,NULL,4,0,9393),(7254,0,2101,NULL,1,0,9394),(7255,0,2101,NULL,3,0,9395),(7256,0,2101,NULL,2,0,9396),(7257,0,2102,NULL,1,0,9397),(7258,0,2102,NULL,2,0,9398),(7259,0,2102,NULL,3,0,9399),(7260,0,2102,NULL,4,0,9400),(7261,0,2103,NULL,1,0,9401),(7262,0,2103,NULL,2,0,9402),(7263,0,2103,NULL,3,0,9403),(7264,0,2103,NULL,4,0,9404),(7265,0,2104,NULL,1,0,9405),(7266,0,2104,NULL,2,0,9406),(7267,0,2104,NULL,3,0,9407),(7268,0,2104,NULL,4,0,9408),(7273,0,2106,NULL,5,0,9413),(7274,0,2106,NULL,6,0,9414),(7275,0,2106,NULL,7,0,9415),(7276,0,2106,NULL,8,0,9416),(7277,0,2107,NULL,5,0,9417),(7278,0,2107,NULL,6,0,9418),(7279,0,2107,NULL,7,0,9419),(7280,0,2107,NULL,8,0,9420),(7281,0,2108,NULL,5,0,9421),(7282,0,2108,NULL,6,0,9422),(7283,0,2108,NULL,7,0,9423),(7284,0,2108,NULL,8,0,9424),(7285,0,2109,NULL,5,0,9425),(7286,0,2109,NULL,6,0,9426),(7287,0,2109,NULL,7,0,9427),(7288,0,2109,NULL,8,0,9428),(7289,0,2110,NULL,5,0,9429),(7290,0,2110,NULL,6,0,9430),(7291,0,2110,NULL,7,0,9431),(7292,0,2110,NULL,8,0,9432),(7293,0,2111,NULL,1,0,9433),(7294,0,2111,NULL,2,0,9434),(7295,0,2111,NULL,3,0,9435),(7296,0,2111,NULL,4,0,9436),(7297,0,2112,NULL,1,0,9437),(7298,0,2112,NULL,2,0,9438),(7299,0,2112,NULL,3,0,9439),(7300,0,2112,NULL,4,0,9440),(7301,0,2113,NULL,1,0,9441),(7302,0,2113,NULL,2,0,9442),(7303,0,2113,NULL,3,0,9443),(7304,0,2113,NULL,4,0,9444),(7305,0,2114,NULL,1,0,9445),(7306,0,2114,NULL,2,0,9446),(7307,0,2114,NULL,3,0,9447),(7308,0,2114,NULL,4,0,9448),(7309,0,2115,NULL,1,0,9449),(7310,0,2115,NULL,2,0,9450),(7311,0,2115,NULL,3,0,9451),(7312,0,2115,NULL,4,0,9452),(7317,0,2117,NULL,1,0,9457),(7318,0,2117,NULL,2,0,9458),(7319,0,2117,NULL,3,0,9459),(7320,0,2117,NULL,4,0,9460),(7321,0,2118,NULL,1,0,9461),(7322,0,2118,NULL,2,0,9462),(7323,0,2118,NULL,3,0,9463),(7324,0,2118,NULL,4,0,9464),(7325,0,2119,NULL,1,0,9465),(7326,0,2119,NULL,2,0,9466),(7327,0,2119,NULL,3,0,9467),(7328,0,2119,NULL,4,0,9468),(7329,0,2120,NULL,9,0,9469),(7330,0,2120,NULL,10,0,9470),(7331,0,2120,NULL,11,0,9471),(7332,0,2120,NULL,12,0,9472),(7333,0,2121,NULL,9,0,9473),(7334,0,2121,NULL,10,0,9474),(7335,0,2121,NULL,11,0,9475),(7336,0,2121,NULL,12,0,9476),(7337,0,2122,NULL,9,0,9477),(7338,0,2122,NULL,10,0,9478),(7339,0,2122,NULL,11,0,9479),(7340,0,2122,NULL,12,0,9480),(7345,0,2124,NULL,5,0,9485),(7346,0,2124,NULL,6,0,9486),(7347,0,2124,NULL,7,0,9487),(7348,0,2124,NULL,8,0,9488),(7349,0,2125,NULL,5,0,9489),(7350,0,2125,NULL,6,0,9490),(7351,0,2125,NULL,7,0,9491),(7352,0,2125,NULL,8,0,9492),(7353,0,2126,NULL,5,0,9493),(7354,0,2126,NULL,6,0,9494),(7355,0,2126,NULL,7,0,9495),(7356,0,2126,NULL,8,0,9496),(7357,0,2127,NULL,5,0,9497),(7358,0,2127,NULL,6,0,9498),(7359,0,2127,NULL,7,0,9499),(7360,0,2127,NULL,8,0,9500),(7361,0,2128,NULL,9,0,9501),(7362,0,2128,NULL,10,0,9502),(7363,0,2128,NULL,11,0,9503),(7364,0,2128,NULL,12,0,9504),(7365,0,2129,NULL,9,0,9505),(7366,0,2129,NULL,10,0,9506),(7367,0,2129,NULL,11,0,9507),(7368,0,2129,NULL,12,0,9508),(7369,0,2130,NULL,9,0,9509),(7370,0,2130,NULL,10,0,9510),(7371,0,2130,NULL,11,0,9511),(7372,0,2130,NULL,12,0,9512),(7373,0,2131,NULL,9,0,9513),(7374,0,2131,NULL,10,0,9514),(7375,0,2131,NULL,11,0,9515),(7376,0,2131,NULL,12,0,9516),(7381,0,2133,NULL,3,0,9521),(7382,0,2133,NULL,1,0,9522),(7383,0,2133,NULL,2,0,9523),(7384,0,2134,NULL,2,0,9524),(7385,0,2134,NULL,3,0,9525),(7386,0,2134,NULL,1,0,9526),(7390,0,2136,NULL,3,0,9530),(7391,0,2136,NULL,1,0,9531),(7392,0,2136,NULL,2,0,9532),(7393,0,2137,NULL,1,0,9533),(7394,0,2137,NULL,3,0,9534),(7395,0,2137,NULL,2,0,9535),(7399,0,2139,NULL,5,0,9539),(7400,0,2139,NULL,6,0,9540),(7401,0,2139,NULL,7,0,9541),(7402,0,2139,NULL,8,0,9542),(7403,0,2140,NULL,5,0,9543),(7404,0,2140,NULL,6,0,9544),(7405,0,2140,NULL,7,0,9545),(7406,0,2140,NULL,8,0,9546),(7407,0,2141,NULL,5,0,9547),(7408,0,2141,NULL,6,0,9548),(7409,0,2141,NULL,7,0,9549),(7410,0,2141,NULL,8,0,9550),(7411,0,2142,NULL,9,0,9551),(7412,0,2142,NULL,10,0,9552),(7413,0,2142,NULL,11,0,9553),(7414,0,2142,NULL,12,0,9554),(7415,0,2143,NULL,9,0,9555),(7416,0,2143,NULL,10,0,9556),(7417,0,2143,NULL,11,0,9557),(7418,0,2143,NULL,12,0,9558),(7419,0,2144,NULL,9,0,9559),(7420,0,2144,NULL,10,0,9560),(7421,0,2144,NULL,11,0,9561),(7422,0,2144,NULL,12,0,9562),(7427,0,2146,NULL,2,0,9567),(7428,0,2146,NULL,1,0,9568),(7429,0,2146,NULL,4,0,9569),(7430,0,2146,NULL,3,0,9570),(7431,0,2147,NULL,4,0,9571),(7432,0,2147,NULL,2,0,9572),(7433,0,2147,NULL,3,0,9573),(7434,0,2147,NULL,1,0,9574),(7435,0,2148,NULL,9,0,9575),(7436,0,2148,NULL,10,0,9576),(7437,0,2148,NULL,11,0,9577),(7438,0,2148,NULL,12,0,9578),(7444,0,2150,NULL,9,0,9584),(7445,0,2150,NULL,10,0,9585),(7446,0,2150,NULL,11,0,9586),(7447,0,2150,NULL,12,0,9587),(7448,0,2151,NULL,9,0,9588),(7449,0,2151,NULL,10,0,9589),(7450,0,2151,NULL,11,0,9590),(7451,0,2151,NULL,12,0,9591),(7452,0,2152,NULL,9,0,9592),(7453,0,2152,NULL,10,0,9593),(7454,0,2152,NULL,11,0,9594),(7455,0,2152,NULL,12,0,9595),(7456,0,2153,NULL,9,0,9596),(7457,0,2153,NULL,10,0,9597),(7458,0,2153,NULL,11,0,9598),(7459,0,2153,NULL,12,0,9599),(7460,0,2154,NULL,9,0,9600),(7461,0,2154,NULL,10,0,9601),(7462,0,2154,NULL,11,0,9602),(7463,0,2154,NULL,12,0,9603),(7464,0,2155,NULL,9,0,9604),(7465,0,2155,NULL,10,0,9605),(7466,0,2155,NULL,11,0,9606),(7467,0,2155,NULL,12,0,9607),(7468,0,2156,NULL,9,0,9608),(7469,0,2156,NULL,10,0,9609),(7470,0,2156,NULL,11,0,9610),(7471,0,2156,NULL,12,0,9611),(7476,0,2158,NULL,4,0,9616),(7477,0,2158,NULL,5,0,9617),(7478,0,2158,NULL,6,0,9618),(7479,0,2159,NULL,4,0,9619),(7480,0,2159,NULL,5,0,9620),(7481,0,2159,NULL,6,0,9621),(7482,0,2160,NULL,4,0,9622),(7483,0,2160,NULL,5,0,9623),(7484,0,2160,NULL,6,0,9624),(7485,0,2161,NULL,4,0,9625),(7486,0,2161,NULL,5,0,9626),(7487,0,2161,NULL,6,0,9627),(7488,0,2162,NULL,4,0,9628),(7489,0,2162,NULL,5,0,9629),(7490,0,2162,NULL,6,0,9630),(7491,0,2163,NULL,4,0,9631),(7492,0,2163,NULL,5,0,9632),(7493,0,2163,NULL,6,0,9633),(7494,0,2164,NULL,4,0,9634),(7495,0,2164,NULL,5,0,9635),(7496,0,2164,NULL,6,0,9636),(7497,0,2165,NULL,4,0,9637),(7498,0,2165,NULL,5,0,9638),(7499,0,2165,NULL,6,0,9639),(7500,0,2166,NULL,4,0,9640),(7501,0,2166,NULL,5,0,9641),(7502,0,2166,NULL,6,0,9642),(7503,0,2167,NULL,4,0,9643),(7504,0,2167,NULL,5,0,9644),(7505,0,2167,NULL,6,0,9645),(7509,0,2169,NULL,4,0,9649),(7510,0,2169,NULL,3,0,9650),(7511,0,2169,NULL,2,0,9651),(7512,0,2169,NULL,1,0,9652),(7513,0,2170,NULL,4,0,9653),(7514,0,2170,NULL,1,0,9654),(7515,0,2170,NULL,2,0,9655),(7516,0,2170,NULL,3,0,9656),(7524,0,2172,NULL,4,0,9664),(7525,0,2172,NULL,5,0,9665),(7526,0,2172,NULL,6,0,9666),(7527,0,2173,NULL,4,0,9667),(7528,0,2173,NULL,5,0,9668),(7529,0,2173,NULL,6,0,9669),(7530,0,2174,NULL,4,0,9670),(7531,0,2174,NULL,5,0,9671),(7532,0,2174,NULL,6,0,9672),(7533,0,2175,NULL,7,0,9673),(7534,0,2175,NULL,8,0,9674),(7535,0,2175,NULL,9,0,9675),(7536,0,2176,NULL,7,0,9676),(7537,0,2176,NULL,8,0,9677),(7538,0,2176,NULL,9,0,9678),(7539,0,2177,NULL,7,0,9679),(7540,0,2177,NULL,8,0,9680),(7541,0,2177,NULL,9,0,9681),(7545,0,2179,NULL,4,0,9685),(7546,0,2179,NULL,5,0,9686),(7547,0,2179,NULL,6,0,9687),(7548,0,2180,NULL,4,0,9688),(7549,0,2180,NULL,5,0,9689),(7550,0,2180,NULL,6,0,9690),(7551,0,2181,NULL,4,0,9691),(7552,0,2181,NULL,5,0,9692),(7553,0,2181,NULL,6,0,9693),(7554,0,2182,NULL,4,0,9694),(7555,0,2182,NULL,5,0,9695),(7556,0,2182,NULL,6,0,9696),(7557,0,2183,NULL,4,0,9697),(7558,0,2183,NULL,5,0,9698),(7559,0,2183,NULL,6,0,9699),(7560,0,2184,NULL,4,0,9700),(7561,0,2184,NULL,5,0,9701),(7562,0,2184,NULL,6,0,9702),(7566,0,2186,NULL,1,0,9706),(7567,0,2186,NULL,4,0,9707),(7568,0,2186,NULL,2,0,9708),(7569,0,2186,NULL,3,0,9709),(7570,0,2187,NULL,1,0,9710),(7571,0,2187,NULL,4,0,9711),(7572,0,2187,NULL,2,0,9712),(7573,0,2187,NULL,3,0,9713),(7574,0,2188,NULL,2,0,9714),(7575,0,2188,NULL,1,0,9715),(7576,0,2188,NULL,4,0,9716),(7577,0,2188,NULL,3,0,9717),(7578,0,2189,NULL,2,0,9718),(7579,0,2189,NULL,1,0,9719),(7580,0,2189,NULL,4,0,9720),(7581,0,2189,NULL,3,0,9721),(7586,0,2191,NULL,9,0,9726),(7587,0,2191,NULL,10,0,9727),(7588,0,2191,NULL,11,0,9728),(7589,0,2191,NULL,12,0,9729),(7590,0,2192,NULL,9,0,9730),(7591,0,2192,NULL,10,0,9731),(7592,0,2192,NULL,11,0,9732),(7593,0,2192,NULL,12,0,9733),(7594,0,2193,NULL,9,0,9734),(7595,0,2193,NULL,10,0,9735),(7596,0,2193,NULL,11,0,9736),(7597,0,2193,NULL,12,0,9737),(7598,0,2194,NULL,9,0,9738),(7599,0,2194,NULL,10,0,9739),(7600,0,2194,NULL,11,0,9740),(7601,0,2194,NULL,12,0,9741),(7602,0,2195,NULL,9,0,9742),(7603,0,2195,NULL,10,0,9743),(7604,0,2195,NULL,11,0,9744),(7605,0,2195,NULL,12,0,9745),(7606,0,2196,NULL,9,0,9746),(7607,0,2196,NULL,10,0,9747),(7608,0,2196,NULL,11,0,9748),(7609,0,2196,NULL,12,0,9749),(7614,0,2198,NULL,5,0,9754),(7615,0,2198,NULL,6,0,9755),(7616,0,2198,NULL,7,0,9756),(7617,0,2198,NULL,8,0,9757),(7618,0,2199,NULL,5,0,9758),(7619,0,2199,NULL,6,0,9759),(7620,0,2199,NULL,7,0,9760),(7621,0,2199,NULL,8,0,9761),(7622,0,2200,NULL,5,0,9762),(7623,0,2200,NULL,6,0,9763),(7624,0,2200,NULL,7,0,9764),(7625,0,2200,NULL,8,0,9765),(7626,0,2201,NULL,9,0,9766),(7627,0,2201,NULL,10,0,9767),(7628,0,2201,NULL,11,0,9768),(7629,0,2201,NULL,12,0,9769),(7630,0,2202,NULL,9,0,9770),(7631,0,2202,NULL,10,0,9771),(7632,0,2202,NULL,11,0,9772),(7633,0,2202,NULL,12,0,9773),(7634,0,2203,NULL,9,0,9774),(7635,0,2203,NULL,10,0,9775),(7636,0,2203,NULL,11,0,9776),(7637,0,2203,NULL,12,0,9777),(7642,0,2205,NULL,1,0,9794),(7643,0,2205,NULL,2,0,9795),(7644,0,2205,NULL,3,0,9796),(7645,0,2205,NULL,4,0,9797),(7646,0,2206,NULL,1,0,9798),(7647,0,2206,NULL,4,0,9799),(7648,0,2206,NULL,3,0,9800),(7649,0,2206,NULL,2,0,9801),(7656,0,2208,NULL,1,0,9820),(7657,0,2208,NULL,4,0,9821),(7658,0,2208,NULL,3,0,9822),(7659,0,2208,NULL,2,0,9823),(7660,0,2209,NULL,1,0,9824),(7661,0,2209,NULL,4,0,9825),(7662,0,2209,NULL,3,0,9826),(7663,0,2209,NULL,2,0,9827),(7664,0,2210,NULL,2,0,9828),(7665,0,2210,NULL,1,0,9829),(7666,0,2210,NULL,3,0,9830),(7667,0,2210,NULL,4,0,9831),(7668,0,2211,NULL,2,0,9832),(7669,0,2211,NULL,1,0,9833),(7670,0,2211,NULL,3,0,9834),(7671,0,2211,NULL,4,0,9835),(7676,0,2213,NULL,9,0,9840),(7677,0,2213,NULL,10,0,9841),(7678,0,2213,NULL,11,0,9842),(7679,0,2213,NULL,12,0,9843),(7680,0,2214,NULL,9,0,9844),(7681,0,2214,NULL,10,0,9845),(7682,0,2214,NULL,11,0,9846),(7683,0,2214,NULL,12,0,9847),(7684,0,2215,NULL,9,0,9848),(7685,0,2215,NULL,10,0,9849),(7686,0,2215,NULL,11,0,9850),(7687,0,2215,NULL,12,0,9851),(7688,0,2216,NULL,5,0,9855),(7689,0,2216,NULL,6,0,9856),(7690,0,2216,NULL,7,0,9857),(7691,0,2216,NULL,8,0,9858),(7692,0,2217,NULL,5,0,9859),(7693,0,2217,NULL,6,0,9860),(7694,0,2217,NULL,7,0,9861),(7695,0,2217,NULL,8,0,9862),(7696,0,2218,NULL,5,0,9863),(7697,0,2218,NULL,6,0,9864),(7698,0,2218,NULL,7,0,9865),(7699,0,2218,NULL,8,0,9866),(7704,0,2220,NULL,4,0,9875),(7705,0,2220,NULL,3,0,9876),(7706,0,2220,NULL,2,0,9877),(7707,0,2220,NULL,1,0,9878),(7708,0,2221,NULL,3,0,9879),(7709,0,2221,NULL,4,0,9880),(7710,0,2221,NULL,1,0,9881),(7711,0,2221,NULL,2,0,9882),(7718,0,2223,NULL,5,0,9896),(7719,0,2223,NULL,6,0,9897),(7720,0,2223,NULL,7,0,9898),(7721,0,2223,NULL,8,0,9899),(7722,0,2224,NULL,9,0,9900),(7723,0,2224,NULL,10,0,9901),(7724,0,2224,NULL,11,0,9902),(7725,0,2224,NULL,12,0,9903),(7726,0,2225,NULL,5,0,9904),(7727,0,2225,NULL,6,0,9905),(7728,0,2225,NULL,7,0,9906),(7729,0,2225,NULL,8,0,9907),(7730,0,2226,NULL,9,0,9908),(7731,0,2226,NULL,10,0,9909),(7732,0,2226,NULL,11,0,9910),(7733,0,2226,NULL,12,0,9911),(7734,0,2227,NULL,5,0,9912),(7735,0,2227,NULL,6,0,9913),(7736,0,2227,NULL,7,0,9914),(7737,0,2227,NULL,8,0,9915),(7738,0,2228,NULL,9,0,9916),(7739,0,2228,NULL,10,0,9917),(7740,0,2228,NULL,11,0,9918),(7741,0,2228,NULL,12,0,9919),(7746,0,2230,NULL,3,0,9954),(7747,0,2230,NULL,4,0,9955),(7748,0,2230,NULL,1,0,9956),(7749,0,2230,NULL,2,0,9957),(7750,0,2231,NULL,3,0,9958),(7751,0,2231,NULL,4,0,9959),(7752,0,2231,NULL,1,0,9960),(7753,0,2231,NULL,2,0,9961),(7754,0,2232,NULL,1,0,9962),(7755,0,2232,NULL,2,0,9963),(7756,0,2232,NULL,4,0,9964),(7757,0,2232,NULL,3,0,9965),(7758,0,2233,NULL,1,0,9966),(7759,0,2233,NULL,2,0,9967),(7760,0,2233,NULL,4,0,9968),(7761,0,2233,NULL,3,0,9969),(7766,0,2235,NULL,7,0,9974),(7767,0,2235,NULL,8,0,9975),(7768,0,2235,NULL,9,0,9976),(7769,0,2236,NULL,7,0,9981),(7770,0,2236,NULL,8,0,9982),(7771,0,2236,NULL,9,0,9983),(7772,0,2237,NULL,7,0,9984),(7773,0,2237,NULL,8,0,9985),(7774,0,2237,NULL,9,0,9986),(7775,0,2238,NULL,7,0,9987),(7776,0,2238,NULL,8,0,9988),(7777,0,2238,NULL,9,0,9989),(7778,0,2239,NULL,7,0,9990),(7779,0,2239,NULL,8,0,9991),(7780,0,2239,NULL,9,0,9992),(7781,0,2240,NULL,4,0,9993),(7782,0,2240,NULL,5,0,9994),(7783,0,2240,NULL,6,0,9995),(7784,0,2241,NULL,4,0,9996),(7785,0,2241,NULL,5,0,9997),(7786,0,2241,NULL,6,0,9998),(7787,0,2242,NULL,4,0,9999),(7788,0,2242,NULL,5,0,10000),(7789,0,2242,NULL,6,0,10001),(7790,0,2243,NULL,4,0,10002),(7791,0,2243,NULL,5,0,10003),(7792,0,2243,NULL,6,0,10004),(7793,0,2244,NULL,4,0,10005),(7794,0,2244,NULL,5,0,10006),(7795,0,2244,NULL,6,0,10007),(7799,0,2246,NULL,4,0,10019),(7800,0,2246,NULL,5,0,10020),(7801,0,2246,NULL,6,0,10021),(7802,0,2247,NULL,4,0,10022),(7803,0,2247,NULL,5,0,10023),(7804,0,2247,NULL,6,0,10024),(7805,0,2248,NULL,4,0,10025),(7806,0,2248,NULL,5,0,10026),(7807,0,2248,NULL,6,0,10027),(7808,0,2249,NULL,7,0,10028),(7809,0,2249,NULL,8,0,10029),(7810,0,2249,NULL,9,0,10030),(7811,0,2250,NULL,7,0,10031),(7812,0,2250,NULL,8,0,10032),(7813,0,2250,NULL,9,0,10033),(7814,0,2251,NULL,7,0,10034),(7815,0,2251,NULL,8,0,10035),(7816,0,2251,NULL,9,0,10036),(7820,0,2253,NULL,3,0,10040),(7821,0,2253,NULL,1,0,10041),(7822,0,2253,NULL,2,0,10042),(7823,0,2254,NULL,2,0,10043),(7824,0,2254,NULL,3,0,10044),(7825,0,2254,NULL,1,0,10045),(7829,0,2256,NULL,4,0,10049),(7830,0,2256,NULL,5,0,10050),(7831,0,2256,NULL,6,0,10051),(7832,0,2257,NULL,4,0,10052),(7833,0,2257,NULL,5,0,10053),(7834,0,2257,NULL,6,0,10054),(7835,0,2258,NULL,4,0,10055),(7836,0,2258,NULL,5,0,10056),(7837,0,2258,NULL,6,0,10057),(7838,0,2259,NULL,4,0,10058),(7839,0,2259,NULL,5,0,10059),(7840,0,2259,NULL,6,0,10060),(7841,0,2260,NULL,4,0,10061),(7842,0,2260,NULL,5,0,10062),(7843,0,2260,NULL,6,0,10063),(7844,0,2261,NULL,4,0,10064),(7845,0,2261,NULL,5,0,10065),(7846,0,2261,NULL,6,0,10066),(7847,0,2262,NULL,4,0,10067),(7848,0,2262,NULL,5,0,10068),(7849,0,2262,NULL,6,0,10069),(7850,0,2263,NULL,4,0,10070),(7851,0,2263,NULL,5,0,10071),(7852,0,2263,NULL,6,0,10072),(7853,0,2264,NULL,4,0,10073),(7854,0,2264,NULL,5,0,10074),(7855,0,2264,NULL,6,0,10075),(7856,0,2265,NULL,4,0,10076),(7857,0,2265,NULL,5,0,10077),(7858,0,2265,NULL,6,0,10078),(7859,0,2266,NULL,4,0,10079),(7860,0,2266,NULL,5,0,10080),(7861,0,2266,NULL,6,0,10081),(7862,0,2267,NULL,4,0,10082),(7863,0,2267,NULL,5,0,10083),(7864,0,2267,NULL,6,0,10084),(7904,0,2278,NULL,9,0,10124),(7905,0,2278,NULL,10,0,10125),(7906,0,2278,NULL,11,0,10126),(7907,0,2278,NULL,12,0,10127),(7908,0,2279,NULL,9,0,10128),(7909,0,2279,NULL,10,0,10129),(7910,0,2279,NULL,11,0,10130),(7911,0,2279,NULL,12,0,10131),(7912,0,2280,NULL,9,0,10132),(7913,0,2280,NULL,10,0,10133),(7914,0,2280,NULL,11,0,10134),(7915,0,2280,NULL,12,0,10135),(7916,0,2281,NULL,5,0,10136),(7917,0,2281,NULL,6,0,10137),(7918,0,2281,NULL,7,0,10138),(7919,0,2281,NULL,8,0,10139),(7920,0,2282,NULL,5,0,10140),(7921,0,2282,NULL,6,0,10141),(7922,0,2282,NULL,7,0,10142),(7923,0,2282,NULL,8,0,10143),(7924,0,2283,NULL,5,0,10144),(7925,0,2283,NULL,6,0,10145),(7926,0,2283,NULL,7,0,10146),(7927,0,2283,NULL,8,0,10147),(7932,0,2285,NULL,7,0,10152),(7933,0,2285,NULL,8,0,10153),(7934,0,2285,NULL,9,0,10154),(7935,0,2286,NULL,7,0,10155),(7936,0,2286,NULL,8,0,10156),(7937,0,2286,NULL,9,0,10157),(7938,0,2287,NULL,7,0,10158),(7939,0,2287,NULL,8,0,10159),(7940,0,2287,NULL,9,0,10160),(7941,0,2288,NULL,4,0,10161),(7942,0,2288,NULL,5,0,10162),(7943,0,2288,NULL,6,0,10163),(7944,0,2289,NULL,4,0,10164),(7945,0,2289,NULL,5,0,10165),(7946,0,2289,NULL,6,0,10166),(7947,0,2290,NULL,4,0,10167),(7948,0,2290,NULL,5,0,10168),(7949,0,2290,NULL,6,0,10169),(7953,0,2292,NULL,5,0,10173),(7954,0,2292,NULL,6,0,10174),(7955,0,2292,NULL,7,0,10175),(7956,0,2292,NULL,8,0,10176),(7957,0,2293,NULL,5,0,10177),(7958,0,2293,NULL,6,0,10178),(7959,0,2293,NULL,7,0,10179),(7960,0,2293,NULL,8,0,10180),(7961,0,2294,NULL,5,0,10181),(7962,0,2294,NULL,6,0,10182),(7963,0,2294,NULL,7,0,10183),(7964,0,2294,NULL,8,0,10184),(7965,0,2295,NULL,5,0,10185),(7966,0,2295,NULL,6,0,10186),(7967,0,2295,NULL,7,0,10187),(7968,0,2295,NULL,8,0,10188),(7969,0,2296,NULL,5,0,10189),(7970,0,2296,NULL,6,0,10190),(7971,0,2296,NULL,7,0,10191),(7972,0,2296,NULL,8,0,10192),(7973,0,2297,NULL,5,0,10193),(7974,0,2297,NULL,6,0,10194),(7975,0,2297,NULL,7,0,10195),(7976,0,2297,NULL,8,0,10196),(7977,0,2298,NULL,5,0,10197),(7978,0,2298,NULL,6,0,10198),(7979,0,2298,NULL,7,0,10199),(7980,0,2298,NULL,8,0,10200),(7981,0,2299,NULL,5,0,10201),(7982,0,2299,NULL,6,0,10202),(7983,0,2299,NULL,7,0,10203),(7984,0,2299,NULL,8,0,10204),(7989,0,2301,NULL,9,0,10209),(7990,0,2301,NULL,10,0,10210),(7991,0,2301,NULL,11,0,10211),(7992,0,2301,NULL,12,0,10212),(7993,0,2302,NULL,9,0,10213),(7994,0,2302,NULL,10,0,10214),(7995,0,2302,NULL,11,0,10215),(7996,0,2302,NULL,12,0,10216),(7997,0,2303,NULL,9,0,10217),(7998,0,2303,NULL,10,0,10218),(7999,0,2303,NULL,11,0,10219),(8000,0,2303,NULL,12,0,10220),(8001,0,2304,NULL,9,0,10221),(8002,0,2304,NULL,10,0,10222),(8003,0,2304,NULL,11,0,10223),(8004,0,2304,NULL,12,0,10224),(8005,0,2305,NULL,9,0,10225),(8006,0,2305,NULL,10,0,10226),(8007,0,2305,NULL,11,0,10227),(8008,0,2305,NULL,12,0,10228),(8009,0,2306,NULL,9,0,10229),(8010,0,2306,NULL,10,0,10230),(8011,0,2306,NULL,11,0,10231),(8012,0,2306,NULL,12,0,10232),(8013,0,2307,NULL,9,0,10233),(8014,0,2307,NULL,10,0,10234),(8015,0,2307,NULL,11,0,10235),(8016,0,2307,NULL,12,0,10236),(8017,0,2308,NULL,9,0,10237),(8018,0,2308,NULL,10,0,10238),(8019,0,2308,NULL,11,0,10239),(8020,0,2308,NULL,12,0,10240),(8025,0,2310,NULL,5,0,10245),(8026,0,2310,NULL,6,0,10246),(8027,0,2310,NULL,7,0,10247),(8028,0,2310,NULL,8,0,10248),(8029,0,2311,NULL,5,0,10249),(8030,0,2311,NULL,6,0,10250),(8031,0,2311,NULL,7,0,10251),(8032,0,2311,NULL,8,0,10252),(8033,0,2312,NULL,5,0,10253),(8034,0,2312,NULL,6,0,10254),(8035,0,2312,NULL,7,0,10255),(8036,0,2312,NULL,8,0,10256),(8037,0,2313,NULL,5,0,10257),(8038,0,2313,NULL,6,0,10258),(8039,0,2313,NULL,7,0,10259),(8040,0,2313,NULL,8,0,10260),(8041,0,2314,NULL,5,0,10261),(8042,0,2314,NULL,6,0,10262),(8043,0,2314,NULL,7,0,10263),(8044,0,2314,NULL,8,0,10264),(8045,0,2315,NULL,5,0,10265),(8046,0,2315,NULL,6,0,10266),(8047,0,2315,NULL,7,0,10267),(8048,0,2315,NULL,8,0,10268),(8049,0,2316,NULL,5,0,10269),(8050,0,2316,NULL,6,0,10270),(8051,0,2316,NULL,7,0,10271),(8052,0,2316,NULL,8,0,10272),(8053,0,2317,NULL,5,0,10273),(8054,0,2317,NULL,6,0,10274),(8055,0,2317,NULL,7,0,10275),(8056,0,2317,NULL,8,0,10276),(8057,0,2318,NULL,5,0,10277),(8058,0,2318,NULL,6,0,10278),(8059,0,2318,NULL,7,0,10279),(8060,0,2318,NULL,8,0,10280),(8061,0,2319,NULL,5,0,10281),(8062,0,2319,NULL,6,0,10282),(8063,0,2319,NULL,7,0,10283),(8064,0,2319,NULL,8,0,10284),(8096,0,2330,NULL,9,0,10316),(8097,0,2330,NULL,10,0,10317),(8098,0,2330,NULL,11,0,10318),(8099,0,2330,NULL,12,0,10319),(8100,0,2331,NULL,9,0,10320),(8101,0,2331,NULL,10,0,10321),(8102,0,2331,NULL,11,0,10322),(8103,0,2331,NULL,12,0,10323),(8104,0,2332,NULL,9,0,10324),(8105,0,2332,NULL,10,0,10325),(8106,0,2332,NULL,11,0,10326),(8107,0,2332,NULL,12,0,10327),(8108,0,2333,NULL,9,0,10328),(8109,0,2333,NULL,10,0,10329),(8110,0,2333,NULL,11,0,10330),(8111,0,2333,NULL,12,0,10331),(8112,0,2334,NULL,9,0,10332),(8113,0,2334,NULL,10,0,10333),(8114,0,2334,NULL,11,0,10334),(8115,0,2334,NULL,12,0,10335),(8116,0,2335,NULL,9,0,10336),(8117,0,2335,NULL,10,0,10337),(8118,0,2335,NULL,11,0,10338),(8119,0,2335,NULL,12,0,10339),(8124,0,2337,NULL,9,0,10344),(8125,0,2337,NULL,10,0,10345),(8126,0,2337,NULL,11,0,10346),(8127,0,2337,NULL,12,0,10347),(8128,0,2338,NULL,9,0,10348),(8129,0,2338,NULL,10,0,10349),(8130,0,2338,NULL,11,0,10350),(8131,0,2338,NULL,12,0,10351),(8132,0,2339,NULL,9,0,10352),(8133,0,2339,NULL,10,0,10353),(8134,0,2339,NULL,11,0,10354),(8135,0,2339,NULL,12,0,10355),(8136,0,2340,NULL,9,0,10356),(8137,0,2340,NULL,10,0,10357),(8138,0,2340,NULL,11,0,10358),(8139,0,2340,NULL,12,0,10359),(8140,0,2341,NULL,9,0,10360),(8141,0,2341,NULL,10,0,10361),(8142,0,2341,NULL,11,0,10362),(8143,0,2341,NULL,12,0,10363),(8144,0,2342,NULL,9,0,10364),(8145,0,2342,NULL,10,0,10365),(8146,0,2342,NULL,11,0,10366),(8147,0,2342,NULL,12,0,10367),(8152,0,2344,NULL,1,0,10372),(8153,0,2344,NULL,2,0,10373),(8154,0,2344,NULL,3,0,10374),(8155,0,2345,NULL,1,0,10375),(8156,0,2345,NULL,2,0,10376),(8157,0,2345,NULL,3,0,10377),(8158,0,2346,NULL,1,0,10378),(8159,0,2346,NULL,2,0,10379),(8160,0,2346,NULL,3,0,10380),(8161,0,2347,NULL,1,0,10381),(8162,0,2347,NULL,2,0,10382),(8163,0,2347,NULL,3,0,10383),(8164,0,2348,NULL,1,0,10384),(8165,0,2348,NULL,2,0,10385),(8166,0,2348,NULL,3,0,10386),(8167,0,2349,NULL,1,0,10387),(8168,0,2349,NULL,2,0,10388),(8169,0,2349,NULL,3,0,10389),(8173,0,2351,NULL,4,0,10393),(8174,0,2351,NULL,2,0,10394),(8175,0,2351,NULL,1,0,10395),(8176,0,2351,NULL,3,0,10396),(8177,0,2352,NULL,4,0,10397),(8178,0,2352,NULL,2,0,10398),(8179,0,2352,NULL,1,0,10399),(8180,0,2352,NULL,3,0,10400),(8181,0,2353,NULL,4,0,10401),(8182,0,2353,NULL,2,0,10402),(8183,0,2353,NULL,1,0,10403),(8184,0,2353,NULL,3,0,10404),(8185,0,2354,NULL,1,0,10405),(8186,0,2354,NULL,2,0,10406),(8187,0,2354,NULL,3,0,10407),(8188,0,2354,NULL,4,0,10408),(8189,0,2355,NULL,1,0,10409),(8190,0,2355,NULL,2,0,10410),(8191,0,2355,NULL,3,0,10411),(8192,0,2355,NULL,4,0,10412),(8193,0,2356,NULL,1,0,10413),(8194,0,2356,NULL,2,0,10414),(8195,0,2356,NULL,3,0,10415),(8196,0,2356,NULL,4,0,10416),(8197,0,2358,NULL,9,0,10417),(8198,0,2358,NULL,10,0,10418),(8199,0,2358,NULL,11,0,10419),(8200,0,2358,NULL,12,0,10420),(8201,0,2359,NULL,5,0,10421),(8202,0,2359,NULL,6,0,10422),(8203,0,2359,NULL,7,0,10423),(8204,0,2359,NULL,8,0,10424),(8205,0,2360,NULL,9,0,10425),(8206,0,2360,NULL,10,0,10426),(8207,0,2360,NULL,11,0,10427),(8208,0,2360,NULL,12,0,10428),(8209,0,2361,NULL,5,0,10429),(8210,0,2361,NULL,6,0,10430),(8211,0,2361,NULL,7,0,10431),(8212,0,2361,NULL,8,0,10432),(8213,0,2362,NULL,9,0,10433),(8214,0,2362,NULL,10,0,10434),(8215,0,2362,NULL,11,0,10435),(8216,0,2362,NULL,12,0,10436),(8217,0,2363,NULL,5,0,10437),(8218,0,2363,NULL,6,0,10438),(8219,0,2363,NULL,7,0,10439),(8220,0,2363,NULL,8,0,10440),(8221,0,2364,NULL,9,0,10441),(8222,0,2364,NULL,10,0,10442),(8223,0,2364,NULL,11,0,10443),(8224,0,2364,NULL,12,0,10444),(8225,0,2365,NULL,5,0,10445),(8226,0,2365,NULL,6,0,10446),(8227,0,2365,NULL,7,0,10447),(8228,0,2365,NULL,8,0,10448),(8233,0,2367,NULL,1,0,10453),(8234,0,2367,NULL,2,0,10454),(8235,0,2367,NULL,3,0,10455),(8236,0,2367,NULL,4,0,10456),(8237,0,2368,NULL,1,0,10457),(8238,0,2368,NULL,2,0,10458),(8239,0,2368,NULL,3,0,10459),(8240,0,2368,NULL,4,0,10460),(8241,0,2369,NULL,1,0,10461),(8242,0,2369,NULL,2,0,10462),(8243,0,2369,NULL,3,0,10463),(8244,0,2369,NULL,4,0,10464),(8245,0,2370,NULL,1,0,10465),(8246,0,2370,NULL,4,0,10466),(8247,0,2370,NULL,2,0,10467),(8248,0,2370,NULL,3,0,10468),(8249,0,2371,NULL,1,0,10469),(8250,0,2371,NULL,4,0,10470),(8251,0,2371,NULL,2,0,10471),(8252,0,2371,NULL,3,0,10472),(8253,0,2372,NULL,1,0,10473),(8254,0,2372,NULL,4,0,10474),(8255,0,2372,NULL,2,0,10475),(8256,0,2372,NULL,3,0,10476),(8261,0,2374,NULL,7,0,10481),(8262,0,2374,NULL,8,0,10482),(8263,0,2374,NULL,9,0,10483),(8264,0,2375,NULL,7,0,10484),(8265,0,2375,NULL,8,0,10485),(8266,0,2375,NULL,9,0,10486),(8267,0,2376,NULL,7,0,10487),(8268,0,2376,NULL,8,0,10488),(8269,0,2376,NULL,9,0,10489),(8270,0,2377,NULL,4,0,10490),(8271,0,2377,NULL,5,0,10491),(8272,0,2377,NULL,6,0,10492),(8273,0,2378,NULL,4,0,10493),(8274,0,2378,NULL,5,0,10494),(8275,0,2378,NULL,6,0,10495),(8276,0,2379,NULL,4,0,10496),(8277,0,2379,NULL,5,0,10497),(8278,0,2379,NULL,6,0,10498),(8279,0,2380,NULL,7,0,10499),(8280,0,2380,NULL,8,0,10500),(8281,0,2380,NULL,9,0,10501),(8282,0,2381,NULL,7,0,10502),(8283,0,2381,NULL,8,0,10503),(8284,0,2381,NULL,9,0,10504),(8285,0,2382,NULL,7,0,10505),(8286,0,2382,NULL,8,0,10506),(8287,0,2382,NULL,9,0,10507),(8288,0,2383,NULL,1,0,10508),(8289,0,2383,NULL,2,0,10509),(8290,0,2383,NULL,3,0,10510),(8291,0,2384,NULL,1,0,10511),(8292,0,2384,NULL,2,0,10512),(8293,0,2384,NULL,3,0,10513),(8294,0,2385,NULL,1,0,10514),(8295,0,2385,NULL,2,0,10515),(8296,0,2385,NULL,3,0,10516),(8297,0,2386,NULL,4,0,10517),(8298,0,2386,NULL,5,0,10518),(8299,0,2386,NULL,6,0,10519),(8300,0,2387,NULL,4,0,10520),(8301,0,2387,NULL,5,0,10521),(8302,0,2387,NULL,6,0,10522),(8303,0,2388,NULL,4,0,10523),(8304,0,2388,NULL,5,0,10524),(8305,0,2388,NULL,6,0,10525),(8309,0,2390,NULL,2,0,10529),(8310,0,2390,NULL,1,0,10530),(8311,0,2390,NULL,4,0,10531),(8312,0,2390,NULL,3,0,10532),(8313,0,2391,NULL,2,0,10533),(8314,0,2391,NULL,1,0,10534),(8315,0,2391,NULL,4,0,10535),(8316,0,2391,NULL,3,0,10536),(8317,0,2392,NULL,2,0,10537),(8318,0,2392,NULL,1,0,10538),(8319,0,2392,NULL,4,0,10539),(8320,0,2392,NULL,3,0,10540),(8321,0,2393,NULL,1,0,10541),(8322,0,2393,NULL,2,0,10542),(8323,0,2393,NULL,3,0,10543),(8324,0,2393,NULL,4,0,10544),(8325,0,2394,NULL,1,0,10545),(8326,0,2394,NULL,2,0,10546),(8327,0,2394,NULL,3,0,10547),(8328,0,2394,NULL,4,0,10548),(8329,0,2395,NULL,1,0,10549),(8330,0,2395,NULL,2,0,10550),(8331,0,2395,NULL,3,0,10551),(8332,0,2395,NULL,4,0,10552),(8337,0,1455,NULL,1,0,10557),(8338,0,1455,NULL,2,0,10558),(8339,0,1455,NULL,3,0,10559),(8340,0,1455,NULL,4,0,10560),(8352,0,2397,NULL,3,0,10572),(8353,0,2397,NULL,2,0,10573),(8354,0,2397,NULL,4,0,10574),(8355,0,2397,NULL,1,0,10575),(8356,0,2398,NULL,3,0,10576),(8357,0,2398,NULL,2,0,10577),(8358,0,2398,NULL,4,0,10578),(8359,0,2398,NULL,1,0,10579),(8360,0,2399,NULL,3,0,10580),(8361,0,2399,NULL,2,0,10581),(8362,0,2399,NULL,4,0,10582),(8363,0,2399,NULL,1,0,10583),(8364,0,2400,NULL,1,0,10584),(8365,0,2400,NULL,2,0,10585),(8366,0,2400,NULL,3,0,10586),(8367,0,2400,NULL,4,0,10587),(8368,0,2401,NULL,1,0,10588),(8369,0,2401,NULL,2,0,10589),(8370,0,2401,NULL,3,0,10590),(8371,0,2401,NULL,4,0,10591),(8372,0,2402,NULL,1,0,10592),(8373,0,2402,NULL,2,0,10593),(8374,0,2402,NULL,3,0,10594),(8375,0,2402,NULL,4,0,10595),(8380,0,2404,NULL,1,0,10600),(8381,0,2404,NULL,2,0,10601),(8382,0,2404,NULL,3,0,10602),(8383,0,2404,NULL,4,0,10603),(8384,0,2405,NULL,1,0,10604),(8385,0,2405,NULL,2,0,10605),(8386,0,2405,NULL,3,0,10606),(8387,0,2405,NULL,4,0,10607),(8388,0,2406,NULL,1,0,10608),(8389,0,2406,NULL,2,0,10609),(8390,0,2406,NULL,3,0,10610),(8391,0,2406,NULL,4,0,10611),(8392,0,2407,NULL,1,0,10612),(8393,0,2407,NULL,4,0,10613),(8394,0,2407,NULL,2,0,10614),(8395,0,2407,NULL,3,0,10615),(8396,0,2408,NULL,1,0,10616),(8397,0,2408,NULL,4,0,10617),(8398,0,2408,NULL,2,0,10618),(8399,0,2408,NULL,3,0,10619),(8400,0,2409,NULL,1,0,10620),(8401,0,2409,NULL,4,0,10621),(8402,0,2409,NULL,2,0,10622),(8403,0,2409,NULL,3,0,10623),(8408,0,2411,NULL,5,0,10628),(8409,0,2411,NULL,6,0,10629),(8410,0,2411,NULL,7,0,10630),(8411,0,2411,NULL,8,0,10631),(8412,0,2412,NULL,5,0,10632),(8413,0,2412,NULL,6,0,10633),(8414,0,2412,NULL,7,0,10634),(8415,0,2412,NULL,8,0,10635),(8416,0,2413,NULL,5,0,10636),(8417,0,2413,NULL,6,0,10637),(8418,0,2413,NULL,7,0,10638),(8419,0,2413,NULL,8,0,10639),(8420,0,2414,NULL,9,0,10640),(8421,0,2414,NULL,10,0,10641),(8422,0,2414,NULL,11,0,10642),(8423,0,2414,NULL,12,0,10643),(8424,0,2415,NULL,9,0,10644),(8425,0,2415,NULL,10,0,10645),(8426,0,2415,NULL,11,0,10646),(8427,0,2415,NULL,12,0,10647),(8428,0,2416,NULL,9,0,10648),(8429,0,2416,NULL,10,0,10649),(8430,0,2416,NULL,11,0,10650),(8431,0,2416,NULL,12,0,10651),(8436,0,2418,NULL,1,0,10656),(8437,0,2418,NULL,2,0,10657),(8438,0,2418,NULL,3,0,10658),(8439,0,2418,NULL,4,0,10659),(8440,0,2419,NULL,1,0,10660),(8441,0,2419,NULL,2,0,10661),(8442,0,2419,NULL,3,0,10662),(8443,0,2419,NULL,4,0,10663),(8444,0,2420,NULL,1,0,10664),(8445,0,2420,NULL,2,0,10665),(8446,0,2420,NULL,3,0,10666),(8447,0,2420,NULL,4,0,10667),(8448,0,2421,NULL,1,0,10668),(8449,0,2421,NULL,2,0,10669),(8450,0,2421,NULL,3,0,10670),(8451,0,2421,NULL,4,0,10671),(8452,0,2422,NULL,1,0,10672),(8453,0,2422,NULL,2,0,10673),(8454,0,2422,NULL,3,0,10674),(8455,0,2422,NULL,4,0,10675),(8456,0,2423,NULL,1,0,10676),(8457,0,2423,NULL,2,0,10677),(8458,0,2423,NULL,3,0,10678),(8459,0,2423,NULL,4,0,10679),(8464,0,2425,NULL,1,0,10684),(8465,0,2425,NULL,2,0,10685),(8466,0,2425,NULL,3,0,10686),(8467,0,2425,NULL,4,0,10687),(8468,0,2426,NULL,1,0,10688),(8469,0,2426,NULL,2,0,10689),(8470,0,2426,NULL,3,0,10690),(8471,0,2426,NULL,4,0,10691),(8472,0,2427,NULL,1,0,10692),(8473,0,2427,NULL,2,0,10693),(8474,0,2427,NULL,3,0,10694),(8475,0,2427,NULL,4,0,10695),(8476,0,2428,NULL,1,0,10696),(8477,0,2428,NULL,3,0,10697),(8478,0,2428,NULL,2,0,10698),(8479,0,2428,NULL,4,0,10699),(8480,0,2429,NULL,1,0,10700),(8481,0,2429,NULL,3,0,10701),(8482,0,2429,NULL,2,0,10702),(8483,0,2429,NULL,4,0,10703),(8484,0,2430,NULL,1,0,10704),(8485,0,2430,NULL,3,0,10705),(8486,0,2430,NULL,2,0,10706),(8487,0,2430,NULL,4,0,10707),(8492,0,2432,NULL,1,0,10712),(8493,0,2432,NULL,4,0,10713),(8494,0,2432,NULL,2,0,10714),(8495,0,2432,NULL,3,0,10715),(8496,0,2433,NULL,1,0,10716),(8497,0,2433,NULL,4,0,10717),(8498,0,2433,NULL,2,0,10718),(8499,0,2433,NULL,3,0,10719),(8500,0,2434,NULL,1,0,10720),(8501,0,2434,NULL,4,0,10721),(8502,0,2434,NULL,2,0,10722),(8503,0,2434,NULL,3,0,10723),(8504,0,2435,NULL,1,0,10724),(8505,0,2435,NULL,4,0,10725),(8506,0,2435,NULL,2,0,10726),(8507,0,2435,NULL,3,0,10727),(8508,0,2436,NULL,1,0,10728),(8509,0,2436,NULL,2,0,10729),(8510,0,2436,NULL,3,0,10730),(8511,0,2436,NULL,4,0,10731),(8512,0,2437,NULL,1,0,10732),(8513,0,2437,NULL,2,0,10733),(8514,0,2437,NULL,3,0,10734),(8515,0,2437,NULL,4,0,10735),(8516,0,2438,NULL,1,0,10736),(8517,0,2438,NULL,2,0,10737),(8518,0,2438,NULL,3,0,10738),(8519,0,2438,NULL,4,0,10739),(8520,0,2439,NULL,1,0,10740),(8521,0,2439,NULL,2,0,10741),(8522,0,2439,NULL,3,0,10742),(8523,0,2439,NULL,4,0,10743),(8528,0,2441,NULL,3,0,10748),(8529,0,2441,NULL,1,0,10749),(8530,0,2441,NULL,2,0,10750),(8531,0,2442,NULL,3,0,10751),(8532,0,2442,NULL,1,0,10752),(8533,0,2442,NULL,2,0,10753),(8534,0,2443,NULL,3,0,10754),(8535,0,2443,NULL,1,0,10755),(8536,0,2443,NULL,2,0,10756),(8537,0,2444,NULL,3,0,10757),(8538,0,2444,NULL,1,0,10758),(8539,0,2444,NULL,2,0,10759),(8540,0,2445,NULL,3,0,10760),(8541,0,2445,NULL,1,0,10761),(8542,0,2445,NULL,2,0,10762),(8543,0,2446,NULL,1,0,10763),(8544,0,2446,NULL,2,0,10764),(8545,0,2446,NULL,3,0,10765),(8546,0,2447,NULL,1,0,10766),(8547,0,2447,NULL,2,0,10767),(8548,0,2447,NULL,3,0,10768),(8549,0,2448,NULL,1,0,10769),(8550,0,2448,NULL,2,0,10770),(8551,0,2448,NULL,3,0,10771),(8552,0,2449,NULL,1,0,10772),(8553,0,2449,NULL,2,0,10773),(8554,0,2449,NULL,3,0,10774),(8555,0,2450,NULL,1,0,10775),(8556,0,2450,NULL,2,0,10776),(8557,0,2450,NULL,3,0,10777),(8558,0,2451,NULL,3,0,10778),(8559,0,2451,NULL,2,0,10779),(8560,0,2451,NULL,1,0,10780),(8561,0,2452,NULL,3,0,10781),(8562,0,2452,NULL,2,0,10782),(8563,0,2452,NULL,1,0,10783),(8564,0,2453,NULL,3,0,10784),(8565,0,2453,NULL,2,0,10785),(8566,0,2453,NULL,1,0,10786),(8567,0,2454,NULL,3,0,10787),(8568,0,2454,NULL,2,0,10788),(8569,0,2454,NULL,1,0,10789),(8570,0,2455,NULL,3,0,10790),(8571,0,2455,NULL,2,0,10791),(8572,0,2455,NULL,1,0,10792),(806,0,20,NULL,5,0,10796),(807,0,20,NULL,6,0,10797),(808,0,20,NULL,7,0,10798),(809,0,20,NULL,8,0,10799),(946,0,613,NULL,1,0,10800),(947,0,613,NULL,2,0,10801),(948,0,613,NULL,3,0,10802),(949,0,613,NULL,4,0,10803),(942,0,612,NULL,1,0,10804),(943,0,612,NULL,2,0,10805),(944,0,612,NULL,3,0,10806),(945,0,612,NULL,4,0,10807),(938,0,611,NULL,1,0,10808),(939,0,611,NULL,2,0,10809),(940,0,611,NULL,3,0,10810),(941,0,611,NULL,4,0,10811),(934,0,610,NULL,1,0,10812),(935,0,610,NULL,2,0,10813),(936,0,610,NULL,3,0,10814),(937,0,610,NULL,4,0,10815),(930,0,609,NULL,1,0,10816),(931,0,609,NULL,2,0,10817),(932,0,609,NULL,3,0,10818),(933,0,609,NULL,4,0,10819),(926,0,608,NULL,1,0,10820),(927,0,608,NULL,2,0,10821),(928,0,608,NULL,3,0,10822),(929,0,608,NULL,4,0,10823),(922,0,607,NULL,1,0,10824),(923,0,607,NULL,2,0,10825),(924,0,607,NULL,3,0,10826),(925,0,607,NULL,4,0,10827),(918,0,606,NULL,1,0,10828),(919,0,606,NULL,2,0,10829),(920,0,606,NULL,3,0,10830),(921,0,606,NULL,4,0,10831),(914,0,605,NULL,1,0,10832),(915,0,605,NULL,2,0,10833),(916,0,605,NULL,3,0,10834),(917,0,605,NULL,4,0,10835),(910,0,604,NULL,1,0,10836),(911,0,604,NULL,2,0,10837),(912,0,604,NULL,3,0,10838),(913,0,604,NULL,4,0,10839),(906,0,603,NULL,1,0,10840),(907,0,603,NULL,2,0,10841),(908,0,603,NULL,3,0,10842),(909,0,603,NULL,4,0,10843),(902,0,602,NULL,1,0,10844),(903,0,602,NULL,2,0,10845),(904,0,602,NULL,3,0,10846),(905,0,602,NULL,4,0,10847),(898,0,601,NULL,1,0,10848),(899,0,601,NULL,2,0,10849),(900,0,601,NULL,3,0,10850),(901,0,601,NULL,4,0,10851),(894,0,600,NULL,1,0,10852),(895,0,600,NULL,2,0,10853),(896,0,600,NULL,3,0,10854),(897,0,600,NULL,4,0,10855),(850,0,589,NULL,1,0,10856),(851,0,589,NULL,2,0,10857),(852,0,589,NULL,3,0,10858),(853,0,589,NULL,4,0,10859),(846,0,588,NULL,1,0,10860),(847,0,588,NULL,2,0,10861),(848,0,588,NULL,3,0,10862),(849,0,588,NULL,4,0,10863),(842,0,587,NULL,1,0,10864),(843,0,587,NULL,2,0,10865),(844,0,587,NULL,3,0,10866),(845,0,587,NULL,4,0,10867),(838,0,586,NULL,1,0,10868),(839,0,586,NULL,2,0,10869),(840,0,586,NULL,3,0,10870),(841,0,586,NULL,4,0,10871),(834,0,585,NULL,1,0,10872),(835,0,585,NULL,2,0,10873),(836,0,585,NULL,3,0,10874),(837,0,585,NULL,4,0,10875),(830,0,584,NULL,1,0,10876),(831,0,584,NULL,2,0,10877),(832,0,584,NULL,3,0,10878),(833,0,584,NULL,4,0,10879),(826,0,583,NULL,1,0,10880),(827,0,583,NULL,2,0,10881),(828,0,583,NULL,3,0,10882),(829,0,583,NULL,4,0,10883),(822,0,582,NULL,1,0,10884),(823,0,582,NULL,2,0,10885),(824,0,582,NULL,3,0,10886),(825,0,582,NULL,4,0,10887),(818,0,581,NULL,1,0,10888),(819,0,581,NULL,2,0,10889),(820,0,581,NULL,3,0,10890),(821,0,581,NULL,4,0,10891),(814,0,580,NULL,1,0,10892),(815,0,580,NULL,2,0,10893),(816,0,580,NULL,3,0,10894),(817,0,580,NULL,4,0,10895),(810,0,579,NULL,1,0,10896),(811,0,579,NULL,2,0,10897),(812,0,579,NULL,3,0,10898),(813,0,579,NULL,4,0,10899),(890,0,599,NULL,1,0,10900),(891,0,599,NULL,2,0,10901),(892,0,599,NULL,3,0,10902),(893,0,599,NULL,4,0,10903),(886,0,598,NULL,1,0,10904),(887,0,598,NULL,2,0,10905),(888,0,598,NULL,3,0,10906),(889,0,598,NULL,4,0,10907),(882,0,597,NULL,1,0,10908),(883,0,597,NULL,2,0,10909),(884,0,597,NULL,3,0,10910),(885,0,597,NULL,4,0,10911),(878,0,596,NULL,1,0,10912),(879,0,596,NULL,2,0,10913),(880,0,596,NULL,3,0,10914),(881,0,596,NULL,4,0,10915),(874,0,595,NULL,1,0,10916),(875,0,595,NULL,2,0,10917),(876,0,595,NULL,3,0,10918),(877,0,595,NULL,4,0,10919),(870,0,594,NULL,1,0,10920),(871,0,594,NULL,2,0,10921),(872,0,594,NULL,3,0,10922),(873,0,594,NULL,4,0,10923),(866,0,593,NULL,1,0,10924),(867,0,593,NULL,2,0,10925),(868,0,593,NULL,3,0,10926),(869,0,593,NULL,4,0,10927),(862,0,592,NULL,1,0,10928),(863,0,592,NULL,2,0,10929),(864,0,592,NULL,3,0,10930),(865,0,592,NULL,4,0,10931),(858,0,591,NULL,1,0,10932),(859,0,591,NULL,2,0,10933),(860,0,591,NULL,3,0,10934),(861,0,591,NULL,4,0,10935),(854,0,590,NULL,1,0,10936),(855,0,590,NULL,2,0,10937),(856,0,590,NULL,3,0,10938),(857,0,590,NULL,4,0,10939),(8576,0,2457,NULL,3,0,10940),(8577,0,2457,NULL,2,0,10941),(8578,0,2457,NULL,1,0,10942),(8579,0,2458,NULL,3,0,10943),(8580,0,2458,NULL,2,0,10944),(8581,0,2458,NULL,1,0,10945),(8582,0,2459,NULL,3,0,10946),(8583,0,2459,NULL,2,0,10947),(8584,0,2459,NULL,1,0,10948),(8585,0,2460,NULL,3,0,10949),(8586,0,2460,NULL,2,0,10950),(8587,0,2460,NULL,1,0,10951),(8588,0,2461,NULL,1,0,10952),(8589,0,2461,NULL,3,0,10953),(8590,0,2461,NULL,2,0,10954),(8591,0,2462,NULL,1,0,10955),(8592,0,2462,NULL,3,0,10956),(8593,0,2462,NULL,2,0,10957),(8594,0,2463,NULL,1,0,10958),(8595,0,2463,NULL,3,0,10959),(8596,0,2463,NULL,2,0,10960),(8597,0,2464,NULL,1,0,10961),(8598,0,2464,NULL,3,0,10962),(8599,0,2464,NULL,2,0,10963),(8603,0,2466,NULL,1,0,10967),(8604,0,2466,NULL,3,0,10968),(8605,0,2466,NULL,2,0,10969),(8606,0,2467,NULL,1,0,10970),(8607,0,2467,NULL,3,0,10971),(8608,0,2467,NULL,2,0,10972),(8609,0,2468,NULL,1,0,10973),(8610,0,2468,NULL,3,0,10974),(8611,0,2468,NULL,2,0,10975),(8612,0,2469,NULL,1,0,10976),(8613,0,2469,NULL,3,0,10977),(8614,0,2469,NULL,2,0,10978),(8615,0,2470,NULL,1,0,10979),(8616,0,2470,NULL,3,0,10980),(8617,0,2470,NULL,2,0,10981),(1044,0,35,NULL,4,0,10982),(1045,0,35,NULL,5,0,10983),(1046,0,35,NULL,6,0,10984),(8618,0,2471,NULL,1,0,10985),(8619,0,2471,NULL,3,0,10986),(8620,0,2471,NULL,2,0,10987),(8621,0,2472,NULL,2,0,10988),(8622,0,2472,NULL,3,0,10989),(8623,0,2472,NULL,1,0,10990),(1167,0,29,NULL,5,0,10991),(1168,0,29,NULL,6,0,10992),(1169,0,29,NULL,7,0,10993),(1170,0,29,NULL,8,0,10994),(8624,0,2473,NULL,2,0,10995),(8625,0,2473,NULL,3,0,10996),(8626,0,2473,NULL,1,0,10997),(8627,0,2474,NULL,2,0,10998),(8628,0,2474,NULL,3,0,10999),(8629,0,2474,NULL,1,0,11000),(1271,0,15,NULL,5,0,11001),(1272,0,15,NULL,6,0,11002),(1273,0,15,NULL,7,0,11003),(1274,0,15,NULL,8,0,11004),(8630,0,2475,NULL,2,0,11005),(8631,0,2475,NULL,3,0,11006),(8632,0,2475,NULL,1,0,11007),(8633,0,2476,NULL,2,0,11008),(8634,0,2476,NULL,3,0,11009),(8635,0,2476,NULL,1,0,11010),(1399,0,46,NULL,4,0,11011),(1400,0,46,NULL,5,0,11012),(1401,0,46,NULL,6,0,11013),(8636,0,2477,NULL,2,0,11014),(8637,0,2477,NULL,3,0,11015),(8638,0,2477,NULL,1,0,11016),(1335,0,5,NULL,5,0,11017),(1336,0,5,NULL,6,0,11018),(1337,0,5,NULL,7,0,11019),(1338,0,5,NULL,8,0,11020),(1447,0,8,NULL,4,0,11024),(1448,0,8,NULL,5,0,11025),(1449,0,8,NULL,6,0,11026),(1510,0,47,NULL,4,0,11027),(1511,0,47,NULL,5,0,11028),(1512,0,47,NULL,6,0,11029),(1573,0,53,NULL,4,0,11030),(1574,0,53,NULL,5,0,11031),(1575,0,53,NULL,6,0,11032),(1621,0,49,NULL,4,0,11033),(1622,0,49,NULL,5,0,11034),(1623,0,49,NULL,6,0,11035),(1684,0,42,NULL,4,0,11036),(1685,0,42,NULL,5,0,11037),(1686,0,42,NULL,6,0,11038),(500,0,101,NULL,1,0,11039),(501,0,101,NULL,2,0,11040),(502,0,101,NULL,3,0,11041),(503,0,101,NULL,4,0,11042),(132,0,34,NULL,0,0,11043),(133,0,34,NULL,1,0,11044),(134,0,34,NULL,2,0,11045),(145,0,38,NULL,1,0,11046),(146,0,38,NULL,2,0,11047),(147,0,38,NULL,3,0,11048),(138,0,36,NULL,0,0,11049),(139,0,36,NULL,1,0,11050),(140,0,36,NULL,2,0,11051),(524,0,104,NULL,5,0,11052),(525,0,104,NULL,6,0,11053),(526,0,104,NULL,7,0,11054),(527,0,104,NULL,8,0,11055),(2045,0,99,NULL,4,0,11056),(2046,0,99,NULL,5,0,11057),(2047,0,99,NULL,6,0,11058),(474,0,97,NULL,1,0,11059),(475,0,97,NULL,2,0,11060),(476,0,97,NULL,3,0,11061),(5,0,2,NULL,1,0,11062),(6,0,2,NULL,3,0,11063),(7,0,2,NULL,4,0,11064),(8,0,2,NULL,5,0,11065),(1,0,1,NULL,1,0,11066),(2,0,1,NULL,2,0,11067),(3,0,1,NULL,3,0,11068),(4,0,1,NULL,4,0,11069),(496,0,100,NULL,5,0,11070),(497,0,100,NULL,6,0,11071),(498,0,100,NULL,7,0,11072),(499,0,100,NULL,8,0,11073),(477,0,95,NULL,5,0,11074),(478,0,95,NULL,6,0,11075),(479,0,95,NULL,7,0,11076),(480,0,95,NULL,8,0,11077),(192,0,51,NULL,1,0,11078),(193,0,51,NULL,2,0,11079),(194,0,51,NULL,3,0,11080),(540,0,105,NULL,5,0,11081),(541,0,105,NULL,6,0,11082),(542,0,105,NULL,7,0,11083),(543,0,105,NULL,8,0,11084),(548,0,106,NULL,5,0,11085),(549,0,106,NULL,6,0,11086),(550,0,106,NULL,7,0,11087),(551,0,106,NULL,8,0,11088),(556,0,107,NULL,5,0,11089),(557,0,107,NULL,6,0,11090),(558,0,107,NULL,7,0,11091),(559,0,107,NULL,8,0,11092),(564,0,108,NULL,4,0,11093),(565,0,108,NULL,5,0,11094),(566,0,108,NULL,6,0,11095),(567,0,108,NULL,7,0,11096),(128,0,33,NULL,1,0,11097),(129,0,33,NULL,2,0,11098),(130,0,33,NULL,3,0,11099),(131,0,33,NULL,4,0,11100),(26,0,7,NULL,0,0,11101),(27,0,7,NULL,1,0,11102),(28,0,7,NULL,2,0,11103),(29,0,7,NULL,3,0,11104),(30,0,7,NULL,4,0,11105),(38,0,10,NULL,1,0,11106),(39,0,10,NULL,2,0,11107),(40,0,10,NULL,3,0,11108),(41,0,10,NULL,4,0,11109),(311,0,70,NULL,5,0,11110),(312,0,70,NULL,6,0,11111),(313,0,70,NULL,7,0,11112),(314,0,70,NULL,8,0,11113),(66,0,17,NULL,1,0,11114),(67,0,17,NULL,2,0,11115),(68,0,17,NULL,3,0,11116),(69,0,17,NULL,4,0,11117),(653,0,123,NULL,4,0,11118),(654,0,123,NULL,5,0,11119),(42,0,11,NULL,1,0,11120),(43,0,11,NULL,2,0,11121),(44,0,11,NULL,3,0,11122),(45,0,11,NULL,4,0,11123),(638,0,120,NULL,4,0,11124),(639,0,120,NULL,5,0,11125),(640,0,120,NULL,6,0,11126),(322,0,72,NULL,5,0,11127),(323,0,72,NULL,6,0,11128),(324,0,72,NULL,7,0,11129),(325,0,72,NULL,8,0,11130),(367,0,80,NULL,5,0,11131),(368,0,80,NULL,6,0,11132),(369,0,80,NULL,7,0,11133),(370,0,80,NULL,8,0,11134),(100,0,26,NULL,1,0,11135),(101,0,26,NULL,2,0,11136),(102,0,26,NULL,3,0,11137),(103,0,26,NULL,4,0,11138),(270,0,64,NULL,5,0,11139),(271,0,64,NULL,6,0,11140),(272,0,64,NULL,7,0,11141),(273,0,64,NULL,8,0,11142),(46,0,12,NULL,1,0,11143),(47,0,12,NULL,2,0,11144),(48,0,12,NULL,3,0,11145),(49,0,12,NULL,4,0,11146),(247,0,59,NULL,5,0,11147),(248,0,59,NULL,6,0,11148),(249,0,59,NULL,7,0,11149),(250,0,59,NULL,8,0,11150),(393,0,82,NULL,4,0,11151),(394,0,82,NULL,5,0,11152),(395,0,82,NULL,6,0,11153),(617,0,115,NULL,5,0,11154),(618,0,115,NULL,6,0,11155),(619,0,115,NULL,7,0,11156),(620,0,115,NULL,8,0,11157),(647,0,122,NULL,4,0,11158),(648,0,122,NULL,5,0,11159),(649,0,122,NULL,6,0,11160),(625,0,117,NULL,5,0,11161),(626,0,117,NULL,6,0,11162),(627,0,117,NULL,7,0,11163),(628,0,117,NULL,8,0,11164),(606,0,113,NULL,4,0,11165),(607,0,113,NULL,5,0,11166),(608,0,113,NULL,6,0,11167),(609,0,113,NULL,7,0,11168),(364,0,75,NULL,4,0,11169),(365,0,75,NULL,5,0,11170),(366,0,75,NULL,6,0,11171),(74,0,19,NULL,1,0,11172),(75,0,19,NULL,2,0,11173),(76,0,19,NULL,3,0,11174),(202,0,54,NULL,1,0,11175),(203,0,54,NULL,2,0,11176),(204,0,54,NULL,3,0,11177),(341,0,73,NULL,5,0,11178),(342,0,73,NULL,6,0,11179),(343,0,73,NULL,7,0,11180),(344,0,73,NULL,8,0,11181),(205,0,50,NULL,5,0,11182),(206,0,50,NULL,6,0,11183),(207,0,50,NULL,7,0,11184),(208,0,50,NULL,8,0,11185),(632,0,119,NULL,1,0,11186),(633,0,119,NULL,2,0,11187),(634,0,119,NULL,3,0,11188),(184,0,41,NULL,1,0,11189),(185,0,41,NULL,2,0,11190),(186,0,41,NULL,3,0,11191),(187,0,41,NULL,4,0,11192),(70,0,18,NULL,1,0,11193),(71,0,18,NULL,2,0,11194),(72,0,18,NULL,3,0,11195),(73,0,18,NULL,4,0,11196),(167,0,45,NULL,1,0,11197),(168,0,45,NULL,2,0,11198),(169,0,45,NULL,3,0,11199),(170,0,45,NULL,4,0,11200),(319,0,69,NULL,4,0,11201),(320,0,69,NULL,5,0,11202),(321,0,69,NULL,6,0,11203),(8642,0,2479,NULL,3,0,11204),(8643,0,2479,NULL,1,0,11205),(8644,0,2479,NULL,2,0,11206),(8645,0,2479,NULL,4,0,11207),(8646,0,2480,NULL,3,0,11208),(8647,0,2480,NULL,1,0,11209),(8648,0,2480,NULL,2,0,11210),(8649,0,2480,NULL,4,0,11211),(8650,0,2481,NULL,3,0,11212),(8651,0,2481,NULL,1,0,11213),(8652,0,2481,NULL,2,0,11214),(8653,0,2481,NULL,4,0,11215),(8654,0,2482,NULL,3,0,11216),(8655,0,2482,NULL,1,0,11217),(8656,0,2482,NULL,2,0,11218),(8657,0,2482,NULL,4,0,11219),(8658,0,2483,NULL,1,0,11220),(8659,0,2483,NULL,2,0,11221),(8660,0,2483,NULL,3,0,11222),(8661,0,2483,NULL,4,0,11223),(8662,0,2484,NULL,1,0,11224),(8663,0,2484,NULL,2,0,11225),(8664,0,2484,NULL,3,0,11226),(8665,0,2484,NULL,4,0,11227),(8666,0,2485,NULL,1,0,11228),(8667,0,2485,NULL,2,0,11229),(8668,0,2485,NULL,3,0,11230),(8669,0,2485,NULL,4,0,11231),(8670,0,2486,NULL,1,0,11232),(8671,0,2486,NULL,2,0,11233),(8672,0,2486,NULL,3,0,11234),(8673,0,2486,NULL,4,0,11235),(8678,0,2488,NULL,1,0,11240),(8679,0,2488,NULL,2,0,11241),(8680,0,2488,NULL,3,0,11242),(8681,0,2489,NULL,1,0,11243),(8682,0,2489,NULL,2,0,11244),(8683,0,2489,NULL,3,0,11245),(8684,0,2490,NULL,1,0,11246),(8685,0,2490,NULL,2,0,11247),(8686,0,2490,NULL,3,0,11248),(8687,0,2491,NULL,1,0,11249),(8688,0,2491,NULL,2,0,11250),(8689,0,2491,NULL,3,0,11251),(8690,0,2492,NULL,1,0,11252),(8691,0,2492,NULL,2,0,11253),(8692,0,2492,NULL,3,0,11254),(8693,0,2493,NULL,1,0,11255),(8694,0,2493,NULL,2,0,11256),(8695,0,2493,NULL,3,0,11257),(8696,0,2494,NULL,2,0,11258),(8697,0,2494,NULL,3,0,11259),(8698,0,2494,NULL,1,0,11260),(8699,0,2495,NULL,2,0,11261),(8700,0,2495,NULL,3,0,11262),(8701,0,2495,NULL,1,0,11263),(8702,0,2496,NULL,2,0,11264),(8703,0,2496,NULL,3,0,11265),(8704,0,2496,NULL,1,0,11266),(8705,0,2497,NULL,2,0,11267),(8706,0,2497,NULL,3,0,11268),(8707,0,2497,NULL,1,0,11269),(8708,0,2498,NULL,2,0,11270),(8709,0,2498,NULL,3,0,11271),(8710,0,2498,NULL,1,0,11272),(8711,0,2499,NULL,2,0,11273),(8712,0,2499,NULL,3,0,11274),(8713,0,2499,NULL,1,0,11275),(8717,0,2501,NULL,1,0,11279),(8718,0,2501,NULL,2,0,11280),(8719,0,2501,NULL,3,0,11281),(8720,0,2501,NULL,4,0,11282),(8721,0,2502,NULL,1,0,11283),(8722,0,2502,NULL,2,0,11284),(8723,0,2502,NULL,3,0,11285),(8724,0,2502,NULL,4,0,11286),(8725,0,2503,NULL,1,0,11287),(8726,0,2503,NULL,2,0,11288),(8727,0,2503,NULL,3,0,11289),(8728,0,2503,NULL,4,0,11290),(8729,0,2504,NULL,4,0,11291),(8730,0,2504,NULL,2,0,11292),(8731,0,2504,NULL,1,0,11293),(8732,0,2504,NULL,3,0,11294),(8733,0,2505,NULL,4,0,11295),(8734,0,2505,NULL,2,0,11296),(8735,0,2505,NULL,1,0,11297),(8736,0,2505,NULL,3,0,11298),(8737,0,2506,NULL,4,0,11299),(8738,0,2506,NULL,2,0,11300),(8739,0,2506,NULL,1,0,11301),(8740,0,2506,NULL,3,0,11302),(8745,0,2508,NULL,1,0,11307),(8746,0,2508,NULL,2,0,11308),(8747,0,2508,NULL,3,0,11309),(8748,0,2508,NULL,4,0,11310),(8749,0,2509,NULL,1,0,11311),(8750,0,2509,NULL,2,0,11312),(8751,0,2509,NULL,3,0,11313),(8752,0,2509,NULL,4,0,11314),(8753,0,2510,NULL,1,0,11315),(8754,0,2510,NULL,2,0,11316),(8755,0,2510,NULL,3,0,11317),(8756,0,2510,NULL,4,0,11318),(8757,0,2511,NULL,3,0,11319),(8758,0,2511,NULL,4,0,11320),(8759,0,2511,NULL,2,0,11321),(8760,0,2511,NULL,1,0,11322),(8761,0,2512,NULL,3,0,11323),(8762,0,2512,NULL,4,0,11324),(8763,0,2512,NULL,2,0,11325),(8764,0,2512,NULL,1,0,11326),(8765,0,2513,NULL,3,0,11327),(8766,0,2513,NULL,4,0,11328),(8767,0,2513,NULL,2,0,11329),(8768,0,2513,NULL,1,0,11330),(8769,0,2514,NULL,1,0,11331),(8770,0,2514,NULL,3,0,11332),(8771,0,2514,NULL,2,0,11333),(8772,0,2514,NULL,4,0,11334),(8773,0,2515,NULL,1,0,11335),(8774,0,2515,NULL,3,0,11336),(8775,0,2515,NULL,2,0,11337),(8776,0,2515,NULL,4,0,11338),(8777,0,2516,NULL,1,0,11339),(8778,0,2516,NULL,3,0,11340),(8779,0,2516,NULL,2,0,11341),(8780,0,2516,NULL,4,0,11342),(443,0,91,NULL,5,0,11351),(444,0,91,NULL,6,0,11352),(445,0,91,NULL,7,0,11353),(446,0,91,NULL,8,0,11354),(8785,0,2518,NULL,1,0,11358),(8786,0,2518,NULL,4,0,11359),(8787,0,2518,NULL,3,0,11360),(8788,0,2518,NULL,2,0,11361),(8789,0,2519,NULL,1,0,11362),(8790,0,2519,NULL,4,0,11363),(8791,0,2519,NULL,3,0,11364),(8792,0,2519,NULL,2,0,11365),(8793,0,2520,NULL,1,0,11366),(8794,0,2520,NULL,4,0,11367),(8795,0,2520,NULL,3,0,11368),(8796,0,2520,NULL,2,0,11369),(8797,0,2521,NULL,2,0,11370),(8798,0,2521,NULL,3,0,11371),(8799,0,2521,NULL,4,0,11372),(8800,0,2521,NULL,1,0,11373),(8801,0,2522,NULL,2,0,11374),(8802,0,2522,NULL,3,0,11375),(8803,0,2522,NULL,4,0,11376),(8804,0,2522,NULL,1,0,11377),(8805,0,2523,NULL,2,0,11378),(8806,0,2523,NULL,3,0,11379),(8807,0,2523,NULL,4,0,11380),(8808,0,2523,NULL,1,0,11381),(8813,0,2525,NULL,7,0,11438),(8814,0,2525,NULL,8,0,11439),(8815,0,2525,NULL,9,0,11440),(8816,0,2526,NULL,7,0,11441),(8817,0,2526,NULL,8,0,11442),(8818,0,2526,NULL,9,0,11443),(8819,0,2527,NULL,7,0,11444),(8820,0,2527,NULL,8,0,11445),(8821,0,2527,NULL,9,0,11446),(8822,0,2528,NULL,7,0,11447),(8823,0,2528,NULL,8,0,11448),(8824,0,2528,NULL,9,0,11449),(8825,0,2529,NULL,7,0,11450),(8826,0,2529,NULL,8,0,11451),(8827,0,2529,NULL,9,0,11452),(8828,0,2530,NULL,7,0,11453),(8829,0,2530,NULL,8,0,11454),(8830,0,2530,NULL,9,0,11455),(8831,0,2531,NULL,7,0,11456),(8832,0,2531,NULL,8,0,11457),(8833,0,2531,NULL,9,0,11458),(8834,0,2532,NULL,7,0,11459),(8835,0,2532,NULL,8,0,11460),(8836,0,2532,NULL,9,0,11461),(8840,0,2534,NULL,1,0,11478),(8841,0,2534,NULL,2,0,11479),(8842,0,2534,NULL,3,0,11480),(8843,0,2534,NULL,4,0,11481),(8844,0,2535,NULL,1,0,11482),(8845,0,2535,NULL,2,0,11483),(8846,0,2535,NULL,3,0,11484),(8847,0,2535,NULL,4,0,11485),(8848,0,2536,NULL,1,0,11486),(8849,0,2536,NULL,2,0,11487),(8850,0,2536,NULL,3,0,11488),(8851,0,2536,NULL,4,0,11489),(8852,0,2537,NULL,1,0,11490),(8853,0,2537,NULL,2,0,11491),(8854,0,2537,NULL,3,0,11492),(8855,0,2537,NULL,4,0,11493),(8856,0,2538,NULL,2,0,11498),(8857,0,2538,NULL,1,0,11499),(8858,0,2538,NULL,3,0,11500),(8859,0,2538,NULL,4,0,11501),(8860,0,2539,NULL,2,0,11502),(8861,0,2539,NULL,1,0,11503),(8862,0,2539,NULL,3,0,11504),(8863,0,2539,NULL,4,0,11505),(8864,0,2540,NULL,2,0,11506),(8865,0,2540,NULL,1,0,11507),(8866,0,2540,NULL,3,0,11508),(8867,0,2540,NULL,4,0,11509),(8868,0,2541,NULL,2,0,11510),(8869,0,2541,NULL,1,0,11511),(8870,0,2541,NULL,3,0,11512),(8871,0,2541,NULL,4,0,11513),(4668,0,1351,NULL,1,0,11583),(4669,0,1351,NULL,2,0,11584),(4670,0,1351,NULL,3,0,11585),(4671,0,1351,NULL,4,0,11586),(8341,0,1495,NULL,4,0,11693),(8342,0,1495,NULL,5,0,11694),(8343,0,1495,NULL,6,0,11695),(8344,0,1526,NULL,5,0,11713),(8345,0,1526,NULL,6,0,11714),(8346,0,1526,NULL,7,0,11715),(8347,0,1526,NULL,8,0,11716),(4989,0,1464,NULL,1,0,11728),(8348,0,1561,NULL,5,0,11729),(8349,0,1561,NULL,6,0,11730),(8350,0,1561,NULL,7,0,11731),(8351,0,1561,NULL,8,0,11732),(5256,0,1535,NULL,1,0,11736),(5257,0,1535,NULL,2,0,11737),(5258,0,1535,NULL,3,0,11738),(5259,0,1535,NULL,4,0,11739),(5384,0,1568,NULL,0,0,11746),(5385,0,1568,NULL,1,0,11747),(5386,0,1568,NULL,2,0,11748),(5387,0,1568,NULL,3,0,11749),(5643,0,1643,NULL,1,0,11753),(5644,0,1643,NULL,2,0,11754),(5645,0,1643,NULL,3,0,11755),(5436,0,1583,NULL,1,0,11756),(5437,0,1583,NULL,2,0,11757),(5438,0,1583,NULL,3,0,11758),(5439,0,1583,NULL,4,0,11759),(5758,0,1677,NULL,1,0,11767),(5759,0,1677,NULL,2,0,11768),(5760,0,1677,NULL,3,0,11769),(5497,0,1604,NULL,0,0,11770),(5498,0,1604,NULL,1,0,11771),(5499,0,1604,NULL,2,0,11772),(5825,0,1699,NULL,1,0,11773),(5826,0,1699,NULL,2,0,11774),(5827,0,1699,NULL,3,0,11775),(5603,0,1630,NULL,1,0,11776),(5604,0,1630,NULL,2,0,11777),(5605,0,1630,NULL,3,0,11778),(5606,0,1630,NULL,4,0,11779),(5917,0,1725,NULL,1,0,11780),(5918,0,1725,NULL,2,0,11781),(5919,0,1725,NULL,3,0,11782),(6020,0,1756,NULL,1,0,11783),(6021,0,1756,NULL,2,0,11784),(6022,0,1756,NULL,3,0,11785),(5694,0,1656,NULL,1,0,11790),(5695,0,1656,NULL,2,0,11791),(5696,0,1656,NULL,3,0,11792),(5697,0,1656,NULL,4,0,11793),(5864,0,1709,NULL,1,0,11798),(5865,0,1709,NULL,2,0,11799),(5866,0,1709,NULL,3,0,11800),(5867,0,1709,NULL,4,0,11801),(5868,0,1709,NULL,5,0,11802),(5869,0,1709,NULL,6,0,11803),(5870,0,1709,NULL,7,0,11804),(5871,0,1709,NULL,8,0,11805),(6103,0,1777,NULL,5,0,11806),(6104,0,1777,NULL,6,0,11807),(6105,0,1777,NULL,7,0,11808),(6106,0,1777,NULL,8,0,11809),(5956,0,1735,NULL,1,0,11822),(5957,0,1735,NULL,2,0,11823),(5958,0,1735,NULL,3,0,11824),(5959,0,1735,NULL,4,0,11825),(5560,0,1597,NULL,4,0,11834),(5561,0,1597,NULL,5,0,11835),(5562,0,1597,NULL,6,0,11836),(8876,0,1413,NULL,5,0,11851),(8877,0,1413,NULL,6,0,11852),(8878,0,1413,NULL,7,0,11853),(8879,0,1413,NULL,8,0,11854),(5476,0,1596,NULL,1,0,11855),(5477,0,1596,NULL,2,0,11856),(5478,0,1596,NULL,3,0,11857),(6134,0,1787,NULL,0,0,11872),(6135,0,1787,NULL,1,0,11873),(6136,0,1787,NULL,2,0,11874),(6229,0,1817,NULL,0,0,11892),(6230,0,1817,NULL,1,0,11893),(6231,0,1817,NULL,2,0,11894),(6232,0,1817,NULL,3,0,11895),(6299,0,1840,NULL,1,0,11896),(6300,0,1840,NULL,2,0,11897),(6301,0,1840,NULL,3,0,11898),(6412,0,1875,NULL,0,0,11899),(6413,0,1875,NULL,1,0,11900),(6414,0,1875,NULL,2,0,11901),(6415,0,1875,NULL,3,0,11902),(6510,0,1903,NULL,0,0,11903),(6511,0,1903,NULL,1,0,11904),(6512,0,1903,NULL,2,0,11905),(8809,0,2524,NULL,1,0,11906),(8810,0,2524,NULL,2,0,11907),(8811,0,2524,NULL,3,0,11908),(8812,0,2524,NULL,4,0,11909),(6654,0,1943,NULL,1,0,11910),(6655,0,1943,NULL,2,0,11911),(6656,0,1943,NULL,3,0,11912),(6665,0,1946,NULL,0,0,11913),(6666,0,1946,NULL,1,0,11914),(6667,0,1946,NULL,2,0,11915),(6668,0,1946,NULL,3,0,11916),(8306,0,2389,NULL,4,0,11917),(8307,0,2389,NULL,5,0,11918),(8308,0,2389,NULL,6,0,11919),(8880,0,1808,NULL,4,0,11920),(8881,0,1808,NULL,5,0,11921),(8882,0,1808,NULL,6,0,11922),(6377,0,1866,NULL,1,0,11923),(6378,0,1866,NULL,2,0,11924),(6379,0,1866,NULL,3,0,11925),(6464,0,1888,NULL,5,0,11926),(6465,0,1888,NULL,6,0,11927),(6466,0,1888,NULL,7,0,11928),(6467,0,1888,NULL,8,0,11929),(6477,0,1892,NULL,1,0,11930),(6478,0,1892,NULL,2,0,11931),(6479,0,1892,NULL,3,0,11932),(6489,0,1896,NULL,0,0,11933),(6490,0,1896,NULL,1,0,11934),(6491,0,1896,NULL,2,0,11935),(6725,0,1961,NULL,0,0,11936),(6726,0,1961,NULL,1,0,11937),(6727,0,1961,NULL,2,0,11938),(6728,0,1961,NULL,3,0,11939),(6537,0,1910,NULL,5,0,11940),(6538,0,1910,NULL,6,0,11941),(6539,0,1910,NULL,7,0,11942),(6540,0,1910,NULL,8,0,11943),(6577,0,1920,NULL,1,0,11944),(6578,0,1920,NULL,2,0,11945),(6579,0,1920,NULL,3,0,11946),(6580,0,1920,NULL,4,0,11947),(6769,0,1972,NULL,0,0,11948),(6770,0,1972,NULL,1,0,11949),(6771,0,1972,NULL,2,0,11950),(6772,0,1972,NULL,3,0,11951),(8120,0,2336,NULL,1,0,11952),(8121,0,2336,NULL,2,0,11953),(8122,0,2336,NULL,3,0,11954),(8123,0,2336,NULL,4,0,11955),(6845,0,1991,NULL,0,0,11956),(6846,0,1991,NULL,1,0,11957),(6847,0,1991,NULL,2,0,11958),(6848,0,1991,NULL,3,0,11959),(8148,0,2343,NULL,1,0,11960),(8149,0,2343,NULL,2,0,11961),(8150,0,2343,NULL,3,0,11962),(8151,0,2343,NULL,4,0,11963),(8432,0,2417,NULL,1,0,11964),(8433,0,2417,NULL,2,0,11965),(8434,0,2417,NULL,3,0,11966),(8435,0,2417,NULL,4,0,11967),(8741,0,2507,NULL,1,0,11968),(8742,0,2507,NULL,2,0,11969),(8743,0,2507,NULL,3,0,11970),(8744,0,2507,NULL,4,0,11971),(8781,0,2517,NULL,1,0,11972),(8782,0,2517,NULL,2,0,11973),(8783,0,2517,NULL,3,0,11974),(8784,0,2517,NULL,4,0,11975),(6880,0,2001,NULL,0,0,11976),(6881,0,2001,NULL,1,0,11977),(6882,0,2001,NULL,2,0,11978),(6883,0,2001,NULL,3,0,11979),(6950,0,2020,NULL,0,0,11980),(6951,0,2020,NULL,1,0,11981),(6952,0,2020,NULL,2,0,11982),(6916,0,2010,NULL,1,0,11983),(6917,0,2010,NULL,2,0,11984),(6918,0,2010,NULL,3,0,11985),(6919,0,2010,NULL,4,0,11986),(6995,0,2032,NULL,0,0,11987),(6996,0,2032,NULL,1,0,11988),(6997,0,2032,NULL,2,0,11989),(7086,0,2055,NULL,0,0,11990),(7087,0,2055,NULL,1,0,11991),(7088,0,2055,NULL,2,0,11992),(7089,0,2055,NULL,3,0,11993),(6985,0,2029,NULL,1,0,11994),(6986,0,2029,NULL,2,0,11995),(6987,0,2029,NULL,3,0,11996),(6988,0,2029,NULL,4,0,11997),(8883,0,2017,NULL,6,0,11998),(8884,0,2017,NULL,7,0,11999),(8885,0,2017,NULL,8,0,12000),(8886,0,2017,NULL,9,0,12001),(8887,0,2017,NULL,10,0,12002),(8229,0,2366,NULL,1,0,12003),(8230,0,2366,NULL,2,0,12004),(8231,0,2366,NULL,3,0,12005),(8232,0,2366,NULL,4,0,12006),(7157,0,2077,NULL,1,0,12007),(7158,0,2077,NULL,2,0,12008),(7159,0,2077,NULL,3,0,12009),(7160,0,2077,NULL,4,0,12010),(7066,0,2050,NULL,1,0,12011),(7067,0,2050,NULL,2,0,12012),(7068,0,2050,NULL,3,0,12013),(7069,0,2050,NULL,4,0,12014),(7205,0,2089,NULL,0,0,12015),(7206,0,2089,NULL,1,0,12016),(7207,0,2089,NULL,2,0,12017),(7208,0,2089,NULL,3,0,12018),(7098,0,2060,NULL,1,0,12019),(7099,0,2060,NULL,2,0,12020),(7269,0,2105,NULL,0,0,12021),(7270,0,2105,NULL,1,0,12022),(7271,0,2105,NULL,2,0,12023),(7272,0,2105,NULL,3,0,12024),(7116,0,2065,NULL,1,0,12025),(7117,0,2065,NULL,2,0,12026),(7118,0,2065,NULL,3,0,12027),(7119,0,2065,NULL,4,0,12028),(7138,0,2072,NULL,1,0,12032),(7139,0,2072,NULL,2,0,12033),(7140,0,2072,NULL,3,0,12034),(7396,0,2138,NULL,0,0,12035),(7397,0,2138,NULL,1,0,12036),(7398,0,2138,NULL,2,0,12037),(7185,0,2084,NULL,1,0,12038),(7186,0,2084,NULL,2,0,12039),(7187,0,2084,NULL,3,0,12040),(7188,0,2084,NULL,4,0,12041),(7241,0,2098,NULL,1,0,12042),(7242,0,2098,NULL,2,0,12043),(7243,0,2098,NULL,3,0,12044),(7244,0,2098,NULL,4,0,12045),(7439,0,2149,NULL,0,0,12046),(7440,0,2149,NULL,1,0,12047),(7441,0,2149,NULL,2,0,12048),(7442,0,2149,NULL,3,0,12049),(7443,0,2149,NULL,4,0,12050),(7313,0,2116,NULL,1,0,12051),(7314,0,2116,NULL,2,0,12052),(7315,0,2116,NULL,3,0,12053),(7316,0,2116,NULL,4,0,12054),(7517,0,2171,NULL,0,0,12055),(7518,0,2171,NULL,1,0,12056),(7519,0,2171,NULL,2,0,12057),(7520,0,2171,NULL,3,0,12058),(7521,0,2171,NULL,4,0,12059),(7522,0,2171,NULL,5,0,12060),(7523,0,2171,NULL,6,0,12061),(7341,0,2123,NULL,1,0,12062),(7342,0,2123,NULL,2,0,12063),(7343,0,2123,NULL,3,0,12064),(7344,0,2123,NULL,4,0,12065),(7582,0,2190,NULL,0,0,12066),(7583,0,2190,NULL,1,0,12067),(7584,0,2190,NULL,2,0,12068),(7585,0,2190,NULL,3,0,12069),(7377,0,2132,NULL,1,0,12070),(7378,0,2132,NULL,2,0,12071),(7379,0,2132,NULL,3,0,12072),(7380,0,2132,NULL,4,0,12073),(7650,0,2207,NULL,0,0,12074),(7651,0,2207,NULL,1,0,12075),(7652,0,2207,NULL,2,0,12076),(7653,0,2207,NULL,3,0,12077),(7654,0,2207,NULL,4,0,12078),(7655,0,2207,NULL,5,0,12079),(7423,0,2145,NULL,1,0,12080),(7424,0,2145,NULL,2,0,12081),(7425,0,2145,NULL,3,0,12082),(7426,0,2145,NULL,4,0,12083),(7672,0,2212,NULL,0,0,12084),(7673,0,2212,NULL,1,0,12085),(7674,0,2212,NULL,2,0,12086),(7675,0,2212,NULL,3,0,12087),(7472,0,2157,NULL,1,0,12088),(7473,0,2157,NULL,2,0,12089),(7474,0,2157,NULL,3,0,12090),(7475,0,2157,NULL,4,0,12091),(7506,0,2168,NULL,1,0,12092),(7507,0,2168,NULL,2,0,12093),(7508,0,2168,NULL,3,0,12094),(7712,0,2222,NULL,0,0,12095),(7713,0,2222,NULL,1,0,12096),(7714,0,2222,NULL,2,0,12097),(7715,0,2222,NULL,3,0,12098),(7716,0,2222,NULL,4,0,12099),(7717,0,2222,NULL,5,0,12100),(7762,0,2234,NULL,0,0,12101),(7763,0,2234,NULL,1,0,12102),(7764,0,2234,NULL,2,0,12103),(7765,0,2234,NULL,3,0,12104),(7542,0,2178,NULL,1,0,12105),(7543,0,2178,NULL,2,0,12106),(7544,0,2178,NULL,3,0,12107),(7563,0,2185,NULL,1,0,12108),(7564,0,2185,NULL,2,0,12109),(7565,0,2185,NULL,3,0,12110),(7826,0,2255,NULL,0,0,12111),(7827,0,2255,NULL,1,0,12112),(7828,0,2255,NULL,2,0,12113),(7610,0,2197,NULL,1,0,12114),(7611,0,2197,NULL,2,0,12115),(7612,0,2197,NULL,3,0,12116),(7613,0,2197,NULL,4,0,12117),(8170,0,2350,NULL,1,0,12118),(8171,0,2350,NULL,2,0,12119),(8172,0,2350,NULL,3,0,12120),(7638,0,2204,NULL,1,0,12121),(7639,0,2204,NULL,2,0,12122),(7640,0,2204,NULL,3,0,12123),(7641,0,2204,NULL,4,0,12124),(7700,0,2219,NULL,1,0,12125),(7701,0,2219,NULL,2,0,12126),(7702,0,2219,NULL,3,0,12127),(7703,0,2219,NULL,4,0,12128),(7742,0,2229,NULL,1,0,12129),(7743,0,2229,NULL,2,0,12130),(7744,0,2229,NULL,3,0,12131),(7745,0,2229,NULL,4,0,12132),(8257,0,2373,NULL,0,0,12133),(8258,0,2373,NULL,1,0,12134),(8259,0,2373,NULL,2,0,12135),(8260,0,2373,NULL,3,0,12136),(7796,0,2245,NULL,0,0,12137),(7797,0,2245,NULL,1,0,12138),(7798,0,2245,NULL,2,0,12139),(7817,0,2252,NULL,1,0,12140),(7818,0,2252,NULL,2,0,12141),(7819,0,2252,NULL,3,0,12142),(8333,0,2396,NULL,0,0,12143),(8334,0,2396,NULL,1,0,12144),(8335,0,2396,NULL,2,0,12145),(8336,0,2396,NULL,3,0,12146),(7865,0,2268,NULL,1,0,12147),(7866,0,2268,NULL,2,0,12148),(7867,0,2268,NULL,3,0,12149),(8872,0,2542,NULL,1,0,12150),(8873,0,2542,NULL,2,0,12151),(8874,0,2542,NULL,3,0,12152),(8875,0,2542,NULL,4,0,12153),(8376,0,2403,NULL,1,0,12154),(8377,0,2403,NULL,2,0,12155),(8378,0,2403,NULL,3,0,12156),(8379,0,2403,NULL,4,0,12157),(8404,0,2410,NULL,1,0,12158),(8405,0,2410,NULL,2,0,12159),(8406,0,2410,NULL,3,0,12160),(8407,0,2410,NULL,4,0,12161),(7928,0,2284,NULL,1,0,12162),(7929,0,2284,NULL,2,0,12163),(7930,0,2284,NULL,3,0,12164),(7931,0,2284,NULL,4,0,12165),(7950,0,2291,NULL,1,0,12166),(7951,0,2291,NULL,2,0,12167),(7952,0,2291,NULL,3,0,12168),(8065,0,2320,NULL,1,0,12177),(8066,0,2320,NULL,2,0,12178),(8067,0,2320,NULL,3,0,12179),(8068,0,2320,NULL,4,0,12180),(8837,0,2533,NULL,1,0,12181),(8838,0,2533,NULL,2,0,12182),(8839,0,2533,NULL,3,0,12183),(8888,0,2357,NULL,5,0,12184),(8889,0,2357,NULL,6,0,12185),(8890,0,2357,NULL,7,0,12186),(8891,0,2357,NULL,8,0,12187),(8460,0,2424,NULL,1,0,12188),(8461,0,2424,NULL,2,0,12189),(8462,0,2424,NULL,3,0,12190),(8463,0,2424,NULL,4,0,12191),(8488,0,2431,NULL,1,0,12192),(8489,0,2431,NULL,2,0,12193),(8490,0,2431,NULL,3,0,12194),(8491,0,2431,NULL,4,0,12195),(8524,0,2440,NULL,0,0,12196),(8525,0,2440,NULL,1,0,12197),(8526,0,2440,NULL,2,0,12198),(8527,0,2440,NULL,3,0,12199),(8573,0,2456,NULL,1,0,12200),(8574,0,2456,NULL,2,0,12201),(8575,0,2456,NULL,3,0,12202),(8600,0,2465,NULL,1,0,12203),(8601,0,2465,NULL,2,0,12204),(8602,0,2465,NULL,3,0,12205),(8639,0,2478,NULL,0,0,12206),(8640,0,2478,NULL,1,0,12207),(8641,0,2478,NULL,2,0,12208),(8674,0,2487,NULL,0,0,12209),(8675,0,2487,NULL,1,0,12210),(8676,0,2487,NULL,2,0,12211),(8677,0,2487,NULL,3,0,12212),(8714,0,2500,NULL,0,0,12213),(8715,0,2500,NULL,1,0,12214),(8716,0,2500,NULL,2,0,12215),(6861,0,1996,NULL,1,0,12216),(6862,0,1996,NULL,2,0,12217),(6863,0,1996,NULL,3,0,12218),(7387,0,2135,NULL,0,0,12225),(7388,0,2135,NULL,1,0,12226),(7389,0,2135,NULL,2,0,12227),(7985,0,2300,NULL,1,0,12228),(7986,0,2300,NULL,2,0,12229),(7987,0,2300,NULL,3,0,12230),(7988,0,2300,NULL,4,0,12231),(8021,0,2309,NULL,1,0,12236),(8022,0,2309,NULL,2,0,12237),(8023,0,2309,NULL,3,0,12238),(8024,0,2309,NULL,4,0,12239);
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value` ENABLE KEYS */;
UNLOCK TABLES;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_media_gallery_value_after_insert AFTER INSERT ON catalog_product_entity_media_gallery_value FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_media_gallery_value_after_update AFTER UPDATE ON catalog_product_entity_media_gallery_value FOR EACH ROW
BEGIN
IF (NEW.`value_id` <=> OLD.`value_id` OR NEW.`store_id` <=> OLD.`store_id` OR NEW.`entity_id` <=> OLD.`entity_id` OR NEW.`label` <=> OLD.`label` OR NEW.`position` <=> OLD.`position` OR NEW.`disabled` <=> OLD.`disabled` OR NEW.`record_id` <=> OLD.`record_id`) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_media_gallery_value_after_delete AFTER DELETE ON catalog_product_entity_media_gallery_value FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

--
-- Table structure for table `catalog_product_entity_media_gallery_value_to_entity`
--

DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value_to_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_entity_media_gallery_value_to_entity` (
  `value_id` int(10) unsigned NOT NULL COMMENT 'Value media Entry ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Product Entity ID',
  UNIQUE KEY `CAT_PRD_ENTT_MDA_GLR_VAL_TO_ENTT_VAL_ID_ENTT_ID` (`value_id`,`entity_id`),
  KEY `CAT_PRD_ENTT_MDA_GLR_VAL_TO_ENTT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` (`entity_id`),
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_TO_ENTT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_A6C6C8FAA386736921D3A7C4B50B1185` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Link Media value to Product entity table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_media_gallery_value_to_entity`
--

LOCK TABLES `catalog_product_entity_media_gallery_value_to_entity` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_to_entity` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_media_gallery_value_to_entity` VALUES (1,1),(2,1),(3,1),(4,1),(5,2),(6,2),(7,2),(8,2),(950,3),(951,3),(952,3),(953,3),(14,4),(15,4),(16,4),(17,4),(1335,5),(1336,5),(1337,5),(1338,5),(22,6),(23,6),(24,6),(25,6),(26,7),(27,7),(28,7),(29,7),(30,7),(1447,8),(1448,8),(1449,8),(34,9),(35,9),(36,9),(37,9),(38,10),(39,10),(40,10),(41,10),(42,11),(43,11),(44,11),(45,11),(46,12),(47,12),(48,12),(49,12),(1271,15),(1272,15),(1273,15),(1274,15),(62,16),(63,16),(64,16),(65,16),(66,17),(67,17),(68,17),(69,17),(70,18),(71,18),(72,18),(73,18),(74,19),(75,19),(76,19),(806,20),(807,20),(808,20),(809,20),(85,22),(86,22),(87,22),(88,22),(93,24),(94,24),(95,24),(96,25),(97,25),(98,25),(99,25),(100,26),(101,26),(102,26),(103,26),(1167,29),(1168,29),(1169,29),(1170,29),(112,30),(113,30),(114,30),(115,30),(116,31),(117,31),(118,31),(119,31),(124,32),(125,32),(126,32),(127,32),(128,33),(129,33),(130,33),(131,33),(132,34),(133,34),(134,34),(1044,35),(1045,35),(1046,35),(138,36),(139,36),(140,36),(145,38),(146,38),(147,38),(184,41),(185,41),(186,41),(187,41),(1684,42),(1685,42),(1686,42),(156,43),(157,43),(158,43),(159,44),(160,44),(161,44),(162,44),(167,45),(168,45),(169,45),(170,45),(1399,46),(1400,46),(1401,46),(1510,47),(1511,47),(1512,47),(177,48),(178,48),(179,48),(180,48),(1621,49),(1622,49),(1623,49),(205,50),(206,50),(207,50),(208,50),(192,51),(193,51),(194,51),(1573,53),(1574,53),(1575,53),(202,54),(203,54),(204,54),(209,55),(210,55),(211,55),(220,56),(221,56),(222,56),(223,56),(216,57),(217,57),(218,57),(219,57),(224,58),(225,58),(226,58),(227,58),(247,59),(248,59),(249,59),(250,59),(278,60),(279,60),(280,60),(255,61),(256,61),(257,61),(258,61),(240,63),(241,63),(242,63),(243,63),(270,64),(271,64),(272,64),(273,64),(281,65),(282,65),(283,65),(284,65),(263,66),(264,66),(265,66),(266,66),(274,68),(275,68),(276,68),(277,68),(319,69),(320,69),(321,69),(311,70),(312,70),(313,70),(314,70),(307,71),(308,71),(309,71),(310,71),(322,72),(323,72),(324,72),(325,72),(341,73),(342,73),(343,73),(344,73),(330,74),(331,74),(332,74),(333,74),(364,75),(365,75),(366,75),(337,76),(338,76),(339,76),(340,76),(353,77),(354,77),(355,77),(356,77),(349,78),(350,78),(351,78),(352,78),(357,79),(358,79),(359,79),(367,80),(368,80),(369,80),(370,80),(375,81),(376,81),(377,81),(378,81),(393,82),(394,82),(395,82),(408,83),(409,83),(410,83),(411,83),(402,84),(403,84),(404,84),(399,85),(400,85),(401,85),(419,86),(420,86),(421,86),(431,87),(432,87),(433,87),(434,87),(416,88),(417,88),(418,88),(428,89),(429,89),(430,89),(443,91),(444,91),(445,91),(446,91),(451,92),(452,92),(453,92),(454,92),(459,93),(460,93),(461,93),(462,93),(477,95),(478,95),(479,95),(480,95),(474,97),(475,97),(476,97),(488,98),(489,98),(490,98),(491,98),(2045,99),(2046,99),(2047,99),(496,100),(497,100),(498,100),(499,100),(500,101),(501,101),(502,101),(503,101),(508,102),(509,102),(510,102),(511,102),(516,103),(517,103),(518,103),(519,103),(524,104),(525,104),(526,104),(527,104),(540,105),(541,105),(542,105),(543,105),(548,106),(549,106),(550,106),(551,106),(556,107),(557,107),(558,107),(559,107),(564,108),(565,108),(566,108),(567,108),(583,109),(584,109),(585,109),(586,109),(576,110),(577,110),(578,110),(579,110),(580,111),(581,111),(582,111),(595,112),(596,112),(597,112),(598,112),(606,113),(607,113),(608,113),(609,113),(603,114),(604,114),(605,114),(617,115),(618,115),(619,115),(620,115),(614,116),(615,116),(616,116),(625,117),(626,117),(627,117),(628,117),(629,118),(630,118),(631,118),(632,119),(633,119),(634,119),(638,120),(639,120),(640,120),(641,121),(642,121),(643,121),(647,122),(648,122),(649,122),(653,123),(654,123),(655,124),(656,124),(657,124),(658,124),(659,124),(660,124),(661,125),(662,125),(663,125),(664,125),(665,125),(666,126),(667,126),(668,126),(669,126),(670,126),(671,126),(672,126),(673,127),(674,127),(675,127),(676,127),(677,127),(678,127),(679,128),(680,128),(681,128),(682,128),(683,128),(684,128),(3081,130),(3082,130),(3083,130),(3078,131),(3079,131),(3080,131),(4596,157),(4597,157),(4598,157),(4599,157),(4592,158),(4593,158),(4594,158),(4595,158),(4600,159),(4601,159),(4602,159),(4603,159),(4271,163),(4272,163),(4273,163),(4274,163),(4267,164),(4268,164),(4269,164),(4270,164),(4275,165),(4276,165),(4277,165),(4278,165),(3228,166),(3229,166),(3230,166),(3231,166),(3216,167),(3217,167),(3218,167),(3219,167),(3220,168),(3221,168),(3222,168),(3223,168),(3224,169),(3225,169),(3226,169),(3227,169),(3312,170),(3313,170),(3314,170),(3315,170),(3316,171),(3317,171),(3318,171),(3319,171),(3518,172),(3519,172),(3520,172),(3521,172),(3510,173),(3511,173),(3512,173),(3513,173),(3514,174),(3515,174),(3516,174),(3517,174),(3280,186),(3281,186),(3282,186),(3283,186),(3284,187),(3285,187),(3286,187),(3287,187),(3288,188),(3289,188),(3290,188),(3291,188),(3292,189),(3293,189),(3294,189),(3295,189),(3922,190),(3923,190),(3924,190),(3925,190),(3934,191),(3935,191),(3936,191),(3937,191),(3926,192),(3927,192),(3928,192),(3929,192),(3930,193),(3931,193),(3932,193),(3933,193),(3761,194),(3762,194),(3763,194),(3755,195),(3756,195),(3757,195),(3758,196),(3759,196),(3760,196),(4195,203),(4196,203),(4197,203),(4198,203),(4191,204),(4192,204),(4193,204),(4194,204),(4199,205),(4200,205),(4201,205),(4202,205),(4203,206),(4204,206),(4205,206),(4206,206),(4387,207),(4388,207),(4389,207),(4390,208),(4391,208),(4392,208),(4384,209),(4385,209),(4386,209),(3434,217),(3435,217),(3436,217),(3437,217),(3422,218),(3423,218),(3424,218),(3425,218),(3426,219),(3427,219),(3428,219),(3429,219),(3430,220),(3431,220),(3432,220),(3433,220),(3438,221),(3439,221),(3440,221),(3441,221),(4295,228),(4296,228),(4297,228),(4298,228),(4291,229),(4292,229),(4293,229),(4294,229),(4299,230),(4300,230),(4301,230),(4302,230),(4431,231),(4432,231),(4433,231),(4434,231),(4435,232),(4436,232),(4437,232),(4438,232),(4547,233),(4548,233),(4549,233),(4550,233),(4551,234),(4552,234),(4553,234),(4554,234),(3164,235),(3165,235),(3166,235),(3167,235),(3168,236),(3169,236),(3170,236),(3171,236),(3160,237),(3161,237),(3162,237),(3163,237),(3172,238),(3173,238),(3174,238),(3175,238),(3894,257),(3895,257),(3896,257),(3897,257),(3898,258),(3899,258),(3900,258),(3901,258),(3890,259),(3891,259),(3892,259),(3893,259),(3902,260),(3903,260),(3904,260),(3905,260),(2141,265),(2142,265),(2143,265),(2144,266),(2145,266),(2146,266),(2138,267),(2139,267),(2140,267),(2150,268),(2151,268),(2152,268),(2147,269),(2148,269),(2149,269),(4624,270),(4625,270),(4626,270),(4627,270),(4628,271),(4629,271),(4630,271),(4631,271),(3962,272),(3963,272),(3964,272),(3965,272),(3966,273),(3967,273),(3968,273),(3969,273),(3958,274),(3959,274),(3960,274),(3961,274),(3970,275),(3971,275),(3972,275),(3973,275),(3974,276),(3975,276),(3976,276),(3977,276),(4455,285),(4456,285),(4457,285),(4458,285),(4459,286),(4460,286),(4461,286),(4462,286),(3844,290),(3845,290),(3846,290),(3847,290),(3848,291),(3849,291),(3850,291),(3851,291),(3852,292),(3853,292),(3854,292),(3855,292),(3785,300),(3786,300),(3787,300),(3788,301),(3789,301),(3790,301),(3782,302),(3783,302),(3784,302),(3791,303),(3792,303),(3793,303),(3794,304),(3795,304),(3796,304),(3797,305),(3798,305),(3799,305),(4219,309),(4220,309),(4221,309),(4222,309),(4223,310),(4224,310),(4225,310),(4226,310),(4227,311),(4228,311),(4229,311),(4230,311),(4062,312),(4063,312),(4064,312),(4065,312),(4066,313),(4067,313),(4068,313),(4069,313),(4058,314),(4059,314),(4060,314),(4061,314),(4054,315),(4055,315),(4056,315),(4057,315),(4407,316),(4408,316),(4409,316),(4410,316),(4411,317),(4412,317),(4413,317),(4414,317),(3542,318),(3543,318),(3544,318),(3545,318),(3546,319),(3547,319),(3548,319),(3549,319),(3538,320),(3539,320),(3540,320),(3541,320),(3550,321),(3551,321),(3552,321),(3553,321),(4020,322),(4021,322),(4022,322),(4023,323),(4024,323),(4025,323),(4026,324),(4027,324),(4028,324),(4029,325),(4030,325),(4031,325),(4032,326),(4033,326),(4034,326),(4035,327),(4036,327),(4037,327),(4563,328),(4564,328),(4565,328),(4566,328),(4567,329),(4568,329),(4569,329),(4570,329),(3482,334),(3483,334),(3484,334),(3485,334),(3486,335),(3487,335),(3488,335),(3489,335),(3490,336),(3491,336),(3492,336),(3493,336),(3494,337),(3495,337),(3496,337),(3497,337),(4515,338),(4516,338),(4517,338),(4518,338),(4511,339),(4512,339),(4513,339),(4514,339),(4519,340),(4520,340),(4521,340),(4522,340),(2655,341),(2656,341),(2657,341),(2658,341),(2659,342),(2660,342),(2661,342),(2662,342),(2663,343),(2664,343),(2665,343),(2666,343),(2667,344),(2668,344),(2669,344),(2670,344),(2671,345),(2672,345),(2673,345),(2674,345),(3993,350),(3994,350),(3995,350),(3990,351),(3991,351),(3992,351),(3996,352),(3997,352),(3998,352),(3999,353),(4000,353),(4001,353),(3252,354),(3253,354),(3254,354),(3255,354),(3248,355),(3249,355),(3250,355),(3251,355),(3260,356),(3261,356),(3262,356),(3263,356),(3256,357),(3257,357),(3258,357),(3259,357),(3096,358),(3097,358),(3098,358),(3099,358),(3100,359),(3101,359),(3102,359),(3103,359),(3104,360),(3105,360),(3106,360),(3107,360),(3358,364),(3359,364),(3360,364),(3361,364),(3362,365),(3363,365),(3364,365),(3365,365),(3354,366),(3355,366),(3356,366),(3357,366),(3366,367),(3367,367),(3368,367),(3369,367),(3804,368),(3805,368),(3806,368),(3807,368),(3800,369),(3801,369),(3802,369),(3803,369),(3808,370),(3809,370),(3810,370),(3811,370),(3812,371),(3813,371),(3814,371),(3815,371),(3820,372),(3821,372),(3822,372),(3823,372),(3816,373),(3817,373),(3818,373),(3819,373),(3824,374),(3825,374),(3826,374),(3827,374),(3828,375),(3829,375),(3830,375),(3831,375),(4531,378),(4532,378),(4533,378),(4534,378),(4535,379),(4536,379),(4537,379),(4538,379),(3731,380),(3732,380),(3733,380),(3737,381),(3738,381),(3739,381),(3740,382),(3741,382),(3742,382),(3743,383),(3744,383),(3745,383),(3734,384),(3735,384),(3736,384),(3040,385),(3041,385),(3042,385),(3043,385),(3036,386),(3037,386),(3038,386),(3039,386),(3044,387),(3045,387),(3046,387),(3047,387),(4247,388),(4248,388),(4249,388),(4250,388),(4243,389),(4244,389),(4245,389),(4246,389),(4251,390),(4252,390),(4253,390),(4254,390),(3390,397),(3391,397),(3392,397),(3393,397),(3386,398),(3387,398),(3388,398),(3389,398),(3398,399),(3399,399),(3400,399),(3401,399),(3394,400),(3395,400),(3396,400),(3397,400),(3569,407),(3570,407),(3571,407),(3572,408),(3573,408),(3574,408),(3575,409),(3576,409),(3577,409),(3578,410),(3579,410),(3580,410),(3581,411),(3582,411),(3583,411),(4085,416),(4086,416),(4087,416),(4088,417),(4089,417),(4090,417),(4091,418),(4092,418),(4093,418),(4097,419),(4098,419),(4099,419),(4094,420),(4095,420),(4096,420),(4100,421),(4101,421),(4102,421),(4103,422),(4104,422),(4105,422),(4106,423),(4107,423),(4108,423),(4112,424),(4113,424),(4114,424),(4109,425),(4110,425),(4111,425),(2852,437),(2853,437),(2854,437),(2855,437),(2860,438),(2861,438),(2862,438),(2863,438),(2856,439),(2857,439),(2858,439),(2859,439),(2684,440),(2685,440),(2686,440),(2687,441),(2688,441),(2689,441),(2690,442),(2691,442),(2692,442),(4133,449),(4134,449),(4135,449),(4136,450),(4137,450),(4138,450),(4139,451),(4140,451),(4141,451),(4145,452),(4146,452),(4147,452),(4142,453),(4143,453),(4144,453),(4148,454),(4149,454),(4150,454),(2964,455),(2965,455),(2966,455),(2967,455),(2968,456),(2969,456),(2970,456),(2971,456),(2972,457),(2973,457),(2974,457),(2975,457),(2936,461),(2937,461),(2938,461),(2939,461),(2940,462),(2941,462),(2942,462),(2943,462),(2948,463),(2949,463),(2950,463),(2951,463),(2944,464),(2945,464),(2946,464),(2947,464),(3012,465),(3013,465),(3014,465),(3015,465),(3016,466),(3017,466),(3018,466),(3019,466),(3020,467),(3021,467),(3022,467),(3023,467),(2904,471),(2905,471),(2906,471),(2907,471),(2916,472),(2917,472),(2918,472),(2919,472),(2908,473),(2909,473),(2910,473),(2911,473),(2912,474),(2913,474),(2914,474),(2915,474),(2988,478),(2989,478),(2990,478),(2991,478),(2992,479),(2993,479),(2994,479),(2995,479),(2996,480),(2997,480),(2998,480),(2999,480),(2876,488),(2877,488),(2878,488),(2879,488),(2880,489),(2881,489),(2882,489),(2883,489),(2884,490),(2885,490),(2886,490),(2887,490),(3708,495),(3709,495),(3710,495),(3711,495),(3704,496),(3705,496),(3706,496),(3707,496),(3712,497),(3713,497),(3714,497),(3715,497),(3636,498),(3637,498),(3638,498),(3639,498),(3632,499),(3633,499),(3634,499),(3635,499),(3640,500),(3641,500),(3642,500),(3643,500),(3136,501),(3137,501),(3138,501),(3139,501),(3132,502),(3133,502),(3134,502),(3135,502),(3140,503),(3141,503),(3142,503),(3143,503),(3442,504),(3443,504),(3444,504),(3445,504),(3446,505),(3447,505),(3448,505),(3449,505),(3450,506),(3451,506),(3452,506),(3453,506),(3454,507),(3455,507),(3456,507),(3457,507),(3458,508),(3459,508),(3460,508),(3461,508),(3462,509),(3463,509),(3464,509),(3465,509),(4339,510),(4340,510),(4341,510),(4342,510),(4343,511),(4344,511),(4345,511),(4346,511),(4347,512),(4348,512),(4349,512),(4350,512),(4315,513),(4316,513),(4317,513),(4318,513),(4319,514),(4320,514),(4321,514),(4322,514),(4323,515),(4324,515),(4325,515),(4326,515),(4574,516),(4575,516),(4576,516),(4363,517),(4364,517),(4365,517),(4366,517),(4367,518),(4368,518),(4369,518),(4370,518),(4371,519),(4372,519),(4373,519),(4374,519),(3680,520),(3681,520),(3682,520),(3683,520),(3684,521),(3685,521),(3686,521),(3687,521),(3688,522),(3689,522),(3690,522),(3691,522),(4396,523),(4397,523),(4398,523),(3593,524),(3594,524),(3595,524),(3596,525),(3597,525),(3598,525),(3599,526),(3600,526),(3601,526),(4580,527),(4581,527),(4582,527),(3656,528),(3657,528),(3658,528),(3659,528),(3660,529),(3661,529),(3662,529),(3663,529),(3664,530),(3665,530),(3666,530),(3667,530),(4496,531),(4497,531),(4498,531),(3865,532),(3866,532),(3867,532),(3868,533),(3869,533),(3870,533),(3871,534),(3872,534),(3873,534),(3329,535),(3330,535),(3331,535),(3332,536),(3333,536),(3334,536),(3335,537),(3336,537),(3337,537),(3611,538),(3612,538),(3613,538),(3614,539),(3615,539),(3616,539),(3617,540),(3618,540),(3619,540),(4490,541),(4491,541),(4492,541),(3300,542),(3301,542),(3302,543),(3303,543),(4483,544),(4484,544),(4485,544),(4486,544),(4475,545),(4476,545),(4477,545),(4478,545),(4467,546),(4468,546),(4469,546),(4470,546),(4443,547),(4444,547),(4445,547),(4446,547),(4419,548),(4420,548),(4421,548),(4422,548),(686,549),(687,549),(688,549),(689,549),(690,550),(691,550),(692,550),(693,550),(694,551),(695,551),(696,551),(697,551),(698,552),(699,552),(700,552),(701,552),(702,553),(703,553),(704,553),(705,553),(706,554),(707,554),(708,554),(709,554),(710,555),(711,555),(712,555),(713,555),(714,556),(715,556),(716,556),(717,556),(718,557),(719,557),(720,557),(721,557),(722,558),(723,558),(724,558),(725,558),(726,559),(727,559),(728,559),(729,559),(730,560),(731,560),(732,560),(733,560),(734,561),(735,561),(736,561),(737,561),(738,562),(739,562),(740,562),(741,562),(742,563),(743,563),(744,563),(745,563),(746,564),(747,564),(748,564),(749,564),(750,565),(751,565),(752,565),(753,565),(754,566),(755,566),(756,566),(757,566),(758,567),(759,567),(760,567),(761,567),(762,568),(763,568),(764,568),(765,568),(766,569),(767,569),(768,569),(769,569),(770,570),(771,570),(772,570),(773,570),(774,571),(775,571),(776,571),(777,571),(778,572),(779,572),(780,572),(781,572),(782,573),(783,573),(784,573),(785,573),(786,574),(787,574),(788,574),(789,574),(790,575),(791,575),(792,575),(793,575),(794,576),(795,576),(796,576),(797,576),(798,577),(799,577),(800,577),(801,577),(802,578),(803,578),(804,578),(805,578),(810,579),(811,579),(812,579),(813,579),(814,580),(815,580),(816,580),(817,580),(818,581),(819,581),(820,581),(821,581),(822,582),(823,582),(824,582),(825,582),(826,583),(827,583),(828,583),(829,583),(830,584),(831,584),(832,584),(833,584),(834,585),(835,585),(836,585),(837,585),(838,586),(839,586),(840,586),(841,586),(842,587),(843,587),(844,587),(845,587),(846,588),(847,588),(848,588),(849,588),(850,589),(851,589),(852,589),(853,589),(854,590),(855,590),(856,590),(857,590),(858,591),(859,591),(860,591),(861,591),(862,592),(863,592),(864,592),(865,592),(866,593),(867,593),(868,593),(869,593),(870,594),(871,594),(872,594),(873,594),(874,595),(875,595),(876,595),(877,595),(878,596),(879,596),(880,596),(881,596),(882,597),(883,597),(884,597),(885,597),(886,598),(887,598),(888,598),(889,598),(890,599),(891,599),(892,599),(893,599),(894,600),(895,600),(896,600),(897,600),(898,601),(899,601),(900,601),(901,601),(902,602),(903,602),(904,602),(905,602),(906,603),(907,603),(908,603),(909,603),(910,604),(911,604),(912,604),(913,604),(914,605),(915,605),(916,605),(917,605),(918,606),(919,606),(920,606),(921,606),(922,607),(923,607),(924,607),(925,607),(926,608),(927,608),(928,608),(929,608),(930,609),(931,609),(932,609),(933,609),(934,610),(935,610),(936,610),(937,610),(938,611),(939,611),(940,611),(941,611),(942,612),(943,612),(944,612),(945,612),(946,613),(947,613),(948,613),(949,613),(954,614),(955,614),(956,614),(957,615),(958,615),(959,615),(960,616),(961,616),(962,616),(963,617),(964,617),(965,617),(966,618),(967,618),(968,618),(969,619),(970,619),(971,619),(972,620),(973,620),(974,620),(975,621),(976,621),(977,621),(978,622),(979,622),(980,622),(981,623),(982,623),(983,623),(984,624),(985,624),(986,624),(987,625),(988,625),(989,625),(990,626),(991,626),(992,626),(993,627),(994,627),(995,627),(996,628),(997,628),(998,628),(999,629),(1000,629),(1001,629),(1002,630),(1003,630),(1004,630),(1005,631),(1006,631),(1007,631),(1008,632),(1009,632),(1010,632),(1011,633),(1012,633),(1013,633),(1014,634),(1015,634),(1016,634),(1017,635),(1018,635),(1019,635),(1020,636),(1021,636),(1022,636),(1023,637),(1024,637),(1025,637),(1026,638),(1027,638),(1028,638),(1029,639),(1030,639),(1031,639),(1032,640),(1033,640),(1034,640),(1035,641),(1036,641),(1037,641),(1038,642),(1039,642),(1040,642),(1041,643),(1042,643),(1043,643),(1047,644),(1048,644),(1049,644),(1050,644),(1051,645),(1052,645),(1053,645),(1054,645),(1055,646),(1056,646),(1057,646),(1058,646),(1059,647),(1060,647),(1061,647),(1062,647),(1063,648),(1064,648),(1065,648),(1066,648),(1067,649),(1068,649),(1069,649),(1070,649),(1071,650),(1072,650),(1073,650),(1074,650),(1075,651),(1076,651),(1077,651),(1078,651),(1079,652),(1080,652),(1081,652),(1082,652),(1083,653),(1084,653),(1085,653),(1086,653),(1087,654),(1088,654),(1089,654),(1090,654),(1091,655),(1092,655),(1093,655),(1094,655),(1095,656),(1096,656),(1097,656),(1098,656),(1099,657),(1100,657),(1101,657),(1102,657),(1103,658),(1104,658),(1105,658),(1106,658),(1107,659),(1108,659),(1109,659),(1110,659),(1111,660),(1112,660),(1113,660),(1114,660),(1115,661),(1116,661),(1117,661),(1118,661),(1119,662),(1120,662),(1121,662),(1122,662),(1123,663),(1124,663),(1125,663),(1126,663),(1127,664),(1128,664),(1129,664),(1130,664),(1131,665),(1132,665),(1133,665),(1134,665),(1135,666),(1136,666),(1137,666),(1138,666),(1139,667),(1140,667),(1141,667),(1142,667),(1143,668),(1144,668),(1145,668),(1146,668),(1147,669),(1148,669),(1149,669),(1150,669),(1151,670),(1152,670),(1153,670),(1154,670),(1155,671),(1156,671),(1157,671),(1158,671),(1159,672),(1160,672),(1161,672),(1162,672),(1163,673),(1164,673),(1165,673),(1166,673),(1171,674),(1172,674),(1173,674),(1174,674),(1175,675),(1176,675),(1177,675),(1178,675),(1179,676),(1180,676),(1181,676),(1182,676),(1183,677),(1184,677),(1185,677),(1186,677),(1187,678),(1188,678),(1189,678),(1190,678),(1191,679),(1192,679),(1193,679),(1194,679),(1195,680),(1196,680),(1197,680),(1198,680),(1199,681),(1200,681),(1201,681),(1202,681),(1203,682),(1204,682),(1205,682),(1206,682),(1207,683),(1208,683),(1209,683),(1210,683),(1211,684),(1212,684),(1213,684),(1214,684),(1215,685),(1216,685),(1217,685),(1218,685),(1219,686),(1220,686),(1221,686),(1222,686),(1223,687),(1224,687),(1225,687),(1226,687),(1227,688),(1228,688),(1229,688),(1230,688),(1231,689),(1232,689),(1233,689),(1234,689),(1235,690),(1236,690),(1237,690),(1238,690),(1239,691),(1240,691),(1241,691),(1242,691),(1243,692),(1244,692),(1245,692),(1246,692),(1247,693),(1248,693),(1249,693),(1250,693),(1251,694),(1252,694),(1253,694),(1254,694),(1255,695),(1256,695),(1257,695),(1258,695),(1259,696),(1260,696),(1261,696),(1262,696),(1263,697),(1264,697),(1265,697),(1266,697),(1267,698),(1268,698),(1269,698),(1270,698),(1275,699),(1276,699),(1277,699),(1278,699),(1279,700),(1280,700),(1281,700),(1282,700),(1283,701),(1284,701),(1285,701),(1286,701),(1287,702),(1288,702),(1289,702),(1290,702),(1291,703),(1292,703),(1293,703),(1294,703),(1295,704),(1296,704),(1297,704),(1298,704),(1299,705),(1300,705),(1301,705),(1302,705),(1303,706),(1304,706),(1305,706),(1306,706),(1307,707),(1308,707),(1309,707),(1310,707),(1311,708),(1312,708),(1313,708),(1314,708),(1315,709),(1316,709),(1317,709),(1318,709),(1319,710),(1320,710),(1321,710),(1322,710),(1323,711),(1324,711),(1325,711),(1326,711),(1327,712),(1328,712),(1329,712),(1330,712),(1331,713),(1332,713),(1333,713),(1334,713),(1339,714),(1340,714),(1341,714),(1342,715),(1343,715),(1344,715),(1345,716),(1346,716),(1347,716),(1348,717),(1349,717),(1350,717),(1351,718),(1352,718),(1353,718),(1354,719),(1355,719),(1356,719),(1357,720),(1358,720),(1359,720),(1360,721),(1361,721),(1362,721),(1363,722),(1364,722),(1365,722),(1366,723),(1367,723),(1368,723),(1369,724),(1370,724),(1371,724),(1372,725),(1373,725),(1374,725),(1375,726),(1376,726),(1377,726),(1378,727),(1379,727),(1380,727),(1381,728),(1382,728),(1383,728),(1384,729),(1385,729),(1386,729),(1387,730),(1388,730),(1389,730),(1390,731),(1391,731),(1392,731),(1393,732),(1394,732),(1395,732),(1396,733),(1397,733),(1398,733),(1402,734),(1403,734),(1404,734),(1405,735),(1406,735),(1407,735),(1408,736),(1409,736),(1410,736),(1411,737),(1412,737),(1413,737),(1414,738),(1415,738),(1416,738),(1417,739),(1418,739),(1419,739),(1420,740),(1421,740),(1422,740),(1423,741),(1424,741),(1425,741),(1426,742),(1427,742),(1428,742),(1429,743),(1430,743),(1431,743),(1432,744),(1433,744),(1434,744),(1435,745),(1436,745),(1437,745),(1438,746),(1439,746),(1440,746),(1441,747),(1442,747),(1443,747),(1444,748),(1445,748),(1446,748),(1450,749),(1451,749),(1452,749),(1453,750),(1454,750),(1455,750),(1456,751),(1457,751),(1458,751),(1459,752),(1460,752),(1461,752),(1462,753),(1463,753),(1464,753),(1465,754),(1466,754),(1467,754),(1468,755),(1469,755),(1470,755),(1471,756),(1472,756),(1473,756),(1474,757),(1475,757),(1476,757),(1477,758),(1478,758),(1479,758),(1480,759),(1481,759),(1482,759),(1483,760),(1484,760),(1485,760),(1486,761),(1487,761),(1488,761),(1489,762),(1490,762),(1491,762),(1492,763),(1493,763),(1494,763),(1495,764),(1496,764),(1497,764),(1498,765),(1499,765),(1500,765),(1501,766),(1502,766),(1503,766),(1504,767),(1505,767),(1506,767),(1507,768),(1508,768),(1509,768),(1513,769),(1514,769),(1515,769),(1516,770),(1517,770),(1518,770),(1519,771),(1520,771),(1521,771),(1522,772),(1523,772),(1524,772),(1525,773),(1526,773),(1527,773),(1528,774),(1529,774),(1530,774),(1531,775),(1532,775),(1533,775),(1534,776),(1535,776),(1536,776),(1537,777),(1538,777),(1539,777),(1540,778),(1541,778),(1542,778),(1543,779),(1544,779),(1545,779),(1546,780),(1547,780),(1548,780),(1549,781),(1550,781),(1551,781),(1552,782),(1553,782),(1554,782),(1555,783),(1556,783),(1557,783),(1558,784),(1559,784),(1560,784),(1561,785),(1562,785),(1563,785),(1564,786),(1565,786),(1566,786),(1567,787),(1568,787),(1569,787),(1570,788),(1571,788),(1572,788),(1576,789),(1577,789),(1578,789),(1579,790),(1580,790),(1581,790),(1582,791),(1583,791),(1584,791),(1585,792),(1586,792),(1587,792),(1588,793),(1589,793),(1590,793),(1591,794),(1592,794),(1593,794),(1594,795),(1595,795),(1596,795),(1597,796),(1598,796),(1599,796),(1600,797),(1601,797),(1602,797),(1603,798),(1604,798),(1605,798),(1606,799),(1607,799),(1608,799),(1609,800),(1610,800),(1611,800),(1612,801),(1613,801),(1614,801),(1615,802),(1616,802),(1617,802),(1618,803),(1619,803),(1620,803),(1624,804),(1625,804),(1626,804),(1627,805),(1628,805),(1629,805),(1630,806),(1631,806),(1632,806),(1633,807),(1634,807),(1635,807),(1636,808),(1637,808),(1638,808),(1639,809),(1640,809),(1641,809),(1642,810),(1643,810),(1644,810),(1645,811),(1646,811),(1647,811),(1648,812),(1649,812),(1650,812),(1651,813),(1652,813),(1653,813),(1654,814),(1655,814),(1656,814),(1657,815),(1658,815),(1659,815),(1660,816),(1661,816),(1662,816),(1663,817),(1664,817),(1665,817),(1666,818),(1667,818),(1668,818),(1669,819),(1670,819),(1671,819),(1672,820),(1673,820),(1674,820),(1675,821),(1676,821),(1677,821),(1678,822),(1679,822),(1680,822),(1681,823),(1682,823),(1683,823),(1687,824),(1688,824),(1689,824),(1690,824),(1691,825),(1692,825),(1693,825),(1694,825),(1695,826),(1696,826),(1697,826),(1698,826),(1699,827),(1700,827),(1701,827),(1702,827),(1703,828),(1704,828),(1705,828),(1706,828),(1707,829),(1708,829),(1709,829),(1710,829),(1711,830),(1712,830),(1713,830),(1714,830),(1715,831),(1716,831),(1717,831),(1718,831),(1719,832),(1720,832),(1721,832),(1722,832),(1723,833),(1724,833),(1725,833),(1726,833),(1727,834),(1728,834),(1729,834),(1730,834),(1731,835),(1732,835),(1733,835),(1734,835),(1735,836),(1736,836),(1737,836),(1738,836),(1739,837),(1740,837),(1741,837),(1742,837),(1743,838),(1744,838),(1745,838),(1746,838),(1747,839),(1748,839),(1749,839),(1750,839),(1751,840),(1752,840),(1753,840),(1754,840),(1755,841),(1756,841),(1757,841),(1758,841),(1759,842),(1760,842),(1761,842),(1762,842),(1763,843),(1764,843),(1765,843),(1766,843),(1767,844),(1768,844),(1769,844),(1770,845),(1771,845),(1772,845),(1773,846),(1774,846),(1775,846),(1776,847),(1777,847),(1778,847),(1779,848),(1780,848),(1781,848),(1782,849),(1783,849),(1784,849),(1785,850),(1786,850),(1787,850),(1788,851),(1789,851),(1790,851),(1791,852),(1792,852),(1793,852),(1794,853),(1795,853),(1796,853),(1797,854),(1798,854),(1799,854),(1800,855),(1801,855),(1802,855),(1803,856),(1804,856),(1805,856),(1806,857),(1807,857),(1808,857),(1809,858),(1810,858),(1811,858),(1812,859),(1813,859),(1814,859),(1815,860),(1816,860),(1817,860),(1818,861),(1819,861),(1820,861),(1821,862),(1822,862),(1823,862),(1824,863),(1825,863),(1826,863),(1827,864),(1828,864),(1829,864),(1830,865),(1831,865),(1832,865),(1833,866),(1834,866),(1835,866),(1836,867),(1837,867),(1838,867),(1839,868),(1840,868),(1841,868),(1842,869),(1843,869),(1844,869),(1845,870),(1846,870),(1847,870),(1848,871),(1849,871),(1850,871),(1851,872),(1852,872),(1853,872),(1854,873),(1855,873),(1856,873),(1857,874),(1858,874),(1859,874),(1860,875),(1861,875),(1862,875),(1863,876),(1864,876),(1865,876),(1866,877),(1867,877),(1868,877),(1869,878),(1870,878),(1871,878),(1872,879),(1873,879),(1874,879),(1875,880),(1876,880),(1877,880),(1878,881),(1879,881),(1880,881),(1881,882),(1882,882),(1883,882),(1884,883),(1885,883),(1886,883),(1887,884),(1888,884),(1889,884),(1890,885),(1891,885),(1892,885),(1893,886),(1894,886),(1895,886),(1896,887),(1897,887),(1898,887),(1899,888),(1900,888),(1901,888),(1902,889),(1903,889),(1904,889),(1905,890),(1906,890),(1907,890),(1908,891),(1909,891),(1910,891),(1911,892),(1912,892),(1913,892),(1914,893),(1915,893),(1916,893),(1917,894),(1918,894),(1919,894),(1920,895),(1921,895),(1922,895),(1923,896),(1924,896),(1925,896),(1926,897),(1927,897),(1928,897),(1929,898),(1930,898),(1931,898),(1932,899),(1933,899),(1934,899),(1935,900),(1936,900),(1937,900),(1938,901),(1939,901),(1940,901),(1941,902),(1942,902),(1943,902),(1944,903),(1945,903),(1946,903),(1947,904),(1948,904),(1949,904),(1950,904),(1951,905),(1952,905),(1953,905),(1954,905),(1955,906),(1956,906),(1957,906),(1958,906),(1959,907),(1960,907),(1961,907),(1962,907),(1963,908),(1964,908),(1965,908),(1966,908),(1967,909),(1968,909),(1969,909),(1970,909),(1971,910),(1972,910),(1973,910),(1974,910),(1975,911),(1976,911),(1977,911),(1978,911),(1979,912),(1980,912),(1981,912),(1982,912),(1983,913),(1984,913),(1985,913),(1986,913),(1987,914),(1988,914),(1989,914),(1990,914),(1991,915),(1992,915),(1993,915),(1994,915),(2027,924),(2028,924),(2029,924),(2030,925),(2031,925),(2032,925),(2033,926),(2034,926),(2035,926),(2036,927),(2037,927),(2038,927),(2039,928),(2040,928),(2041,928),(2042,929),(2043,929),(2044,929),(2048,930),(2049,930),(2050,930),(2051,931),(2052,931),(2053,931),(2054,932),(2055,932),(2056,932),(2057,933),(2058,933),(2059,933),(2060,934),(2061,934),(2062,934),(2063,935),(2064,935),(2065,935),(2066,936),(2067,936),(2068,936),(2069,937),(2070,937),(2071,937),(2072,938),(2073,938),(2074,938),(2075,939),(2076,939),(2077,939),(2078,940),(2079,940),(2080,940),(2081,941),(2082,941),(2083,941),(2084,942),(2085,942),(2086,942),(2087,942),(2088,943),(2089,943),(2090,943),(2091,943),(2092,944),(2093,944),(2094,944),(2095,944),(2096,945),(2097,945),(2098,945),(2099,945),(2100,946),(2101,946),(2102,946),(2103,946),(2104,947),(2105,947),(2106,947),(2107,947),(2108,948),(2109,948),(2110,948),(2111,949),(2112,949),(2113,949),(2114,950),(2115,950),(2116,950),(2117,951),(2118,951),(2119,951),(2120,952),(2121,952),(2122,952),(2123,953),(2124,953),(2125,953),(2126,954),(2127,954),(2128,954),(2129,955),(2130,955),(2131,955),(2132,956),(2133,956),(2134,956),(2135,957),(2136,957),(2137,957),(2153,958),(2154,958),(2155,958),(2156,958),(2157,959),(2158,959),(2159,959),(2160,959),(2209,972),(2210,972),(2211,972),(2212,972),(2213,973),(2214,973),(2215,973),(2216,973),(2217,974),(2218,974),(2219,974),(2220,974),(2221,975),(2222,975),(2223,975),(2224,975),(2225,976),(2226,976),(2227,976),(2228,976),(2229,977),(2230,977),(2231,977),(2232,977),(2233,978),(2234,978),(2235,978),(2236,978),(2237,979),(2238,979),(2239,979),(2240,979),(2241,980),(2242,980),(2243,980),(2244,980),(2245,981),(2246,981),(2247,981),(2248,981),(2249,982),(2250,982),(2251,982),(2252,982),(2253,983),(2254,983),(2255,983),(2256,983),(2257,984),(2258,984),(2259,984),(2260,984),(2261,985),(2262,985),(2263,985),(2264,985),(2265,986),(2266,986),(2267,986),(2268,986),(2269,987),(2270,987),(2271,987),(2272,987),(2273,988),(2274,988),(2275,988),(2276,988),(2277,989),(2278,989),(2279,989),(2280,989),(2281,990),(2282,990),(2283,990),(2284,990),(2285,991),(2286,991),(2287,991),(2288,991),(2289,992),(2290,992),(2291,992),(2292,992),(2293,993),(2294,993),(2295,993),(2296,993),(2297,994),(2298,994),(2299,994),(2300,994),(2301,995),(2302,995),(2303,995),(2304,995),(2305,996),(2306,996),(2307,996),(2308,996),(2309,997),(2310,997),(2311,997),(2312,997),(2313,998),(2314,998),(2315,998),(2316,998),(2317,999),(2318,999),(2319,999),(2320,999),(2321,1000),(2322,1000),(2323,1000),(2324,1000),(2325,1001),(2326,1001),(2327,1001),(2328,1001),(2329,1002),(2330,1002),(2331,1002),(2332,1002),(2333,1003),(2334,1003),(2335,1003),(2336,1003),(2337,1004),(2338,1004),(2339,1004),(2340,1004),(2341,1005),(2342,1005),(2343,1005),(2344,1005),(2345,1006),(2346,1006),(2347,1006),(2348,1006),(2349,1007),(2350,1007),(2351,1007),(2352,1007),(2353,1008),(2354,1008),(2355,1008),(2356,1008),(2357,1009),(2358,1009),(2359,1009),(2360,1009),(2361,1010),(2362,1010),(2363,1010),(2364,1010),(2365,1011),(2366,1011),(2367,1011),(2368,1011),(2369,1012),(2370,1012),(2371,1012),(2372,1012),(2373,1013),(2374,1013),(2375,1013),(2376,1013),(2377,1014),(2378,1014),(2379,1014),(2380,1014),(2381,1015),(2382,1015),(2383,1015),(2384,1015),(2385,1016),(2386,1016),(2387,1016),(2388,1016),(2389,1017),(2390,1017),(2391,1017),(2392,1017),(2393,1018),(2394,1018),(2395,1018),(2396,1018),(2397,1019),(2398,1019),(2399,1019),(2400,1019),(2401,1020),(2402,1020),(2403,1020),(2404,1020),(2405,1021),(2406,1021),(2407,1021),(2408,1021),(2409,1022),(2410,1022),(2411,1022),(2412,1022),(2413,1023),(2414,1023),(2415,1023),(2416,1023),(2417,1024),(2418,1024),(2419,1024),(2420,1024),(2421,1025),(2422,1025),(2423,1025),(2424,1025),(2425,1026),(2426,1026),(2427,1026),(2428,1026),(2429,1027),(2430,1027),(2431,1027),(2432,1027),(2433,1028),(2434,1028),(2435,1028),(2436,1028),(2437,1029),(2438,1029),(2439,1029),(2440,1030),(2441,1030),(2442,1030),(2443,1031),(2444,1031),(2445,1031),(2446,1032),(2447,1032),(2448,1032),(2449,1033),(2450,1033),(2451,1033),(2452,1034),(2453,1034),(2454,1034),(2455,1035),(2456,1035),(2457,1035),(2458,1035),(2459,1036),(2460,1036),(2461,1036),(2462,1036),(2463,1037),(2464,1037),(2465,1037),(2466,1037),(2467,1038),(2468,1038),(2469,1038),(2470,1038),(2471,1039),(2472,1039),(2473,1039),(2474,1039),(2475,1040),(2476,1040),(2477,1040),(2478,1040),(2479,1041),(2480,1041),(2481,1041),(2482,1041),(2483,1042),(2484,1042),(2485,1042),(2486,1042),(2487,1043),(2488,1043),(2489,1043),(2490,1044),(2491,1044),(2492,1044),(2493,1045),(2494,1045),(2495,1045),(2496,1046),(2497,1046),(2498,1046),(2499,1047),(2500,1047),(2501,1047),(2502,1048),(2503,1048),(2504,1048),(2505,1049),(2506,1049),(2507,1049),(2508,1049),(2509,1050),(2510,1050),(2511,1050),(2512,1050),(2513,1051),(2514,1051),(2515,1051),(2516,1051),(2517,1052),(2518,1052),(2519,1052),(2520,1052),(2521,1053),(2522,1053),(2523,1053),(2524,1053),(2525,1054),(2526,1054),(2527,1054),(2528,1054),(2529,1055),(2530,1055),(2531,1055),(2532,1055),(2533,1056),(2534,1056),(2535,1056),(2536,1056),(2822,1057),(2823,1057),(2824,1057),(2825,1058),(2826,1058),(2827,1058),(2828,1059),(2829,1059),(2830,1059),(2831,1060),(2832,1060),(2833,1060),(2834,1061),(2835,1061),(2836,1061),(2837,1062),(2838,1062),(2839,1062),(2801,1063),(2802,1063),(2803,1063),(2804,1063),(2805,1064),(2806,1064),(2807,1064),(2808,1064),(2809,1065),(2810,1065),(2811,1065),(2812,1065),(2789,1066),(2790,1066),(2791,1066),(2792,1066),(2793,1067),(2794,1067),(2795,1067),(2796,1067),(2797,1068),(2798,1068),(2799,1068),(2800,1068),(2753,1069),(2754,1069),(2755,1069),(2756,1069),(2757,1070),(2758,1070),(2759,1070),(2760,1070),(2761,1071),(2762,1071),(2763,1071),(2764,1071),(2765,1072),(2766,1072),(2767,1072),(2768,1072),(2769,1073),(2770,1073),(2771,1073),(2772,1073),(2773,1074),(2774,1074),(2775,1074),(2776,1074),(2709,1075),(2710,1075),(2711,1075),(2712,1075),(2713,1076),(2714,1076),(2715,1076),(2716,1076),(2717,1077),(2718,1077),(2719,1077),(2720,1077),(2721,1078),(2722,1078),(2723,1078),(2724,1078),(2725,1079),(2726,1079),(2727,1079),(2728,1079),(2729,1080),(2730,1080),(2731,1080),(2732,1080),(2733,1081),(2734,1081),(2735,1081),(2736,1081),(2737,1082),(2738,1082),(2739,1082),(2740,1082),(2635,1083),(2636,1083),(2637,1083),(2638,1083),(2639,1084),(2640,1084),(2641,1084),(2642,1084),(2643,1085),(2644,1085),(2645,1085),(2646,1085),(2647,1086),(2648,1086),(2649,1086),(2650,1086),(2651,1087),(2652,1087),(2653,1087),(2654,1087),(2675,1088),(2676,1088),(2677,1088),(2678,1089),(2679,1089),(2680,1089),(2681,1090),(2682,1090),(2683,1090),(2693,1091),(2694,1091),(2695,1091),(2696,1091),(2697,1092),(2698,1092),(2699,1092),(2700,1092),(2701,1093),(2702,1093),(2703,1093),(2704,1093),(2705,1094),(2706,1094),(2707,1094),(2708,1094),(2741,1095),(2742,1095),(2743,1095),(2744,1095),(2745,1096),(2746,1096),(2747,1096),(2748,1096),(2749,1097),(2750,1097),(2751,1097),(2752,1097),(2777,1098),(2778,1098),(2779,1098),(2780,1098),(2781,1099),(2782,1099),(2783,1099),(2784,1099),(2785,1100),(2786,1100),(2787,1100),(2788,1100),(2813,1101),(2814,1101),(2815,1101),(2816,1102),(2817,1102),(2818,1102),(2819,1103),(2820,1103),(2821,1103),(2840,1104),(2841,1104),(2842,1104),(2843,1104),(2844,1105),(2845,1105),(2846,1105),(2847,1105),(2848,1106),(2849,1106),(2850,1106),(2851,1106),(2864,1107),(2865,1107),(2866,1107),(2867,1107),(2868,1108),(2869,1108),(2870,1108),(2871,1108),(2872,1109),(2873,1109),(2874,1109),(2875,1109),(2888,1110),(2889,1110),(2890,1110),(2891,1110),(2892,1111),(2893,1111),(2894,1111),(2895,1111),(2896,1112),(2897,1112),(2898,1112),(2899,1112),(2900,1113),(2901,1113),(2902,1113),(2903,1113),(2920,1114),(2921,1114),(2922,1114),(2923,1114),(2924,1115),(2925,1115),(2926,1115),(2927,1115),(2928,1116),(2929,1116),(2930,1116),(2931,1116),(2932,1117),(2933,1117),(2934,1117),(2935,1117),(2952,1118),(2953,1118),(2954,1118),(2955,1118),(2956,1119),(2957,1119),(2958,1119),(2959,1119),(2960,1120),(2961,1120),(2962,1120),(2963,1120),(2976,1121),(2977,1121),(2978,1121),(2979,1121),(2980,1122),(2981,1122),(2982,1122),(2983,1122),(2984,1123),(2985,1123),(2986,1123),(2987,1123),(3000,1124),(3001,1124),(3002,1124),(3003,1124),(3004,1125),(3005,1125),(3006,1125),(3007,1125),(3008,1126),(3009,1126),(3010,1126),(3011,1126),(3024,1127),(3025,1127),(3026,1127),(3027,1127),(3028,1128),(3029,1128),(3030,1128),(3031,1128),(3032,1129),(3033,1129),(3034,1129),(3035,1129),(3108,1130),(3109,1130),(3110,1130),(3111,1130),(3112,1131),(3113,1131),(3114,1131),(3115,1131),(3116,1132),(3117,1132),(3118,1132),(3119,1132),(3072,1133),(3073,1133),(3074,1133),(3075,1134),(3076,1134),(3077,1134),(3084,1135),(3085,1135),(3086,1135),(3087,1135),(3088,1136),(3089,1136),(3090,1136),(3091,1136),(3092,1137),(3093,1137),(3094,1137),(3095,1137),(3120,1138),(3121,1138),(3122,1138),(3123,1138),(3124,1139),(3125,1139),(3126,1139),(3127,1139),(3128,1140),(3129,1140),(3130,1140),(3131,1140),(3144,1141),(3145,1141),(3146,1141),(3147,1141),(3148,1142),(3149,1142),(3150,1142),(3151,1142),(3152,1143),(3153,1143),(3154,1143),(3155,1143),(3156,1144),(3157,1144),(3158,1144),(3159,1144),(4604,1145),(4605,1145),(4606,1145),(4607,1145),(4608,1146),(4609,1146),(4610,1146),(4611,1146),(4612,1147),(4613,1147),(4614,1147),(4615,1147),(3200,1148),(3201,1148),(3202,1148),(3203,1148),(3204,1149),(3205,1149),(3206,1149),(3207,1149),(3208,1150),(3209,1150),(3210,1150),(3211,1150),(3212,1151),(3213,1151),(3214,1151),(3215,1151),(3232,1152),(3233,1152),(3234,1152),(3235,1152),(3236,1153),(3237,1153),(3238,1153),(3239,1153),(3240,1154),(3241,1154),(3242,1154),(3243,1154),(3244,1155),(3245,1155),(3246,1155),(3247,1155),(3264,1156),(3265,1156),(3266,1156),(3267,1156),(3268,1157),(3269,1157),(3270,1157),(3271,1157),(3272,1158),(3273,1158),(3274,1158),(3275,1158),(3276,1159),(3277,1159),(3278,1159),(3279,1159),(3296,1160),(3297,1160),(3298,1161),(3299,1161),(3304,1162),(3305,1162),(3306,1162),(3307,1162),(3308,1163),(3309,1163),(3310,1163),(3311,1163),(3320,1164),(3321,1164),(3322,1164),(3323,1165),(3324,1165),(3325,1165),(3326,1166),(3327,1166),(3328,1166),(3338,1167),(3339,1167),(3340,1167),(3341,1167),(3342,1168),(3343,1168),(3344,1168),(3345,1168),(3346,1169),(3347,1169),(3348,1169),(3349,1169),(3350,1170),(3351,1170),(3352,1170),(3353,1170),(3370,1171),(3371,1171),(3372,1171),(3373,1171),(3374,1172),(3375,1172),(3376,1172),(3377,1172),(3378,1173),(3379,1173),(3380,1173),(3381,1173),(3382,1174),(3383,1174),(3384,1174),(3385,1174),(3402,1175),(3403,1175),(3404,1175),(3405,1175),(3406,1176),(3407,1176),(3408,1176),(3409,1176),(3410,1177),(3411,1177),(3412,1177),(3413,1177),(3414,1178),(3415,1178),(3416,1178),(3417,1178),(3418,1179),(3419,1179),(3420,1179),(3421,1179),(3466,1180),(3467,1180),(3468,1180),(3469,1180),(3470,1181),(3471,1181),(3472,1181),(3473,1181),(3474,1182),(3475,1182),(3476,1182),(3477,1182),(3478,1183),(3479,1183),(3480,1183),(3481,1183),(3498,1184),(3499,1184),(3500,1184),(3501,1184),(3502,1185),(3503,1185),(3504,1185),(3505,1185),(3506,1186),(3507,1186),(3508,1186),(3509,1186),(3522,1187),(3523,1187),(3524,1187),(3525,1187),(3526,1188),(3527,1188),(3528,1188),(3529,1188),(3530,1189),(3531,1189),(3532,1189),(3533,1189),(3534,1190),(3535,1190),(3536,1190),(3537,1190),(3554,1191),(3555,1191),(3556,1191),(3557,1192),(3558,1192),(3559,1192),(3560,1193),(3561,1193),(3562,1193),(3563,1194),(3564,1194),(3565,1194),(3566,1195),(3567,1195),(3568,1195),(3584,1196),(3585,1196),(3586,1196),(3587,1197),(3588,1197),(3589,1197),(3590,1198),(3591,1198),(3592,1198),(3602,1199),(3603,1199),(3604,1199),(3605,1200),(3606,1200),(3607,1200),(3608,1201),(3609,1201),(3610,1201),(3620,1202),(3621,1202),(3622,1202),(3623,1202),(3624,1203),(3625,1203),(3626,1203),(3627,1203),(3628,1204),(3629,1204),(3630,1204),(3631,1204),(3644,1205),(3645,1205),(3646,1205),(3647,1205),(3648,1206),(3649,1206),(3650,1206),(3651,1206),(3652,1207),(3653,1207),(3654,1207),(3655,1207),(3668,1208),(3669,1208),(3670,1208),(3671,1208),(3672,1209),(3673,1209),(3674,1209),(3675,1209),(3676,1210),(3677,1210),(3678,1210),(3679,1210),(3692,1211),(3693,1211),(3694,1211),(3695,1211),(3696,1212),(3697,1212),(3698,1212),(3699,1212),(3700,1213),(3701,1213),(3702,1213),(3703,1213),(3716,1214),(3717,1214),(3718,1214),(3719,1215),(3720,1215),(3721,1215),(3722,1216),(3723,1216),(3724,1216),(3725,1217),(3726,1217),(3727,1217),(3728,1218),(3729,1218),(3730,1218),(3746,1219),(3747,1219),(3748,1219),(3749,1220),(3750,1220),(3751,1220),(3752,1221),(3753,1221),(3754,1221),(3764,1222),(3765,1222),(3766,1222),(3767,1223),(3768,1223),(3769,1223),(3770,1224),(3771,1224),(3772,1224),(3773,1225),(3774,1225),(3775,1225),(3776,1226),(3777,1226),(3778,1226),(3779,1227),(3780,1227),(3781,1227),(3832,1228),(3833,1228),(3834,1228),(3835,1228),(3836,1229),(3837,1229),(3838,1229),(3839,1229),(3840,1230),(3841,1230),(3842,1230),(3843,1230),(3856,1231),(3857,1231),(3858,1231),(3859,1232),(3860,1232),(3861,1232),(3862,1233),(3863,1233),(3864,1233),(3874,1234),(3875,1234),(3876,1234),(3877,1234),(3878,1235),(3879,1235),(3880,1235),(3881,1235),(3882,1236),(3883,1236),(3884,1236),(3885,1236),(3886,1237),(3887,1237),(3888,1237),(3889,1237),(3906,1238),(3907,1238),(3908,1238),(3909,1238),(3910,1239),(3911,1239),(3912,1239),(3913,1239),(3914,1240),(3915,1240),(3916,1240),(3917,1240),(3918,1241),(3919,1241),(3920,1241),(3921,1241),(3938,1242),(3939,1242),(3940,1242),(3941,1242),(3942,1243),(3943,1243),(3944,1243),(3945,1243),(3946,1244),(3947,1244),(3948,1244),(3949,1244),(3950,1245),(3951,1245),(3952,1245),(3953,1245),(3954,1246),(3955,1246),(3956,1246),(3957,1246),(3978,1247),(3979,1247),(3980,1247),(3981,1248),(3982,1248),(3983,1248),(3984,1249),(3985,1249),(3986,1249),(3987,1250),(3988,1250),(3989,1250),(4002,1251),(4003,1251),(4004,1251),(4005,1252),(4006,1252),(4007,1252),(4008,1253),(4009,1253),(4010,1253),(4011,1254),(4012,1254),(4013,1254),(4014,1255),(4015,1255),(4016,1255),(4017,1256),(4018,1256),(4019,1256),(4038,1257),(4039,1257),(4040,1257),(4041,1257),(4042,1258),(4043,1258),(4044,1258),(4045,1258),(4046,1259),(4047,1259),(4048,1259),(4049,1259),(4050,1260),(4051,1260),(4052,1260),(4053,1260),(4070,1261),(4071,1261),(4072,1261),(4073,1262),(4074,1262),(4075,1262),(4076,1263),(4077,1263),(4078,1263),(4079,1264),(4080,1264),(4081,1264),(4082,1265),(4083,1265),(4084,1265),(4115,1266),(4116,1266),(4117,1266),(4118,1267),(4119,1267),(4120,1267),(4121,1268),(4122,1268),(4123,1268),(4124,1269),(4125,1269),(4126,1269),(4127,1270),(4128,1270),(4129,1270),(4130,1271),(4131,1271),(4132,1271),(4151,1272),(4152,1272),(4153,1272),(4154,1273),(4155,1273),(4156,1273),(4157,1274),(4158,1274),(4159,1274),(4160,1275),(4161,1275),(4162,1275),(4163,1276),(4164,1276),(4165,1276),(4166,1277),(4167,1277),(4168,1277),(4169,1278),(4170,1278),(4171,1278),(4172,1279),(4173,1279),(4174,1279),(4175,1280),(4176,1280),(4177,1280),(4178,1280),(4179,1281),(4180,1281),(4181,1281),(4182,1281),(4183,1282),(4184,1282),(4185,1282),(4186,1282),(4187,1283),(4188,1283),(4189,1283),(4190,1283),(4207,1284),(4208,1284),(4209,1284),(4210,1284),(4211,1285),(4212,1285),(4213,1285),(4214,1285),(4215,1286),(4216,1286),(4217,1286),(4218,1286),(4231,1287),(4232,1287),(4233,1287),(4234,1287),(4235,1288),(4236,1288),(4237,1288),(4238,1288),(4239,1289),(4240,1289),(4241,1289),(4242,1289),(4255,1290),(4256,1290),(4257,1290),(4258,1290),(4259,1291),(4260,1291),(4261,1291),(4262,1291),(4263,1292),(4264,1292),(4265,1292),(4266,1292),(4279,1293),(4280,1293),(4281,1293),(4282,1293),(4283,1294),(4284,1294),(4285,1294),(4286,1294),(4287,1295),(4288,1295),(4289,1295),(4290,1295),(4303,1296),(4304,1296),(4305,1296),(4306,1296),(4307,1297),(4308,1297),(4309,1297),(4310,1297),(4311,1298),(4312,1298),(4313,1298),(4314,1298),(4327,1299),(4328,1299),(4329,1299),(4330,1299),(4331,1300),(4332,1300),(4333,1300),(4334,1300),(4335,1301),(4336,1301),(4337,1301),(4338,1301),(4351,1302),(4352,1302),(4353,1302),(4354,1302),(4355,1303),(4356,1303),(4357,1303),(4358,1303),(4359,1304),(4360,1304),(4361,1304),(4362,1304),(4375,1305),(4376,1305),(4377,1305),(4378,1306),(4379,1306),(4380,1306),(4381,1307),(4382,1307),(4383,1307),(4393,1308),(4394,1308),(4395,1308),(4399,1309),(4400,1309),(4401,1309),(4402,1309),(4403,1310),(4404,1310),(4405,1310),(4406,1310),(4415,1311),(4416,1311),(4417,1311),(4418,1311),(4423,1312),(4424,1312),(4425,1312),(4426,1312),(4427,1313),(4428,1313),(4429,1313),(4430,1313),(4439,1314),(4440,1314),(4441,1314),(4442,1314),(4447,1315),(4448,1315),(4449,1315),(4450,1315),(4451,1316),(4452,1316),(4453,1316),(4454,1316),(4463,1317),(4464,1317),(4465,1317),(4466,1317),(4471,1318),(4472,1318),(4473,1318),(4474,1318),(4479,1319),(4480,1319),(4481,1319),(4482,1319),(4487,1320),(4488,1320),(4489,1320),(4493,1321),(4494,1321),(4495,1321),(4499,1322),(4500,1322),(4501,1322),(4502,1322),(4503,1323),(4504,1323),(4505,1323),(4506,1323),(4507,1324),(4508,1324),(4509,1324),(4510,1324),(4523,1325),(4524,1325),(4525,1325),(4526,1325),(4527,1326),(4528,1326),(4529,1326),(4530,1326),(4539,1327),(4540,1327),(4541,1327),(4542,1327),(4543,1328),(4544,1328),(4545,1328),(4546,1328),(4555,1329),(4556,1329),(4557,1329),(4558,1329),(4559,1330),(4560,1330),(4561,1330),(4562,1330),(4571,1331),(4572,1331),(4573,1331),(4577,1332),(4578,1332),(4579,1332),(4583,1333),(4584,1334),(4585,1335),(4586,1336),(4587,1337),(4588,1338),(4589,1339),(4590,1340),(4591,1341),(4616,1343),(4617,1343),(4618,1343),(4619,1343),(4620,1344),(4621,1344),(4622,1344),(4623,1344),(4792,1345),(4793,1345),(4794,1345),(4795,1346),(4796,1346),(4797,1346),(4798,1347),(4799,1347),(4800,1347),(4801,1348),(4802,1348),(4803,1348),(4804,1349),(4805,1349),(4806,1349),(4807,1350),(4808,1350),(4809,1350),(4668,1351),(4669,1351),(4670,1351),(4671,1351),(4638,1352),(4639,1353),(4640,1354),(4641,1355),(4642,1356),(4643,1357),(4644,1358),(4645,1359),(4646,1360),(4647,1361),(4648,1362),(4649,1363),(4650,1364),(4651,1365),(4652,1366),(4653,1367),(4654,1368),(4655,1369),(4656,1370),(4657,1371),(4658,1372),(4659,1373),(4660,1374),(4661,1375),(4662,1376),(4663,1377),(4664,1378),(4665,1379),(4666,1380),(4667,1381),(4672,1383),(4673,1383),(4674,1383),(4675,1383),(4676,1384),(4677,1384),(4678,1384),(4679,1384),(4680,1385),(4681,1385),(4682,1385),(4683,1385),(4684,1386),(4685,1386),(4686,1386),(4687,1386),(4688,1387),(4689,1387),(4690,1387),(4691,1387),(4692,1388),(4693,1388),(4694,1388),(4695,1388),(4696,1389),(4697,1389),(4698,1389),(4699,1389),(4700,1390),(4701,1390),(4702,1390),(4703,1390),(4704,1391),(4705,1391),(4706,1391),(4707,1391),(4708,1392),(4709,1392),(4710,1392),(4711,1392),(4712,1393),(4713,1393),(4714,1393),(4715,1393),(4716,1394),(4717,1394),(4718,1394),(4719,1394),(4720,1395),(4721,1395),(4722,1395),(4723,1395),(4724,1396),(4725,1396),(4726,1396),(4727,1396),(4728,1397),(4729,1397),(4730,1397),(4731,1397),(4732,1398),(4733,1398),(4734,1398),(4735,1398),(4736,1399),(4737,1399),(4738,1399),(4739,1399),(4740,1400),(4741,1400),(4742,1400),(4743,1400),(4744,1401),(4745,1401),(4746,1401),(4747,1401),(4748,1402),(4749,1402),(4750,1402),(4751,1402),(4752,1403),(4753,1403),(4754,1403),(4755,1403),(4756,1404),(4757,1404),(4758,1404),(4759,1404),(4760,1405),(4761,1405),(4762,1405),(4763,1405),(4764,1406),(4765,1406),(4766,1406),(4767,1406),(4768,1407),(4769,1407),(4770,1407),(4771,1407),(4772,1408),(4773,1408),(4774,1408),(4775,1408),(4776,1409),(4777,1409),(4778,1409),(4779,1409),(4780,1410),(4781,1410),(4782,1410),(4783,1410),(4784,1411),(4785,1411),(4786,1411),(4787,1411),(4788,1412),(4789,1412),(4790,1412),(4791,1412),(8876,1413),(8877,1413),(8878,1413),(8879,1413),(5080,1414),(5081,1414),(5082,1414),(5083,1414),(5084,1415),(5085,1415),(5086,1415),(5087,1415),(5088,1416),(5089,1416),(5090,1416),(5091,1416),(5092,1417),(5093,1417),(5094,1417),(5095,1417),(5096,1418),(5097,1418),(5098,1418),(5099,1418),(5100,1419),(5101,1419),(5102,1419),(5103,1419),(4816,1420),(4817,1420),(4818,1420),(4819,1420),(4820,1421),(4821,1421),(4822,1421),(4823,1421),(4824,1422),(4825,1422),(4826,1422),(4827,1422),(4828,1423),(4829,1423),(4830,1423),(4831,1423),(4832,1424),(4833,1424),(4834,1424),(4835,1424),(4836,1425),(4837,1425),(4838,1425),(4839,1425),(4840,1426),(4841,1426),(4842,1426),(4843,1426),(4844,1427),(4845,1427),(4846,1427),(4847,1427),(4848,1428),(4849,1428),(4850,1428),(4851,1428),(4852,1429),(4853,1429),(4854,1429),(4855,1429),(4856,1430),(4857,1430),(4858,1430),(4859,1430),(4860,1431),(4861,1431),(4862,1431),(4863,1431),(4864,1432),(4865,1432),(4866,1432),(4867,1432),(4868,1433),(4869,1433),(4870,1433),(4871,1433),(4872,1434),(4873,1434),(4874,1434),(4875,1434),(4876,1435),(4877,1435),(4878,1435),(4879,1435),(4880,1436),(4881,1436),(4882,1436),(4883,1436),(4884,1437),(4885,1437),(4886,1437),(4887,1437),(4888,1438),(4889,1438),(4890,1438),(4891,1438),(4892,1439),(4893,1439),(4894,1439),(4895,1439),(4896,1440),(4897,1440),(4898,1440),(4899,1440),(4900,1441),(4901,1441),(4902,1441),(4903,1441),(4904,1442),(4905,1442),(4906,1442),(4907,1442),(4908,1443),(4909,1443),(4910,1443),(4911,1443),(4912,1444),(4913,1444),(4914,1444),(4915,1444),(4916,1445),(4917,1445),(4918,1445),(4919,1445),(4920,1446),(4921,1446),(4922,1446),(4923,1446),(4924,1447),(4925,1447),(4926,1447),(4927,1447),(4928,1448),(4929,1448),(4930,1448),(4931,1448),(4932,1449),(4933,1449),(4934,1449),(4935,1449),(4936,1450),(4937,1450),(4938,1450),(4939,1450),(4940,1451),(4941,1451),(4942,1451),(4943,1451),(4944,1452),(4945,1452),(4946,1452),(4947,1452),(4948,1453),(4949,1453),(4950,1453),(4951,1453),(4952,1454),(4953,1454),(4954,1454),(4955,1454),(8337,1455),(8338,1455),(8339,1455),(8340,1455),(4957,1456),(4958,1456),(4959,1456),(4960,1456),(4961,1457),(4962,1457),(4963,1457),(4964,1457),(4965,1458),(4966,1458),(4967,1458),(4968,1458),(4969,1459),(4970,1459),(4971,1459),(4972,1459),(4973,1460),(4974,1460),(4975,1460),(4976,1460),(4977,1461),(4978,1461),(4979,1461),(4980,1461),(4981,1462),(4982,1462),(4983,1462),(4984,1462),(4985,1463),(4986,1463),(4987,1463),(4988,1463),(4989,1464),(4990,1465),(4991,1465),(4992,1465),(4993,1466),(4994,1466),(4995,1466),(4996,1467),(4997,1467),(4998,1467),(4999,1468),(5000,1468),(5001,1468),(5002,1469),(5003,1469),(5004,1469),(5005,1470),(5006,1470),(5007,1470),(5008,1471),(5009,1471),(5010,1471),(5011,1472),(5012,1472),(5013,1472),(5014,1473),(5015,1473),(5016,1473),(5017,1474),(5018,1474),(5019,1474),(5020,1475),(5021,1475),(5022,1475),(5023,1476),(5024,1476),(5025,1476),(5026,1477),(5027,1477),(5028,1477),(5029,1478),(5030,1478),(5031,1478),(5032,1479),(5033,1479),(5034,1479),(5035,1480),(5036,1480),(5037,1480),(5038,1481),(5039,1481),(5040,1481),(5041,1482),(5042,1482),(5043,1482),(5044,1483),(5045,1483),(5046,1483),(5047,1484),(5048,1484),(5049,1484),(5050,1485),(5051,1485),(5052,1485),(5053,1486),(5054,1486),(5055,1486),(5056,1487),(5057,1487),(5058,1487),(5059,1488),(5060,1488),(5061,1488),(5062,1489),(5063,1489),(5064,1489),(5065,1490),(5066,1490),(5067,1490),(5068,1491),(5069,1491),(5070,1491),(5071,1492),(5072,1492),(5073,1492),(5074,1493),(5075,1493),(5076,1493),(5077,1494),(5078,1494),(5079,1494),(8341,1495),(8342,1495),(8343,1495),(5104,1496),(5105,1496),(5106,1496),(5107,1496),(5108,1497),(5109,1497),(5110,1497),(5111,1497),(5112,1498),(5113,1498),(5114,1498),(5115,1498),(5116,1499),(5117,1499),(5118,1499),(5119,1499),(5120,1500),(5121,1500),(5122,1500),(5123,1500),(5124,1501),(5125,1501),(5126,1501),(5127,1501),(5128,1502),(5129,1502),(5130,1502),(5131,1502),(5132,1503),(5133,1503),(5134,1503),(5135,1503),(5136,1504),(5137,1504),(5138,1504),(5139,1504),(5140,1505),(5141,1505),(5142,1505),(5143,1505),(5144,1506),(5145,1506),(5146,1506),(5147,1506),(5148,1507),(5149,1507),(5150,1507),(5151,1507),(5152,1508),(5153,1508),(5154,1508),(5155,1508),(5156,1509),(5157,1509),(5158,1509),(5159,1509),(5160,1510),(5161,1510),(5162,1510),(5163,1510),(5164,1511),(5165,1511),(5166,1511),(5167,1511),(5168,1512),(5169,1512),(5170,1512),(5171,1512),(5172,1513),(5173,1513),(5174,1513),(5175,1513),(5176,1514),(5177,1514),(5178,1514),(5179,1514),(5180,1515),(5181,1515),(5182,1515),(5183,1515),(5184,1516),(5185,1516),(5186,1516),(5187,1516),(5188,1517),(5189,1517),(5190,1517),(5191,1517),(5192,1518),(5193,1518),(5194,1518),(5195,1518),(5196,1519),(5197,1519),(5198,1519),(5199,1519),(5200,1520),(5201,1520),(5202,1520),(5203,1520),(5204,1521),(5205,1521),(5206,1521),(5207,1521),(5208,1522),(5209,1522),(5210,1522),(5211,1522),(5212,1523),(5213,1523),(5214,1523),(5215,1523),(5216,1524),(5217,1524),(5218,1524),(5219,1524),(5220,1525),(5221,1525),(5222,1525),(5223,1525),(8344,1526),(8345,1526),(8346,1526),(8347,1526),(5224,1527),(5225,1527),(5226,1527),(5227,1527),(5228,1528),(5229,1528),(5230,1528),(5231,1528),(5232,1529),(5233,1529),(5234,1529),(5235,1529),(5236,1530),(5237,1530),(5238,1530),(5239,1530),(5240,1531),(5241,1531),(5242,1531),(5243,1531),(5244,1532),(5245,1532),(5246,1532),(5247,1532),(5248,1533),(5249,1533),(5250,1533),(5251,1533),(5252,1534),(5253,1534),(5254,1534),(5255,1534),(5256,1535),(5257,1535),(5258,1535),(5259,1535),(5260,1536),(5261,1536),(5262,1536),(5263,1536),(5264,1537),(5265,1537),(5266,1537),(5267,1537),(5268,1538),(5269,1538),(5270,1538),(5271,1538),(5272,1539),(5273,1539),(5274,1539),(5275,1539),(5276,1540),(5277,1540),(5278,1540),(5279,1540),(5280,1541),(5281,1541),(5282,1541),(5283,1541),(5284,1542),(5285,1542),(5286,1542),(5287,1542),(5288,1543),(5289,1543),(5290,1543),(5291,1543),(5292,1544),(5293,1544),(5294,1544),(5295,1544),(5296,1545),(5297,1545),(5298,1545),(5299,1545),(5300,1546),(5301,1546),(5302,1546),(5303,1546),(5304,1547),(5305,1547),(5306,1547),(5307,1547),(5308,1548),(5309,1548),(5310,1548),(5311,1548),(5312,1549),(5313,1549),(5314,1549),(5315,1549),(5316,1550),(5317,1550),(5318,1550),(5319,1550),(5320,1551),(5321,1551),(5322,1551),(5323,1551),(5324,1552),(5325,1552),(5326,1552),(5327,1552),(5328,1553),(5329,1553),(5330,1553),(5331,1553),(5332,1554),(5333,1554),(5334,1554),(5335,1554),(5336,1555),(5337,1555),(5338,1555),(5339,1555),(5340,1556),(5341,1556),(5342,1556),(5343,1556),(5344,1557),(5345,1557),(5346,1557),(5347,1557),(5348,1558),(5349,1558),(5350,1558),(5351,1558),(5352,1559),(5353,1559),(5354,1559),(5355,1559),(5356,1560),(5357,1560),(5358,1560),(5359,1560),(8348,1561),(8349,1561),(8350,1561),(8351,1561),(5360,1562),(5361,1562),(5362,1562),(5363,1562),(5364,1563),(5365,1563),(5366,1563),(5367,1563),(5368,1564),(5369,1564),(5370,1564),(5371,1564),(5372,1565),(5373,1565),(5374,1565),(5375,1565),(5376,1566),(5377,1566),(5378,1566),(5379,1566),(5380,1567),(5381,1567),(5382,1567),(5383,1567),(5384,1568),(5385,1568),(5386,1568),(5387,1568),(5388,1569),(5389,1569),(5390,1569),(5391,1569),(5392,1570),(5393,1570),(5394,1570),(5395,1570),(5396,1571),(5397,1571),(5398,1571),(5399,1571),(5400,1572),(5401,1572),(5402,1572),(5403,1572),(5404,1573),(5405,1573),(5406,1573),(5407,1574),(5408,1574),(5409,1574),(5410,1575),(5411,1575),(5412,1575),(5413,1575),(5414,1576),(5415,1576),(5416,1576),(5417,1577),(5418,1577),(5419,1577),(5420,1578),(5421,1578),(5422,1578),(5423,1579),(5424,1579),(5425,1579),(5426,1579),(5427,1580),(5428,1580),(5429,1580),(5430,1581),(5431,1581),(5432,1581),(5433,1582),(5434,1582),(5435,1582),(5436,1583),(5437,1583),(5438,1583),(5439,1583),(5440,1584),(5441,1584),(5442,1584),(5443,1585),(5444,1585),(5445,1585),(5446,1586),(5447,1586),(5448,1586),(5449,1587),(5450,1587),(5451,1587),(5452,1588),(5453,1588),(5454,1588),(5455,1589),(5456,1589),(5457,1589),(5458,1590),(5459,1590),(5460,1590),(5461,1591),(5462,1591),(5463,1591),(5464,1592),(5465,1592),(5466,1592),(5467,1593),(5468,1593),(5469,1593),(5470,1594),(5471,1594),(5472,1594),(5473,1595),(5474,1595),(5475,1595),(5476,1596),(5477,1596),(5478,1596),(5560,1597),(5561,1597),(5562,1597),(5479,1598),(5480,1598),(5481,1598),(5482,1599),(5483,1599),(5484,1599),(5485,1600),(5486,1600),(5487,1600),(5488,1601),(5489,1601),(5490,1601),(5491,1602),(5492,1602),(5493,1602),(5494,1603),(5495,1603),(5496,1603),(5497,1604),(5498,1604),(5499,1604),(5500,1605),(5501,1605),(5502,1605),(5503,1605),(5504,1606),(5505,1606),(5506,1606),(5507,1606),(5508,1607),(5509,1607),(5510,1607),(5511,1607),(5512,1608),(5513,1608),(5514,1608),(5515,1608),(5516,1609),(5517,1609),(5518,1609),(5519,1609),(5520,1610),(5521,1610),(5522,1610),(5523,1610),(5524,1611),(5525,1611),(5526,1611),(5527,1611),(5528,1612),(5529,1612),(5530,1612),(5531,1612),(5532,1613),(5533,1613),(5534,1613),(5535,1613),(5536,1614),(5537,1614),(5538,1614),(5539,1614),(5540,1615),(5541,1615),(5542,1615),(5543,1615),(5544,1616),(5545,1616),(5546,1616),(5547,1616),(5548,1617),(5549,1617),(5550,1617),(5551,1617),(5552,1618),(5553,1618),(5554,1618),(5555,1618),(5556,1619),(5557,1619),(5558,1619),(5559,1619),(5563,1620),(5564,1620),(5565,1620),(5566,1620),(5567,1621),(5568,1621),(5569,1621),(5570,1621),(5571,1622),(5572,1622),(5573,1622),(5574,1622),(5575,1623),(5576,1623),(5577,1623),(5578,1623),(5579,1624),(5580,1624),(5581,1624),(5582,1624),(5583,1625),(5584,1625),(5585,1625),(5586,1625),(5587,1626),(5588,1626),(5589,1626),(5590,1626),(5591,1627),(5592,1627),(5593,1627),(5594,1627),(5595,1628),(5596,1628),(5597,1628),(5598,1628),(5599,1629),(5600,1629),(5601,1629),(5602,1629),(5603,1630),(5604,1630),(5605,1630),(5606,1630),(5607,1631),(5608,1631),(5609,1631),(5610,1632),(5611,1632),(5612,1632),(5613,1633),(5614,1633),(5615,1633),(5616,1634),(5617,1634),(5618,1634),(5619,1635),(5620,1635),(5621,1635),(5622,1636),(5623,1636),(5624,1636),(5625,1637),(5626,1637),(5627,1637),(5628,1638),(5629,1638),(5630,1638),(5631,1639),(5632,1639),(5633,1639),(5634,1640),(5635,1640),(5636,1640),(5637,1641),(5638,1641),(5639,1641),(5640,1642),(5641,1642),(5642,1642),(5643,1643),(5644,1643),(5645,1643),(5646,1644),(5647,1644),(5648,1644),(5649,1644),(5650,1645),(5651,1645),(5652,1645),(5653,1645),(5654,1646),(5655,1646),(5656,1646),(5657,1646),(5658,1647),(5659,1647),(5660,1647),(5661,1647),(5662,1648),(5663,1648),(5664,1648),(5665,1648),(5666,1649),(5667,1649),(5668,1649),(5669,1649),(5670,1650),(5671,1650),(5672,1650),(5673,1650),(5674,1651),(5675,1651),(5676,1651),(5677,1651),(5678,1652),(5679,1652),(5680,1652),(5681,1652),(5682,1653),(5683,1653),(5684,1653),(5685,1653),(5686,1654),(5687,1654),(5688,1654),(5689,1654),(5690,1655),(5691,1655),(5692,1655),(5693,1655),(5694,1656),(5695,1656),(5696,1656),(5697,1656),(5698,1657),(5699,1657),(5700,1657),(5701,1658),(5702,1658),(5703,1658),(5704,1659),(5705,1659),(5706,1659),(5707,1660),(5708,1660),(5709,1660),(5710,1661),(5711,1661),(5712,1661),(5713,1662),(5714,1662),(5715,1662),(5716,1663),(5717,1663),(5718,1663),(5719,1664),(5720,1664),(5721,1664),(5722,1665),(5723,1665),(5724,1665),(5725,1666),(5726,1666),(5727,1666),(5728,1667),(5729,1667),(5730,1667),(5731,1668),(5732,1668),(5733,1668),(5734,1669),(5735,1669),(5736,1669),(5737,1670),(5738,1670),(5739,1670),(5740,1671),(5741,1671),(5742,1671),(5743,1672),(5744,1672),(5745,1672),(5746,1673),(5747,1673),(5748,1673),(5749,1674),(5750,1674),(5751,1674),(5752,1675),(5753,1675),(5754,1675),(5755,1676),(5756,1676),(5757,1676),(5758,1677),(5759,1677),(5760,1677),(5761,1678),(5762,1678),(5763,1678),(5764,1679),(5765,1679),(5766,1679),(5767,1680),(5768,1680),(5769,1680),(5770,1681),(5771,1681),(5772,1681),(5773,1682),(5774,1682),(5775,1682),(5776,1683),(5777,1683),(5778,1683),(5779,1684),(5780,1684),(5781,1684),(5782,1685),(5783,1685),(5784,1685),(5785,1686),(5786,1686),(5787,1686),(5788,1687),(5789,1687),(5790,1687),(5791,1688),(5792,1688),(5793,1688),(5794,1689),(5795,1689),(5796,1689),(5797,1690),(5798,1690),(5799,1690),(5804,1692),(5805,1692),(5806,1692),(5807,1693),(5808,1693),(5809,1693),(5810,1694),(5811,1694),(5812,1694),(5813,1695),(5814,1695),(5815,1695),(5816,1696),(5817,1696),(5818,1696),(5819,1697),(5820,1697),(5821,1697),(5822,1698),(5823,1698),(5824,1698),(5825,1699),(5826,1699),(5827,1699),(5828,1700),(5829,1700),(5830,1700),(5831,1700),(5832,1701),(5833,1701),(5834,1701),(5835,1701),(5836,1702),(5837,1702),(5838,1702),(5839,1702),(5840,1703),(5841,1703),(5842,1703),(5843,1703),(5844,1704),(5845,1704),(5846,1704),(5847,1704),(5848,1705),(5849,1705),(5850,1705),(5851,1705),(5852,1706),(5853,1706),(5854,1706),(5855,1706),(5856,1707),(5857,1707),(5858,1707),(5859,1707),(5860,1708),(5861,1708),(5862,1708),(5863,1708),(5864,1709),(5865,1709),(5866,1709),(5867,1709),(5868,1709),(5869,1709),(5870,1709),(5871,1709),(5872,1710),(5873,1710),(5874,1710),(5875,1711),(5876,1711),(5877,1711),(5878,1712),(5879,1712),(5880,1712),(5881,1713),(5882,1713),(5883,1713),(5884,1714),(5885,1714),(5886,1714),(5887,1715),(5888,1715),(5889,1715),(5890,1716),(5891,1716),(5892,1716),(5893,1717),(5894,1717),(5895,1717),(5896,1718),(5897,1718),(5898,1718),(5899,1719),(5900,1719),(5901,1719),(5902,1720),(5903,1720),(5904,1720),(5905,1721),(5906,1721),(5907,1721),(5908,1722),(5909,1722),(5910,1722),(5911,1723),(5912,1723),(5913,1723),(5914,1724),(5915,1724),(5916,1724),(5917,1725),(5918,1725),(5919,1725),(5920,1726),(5921,1726),(5922,1726),(5923,1726),(5924,1727),(5925,1727),(5926,1727),(5927,1727),(5928,1728),(5929,1728),(5930,1728),(5931,1728),(5932,1729),(5933,1729),(5934,1729),(5935,1729),(5936,1730),(5937,1730),(5938,1730),(5939,1730),(5940,1731),(5941,1731),(5942,1731),(5943,1731),(5944,1732),(5945,1732),(5946,1732),(5947,1732),(5948,1733),(5949,1733),(5950,1733),(5951,1733),(5952,1734),(5953,1734),(5954,1734),(5955,1734),(5956,1735),(5957,1735),(5958,1735),(5959,1735),(5960,1736),(5961,1736),(5962,1736),(5963,1737),(5964,1737),(5965,1737),(5966,1738),(5967,1738),(5968,1738),(5969,1739),(5970,1739),(5971,1739),(5972,1740),(5973,1740),(5974,1740),(5975,1741),(5976,1741),(5977,1741),(5978,1742),(5979,1742),(5980,1742),(5981,1743),(5982,1743),(5983,1743),(5984,1744),(5985,1744),(5986,1744),(5987,1745),(5988,1745),(5989,1745),(5990,1746),(5991,1746),(5992,1746),(5993,1747),(5994,1747),(5995,1747),(5996,1748),(5997,1748),(5998,1748),(5999,1749),(6000,1749),(6001,1749),(6002,1750),(6003,1750),(6004,1750),(6005,1751),(6006,1751),(6007,1751),(6008,1752),(6009,1752),(6010,1752),(6011,1753),(6012,1753),(6013,1753),(6014,1754),(6015,1754),(6016,1754),(6017,1755),(6018,1755),(6019,1755),(6020,1756),(6021,1756),(6022,1756),(6023,1757),(6024,1757),(6025,1757),(6026,1757),(6027,1758),(6028,1758),(6029,1758),(6030,1758),(6031,1759),(6032,1759),(6033,1759),(6034,1759),(6035,1760),(6036,1760),(6037,1760),(6038,1760),(6039,1761),(6040,1761),(6041,1761),(6042,1761),(6043,1762),(6044,1762),(6045,1762),(6046,1762),(6047,1763),(6048,1763),(6049,1763),(6050,1763),(6051,1764),(6052,1764),(6053,1764),(6054,1764),(6055,1765),(6056,1765),(6057,1765),(6058,1765),(6059,1766),(6060,1766),(6061,1766),(6062,1766),(6063,1767),(6064,1767),(6065,1767),(6066,1767),(6067,1768),(6068,1768),(6069,1768),(6070,1768),(6071,1769),(6072,1769),(6073,1769),(6074,1769),(6075,1770),(6076,1770),(6077,1770),(6078,1770),(6079,1771),(6080,1771),(6081,1771),(6082,1771),(6083,1772),(6084,1772),(6085,1772),(6086,1772),(6087,1773),(6088,1773),(6089,1773),(6090,1773),(6091,1774),(6092,1774),(6093,1774),(6094,1774),(6095,1775),(6096,1775),(6097,1775),(6098,1775),(6099,1776),(6100,1776),(6101,1776),(6102,1776),(6103,1777),(6104,1777),(6105,1777),(6106,1777),(6107,1778),(6108,1778),(6109,1778),(6110,1779),(6111,1779),(6112,1779),(6113,1780),(6114,1780),(6115,1780),(6116,1781),(6117,1781),(6118,1781),(6119,1782),(6120,1782),(6121,1782),(6122,1783),(6123,1783),(6124,1783),(6125,1784),(6126,1784),(6127,1784),(6128,1785),(6129,1785),(6130,1785),(6131,1786),(6132,1786),(6133,1786),(6134,1787),(6135,1787),(6136,1787),(6137,1788),(6138,1788),(6139,1788),(6140,1789),(6141,1789),(6142,1789),(6143,1790),(6144,1790),(6145,1790),(6146,1791),(6147,1791),(6148,1791),(6149,1792),(6150,1792),(6151,1792),(6152,1793),(6153,1793),(6154,1793),(6155,1794),(6156,1794),(6157,1794),(6158,1795),(6159,1795),(6160,1795),(6161,1796),(6162,1796),(6163,1796),(6164,1797),(6165,1797),(6166,1797),(6167,1798),(6168,1798),(6169,1798),(6170,1799),(6171,1799),(6172,1799),(6173,1800),(6174,1800),(6175,1800),(6176,1801),(6177,1801),(6178,1801),(6179,1802),(6180,1802),(6181,1802),(6182,1803),(6183,1803),(6184,1803),(6185,1804),(6186,1804),(6187,1804),(6188,1805),(6189,1805),(6190,1805),(6191,1806),(6192,1806),(6193,1806),(6194,1807),(6195,1807),(6196,1807),(8880,1808),(8881,1808),(8882,1808),(6197,1809),(6198,1809),(6199,1809),(6200,1809),(6201,1810),(6202,1810),(6203,1810),(6204,1810),(6205,1811),(6206,1811),(6207,1811),(6208,1811),(6209,1812),(6210,1812),(6211,1812),(6212,1812),(6213,1813),(6214,1813),(6215,1813),(6216,1813),(6217,1814),(6218,1814),(6219,1814),(6220,1814),(6221,1815),(6222,1815),(6223,1815),(6224,1815),(6225,1816),(6226,1816),(6227,1816),(6228,1816),(6229,1817),(6230,1817),(6231,1817),(6232,1817),(6281,1834),(6282,1834),(6283,1834),(6284,1835),(6285,1835),(6286,1835),(6287,1836),(6288,1836),(6289,1836),(6290,1837),(6291,1837),(6292,1837),(6293,1838),(6294,1838),(6295,1838),(6296,1839),(6297,1839),(6298,1839),(6299,1840),(6300,1840),(6301,1840),(6302,1841),(6303,1841),(6304,1841),(6305,1842),(6306,1842),(6307,1842),(6308,1843),(6309,1843),(6310,1843),(6311,1844),(6312,1844),(6313,1844),(6314,1845),(6315,1845),(6316,1845),(6317,1846),(6318,1846),(6319,1846),(6320,1847),(6321,1847),(6322,1847),(6323,1848),(6324,1848),(6325,1848),(6326,1849),(6327,1849),(6328,1849),(6329,1850),(6330,1850),(6331,1850),(6332,1851),(6333,1851),(6334,1851),(6335,1852),(6336,1852),(6337,1852),(6338,1853),(6339,1853),(6340,1853),(6341,1854),(6342,1854),(6343,1854),(6344,1855),(6345,1855),(6346,1855),(6347,1856),(6348,1856),(6349,1856),(6350,1857),(6351,1857),(6352,1857),(6353,1858),(6354,1858),(6355,1858),(6356,1859),(6357,1859),(6358,1859),(6359,1860),(6360,1860),(6361,1860),(6362,1861),(6363,1861),(6364,1861),(6365,1862),(6366,1862),(6367,1862),(6368,1863),(6369,1863),(6370,1863),(6371,1864),(6372,1864),(6373,1864),(6374,1865),(6375,1865),(6376,1865),(6377,1866),(6378,1866),(6379,1866),(6380,1867),(6381,1867),(6382,1867),(6383,1867),(6384,1868),(6385,1868),(6386,1868),(6387,1868),(6388,1869),(6389,1869),(6390,1869),(6391,1869),(6392,1870),(6393,1870),(6394,1870),(6395,1870),(6396,1871),(6397,1871),(6398,1871),(6399,1871),(6400,1872),(6401,1872),(6402,1872),(6403,1872),(6404,1873),(6405,1873),(6406,1873),(6407,1873),(6408,1874),(6409,1874),(6410,1874),(6411,1874),(6412,1875),(6413,1875),(6414,1875),(6415,1875),(6416,1876),(6417,1876),(6418,1876),(6419,1876),(6420,1877),(6421,1877),(6422,1877),(6423,1877),(6424,1878),(6425,1878),(6426,1878),(6427,1878),(6428,1879),(6429,1879),(6430,1879),(6431,1879),(6432,1880),(6433,1880),(6434,1880),(6435,1880),(6436,1881),(6437,1881),(6438,1881),(6439,1881),(6440,1882),(6441,1882),(6442,1882),(6443,1882),(6444,1883),(6445,1883),(6446,1883),(6447,1883),(6448,1884),(6449,1884),(6450,1884),(6451,1884),(6452,1885),(6453,1885),(6454,1885),(6455,1885),(6456,1886),(6457,1886),(6458,1886),(6459,1886),(6460,1887),(6461,1887),(6462,1887),(6463,1887),(6464,1888),(6465,1888),(6466,1888),(6467,1888),(6468,1889),(6469,1889),(6470,1889),(6471,1890),(6472,1890),(6473,1890),(6474,1891),(6475,1891),(6476,1891),(6477,1892),(6478,1892),(6479,1892),(6480,1893),(6481,1893),(6482,1893),(6483,1894),(6484,1894),(6485,1894),(6486,1895),(6487,1895),(6488,1895),(6489,1896),(6490,1896),(6491,1896),(6492,1897),(6493,1897),(6494,1897),(6495,1898),(6496,1898),(6497,1898),(6498,1899),(6499,1899),(6500,1899),(6501,1900),(6502,1900),(6503,1900),(6504,1901),(6505,1901),(6506,1901),(6507,1902),(6508,1902),(6509,1902),(6510,1903),(6511,1903),(6512,1903),(6513,1904),(6514,1904),(6515,1904),(6516,1904),(6517,1905),(6518,1905),(6519,1905),(6520,1905),(6521,1906),(6522,1906),(6523,1906),(6524,1906),(6525,1907),(6526,1907),(6527,1907),(6528,1907),(6529,1908),(6530,1908),(6531,1908),(6532,1908),(6533,1909),(6534,1909),(6535,1909),(6536,1909),(6537,1910),(6538,1910),(6539,1910),(6540,1910),(6541,1911),(6542,1911),(6543,1911),(6544,1911),(6545,1912),(6546,1912),(6547,1912),(6548,1912),(6549,1913),(6550,1913),(6551,1913),(6552,1913),(6553,1914),(6554,1914),(6555,1914),(6556,1914),(6557,1915),(6558,1915),(6559,1915),(6560,1915),(6561,1916),(6562,1916),(6563,1916),(6564,1916),(6565,1917),(6566,1917),(6567,1917),(6568,1917),(6569,1918),(6570,1918),(6571,1918),(6572,1918),(6573,1919),(6574,1919),(6575,1919),(6576,1919),(6577,1920),(6578,1920),(6579,1920),(6580,1920),(6609,1928),(6610,1928),(6611,1928),(6612,1929),(6613,1929),(6614,1929),(6615,1930),(6616,1930),(6617,1930),(6618,1931),(6619,1931),(6620,1931),(6621,1932),(6622,1932),(6623,1932),(6624,1933),(6625,1933),(6626,1933),(6627,1934),(6628,1934),(6629,1934),(6630,1935),(6631,1935),(6632,1935),(6633,1936),(6634,1936),(6635,1936),(6636,1937),(6637,1937),(6638,1937),(6639,1938),(6640,1938),(6641,1938),(6642,1939),(6643,1939),(6644,1939),(6645,1940),(6646,1940),(6647,1940),(6648,1941),(6649,1941),(6650,1941),(6651,1942),(6652,1942),(6653,1942),(6654,1943),(6655,1943),(6656,1943),(6657,1944),(6658,1944),(6659,1944),(6660,1944),(6661,1945),(6662,1945),(6663,1945),(6664,1945),(6665,1946),(6666,1946),(6667,1946),(6668,1946),(6669,1947),(6670,1947),(6671,1947),(6672,1947),(6673,1948),(6674,1948),(6675,1948),(6676,1948),(6677,1949),(6678,1949),(6679,1949),(6680,1949),(6681,1950),(6682,1950),(6683,1950),(6684,1950),(6685,1951),(6686,1951),(6687,1951),(6688,1951),(6689,1952),(6690,1952),(6691,1952),(6692,1952),(6693,1953),(6694,1953),(6695,1953),(6696,1953),(6697,1954),(6698,1954),(6699,1954),(6700,1954),(6701,1955),(6702,1955),(6703,1955),(6704,1955),(6705,1956),(6706,1956),(6707,1956),(6708,1956),(6709,1957),(6710,1957),(6711,1957),(6712,1957),(6713,1958),(6714,1958),(6715,1958),(6716,1958),(6717,1959),(6718,1959),(6719,1959),(6720,1959),(6721,1960),(6722,1960),(6723,1960),(6724,1960),(6725,1961),(6726,1961),(6727,1961),(6728,1961),(6729,1962),(6730,1962),(6731,1962),(6732,1962),(6733,1963),(6734,1963),(6735,1963),(6736,1963),(6737,1964),(6738,1964),(6739,1964),(6740,1964),(6741,1965),(6742,1965),(6743,1965),(6744,1965),(6745,1966),(6746,1966),(6747,1966),(6748,1966),(6749,1967),(6750,1967),(6751,1967),(6752,1967),(6753,1968),(6754,1968),(6755,1968),(6756,1968),(6757,1969),(6758,1969),(6759,1969),(6760,1969),(6761,1970),(6762,1970),(6763,1970),(6764,1970),(6765,1971),(6766,1971),(6767,1971),(6768,1971),(6769,1972),(6770,1972),(6771,1972),(6772,1972),(6773,1973),(6774,1973),(6775,1973),(6776,1973),(6777,1974),(6778,1974),(6779,1974),(6780,1974),(6781,1975),(6782,1975),(6783,1975),(6784,1975),(6785,1976),(6786,1976),(6787,1976),(6788,1976),(6789,1977),(6790,1977),(6791,1977),(6792,1977),(6793,1978),(6794,1978),(6795,1978),(6796,1978),(6797,1979),(6798,1979),(6799,1979),(6800,1979),(6801,1980),(6802,1980),(6803,1980),(6804,1980),(6805,1981),(6806,1981),(6807,1981),(6808,1981),(6809,1982),(6810,1982),(6811,1982),(6812,1982),(6813,1983),(6814,1983),(6815,1983),(6816,1983),(6817,1984),(6818,1984),(6819,1984),(6820,1984),(6821,1985),(6822,1985),(6823,1985),(6824,1985),(6825,1986),(6826,1986),(6827,1986),(6828,1986),(6829,1987),(6830,1987),(6831,1987),(6832,1987),(6833,1988),(6834,1988),(6835,1988),(6836,1988),(6837,1989),(6838,1989),(6839,1989),(6840,1989),(6841,1990),(6842,1990),(6843,1990),(6844,1990),(6845,1991),(6846,1991),(6847,1991),(6848,1991),(6849,1992),(6850,1992),(6851,1992),(6852,1993),(6853,1993),(6854,1993),(6855,1994),(6856,1994),(6857,1994),(6858,1995),(6859,1995),(6860,1995),(6861,1996),(6862,1996),(6863,1996),(6864,1997),(6865,1997),(6866,1997),(6867,1997),(6868,1998),(6869,1998),(6870,1998),(6871,1998),(6872,1999),(6873,1999),(6874,1999),(6875,1999),(6876,2000),(6877,2000),(6878,2000),(6879,2000),(6880,2001),(6881,2001),(6882,2001),(6883,2001),(6884,2002),(6885,2002),(6886,2002),(6887,2002),(6888,2003),(6889,2003),(6890,2003),(6891,2003),(6892,2004),(6893,2004),(6894,2004),(6895,2004),(6896,2005),(6897,2005),(6898,2005),(6899,2005),(6900,2006),(6901,2006),(6902,2006),(6903,2006),(6904,2007),(6905,2007),(6906,2007),(6907,2007),(6908,2008),(6909,2008),(6910,2008),(6911,2008),(6912,2009),(6913,2009),(6914,2009),(6915,2009),(6916,2010),(6917,2010),(6918,2010),(6919,2010),(6920,2011),(6921,2011),(6922,2011),(6923,2011),(6924,2012),(6925,2012),(6926,2012),(6927,2012),(6928,2013),(6929,2013),(6930,2013),(6931,2013),(6932,2014),(6933,2014),(6934,2014),(6935,2014),(6936,2015),(6937,2015),(6938,2015),(6939,2015),(6940,2016),(6941,2016),(6942,2016),(6943,2016),(8883,2017),(8884,2017),(8885,2017),(8886,2017),(8887,2017),(6944,2018),(6945,2018),(6946,2018),(6947,2019),(6948,2019),(6949,2019),(6950,2020),(6951,2020),(6952,2020),(6953,2021),(6954,2021),(6955,2021),(6956,2021),(6957,2022),(6958,2022),(6959,2022),(6960,2022),(6961,2023),(6962,2023),(6963,2023),(6964,2023),(6965,2024),(6966,2024),(6967,2024),(6968,2024),(6969,2025),(6970,2025),(6971,2025),(6972,2025),(6973,2026),(6974,2026),(6975,2026),(6976,2026),(6977,2027),(6978,2027),(6979,2027),(6980,2027),(6981,2028),(6982,2028),(6983,2028),(6984,2028),(6985,2029),(6986,2029),(6987,2029),(6988,2029),(6989,2030),(6990,2030),(6991,2030),(6992,2031),(6993,2031),(6994,2031),(6995,2032),(6996,2032),(6997,2032),(7034,2042),(7035,2042),(7036,2042),(7037,2042),(7038,2043),(7039,2043),(7040,2043),(7041,2043),(7042,2044),(7043,2044),(7044,2044),(7045,2044),(7046,2045),(7047,2045),(7048,2045),(7049,2045),(7050,2046),(7051,2046),(7052,2046),(7053,2046),(7054,2047),(7055,2047),(7056,2047),(7057,2047),(7058,2048),(7059,2048),(7060,2048),(7061,2048),(7062,2049),(7063,2049),(7064,2049),(7065,2049),(7066,2050),(7067,2050),(7068,2050),(7069,2050),(7070,2051),(7071,2051),(7072,2051),(7073,2051),(7074,2052),(7075,2052),(7076,2052),(7077,2052),(7078,2053),(7079,2053),(7080,2053),(7081,2053),(7082,2054),(7083,2054),(7084,2054),(7085,2054),(7086,2055),(7087,2055),(7088,2055),(7089,2055),(7090,2056),(7091,2056),(7092,2057),(7093,2057),(7094,2058),(7095,2058),(7096,2059),(7097,2059),(7098,2060),(7099,2060),(7100,2061),(7101,2061),(7102,2061),(7103,2061),(7104,2062),(7105,2062),(7106,2062),(7107,2062),(7108,2063),(7109,2063),(7110,2063),(7111,2063),(7112,2064),(7113,2064),(7114,2064),(7115,2064),(7116,2065),(7117,2065),(7118,2065),(7119,2065),(7120,2066),(7121,2066),(7122,2066),(7123,2067),(7124,2067),(7125,2067),(7126,2068),(7127,2068),(7128,2068),(7129,2069),(7130,2069),(7131,2069),(7132,2070),(7133,2070),(7134,2070),(7135,2071),(7136,2071),(7137,2071),(7138,2072),(7139,2072),(7140,2072),(7141,2073),(7142,2073),(7143,2073),(7144,2073),(7145,2074),(7146,2074),(7147,2074),(7148,2074),(7149,2075),(7150,2075),(7151,2075),(7152,2075),(7153,2076),(7154,2076),(7155,2076),(7156,2076),(7157,2077),(7158,2077),(7159,2077),(7160,2077),(7161,2078),(7162,2078),(7163,2078),(7164,2078),(7165,2079),(7166,2079),(7167,2079),(7168,2079),(7169,2080),(7170,2080),(7171,2080),(7172,2080),(7173,2081),(7174,2081),(7175,2081),(7176,2081),(7177,2082),(7178,2082),(7179,2082),(7180,2082),(7181,2083),(7182,2083),(7183,2083),(7184,2083),(7185,2084),(7186,2084),(7187,2084),(7188,2084),(7189,2085),(7190,2085),(7191,2085),(7192,2085),(7193,2086),(7194,2086),(7195,2086),(7196,2086),(7197,2087),(7198,2087),(7199,2087),(7200,2087),(7201,2088),(7202,2088),(7203,2088),(7204,2088),(7205,2089),(7206,2089),(7207,2089),(7208,2089),(7209,2090),(7210,2090),(7211,2090),(7212,2090),(7213,2091),(7214,2091),(7215,2091),(7216,2091),(7217,2092),(7218,2092),(7219,2092),(7220,2092),(7221,2093),(7222,2093),(7223,2093),(7224,2093),(7225,2094),(7226,2094),(7227,2094),(7228,2094),(7229,2095),(7230,2095),(7231,2095),(7232,2095),(7233,2096),(7234,2096),(7235,2096),(7236,2096),(7237,2097),(7238,2097),(7239,2097),(7240,2097),(7241,2098),(7242,2098),(7243,2098),(7244,2098),(7245,2099),(7246,2099),(7247,2099),(7248,2099),(7249,2100),(7250,2100),(7251,2100),(7252,2100),(7253,2101),(7254,2101),(7255,2101),(7256,2101),(7257,2102),(7258,2102),(7259,2102),(7260,2102),(7261,2103),(7262,2103),(7263,2103),(7264,2103),(7265,2104),(7266,2104),(7267,2104),(7268,2104),(7269,2105),(7270,2105),(7271,2105),(7272,2105),(7273,2106),(7274,2106),(7275,2106),(7276,2106),(7277,2107),(7278,2107),(7279,2107),(7280,2107),(7281,2108),(7282,2108),(7283,2108),(7284,2108),(7285,2109),(7286,2109),(7287,2109),(7288,2109),(7289,2110),(7290,2110),(7291,2110),(7292,2110),(7293,2111),(7294,2111),(7295,2111),(7296,2111),(7297,2112),(7298,2112),(7299,2112),(7300,2112),(7301,2113),(7302,2113),(7303,2113),(7304,2113),(7305,2114),(7306,2114),(7307,2114),(7308,2114),(7309,2115),(7310,2115),(7311,2115),(7312,2115),(7313,2116),(7314,2116),(7315,2116),(7316,2116),(7317,2117),(7318,2117),(7319,2117),(7320,2117),(7321,2118),(7322,2118),(7323,2118),(7324,2118),(7325,2119),(7326,2119),(7327,2119),(7328,2119),(7329,2120),(7330,2120),(7331,2120),(7332,2120),(7333,2121),(7334,2121),(7335,2121),(7336,2121),(7337,2122),(7338,2122),(7339,2122),(7340,2122),(7341,2123),(7342,2123),(7343,2123),(7344,2123),(7345,2124),(7346,2124),(7347,2124),(7348,2124),(7349,2125),(7350,2125),(7351,2125),(7352,2125),(7353,2126),(7354,2126),(7355,2126),(7356,2126),(7357,2127),(7358,2127),(7359,2127),(7360,2127),(7361,2128),(7362,2128),(7363,2128),(7364,2128),(7365,2129),(7366,2129),(7367,2129),(7368,2129),(7369,2130),(7370,2130),(7371,2130),(7372,2130),(7373,2131),(7374,2131),(7375,2131),(7376,2131),(7377,2132),(7378,2132),(7379,2132),(7380,2132),(7381,2133),(7382,2133),(7383,2133),(7384,2134),(7385,2134),(7386,2134),(7387,2135),(7388,2135),(7389,2135),(7390,2136),(7391,2136),(7392,2136),(7393,2137),(7394,2137),(7395,2137),(7396,2138),(7397,2138),(7398,2138),(7399,2139),(7400,2139),(7401,2139),(7402,2139),(7403,2140),(7404,2140),(7405,2140),(7406,2140),(7407,2141),(7408,2141),(7409,2141),(7410,2141),(7411,2142),(7412,2142),(7413,2142),(7414,2142),(7415,2143),(7416,2143),(7417,2143),(7418,2143),(7419,2144),(7420,2144),(7421,2144),(7422,2144),(7423,2145),(7424,2145),(7425,2145),(7426,2145),(7427,2146),(7428,2146),(7429,2146),(7430,2146),(7431,2147),(7432,2147),(7433,2147),(7434,2147),(7435,2148),(7436,2148),(7437,2148),(7438,2148),(7439,2149),(7440,2149),(7441,2149),(7442,2149),(7443,2149),(7444,2150),(7445,2150),(7446,2150),(7447,2150),(7448,2151),(7449,2151),(7450,2151),(7451,2151),(7452,2152),(7453,2152),(7454,2152),(7455,2152),(7456,2153),(7457,2153),(7458,2153),(7459,2153),(7460,2154),(7461,2154),(7462,2154),(7463,2154),(7464,2155),(7465,2155),(7466,2155),(7467,2155),(7468,2156),(7469,2156),(7470,2156),(7471,2156),(7472,2157),(7473,2157),(7474,2157),(7475,2157),(7476,2158),(7477,2158),(7478,2158),(7479,2159),(7480,2159),(7481,2159),(7482,2160),(7483,2160),(7484,2160),(7485,2161),(7486,2161),(7487,2161),(7488,2162),(7489,2162),(7490,2162),(7491,2163),(7492,2163),(7493,2163),(7494,2164),(7495,2164),(7496,2164),(7497,2165),(7498,2165),(7499,2165),(7500,2166),(7501,2166),(7502,2166),(7503,2167),(7504,2167),(7505,2167),(7506,2168),(7507,2168),(7508,2168),(7509,2169),(7510,2169),(7511,2169),(7512,2169),(7513,2170),(7514,2170),(7515,2170),(7516,2170),(7517,2171),(7518,2171),(7519,2171),(7520,2171),(7521,2171),(7522,2171),(7523,2171),(7524,2172),(7525,2172),(7526,2172),(7527,2173),(7528,2173),(7529,2173),(7530,2174),(7531,2174),(7532,2174),(7533,2175),(7534,2175),(7535,2175),(7536,2176),(7537,2176),(7538,2176),(7539,2177),(7540,2177),(7541,2177),(7542,2178),(7543,2178),(7544,2178),(7545,2179),(7546,2179),(7547,2179),(7548,2180),(7549,2180),(7550,2180),(7551,2181),(7552,2181),(7553,2181),(7554,2182),(7555,2182),(7556,2182),(7557,2183),(7558,2183),(7559,2183),(7560,2184),(7561,2184),(7562,2184),(7563,2185),(7564,2185),(7565,2185),(7566,2186),(7567,2186),(7568,2186),(7569,2186),(7570,2187),(7571,2187),(7572,2187),(7573,2187),(7574,2188),(7575,2188),(7576,2188),(7577,2188),(7578,2189),(7579,2189),(7580,2189),(7581,2189),(7582,2190),(7583,2190),(7584,2190),(7585,2190),(7586,2191),(7587,2191),(7588,2191),(7589,2191),(7590,2192),(7591,2192),(7592,2192),(7593,2192),(7594,2193),(7595,2193),(7596,2193),(7597,2193),(7598,2194),(7599,2194),(7600,2194),(7601,2194),(7602,2195),(7603,2195),(7604,2195),(7605,2195),(7606,2196),(7607,2196),(7608,2196),(7609,2196),(7610,2197),(7611,2197),(7612,2197),(7613,2197),(7614,2198),(7615,2198),(7616,2198),(7617,2198),(7618,2199),(7619,2199),(7620,2199),(7621,2199),(7622,2200),(7623,2200),(7624,2200),(7625,2200),(7626,2201),(7627,2201),(7628,2201),(7629,2201),(7630,2202),(7631,2202),(7632,2202),(7633,2202),(7634,2203),(7635,2203),(7636,2203),(7637,2203),(7638,2204),(7639,2204),(7640,2204),(7641,2204),(7642,2205),(7643,2205),(7644,2205),(7645,2205),(7646,2206),(7647,2206),(7648,2206),(7649,2206),(7650,2207),(7651,2207),(7652,2207),(7653,2207),(7654,2207),(7655,2207),(7656,2208),(7657,2208),(7658,2208),(7659,2208),(7660,2209),(7661,2209),(7662,2209),(7663,2209),(7664,2210),(7665,2210),(7666,2210),(7667,2210),(7668,2211),(7669,2211),(7670,2211),(7671,2211),(7672,2212),(7673,2212),(7674,2212),(7675,2212),(7676,2213),(7677,2213),(7678,2213),(7679,2213),(7680,2214),(7681,2214),(7682,2214),(7683,2214),(7684,2215),(7685,2215),(7686,2215),(7687,2215),(7688,2216),(7689,2216),(7690,2216),(7691,2216),(7692,2217),(7693,2217),(7694,2217),(7695,2217),(7696,2218),(7697,2218),(7698,2218),(7699,2218),(7700,2219),(7701,2219),(7702,2219),(7703,2219),(7704,2220),(7705,2220),(7706,2220),(7707,2220),(7708,2221),(7709,2221),(7710,2221),(7711,2221),(7712,2222),(7713,2222),(7714,2222),(7715,2222),(7716,2222),(7717,2222),(7718,2223),(7719,2223),(7720,2223),(7721,2223),(7722,2224),(7723,2224),(7724,2224),(7725,2224),(7726,2225),(7727,2225),(7728,2225),(7729,2225),(7730,2226),(7731,2226),(7732,2226),(7733,2226),(7734,2227),(7735,2227),(7736,2227),(7737,2227),(7738,2228),(7739,2228),(7740,2228),(7741,2228),(7742,2229),(7743,2229),(7744,2229),(7745,2229),(7746,2230),(7747,2230),(7748,2230),(7749,2230),(7750,2231),(7751,2231),(7752,2231),(7753,2231),(7754,2232),(7755,2232),(7756,2232),(7757,2232),(7758,2233),(7759,2233),(7760,2233),(7761,2233),(7762,2234),(7763,2234),(7764,2234),(7765,2234),(7766,2235),(7767,2235),(7768,2235),(7769,2236),(7770,2236),(7771,2236),(7772,2237),(7773,2237),(7774,2237),(7775,2238),(7776,2238),(7777,2238),(7778,2239),(7779,2239),(7780,2239),(7781,2240),(7782,2240),(7783,2240),(7784,2241),(7785,2241),(7786,2241),(7787,2242),(7788,2242),(7789,2242),(7790,2243),(7791,2243),(7792,2243),(7793,2244),(7794,2244),(7795,2244),(7796,2245),(7797,2245),(7798,2245),(7799,2246),(7800,2246),(7801,2246),(7802,2247),(7803,2247),(7804,2247),(7805,2248),(7806,2248),(7807,2248),(7808,2249),(7809,2249),(7810,2249),(7811,2250),(7812,2250),(7813,2250),(7814,2251),(7815,2251),(7816,2251),(7817,2252),(7818,2252),(7819,2252),(7820,2253),(7821,2253),(7822,2253),(7823,2254),(7824,2254),(7825,2254),(7826,2255),(7827,2255),(7828,2255),(7829,2256),(7830,2256),(7831,2256),(7832,2257),(7833,2257),(7834,2257),(7835,2258),(7836,2258),(7837,2258),(7838,2259),(7839,2259),(7840,2259),(7841,2260),(7842,2260),(7843,2260),(7844,2261),(7845,2261),(7846,2261),(7847,2262),(7848,2262),(7849,2262),(7850,2263),(7851,2263),(7852,2263),(7853,2264),(7854,2264),(7855,2264),(7856,2265),(7857,2265),(7858,2265),(7859,2266),(7860,2266),(7861,2266),(7862,2267),(7863,2267),(7864,2267),(7865,2268),(7866,2268),(7867,2268),(7904,2278),(7905,2278),(7906,2278),(7907,2278),(7908,2279),(7909,2279),(7910,2279),(7911,2279),(7912,2280),(7913,2280),(7914,2280),(7915,2280),(7916,2281),(7917,2281),(7918,2281),(7919,2281),(7920,2282),(7921,2282),(7922,2282),(7923,2282),(7924,2283),(7925,2283),(7926,2283),(7927,2283),(7928,2284),(7929,2284),(7930,2284),(7931,2284),(7932,2285),(7933,2285),(7934,2285),(7935,2286),(7936,2286),(7937,2286),(7938,2287),(7939,2287),(7940,2287),(7941,2288),(7942,2288),(7943,2288),(7944,2289),(7945,2289),(7946,2289),(7947,2290),(7948,2290),(7949,2290),(7950,2291),(7951,2291),(7952,2291),(7953,2292),(7954,2292),(7955,2292),(7956,2292),(7957,2293),(7958,2293),(7959,2293),(7960,2293),(7961,2294),(7962,2294),(7963,2294),(7964,2294),(7965,2295),(7966,2295),(7967,2295),(7968,2295),(7969,2296),(7970,2296),(7971,2296),(7972,2296),(7973,2297),(7974,2297),(7975,2297),(7976,2297),(7977,2298),(7978,2298),(7979,2298),(7980,2298),(7981,2299),(7982,2299),(7983,2299),(7984,2299),(7985,2300),(7986,2300),(7987,2300),(7988,2300),(7989,2301),(7990,2301),(7991,2301),(7992,2301),(7993,2302),(7994,2302),(7995,2302),(7996,2302),(7997,2303),(7998,2303),(7999,2303),(8000,2303),(8001,2304),(8002,2304),(8003,2304),(8004,2304),(8005,2305),(8006,2305),(8007,2305),(8008,2305),(8009,2306),(8010,2306),(8011,2306),(8012,2306),(8013,2307),(8014,2307),(8015,2307),(8016,2307),(8017,2308),(8018,2308),(8019,2308),(8020,2308),(8021,2309),(8022,2309),(8023,2309),(8024,2309),(8025,2310),(8026,2310),(8027,2310),(8028,2310),(8029,2311),(8030,2311),(8031,2311),(8032,2311),(8033,2312),(8034,2312),(8035,2312),(8036,2312),(8037,2313),(8038,2313),(8039,2313),(8040,2313),(8041,2314),(8042,2314),(8043,2314),(8044,2314),(8045,2315),(8046,2315),(8047,2315),(8048,2315),(8049,2316),(8050,2316),(8051,2316),(8052,2316),(8053,2317),(8054,2317),(8055,2317),(8056,2317),(8057,2318),(8058,2318),(8059,2318),(8060,2318),(8061,2319),(8062,2319),(8063,2319),(8064,2319),(8065,2320),(8066,2320),(8067,2320),(8068,2320),(8096,2330),(8097,2330),(8098,2330),(8099,2330),(8100,2331),(8101,2331),(8102,2331),(8103,2331),(8104,2332),(8105,2332),(8106,2332),(8107,2332),(8108,2333),(8109,2333),(8110,2333),(8111,2333),(8112,2334),(8113,2334),(8114,2334),(8115,2334),(8116,2335),(8117,2335),(8118,2335),(8119,2335),(8120,2336),(8121,2336),(8122,2336),(8123,2336),(8124,2337),(8125,2337),(8126,2337),(8127,2337),(8128,2338),(8129,2338),(8130,2338),(8131,2338),(8132,2339),(8133,2339),(8134,2339),(8135,2339),(8136,2340),(8137,2340),(8138,2340),(8139,2340),(8140,2341),(8141,2341),(8142,2341),(8143,2341),(8144,2342),(8145,2342),(8146,2342),(8147,2342),(8148,2343),(8149,2343),(8150,2343),(8151,2343),(8152,2344),(8153,2344),(8154,2344),(8155,2345),(8156,2345),(8157,2345),(8158,2346),(8159,2346),(8160,2346),(8161,2347),(8162,2347),(8163,2347),(8164,2348),(8165,2348),(8166,2348),(8167,2349),(8168,2349),(8169,2349),(8170,2350),(8171,2350),(8172,2350),(8173,2351),(8174,2351),(8175,2351),(8176,2351),(8177,2352),(8178,2352),(8179,2352),(8180,2352),(8181,2353),(8182,2353),(8183,2353),(8184,2353),(8185,2354),(8186,2354),(8187,2354),(8188,2354),(8189,2355),(8190,2355),(8191,2355),(8192,2355),(8193,2356),(8194,2356),(8195,2356),(8196,2356),(8888,2357),(8889,2357),(8890,2357),(8891,2357),(8197,2358),(8198,2358),(8199,2358),(8200,2358),(8201,2359),(8202,2359),(8203,2359),(8204,2359),(8205,2360),(8206,2360),(8207,2360),(8208,2360),(8209,2361),(8210,2361),(8211,2361),(8212,2361),(8213,2362),(8214,2362),(8215,2362),(8216,2362),(8217,2363),(8218,2363),(8219,2363),(8220,2363),(8221,2364),(8222,2364),(8223,2364),(8224,2364),(8225,2365),(8226,2365),(8227,2365),(8228,2365),(8229,2366),(8230,2366),(8231,2366),(8232,2366),(8233,2367),(8234,2367),(8235,2367),(8236,2367),(8237,2368),(8238,2368),(8239,2368),(8240,2368),(8241,2369),(8242,2369),(8243,2369),(8244,2369),(8245,2370),(8246,2370),(8247,2370),(8248,2370),(8249,2371),(8250,2371),(8251,2371),(8252,2371),(8253,2372),(8254,2372),(8255,2372),(8256,2372),(8257,2373),(8258,2373),(8259,2373),(8260,2373),(8261,2374),(8262,2374),(8263,2374),(8264,2375),(8265,2375),(8266,2375),(8267,2376),(8268,2376),(8269,2376),(8270,2377),(8271,2377),(8272,2377),(8273,2378),(8274,2378),(8275,2378),(8276,2379),(8277,2379),(8278,2379),(8279,2380),(8280,2380),(8281,2380),(8282,2381),(8283,2381),(8284,2381),(8285,2382),(8286,2382),(8287,2382),(8288,2383),(8289,2383),(8290,2383),(8291,2384),(8292,2384),(8293,2384),(8294,2385),(8295,2385),(8296,2385),(8297,2386),(8298,2386),(8299,2386),(8300,2387),(8301,2387),(8302,2387),(8303,2388),(8304,2388),(8305,2388),(8306,2389),(8307,2389),(8308,2389),(8309,2390),(8310,2390),(8311,2390),(8312,2390),(8313,2391),(8314,2391),(8315,2391),(8316,2391),(8317,2392),(8318,2392),(8319,2392),(8320,2392),(8321,2393),(8322,2393),(8323,2393),(8324,2393),(8325,2394),(8326,2394),(8327,2394),(8328,2394),(8329,2395),(8330,2395),(8331,2395),(8332,2395),(8333,2396),(8334,2396),(8335,2396),(8336,2396),(8352,2397),(8353,2397),(8354,2397),(8355,2397),(8356,2398),(8357,2398),(8358,2398),(8359,2398),(8360,2399),(8361,2399),(8362,2399),(8363,2399),(8364,2400),(8365,2400),(8366,2400),(8367,2400),(8368,2401),(8369,2401),(8370,2401),(8371,2401),(8372,2402),(8373,2402),(8374,2402),(8375,2402),(8376,2403),(8377,2403),(8378,2403),(8379,2403),(8380,2404),(8381,2404),(8382,2404),(8383,2404),(8384,2405),(8385,2405),(8386,2405),(8387,2405),(8388,2406),(8389,2406),(8390,2406),(8391,2406),(8392,2407),(8393,2407),(8394,2407),(8395,2407),(8396,2408),(8397,2408),(8398,2408),(8399,2408),(8400,2409),(8401,2409),(8402,2409),(8403,2409),(8404,2410),(8405,2410),(8406,2410),(8407,2410),(8408,2411),(8409,2411),(8410,2411),(8411,2411),(8412,2412),(8413,2412),(8414,2412),(8415,2412),(8416,2413),(8417,2413),(8418,2413),(8419,2413),(8420,2414),(8421,2414),(8422,2414),(8423,2414),(8424,2415),(8425,2415),(8426,2415),(8427,2415),(8428,2416),(8429,2416),(8430,2416),(8431,2416),(8432,2417),(8433,2417),(8434,2417),(8435,2417),(8436,2418),(8437,2418),(8438,2418),(8439,2418),(8440,2419),(8441,2419),(8442,2419),(8443,2419),(8444,2420),(8445,2420),(8446,2420),(8447,2420),(8448,2421),(8449,2421),(8450,2421),(8451,2421),(8452,2422),(8453,2422),(8454,2422),(8455,2422),(8456,2423),(8457,2423),(8458,2423),(8459,2423),(8460,2424),(8461,2424),(8462,2424),(8463,2424),(8464,2425),(8465,2425),(8466,2425),(8467,2425),(8468,2426),(8469,2426),(8470,2426),(8471,2426),(8472,2427),(8473,2427),(8474,2427),(8475,2427),(8476,2428),(8477,2428),(8478,2428),(8479,2428),(8480,2429),(8481,2429),(8482,2429),(8483,2429),(8484,2430),(8485,2430),(8486,2430),(8487,2430),(8488,2431),(8489,2431),(8490,2431),(8491,2431),(8492,2432),(8493,2432),(8494,2432),(8495,2432),(8496,2433),(8497,2433),(8498,2433),(8499,2433),(8500,2434),(8501,2434),(8502,2434),(8503,2434),(8504,2435),(8505,2435),(8506,2435),(8507,2435),(8508,2436),(8509,2436),(8510,2436),(8511,2436),(8512,2437),(8513,2437),(8514,2437),(8515,2437),(8516,2438),(8517,2438),(8518,2438),(8519,2438),(8520,2439),(8521,2439),(8522,2439),(8523,2439),(8524,2440),(8525,2440),(8526,2440),(8527,2440),(8528,2441),(8529,2441),(8530,2441),(8531,2442),(8532,2442),(8533,2442),(8534,2443),(8535,2443),(8536,2443),(8537,2444),(8538,2444),(8539,2444),(8540,2445),(8541,2445),(8542,2445),(8543,2446),(8544,2446),(8545,2446),(8546,2447),(8547,2447),(8548,2447),(8549,2448),(8550,2448),(8551,2448),(8552,2449),(8553,2449),(8554,2449),(8555,2450),(8556,2450),(8557,2450),(8558,2451),(8559,2451),(8560,2451),(8561,2452),(8562,2452),(8563,2452),(8564,2453),(8565,2453),(8566,2453),(8567,2454),(8568,2454),(8569,2454),(8570,2455),(8571,2455),(8572,2455),(8573,2456),(8574,2456),(8575,2456),(8576,2457),(8577,2457),(8578,2457),(8579,2458),(8580,2458),(8581,2458),(8582,2459),(8583,2459),(8584,2459),(8585,2460),(8586,2460),(8587,2460),(8588,2461),(8589,2461),(8590,2461),(8591,2462),(8592,2462),(8593,2462),(8594,2463),(8595,2463),(8596,2463),(8597,2464),(8598,2464),(8599,2464),(8600,2465),(8601,2465),(8602,2465),(8603,2466),(8604,2466),(8605,2466),(8606,2467),(8607,2467),(8608,2467),(8609,2468),(8610,2468),(8611,2468),(8612,2469),(8613,2469),(8614,2469),(8615,2470),(8616,2470),(8617,2470),(8618,2471),(8619,2471),(8620,2471),(8621,2472),(8622,2472),(8623,2472),(8624,2473),(8625,2473),(8626,2473),(8627,2474),(8628,2474),(8629,2474),(8630,2475),(8631,2475),(8632,2475),(8633,2476),(8634,2476),(8635,2476),(8636,2477),(8637,2477),(8638,2477),(8639,2478),(8640,2478),(8641,2478),(8642,2479),(8643,2479),(8644,2479),(8645,2479),(8646,2480),(8647,2480),(8648,2480),(8649,2480),(8650,2481),(8651,2481),(8652,2481),(8653,2481),(8654,2482),(8655,2482),(8656,2482),(8657,2482),(8658,2483),(8659,2483),(8660,2483),(8661,2483),(8662,2484),(8663,2484),(8664,2484),(8665,2484),(8666,2485),(8667,2485),(8668,2485),(8669,2485),(8670,2486),(8671,2486),(8672,2486),(8673,2486),(8674,2487),(8675,2487),(8676,2487),(8677,2487),(8678,2488),(8679,2488),(8680,2488),(8681,2489),(8682,2489),(8683,2489),(8684,2490),(8685,2490),(8686,2490),(8687,2491),(8688,2491),(8689,2491),(8690,2492),(8691,2492),(8692,2492),(8693,2493),(8694,2493),(8695,2493),(8696,2494),(8697,2494),(8698,2494),(8699,2495),(8700,2495),(8701,2495),(8702,2496),(8703,2496),(8704,2496),(8705,2497),(8706,2497),(8707,2497),(8708,2498),(8709,2498),(8710,2498),(8711,2499),(8712,2499),(8713,2499),(8714,2500),(8715,2500),(8716,2500),(8717,2501),(8718,2501),(8719,2501),(8720,2501),(8721,2502),(8722,2502),(8723,2502),(8724,2502),(8725,2503),(8726,2503),(8727,2503),(8728,2503),(8729,2504),(8730,2504),(8731,2504),(8732,2504),(8733,2505),(8734,2505),(8735,2505),(8736,2505),(8737,2506),(8738,2506),(8739,2506),(8740,2506),(8741,2507),(8742,2507),(8743,2507),(8744,2507),(8745,2508),(8746,2508),(8747,2508),(8748,2508),(8749,2509),(8750,2509),(8751,2509),(8752,2509),(8753,2510),(8754,2510),(8755,2510),(8756,2510),(8757,2511),(8758,2511),(8759,2511),(8760,2511),(8761,2512),(8762,2512),(8763,2512),(8764,2512),(8765,2513),(8766,2513),(8767,2513),(8768,2513),(8769,2514),(8770,2514),(8771,2514),(8772,2514),(8773,2515),(8774,2515),(8775,2515),(8776,2515),(8777,2516),(8778,2516),(8779,2516),(8780,2516),(8781,2517),(8782,2517),(8783,2517),(8784,2517),(8785,2518),(8786,2518),(8787,2518),(8788,2518),(8789,2519),(8790,2519),(8791,2519),(8792,2519),(8793,2520),(8794,2520),(8795,2520),(8796,2520),(8797,2521),(8798,2521),(8799,2521),(8800,2521),(8801,2522),(8802,2522),(8803,2522),(8804,2522),(8805,2523),(8806,2523),(8807,2523),(8808,2523),(8809,2524),(8810,2524),(8811,2524),(8812,2524),(8813,2525),(8814,2525),(8815,2525),(8816,2526),(8817,2526),(8818,2526),(8819,2527),(8820,2527),(8821,2527),(8822,2528),(8823,2528),(8824,2528),(8825,2529),(8826,2529),(8827,2529),(8828,2530),(8829,2530),(8830,2530),(8831,2531),(8832,2531),(8833,2531),(8834,2532),(8835,2532),(8836,2532),(8837,2533),(8838,2533),(8839,2533),(8840,2534),(8841,2534),(8842,2534),(8843,2534),(8844,2535),(8845,2535),(8846,2535),(8847,2535),(8848,2536),(8849,2536),(8850,2536),(8851,2536),(8852,2537),(8853,2537),(8854,2537),(8855,2537),(8856,2538),(8857,2538),(8858,2538),(8859,2538),(8860,2539),(8861,2539),(8862,2539),(8863,2539),(8864,2540),(8865,2540),(8866,2540),(8867,2540),(8868,2541),(8869,2541),(8870,2541),(8871,2541),(8872,2542),(8873,2542),(8874,2542),(8875,2542);
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_to_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_media_gallery_value_video`
--

DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value_video`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_entity_media_gallery_value_video` (
  `value_id` int(10) unsigned NOT NULL COMMENT 'Media Entity ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `provider` varchar(32) DEFAULT NULL COMMENT 'Video provider ID',
  `url` text COMMENT 'Video URL',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `description` text COMMENT 'Page Meta Description',
  `metadata` text COMMENT 'Video meta data',
  UNIQUE KEY `CAT_PRD_ENTT_MDA_GLR_VAL_VIDEO_VAL_ID_STORE_ID` (`value_id`,`store_id`),
  KEY `CAT_PRD_ENTT_MDA_GLR_VAL_VIDEO_STORE_ID_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_VIDEO_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_6FDF205946906B0E653E60AA769899F8` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Video Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_media_gallery_value_video`
--

LOCK TABLES `catalog_product_entity_media_gallery_value_video` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_video` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_video` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_text`
--

DROP TABLE IF EXISTS `catalog_product_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` text COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_PRODUCT_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_TEXT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9770 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Text Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_text`
--

LOCK TABLES `catalog_product_entity_text` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_text` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_text` VALUES (1,85,0,1,'Hooded Sweater'),(2,139,0,1,'Superdry'),(3,85,0,2,'Long-sleeved Jumper'),(4,139,0,2,'Bruun & Stengade'),(5,75,0,1,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6,75,0,3,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">With a brand history stretching back over 60 years, adidas Nizza draws inspiration from a 1970s style first worn by B-ball stars. The Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details:</strong> </span></p>\r\n<ul>\r\n<li><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Regular fit</span></li>\r\n<li><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace closure</span></li>\r\n<li class=\"gl-vspacing-m\">Breathable</li>\r\n<li class=\"gl-vspacing-m\">Durable feel</li>\r\n</ul>\r\n<p><strong>Product color:</strong> Grey / White / Black / Red / Brown / Blue</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Extras:</strong> lacing, logo appliqué(s), leather detailing<br /><br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(7,76,0,3,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(8,85,0,3,'Napapijri Grey Sneakers'),(9,139,0,3,'Adidas'),(10,75,0,4,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(11,76,0,4,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(12,85,0,4,'Boxfresh'),(13,139,0,4,'Sneakers'),(14,75,0,5,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(15,76,0,5,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(16,85,0,5,'J.B by Jean Biani Sneakers'),(17,139,0,5,'Adidas'),(18,75,0,6,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.\\n\\nExtras: knitting patterns, logo appliqué(s)\\nOuter material: textile, synthetic\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.<br /><br /><strong>Extras:</strong> knitting patterns, logo appliqué(s)<br /><strong>Outer material:</strong> textile, synthetic<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><span style=\"color: inherit; font-size: inherit;\"><strong>Details:</strong> </span></p>\r\n<ul class=\"bullet_list___1JjG2 gl-list bullet_list--half-width___35Abt\">\r\n<li class=\"gl-vspacing-m\">Lace closure</li>\r\n<li class=\"gl-vspacing-m\">Knit upper</li>\r\n<li class=\"gl-vspacing-m\">EVA outsole with rubber inserts</li>\r\n<li class=\"gl-vspacing-m\">Lightweight EVA midsole</li>\r\n</ul>\r\n<ul class=\"bullet_list___1JjG2 gl-list bullet_list--half-width___35Abt\">\r\n<li class=\"gl-vspacing-m\">Sock-like construction hugs the foot</li>\r\n<li class=\"gl-vspacing-m\">Imported</li>\r\n</ul>'),(19,76,0,6,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;White Adidas Originals sneakers - Pharrell Williams line&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Originals sneakers - Pharrell Williams line. Pharrell\'s Hu collection celebrates the hues of humanity</span></p>'),(20,85,0,6,'Adidas Originals PW Tennis Hu'),(21,139,0,6,'Adidas'),(22,85,0,7,'Brax Chuck Slim Fit'),(23,139,0,7,'Brax Feel Good '),(24,75,0,8,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(25,76,0,8,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(26,85,0,8,'Ugg Freamon Wp'),(27,139,0,8,'Ugg'),(28,85,0,9,'Sweat Pants'),(29,139,0,9,'Cotton Candy'),(30,85,0,10,'Business Trousers'),(31,139,0,10,'Escada'),(32,85,0,11,'Chino'),(33,139,0,11,'Scout'),(34,75,0,12,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs\\nMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)\\nWaistband: elasticated waistband, zip with button on cuff\\nExtras: weaving pattern, solid-coloured, crease in front\\nPattern: patterned\\nMaterial: 53% cotton, 44% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight, narrow legs<br />Measurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)<br />Waistband: elasticated waistband, zip with button on cuff<br />Extras: weaving pattern, solid-coloured, crease in front<br />Pattern: patterned<br />Material: 53% cotton, 44% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(35,76,0,12,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease </span></p>'),(36,85,0,12,'Dress Trousers'),(37,139,0,12,'Gardeur'),(40,75,0,7,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(41,76,0,7,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(43,75,0,9,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(44,76,0,9,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(49,75,0,15,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(50,76,0,15,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(51,85,0,15,'Boxfresh'),(52,139,0,15,'Adidas'),(53,75,0,10,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(54,76,0,10,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(55,75,0,16,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(56,76,0,16,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(57,85,0,16,'Gant Marvel'),(58,139,0,16,'Gant'),(59,75,0,11,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nExtras: logo appliqué(s)\\nPattern: solid-coloured\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Extras: logo appliqué(s)<br />Pattern: solid-coloured<br />Material: 100% cotton<br />Manufacturer\'s care instructions: machine wash</span></p>'),(60,76,0,11,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8395587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;9&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,5526612],&quot;15&quot;:&quot;arial, sans-serif&quot;,&quot;26&quot;:400}\">An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection</span></p>'),(61,75,0,17,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(62,76,0,17,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(63,85,0,17,'Casual Trousers'),(64,139,0,17,'Kaffe'),(65,85,0,18,'Slim Fit Jeans'),(66,75,0,19,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.\\n\\nRegular fit \\nTrendy colour and popular pattern\\nTied waist \\nBusiness-Casual pants\\n\\n65% Polyester,32% Viscose,3% Elastane&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.<br /><br />Regular fit <br />Trendy colour and popular pattern<br />Tied waist <br />Business-Casual pants<br /><br />65% Polyester,32% Viscose,3% Elastane</span></p>'),(67,76,0,19,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.</span></p>'),(68,85,0,19,'Pale Belt Pants '),(69,139,0,19,'Kaffe'),(70,75,0,20,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(71,76,0,20,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(72,85,0,20,'I Maschi Lace-up Boots'),(73,139,0,20,'I Maschi'),(78,75,0,22,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(79,76,0,22,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.<br /></span></p>'),(80,85,0,22,'Straight Leg Jeans'),(85,75,0,24,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Concealed front hook, button and zip closure\\nDetachable leather strap\\nTwo side pockets\\nUnlined\\nSample size: 42\\nJersey fabric: 100% virgin wool; With details in cattle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Concealed front hook, button and zip closure<br />Detachable leather strap<br />Two side pockets<br />Unlined<br />Sample size: 42<br />Jersey fabric: 100% virgin wool; With details in cattle.</span></p>'),(86,76,0,24,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. </span></p>'),(87,85,0,24,'Wool jersey trousers'),(88,139,0,24,'Max Mara'),(89,75,0,25,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /><br /></span></p>'),(90,76,0,25,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(91,85,0,25,'Lloyd Half Boots'),(92,139,0,25,'Gant'),(93,75,0,26,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(94,76,0,26,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(95,85,0,26,'Cotton-Stretch Tapered Pants'),(96,139,0,26,'Escada'),(104,75,0,29,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(105,76,0,29,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(106,85,0,29,'Cat Lace-up Boots'),(107,75,0,30,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.\\n\\nManufacturers product information: medium body height\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: front mock pocket(s), back patch pocket(s)\\nExtras: stretch quality, open/frayed hem\\nMaterial: 85% cotton, 11% polyester, 4% elastane\\nManufacturer\'s care instructions: machine wash\\nPlease note: Här handlar det om en 2. val artikel.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.<br /><br />Manufacturers product information: medium body height<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: front mock pocket(s), back patch pocket(s)<br />Extras: stretch quality, open/frayed hem<br />Material: 85% cotton, 11% polyester, 4% elastane<br />Manufacturer\'s care instructions: machine wash<br />Please note: Här handlar det om en 2. val artikel.<br /></span></p>'),(108,76,0,30,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.</span></p>'),(109,85,0,30,'The Skinny Crop'),(110,139,0,30,'7 for all Mankind'),(111,75,0,31,'<p>Reference number: BV0111S</p>\r\n<p>Measurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: titanium, plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(112,76,0,31,'<p>Resin sunglasses with a double metal bridge.</p>'),(113,85,0,31,'Bottega Veneta'),(114,139,0,31,'Bottega Veneta'),(115,139,0,29,'Cat'),(116,139,0,18,'Bench'),(117,139,0,22,'S.Oliver'),(118,75,0,32,'<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(119,76,0,32,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(120,85,0,32,'Sunglasses'),(121,139,0,32,'Dior Homme'),(122,75,0,33,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(123,76,0,33,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(124,85,0,33,'Boyfriend Jeans'),(125,139,0,33,'Capital B'),(126,75,0,34,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(127,76,0,34,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(128,85,0,34,'Navy Chino'),(129,139,0,34,'Lawrence Grey'),(130,75,0,35,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(131,76,0,35,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(132,85,0,35,'Timberland Lace-ups'),(133,139,0,35,'Timberland'),(134,75,0,36,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(135,76,0,36,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(136,85,0,36,'Tommy Hilfiger'),(137,139,0,36,'Tommy Hilfiger'),(142,75,0,38,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(143,76,0,38,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(144,85,0,38,'Dark Grey Chino'),(145,139,0,38,'Lawrence Grey'),(154,85,0,41,'Seventy Transitional Jacket'),(155,75,0,42,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(156,76,0,42,'<p>Black Chino by Lawrence Grey</p>'),(157,85,0,42,'Black Chino'),(158,139,0,42,'Lawrence Grey'),(159,75,0,43,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(160,76,0,43,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(161,85,0,43,'Camper Lace-ups'),(162,139,0,43,'Camper'),(163,75,0,44,'<p>Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(164,76,0,44,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(165,85,0,44,'Sunglasses'),(166,139,0,44,'Jimmy Choo'),(167,75,0,45,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /><br /></span></p>'),(168,76,0,45,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(169,85,0,45,'Slim Fit Jeans – Eline'),(170,139,0,45,'Eksept'),(171,75,0,46,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(172,76,0,46,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(173,85,0,46,'Grey Sweat Pants'),(174,139,0,46,'Lawrence Grey'),(175,75,0,47,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(176,76,0,47,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(177,85,0,47,'Black Knitted Pants'),(178,139,0,47,'Lawrence Grey'),(179,75,0,48,'<p>Reference number: MB 657S</p>\r\n<p>Measurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: logo appliqué(s), case included</p>\r\n<p>Material: titanium</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(180,76,0,48,'<p>Sunglasses with a metal frame and transparent coloured lenses. Faux leather case.</p>'),(181,85,0,48,'Green sunglasses'),(182,139,0,48,'Montblanc'),(183,75,0,49,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(184,76,0,49,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(185,85,0,49,'Tan Corduroy Trousers'),(186,139,0,49,'Tommy Hilfiger'),(187,139,0,41,'Seventy'),(188,85,0,50,'Seventy Transitional Jacket'),(189,139,0,50,'Rino & Pelle'),(190,75,0,51,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, elasticated leg openings\\nMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: slit pocket/s, side flap pockets, rear flap pocket(s)\\nExtras: logo label\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: tapered leg, elasticated leg openings<br />Measurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)<br />Extras: logo label<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(191,76,0,51,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Moss Cargo Pants by Solid&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Moss Cargo Pants by Solid</span></p>'),(192,85,0,51,'Moss Cargo Pants'),(193,139,0,51,'Solid'),(199,75,0,53,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(200,76,0,53,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(201,85,0,53,'Camel Dress Trousers – Glenn'),(202,139,0,53,'Jack & Jones'),(203,75,0,54,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(204,76,0,54,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(205,85,0,54,'Pumps'),(206,139,0,54,'DKNY'),(207,75,0,50,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(208,76,0,50,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(209,75,0,55,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 102 cm (40″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Extras:</strong> print/s<br /><strong>Material:</strong> 80% cotton, 20% polyester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(210,76,0,55,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(211,85,0,55,'Black Sweat Pants'),(212,139,0,55,'Diesel'),(213,75,0,56,'<p>Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(214,76,0,56,'<p>Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem.</p>'),(215,85,0,56,'Seventy Transitional Jacket'),(216,139,0,56,'Strenesse'),(218,75,0,57,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(219,76,0,57,'<p><span style=\"font-size: 11pt; font-family: Arial; font-weight: 300; font-style: normal; color: #222222;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(220,85,0,57,'Slim Fit Jeans – Jane'),(221,139,0,57,'Broadway NYC Fashion'),(222,75,0,58,'<p>Reference number: 0927/S</p>\r\n<p>Measurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)</p>\r\n<p>Extras: logo on both temples, logo engraved on right/left lens, case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(223,76,0,58,'<p>Rounded sunglasses with a black frame and transparent lenses. Faux leather case.</p>'),(224,85,0,58,'Black sunglasses'),(225,139,0,58,'Boss'),(226,75,0,59,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(227,76,0,59,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(228,85,0,59,'Seventy Transitional Jacket'),(229,139,0,59,'Escada'),(231,75,0,60,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(232,76,0,60,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(233,85,0,60,'Black Chino'),(234,139,0,60,'Kennel & Schmenger'),(236,75,0,61,'<p>Reference number: DL0255</p>\r\n<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo appliqué(s), case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(237,76,0,61,'<p>Aviator-style sunglasses with a metal frame and coloured mirrored lenses. Faux leather case. </p>'),(238,85,0,61,'Black sunglasses'),(239,139,0,61,'Diesel'),(245,75,0,63,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(246,76,0,63,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(247,85,0,63,'Blue Straight Leg Jeans'),(248,139,0,63,'Bugatti'),(249,75,0,64,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(250,76,0,64,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(251,85,0,64,'Seventy Transitional Jacket'),(252,139,0,64,'Dolomite'),(254,75,0,65,'<p>Model: RMJLH Reference number: DiorSoReal</p>\r\n<p>Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(255,76,0,65,'<p>Cateye glasses with a transparent resin frame and mirror lenses.</p>'),(256,85,0,65,'Black sunglasses'),(257,139,0,65,'Dior'),(259,75,0,66,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>'),(260,76,0,66,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(261,85,0,66,'Dark Blue Slim Fit Jeans'),(262,139,0,66,'Only & Sons'),(267,75,0,68,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(268,76,0,68,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(269,85,0,68,'Blue Slim Fit Jeans'),(270,139,0,68,'Armani Jeans'),(271,75,0,69,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(272,76,0,69,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(273,85,0,69,'Black Chino'),(274,139,0,69,'Hammerstein'),(288,75,0,70,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(289,76,0,70,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(290,85,0,70,'Seventy Transitional Jacket'),(291,139,0,70,'Calvin Klein Jeans'),(293,75,0,71,'<p>Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slightly tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pattern:</strong> solid-coloured</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 67% cotton, 30% polyester, 3% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>'),(294,76,0,71,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets.<br /><br /></span></p>'),(295,85,0,71,'Khaki Straight Leg Jeans Cadiz'),(296,139,0,71,'Brax'),(297,75,0,72,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(298,76,0,72,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(299,85,0,72,'Seventy Transitional Jacket'),(300,139,0,72,'Colmar'),(302,75,0,73,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(303,76,0,73,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(304,85,0,73,'Seventy Transitional Jacket'),(305,139,0,73,'Rich & Royal'),(307,75,0,74,'<p>Model: Diorsorealrise</p>\r\n<p>Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: patterned bow, patterned border, logo engraving, case included</p>\r\n<p>Material: plastic, metal</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(308,76,0,74,'<p>Resin sunglasses with a double metal bridge.</p>'),(309,85,0,74,'Rose gold diorsorealrise'),(310,139,0,74,'Dior'),(311,75,0,75,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(312,76,0,75,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(313,85,0,75,'Black Chino'),(314,139,0,75,'Elvio Zanon'),(316,75,0,76,'<p>It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose, printed or distressed, Blend have mastered it all, while adding their own unique spin into the mix. Jeans by Blend You can never have too many pairs. A tight cut for a sleek shape. Light grey wash with zip fly and five-pocket styling.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> skinny</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slim, tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Extras:</strong> elastic, holes, logo tag on back of waistband</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 98% cotton, 2% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(317,76,0,76,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(318,85,0,76,'Grey Slim Fit Jeans Cirrus'),(319,139,0,76,'Blend'),(320,75,0,77,'<p>Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(321,76,0,77,'<p>Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front.</p>'),(322,85,0,77,'Seventy Transitional Jacket'),(323,139,0,77,'Black Swan'),(325,75,0,78,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, light quality<br /><strong>Material:</strong> 64% Lyocell, 30% cotton, 4% Elastomultiester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(326,76,0,78,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(327,85,0,78,'Black Standard Jeans'),(328,139,0,78,'7 for all Mankind'),(329,75,0,79,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(330,76,0,79,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(331,85,0,79,'Medium Blue Straight Leg Jeans – Rob'),(332,139,0,79,'Bogner'),(333,75,0,80,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(334,76,0,80,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(335,85,0,80,'Seventy Transitional Jacket'),(336,139,0,80,'Comma'),(338,75,0,81,'<p>Cut: lightly fitted, light shoulder padding Measurements for size EU 36: sleeve length 62 cm (24.5″), garment length 53 cm (21″) Collar: turn-down collar Fastening: concealed placket with snap closures Exterior pockets: patch pocket(s) Lining: lined Extras: weaving pattern Outer material: 90% cotton, 10% polyester Lining material: 100% polyester Manufacturer\'s care instructions: dry cleaning Please note: tends to run small Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(339,76,0,81,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(340,85,0,81,'Seventy Transitional Jacket'),(341,139,0,81,'Lawrence Grey'),(347,75,0,82,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(348,76,0,82,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(349,85,0,82,'Black Chino'),(350,139,0,82,'Steve Madden'),(352,75,0,83,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(353,76,0,83,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(354,85,0,83,'Seventy Transitional Jacket'),(355,139,0,83,'Cipo & Baxx'),(357,75,0,84,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(358,76,0,84,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(359,85,0,84,'Black Chino'),(360,139,0,84,'Adidas'),(362,75,0,85,'<p>The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> mid-rise slim-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> distressed look with faded dyes and permanent wrinkles<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(363,76,0,85,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(364,85,0,85,'Medium Blue Slim Fit Jeans – Cliff'),(365,139,0,85,'H.I.S Jeans'),(366,75,0,86,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(367,76,0,86,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(368,85,0,86,'Black Chino'),(369,139,0,86,'Adidas'),(371,75,0,87,'<p>This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67,5 cm (26.5″)</p>\r\n<p><strong>Collar:</strong> ribbed knit collar</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Exterior pockets:</strong> slit pocket with press stud closure</p>\r\n<p><strong>Interior pockets:</strong> left inside pocket</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 83% polyester, 17% cotton</p>\r\n<p><strong>Lining material:</strong> 98% polyester, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(372,76,0,87,'<p>Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front.</p>'),(373,85,0,87,'Seventy Transitional Jacket'),(374,139,0,87,'Diesel'),(376,75,0,88,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, logo tag on back of waistband<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(377,76,0,88,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(378,85,0,88,'Dark Blue Straight Leg Jeans – 700'),(379,139,0,88,'Carrera'),(380,75,0,89,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(381,76,0,89,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(382,85,0,89,'Black Chino'),(383,139,0,89,'Rapid Soul'),(393,75,0,91,'<p>People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>\r\n<p><strong>Cut:</strong> lightly fitted, ribbed waistband</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Chin guard, stand-up collar</p>\r\n<p><strong>Fastening:</strong> continuous two-way zip</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> water resistant zips, air vents under the arms</p>\r\n<p><strong>Outer material:</strong> 89% polyester, 11% elastane</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(394,76,0,91,'<p>Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>'),(395,85,0,91,'Seventy Transitional Jacket'),(396,139,0,91,'People of Shibuya'),(398,75,0,92,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(399,76,0,92,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(400,85,0,92,'Seventy Transitional Jacket'),(401,139,0,92,'Boss Orange'),(403,75,0,93,'<p>BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear.</p>\r\n<p><strong>Line:</strong> Puma x Big Sean</p>\r\n<p><strong>Cut:</strong> straight, drawstring hem</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> turn-down collar</p>\r\n<p><strong>Fastening:</strong> continuous snap fastener placket</p>\r\n<p><strong>Sleeve:</strong> elasticated cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> satin, subtle sheen, contrast piping, embroidered logo(s)</p>\r\n<p><strong>Material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(404,76,0,93,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(405,85,0,93,'Seventy Transitional Jacket'),(406,139,0,93,'Boss Orange'),(412,75,0,95,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s bomber jacket has rubberized Tommy Hilfiger logo flag patch on chest. This Tommy Hilfiger jacket is a sporty take on the classic bomber. By Tommy jeans men.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU L:</strong> garment length 75 cm (29.5″)</p>\r\n<p><strong>Collar:</strong> stand-up collar, hood with drawstring</p>\r\n<p><strong>Fastening:</strong> short zip</p>\r\n<p><strong>Sleeve:</strong> raglan sleeves</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s) with press stud closure</p>\r\n<p><strong>Extras:</strong> logo patch, embroidered logo(s), internal soft fleece cover</p>\r\n<p><strong>Material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU L and is 185cm/6′0″ tall.</p>'),(413,76,0,95,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at zipper and interior collar. Puffer jacket with down filling. Fastening with front zip and snap buttons.</p>'),(414,85,0,95,'Seventy Transitional Jacket'),(415,139,0,95,'Hilfiger Denim'),(421,75,0,97,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loops and button fly, belt<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo appliqué(s)<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 32 and is 185cm/6′0″ tall.</span></p>'),(422,76,0,97,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(423,85,0,97,'Dark Blue Julyen'),(424,139,0,97,'Crosshatch'),(425,75,0,98,'<p>Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space.</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 70 cm (27.5″), sleeve length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Stand-up collar with integrated hood</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Interior pockets:</strong> inside pockets left and right</p>\r\n<p><strong>Lining:</strong> lined and padded</p>\r\n<p><strong>Material:</strong> 90% polyester, 10% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(426,76,0,98,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(427,85,0,98,'Seventy Transitional Jacket'),(428,139,0,98,'Steinbock'),(430,75,0,99,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"></span>Upgrade your essential denim options with the <strong>Baldessarini Jack jeans</strong>. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch.</p>\r\n<div class=\"product-tabs__content__slice\">\r\n<div class=\"product-tabs__content__cms\">\r\n<ul>\r\n<li>98% cotton, 2% elastane</li>\r\n<li>Twill woven</li>\r\n<li>Zip fly</li>\r\n<li>Five pocket design</li>\r\n<li>Belt loops</li>\r\n<li>Branded metal hardware</li>\r\n<li>Branded leather waistband tab</li>\r\n<li>Machine wash</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Model:</strong> John 16511<br /><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo tag on back of waistband<br /><strong>Material:</strong> 97% cotton, 3% elastane<br /><br /><br /></span></p>'),(431,76,0,99,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(432,85,0,99,'Navy John 16511'),(433,139,0,99,'Baldessarini'),(434,75,0,100,'<p class=\"pdp-description__text__short\">JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets, and an inside pocket. Fastens in the front with snap buttons.<br /><br />The model is wearing size L and is 187 tall</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s) with button</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>'),(435,76,0,100,'<p>Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket.</p>'),(436,85,0,100,'Seventy Transitional Jacket'),(437,139,0,100,'Jack & Jones'),(439,75,0,101,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(440,76,0,101,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(441,85,0,101,'Lawrence Grey Rollneck Pullover'),(442,139,0,101,'Lawrence Grey'),(443,75,0,102,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(444,76,0,102,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(445,85,0,102,'Lawrence Grey Rollneck Pullover'),(446,139,0,102,'Lawrence Grey'),(448,75,0,103,'<p>With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem.</p>\r\n<p><strong>Cut:</strong> tapered, ribbed trim waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> embroidered logo(s)</p>\r\n<p><strong>Pattern:</strong> chequered</p>\r\n<p><strong>Material:</strong> 63% cotton, 27% polyamide, 10% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(449,76,0,103,'<p>Knit sweater with a round neckline, long sleeves and contrast ribbed trims.</p>'),(450,85,0,103,'Lawrence Grey Rollneck Pullover'),(451,139,0,103,'Tommy Hilfiger'),(453,75,0,104,'<p>Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.<br />· A luxurious item made from 100% cashmere, the “jewel of fabrics.”<br />· A delicate, smooth knit you can wear for any occasion.<br />· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.<br />· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better.</p>\r\n<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(454,76,0,104,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(455,85,0,104,'Lawrence Grey Rollneck Pullover'),(456,139,0,104,'Gabba'),(458,75,0,105,'<p>Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(459,76,0,105,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(460,85,0,105,'Lawrence Grey Rollneck Pullover'),(461,139,0,105,'Max Tonso'),(462,75,0,106,'<p>Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(463,76,0,106,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(464,85,0,106,'Lawrence Grey Rollneck Pullover'),(465,139,0,106,'Lawrence Grey'),(467,75,0,107,'<p>Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(468,76,0,107,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(469,85,0,107,'Lawrence Grey Rollneck Pullover'),(470,139,0,107,'Dine\'n\'Dance'),(472,75,0,108,'<p>Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(473,76,0,108,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(474,85,0,108,'Lawrence Grey Rollneck Pullover'),(475,139,0,108,'81 Hours'),(477,75,0,109,'<p>Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(478,76,0,109,'<p>Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail.</p>'),(479,85,0,109,'UNQ Linen Dress'),(480,139,0,109,'UNQ'),(481,75,0,110,'<p>Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(482,76,0,110,'<p>Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt.</p>'),(483,85,0,110,'UNQ Linen Dress'),(484,139,0,110,'United Colors of Benetton'),(486,75,0,111,'<p>Measurements for size EU 95: width approx. 3,3 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: suede</p>\r\n<p>Material: leather</p>'),(487,76,0,111,'<p>Basic leather belt with a loop and a contrasting shiny buckle.</p>'),(488,85,0,111,'Taupe Leather Belt'),(489,139,0,111,'Windsor.'),(494,75,0,112,'<p>Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(495,76,0,112,'<p>Short flowing round-neck dress with short sleeves.</p>'),(496,85,0,112,'UNQ Linen Dress'),(497,139,0,112,'Weise'),(499,75,0,113,'<p>Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(500,76,0,113,'<p>Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow.</p>'),(501,85,0,113,'UNQ Linen Dress'),(502,139,0,113,'Max & Co.'),(504,75,0,114,'<p>Measurements for size EU 85: width approx. 3,4 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: embossed logo</p>\r\n<p>Material: leather</p>'),(505,76,0,114,'<p>Contrast leather belt with a loop and a contrasting metal buckle.</p>'),(506,85,0,114,'Beige Leather Belt'),(507,139,0,114,'Strellson Premium'),(508,75,0,115,'<p>Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(509,76,0,115,'<p>Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back.</p>'),(510,85,0,115,'UNQ Linen Dress'),(511,139,0,115,'Just me'),(513,75,0,116,'<p>Measurements for size EU 90: width approx. 3,5 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: Nubuck leather, partially textured surface</p>\r\n<p>Material: leather</p>'),(514,76,0,116,'<p>Tommy Hilfiger men’s belt. Our one-size-fits-all belt is as versatile as it is comfortable with its woven design and built-in stretch.</p>'),(515,85,0,116,'Medium blue Leather Belt'),(516,139,0,116,'Medium blue'),(517,75,0,117,'<p>Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(518,76,0,117,'<p>Dress with generous pleats and slightly flared skirt.</p>'),(519,85,0,117,'UNQ Linen Dress'),(520,139,0,117,'Lawrence Grey'),(522,85,0,118,'Light grey Leather Belt'),(523,139,0,118,'B.Belt'),(524,75,0,119,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(525,76,0,119,'<p>Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip.</p>'),(526,85,0,119,'Sequin Dress'),(527,139,0,119,'Vera Mont'),(528,75,0,120,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(529,76,0,120,'<p>Round neck knit dress with short flared sleeves and slit.</p>'),(530,85,0,120,'Sequin Dress'),(531,139,0,120,'Vera Mont'),(533,75,0,121,'<p>Measurements for size EU S: width approx. 1,8 cm (0.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: patent leather</p>\r\n<p>Material: leather</p>'),(534,76,0,121,'<p>Reversible leather belt with a loop and contrasting metal buckle.</p>'),(535,85,0,121,'Light blue Leather Belt'),(536,139,0,121,'Lawrence Grey'),(537,75,0,122,'<ul>\r\n<li style=\"list-style-type: none;\">\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(538,76,0,122,'<p>Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front.</p>'),(539,85,0,122,'Sequin Dress'),(540,139,0,122,'Lace Dress'),(542,75,0,123,'<ul>\r\n<li style=\"list-style-type: none;\">\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(543,76,0,123,'<p>V-neck dress featuring sleeves falling below the elbow with turn-up detail, pleats at the waist, side in-seam pockets and front button fastening.</p>'),(544,85,0,123,'Sequin Dress'),(545,139,0,123,'United colors of Benetton'),(546,85,0,124,'Leather Business Bag'),(547,139,0,124,'Marc O\'Polo'),(548,75,0,124,'<p>Measurements for one size: height 27 cm (10.5″), length 36 cm (14″), depth 9 cm (3.5″)</p>\r\n<p>Fastening: overlapping flap with plug closure</p>\r\n<p>Lining material: lined Interior pockets: plug-in and zip pocket(s)</p>\r\n<p>Extras: patent leather, embossed logo, adjustable and detachable shoulder strap, removable address pendant, silver detail(s)</p>\r\n<p>Material: leather</p>\r\n<p>Lining: textile Our model wears a EU OS and is 185cm/6′0″ tall.</p>'),(549,76,0,124,'<p>Brown nubuck leather tote bag. Mock croc embossed detail on the exterior. The inside features two compartments and a zip pocket. Two front pockets that close with a clip. Two handles.</p>'),(550,75,0,125,'<p>Measurements for one size: height 43 cm (17″), length 30 cm (12″), depth 15 cm (6″)</p>\r\n<p>Fastening: two-way zip (open from right and left)</p>\r\n<p>Lining material: lined</p>\r\n<p>Exterior pockets: patch zip pocket / s, zip pocket(s) Interior pockets: plug-in and zip pocket(s), padded laptop compartment</p>\r\n<p>Extras: grained leather, attachment for mounting, logo appliqué(s), padded back, adjustable and padded shoulder straps</p>\r\n<p>Material: leather</p>\r\n<p>Lining: textile Our model wears a EU OS and is 185cm/6′0″ tall.</p>'),(551,76,0,125,'<p>Basic backpack with zip closure. Double compartment. The inside features a compartment for storing electronic devices and laptops of up to 13 inches (13”).</p>'),(552,85,0,125,'Leather Backpack'),(553,139,0,125,'Head'),(554,75,0,126,'<p>Reference number: E1 BD1 18 03 01</p>\r\n<p>Measurements for one size: height 28 cm (11″), length 36 cm (14″), depth 13 cm (5″)</p>\r\n<p>Fastening: overlapping flap with clasp closure</p>\r\n<p>Lining material: lined Exterior pockets: slit pocket(s)</p>\r\n<p>Interior pockets: plug-in and zip pocket(s) Extras: logo appliqué(s), suede, adjustable and detachable shoulder strap</p>\r\n<p>Material: leather</p>\r\n<p>Lining: textile</p>'),(555,76,0,126,'<p>The Fauve bag in mini version, enriched with metal details, combines practicality and elegance in its white leather design.</p>'),(556,85,0,126,'Handbag'),(557,139,0,126,'Coccinelle'),(558,85,0,127,'Cognac Handbag'),(559,75,0,127,'<p>Measurements for one size: height 34 cm (13.5″), length 36 cm (14″), depth 8 cm (3″)</p>\r\n<p>Exterior pockets: zip pocket(s)</p>\r\n<p>Interior pockets: plug-in and zip pocket(s)</p>\r\n<p>Extras: suede, adjustable and detachable shoulder strap, logo appliqué(s)</p>\r\n<p>Lining: textile</p>\r\n<p>Material: leather Our model wears a EU OS and is 179cm/5′10″ tall.</p>'),(560,76,0,127,'<p>Brown leather bowling bag. Outer zip closure. Its interior features two compartments and one zip pocket. Its exterior features two handles.</p>'),(561,139,0,127,'Max Mara'),(562,75,0,128,'Smart tote bag. It has two detachable shoulder straps so that it can be worn as a backpack or carried as a tote. There is an outside compartment for storing the shoulder straps.'),(563,76,0,128,'Measurements for one size: height 28 cm (11″), length 31 cm (12″), depth 9 cm (3.5″)\r\nFastening: zip\r\nExtras: grained leather, removable logo pendant, detachable shoulder strap\r\nMaterial: leather\r\nLining: suede\r\nOur model wears a EU OS and is 179cm/5′10″ tall.'),(564,85,0,128,'Medium blue handbag'),(565,139,0,128,'Escada'),(566,75,0,129,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, elasticated leg openings\\nMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: slit pocket/s, side flap pockets, rear flap pocket(s)\\nExtras: logo label\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: tapered leg, elasticated leg openings<br />Measurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)<br />Extras: logo label<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(567,76,0,129,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Moss Cargo Pants by Solid&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Moss Cargo Pants by Solid</span></p>'),(568,85,0,129,'Moss Cargo Pants'),(569,139,0,129,'Solid'),(570,75,0,130,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, elasticated leg openings\\nMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: slit pocket/s, side flap pockets, rear flap pocket(s)\\nExtras: logo label\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: tapered leg, elasticated leg openings<br />Measurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)<br />Extras: logo label<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(571,76,0,130,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Moss Cargo Pants by Solid&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Moss Cargo Pants by Solid</span></p>'),(572,85,0,130,'Moss Cargo Pants'),(573,139,0,130,'Solid'),(574,75,0,131,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, elasticated leg openings\\nMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: slit pocket/s, side flap pockets, rear flap pocket(s)\\nExtras: logo label\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: tapered leg, elasticated leg openings<br />Measurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)<br />Extras: logo label<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(575,76,0,131,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Moss Cargo Pants by Solid&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Moss Cargo Pants by Solid</span></p>'),(576,85,0,131,'Moss Cargo Pants'),(577,139,0,131,'Solid'),(578,75,0,132,'<p>Cut: slightly tapered, ribbed trim waistband<br />Measurements for size EU <br /><br />M: sleeve length 69 cm (27″), garment length 69 cm (27″) <br />Neckline: hood, short button placket<br /><br />Sleeve: ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br />Pattern: patterned</p>\r\n<p><br />Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(579,85,0,132,'Hooded Sweater'),(580,139,0,132,'Superdry'),(581,75,0,133,'<p>Cut: slightly tapered, ribbed trim waistband<br />Measurements for size EU <br /><br />M: sleeve length 69 cm (27″), garment length 69 cm (27″) <br />Neckline: hood, short button placket<br /><br />Sleeve: ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br />Pattern: patterned</p>\r\n<p><br />Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(582,85,0,133,'Hooded Sweater'),(583,139,0,133,'Superdry'),(584,75,0,134,'<p>Cut: slightly tapered, ribbed trim waistband<br />Measurements for size EU <br /><br />M: sleeve length 69 cm (27″), garment length 69 cm (27″) <br />Neckline: hood, short button placket<br /><br />Sleeve: ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br />Pattern: patterned</p>\r\n<p><br />Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(585,85,0,134,'Hooded Sweater'),(586,139,0,134,'Superdry'),(587,85,0,135,'Long-sleeved Jumper'),(588,139,0,135,'Bruun & Stengade'),(589,85,0,136,'Long-sleeved Jumper'),(590,139,0,136,'Bruun & Stengade'),(591,85,0,137,'Long-sleeved Jumper'),(592,139,0,137,'Bruun & Stengade'),(593,75,0,138,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(594,76,0,138,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(595,85,0,138,'Napapijri Grey Sneakers'),(596,139,0,138,'Adidas'),(597,75,0,139,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(598,76,0,139,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(599,85,0,139,'Napapijri Grey Sneakers'),(600,139,0,139,'Adidas'),(601,75,0,140,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(602,76,0,140,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(603,85,0,140,'Napapijri Grey Sneakers'),(604,139,0,140,'Adidas'),(605,75,0,141,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(606,76,0,141,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(607,85,0,141,'Napapijri Grey Sneakers'),(608,139,0,141,'Adidas'),(609,75,0,142,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(610,76,0,142,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(611,85,0,142,'Napapijri Grey Sneakers'),(612,139,0,142,'Adidas'),(613,75,0,143,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(614,76,0,143,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(615,85,0,143,'Napapijri Grey Sneakers'),(616,139,0,143,'Adidas'),(617,75,0,144,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(618,76,0,144,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(619,85,0,144,'Napapijri Grey Sneakers'),(620,139,0,144,'Adidas'),(621,75,0,145,'<ul>\r\n<li>Measurements for size EU 42: heel approx. X high 2,2 cm (1″)</li>\r\n<li>Extras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(622,76,0,145,'<p>Sneakers by Boxfresh</p>'),(623,85,0,145,'Boxfresh'),(624,139,0,145,'Sneakers'),(625,75,0,146,'<ul>\r\n<li>Measurements for size EU 42: heel approx. X high 2,2 cm (1″)</li>\r\n<li>Extras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(626,76,0,146,'<p>Sneakers by Boxfresh</p>'),(627,85,0,146,'Boxfresh'),(628,139,0,146,'Sneakers'),(629,75,0,147,'<ul>\r\n<li>Measurements for size EU 42: heel approx. X high 2,2 cm (1″)</li>\r\n<li>Extras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(630,76,0,147,'<p>Sneakers by Boxfresh</p>'),(631,85,0,147,'Boxfresh'),(632,139,0,147,'Sneakers'),(633,75,0,148,'<ul>\r\n<li>Measurements for size EU 42: heel approx. X high 2,2 cm (1″)</li>\r\n<li>Extras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(634,76,0,148,'<p>Sneakers by Boxfresh</p>'),(635,85,0,148,'Boxfresh'),(636,139,0,148,'Sneakers'),(637,75,0,149,'<ul>\r\n<li>Measurements for size EU 42: heel approx. X high 2,2 cm (1″)</li>\r\n<li>Extras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(638,76,0,149,'<p>Sneakers by Boxfresh</p>'),(639,85,0,149,'Boxfresh'),(640,139,0,149,'Sneakers'),(641,75,0,150,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Dark blue leather low top sneakers by Jean Biani.<br /><br />Extras: hole pattern, grained leather, lacing<br />Outer material: leather<br />Inner material: leather<br />Outsole: synthetic</span></p>'),(642,76,0,150,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Dark blue, leather sneakers by Jean Biani</span></p>'),(643,85,0,150,'J.B by Jean Biani Sneakers'),(644,139,0,150,'Adidas'),(645,75,0,151,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Dark blue leather low top sneakers by Jean Biani.<br /><br />Extras: hole pattern, grained leather, lacing<br />Outer material: leather<br />Inner material: leather<br />Outsole: synthetic</span></p>'),(646,76,0,151,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Dark blue, leather sneakers by Jean Biani</span></p>'),(647,85,0,151,'J.B by Jean Biani Sneakers'),(648,139,0,151,'Adidas'),(649,75,0,152,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Dark blue leather low top sneakers by Jean Biani.<br /><br />Extras: hole pattern, grained leather, lacing<br />Outer material: leather<br />Inner material: leather<br />Outsole: synthetic</span></p>'),(650,76,0,152,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Dark blue, leather sneakers by Jean Biani</span></p>'),(651,85,0,152,'J.B by Jean Biani Sneakers'),(652,139,0,152,'Adidas'),(653,75,0,153,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.\\n\\nExtras: knitting patterns, logo appliqué(s)\\nOuter material: textile, synthetic\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.<br /><br />Extras: knitting patterns, logo appliqué(s)<br />Outer material: textile, synthetic<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(654,76,0,153,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;White Adidas Originals sneakers - Pharrell Williams line&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">White Adidas Originals sneakers - Pharrell Williams line</span></p>'),(655,85,0,153,'Adidas Originals PW Tennis Hu'),(656,139,0,153,'Adidas'),(657,75,0,154,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.\\n\\nExtras: knitting patterns, logo appliqué(s)\\nOuter material: textile, synthetic\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.<br /><br />Extras: knitting patterns, logo appliqué(s)<br />Outer material: textile, synthetic<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(658,76,0,154,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;White Adidas Originals sneakers - Pharrell Williams line&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">White Adidas Originals sneakers - Pharrell Williams line</span></p>'),(659,85,0,154,'Adidas Originals PW Tennis Hu'),(660,139,0,154,'Adidas'),(661,75,0,155,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.\\n\\nExtras: knitting patterns, logo appliqué(s)\\nOuter material: textile, synthetic\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.<br /><br />Extras: knitting patterns, logo appliqué(s)<br />Outer material: textile, synthetic<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(662,76,0,155,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;White Adidas Originals sneakers - Pharrell Williams line&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">White Adidas Originals sneakers - Pharrell Williams line</span></p>'),(663,85,0,155,'Adidas Originals PW Tennis Hu'),(664,139,0,155,'Adidas'),(665,75,0,156,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.\\n\\nExtras: knitting patterns, logo appliqué(s)\\nOuter material: textile, synthetic\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.<br /><br />Extras: knitting patterns, logo appliqué(s)<br />Outer material: textile, synthetic<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(666,76,0,156,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;White Adidas Originals sneakers - Pharrell Williams line&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">White Adidas Originals sneakers - Pharrell Williams line</span></p>'),(667,85,0,156,'Adidas Originals PW Tennis Hu'),(668,139,0,156,'Adidas'),(669,75,0,157,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(670,76,0,157,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(671,85,0,157,'Brax Chuck Slim Fit'),(672,139,0,157,'Brax Feel Good '),(673,75,0,158,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(674,76,0,158,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(675,85,0,158,'Brax Chuck Slim Fit'),(676,139,0,158,'Brax Feel Good '),(677,75,0,159,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(678,76,0,159,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(679,85,0,159,'Brax Chuck Slim Fit'),(680,139,0,159,'Brax Feel Good '),(681,75,0,160,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /><br />Extras: suede, grained leather, strap(s) on the bootlegs<br />Outer material: leather<br />Inner material: leather<br />Outsole: synthetic</span></p>'),(682,76,0,160,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camel colour half boots by Ugg</span></p>'),(683,85,0,160,'Ugg Freamon Wp'),(684,139,0,160,'Ugg'),(685,75,0,161,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /><br />Extras: suede, grained leather, strap(s) on the bootlegs<br />Outer material: leather<br />Inner material: leather<br />Outsole: synthetic</span></p>'),(686,76,0,161,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camel colour half boots by Ugg</span></p>'),(687,85,0,161,'Ugg Freamon Wp'),(688,139,0,161,'Ugg'),(689,75,0,162,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /><br />Extras: suede, grained leather, strap(s) on the bootlegs<br />Outer material: leather<br />Inner material: leather<br />Outsole: synthetic</span></p>'),(690,76,0,162,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camel colour half boots by Ugg</span></p>'),(691,85,0,162,'Ugg Freamon Wp'),(692,139,0,162,'Ugg'),(693,75,0,163,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(694,76,0,163,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(695,85,0,163,'Sweat Pants'),(696,139,0,163,'Cotton Candy'),(697,75,0,164,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(698,76,0,164,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(699,85,0,164,'Sweat Pants'),(700,139,0,164,'Cotton Candy'),(701,75,0,165,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(702,76,0,165,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(703,85,0,165,'Sweat Pants'),(704,139,0,165,'Cotton Candy'),(705,75,0,166,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(706,76,0,166,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(707,85,0,166,'Business Trousers'),(708,139,0,166,'Escada'),(709,75,0,167,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(710,76,0,167,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(711,85,0,167,'Business Trousers'),(712,139,0,167,'Escada'),(713,75,0,168,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(714,76,0,168,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(715,85,0,168,'Business Trousers'),(716,139,0,168,'Escada'),(717,75,0,169,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(718,76,0,169,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(719,85,0,169,'Business Trousers'),(720,139,0,169,'Escada'),(721,75,0,170,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nExtras: logo appliqué(s)\\nPattern: solid-coloured\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Extras: logo appliqué(s)<br />Pattern: solid-coloured<br />Material: 100% cotton<br />Manufacturer\'s care instructions: machine wash</span></p>'),(722,76,0,170,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8395587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;9&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,5526612],&quot;15&quot;:&quot;arial, sans-serif&quot;,&quot;26&quot;:400}\">An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection</span></p>'),(723,85,0,170,'Chino'),(724,139,0,170,'Scout'),(725,75,0,171,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nExtras: logo appliqué(s)\\nPattern: solid-coloured\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Extras: logo appliqué(s)<br />Pattern: solid-coloured<br />Material: 100% cotton<br />Manufacturer\'s care instructions: machine wash</span></p>'),(726,76,0,171,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8395587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;9&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,5526612],&quot;15&quot;:&quot;arial, sans-serif&quot;,&quot;26&quot;:400}\">An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection</span></p>'),(727,85,0,171,'Chino'),(728,139,0,171,'Scout'),(729,75,0,172,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs\\nMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)\\nWaistband: elasticated waistband, zip with button on cuff\\nExtras: weaving pattern, solid-coloured, crease in front\\nPattern: patterned\\nMaterial: 53% cotton, 44% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight, narrow legs<br />Measurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)<br />Waistband: elasticated waistband, zip with button on cuff<br />Extras: weaving pattern, solid-coloured, crease in front<br />Pattern: patterned<br />Material: 53% cotton, 44% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(730,76,0,172,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease </span></p>'),(731,85,0,172,'Dress Trousers'),(732,139,0,172,'Gardeur'),(733,75,0,173,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs\\nMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)\\nWaistband: elasticated waistband, zip with button on cuff\\nExtras: weaving pattern, solid-coloured, crease in front\\nPattern: patterned\\nMaterial: 53% cotton, 44% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight, narrow legs<br />Measurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)<br />Waistband: elasticated waistband, zip with button on cuff<br />Extras: weaving pattern, solid-coloured, crease in front<br />Pattern: patterned<br />Material: 53% cotton, 44% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(734,76,0,173,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease </span></p>'),(735,85,0,173,'Dress Trousers'),(736,139,0,173,'Gardeur'),(737,75,0,174,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs\\nMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)\\nWaistband: elasticated waistband, zip with button on cuff\\nExtras: weaving pattern, solid-coloured, crease in front\\nPattern: patterned\\nMaterial: 53% cotton, 44% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight, narrow legs<br />Measurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)<br />Waistband: elasticated waistband, zip with button on cuff<br />Extras: weaving pattern, solid-coloured, crease in front<br />Pattern: patterned<br />Material: 53% cotton, 44% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(738,76,0,174,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease </span></p>'),(739,85,0,174,'Dress Trousers'),(740,139,0,174,'Gardeur'),(741,75,0,175,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(742,76,0,175,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(743,85,0,175,'Boxfresh'),(744,139,0,175,'Adidas'),(745,75,0,176,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(746,76,0,176,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(747,85,0,176,'Boxfresh'),(748,139,0,176,'Adidas'),(749,75,0,177,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(750,76,0,177,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(751,85,0,177,'Boxfresh'),(752,139,0,177,'Adidas'),(753,75,0,178,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(754,76,0,178,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(755,85,0,178,'Boxfresh'),(756,139,0,178,'Adidas'),(757,75,0,179,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(758,76,0,179,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(759,85,0,179,'Boxfresh'),(760,139,0,179,'Adidas'),(761,75,0,180,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(762,76,0,180,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(763,85,0,180,'Gant Marvel'),(764,139,0,180,'Gant'),(765,75,0,181,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(766,76,0,181,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(767,85,0,181,'Gant Marvel'),(768,139,0,181,'Gant'),(769,75,0,182,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(770,76,0,182,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(771,85,0,182,'Gant Marvel'),(772,139,0,182,'Gant'),(773,75,0,183,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(774,76,0,183,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(775,85,0,183,'Gant Marvel'),(776,139,0,183,'Gant'),(777,75,0,184,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(778,76,0,184,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(779,85,0,184,'Gant Marvel'),(780,139,0,184,'Gant'),(781,75,0,185,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(782,76,0,185,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(783,85,0,185,'Gant Marvel'),(784,139,0,185,'Gant'),(785,75,0,186,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(786,76,0,186,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(787,85,0,186,'Casual Trousers'),(788,139,0,186,'Kaffe'),(789,75,0,187,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(790,76,0,187,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(791,85,0,187,'Casual Trousers'),(792,139,0,187,'Kaffe'),(793,75,0,188,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(794,76,0,188,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(795,85,0,188,'Casual Trousers'),(796,139,0,188,'Kaffe'),(797,75,0,189,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(798,76,0,189,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(799,85,0,189,'Casual Trousers'),(800,139,0,189,'Kaffe'),(801,85,0,190,'Slim Fit Jeans'),(802,139,0,190,'Bench'),(803,85,0,191,'Slim Fit Jeans'),(804,139,0,191,'Bench'),(805,85,0,192,'Slim Fit Jeans'),(806,139,0,192,'Bench'),(807,85,0,193,'Slim Fit Jeans'),(808,139,0,193,'Bench'),(809,75,0,194,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.\\n\\nRegular fit \\nTrendy colour and popular pattern\\nTied waist \\nBusiness-Casual pants\\n\\n65% Polyester,32% Viscose,3% Elastane&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.<br /><br />Regular fit <br />Trendy colour and popular pattern<br />Tied waist <br />Business-Casual pants<br /><br />65% Polyester,32% Viscose,3% Elastane</span></p>'),(810,76,0,194,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.</span></p>'),(811,85,0,194,'Pale Belt Pants '),(812,139,0,194,'Kaffe'),(813,75,0,195,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.\\n\\nRegular fit \\nTrendy colour and popular pattern\\nTied waist \\nBusiness-Casual pants\\n\\n65% Polyester,32% Viscose,3% Elastane&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.<br /><br />Regular fit <br />Trendy colour and popular pattern<br />Tied waist <br />Business-Casual pants<br /><br />65% Polyester,32% Viscose,3% Elastane</span></p>'),(814,76,0,195,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.</span></p>'),(815,85,0,195,'Pale Belt Pants '),(816,139,0,195,'Kaffe'),(817,75,0,196,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.\\n\\nRegular fit \\nTrendy colour and popular pattern\\nTied waist \\nBusiness-Casual pants\\n\\n65% Polyester,32% Viscose,3% Elastane&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.<br /><br />Regular fit <br />Trendy colour and popular pattern<br />Tied waist <br />Business-Casual pants<br /><br />65% Polyester,32% Viscose,3% Elastane</span></p>'),(818,76,0,196,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.</span></p>'),(819,85,0,196,'Pale Belt Pants '),(820,139,0,196,'Kaffe'),(821,75,0,197,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(822,76,0,197,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(823,85,0,197,'I Maschi Lace-up Boots'),(824,139,0,197,'I Maschi'),(825,75,0,198,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(826,76,0,198,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(827,85,0,198,'I Maschi Lace-up Boots'),(828,139,0,198,'I Maschi'),(829,75,0,199,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(830,76,0,199,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(831,85,0,199,'I Maschi Lace-up Boots'),(832,139,0,199,'I Maschi'),(833,75,0,200,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(834,76,0,200,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(835,85,0,200,'I Maschi Lace-up Boots'),(836,139,0,200,'I Maschi'),(837,75,0,201,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(838,76,0,201,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(839,85,0,201,'I Maschi Lace-up Boots'),(840,139,0,201,'I Maschi'),(841,75,0,202,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(842,76,0,202,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(843,85,0,202,'I Maschi Lace-up Boots'),(844,139,0,202,'I Maschi'),(845,75,0,203,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(846,76,0,203,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.<br /></span></p>'),(847,85,0,203,'Straight Leg Jeans'),(848,139,0,203,'S.Oliver'),(849,75,0,204,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(850,76,0,204,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.<br /></span></p>'),(851,85,0,204,'Straight Leg Jeans'),(852,139,0,204,'S.Oliver'),(853,75,0,205,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(854,76,0,205,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.<br /></span></p>'),(855,85,0,205,'Straight Leg Jeans'),(856,139,0,205,'S.Oliver'),(857,75,0,206,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(858,76,0,206,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.<br /></span></p>'),(859,85,0,206,'Straight Leg Jeans'),(860,139,0,206,'S.Oliver'),(861,75,0,207,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Concealed front hook, button and zip closure\\nDetachable leather strap\\nTwo side pockets\\nUnlined\\nSample size: 42\\nJersey fabric: 100% virgin wool; With details in cattle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Concealed front hook, button and zip closure<br />Detachable leather strap<br />Two side pockets<br />Unlined<br />Sample size: 42<br />Jersey fabric: 100% virgin wool; With details in cattle.</span></p>'),(862,76,0,207,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. </span></p>'),(863,85,0,207,'Wool jersey trousers'),(864,139,0,207,'Max Mara'),(865,75,0,208,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Concealed front hook, button and zip closure\\nDetachable leather strap\\nTwo side pockets\\nUnlined\\nSample size: 42\\nJersey fabric: 100% virgin wool; With details in cattle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Concealed front hook, button and zip closure<br />Detachable leather strap<br />Two side pockets<br />Unlined<br />Sample size: 42<br />Jersey fabric: 100% virgin wool; With details in cattle.</span></p>'),(866,76,0,208,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. </span></p>'),(867,85,0,208,'Wool jersey trousers'),(868,139,0,208,'Max Mara'),(869,75,0,209,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Concealed front hook, button and zip closure\\nDetachable leather strap\\nTwo side pockets\\nUnlined\\nSample size: 42\\nJersey fabric: 100% virgin wool; With details in cattle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Concealed front hook, button and zip closure<br />Detachable leather strap<br />Two side pockets<br />Unlined<br />Sample size: 42<br />Jersey fabric: 100% virgin wool; With details in cattle.</span></p>'),(870,76,0,209,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. </span></p>'),(871,85,0,209,'Wool jersey trousers'),(872,139,0,209,'Max Mara'),(873,75,0,210,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br />Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathability<br />Extras: Nubuck leather, reinforced shaft end, fabric insert, logo label<br />Outer material: leather<br />Inner material: leather, synthetic<br />Outsole: synthetic</span></p>'),(874,76,0,210,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(875,85,0,210,'Lloyd Half Boots'),(876,139,0,210,'Gant'),(877,75,0,211,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br />Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathability<br />Extras: Nubuck leather, reinforced shaft end, fabric insert, logo label<br />Outer material: leather<br />Inner material: leather, synthetic<br />Outsole: synthetic</span></p>'),(878,76,0,211,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(879,85,0,211,'Lloyd Half Boots'),(880,139,0,211,'Gant'),(881,75,0,212,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br />Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathability<br />Extras: Nubuck leather, reinforced shaft end, fabric insert, logo label<br />Outer material: leather<br />Inner material: leather, synthetic<br />Outsole: synthetic</span></p>'),(882,76,0,212,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(883,85,0,212,'Lloyd Half Boots'),(884,139,0,212,'Gant'),(885,75,0,213,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br />Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathability<br />Extras: Nubuck leather, reinforced shaft end, fabric insert, logo label<br />Outer material: leather<br />Inner material: leather, synthetic<br />Outsole: synthetic</span></p>'),(886,76,0,213,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(887,85,0,213,'Lloyd Half Boots'),(888,139,0,213,'Gant'),(889,75,0,214,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br />Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathability<br />Extras: Nubuck leather, reinforced shaft end, fabric insert, logo label<br />Outer material: leather<br />Inner material: leather, synthetic<br />Outsole: synthetic</span></p>'),(890,76,0,214,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(891,85,0,214,'Lloyd Half Boots'),(892,139,0,214,'Gant'),(893,75,0,215,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br />Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathability<br />Extras: Nubuck leather, reinforced shaft end, fabric insert, logo label<br />Outer material: leather<br />Inner material: leather, synthetic<br />Outsole: synthetic</span></p>'),(894,76,0,215,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(895,85,0,215,'Lloyd Half Boots'),(896,139,0,215,'Gant'),(897,75,0,216,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br />Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathability<br />Extras: Nubuck leather, reinforced shaft end, fabric insert, logo label<br />Outer material: leather<br />Inner material: leather, synthetic<br />Outsole: synthetic</span></p>'),(898,76,0,216,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(899,85,0,216,'Lloyd Half Boots'),(900,139,0,216,'Gant'),(901,75,0,217,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(902,76,0,217,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(903,85,0,217,'Cotton-Stretch Tapered Pants'),(904,139,0,217,'Escada'),(905,75,0,218,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(906,76,0,218,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(907,85,0,218,'Cotton-Stretch Tapered Pants'),(908,139,0,218,'Escada'),(909,75,0,219,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(910,76,0,219,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(911,85,0,219,'Cotton-Stretch Tapered Pants'),(912,139,0,219,'Escada'),(913,75,0,220,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(914,76,0,220,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(915,85,0,220,'Cotton-Stretch Tapered Pants'),(916,139,0,220,'Escada'),(917,75,0,221,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(918,76,0,221,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(919,85,0,221,'Cotton-Stretch Tapered Pants'),(920,139,0,221,'Escada'),(921,75,0,222,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(922,76,0,222,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(923,85,0,222,'Cat Lace-up Boots'),(924,139,0,222,'Cat'),(925,75,0,223,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(926,76,0,223,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(927,85,0,223,'Cat Lace-up Boots'),(928,139,0,223,'Cat'),(929,75,0,224,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(930,76,0,224,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(931,85,0,224,'Cat Lace-up Boots'),(932,139,0,224,'Cat'),(933,75,0,225,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(934,76,0,225,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(935,85,0,225,'Cat Lace-up Boots'),(936,139,0,225,'Cat'),(937,75,0,226,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(938,76,0,226,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(939,85,0,226,'Cat Lace-up Boots'),(940,139,0,226,'Cat'),(941,75,0,227,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(942,76,0,227,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(943,85,0,227,'Cat Lace-up Boots'),(944,139,0,227,'Cat'),(945,75,0,228,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.\\n\\nManufacturers product information: medium body height\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: front mock pocket(s), back patch pocket(s)\\nExtras: stretch quality, open/frayed hem\\nMaterial: 85% cotton, 11% polyester, 4% elastane\\nManufacturer\'s care instructions: machine wash\\nPlease note: Här handlar det om en 2. val artikel.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.<br /><br />Manufacturers product information: medium body height<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: front mock pocket(s), back patch pocket(s)<br />Extras: stretch quality, open/frayed hem<br />Material: 85% cotton, 11% polyester, 4% elastane<br />Manufacturer\'s care instructions: machine wash<br />Please note: Här handlar det om en 2. val artikel.<br /></span></p>'),(946,76,0,228,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.</span></p>'),(947,85,0,228,'The Skinny Crop'),(948,139,0,228,'7 for all Mankind'),(949,75,0,229,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.\\n\\nManufacturers product information: medium body height\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: front mock pocket(s), back patch pocket(s)\\nExtras: stretch quality, open/frayed hem\\nMaterial: 85% cotton, 11% polyester, 4% elastane\\nManufacturer\'s care instructions: machine wash\\nPlease note: Här handlar det om en 2. val artikel.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.<br /><br />Manufacturers product information: medium body height<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: front mock pocket(s), back patch pocket(s)<br />Extras: stretch quality, open/frayed hem<br />Material: 85% cotton, 11% polyester, 4% elastane<br />Manufacturer\'s care instructions: machine wash<br />Please note: Här handlar det om en 2. val artikel.<br /></span></p>'),(950,76,0,229,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.</span></p>'),(951,85,0,229,'The Skinny Crop'),(952,139,0,229,'7 for all Mankind'),(953,75,0,230,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.\\n\\nManufacturers product information: medium body height\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: front mock pocket(s), back patch pocket(s)\\nExtras: stretch quality, open/frayed hem\\nMaterial: 85% cotton, 11% polyester, 4% elastane\\nManufacturer\'s care instructions: machine wash\\nPlease note: Här handlar det om en 2. val artikel.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.<br /><br />Manufacturers product information: medium body height<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: front mock pocket(s), back patch pocket(s)<br />Extras: stretch quality, open/frayed hem<br />Material: 85% cotton, 11% polyester, 4% elastane<br />Manufacturer\'s care instructions: machine wash<br />Please note: Här handlar det om en 2. val artikel.<br /></span></p>'),(954,76,0,230,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.</span></p>'),(955,85,0,230,'The Skinny Crop'),(956,139,0,230,'7 for all Mankind'),(957,75,0,231,'<p>Reference number: BV0111S</p>\r\n<p>Measurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: titanium, plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(958,76,0,231,'<p>Resin sunglasses with a double metal bridge.</p>'),(959,85,0,231,'Bottega Veneta'),(960,139,0,231,'Bottega Veneta'),(961,75,0,232,'<p>Reference number: BV0111S</p>\r\n<p>Measurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: titanium, plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(962,76,0,232,'<p>Resin sunglasses with a double metal bridge.</p>'),(963,85,0,232,'Bottega Veneta'),(964,139,0,232,'Bottega Veneta'),(965,75,0,233,'<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(966,76,0,233,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(967,85,0,233,'Sunglasses'),(968,139,0,233,'Dior Homme'),(969,75,0,234,'<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(970,76,0,234,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(971,85,0,234,'Sunglasses'),(972,139,0,234,'Dior Homme'),(973,75,0,235,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(974,76,0,235,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(975,85,0,235,'Boyfriend Jeans'),(976,139,0,235,'Capital B'),(977,75,0,236,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(978,76,0,236,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(979,85,0,236,'Boyfriend Jeans'),(980,139,0,236,'Capital B'),(981,75,0,237,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(982,76,0,237,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(983,85,0,237,'Boyfriend Jeans'),(984,139,0,237,'Capital B'),(985,75,0,238,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(986,76,0,238,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(987,85,0,238,'Boyfriend Jeans'),(988,139,0,238,'Capital B'),(989,75,0,239,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: slightly tapered leg<br />Measurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, rear buttoned piped pocket(s)<br />Extras: creases<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 50 and is 185cm/6′0″ tall.</span></p>'),(990,76,0,239,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(991,85,0,239,'Navy Chino'),(992,139,0,239,'Lawrence Grey'),(993,75,0,240,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: slightly tapered leg<br />Measurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, rear buttoned piped pocket(s)<br />Extras: creases<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 50 and is 185cm/6′0″ tall.</span></p>'),(994,76,0,240,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(995,85,0,240,'Navy Chino'),(996,139,0,240,'Lawrence Grey'),(997,75,0,241,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: slightly tapered leg<br />Measurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, rear buttoned piped pocket(s)<br />Extras: creases<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 50 and is 185cm/6′0″ tall.</span></p>'),(998,76,0,241,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(999,85,0,241,'Navy Chino'),(1000,139,0,241,'Lawrence Grey'),(1001,75,0,242,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: slightly tapered leg<br />Measurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, rear buttoned piped pocket(s)<br />Extras: creases<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 50 and is 185cm/6′0″ tall.</span></p>'),(1002,76,0,242,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(1003,85,0,242,'Navy Chino'),(1004,139,0,242,'Lawrence Grey'),(1005,75,0,243,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(1006,76,0,243,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(1007,85,0,243,'Timberland Lace-ups'),(1008,139,0,243,'Timberland'),(1009,75,0,244,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(1010,76,0,244,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(1011,85,0,244,'Timberland Lace-ups'),(1012,139,0,244,'Timberland'),(1013,75,0,245,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(1014,76,0,245,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(1015,85,0,245,'Timberland Lace-ups'),(1016,139,0,245,'Timberland'),(1017,75,0,246,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(1018,76,0,246,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(1019,85,0,246,'Timberland Lace-ups'),(1020,139,0,246,'Timberland'),(1021,75,0,247,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(1022,76,0,247,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(1023,85,0,247,'Timberland Lace-ups'),(1024,139,0,247,'Timberland'),(1025,75,0,248,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(1026,76,0,248,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(1027,85,0,248,'Timberland Lace-ups'),(1028,139,0,248,'Timberland'),(1029,75,0,249,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: straight leg<br />Measurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1030,76,0,249,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy Trousers by Tommy Hilfiger</span></p>'),(1031,85,0,249,'Tommy Hilfiger'),(1032,139,0,249,'Tommy Hilfiger'),(1033,75,0,250,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: straight leg<br />Measurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1034,76,0,250,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy Trousers by Tommy Hilfiger</span></p>'),(1035,85,0,250,'Tommy Hilfiger'),(1036,139,0,250,'Tommy Hilfiger'),(1037,75,0,251,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: straight leg<br />Measurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1038,76,0,251,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy Trousers by Tommy Hilfiger</span></p>'),(1039,85,0,251,'Tommy Hilfiger'),(1040,139,0,251,'Tommy Hilfiger'),(1041,75,0,252,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: straight leg<br />Measurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1042,76,0,252,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy Trousers by Tommy Hilfiger</span></p>'),(1043,85,0,252,'Tommy Hilfiger'),(1044,139,0,252,'Tommy Hilfiger'),(1045,75,0,253,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: straight leg<br />Measurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1046,76,0,253,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy Trousers by Tommy Hilfiger</span></p>'),(1047,85,0,253,'Tommy Hilfiger'),(1048,139,0,253,'Tommy Hilfiger'),(1049,75,0,254,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: slightly tapered leg<br />Measurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, rear buttoned piped pocket(s)<br />Extras: creases<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 50 and is 185cm/6′0″ tall.</span></p>'),(1050,76,0,254,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(1051,85,0,254,'Dark Grey Chino'),(1052,139,0,254,'Lawrence Grey'),(1053,75,0,255,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: slightly tapered leg<br />Measurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, rear buttoned piped pocket(s)<br />Extras: creases<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 50 and is 185cm/6′0″ tall.</span></p>'),(1054,76,0,255,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(1055,85,0,255,'Dark Grey Chino'),(1056,139,0,255,'Lawrence Grey'),(1057,75,0,256,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: slightly tapered leg<br />Measurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, rear buttoned piped pocket(s)<br />Extras: creases<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 50 and is 185cm/6′0″ tall.</span></p>'),(1058,76,0,256,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(1059,85,0,256,'Dark Grey Chino'),(1060,139,0,256,'Lawrence Grey'),(1061,85,0,257,'Seventy Transitional Jacket'),(1062,139,0,257,'Seventy'),(1063,85,0,258,'Seventy Transitional Jacket'),(1064,139,0,258,'Seventy'),(1065,85,0,259,'Seventy Transitional Jacket'),(1066,139,0,259,'Seventy'),(1067,85,0,260,'Seventy Transitional Jacket'),(1068,139,0,260,'Seventy'),(1069,75,0,261,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: slightly tapered leg<br />Measurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, rear buttoned piped pocket(s)<br />Extras: creases<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 50 and is 185cm/6′0″ tall.</span></p>'),(1070,76,0,261,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Black Chino by Lawrence Grey</span></p>'),(1071,85,0,261,'Black Chino'),(1072,139,0,261,'Lawrence Grey'),(1073,75,0,262,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: slightly tapered leg<br />Measurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, rear buttoned piped pocket(s)<br />Extras: creases<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 50 and is 185cm/6′0″ tall.</span></p>'),(1074,76,0,262,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Black Chino by Lawrence Grey</span></p>'),(1075,85,0,262,'Black Chino'),(1076,139,0,262,'Lawrence Grey'),(1077,75,0,263,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: slightly tapered leg<br />Measurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, rear buttoned piped pocket(s)<br />Extras: creases<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 50 and is 185cm/6′0″ tall.</span></p>'),(1078,76,0,263,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Black Chino by Lawrence Grey</span></p>'),(1079,85,0,263,'Black Chino'),(1080,139,0,263,'Lawrence Grey'),(1081,75,0,264,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: slightly tapered leg<br />Measurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, rear buttoned piped pocket(s)<br />Extras: creases<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 50 and is 185cm/6′0″ tall.</span></p>'),(1082,76,0,264,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Black Chino by Lawrence Grey</span></p>'),(1083,85,0,264,'Black Chino'),(1084,139,0,264,'Lawrence Grey'),(1085,75,0,265,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.<br /><br />Extras: lacing, suede, logo appliqué(s), contrast details<br />Outer material: leather<br />Inner material: leather, synthetic<br />Outsole: synthetic</span></p>'),(1086,76,0,265,'<p>Camper grey lace-up leather shoes</p>'),(1087,85,0,265,'Camper Lace-ups'),(1088,139,0,265,'Camper'),(1089,75,0,266,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.<br /><br />Extras: lacing, suede, logo appliqué(s), contrast details<br />Outer material: leather<br />Inner material: leather, synthetic<br />Outsole: synthetic</span></p>'),(1090,76,0,266,'<p>Camper grey lace-up leather shoes</p>'),(1091,85,0,266,'Camper Lace-ups'),(1092,139,0,266,'Camper'),(1093,75,0,267,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.<br /><br />Extras: lacing, suede, logo appliqué(s), contrast details<br />Outer material: leather<br />Inner material: leather, synthetic<br />Outsole: synthetic</span></p>'),(1094,76,0,267,'<p>Camper grey lace-up leather shoes</p>'),(1095,85,0,267,'Camper Lace-ups'),(1096,139,0,267,'Camper'),(1097,75,0,268,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.<br /><br />Extras: lacing, suede, logo appliqué(s), contrast details<br />Outer material: leather<br />Inner material: leather, synthetic<br />Outsole: synthetic</span></p>'),(1098,76,0,268,'<p>Camper grey lace-up leather shoes</p>'),(1099,85,0,268,'Camper Lace-ups'),(1100,139,0,268,'Camper'),(1101,75,0,269,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.<br /><br />Extras: lacing, suede, logo appliqué(s), contrast details<br />Outer material: leather<br />Inner material: leather, synthetic<br />Outsole: synthetic</span></p>'),(1102,76,0,269,'<p>Camper grey lace-up leather shoes</p>'),(1103,85,0,269,'Camper Lace-ups'),(1104,139,0,269,'Camper'),(1105,75,0,270,'<p>Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(1106,76,0,270,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(1107,85,0,270,'Sunglasses'),(1108,139,0,270,'Jimmy Choo'),(1109,75,0,271,'<p>Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(1110,76,0,271,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(1111,85,0,271,'Sunglasses'),(1112,139,0,271,'Jimmy Choo'),(1113,75,0,272,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /><br /></span></p>'),(1114,76,0,272,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(1115,85,0,272,'Slim Fit Jeans – Eline'),(1116,139,0,272,'Eksept'),(1117,75,0,273,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /><br /></span></p>'),(1118,76,0,273,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(1119,85,0,273,'Slim Fit Jeans – Eline'),(1120,139,0,273,'Eksept'),(1121,75,0,274,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /><br /></span></p>'),(1122,76,0,274,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(1123,85,0,274,'Slim Fit Jeans – Eline'),(1124,139,0,274,'Eksept'),(1125,75,0,275,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /><br /></span></p>'),(1126,76,0,275,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(1127,85,0,275,'Slim Fit Jeans – Eline'),(1128,139,0,275,'Eksept'),(1129,75,0,276,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /><br /></span></p>'),(1130,76,0,276,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(1131,85,0,276,'Slim Fit Jeans – Eline'),(1132,139,0,276,'Eksept'),(1133,75,0,277,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: straight, narrow legs, ribbed cuffs on the ankles<br />Measurements for size EU M: length of outside leg 105 cm (41.5″)<br />Waistband: drawstring waist with elastic<br />Pockets: slit pocket/s<br />Lining: internal soft fleece cover<br />Material: 80% cotton, 17% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(1134,76,0,277,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(1135,85,0,277,'Grey Sweat Pants'),(1136,139,0,277,'Lawrence Grey'),(1137,75,0,278,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: straight, narrow legs, ribbed cuffs on the ankles<br />Measurements for size EU M: length of outside leg 105 cm (41.5″)<br />Waistband: drawstring waist with elastic<br />Pockets: slit pocket/s<br />Lining: internal soft fleece cover<br />Material: 80% cotton, 17% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(1138,76,0,278,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(1139,85,0,278,'Grey Sweat Pants'),(1140,139,0,278,'Lawrence Grey'),(1141,75,0,279,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: straight, narrow legs, ribbed cuffs on the ankles<br />Measurements for size EU M: length of outside leg 105 cm (41.5″)<br />Waistband: drawstring waist with elastic<br />Pockets: slit pocket/s<br />Lining: internal soft fleece cover<br />Material: 80% cotton, 17% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(1142,76,0,279,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(1143,85,0,279,'Grey Sweat Pants'),(1144,139,0,279,'Lawrence Grey'),(1145,75,0,280,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: straight, narrow legs, ribbed cuffs on the ankles<br />Measurements for size EU M: length of outside leg 105 cm (41.5″)<br />Waistband: drawstring waist with elastic<br />Pockets: slit pocket/s<br />Lining: internal soft fleece cover<br />Material: 80% cotton, 17% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(1146,76,0,280,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(1147,85,0,280,'Grey Sweat Pants'),(1148,139,0,280,'Lawrence Grey'),(1149,75,0,281,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: tapered leg, ribbed trim cuffs<br />Measurements for size EU M: length of outside leg 110 cm (43.5″)<br />Waistband: elasticated waistband<br />Pockets: seam pocket / s<br />Extras: flecked<br />Material: 60% cotton, 25% polyamide, 15% wool<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(1150,76,0,281,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(1151,85,0,281,'Black Knitted Pants'),(1152,139,0,281,'Lawrence Grey'),(1153,75,0,282,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: tapered leg, ribbed trim cuffs<br />Measurements for size EU M: length of outside leg 110 cm (43.5″)<br />Waistband: elasticated waistband<br />Pockets: seam pocket / s<br />Extras: flecked<br />Material: 60% cotton, 25% polyamide, 15% wool<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(1154,76,0,282,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(1155,85,0,282,'Black Knitted Pants'),(1156,139,0,282,'Lawrence Grey'),(1157,75,0,283,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: tapered leg, ribbed trim cuffs<br />Measurements for size EU M: length of outside leg 110 cm (43.5″)<br />Waistband: elasticated waistband<br />Pockets: seam pocket / s<br />Extras: flecked<br />Material: 60% cotton, 25% polyamide, 15% wool<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(1158,76,0,283,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(1159,85,0,283,'Black Knitted Pants'),(1160,139,0,283,'Lawrence Grey'),(1161,75,0,284,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: tapered leg, ribbed trim cuffs<br />Measurements for size EU M: length of outside leg 110 cm (43.5″)<br />Waistband: elasticated waistband<br />Pockets: seam pocket / s<br />Extras: flecked<br />Material: 60% cotton, 25% polyamide, 15% wool<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(1162,76,0,284,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(1163,85,0,284,'Black Knitted Pants'),(1164,139,0,284,'Lawrence Grey'),(1165,75,0,285,'<p>Reference number: MB 657S</p>\r\n<p>Measurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: logo appliqué(s), case included</p>\r\n<p>Material: titanium</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(1166,76,0,285,'<p>Sunglasses with a metal frame and transparent coloured lenses. Faux leather case.</p>'),(1167,85,0,285,'Green sunglasses'),(1168,139,0,285,'Montblanc'),(1169,75,0,286,'<p>Reference number: MB 657S</p>\r\n<p>Measurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: logo appliqué(s), case included</p>\r\n<p>Material: titanium</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(1170,76,0,286,'<p>Sunglasses with a metal frame and transparent coloured lenses. Faux leather case.</p>'),(1171,85,0,286,'Green sunglasses'),(1172,139,0,286,'Montblanc'),(1173,75,0,287,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: straight leg<br />Measurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1174,76,0,287,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(1175,85,0,287,'Tan Corduroy Trousers'),(1176,139,0,287,'Tommy Hilfiger'),(1177,75,0,288,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: straight leg<br />Measurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1178,76,0,288,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(1179,85,0,288,'Tan Corduroy Trousers'),(1180,139,0,288,'Tommy Hilfiger'),(1181,75,0,289,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: straight leg<br />Measurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1182,76,0,289,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(1183,85,0,289,'Tan Corduroy Trousers'),(1184,139,0,289,'Tommy Hilfiger'),(1185,75,0,290,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(1186,76,0,290,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(1187,85,0,290,'Seventy Transitional Jacket'),(1188,139,0,290,'Rino & Pelle'),(1189,75,0,291,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(1190,76,0,291,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(1191,85,0,291,'Seventy Transitional Jacket'),(1192,139,0,291,'Rino & Pelle'),(1193,75,0,292,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(1194,76,0,292,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(1195,85,0,292,'Seventy Transitional Jacket'),(1196,139,0,292,'Rino & Pelle'),(1197,75,0,293,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(1198,76,0,293,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(1199,85,0,293,'Seventy Transitional Jacket'),(1200,139,0,293,'Rino & Pelle'),(1201,75,0,294,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(1202,76,0,294,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(1203,85,0,294,'Seventy Transitional Jacket'),(1204,139,0,294,'Rino & Pelle'),(1205,75,0,295,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(1206,76,0,295,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(1207,85,0,295,'Seventy Transitional Jacket'),(1208,139,0,295,'Rino & Pelle'),(1209,75,0,296,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Model: Glenn<br />Manufacturer\'s product information: slim-fit<br />Cut: straight, narrow legs<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1210,76,0,296,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers – Glenn by Jack &amp; Jones</span></p>'),(1211,85,0,296,'Camel Dress Trousers – Glenn'),(1212,139,0,296,'Jack & Jones'),(1213,75,0,297,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Model: Glenn<br />Manufacturer\'s product information: slim-fit<br />Cut: straight, narrow legs<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1214,76,0,297,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers – Glenn by Jack &amp; Jones</span></p>'),(1215,85,0,297,'Camel Dress Trousers – Glenn'),(1216,139,0,297,'Jack & Jones'),(1217,75,0,298,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Model: Glenn<br />Manufacturer\'s product information: slim-fit<br />Cut: straight, narrow legs<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1218,76,0,298,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers – Glenn by Jack &amp; Jones</span></p>'),(1219,85,0,298,'Camel Dress Trousers – Glenn'),(1220,139,0,298,'Jack & Jones'),(1221,75,0,299,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Model: Glenn<br />Manufacturer\'s product information: slim-fit<br />Cut: straight, narrow legs<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1222,76,0,299,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers – Glenn by Jack &amp; Jones</span></p>'),(1223,85,0,299,'Camel Dress Trousers – Glenn'),(1224,139,0,299,'Jack & Jones'),(1225,75,0,300,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(1226,76,0,300,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(1227,85,0,300,'Pumps'),(1228,139,0,300,'DKNY'),(1229,75,0,301,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(1230,76,0,301,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(1231,85,0,301,'Pumps'),(1232,139,0,301,'DKNY'),(1233,75,0,302,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(1234,76,0,302,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(1235,85,0,302,'Pumps'),(1236,139,0,302,'DKNY'),(1237,75,0,303,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(1238,76,0,303,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(1239,85,0,303,'Pumps'),(1240,139,0,303,'DKNY'),(1241,75,0,304,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(1242,76,0,304,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(1243,85,0,304,'Pumps'),(1244,139,0,304,'DKNY'),(1245,75,0,305,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(1246,76,0,305,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(1247,85,0,305,'Pumps'),(1248,139,0,305,'DKNY'),(1249,75,0,306,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: straight, narrow legs, ribbed cuffs<br />Measurements for size EU M: length of outside leg 102 cm (40″)<br />Waistband: drawstring waist with elastic<br />Pockets: slit pocket/s<br />Extras: print/s<br />Material: 80% cotton, 20% polyester<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(1250,76,0,306,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(1251,85,0,306,'Black Sweat Pants'),(1252,139,0,306,'Diesel'),(1253,75,0,307,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: straight, narrow legs, ribbed cuffs<br />Measurements for size EU M: length of outside leg 102 cm (40″)<br />Waistband: drawstring waist with elastic<br />Pockets: slit pocket/s<br />Extras: print/s<br />Material: 80% cotton, 20% polyester<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(1254,76,0,307,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(1255,85,0,307,'Black Sweat Pants'),(1256,139,0,307,'Diesel'),(1257,75,0,308,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: straight, narrow legs, ribbed cuffs<br />Measurements for size EU M: length of outside leg 102 cm (40″)<br />Waistband: drawstring waist with elastic<br />Pockets: slit pocket/s<br />Extras: print/s<br />Material: 80% cotton, 20% polyester<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(1258,76,0,308,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(1259,85,0,308,'Black Sweat Pants'),(1260,139,0,308,'Diesel'),(1261,75,0,309,'<p>Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1262,76,0,309,'<p>Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem.</p>'),(1263,85,0,309,'Seventy Transitional Jacket'),(1264,139,0,309,'Strenesse'),(1265,75,0,310,'<p>Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1266,76,0,310,'<p>Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem.</p>'),(1267,85,0,310,'Seventy Transitional Jacket'),(1268,139,0,310,'Strenesse'),(1269,75,0,311,'<p>Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1270,76,0,311,'<p>Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem.</p>'),(1271,85,0,311,'Seventy Transitional Jacket'),(1272,139,0,311,'Strenesse'),(1273,75,0,312,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1274,76,0,312,'<p><span style=\"font-size: 11pt; font-family: Arial; font-weight: 300; font-style: normal; color: #222222;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(1275,85,0,312,'Slim Fit Jeans – Jane'),(1276,139,0,312,'Broadway NYC Fashion'),(1277,75,0,313,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1278,76,0,313,'<p><span style=\"font-size: 11pt; font-family: Arial; font-weight: 300; font-style: normal; color: #222222;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(1279,85,0,313,'Slim Fit Jeans – Jane'),(1280,139,0,313,'Broadway NYC Fashion'),(1281,75,0,314,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1282,76,0,314,'<p><span style=\"font-size: 11pt; font-family: Arial; font-weight: 300; font-style: normal; color: #222222;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(1283,85,0,314,'Slim Fit Jeans – Jane'),(1284,139,0,314,'Broadway NYC Fashion'),(1285,75,0,315,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1286,76,0,315,'<p><span style=\"font-size: 11pt; font-family: Arial; font-weight: 300; font-style: normal; color: #222222;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(1287,85,0,315,'Slim Fit Jeans – Jane'),(1288,139,0,315,'Broadway NYC Fashion'),(1289,75,0,316,'<p>Reference number: 0927/S</p>\r\n<p>Measurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)</p>\r\n<p>Extras: logo on both temples, logo engraved on right/left lens, case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(1290,76,0,316,'<p>Rounded sunglasses with a black frame and transparent lenses. Faux leather case.</p>'),(1291,85,0,316,'Black sunglasses'),(1292,139,0,316,'Boss'),(1293,75,0,317,'<p>Reference number: 0927/S</p>\r\n<p>Measurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)</p>\r\n<p>Extras: logo on both temples, logo engraved on right/left lens, case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(1294,76,0,317,'<p>Rounded sunglasses with a black frame and transparent lenses. Faux leather case.</p>'),(1295,85,0,317,'Black sunglasses'),(1296,139,0,317,'Boss'),(1297,75,0,318,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1298,76,0,318,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(1299,85,0,318,'Seventy Transitional Jacket'),(1300,139,0,318,'Escada'),(1301,75,0,319,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1302,76,0,319,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(1303,85,0,319,'Seventy Transitional Jacket'),(1304,139,0,319,'Escada'),(1305,75,0,320,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1306,76,0,320,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(1307,85,0,320,'Seventy Transitional Jacket'),(1308,139,0,320,'Escada'),(1309,75,0,321,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1310,76,0,321,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(1311,85,0,321,'Seventy Transitional Jacket'),(1312,139,0,321,'Escada'),(1313,75,0,322,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(1314,76,0,322,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(1315,85,0,322,'Black Chino'),(1316,139,0,322,'Kennel & Schmenger'),(1317,75,0,323,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(1318,76,0,323,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(1319,85,0,323,'Black Chino'),(1320,139,0,323,'Kennel & Schmenger'),(1321,75,0,324,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(1322,76,0,324,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(1323,85,0,324,'Black Chino'),(1324,139,0,324,'Kennel & Schmenger'),(1325,75,0,325,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(1326,76,0,325,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(1327,85,0,325,'Black Chino'),(1328,139,0,325,'Kennel & Schmenger'),(1329,75,0,326,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(1330,76,0,326,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(1331,85,0,326,'Black Chino'),(1332,139,0,326,'Kennel & Schmenger'),(1333,75,0,327,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(1334,76,0,327,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(1335,85,0,327,'Black Chino'),(1336,139,0,327,'Kennel & Schmenger'),(1337,75,0,328,'<p>Reference number: DL0255</p>\r\n<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo appliqué(s), case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(1338,76,0,328,'<p>Aviator-style sunglasses with a metal frame and coloured mirrored lenses. Faux leather case. </p>'),(1339,85,0,328,'Black sunglasses'),(1340,139,0,328,'Diesel'),(1341,75,0,329,'<p>Reference number: DL0255</p>\r\n<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo appliqué(s), case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(1342,76,0,329,'<p>Aviator-style sunglasses with a metal frame and coloured mirrored lenses. Faux leather case. </p>'),(1343,85,0,329,'Black sunglasses'),(1344,139,0,329,'Diesel'),(1345,75,0,330,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: faded colouring, elastic<br />Material: 81% cotton, 17% Elastomultiester, 2% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1346,76,0,330,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(1347,85,0,330,'Blue Straight Leg Jeans'),(1348,139,0,330,'Bugatti'),(1349,75,0,331,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: faded colouring, elastic<br />Material: 81% cotton, 17% Elastomultiester, 2% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1350,76,0,331,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(1351,85,0,331,'Blue Straight Leg Jeans'),(1352,139,0,331,'Bugatti'),(1353,75,0,332,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: faded colouring, elastic<br />Material: 81% cotton, 17% Elastomultiester, 2% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1354,76,0,332,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(1355,85,0,332,'Blue Straight Leg Jeans'),(1356,139,0,332,'Bugatti'),(1357,75,0,333,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: faded colouring, elastic<br />Material: 81% cotton, 17% Elastomultiester, 2% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1358,76,0,333,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(1359,85,0,333,'Blue Straight Leg Jeans'),(1360,139,0,333,'Bugatti'),(1361,75,0,334,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(1362,76,0,334,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(1363,85,0,334,'Seventy Transitional Jacket'),(1364,139,0,334,'Dolomite'),(1365,75,0,335,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(1366,76,0,335,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(1367,85,0,335,'Seventy Transitional Jacket'),(1368,139,0,335,'Dolomite'),(1369,75,0,336,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(1370,76,0,336,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(1371,85,0,336,'Seventy Transitional Jacket'),(1372,139,0,336,'Dolomite'),(1373,75,0,337,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(1374,76,0,337,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(1375,85,0,337,'Seventy Transitional Jacket'),(1376,139,0,337,'Dolomite'),(1377,75,0,338,'<p>Model: RMJLH Reference number: DiorSoReal</p>\r\n<p>Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(1378,76,0,338,'<p>Cateye glasses with a transparent resin frame and mirror lenses.</p>'),(1379,85,0,338,'Black sunglasses'),(1380,139,0,338,'Dior'),(1381,75,0,339,'<p>Model: RMJLH Reference number: DiorSoReal</p>\r\n<p>Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(1382,76,0,339,'<p>Cateye glasses with a transparent resin frame and mirror lenses.</p>'),(1383,85,0,339,'Black sunglasses'),(1384,139,0,339,'Dior'),(1385,75,0,340,'<p>Model: RMJLH Reference number: DiorSoReal</p>\r\n<p>Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(1386,76,0,340,'<p>Cateye glasses with a transparent resin frame and mirror lenses.</p>'),(1387,85,0,340,'Black sunglasses'),(1388,139,0,340,'Dior'),(1389,75,0,341,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: anti-fit<br />Cut: narrow, slightly tapered legs<br />Measurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: 5-pocket<br />Extras: dark wash, contrast trims on side, logo tag on back of waistband<br />Material: 100% cotton<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(1390,76,0,341,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(1391,85,0,341,'Dark Blue Slim Fit Jeans'),(1392,139,0,341,'Only & Sons'),(1393,75,0,342,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: anti-fit<br />Cut: narrow, slightly tapered legs<br />Measurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: 5-pocket<br />Extras: dark wash, contrast trims on side, logo tag on back of waistband<br />Material: 100% cotton<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(1394,76,0,342,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(1395,85,0,342,'Dark Blue Slim Fit Jeans'),(1396,139,0,342,'Only & Sons'),(1397,75,0,343,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: anti-fit<br />Cut: narrow, slightly tapered legs<br />Measurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: 5-pocket<br />Extras: dark wash, contrast trims on side, logo tag on back of waistband<br />Material: 100% cotton<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(1398,76,0,343,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(1399,85,0,343,'Dark Blue Slim Fit Jeans'),(1400,139,0,343,'Only & Sons'),(1401,75,0,344,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: anti-fit<br />Cut: narrow, slightly tapered legs<br />Measurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: 5-pocket<br />Extras: dark wash, contrast trims on side, logo tag on back of waistband<br />Material: 100% cotton<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(1402,76,0,344,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(1403,85,0,344,'Dark Blue Slim Fit Jeans'),(1404,139,0,344,'Only & Sons'),(1405,75,0,345,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: anti-fit<br />Cut: narrow, slightly tapered legs<br />Measurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: 5-pocket<br />Extras: dark wash, contrast trims on side, logo tag on back of waistband<br />Material: 100% cotton<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(1406,76,0,345,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(1407,85,0,345,'Dark Blue Slim Fit Jeans'),(1408,139,0,345,'Only & Sons'),(1409,75,0,346,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: slim-fit<br />Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Material: 99% cotton, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1410,76,0,346,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(1411,85,0,346,'Blue Slim Fit Jeans'),(1412,139,0,346,'Armani Jeans'),(1413,75,0,347,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: slim-fit<br />Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Material: 99% cotton, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1414,76,0,347,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(1415,85,0,347,'Blue Slim Fit Jeans'),(1416,139,0,347,'Armani Jeans'),(1417,75,0,348,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: slim-fit<br />Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Material: 99% cotton, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1418,76,0,348,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(1419,85,0,348,'Blue Slim Fit Jeans'),(1420,139,0,348,'Armani Jeans'),(1421,75,0,349,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: slim-fit<br />Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Material: 99% cotton, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1422,76,0,349,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(1423,85,0,349,'Blue Slim Fit Jeans'),(1424,139,0,349,'Armani Jeans'),(1425,75,0,350,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1426,76,0,350,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(1427,85,0,350,'Black Chino'),(1428,139,0,350,'Hammerstein'),(1429,75,0,351,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1430,76,0,351,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(1431,85,0,351,'Black Chino'),(1432,139,0,351,'Hammerstein'),(1433,75,0,352,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1434,76,0,352,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(1435,85,0,352,'Black Chino'),(1436,139,0,352,'Hammerstein'),(1437,75,0,353,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1438,76,0,353,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(1439,85,0,353,'Black Chino'),(1440,139,0,353,'Hammerstein'),(1441,75,0,354,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(1442,76,0,354,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(1443,85,0,354,'Seventy Transitional Jacket'),(1444,139,0,354,'Calvin Klein Jeans'),(1445,75,0,355,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(1446,76,0,355,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(1447,85,0,355,'Seventy Transitional Jacket'),(1448,139,0,355,'Calvin Klein Jeans'),(1449,75,0,356,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(1450,76,0,356,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(1451,85,0,356,'Seventy Transitional Jacket'),(1452,139,0,356,'Calvin Klein Jeans'),(1453,75,0,357,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(1454,76,0,357,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(1455,85,0,357,'Seventy Transitional Jacket'),(1456,139,0,357,'Calvin Klein Jeans'),(1457,75,0,358,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 67% cotton, 30% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(1458,76,0,358,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit, neppy-look jeans with zip and button fastening and five pockets.<br /><br /></span></p>'),(1459,85,0,358,'Khaki Straight Leg Jeans Cadiz'),(1460,139,0,358,'Brax'),(1461,75,0,359,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 67% cotton, 30% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(1462,76,0,359,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit, neppy-look jeans with zip and button fastening and five pockets.<br /><br /></span></p>'),(1463,85,0,359,'Khaki Straight Leg Jeans Cadiz'),(1464,139,0,359,'Brax'),(1465,75,0,360,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 67% cotton, 30% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(1466,76,0,360,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit, neppy-look jeans with zip and button fastening and five pockets.<br /><br /></span></p>'),(1467,85,0,360,'Khaki Straight Leg Jeans Cadiz'),(1468,139,0,360,'Brax'),(1469,75,0,361,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 67% cotton, 30% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(1470,76,0,361,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit, neppy-look jeans with zip and button fastening and five pockets.<br /><br /></span></p>'),(1471,85,0,361,'Khaki Straight Leg Jeans Cadiz'),(1472,139,0,361,'Brax'),(1473,75,0,362,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 67% cotton, 30% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(1474,76,0,362,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit, neppy-look jeans with zip and button fastening and five pockets.<br /><br /></span></p>'),(1475,85,0,362,'Khaki Straight Leg Jeans Cadiz'),(1476,139,0,362,'Brax'),(1477,75,0,363,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 67% cotton, 30% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(1478,76,0,363,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit, neppy-look jeans with zip and button fastening and five pockets.<br /><br /></span></p>'),(1479,85,0,363,'Khaki Straight Leg Jeans Cadiz'),(1480,139,0,363,'Brax'),(1481,75,0,364,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1482,76,0,364,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(1483,85,0,364,'Seventy Transitional Jacket'),(1484,139,0,364,'Colmar'),(1485,75,0,365,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1486,76,0,365,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(1487,85,0,365,'Seventy Transitional Jacket'),(1488,139,0,365,'Colmar'),(1489,75,0,366,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1490,76,0,366,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(1491,85,0,366,'Seventy Transitional Jacket'),(1492,139,0,366,'Colmar'),(1493,75,0,367,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1494,76,0,367,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(1495,85,0,367,'Seventy Transitional Jacket'),(1496,139,0,367,'Colmar'),(1497,75,0,368,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(1498,76,0,368,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(1499,85,0,368,'Seventy Transitional Jacket'),(1500,139,0,368,'Rich & Royal'),(1501,75,0,369,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(1502,76,0,369,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(1503,85,0,369,'Seventy Transitional Jacket'),(1504,139,0,369,'Rich & Royal'),(1505,75,0,370,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(1506,76,0,370,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(1507,85,0,370,'Seventy Transitional Jacket'),(1508,139,0,370,'Rich & Royal'),(1509,75,0,371,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(1510,76,0,371,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(1511,85,0,371,'Seventy Transitional Jacket'),(1512,139,0,371,'Rich & Royal'),(1513,75,0,372,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(1514,76,0,372,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(1515,85,0,372,'Seventy Transitional Jacket'),(1516,139,0,372,'Rich & Royal'),(1517,75,0,373,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(1518,76,0,373,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(1519,85,0,373,'Seventy Transitional Jacket'),(1520,139,0,373,'Rich & Royal'),(1521,75,0,374,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(1522,76,0,374,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(1523,85,0,374,'Seventy Transitional Jacket'),(1524,139,0,374,'Rich & Royal'),(1525,75,0,375,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(1526,76,0,375,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(1527,85,0,375,'Seventy Transitional Jacket'),(1528,139,0,375,'Rich & Royal'),(1529,75,0,376,'<p>Model: Diorsorealrise</p>\r\n<p>Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: patterned bow, patterned border, logo engraving, case included</p>\r\n<p>Material: plastic, metal</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(1530,76,0,376,'<p>Resin sunglasses with a double metal bridge.</p>'),(1531,85,0,376,'Rose gold diorsorealrise'),(1532,139,0,376,'Dior'),(1533,75,0,377,'<p>Model: Diorsorealrise</p>\r\n<p>Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: patterned bow, patterned border, logo engraving, case included</p>\r\n<p>Material: plastic, metal</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(1534,76,0,377,'<p>Resin sunglasses with a double metal bridge.</p>'),(1535,85,0,377,'Rose gold diorsorealrise'),(1536,139,0,377,'Dior'),(1537,75,0,378,'<p>Model: Diorsorealrise</p>\r\n<p>Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: patterned bow, patterned border, logo engraving, case included</p>\r\n<p>Material: plastic, metal</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(1538,76,0,378,'<p>Resin sunglasses with a double metal bridge.</p>'),(1539,85,0,378,'Rose gold diorsorealrise'),(1540,139,0,378,'Dior'),(1541,75,0,379,'<p>Model: Diorsorealrise</p>\r\n<p>Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: patterned bow, patterned border, logo engraving, case included</p>\r\n<p>Material: plastic, metal</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(1542,76,0,379,'<p>Resin sunglasses with a double metal bridge.</p>'),(1543,85,0,379,'Rose gold diorsorealrise'),(1544,139,0,379,'Dior'),(1545,75,0,380,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1546,76,0,380,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(1547,85,0,380,'Black Chino'),(1548,139,0,380,'Elvio Zanon'),(1549,75,0,381,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1550,76,0,381,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(1551,85,0,381,'Black Chino'),(1552,139,0,381,'Elvio Zanon'),(1553,75,0,382,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1554,76,0,382,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(1555,85,0,382,'Black Chino'),(1556,139,0,382,'Elvio Zanon'),(1557,75,0,383,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1558,76,0,383,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(1559,85,0,383,'Black Chino'),(1560,139,0,383,'Elvio Zanon'),(1561,75,0,384,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1562,76,0,384,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(1563,85,0,384,'Black Chino'),(1564,139,0,384,'Elvio Zanon'),(1565,75,0,385,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, holes, logo tag on back of waistband<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1566,76,0,385,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(1567,85,0,385,'Grey Slim Fit Jeans Cirrus'),(1568,139,0,385,'Blend'),(1569,75,0,386,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, holes, logo tag on back of waistband<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1570,76,0,386,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(1571,85,0,386,'Grey Slim Fit Jeans Cirrus'),(1572,139,0,386,'Blend'),(1573,75,0,387,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, holes, logo tag on back of waistband<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1574,76,0,387,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(1575,85,0,387,'Grey Slim Fit Jeans Cirrus'),(1576,139,0,387,'Blend'),(1577,75,0,388,'<p>Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(1578,76,0,388,'<p>Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front.</p>'),(1579,85,0,388,'Seventy Transitional Jacket'),(1580,139,0,388,'Black Swan'),(1581,75,0,389,'<p>Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(1582,76,0,389,'<p>Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front.</p>'),(1583,85,0,389,'Seventy Transitional Jacket'),(1584,139,0,389,'Black Swan'),(1585,75,0,390,'<p>Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(1586,76,0,390,'<p>Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front.</p>'),(1587,85,0,390,'Seventy Transitional Jacket'),(1588,139,0,390,'Black Swan'),(1589,75,0,391,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight leg<br />Measurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, light quality<br />Material: 64% Lyocell, 30% cotton, 4% Elastomultiester<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1590,76,0,391,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(1591,85,0,391,'Black Standard Jeans'),(1592,139,0,391,'7 for all Mankind'),(1593,75,0,392,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight leg<br />Measurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, light quality<br />Material: 64% Lyocell, 30% cotton, 4% Elastomultiester<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1594,76,0,392,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(1595,85,0,392,'Black Standard Jeans'),(1596,139,0,392,'7 for all Mankind'),(1597,75,0,393,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight leg<br />Measurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, light quality<br />Material: 64% Lyocell, 30% cotton, 4% Elastomultiester<br />Manufacturer\'s care instructions: machine wash</span></p>'),(1598,76,0,393,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(1599,85,0,393,'Black Standard Jeans'),(1600,139,0,393,'7 for all Mankind'),(1601,75,0,394,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Model: Rob<br />Manufacturers product information: regular fit, mid-rise<br />Cut: straight leg<br />Measurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: faded colouring<br />Material: 99% cotton, 1% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1602,76,0,394,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(1603,85,0,394,'Medium Blue Straight Leg Jeans – Rob'),(1604,139,0,394,'Bogner'),(1605,75,0,395,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Model: Rob<br />Manufacturers product information: regular fit, mid-rise<br />Cut: straight leg<br />Measurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: faded colouring<br />Material: 99% cotton, 1% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1606,76,0,395,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(1607,85,0,395,'Medium Blue Straight Leg Jeans – Rob'),(1608,139,0,395,'Bogner'),(1609,75,0,396,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Model: Rob<br />Manufacturers product information: regular fit, mid-rise<br />Cut: straight leg<br />Measurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: faded colouring<br />Material: 99% cotton, 1% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1610,76,0,396,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(1611,85,0,396,'Medium Blue Straight Leg Jeans – Rob'),(1612,139,0,396,'Bogner'),(1613,75,0,397,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1614,76,0,397,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(1615,85,0,397,'Seventy Transitional Jacket'),(1616,139,0,397,'Comma'),(1617,75,0,398,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1618,76,0,398,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(1619,85,0,398,'Seventy Transitional Jacket'),(1620,139,0,398,'Comma'),(1621,75,0,399,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1622,76,0,399,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(1623,85,0,399,'Seventy Transitional Jacket'),(1624,139,0,399,'Comma'),(1625,75,0,400,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1626,76,0,400,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(1627,85,0,400,'Seventy Transitional Jacket'),(1628,139,0,400,'Comma'),(1629,75,0,401,'<p>Cut: lightly fitted, light shoulder padding Measurements for size EU 36: sleeve length 62 cm (24.5″), garment length 53 cm (21″) Collar: turn-down collar Fastening: concealed placket with snap closures Exterior pockets: patch pocket(s) Lining: lined Extras: weaving pattern Outer material: 90% cotton, 10% polyester Lining material: 100% polyester Manufacturer\'s care instructions: dry cleaning Please note: tends to run small Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1630,76,0,401,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(1631,85,0,401,'Seventy Transitional Jacket'),(1632,139,0,401,'Lawrence Grey'),(1633,75,0,402,'<p>Cut: lightly fitted, light shoulder padding Measurements for size EU 36: sleeve length 62 cm (24.5″), garment length 53 cm (21″) Collar: turn-down collar Fastening: concealed placket with snap closures Exterior pockets: patch pocket(s) Lining: lined Extras: weaving pattern Outer material: 90% cotton, 10% polyester Lining material: 100% polyester Manufacturer\'s care instructions: dry cleaning Please note: tends to run small Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1634,76,0,402,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(1635,85,0,402,'Seventy Transitional Jacket'),(1636,139,0,402,'Lawrence Grey'),(1637,75,0,403,'<p>Cut: lightly fitted, light shoulder padding Measurements for size EU 36: sleeve length 62 cm (24.5″), garment length 53 cm (21″) Collar: turn-down collar Fastening: concealed placket with snap closures Exterior pockets: patch pocket(s) Lining: lined Extras: weaving pattern Outer material: 90% cotton, 10% polyester Lining material: 100% polyester Manufacturer\'s care instructions: dry cleaning Please note: tends to run small Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1638,76,0,403,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(1639,85,0,403,'Seventy Transitional Jacket'),(1640,139,0,403,'Lawrence Grey'),(1641,75,0,404,'<p>Cut: lightly fitted, light shoulder padding Measurements for size EU 36: sleeve length 62 cm (24.5″), garment length 53 cm (21″) Collar: turn-down collar Fastening: concealed placket with snap closures Exterior pockets: patch pocket(s) Lining: lined Extras: weaving pattern Outer material: 90% cotton, 10% polyester Lining material: 100% polyester Manufacturer\'s care instructions: dry cleaning Please note: tends to run small Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1642,76,0,404,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(1643,85,0,404,'Seventy Transitional Jacket'),(1644,139,0,404,'Lawrence Grey'),(1645,75,0,405,'<p>Cut: lightly fitted, light shoulder padding Measurements for size EU 36: sleeve length 62 cm (24.5″), garment length 53 cm (21″) Collar: turn-down collar Fastening: concealed placket with snap closures Exterior pockets: patch pocket(s) Lining: lined Extras: weaving pattern Outer material: 90% cotton, 10% polyester Lining material: 100% polyester Manufacturer\'s care instructions: dry cleaning Please note: tends to run small Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1646,76,0,405,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(1647,85,0,405,'Seventy Transitional Jacket'),(1648,139,0,405,'Lawrence Grey'),(1649,75,0,406,'<p>Cut: lightly fitted, light shoulder padding Measurements for size EU 36: sleeve length 62 cm (24.5″), garment length 53 cm (21″) Collar: turn-down collar Fastening: concealed placket with snap closures Exterior pockets: patch pocket(s) Lining: lined Extras: weaving pattern Outer material: 90% cotton, 10% polyester Lining material: 100% polyester Manufacturer\'s care instructions: dry cleaning Please note: tends to run small Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(1650,76,0,406,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(1651,85,0,406,'Seventy Transitional Jacket'),(1652,139,0,406,'Lawrence Grey'),(1653,75,0,407,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1654,76,0,407,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(1655,85,0,407,'Black Chino'),(1656,139,0,407,'Steve Madden'),(1657,75,0,408,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1658,76,0,408,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(1659,85,0,408,'Black Chino'),(1660,139,0,408,'Steve Madden'),(1661,75,0,409,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1662,76,0,409,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(1663,85,0,409,'Black Chino'),(1664,139,0,409,'Steve Madden'),(1665,75,0,410,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1666,76,0,410,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(1667,85,0,410,'Black Chino'),(1668,139,0,410,'Steve Madden'),(1669,75,0,411,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1670,76,0,411,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(1671,85,0,411,'Black Chino'),(1672,139,0,411,'Steve Madden'),(1673,75,0,412,'<p>Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1674,76,0,412,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(1675,85,0,412,'Seventy Transitional Jacket'),(1676,139,0,412,'Cipo & Baxx'),(1677,75,0,413,'<p>Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1678,76,0,413,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(1679,85,0,413,'Seventy Transitional Jacket'),(1680,139,0,413,'Cipo & Baxx'),(1681,75,0,414,'<p>Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1682,76,0,414,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(1683,85,0,414,'Seventy Transitional Jacket'),(1684,139,0,414,'Cipo & Baxx'),(1685,75,0,415,'<p>Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1686,76,0,415,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(1687,85,0,415,'Seventy Transitional Jacket'),(1688,139,0,415,'Cipo & Baxx'),(1689,75,0,416,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1690,76,0,416,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(1691,85,0,416,'Black Chino'),(1692,139,0,416,'Adidas'),(1693,75,0,417,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1694,76,0,417,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(1695,85,0,417,'Black Chino'),(1696,139,0,417,'Adidas'),(1697,75,0,418,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1698,76,0,418,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(1699,85,0,418,'Black Chino'),(1700,139,0,418,'Adidas'),(1701,75,0,419,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1702,76,0,419,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(1703,85,0,419,'Black Chino'),(1704,139,0,419,'Adidas'),(1705,75,0,420,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1706,76,0,420,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(1707,85,0,420,'Black Chino'),(1708,139,0,420,'Adidas'),(1709,75,0,421,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1710,76,0,421,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(1711,85,0,421,'Black Chino'),(1712,139,0,421,'Adidas'),(1713,75,0,422,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1714,76,0,422,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(1715,85,0,422,'Black Chino'),(1716,139,0,422,'Adidas'),(1717,75,0,423,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1718,76,0,423,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(1719,85,0,423,'Black Chino'),(1720,139,0,423,'Adidas'),(1721,75,0,424,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1722,76,0,424,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(1723,85,0,424,'Black Chino'),(1724,139,0,424,'Adidas'),(1725,75,0,425,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1726,76,0,425,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(1727,85,0,425,'Black Chino'),(1728,139,0,425,'Adidas'),(1729,75,0,426,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Model: Cliff<br />Manufacturers product information: mid-rise slim-fit<br />Cut: narrow, slightly tapered legs<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: distressed look with faded dyes and permanent wrinkles<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1730,76,0,426,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(1731,85,0,426,'Medium Blue Slim Fit Jeans – Cliff'),(1732,139,0,426,'H.I.S Jeans'),(1733,75,0,427,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Model: Cliff<br />Manufacturers product information: mid-rise slim-fit<br />Cut: narrow, slightly tapered legs<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: distressed look with faded dyes and permanent wrinkles<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1734,76,0,427,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(1735,85,0,427,'Medium Blue Slim Fit Jeans – Cliff'),(1736,139,0,427,'H.I.S Jeans'),(1737,75,0,428,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Model: Cliff<br />Manufacturers product information: mid-rise slim-fit<br />Cut: narrow, slightly tapered legs<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: distressed look with faded dyes and permanent wrinkles<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1738,76,0,428,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(1739,85,0,428,'Medium Blue Slim Fit Jeans – Cliff'),(1740,139,0,428,'H.I.S Jeans'),(1741,75,0,429,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1742,76,0,429,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(1743,85,0,429,'Black Chino'),(1744,139,0,429,'Adidas'),(1745,75,0,430,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1746,76,0,430,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(1747,85,0,430,'Black Chino'),(1748,139,0,430,'Adidas'),(1749,75,0,431,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1750,76,0,431,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(1751,85,0,431,'Black Chino'),(1752,139,0,431,'Adidas'),(1753,75,0,432,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1754,76,0,432,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(1755,85,0,432,'Black Chino'),(1756,139,0,432,'Adidas'),(1757,75,0,433,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1758,76,0,433,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(1759,85,0,433,'Black Chino'),(1760,139,0,433,'Adidas'),(1761,75,0,434,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1762,76,0,434,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(1763,85,0,434,'Black Chino'),(1764,139,0,434,'Adidas'),(1765,75,0,435,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1766,76,0,435,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(1767,85,0,435,'Black Chino'),(1768,139,0,435,'Adidas'),(1769,75,0,436,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1770,76,0,436,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(1771,85,0,436,'Black Chino'),(1772,139,0,436,'Adidas'),(1773,75,0,437,'<p>Cut: slightly tapered, ribbed waistband Measurements for size EU M: garment length 67,5 cm (26.5″) Collar: ribbed knit collar Fastening: full length zip fastener Sleeve: ribbed trim cuffs Exterior pockets: slit pocket with press stud closure Interior pockets: left inside pocket Lining: lined Outer material: 83% polyester, 17% cotton Lining material: 98% polyester, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1774,76,0,437,'<p>Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front.</p>'),(1775,85,0,437,'Seventy Transitional Jacket'),(1776,139,0,437,'Diesel'),(1777,75,0,438,'<p>Cut: slightly tapered, ribbed waistband Measurements for size EU M: garment length 67,5 cm (26.5″) Collar: ribbed knit collar Fastening: full length zip fastener Sleeve: ribbed trim cuffs Exterior pockets: slit pocket with press stud closure Interior pockets: left inside pocket Lining: lined Outer material: 83% polyester, 17% cotton Lining material: 98% polyester, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1778,76,0,438,'<p>Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front.</p>'),(1779,85,0,438,'Seventy Transitional Jacket'),(1780,139,0,438,'Diesel'),(1781,75,0,439,'<p>Cut: slightly tapered, ribbed waistband Measurements for size EU M: garment length 67,5 cm (26.5″) Collar: ribbed knit collar Fastening: full length zip fastener Sleeve: ribbed trim cuffs Exterior pockets: slit pocket with press stud closure Interior pockets: left inside pocket Lining: lined Outer material: 83% polyester, 17% cotton Lining material: 98% polyester, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1782,76,0,439,'<p>Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front.</p>'),(1783,85,0,439,'Seventy Transitional Jacket'),(1784,139,0,439,'Diesel'),(1785,75,0,440,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Model: 700<br />Manufacturers product information: regular fit<br />Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, logo tag on back of waistband<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1786,76,0,440,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(1787,85,0,440,'Dark Blue Straight Leg Jeans – 700'),(1788,139,0,440,'Carrera'),(1789,75,0,441,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Model: 700<br />Manufacturers product information: regular fit<br />Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, logo tag on back of waistband<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1790,76,0,441,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(1791,85,0,441,'Dark Blue Straight Leg Jeans – 700'),(1792,139,0,441,'Carrera'),(1793,75,0,442,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Model: 700<br />Manufacturers product information: regular fit<br />Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, logo tag on back of waistband<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1794,76,0,442,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(1795,85,0,442,'Dark Blue Straight Leg Jeans – 700'),(1796,139,0,442,'Carrera'),(1797,75,0,443,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1798,76,0,443,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(1799,85,0,443,'Black Chino'),(1800,139,0,443,'Rapid Soul'),(1801,75,0,444,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1802,76,0,444,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(1803,85,0,444,'Black Chino'),(1804,139,0,444,'Rapid Soul'),(1805,75,0,445,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1806,76,0,445,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(1807,85,0,445,'Black Chino'),(1808,139,0,445,'Rapid Soul'),(1809,75,0,446,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1810,76,0,446,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(1811,85,0,446,'Black Chino'),(1812,139,0,446,'Rapid Soul'),(1813,75,0,447,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1814,76,0,447,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(1815,85,0,447,'Black Chino'),(1816,139,0,447,'Rapid Soul'),(1817,75,0,448,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1818,76,0,448,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(1819,85,0,448,'Black Chino'),(1820,139,0,448,'Rapid Soul'),(1821,75,0,449,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1822,76,0,449,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(1823,85,0,449,'Black Chino'),(1824,139,0,449,'Rapid Soul'),(1825,75,0,450,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1826,76,0,450,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(1827,85,0,450,'Black Chino'),(1828,139,0,450,'Rapid Soul'),(1829,75,0,451,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1830,76,0,451,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(1831,85,0,451,'Black Chino'),(1832,139,0,451,'Rapid Soul'),(1833,75,0,452,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1834,76,0,452,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(1835,85,0,452,'Black Chino'),(1836,139,0,452,'Rapid Soul'),(1837,75,0,453,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1838,76,0,453,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(1839,85,0,453,'Black Chino'),(1840,139,0,453,'Rapid Soul'),(1841,75,0,454,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(1842,76,0,454,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(1843,85,0,454,'Black Chino'),(1844,139,0,454,'Rapid Soul'),(1845,75,0,455,'<p>Cut: lightly fitted, ribbed waistband Measurements for size EU 50: garment length 66 cm (26″) Collar: Chin guard, stand-up collar Fastening: continuous two-way zip Exterior pockets: zip pocket(s) Lining: lined Extras: water resistant zips, air vents under the arms Outer material: 89% polyester, 11% elastane Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 50 and is 185cm/6′0″ tall.</p>'),(1846,76,0,455,'<p>Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>'),(1847,85,0,455,'Seventy Transitional Jacket'),(1848,139,0,455,'People of Shibuya'),(1849,75,0,456,'<p>Cut: lightly fitted, ribbed waistband Measurements for size EU 50: garment length 66 cm (26″) Collar: Chin guard, stand-up collar Fastening: continuous two-way zip Exterior pockets: zip pocket(s) Lining: lined Extras: water resistant zips, air vents under the arms Outer material: 89% polyester, 11% elastane Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 50 and is 185cm/6′0″ tall.</p>'),(1850,76,0,456,'<p>Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>'),(1851,85,0,456,'Seventy Transitional Jacket'),(1852,139,0,456,'People of Shibuya'),(1853,75,0,457,'<p>Cut: lightly fitted, ribbed waistband Measurements for size EU 50: garment length 66 cm (26″) Collar: Chin guard, stand-up collar Fastening: continuous two-way zip Exterior pockets: zip pocket(s) Lining: lined Extras: water resistant zips, air vents under the arms Outer material: 89% polyester, 11% elastane Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 50 and is 185cm/6′0″ tall.</p>'),(1854,76,0,457,'<p>Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>'),(1855,85,0,457,'Seventy Transitional Jacket'),(1856,139,0,457,'People of Shibuya'),(1857,75,0,458,'<p>Cut: lightly fitted, elasticated back Measurements for size EU M: garment length 67 cm (26.5″) Fastening: continuous button placket Sleeve: single-button cuffs Exterior pockets: breast pocket(s), piped pocket(s) Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1858,76,0,458,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>'),(1859,85,0,458,'Seventy Transitional Jacket'),(1860,139,0,458,'Boss Orange'),(1861,75,0,459,'<p>Cut: lightly fitted, elasticated back Measurements for size EU M: garment length 67 cm (26.5″) Fastening: continuous button placket Sleeve: single-button cuffs Exterior pockets: breast pocket(s), piped pocket(s) Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1862,76,0,459,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>'),(1863,85,0,459,'Seventy Transitional Jacket'),(1864,139,0,459,'Boss Orange'),(1865,75,0,460,'<p>Cut: lightly fitted, elasticated back Measurements for size EU M: garment length 67 cm (26.5″) Fastening: continuous button placket Sleeve: single-button cuffs Exterior pockets: breast pocket(s), piped pocket(s) Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1866,76,0,460,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>'),(1867,85,0,460,'Seventy Transitional Jacket'),(1868,139,0,460,'Boss Orange'),(1869,75,0,461,'<p>Line: Puma x Big Sean Cut: straight, drawstring hem Measurements for size EU M: garment length 74 cm (29″) Collar: turn-down collar Fastening: continuous snap fastener placket Sleeve: elasticated cuffs Exterior pockets: welt pocket(s) Lining: lined Extras: satin, subtle sheen, contrast piping, embroidered logo(s) Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1870,76,0,461,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(1871,85,0,461,'Seventy Transitional Jacket'),(1872,139,0,461,'Boss Orange'),(1873,75,0,462,'<p>Line: Puma x Big Sean Cut: straight, drawstring hem Measurements for size EU M: garment length 74 cm (29″) Collar: turn-down collar Fastening: continuous snap fastener placket Sleeve: elasticated cuffs Exterior pockets: welt pocket(s) Lining: lined Extras: satin, subtle sheen, contrast piping, embroidered logo(s) Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1874,76,0,462,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(1875,85,0,462,'Seventy Transitional Jacket'),(1876,139,0,462,'Boss Orange'),(1877,75,0,463,'<p>Line: Puma x Big Sean Cut: straight, drawstring hem Measurements for size EU M: garment length 74 cm (29″) Collar: turn-down collar Fastening: continuous snap fastener placket Sleeve: elasticated cuffs Exterior pockets: welt pocket(s) Lining: lined Extras: satin, subtle sheen, contrast piping, embroidered logo(s) Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1878,76,0,463,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(1879,85,0,463,'Seventy Transitional Jacket'),(1880,139,0,463,'Boss Orange'),(1881,75,0,464,'<p>Line: Puma x Big Sean Cut: straight, drawstring hem Measurements for size EU M: garment length 74 cm (29″) Collar: turn-down collar Fastening: continuous snap fastener placket Sleeve: elasticated cuffs Exterior pockets: welt pocket(s) Lining: lined Extras: satin, subtle sheen, contrast piping, embroidered logo(s) Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1882,76,0,464,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(1883,85,0,464,'Seventy Transitional Jacket'),(1884,139,0,464,'Boss Orange'),(1885,75,0,465,'<p>Cut: lightly fitted Measurements for size EU L: garment length 75 cm (29.5″) Collar: stand-up collar, hood with drawstring Fastening: short zip Sleeve: raglan sleeves Exterior pockets: flap pocket(s) with press stud closure Extras: logo patch, embroidered logo(s), internal soft fleece cover Material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU L and is 185cm/6′0″ tall.</p>'),(1886,76,0,465,'<p>Puffer jacket with down filling. Fastening with front zip and snap buttons.</p>'),(1887,85,0,465,'Seventy Transitional Jacket'),(1888,139,0,465,'Hilfiger Denim'),(1889,75,0,466,'<p>Cut: lightly fitted Measurements for size EU L: garment length 75 cm (29.5″) Collar: stand-up collar, hood with drawstring Fastening: short zip Sleeve: raglan sleeves Exterior pockets: flap pocket(s) with press stud closure Extras: logo patch, embroidered logo(s), internal soft fleece cover Material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU L and is 185cm/6′0″ tall.</p>'),(1890,76,0,466,'<p>Puffer jacket with down filling. Fastening with front zip and snap buttons.</p>'),(1891,85,0,466,'Seventy Transitional Jacket'),(1892,139,0,466,'Hilfiger Denim'),(1893,75,0,467,'<p>Cut: lightly fitted Measurements for size EU L: garment length 75 cm (29.5″) Collar: stand-up collar, hood with drawstring Fastening: short zip Sleeve: raglan sleeves Exterior pockets: flap pocket(s) with press stud closure Extras: logo patch, embroidered logo(s), internal soft fleece cover Material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU L and is 185cm/6′0″ tall.</p>'),(1894,76,0,467,'<p>Puffer jacket with down filling. Fastening with front zip and snap buttons.</p>'),(1895,85,0,467,'Seventy Transitional Jacket'),(1896,139,0,467,'Hilfiger Denim'),(1897,75,0,468,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Model: Julyen<br />Manufacturers product information: regular fit<br />Cut: straight leg<br />Measurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br />Waistband: belt loops and button fly, belt<br />Pockets: 5-pocket<br />Extras: logo appliqué(s)<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 32 and is 185cm/6′0″ tall.</span></p>'),(1898,76,0,468,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(1899,85,0,468,'Dark Blue Julyen'),(1900,139,0,468,'Crosshatch'),(1901,75,0,469,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Model: Julyen<br />Manufacturers product information: regular fit<br />Cut: straight leg<br />Measurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br />Waistband: belt loops and button fly, belt<br />Pockets: 5-pocket<br />Extras: logo appliqué(s)<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 32 and is 185cm/6′0″ tall.</span></p>'),(1902,76,0,469,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(1903,85,0,469,'Dark Blue Julyen'),(1904,139,0,469,'Crosshatch'),(1905,75,0,470,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Model: Julyen<br />Manufacturers product information: regular fit<br />Cut: straight leg<br />Measurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br />Waistband: belt loops and button fly, belt<br />Pockets: 5-pocket<br />Extras: logo appliqué(s)<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 32 and is 185cm/6′0″ tall.</span></p>'),(1906,76,0,470,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(1907,85,0,470,'Dark Blue Julyen'),(1908,139,0,470,'Crosshatch'),(1909,75,0,471,'<p>Cut: straight Measurements for size EU 50: garment length 70 cm (27.5″), sleeve length 66 cm (26″) Collar: Stand-up collar with integrated hood Fastening: full length zip fastener Exterior pockets: zip pocket(s) Interior pockets: inside pockets left and right Lining: lined and padded Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 50 and is 185cm/6′0″ tall.</p>'),(1910,76,0,471,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(1911,85,0,471,'Seventy Transitional Jacket'),(1912,139,0,471,'Steinbock'),(1913,75,0,472,'<p>Cut: straight Measurements for size EU 50: garment length 70 cm (27.5″), sleeve length 66 cm (26″) Collar: Stand-up collar with integrated hood Fastening: full length zip fastener Exterior pockets: zip pocket(s) Interior pockets: inside pockets left and right Lining: lined and padded Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 50 and is 185cm/6′0″ tall.</p>'),(1914,76,0,472,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(1915,85,0,472,'Seventy Transitional Jacket'),(1916,139,0,472,'Steinbock'),(1917,75,0,473,'<p>Cut: straight Measurements for size EU 50: garment length 70 cm (27.5″), sleeve length 66 cm (26″) Collar: Stand-up collar with integrated hood Fastening: full length zip fastener Exterior pockets: zip pocket(s) Interior pockets: inside pockets left and right Lining: lined and padded Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 50 and is 185cm/6′0″ tall.</p>'),(1918,76,0,473,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(1919,85,0,473,'Seventy Transitional Jacket'),(1920,139,0,473,'Steinbock'),(1921,75,0,474,'<p>Cut: straight Measurements for size EU 50: garment length 70 cm (27.5″), sleeve length 66 cm (26″) Collar: Stand-up collar with integrated hood Fastening: full length zip fastener Exterior pockets: zip pocket(s) Interior pockets: inside pockets left and right Lining: lined and padded Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 50 and is 185cm/6′0″ tall.</p>'),(1922,76,0,474,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(1923,85,0,474,'Seventy Transitional Jacket'),(1924,139,0,474,'Steinbock'),(1925,75,0,475,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Model: John 16511<br />Manufacturers product information: slim-fit<br />Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: logo tag on back of waistband<br />Material: 97% cotton, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1926,76,0,475,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(1927,85,0,475,'Navy John 16511'),(1928,139,0,475,'Baldessarini'),(1929,75,0,476,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Model: John 16511<br />Manufacturers product information: slim-fit<br />Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: logo tag on back of waistband<br />Material: 97% cotton, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1930,76,0,476,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(1931,85,0,476,'Navy John 16511'),(1932,139,0,476,'Baldessarini'),(1933,75,0,477,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Model: John 16511<br />Manufacturers product information: slim-fit<br />Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: logo tag on back of waistband<br />Material: 97% cotton, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(1934,76,0,477,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(1935,85,0,477,'Navy John 16511'),(1936,139,0,477,'Baldessarini'),(1937,75,0,478,'<p>Cut: straight Measurements for size EU M: garment length 74 cm (29″) Collar: hood with drawstring Fastening: full length zip fastener Sleeve: single-button cuffs Exterior pockets: welt pocket(s) with button Lining: lined Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash</p>'),(1938,76,0,478,'<p>Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket. Fastens in the front with snap buttons.</p>'),(1939,85,0,478,'Seventy Transitional Jacket'),(1940,139,0,478,'Jack & Jones'),(1941,75,0,479,'<p>Cut: straight Measurements for size EU M: garment length 74 cm (29″) Collar: hood with drawstring Fastening: full length zip fastener Sleeve: single-button cuffs Exterior pockets: welt pocket(s) with button Lining: lined Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash</p>'),(1942,76,0,479,'<p>Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket. Fastens in the front with snap buttons.</p>'),(1943,85,0,479,'Seventy Transitional Jacket'),(1944,139,0,479,'Jack & Jones'),(1945,75,0,480,'<p>Cut: straight Measurements for size EU M: garment length 74 cm (29″) Collar: hood with drawstring Fastening: full length zip fastener Sleeve: single-button cuffs Exterior pockets: welt pocket(s) with button Lining: lined Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash</p>'),(1946,76,0,480,'<p>Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket. Fastens in the front with snap buttons.</p>'),(1947,85,0,480,'Seventy Transitional Jacket'),(1948,139,0,480,'Jack & Jones'),(1949,75,0,481,'<p>Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1950,76,0,481,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(1951,85,0,481,'Lawrence Grey Rollneck Pullover'),(1952,139,0,481,'Lawrence Grey'),(1953,75,0,482,'<p>Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1954,76,0,482,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(1955,85,0,482,'Lawrence Grey Rollneck Pullover'),(1956,139,0,482,'Lawrence Grey'),(1957,75,0,483,'<p>Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1958,76,0,483,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(1959,85,0,483,'Lawrence Grey Rollneck Pullover'),(1960,139,0,483,'Lawrence Grey'),(1961,75,0,484,'<p>Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1962,76,0,484,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(1963,85,0,484,'Lawrence Grey Rollneck Pullover'),(1964,139,0,484,'Lawrence Grey'),(1965,75,0,485,'<p>Cut: lightly fitted Measurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″) Neckline: crew neck Sleeve: long sleeves Extras: embroidered logo on chest, contrast details, rib knit details Pattern: solid-coloured Material: 100% wool Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1966,76,0,485,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(1967,85,0,485,'Lawrence Grey Rollneck Pullover'),(1968,139,0,485,'Lawrence Grey'),(1969,75,0,486,'<p>Cut: lightly fitted Measurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″) Neckline: crew neck Sleeve: long sleeves Extras: embroidered logo on chest, contrast details, rib knit details Pattern: solid-coloured Material: 100% wool Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1970,76,0,486,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(1971,85,0,486,'Lawrence Grey Rollneck Pullover'),(1972,139,0,486,'Lawrence Grey'),(1973,75,0,487,'<p>Cut: lightly fitted Measurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″) Neckline: crew neck Sleeve: long sleeves Extras: embroidered logo on chest, contrast details, rib knit details Pattern: solid-coloured Material: 100% wool Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1974,76,0,487,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(1975,85,0,487,'Lawrence Grey Rollneck Pullover'),(1976,139,0,487,'Lawrence Grey'),(1977,75,0,488,'<p>Cut: tapered, ribbed trim waistband Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: embroidered logo(s) Pattern: chequered Material: 63% cotton, 27% polyamide, 10% wool Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1978,76,0,488,'<p>Knit sweater with a round neckline, long sleeves and contrast ribbed trims.</p>'),(1979,85,0,488,'Lawrence Grey Rollneck Pullover'),(1980,139,0,488,'Tommy Hilfiger'),(1981,75,0,489,'<p>Cut: tapered, ribbed trim waistband Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: embroidered logo(s) Pattern: chequered Material: 63% cotton, 27% polyamide, 10% wool Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1982,76,0,489,'<p>Knit sweater with a round neckline, long sleeves and contrast ribbed trims.</p>'),(1983,85,0,489,'Lawrence Grey Rollneck Pullover'),(1984,139,0,489,'Tommy Hilfiger'),(1985,75,0,490,'<p>Cut: tapered, ribbed trim waistband Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: embroidered logo(s) Pattern: chequered Material: 63% cotton, 27% polyamide, 10% wool Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1986,76,0,490,'<p>Knit sweater with a round neckline, long sleeves and contrast ribbed trims.</p>'),(1987,85,0,490,'Lawrence Grey Rollneck Pullover'),(1988,139,0,490,'Tommy Hilfiger'),(1989,75,0,491,'<p>Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1990,76,0,491,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(1991,85,0,491,'Lawrence Grey Rollneck Pullover'),(1992,139,0,491,'Gabba'),(1993,75,0,492,'<p>Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1994,76,0,492,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(1995,85,0,492,'Lawrence Grey Rollneck Pullover'),(1996,139,0,492,'Gabba'),(1997,75,0,493,'<p>Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(1998,76,0,493,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(1999,85,0,493,'Lawrence Grey Rollneck Pullover'),(2000,139,0,493,'Gabba'),(2001,75,0,494,'<p>Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 185cm/6′0″ tall.</p>'),(2002,76,0,494,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(2003,85,0,494,'Lawrence Grey Rollneck Pullover'),(2004,139,0,494,'Gabba'),(2005,75,0,495,'<p>Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(2006,76,0,495,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(2007,85,0,495,'Lawrence Grey Rollneck Pullover'),(2008,139,0,495,'Max Tonso'),(2009,75,0,496,'<p>Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(2010,76,0,496,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(2011,85,0,496,'Lawrence Grey Rollneck Pullover'),(2012,139,0,496,'Max Tonso'),(2013,75,0,497,'<p>Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(2014,76,0,497,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(2015,85,0,497,'Lawrence Grey Rollneck Pullover'),(2016,139,0,497,'Max Tonso'),(2017,75,0,498,'<p>Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(2018,76,0,498,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(2019,85,0,498,'Lawrence Grey Rollneck Pullover'),(2020,139,0,498,'Lawrence Grey'),(2021,75,0,499,'<p>Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(2022,76,0,499,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(2023,85,0,499,'Lawrence Grey Rollneck Pullover'),(2024,139,0,499,'Lawrence Grey'),(2025,75,0,500,'<p>Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(2026,76,0,500,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(2027,85,0,500,'Lawrence Grey Rollneck Pullover'),(2028,139,0,500,'Lawrence Grey'),(2029,75,0,501,'<p>Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(2030,76,0,501,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(2031,85,0,501,'Lawrence Grey Rollneck Pullover'),(2032,139,0,501,'81 Hours'),(2033,75,0,502,'<p>Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(2034,76,0,502,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(2035,85,0,502,'Lawrence Grey Rollneck Pullover'),(2036,139,0,502,'81 Hours'),(2037,75,0,503,'<p>Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(2038,76,0,503,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(2039,85,0,503,'Lawrence Grey Rollneck Pullover'),(2040,139,0,503,'81 Hours'),(2041,75,0,504,'<p>Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(2042,76,0,504,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(2043,85,0,504,'Lawrence Grey Rollneck Pullover'),(2044,139,0,504,'Dine\'n\'Dance'),(2045,75,0,505,'<p>Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(2046,76,0,505,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(2047,85,0,505,'Lawrence Grey Rollneck Pullover'),(2048,139,0,505,'Dine\'n\'Dance'),(2049,75,0,506,'<p>Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(2050,76,0,506,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(2051,85,0,506,'Lawrence Grey Rollneck Pullover'),(2052,139,0,506,'Dine\'n\'Dance'),(2053,75,0,507,'<p>Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(2054,76,0,507,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(2055,85,0,507,'Lawrence Grey Rollneck Pullover'),(2056,139,0,507,'Dine\'n\'Dance'),(2057,75,0,508,'<p>Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(2058,76,0,508,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(2059,85,0,508,'Lawrence Grey Rollneck Pullover'),(2060,139,0,508,'Dine\'n\'Dance'),(2061,75,0,509,'<p>Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(2062,76,0,509,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(2063,85,0,509,'Lawrence Grey Rollneck Pullover'),(2064,139,0,509,'Dine\'n\'Dance'),(2065,75,0,510,'<p>Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(2066,76,0,510,'<p>Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail.</p>'),(2067,85,0,510,'UNQ Linen Dress'),(2068,139,0,510,'UNQ'),(2069,75,0,511,'<p>Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(2070,76,0,511,'<p>Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail.</p>'),(2071,85,0,511,'UNQ Linen Dress'),(2072,139,0,511,'UNQ'),(2073,75,0,512,'<p>Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(2074,76,0,512,'<p>Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail.</p>'),(2075,85,0,512,'UNQ Linen Dress'),(2076,139,0,512,'UNQ'),(2077,75,0,513,'<p>Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(2078,76,0,513,'<p>Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt.</p>'),(2079,85,0,513,'UNQ Linen Dress'),(2080,139,0,513,'United Colors of Benetton'),(2081,75,0,514,'<p>Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(2082,76,0,514,'<p>Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt.</p>'),(2083,85,0,514,'UNQ Linen Dress'),(2084,139,0,514,'United Colors of Benetton'),(2085,75,0,515,'<p>Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(2086,76,0,515,'<p>Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt.</p>'),(2087,85,0,515,'UNQ Linen Dress'),(2088,139,0,515,'United Colors of Benetton'),(2089,75,0,516,'<p>Measurements for size EU 95: width approx. 3,3 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: suede</p>\r\n<p>Material: leather</p>'),(2090,76,0,516,'<p>Basic leather belt with a loop and a contrasting shiny buckle.</p>'),(2091,85,0,516,'Taupe Leather Belt'),(2092,139,0,516,'Windsor.'),(2093,75,0,517,'<p>Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(2094,76,0,517,'<p>Short flowing round-neck dress with short sleeves.</p>'),(2095,85,0,517,'UNQ Linen Dress'),(2096,139,0,517,'Weise'),(2097,75,0,518,'<p>Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(2098,76,0,518,'<p>Short flowing round-neck dress with short sleeves.</p>'),(2099,85,0,518,'UNQ Linen Dress'),(2100,139,0,518,'Weise'),(2101,75,0,519,'<p>Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(2102,76,0,519,'<p>Short flowing round-neck dress with short sleeves.</p>'),(2103,85,0,519,'UNQ Linen Dress'),(2104,139,0,519,'Weise'),(2105,75,0,520,'<p>Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(2106,76,0,520,'<p>Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow.</p>'),(2107,85,0,520,'UNQ Linen Dress'),(2108,139,0,520,'Max & Co.'),(2109,75,0,521,'<p>Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(2110,76,0,521,'<p>Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow.</p>'),(2111,85,0,521,'UNQ Linen Dress'),(2112,139,0,521,'Max & Co.'),(2113,75,0,522,'<p>Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(2114,76,0,522,'<p>Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow.</p>'),(2115,85,0,522,'UNQ Linen Dress'),(2116,139,0,522,'Max & Co.'),(2117,75,0,523,'<p>Measurements for size EU 85: width approx. 3,4 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: embossed logo</p>\r\n<p>Material: leather</p>'),(2118,76,0,523,'<p>Contrast leather belt with a loop and a contrasting metal buckle.</p>'),(2119,85,0,523,'Beige Leather Belt'),(2120,139,0,523,'Strellson Premium'),(2121,75,0,524,'<p>Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(2122,76,0,524,'<p>Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back.</p>'),(2123,85,0,524,'UNQ Linen Dress'),(2124,139,0,524,'Just me'),(2125,75,0,525,'<p>Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(2126,76,0,525,'<p>Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back.</p>'),(2127,85,0,525,'UNQ Linen Dress'),(2128,139,0,525,'Just me'),(2129,75,0,526,'<p>Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(2130,76,0,526,'<p>Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back.</p>'),(2131,85,0,526,'UNQ Linen Dress'),(2132,139,0,526,'Just me'),(2133,75,0,527,'<p>Measurements for size EU 90: width approx. 3,5 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: Nubuck leather, partially textured surface</p>\r\n<p>Material: leather</p>'),(2134,76,0,527,'<p>Tommy Hilfiger men’s belt. Our one-size-fits-all belt is as versatile as it is comfortable with its woven design and built-in stretch.</p>'),(2135,85,0,527,'Medium blue Leather Belt'),(2136,139,0,527,'Medium blue'),(2137,75,0,528,'<p>Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(2138,76,0,528,'<p>Dress with generous pleats and slightly flared skirt.</p>'),(2139,85,0,528,'UNQ Linen Dress'),(2140,139,0,528,'Lawrence Grey'),(2141,75,0,529,'<p>Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(2142,76,0,529,'<p>Dress with generous pleats and slightly flared skirt.</p>'),(2143,85,0,529,'UNQ Linen Dress'),(2144,139,0,529,'Lawrence Grey'),(2145,75,0,530,'<p>Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(2146,76,0,530,'<p>Dress with generous pleats and slightly flared skirt.</p>'),(2147,85,0,530,'UNQ Linen Dress'),(2148,139,0,530,'Lawrence Grey'),(2149,85,0,531,'Light grey Leather Belt'),(2150,139,0,531,'B.Belt'),(2151,75,0,532,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(2152,76,0,532,'<p>Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip.</p>'),(2153,85,0,532,'Sequin Dress'),(2154,139,0,532,'Vera Mont'),(2155,75,0,533,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(2156,76,0,533,'<p>Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip.</p>'),(2157,85,0,533,'Sequin Dress'),(2158,139,0,533,'Vera Mont'),(2159,75,0,534,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(2160,76,0,534,'<p>Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip.</p>'),(2161,85,0,534,'Sequin Dress'),(2162,139,0,534,'Vera Mont'),(2163,75,0,535,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(2164,76,0,535,'<p>Round neck knit dress with short flared sleeves and slit.</p>'),(2165,85,0,535,'Sequin Dress'),(2166,139,0,535,'Vera Mont'),(2167,75,0,536,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(2168,76,0,536,'<p>Round neck knit dress with short flared sleeves and slit.</p>'),(2169,85,0,536,'Sequin Dress'),(2170,139,0,536,'Vera Mont'),(2171,75,0,537,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(2172,76,0,537,'<p>Round neck knit dress with short flared sleeves and slit.</p>'),(2173,85,0,537,'Sequin Dress'),(2174,139,0,537,'Vera Mont'),(2175,75,0,538,'<ul>\r\n<li style=\"list-style-type: none;\">\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(2176,76,0,538,'<p>Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front.</p>'),(2177,85,0,538,'Sequin Dress'),(2178,139,0,538,'Lace Dress'),(2179,75,0,539,'<ul>\r\n<li style=\"list-style-type: none;\">\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(2180,76,0,539,'<p>Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front.</p>'),(2181,85,0,539,'Sequin Dress'),(2182,139,0,539,'Lace Dress'),(2183,75,0,540,'<ul>\r\n<li style=\"list-style-type: none;\">\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(2184,76,0,540,'<p>Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front.</p>'),(2185,85,0,540,'Sequin Dress'),(2186,139,0,540,'Lace Dress'),(2187,75,0,541,'<p>Measurements for size EU S: width approx. 1,8 cm (0.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: patent leather</p>\r\n<p>Material: leather</p>'),(2188,76,0,541,'<p>Reversible leather belt with a loop and contrasting metal buckle.</p>'),(2189,85,0,541,'Light blue Leather Belt'),(2190,139,0,541,'Lawrence Grey'),(2191,75,0,542,'<ul>\r\n<li style=\"list-style-type: none;\">\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(2192,76,0,542,'<p>V-neck dress featuring sleeves falling below the elbow with turn-up detail, pleats at the waist, side in-seam pockets and front button fastening.</p>'),(2193,85,0,542,'Sequin Dress'),(2194,139,0,542,'United colors of Benetton'),(2195,75,0,543,'<ul>\r\n<li style=\"list-style-type: none;\">\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(2196,76,0,543,'<p>V-neck dress featuring sleeves falling below the elbow with turn-up detail, pleats at the waist, side in-seam pockets and front button fastening.</p>'),(2197,85,0,543,'Sequin Dress'),(2198,139,0,543,'United colors of Benetton'),(2199,75,0,544,'<p>Measurements for one size: height 27 cm (10.5″), length 36 cm (14″), depth 9 cm (3.5″)</p>\r\n<p>Fastening: overlapping flap with plug closure</p>\r\n<p>Lining material: lined Interior pockets: plug-in and zip pocket(s)</p>\r\n<p>Extras: patent leather, embossed logo, adjustable and detachable shoulder strap, removable address pendant, silver detail(s)</p>\r\n<p>Material: leather</p>\r\n<p>Lining: textile Our model wears a EU OS and is 185cm/6′0″ tall.</p>'),(2200,76,0,544,'<p>Brown nubuck leather tote bag. Mock croc embossed detail on the exterior. The inside features two compartments and a zip pocket. Two front pockets that close with a clip. Two handles.</p>'),(2201,85,0,544,'Leather Business Bag'),(2202,139,0,544,'Marc O\'Polo'),(2203,75,0,545,'<p>Measurements for one size: height 43 cm (17″), length 30 cm (12″), depth 15 cm (6″)</p>\r\n<p>Fastening: two-way zip (open from right and left)</p>\r\n<p>Lining material: lined</p>\r\n<p>Exterior pockets: patch zip pocket / s, zip pocket(s) Interior pockets: plug-in and zip pocket(s), padded laptop compartment</p>\r\n<p>Extras: grained leather, attachment for mounting, logo appliqué(s), padded back, adjustable and padded shoulder straps</p>\r\n<p>Material: leather</p>\r\n<p>Lining: textile Our model wears a EU OS and is 185cm/6′0″ tall.</p>'),(2204,76,0,545,'<p>Basic backpack with zip closure. Double compartment. The inside features a compartment for storing electronic devices and laptops of up to 13 inches (13”).</p>'),(2205,85,0,545,'Leather Backpack'),(2206,139,0,545,'Head'),(2207,75,0,546,'<p>Reference number: E1 BD1 18 03 01</p>\r\n<p>Measurements for one size: height 28 cm (11″), length 36 cm (14″), depth 13 cm (5″)</p>\r\n<p>Fastening: overlapping flap with clasp closure</p>\r\n<p>Lining material: lined Exterior pockets: slit pocket(s)</p>\r\n<p>Interior pockets: plug-in and zip pocket(s) Extras: logo appliqué(s), suede, adjustable and detachable shoulder strap</p>\r\n<p>Material: leather</p>\r\n<p>Lining: textile</p>'),(2208,76,0,546,'<p>The Fauve bag in mini version, enriched with metal details, combines practicality and elegance in its white leather design.</p>'),(2209,85,0,546,'Handbag'),(2210,139,0,546,'Coccinelle'),(2211,75,0,547,'<p>Measurements for one size: height 34 cm (13.5″), length 36 cm (14″), depth 8 cm (3″)</p>\r\n<p>Exterior pockets: zip pocket(s)</p>\r\n<p>Interior pockets: plug-in and zip pocket(s)</p>\r\n<p>Extras: suede, adjustable and detachable shoulder strap, logo appliqué(s)</p>\r\n<p>Lining: textile</p>\r\n<p>Material: leather Our model wears a EU OS and is 179cm/5′10″ tall.</p>'),(2212,76,0,547,'<p>Brown leather bowling bag. Outer zip closure. Its interior features two compartments and one zip pocket. Its exterior features two handles.</p>'),(2213,85,0,547,'Cognac Handbag'),(2214,139,0,547,'Max Mara'),(2215,75,0,548,'Smart tote bag. It has two detachable shoulder straps so that it can be worn as a backpack or carried as a tote. There is an outside compartment for storing the shoulder straps.'),(2216,76,0,548,'Measurements for one size: height 28 cm (11″), length 31 cm (12″), depth 9 cm (3.5″)\r\nFastening: zip\r\nExtras: grained leather, removable logo pendant, detachable shoulder strap\r\nMaterial: leather\r\nLining: suede\r\nOur model wears a EU OS and is 179cm/5′10″ tall.'),(2217,85,0,548,'Medium blue handbag'),(2218,139,0,548,'Escada'),(2219,75,0,549,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2220,76,0,549,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2221,85,0,549,'I Maschi Lace-up Boots'),(2222,139,0,549,'I Maschi'),(2223,75,0,550,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2224,76,0,550,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2225,85,0,550,'I Maschi Lace-up Boots'),(2226,139,0,550,'I Maschi'),(2227,75,0,551,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2228,76,0,551,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2229,85,0,551,'I Maschi Lace-up Boots'),(2230,139,0,551,'I Maschi'),(2231,75,0,552,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2232,76,0,552,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2233,85,0,552,'I Maschi Lace-up Boots'),(2234,139,0,552,'I Maschi'),(2235,75,0,553,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2236,76,0,553,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2237,85,0,553,'I Maschi Lace-up Boots'),(2238,139,0,553,'I Maschi'),(2239,75,0,554,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2240,76,0,554,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2241,85,0,554,'I Maschi Lace-up Boots'),(2242,139,0,554,'I Maschi'),(2243,75,0,555,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2244,76,0,555,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2245,85,0,555,'I Maschi Lace-up Boots'),(2246,139,0,555,'I Maschi'),(2247,75,0,556,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2248,76,0,556,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2249,85,0,556,'I Maschi Lace-up Boots'),(2250,139,0,556,'I Maschi'),(2251,75,0,557,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2252,76,0,557,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2253,85,0,557,'I Maschi Lace-up Boots'),(2254,139,0,557,'I Maschi'),(2255,75,0,558,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2256,76,0,558,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2257,85,0,558,'I Maschi Lace-up Boots'),(2258,139,0,558,'I Maschi'),(2259,75,0,559,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2260,76,0,559,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2261,85,0,559,'I Maschi Lace-up Boots'),(2262,139,0,559,'I Maschi'),(2263,75,0,560,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2264,76,0,560,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2265,85,0,560,'I Maschi Lace-up Boots'),(2266,139,0,560,'I Maschi'),(2267,75,0,561,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2268,76,0,561,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2269,85,0,561,'I Maschi Lace-up Boots'),(2270,139,0,561,'I Maschi'),(2271,75,0,562,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2272,76,0,562,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2273,85,0,562,'I Maschi Lace-up Boots'),(2274,139,0,562,'I Maschi'),(2275,75,0,563,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2276,76,0,563,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2277,85,0,563,'I Maschi Lace-up Boots'),(2278,139,0,563,'I Maschi'),(2279,75,0,564,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2280,76,0,564,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2281,85,0,564,'I Maschi Lace-up Boots'),(2282,139,0,564,'I Maschi'),(2283,75,0,565,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2284,76,0,565,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2285,85,0,565,'I Maschi Lace-up Boots'),(2286,139,0,565,'I Maschi'),(2287,75,0,566,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2288,76,0,566,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2289,85,0,566,'I Maschi Lace-up Boots'),(2290,139,0,566,'I Maschi'),(2291,75,0,567,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2292,76,0,567,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2293,85,0,567,'I Maschi Lace-up Boots'),(2294,139,0,567,'I Maschi'),(2295,75,0,568,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2296,76,0,568,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2297,85,0,568,'I Maschi Lace-up Boots'),(2298,139,0,568,'I Maschi'),(2299,75,0,569,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2300,76,0,569,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2301,85,0,569,'I Maschi Lace-up Boots'),(2302,139,0,569,'I Maschi'),(2303,75,0,570,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2304,76,0,570,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2305,85,0,570,'I Maschi Lace-up Boots'),(2306,139,0,570,'I Maschi'),(2307,75,0,571,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2308,76,0,571,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2309,85,0,571,'I Maschi Lace-up Boots'),(2310,139,0,571,'I Maschi'),(2311,75,0,572,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2312,76,0,572,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2313,85,0,572,'I Maschi Lace-up Boots'),(2314,139,0,572,'I Maschi'),(2315,75,0,573,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2316,76,0,573,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2317,85,0,573,'I Maschi Lace-up Boots'),(2318,139,0,573,'I Maschi'),(2319,75,0,574,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2320,76,0,574,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2321,85,0,574,'I Maschi Lace-up Boots'),(2322,139,0,574,'I Maschi'),(2323,75,0,575,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2324,76,0,575,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2325,85,0,575,'I Maschi Lace-up Boots'),(2326,139,0,575,'I Maschi'),(2327,75,0,576,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2328,76,0,576,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2329,85,0,576,'I Maschi Lace-up Boots'),(2330,139,0,576,'I Maschi'),(2331,75,0,577,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2332,76,0,577,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2333,85,0,577,'I Maschi Lace-up Boots'),(2334,139,0,577,'I Maschi'),(2335,75,0,578,'<p>Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic</p>'),(2336,76,0,578,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi Budapest style pattern leather lace-up boots</span></p>'),(2337,85,0,578,'I Maschi Lace-up Boots'),(2338,139,0,578,'I Maschi'),(2339,75,0,579,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2340,76,0,579,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2341,85,0,579,'Napapijri Grey Sneakers'),(2342,139,0,579,'Adidas'),(2343,75,0,580,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2344,76,0,580,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2345,85,0,580,'Napapijri Grey Sneakers'),(2346,139,0,580,'Adidas'),(2347,75,0,581,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2348,76,0,581,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2349,85,0,581,'Napapijri Grey Sneakers'),(2350,139,0,581,'Adidas'),(2351,75,0,582,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2352,76,0,582,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2353,85,0,582,'Napapijri Grey Sneakers'),(2354,139,0,582,'Adidas'),(2355,75,0,583,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2356,76,0,583,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2357,85,0,583,'Napapijri Grey Sneakers'),(2358,139,0,583,'Adidas'),(2359,75,0,584,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2360,76,0,584,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2361,85,0,584,'Napapijri Grey Sneakers'),(2362,139,0,584,'Adidas'),(2363,75,0,585,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2364,76,0,585,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2365,85,0,585,'Napapijri Grey Sneakers'),(2366,139,0,585,'Adidas'),(2367,75,0,586,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2368,76,0,586,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2369,85,0,586,'Napapijri Grey Sneakers'),(2370,139,0,586,'Adidas'),(2371,75,0,587,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2372,76,0,587,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2373,85,0,587,'Napapijri Grey Sneakers'),(2374,139,0,587,'Adidas'),(2375,75,0,588,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2376,76,0,588,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2377,85,0,588,'Napapijri Grey Sneakers'),(2378,139,0,588,'Adidas'),(2379,75,0,589,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2380,76,0,589,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2381,85,0,589,'Napapijri Grey Sneakers'),(2382,139,0,589,'Adidas'),(2383,75,0,590,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2384,76,0,590,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2385,85,0,590,'Napapijri Grey Sneakers'),(2386,139,0,590,'Adidas'),(2387,75,0,591,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2388,76,0,591,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2389,85,0,591,'Napapijri Grey Sneakers'),(2390,139,0,591,'Adidas'),(2391,75,0,592,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2392,76,0,592,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2393,85,0,592,'Napapijri Grey Sneakers'),(2394,139,0,592,'Adidas'),(2395,75,0,593,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2396,76,0,593,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2397,85,0,593,'Napapijri Grey Sneakers'),(2398,139,0,593,'Adidas'),(2399,75,0,594,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2400,76,0,594,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2401,85,0,594,'Napapijri Grey Sneakers'),(2402,139,0,594,'Adidas'),(2403,75,0,595,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2404,76,0,595,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2405,85,0,595,'Napapijri Grey Sneakers'),(2406,139,0,595,'Adidas'),(2407,75,0,596,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2408,76,0,596,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2409,85,0,596,'Napapijri Grey Sneakers'),(2410,139,0,596,'Adidas'),(2411,75,0,597,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2412,76,0,597,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2413,85,0,597,'Napapijri Grey Sneakers'),(2414,139,0,597,'Adidas'),(2415,75,0,598,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2416,76,0,598,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2417,85,0,598,'Napapijri Grey Sneakers'),(2418,139,0,598,'Adidas'),(2419,75,0,599,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2420,76,0,599,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2421,85,0,599,'Napapijri Grey Sneakers'),(2422,139,0,599,'Adidas'),(2423,75,0,600,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2424,76,0,600,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2425,85,0,600,'Napapijri Grey Sneakers'),(2426,139,0,600,'Adidas'),(2427,75,0,601,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2428,76,0,601,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2429,85,0,601,'Napapijri Grey Sneakers'),(2430,139,0,601,'Adidas'),(2431,75,0,602,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2432,76,0,602,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2433,85,0,602,'Napapijri Grey Sneakers'),(2434,139,0,602,'Adidas'),(2435,75,0,603,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2436,76,0,603,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2437,85,0,603,'Napapijri Grey Sneakers'),(2438,139,0,603,'Adidas'),(2439,75,0,604,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2440,76,0,604,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2441,85,0,604,'Napapijri Grey Sneakers'),(2442,139,0,604,'Adidas'),(2443,75,0,605,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2444,76,0,605,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2445,85,0,605,'Napapijri Grey Sneakers'),(2446,139,0,605,'Adidas'),(2447,75,0,606,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2448,76,0,606,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2449,85,0,606,'Napapijri Grey Sneakers'),(2450,139,0,606,'Adidas'),(2451,75,0,607,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2452,76,0,607,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2453,85,0,607,'Napapijri Grey Sneakers'),(2454,139,0,607,'Adidas'),(2455,75,0,608,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2456,76,0,608,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2457,85,0,608,'Napapijri Grey Sneakers'),(2458,139,0,608,'Adidas'),(2459,75,0,609,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2460,76,0,609,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2461,85,0,609,'Napapijri Grey Sneakers'),(2462,139,0,609,'Adidas'),(2463,75,0,610,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2464,76,0,610,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2465,85,0,610,'Napapijri Grey Sneakers'),(2466,139,0,610,'Adidas'),(2467,75,0,611,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2468,76,0,611,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2469,85,0,611,'Napapijri Grey Sneakers'),(2470,139,0,611,'Adidas'),(2471,75,0,612,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2472,76,0,612,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2473,85,0,612,'Napapijri Grey Sneakers'),(2474,139,0,612,'Adidas'),(2475,75,0,613,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2476,76,0,613,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(2477,85,0,613,'Napapijri Grey Sneakers'),(2478,139,0,613,'Adidas'),(2479,75,0,614,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2480,76,0,614,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2481,85,0,614,'Timberland Lace-ups'),(2482,139,0,614,'Timberland'),(2483,75,0,615,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2484,76,0,615,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2485,85,0,615,'Timberland Lace-ups'),(2486,139,0,615,'Timberland'),(2487,75,0,616,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2488,76,0,616,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2489,85,0,616,'Timberland Lace-ups'),(2490,139,0,616,'Timberland'),(2491,75,0,617,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2492,76,0,617,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2493,85,0,617,'Timberland Lace-ups'),(2494,139,0,617,'Timberland'),(2495,75,0,618,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2496,76,0,618,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2497,85,0,618,'Timberland Lace-ups'),(2498,139,0,618,'Timberland'),(2499,75,0,619,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2500,76,0,619,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2501,85,0,619,'Timberland Lace-ups'),(2502,139,0,619,'Timberland'),(2503,75,0,620,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2504,76,0,620,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2505,85,0,620,'Timberland Lace-ups'),(2506,139,0,620,'Timberland'),(2507,75,0,621,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2508,76,0,621,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2509,85,0,621,'Timberland Lace-ups'),(2510,139,0,621,'Timberland'),(2511,75,0,622,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2512,76,0,622,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2513,85,0,622,'Timberland Lace-ups'),(2514,139,0,622,'Timberland'),(2515,75,0,623,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2516,76,0,623,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2517,85,0,623,'Timberland Lace-ups'),(2518,139,0,623,'Timberland'),(2519,75,0,624,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2520,76,0,624,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2521,85,0,624,'Timberland Lace-ups'),(2522,139,0,624,'Timberland'),(2523,75,0,625,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2524,76,0,625,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2525,85,0,625,'Timberland Lace-ups'),(2526,139,0,625,'Timberland'),(2527,75,0,626,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2528,76,0,626,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2529,85,0,626,'Timberland Lace-ups'),(2530,139,0,626,'Timberland'),(2531,75,0,627,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2532,76,0,627,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2533,85,0,627,'Timberland Lace-ups'),(2534,139,0,627,'Timberland'),(2535,75,0,628,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2536,76,0,628,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2537,85,0,628,'Timberland Lace-ups'),(2538,139,0,628,'Timberland'),(2539,75,0,629,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2540,76,0,629,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2541,85,0,629,'Timberland Lace-ups'),(2542,139,0,629,'Timberland'),(2543,75,0,630,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2544,76,0,630,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2545,85,0,630,'Timberland Lace-ups'),(2546,139,0,630,'Timberland'),(2547,75,0,631,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2548,76,0,631,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2549,85,0,631,'Timberland Lace-ups'),(2550,139,0,631,'Timberland'),(2551,75,0,632,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2552,76,0,632,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2553,85,0,632,'Timberland Lace-ups'),(2554,139,0,632,'Timberland'),(2555,75,0,633,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2556,76,0,633,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2557,85,0,633,'Timberland Lace-ups'),(2558,139,0,633,'Timberland'),(2559,75,0,634,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2560,76,0,634,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2561,85,0,634,'Timberland Lace-ups'),(2562,139,0,634,'Timberland'),(2563,75,0,635,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2564,76,0,635,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2565,85,0,635,'Timberland Lace-ups'),(2566,139,0,635,'Timberland'),(2567,75,0,636,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2568,76,0,636,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2569,85,0,636,'Timberland Lace-ups'),(2570,139,0,636,'Timberland'),(2571,75,0,637,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2572,76,0,637,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2573,85,0,637,'Timberland Lace-ups'),(2574,139,0,637,'Timberland'),(2575,75,0,638,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2576,76,0,638,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2577,85,0,638,'Timberland Lace-ups'),(2578,139,0,638,'Timberland'),(2579,75,0,639,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2580,76,0,639,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2581,85,0,639,'Timberland Lace-ups'),(2582,139,0,639,'Timberland'),(2583,75,0,640,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2584,76,0,640,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2585,85,0,640,'Timberland Lace-ups'),(2586,139,0,640,'Timberland'),(2587,75,0,641,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2588,76,0,641,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2589,85,0,641,'Timberland Lace-ups'),(2590,139,0,641,'Timberland'),(2591,75,0,642,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2592,76,0,642,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2593,85,0,642,'Timberland Lace-ups'),(2594,139,0,642,'Timberland'),(2595,75,0,643,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br />Extras: logo appliqué(s), leather detailing, lacing<br />Outer material: leather, textile<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2596,76,0,643,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(2597,85,0,643,'Timberland Lace-ups'),(2598,139,0,643,'Timberland'),(2599,75,0,644,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2600,76,0,644,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2601,85,0,644,'Cat Lace-up Boots'),(2602,139,0,644,'Cat'),(2603,75,0,645,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2604,76,0,645,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2605,85,0,645,'Cat Lace-up Boots'),(2606,139,0,645,'Cat'),(2607,75,0,646,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2608,76,0,646,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2609,85,0,646,'Cat Lace-up Boots'),(2610,139,0,646,'Cat'),(2611,75,0,647,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2612,76,0,647,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2613,85,0,647,'Cat Lace-up Boots'),(2614,139,0,647,'Cat'),(2615,75,0,648,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2616,76,0,648,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2617,85,0,648,'Cat Lace-up Boots'),(2618,139,0,648,'Cat'),(2619,75,0,649,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2620,76,0,649,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2621,85,0,649,'Cat Lace-up Boots'),(2622,139,0,649,'Cat'),(2623,75,0,650,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2624,76,0,650,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2625,85,0,650,'Cat Lace-up Boots'),(2626,139,0,650,'Cat'),(2627,75,0,651,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2628,76,0,651,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2629,85,0,651,'Cat Lace-up Boots'),(2630,139,0,651,'Cat'),(2631,75,0,652,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2632,76,0,652,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2633,85,0,652,'Cat Lace-up Boots'),(2634,139,0,652,'Cat'),(2635,75,0,653,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2636,76,0,653,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2637,85,0,653,'Cat Lace-up Boots'),(2638,139,0,653,'Cat'),(2639,75,0,654,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2640,76,0,654,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2641,85,0,654,'Cat Lace-up Boots'),(2642,139,0,654,'Cat'),(2643,75,0,655,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2644,76,0,655,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2645,85,0,655,'Cat Lace-up Boots'),(2646,139,0,655,'Cat'),(2647,75,0,656,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2648,76,0,656,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2649,85,0,656,'Cat Lace-up Boots'),(2650,139,0,656,'Cat'),(2651,75,0,657,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2652,76,0,657,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2653,85,0,657,'Cat Lace-up Boots'),(2654,139,0,657,'Cat'),(2655,75,0,658,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2656,76,0,658,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2657,85,0,658,'Cat Lace-up Boots'),(2658,139,0,658,'Cat'),(2659,75,0,659,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2660,76,0,659,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2661,85,0,659,'Cat Lace-up Boots'),(2662,139,0,659,'Cat'),(2663,75,0,660,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2664,76,0,660,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2665,85,0,660,'Cat Lace-up Boots'),(2666,139,0,660,'Cat'),(2667,75,0,661,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2668,76,0,661,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2669,85,0,661,'Cat Lace-up Boots'),(2670,139,0,661,'Cat'),(2671,75,0,662,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2672,76,0,662,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2673,85,0,662,'Cat Lace-up Boots'),(2674,139,0,662,'Cat'),(2675,75,0,663,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2676,76,0,663,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2677,85,0,663,'Cat Lace-up Boots'),(2678,139,0,663,'Cat'),(2679,75,0,664,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2680,76,0,664,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2681,85,0,664,'Cat Lace-up Boots'),(2682,139,0,664,'Cat'),(2683,75,0,665,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2684,76,0,665,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2685,85,0,665,'Cat Lace-up Boots'),(2686,139,0,665,'Cat'),(2687,75,0,666,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2688,76,0,666,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2689,85,0,666,'Cat Lace-up Boots'),(2690,139,0,666,'Cat'),(2691,75,0,667,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2692,76,0,667,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2693,85,0,667,'Cat Lace-up Boots'),(2694,139,0,667,'Cat'),(2695,75,0,668,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2696,76,0,668,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2697,85,0,668,'Cat Lace-up Boots'),(2698,139,0,668,'Cat'),(2699,75,0,669,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2700,76,0,669,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2701,85,0,669,'Cat Lace-up Boots'),(2702,139,0,669,'Cat'),(2703,75,0,670,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2704,76,0,670,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2705,85,0,670,'Cat Lace-up Boots'),(2706,139,0,670,'Cat'),(2707,75,0,671,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2708,76,0,671,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2709,85,0,671,'Cat Lace-up Boots'),(2710,139,0,671,'Cat'),(2711,75,0,672,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2712,76,0,672,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2713,85,0,672,'Cat Lace-up Boots'),(2714,139,0,672,'Cat'),(2715,75,0,673,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Durable and light half boots made out of nubuck leather by Caterpillar brand<br /><br />Extras: Nubuck leather, embossed logo<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2716,76,0,673,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lace-up grey nubuck leather half boots by Cat</span></p>'),(2717,85,0,673,'Cat Lace-up Boots'),(2718,139,0,673,'Cat'),(2719,75,0,674,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2720,76,0,674,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2721,85,0,674,'Boxfresh'),(2722,139,0,674,'Adidas'),(2723,75,0,675,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2724,76,0,675,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2725,85,0,675,'Boxfresh'),(2726,139,0,675,'Adidas'),(2727,75,0,676,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2728,76,0,676,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2729,85,0,676,'Boxfresh'),(2730,139,0,676,'Adidas'),(2731,75,0,677,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2732,76,0,677,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2733,85,0,677,'Boxfresh'),(2734,139,0,677,'Adidas'),(2735,75,0,678,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2736,76,0,678,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2737,85,0,678,'Boxfresh'),(2738,139,0,678,'Adidas'),(2739,75,0,679,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2740,76,0,679,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2741,85,0,679,'Boxfresh'),(2742,139,0,679,'Adidas'),(2743,75,0,680,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2744,76,0,680,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2745,85,0,680,'Boxfresh'),(2746,139,0,680,'Adidas'),(2747,75,0,681,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2748,76,0,681,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2749,85,0,681,'Boxfresh'),(2750,139,0,681,'Adidas'),(2751,75,0,682,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2752,76,0,682,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2753,85,0,682,'Boxfresh'),(2754,139,0,682,'Adidas'),(2755,75,0,683,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2756,76,0,683,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2757,85,0,683,'Boxfresh'),(2758,139,0,683,'Adidas'),(2759,75,0,684,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2760,76,0,684,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2761,85,0,684,'Boxfresh'),(2762,139,0,684,'Adidas'),(2763,75,0,685,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2764,76,0,685,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2765,85,0,685,'Boxfresh'),(2766,139,0,685,'Adidas'),(2767,75,0,686,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2768,76,0,686,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2769,85,0,686,'Boxfresh'),(2770,139,0,686,'Adidas'),(2771,75,0,687,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2772,76,0,687,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2773,85,0,687,'Boxfresh'),(2774,139,0,687,'Adidas'),(2775,75,0,688,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2776,76,0,688,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2777,85,0,688,'Boxfresh'),(2778,139,0,688,'Adidas'),(2779,75,0,689,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2780,76,0,689,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2781,85,0,689,'Boxfresh'),(2782,139,0,689,'Adidas'),(2783,75,0,690,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2784,76,0,690,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2785,85,0,690,'Boxfresh'),(2786,139,0,690,'Adidas'),(2787,75,0,691,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2788,76,0,691,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2789,85,0,691,'Boxfresh'),(2790,139,0,691,'Adidas'),(2791,75,0,692,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2792,76,0,692,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2793,85,0,692,'Boxfresh'),(2794,139,0,692,'Adidas'),(2795,75,0,693,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2796,76,0,693,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2797,85,0,693,'Boxfresh'),(2798,139,0,693,'Adidas'),(2799,75,0,694,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2800,76,0,694,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2801,85,0,694,'Boxfresh'),(2802,139,0,694,'Adidas'),(2803,75,0,695,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2804,76,0,695,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2805,85,0,695,'Boxfresh'),(2806,139,0,695,'Adidas'),(2807,75,0,696,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2808,76,0,696,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2809,85,0,696,'Boxfresh'),(2810,139,0,696,'Adidas'),(2811,75,0,697,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2812,76,0,697,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2813,85,0,697,'Boxfresh'),(2814,139,0,697,'Adidas'),(2815,75,0,698,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low sole half boots made of soft dark blue lether by Boxfresh.<br /><br />Extras: suede, logo appliqué(s)<br />Outer material: leather<br />Inner material: textile<br />Outsole: synthetic</span></p>'),(2816,76,0,698,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh dark blue leather half boots</span></p>'),(2817,85,0,698,'Boxfresh'),(2818,139,0,698,'Adidas'),(2819,75,0,699,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(2820,76,0,699,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(2821,85,0,699,'J.B by Jean Biani Sneakers'),(2822,139,0,699,'Adidas'),(2823,75,0,700,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(2824,76,0,700,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(2825,85,0,700,'J.B by Jean Biani Sneakers'),(2826,139,0,700,'Adidas'),(2827,75,0,701,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(2828,76,0,701,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(2829,85,0,701,'J.B by Jean Biani Sneakers'),(2830,139,0,701,'Adidas'),(2831,75,0,702,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(2832,76,0,702,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(2833,85,0,702,'J.B by Jean Biani Sneakers'),(2834,139,0,702,'Adidas'),(2835,75,0,703,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(2836,76,0,703,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(2837,85,0,703,'J.B by Jean Biani Sneakers'),(2838,139,0,703,'Adidas'),(2839,75,0,704,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(2840,76,0,704,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(2841,85,0,704,'J.B by Jean Biani Sneakers'),(2842,139,0,704,'Adidas'),(2843,75,0,705,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(2844,76,0,705,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(2845,85,0,705,'J.B by Jean Biani Sneakers'),(2846,139,0,705,'Adidas'),(2847,75,0,706,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(2848,76,0,706,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(2849,85,0,706,'J.B by Jean Biani Sneakers'),(2850,139,0,706,'Adidas'),(2851,75,0,707,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(2852,76,0,707,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(2853,85,0,707,'J.B by Jean Biani Sneakers'),(2854,139,0,707,'Adidas'),(2855,75,0,708,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(2856,76,0,708,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(2857,85,0,708,'J.B by Jean Biani Sneakers'),(2858,139,0,708,'Adidas'),(2859,75,0,709,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(2860,76,0,709,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(2861,85,0,709,'J.B by Jean Biani Sneakers'),(2862,139,0,709,'Adidas'),(2863,75,0,710,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(2864,76,0,710,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(2865,85,0,710,'J.B by Jean Biani Sneakers'),(2866,139,0,710,'Adidas'),(2867,75,0,711,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(2868,76,0,711,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(2869,85,0,711,'J.B by Jean Biani Sneakers'),(2870,139,0,711,'Adidas'),(2871,75,0,712,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(2872,76,0,712,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(2873,85,0,712,'J.B by Jean Biani Sneakers'),(2874,139,0,712,'Adidas'),(2875,75,0,713,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(2876,76,0,713,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(2877,85,0,713,'J.B by Jean Biani Sneakers'),(2878,139,0,713,'Adidas'),(2879,75,0,714,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2880,76,0,714,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2881,85,0,714,'Grey Sweat Pants'),(2882,139,0,714,'Lawrence Grey'),(2883,75,0,715,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2884,76,0,715,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2885,85,0,715,'Grey Sweat Pants'),(2886,139,0,715,'Lawrence Grey'),(2887,75,0,716,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2888,76,0,716,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2889,85,0,716,'Grey Sweat Pants'),(2890,139,0,716,'Lawrence Grey'),(2891,75,0,717,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2892,76,0,717,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2893,85,0,717,'Grey Sweat Pants'),(2894,139,0,717,'Lawrence Grey'),(2895,75,0,718,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2896,76,0,718,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2897,85,0,718,'Grey Sweat Pants'),(2898,139,0,718,'Lawrence Grey'),(2899,75,0,719,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2900,76,0,719,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2901,85,0,719,'Grey Sweat Pants'),(2902,139,0,719,'Lawrence Grey'),(2903,75,0,720,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2904,76,0,720,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2905,85,0,720,'Grey Sweat Pants'),(2906,139,0,720,'Lawrence Grey'),(2907,75,0,721,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2908,76,0,721,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2909,85,0,721,'Grey Sweat Pants'),(2910,139,0,721,'Lawrence Grey'),(2911,75,0,722,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2912,76,0,722,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2913,85,0,722,'Grey Sweat Pants'),(2914,139,0,722,'Lawrence Grey'),(2915,75,0,723,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2916,76,0,723,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2917,85,0,723,'Grey Sweat Pants'),(2918,139,0,723,'Lawrence Grey'),(2919,75,0,724,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2920,76,0,724,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2921,85,0,724,'Grey Sweat Pants'),(2922,139,0,724,'Lawrence Grey'),(2923,75,0,725,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2924,76,0,725,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2925,85,0,725,'Grey Sweat Pants'),(2926,139,0,725,'Lawrence Grey'),(2927,75,0,726,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2928,76,0,726,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2929,85,0,726,'Grey Sweat Pants'),(2930,139,0,726,'Lawrence Grey'),(2931,75,0,727,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2932,76,0,727,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2933,85,0,727,'Grey Sweat Pants'),(2934,139,0,727,'Lawrence Grey'),(2935,75,0,728,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2936,76,0,728,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2937,85,0,728,'Grey Sweat Pants'),(2938,139,0,728,'Lawrence Grey'),(2939,75,0,729,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2940,76,0,729,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2941,85,0,729,'Grey Sweat Pants'),(2942,139,0,729,'Lawrence Grey'),(2943,75,0,730,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2944,76,0,730,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2945,85,0,730,'Grey Sweat Pants'),(2946,139,0,730,'Lawrence Grey'),(2947,75,0,731,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2948,76,0,731,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2949,85,0,731,'Grey Sweat Pants'),(2950,139,0,731,'Lawrence Grey'),(2951,75,0,732,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2952,76,0,732,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2953,85,0,732,'Grey Sweat Pants'),(2954,139,0,732,'Lawrence Grey'),(2955,75,0,733,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(2956,76,0,733,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(2957,85,0,733,'Grey Sweat Pants'),(2958,139,0,733,'Lawrence Grey'),(2959,75,0,734,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(2960,76,0,734,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(2961,85,0,734,'Ugg Freamon Wp'),(2962,139,0,734,'Ugg'),(2963,75,0,735,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(2964,76,0,735,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(2965,85,0,735,'Ugg Freamon Wp'),(2966,139,0,735,'Ugg'),(2967,75,0,736,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(2968,76,0,736,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(2969,85,0,736,'Ugg Freamon Wp'),(2970,139,0,736,'Ugg'),(2971,75,0,737,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(2972,76,0,737,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(2973,85,0,737,'Ugg Freamon Wp'),(2974,139,0,737,'Ugg'),(2975,75,0,738,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(2976,76,0,738,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(2977,85,0,738,'Ugg Freamon Wp'),(2978,139,0,738,'Ugg'),(2979,75,0,739,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(2980,76,0,739,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(2981,85,0,739,'Ugg Freamon Wp'),(2982,139,0,739,'Ugg'),(2983,75,0,740,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(2984,76,0,740,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(2985,85,0,740,'Ugg Freamon Wp'),(2986,139,0,740,'Ugg'),(2987,75,0,741,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(2988,76,0,741,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(2989,85,0,741,'Ugg Freamon Wp'),(2990,139,0,741,'Ugg'),(2991,75,0,742,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(2992,76,0,742,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(2993,85,0,742,'Ugg Freamon Wp'),(2994,139,0,742,'Ugg'),(2995,75,0,743,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(2996,76,0,743,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(2997,85,0,743,'Ugg Freamon Wp'),(2998,139,0,743,'Ugg'),(2999,75,0,744,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(3000,76,0,744,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(3001,85,0,744,'Ugg Freamon Wp'),(3002,139,0,744,'Ugg'),(3003,75,0,745,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(3004,76,0,745,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(3005,85,0,745,'Ugg Freamon Wp'),(3006,139,0,745,'Ugg'),(3007,75,0,746,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(3008,76,0,746,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(3009,85,0,746,'Ugg Freamon Wp'),(3010,139,0,746,'Ugg'),(3011,75,0,747,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(3012,76,0,747,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(3013,85,0,747,'Ugg Freamon Wp'),(3014,139,0,747,'Ugg'),(3015,75,0,748,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(3016,76,0,748,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(3017,85,0,748,'Ugg Freamon Wp'),(3018,139,0,748,'Ugg'),(3019,75,0,749,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3020,76,0,749,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3021,85,0,749,'Black Knitted Pants'),(3022,139,0,749,'Lawrence Grey'),(3023,75,0,750,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3024,76,0,750,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3025,85,0,750,'Black Knitted Pants'),(3026,139,0,750,'Lawrence Grey'),(3027,75,0,751,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3028,76,0,751,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3029,85,0,751,'Black Knitted Pants'),(3030,139,0,751,'Lawrence Grey'),(3031,75,0,752,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3032,76,0,752,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3033,85,0,752,'Black Knitted Pants'),(3034,139,0,752,'Lawrence Grey'),(3035,75,0,753,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3036,76,0,753,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3037,85,0,753,'Black Knitted Pants'),(3038,139,0,753,'Lawrence Grey'),(3039,75,0,754,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3040,76,0,754,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3041,85,0,754,'Black Knitted Pants'),(3042,139,0,754,'Lawrence Grey'),(3043,75,0,755,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3044,76,0,755,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3045,85,0,755,'Black Knitted Pants'),(3046,139,0,755,'Lawrence Grey'),(3047,75,0,756,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3048,76,0,756,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3049,85,0,756,'Black Knitted Pants'),(3050,139,0,756,'Lawrence Grey'),(3051,75,0,757,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3052,76,0,757,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3053,85,0,757,'Black Knitted Pants'),(3054,139,0,757,'Lawrence Grey'),(3055,75,0,758,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3056,76,0,758,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3057,85,0,758,'Black Knitted Pants'),(3058,139,0,758,'Lawrence Grey'),(3059,75,0,759,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3060,76,0,759,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3061,85,0,759,'Black Knitted Pants'),(3062,139,0,759,'Lawrence Grey'),(3063,75,0,760,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3064,76,0,760,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3065,85,0,760,'Black Knitted Pants'),(3066,139,0,760,'Lawrence Grey'),(3067,75,0,761,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3068,76,0,761,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3069,85,0,761,'Black Knitted Pants'),(3070,139,0,761,'Lawrence Grey'),(3071,75,0,762,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3072,76,0,762,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3073,85,0,762,'Black Knitted Pants'),(3074,139,0,762,'Lawrence Grey'),(3075,75,0,763,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3076,76,0,763,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3077,85,0,763,'Black Knitted Pants'),(3078,139,0,763,'Lawrence Grey'),(3079,75,0,764,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3080,76,0,764,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3081,85,0,764,'Black Knitted Pants'),(3082,139,0,764,'Lawrence Grey'),(3083,75,0,765,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3084,76,0,765,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3085,85,0,765,'Black Knitted Pants'),(3086,139,0,765,'Lawrence Grey'),(3087,75,0,766,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3088,76,0,766,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3089,85,0,766,'Black Knitted Pants'),(3090,139,0,766,'Lawrence Grey'),(3091,75,0,767,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3092,76,0,767,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3093,85,0,767,'Black Knitted Pants'),(3094,139,0,767,'Lawrence Grey'),(3095,75,0,768,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(3096,76,0,768,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(3097,85,0,768,'Black Knitted Pants'),(3098,139,0,768,'Lawrence Grey'),(3099,75,0,769,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3100,76,0,769,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3101,85,0,769,'Camel Dress Trousers – Glenn'),(3102,139,0,769,'Jack & Jones'),(3103,75,0,770,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3104,76,0,770,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3105,85,0,770,'Camel Dress Trousers – Glenn'),(3106,139,0,770,'Jack & Jones'),(3107,75,0,771,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3108,76,0,771,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3109,85,0,771,'Camel Dress Trousers – Glenn'),(3110,139,0,771,'Jack & Jones'),(3111,75,0,772,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3112,76,0,772,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3113,85,0,772,'Camel Dress Trousers – Glenn'),(3114,139,0,772,'Jack & Jones'),(3115,75,0,773,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3116,76,0,773,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3117,85,0,773,'Camel Dress Trousers – Glenn'),(3118,139,0,773,'Jack & Jones'),(3119,75,0,774,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3120,76,0,774,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3121,85,0,774,'Camel Dress Trousers – Glenn'),(3122,139,0,774,'Jack & Jones'),(3123,75,0,775,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3124,76,0,775,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3125,85,0,775,'Camel Dress Trousers – Glenn'),(3126,139,0,775,'Jack & Jones'),(3127,75,0,776,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3128,76,0,776,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3129,85,0,776,'Camel Dress Trousers – Glenn'),(3130,139,0,776,'Jack & Jones'),(3131,75,0,777,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3132,76,0,777,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3133,85,0,777,'Camel Dress Trousers – Glenn'),(3134,139,0,777,'Jack & Jones'),(3135,75,0,778,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3136,76,0,778,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3137,85,0,778,'Camel Dress Trousers – Glenn'),(3138,139,0,778,'Jack & Jones'),(3139,75,0,779,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3140,76,0,779,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3141,85,0,779,'Camel Dress Trousers – Glenn'),(3142,139,0,779,'Jack & Jones'),(3143,75,0,780,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3144,76,0,780,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3145,85,0,780,'Camel Dress Trousers – Glenn'),(3146,139,0,780,'Jack & Jones'),(3147,75,0,781,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3148,76,0,781,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3149,85,0,781,'Camel Dress Trousers – Glenn'),(3150,139,0,781,'Jack & Jones'),(3151,75,0,782,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3152,76,0,782,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3153,85,0,782,'Camel Dress Trousers – Glenn'),(3154,139,0,782,'Jack & Jones'),(3155,75,0,783,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3156,76,0,783,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3157,85,0,783,'Camel Dress Trousers – Glenn'),(3158,139,0,783,'Jack & Jones'),(3159,75,0,784,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3160,76,0,784,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3161,85,0,784,'Camel Dress Trousers – Glenn'),(3162,139,0,784,'Jack & Jones'),(3163,75,0,785,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3164,76,0,785,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3165,85,0,785,'Camel Dress Trousers – Glenn'),(3166,139,0,785,'Jack & Jones'),(3167,75,0,786,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3168,76,0,786,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3169,85,0,786,'Camel Dress Trousers – Glenn'),(3170,139,0,786,'Jack & Jones'),(3171,75,0,787,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3172,76,0,787,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3173,85,0,787,'Camel Dress Trousers – Glenn'),(3174,139,0,787,'Jack & Jones'),(3175,75,0,788,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3176,76,0,788,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(3177,85,0,788,'Camel Dress Trousers – Glenn'),(3178,139,0,788,'Jack & Jones'),(3179,75,0,789,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3180,76,0,789,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(3181,85,0,789,'Tan Corduroy Trousers'),(3182,139,0,789,'Tommy Hilfiger'),(3183,75,0,790,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3184,76,0,790,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(3185,85,0,790,'Tan Corduroy Trousers'),(3186,139,0,790,'Tommy Hilfiger'),(3187,75,0,791,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3188,76,0,791,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(3189,85,0,791,'Tan Corduroy Trousers'),(3190,139,0,791,'Tommy Hilfiger'),(3191,75,0,792,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3192,76,0,792,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(3193,85,0,792,'Tan Corduroy Trousers'),(3194,139,0,792,'Tommy Hilfiger'),(3195,75,0,793,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3196,76,0,793,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(3197,85,0,793,'Tan Corduroy Trousers'),(3198,139,0,793,'Tommy Hilfiger'),(3199,75,0,794,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3200,76,0,794,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(3201,85,0,794,'Tan Corduroy Trousers'),(3202,139,0,794,'Tommy Hilfiger'),(3203,75,0,795,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3204,76,0,795,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(3205,85,0,795,'Tan Corduroy Trousers'),(3206,139,0,795,'Tommy Hilfiger'),(3207,75,0,796,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3208,76,0,796,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(3209,85,0,796,'Tan Corduroy Trousers'),(3210,139,0,796,'Tommy Hilfiger'),(3211,75,0,797,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3212,76,0,797,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(3213,85,0,797,'Tan Corduroy Trousers'),(3214,139,0,797,'Tommy Hilfiger'),(3215,75,0,798,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3216,76,0,798,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(3217,85,0,798,'Tan Corduroy Trousers'),(3218,139,0,798,'Tommy Hilfiger'),(3219,75,0,799,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3220,76,0,799,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(3221,85,0,799,'Tan Corduroy Trousers'),(3222,139,0,799,'Tommy Hilfiger'),(3223,75,0,800,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3224,76,0,800,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(3225,85,0,800,'Tan Corduroy Trousers'),(3226,139,0,800,'Tommy Hilfiger'),(3227,75,0,801,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3228,76,0,801,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(3229,85,0,801,'Tan Corduroy Trousers'),(3230,139,0,801,'Tommy Hilfiger'),(3231,75,0,802,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3232,76,0,802,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(3233,85,0,802,'Tan Corduroy Trousers'),(3234,139,0,802,'Tommy Hilfiger'),(3235,75,0,803,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3236,76,0,803,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(3237,85,0,803,'Tan Corduroy Trousers'),(3238,139,0,803,'Tommy Hilfiger'),(3239,75,0,804,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3240,76,0,804,'<p>Black Chino by Lawrence Grey</p>'),(3241,85,0,804,'Black Chino'),(3242,139,0,804,'Lawrence Grey'),(3243,75,0,805,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3244,76,0,805,'<p>Black Chino by Lawrence Grey</p>'),(3245,85,0,805,'Black Chino'),(3246,139,0,805,'Lawrence Grey'),(3247,75,0,806,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3248,76,0,806,'<p>Black Chino by Lawrence Grey</p>'),(3249,85,0,806,'Black Chino'),(3250,139,0,806,'Lawrence Grey'),(3251,75,0,807,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3252,76,0,807,'<p>Black Chino by Lawrence Grey</p>'),(3253,85,0,807,'Black Chino'),(3254,139,0,807,'Lawrence Grey'),(3255,75,0,808,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3256,76,0,808,'<p>Black Chino by Lawrence Grey</p>'),(3257,85,0,808,'Black Chino'),(3258,139,0,808,'Lawrence Grey'),(3259,75,0,809,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3260,76,0,809,'<p>Black Chino by Lawrence Grey</p>'),(3261,85,0,809,'Black Chino'),(3262,139,0,809,'Lawrence Grey');
INSERT INTO `catalog_product_entity_text` VALUES (3263,75,0,810,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3264,76,0,810,'<p>Black Chino by Lawrence Grey</p>'),(3265,85,0,810,'Black Chino'),(3266,139,0,810,'Lawrence Grey'),(3267,75,0,811,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3268,76,0,811,'<p>Black Chino by Lawrence Grey</p>'),(3269,85,0,811,'Black Chino'),(3270,139,0,811,'Lawrence Grey'),(3271,75,0,812,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3272,76,0,812,'<p>Black Chino by Lawrence Grey</p>'),(3273,85,0,812,'Black Chino'),(3274,139,0,812,'Lawrence Grey'),(3275,75,0,813,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3276,76,0,813,'<p>Black Chino by Lawrence Grey</p>'),(3277,85,0,813,'Black Chino'),(3278,139,0,813,'Lawrence Grey'),(3279,75,0,814,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3280,76,0,814,'<p>Black Chino by Lawrence Grey</p>'),(3281,85,0,814,'Black Chino'),(3282,139,0,814,'Lawrence Grey'),(3283,75,0,815,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3284,76,0,815,'<p>Black Chino by Lawrence Grey</p>'),(3285,85,0,815,'Black Chino'),(3286,139,0,815,'Lawrence Grey'),(3287,75,0,816,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3288,76,0,816,'<p>Black Chino by Lawrence Grey</p>'),(3289,85,0,816,'Black Chino'),(3290,139,0,816,'Lawrence Grey'),(3291,75,0,817,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3292,76,0,817,'<p>Black Chino by Lawrence Grey</p>'),(3293,85,0,817,'Black Chino'),(3294,139,0,817,'Lawrence Grey'),(3295,75,0,818,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3296,76,0,818,'<p>Black Chino by Lawrence Grey</p>'),(3297,85,0,818,'Black Chino'),(3298,139,0,818,'Lawrence Grey'),(3299,75,0,819,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3300,76,0,819,'<p>Black Chino by Lawrence Grey</p>'),(3301,85,0,819,'Black Chino'),(3302,139,0,819,'Lawrence Grey'),(3303,75,0,820,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3304,76,0,820,'<p>Black Chino by Lawrence Grey</p>'),(3305,85,0,820,'Black Chino'),(3306,139,0,820,'Lawrence Grey'),(3307,75,0,821,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3308,76,0,821,'<p>Black Chino by Lawrence Grey</p>'),(3309,85,0,821,'Black Chino'),(3310,139,0,821,'Lawrence Grey'),(3311,75,0,822,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3312,76,0,822,'<p>Black Chino by Lawrence Grey</p>'),(3313,85,0,822,'Black Chino'),(3314,139,0,822,'Lawrence Grey'),(3315,75,0,823,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3316,76,0,823,'<p>Black Chino by Lawrence Grey</p>'),(3317,85,0,823,'Black Chino'),(3318,139,0,823,'Lawrence Grey'),(3319,75,0,824,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3320,76,0,824,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3321,85,0,824,'Lawrence Grey Rollneck Pullover'),(3322,139,0,824,'Lawrence Grey'),(3323,75,0,825,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3324,76,0,825,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3325,85,0,825,'Lawrence Grey Rollneck Pullover'),(3326,139,0,825,'Lawrence Grey'),(3327,75,0,826,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3328,76,0,826,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3329,85,0,826,'Lawrence Grey Rollneck Pullover'),(3330,139,0,826,'Lawrence Grey'),(3331,75,0,827,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3332,76,0,827,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3333,85,0,827,'Lawrence Grey Rollneck Pullover'),(3334,139,0,827,'Lawrence Grey'),(3335,75,0,828,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3336,76,0,828,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3337,85,0,828,'Lawrence Grey Rollneck Pullover'),(3338,139,0,828,'Lawrence Grey'),(3339,75,0,829,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3340,76,0,829,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3341,85,0,829,'Lawrence Grey Rollneck Pullover'),(3342,139,0,829,'Lawrence Grey'),(3343,75,0,830,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3344,76,0,830,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3345,85,0,830,'Lawrence Grey Rollneck Pullover'),(3346,139,0,830,'Lawrence Grey'),(3347,75,0,831,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3348,76,0,831,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3349,85,0,831,'Lawrence Grey Rollneck Pullover'),(3350,139,0,831,'Lawrence Grey'),(3351,75,0,832,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3352,76,0,832,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3353,85,0,832,'Lawrence Grey Rollneck Pullover'),(3354,139,0,832,'Lawrence Grey'),(3355,75,0,833,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3356,76,0,833,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3357,85,0,833,'Lawrence Grey Rollneck Pullover'),(3358,139,0,833,'Lawrence Grey'),(3359,75,0,834,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3360,76,0,834,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3361,85,0,834,'Lawrence Grey Rollneck Pullover'),(3362,139,0,834,'Lawrence Grey'),(3363,75,0,835,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3364,76,0,835,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3365,85,0,835,'Lawrence Grey Rollneck Pullover'),(3366,139,0,835,'Lawrence Grey'),(3367,75,0,836,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3368,76,0,836,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3369,85,0,836,'Lawrence Grey Rollneck Pullover'),(3370,139,0,836,'Lawrence Grey'),(3371,75,0,837,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3372,76,0,837,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3373,85,0,837,'Lawrence Grey Rollneck Pullover'),(3374,139,0,837,'Lawrence Grey'),(3375,75,0,838,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3376,76,0,838,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3377,85,0,838,'Lawrence Grey Rollneck Pullover'),(3378,139,0,838,'Lawrence Grey'),(3379,75,0,839,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3380,76,0,839,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3381,85,0,839,'Lawrence Grey Rollneck Pullover'),(3382,139,0,839,'Lawrence Grey'),(3383,75,0,840,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3384,76,0,840,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3385,85,0,840,'Lawrence Grey Rollneck Pullover'),(3386,139,0,840,'Lawrence Grey'),(3387,75,0,841,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3388,76,0,841,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3389,85,0,841,'Lawrence Grey Rollneck Pullover'),(3390,139,0,841,'Lawrence Grey'),(3391,75,0,842,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3392,76,0,842,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3393,85,0,842,'Lawrence Grey Rollneck Pullover'),(3394,139,0,842,'Lawrence Grey'),(3395,75,0,843,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3396,76,0,843,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(3397,85,0,843,'Lawrence Grey Rollneck Pullover'),(3398,139,0,843,'Lawrence Grey'),(3399,75,0,844,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3400,76,0,844,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3401,85,0,844,'Navy Chino'),(3402,139,0,844,'Lawrence Grey'),(3403,75,0,845,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3404,76,0,845,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3405,85,0,845,'Navy Chino'),(3406,139,0,845,'Lawrence Grey'),(3407,75,0,846,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3408,76,0,846,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3409,85,0,846,'Navy Chino'),(3410,139,0,846,'Lawrence Grey'),(3411,75,0,847,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3412,76,0,847,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3413,85,0,847,'Navy Chino'),(3414,139,0,847,'Lawrence Grey'),(3415,75,0,848,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3416,76,0,848,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3417,85,0,848,'Navy Chino'),(3418,139,0,848,'Lawrence Grey'),(3419,75,0,849,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3420,76,0,849,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3421,85,0,849,'Navy Chino'),(3422,139,0,849,'Lawrence Grey'),(3423,75,0,850,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3424,76,0,850,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3425,85,0,850,'Navy Chino'),(3426,139,0,850,'Lawrence Grey'),(3427,75,0,851,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3428,76,0,851,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3429,85,0,851,'Navy Chino'),(3430,139,0,851,'Lawrence Grey'),(3431,75,0,852,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3432,76,0,852,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3433,85,0,852,'Navy Chino'),(3434,139,0,852,'Lawrence Grey'),(3435,75,0,853,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3436,76,0,853,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3437,85,0,853,'Navy Chino'),(3438,139,0,853,'Lawrence Grey'),(3439,75,0,854,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3440,76,0,854,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3441,85,0,854,'Navy Chino'),(3442,139,0,854,'Lawrence Grey'),(3443,75,0,855,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3444,76,0,855,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3445,85,0,855,'Navy Chino'),(3446,139,0,855,'Lawrence Grey'),(3447,75,0,856,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3448,76,0,856,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3449,85,0,856,'Navy Chino'),(3450,139,0,856,'Lawrence Grey'),(3451,75,0,857,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3452,76,0,857,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3453,85,0,857,'Navy Chino'),(3454,139,0,857,'Lawrence Grey'),(3455,75,0,858,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3456,76,0,858,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3457,85,0,858,'Navy Chino'),(3458,139,0,858,'Lawrence Grey'),(3459,75,0,859,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3460,76,0,859,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3461,85,0,859,'Navy Chino'),(3462,139,0,859,'Lawrence Grey'),(3463,75,0,860,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3464,76,0,860,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3465,85,0,860,'Navy Chino'),(3466,139,0,860,'Lawrence Grey'),(3467,75,0,861,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3468,76,0,861,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3469,85,0,861,'Navy Chino'),(3470,139,0,861,'Lawrence Grey'),(3471,75,0,862,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3472,76,0,862,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3473,85,0,862,'Navy Chino'),(3474,139,0,862,'Lawrence Grey'),(3475,75,0,863,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3476,76,0,863,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(3477,85,0,863,'Navy Chino'),(3478,139,0,863,'Lawrence Grey'),(3479,75,0,864,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3480,76,0,864,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(3481,85,0,864,'Dark Grey Chino'),(3482,139,0,864,'Lawrence Grey'),(3483,75,0,865,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3484,76,0,865,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(3485,85,0,865,'Dark Grey Chino'),(3486,139,0,865,'Lawrence Grey'),(3487,75,0,866,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3488,76,0,866,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(3489,85,0,866,'Dark Grey Chino'),(3490,139,0,866,'Lawrence Grey'),(3491,75,0,867,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3492,76,0,867,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(3493,85,0,867,'Dark Grey Chino'),(3494,139,0,867,'Lawrence Grey'),(3495,75,0,868,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3496,76,0,868,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(3497,85,0,868,'Dark Grey Chino'),(3498,139,0,868,'Lawrence Grey'),(3499,75,0,869,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3500,76,0,869,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(3501,85,0,869,'Dark Grey Chino'),(3502,139,0,869,'Lawrence Grey'),(3503,75,0,870,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3504,76,0,870,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(3505,85,0,870,'Dark Grey Chino'),(3506,139,0,870,'Lawrence Grey'),(3507,75,0,871,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3508,76,0,871,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(3509,85,0,871,'Dark Grey Chino'),(3510,139,0,871,'Lawrence Grey'),(3511,75,0,872,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3512,76,0,872,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(3513,85,0,872,'Dark Grey Chino'),(3514,139,0,872,'Lawrence Grey'),(3515,75,0,873,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3516,76,0,873,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(3517,85,0,873,'Dark Grey Chino'),(3518,139,0,873,'Lawrence Grey'),(3519,75,0,874,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3520,76,0,874,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(3521,85,0,874,'Dark Grey Chino'),(3522,139,0,874,'Lawrence Grey'),(3523,75,0,875,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3524,76,0,875,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(3525,85,0,875,'Dark Grey Chino'),(3526,139,0,875,'Lawrence Grey'),(3527,75,0,876,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3528,76,0,876,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(3529,85,0,876,'Dark Grey Chino'),(3530,139,0,876,'Lawrence Grey'),(3531,75,0,877,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3532,76,0,877,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(3533,85,0,877,'Dark Grey Chino'),(3534,139,0,877,'Lawrence Grey'),(3535,75,0,878,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(3536,76,0,878,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(3537,85,0,878,'Dark Grey Chino'),(3538,139,0,878,'Lawrence Grey'),(3539,75,0,879,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3540,76,0,879,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3541,85,0,879,'Tommy Hilfiger'),(3542,139,0,879,'Tommy Hilfiger'),(3543,75,0,880,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3544,76,0,880,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3545,85,0,880,'Tommy Hilfiger'),(3546,139,0,880,'Tommy Hilfiger'),(3547,75,0,881,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3548,76,0,881,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3549,85,0,881,'Tommy Hilfiger'),(3550,139,0,881,'Tommy Hilfiger'),(3551,75,0,882,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3552,76,0,882,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3553,85,0,882,'Tommy Hilfiger'),(3554,139,0,882,'Tommy Hilfiger'),(3555,75,0,883,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3556,76,0,883,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3557,85,0,883,'Tommy Hilfiger'),(3558,139,0,883,'Tommy Hilfiger'),(3559,75,0,884,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3560,76,0,884,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3561,85,0,884,'Tommy Hilfiger'),(3562,139,0,884,'Tommy Hilfiger'),(3563,75,0,885,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3564,76,0,885,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3565,85,0,885,'Tommy Hilfiger'),(3566,139,0,885,'Tommy Hilfiger'),(3567,75,0,886,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3568,76,0,886,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3569,85,0,886,'Tommy Hilfiger'),(3570,139,0,886,'Tommy Hilfiger'),(3571,75,0,887,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3572,76,0,887,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3573,85,0,887,'Tommy Hilfiger'),(3574,139,0,887,'Tommy Hilfiger'),(3575,75,0,888,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3576,76,0,888,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3577,85,0,888,'Tommy Hilfiger'),(3578,139,0,888,'Tommy Hilfiger'),(3579,75,0,889,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3580,76,0,889,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3581,85,0,889,'Tommy Hilfiger'),(3582,139,0,889,'Tommy Hilfiger'),(3583,75,0,890,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3584,76,0,890,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3585,85,0,890,'Tommy Hilfiger'),(3586,139,0,890,'Tommy Hilfiger'),(3587,75,0,891,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3588,76,0,891,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3589,85,0,891,'Tommy Hilfiger'),(3590,139,0,891,'Tommy Hilfiger'),(3591,75,0,892,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3592,76,0,892,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3593,85,0,892,'Tommy Hilfiger'),(3594,139,0,892,'Tommy Hilfiger'),(3595,75,0,893,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3596,76,0,893,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3597,85,0,893,'Tommy Hilfiger'),(3598,139,0,893,'Tommy Hilfiger'),(3599,75,0,894,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3600,76,0,894,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3601,85,0,894,'Tommy Hilfiger'),(3602,139,0,894,'Tommy Hilfiger'),(3603,75,0,895,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3604,76,0,895,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3605,85,0,895,'Tommy Hilfiger'),(3606,139,0,895,'Tommy Hilfiger'),(3607,75,0,896,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3608,76,0,896,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3609,85,0,896,'Tommy Hilfiger'),(3610,139,0,896,'Tommy Hilfiger'),(3611,75,0,897,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3612,76,0,897,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3613,85,0,897,'Tommy Hilfiger'),(3614,139,0,897,'Tommy Hilfiger'),(3615,75,0,898,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3616,76,0,898,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3617,85,0,898,'Tommy Hilfiger'),(3618,139,0,898,'Tommy Hilfiger'),(3619,75,0,899,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3620,76,0,899,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3621,85,0,899,'Tommy Hilfiger'),(3622,139,0,899,'Tommy Hilfiger'),(3623,75,0,900,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3624,76,0,900,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3625,85,0,900,'Tommy Hilfiger'),(3626,139,0,900,'Tommy Hilfiger'),(3627,75,0,901,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3628,76,0,901,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3629,85,0,901,'Tommy Hilfiger'),(3630,139,0,901,'Tommy Hilfiger'),(3631,75,0,902,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3632,76,0,902,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3633,85,0,902,'Tommy Hilfiger'),(3634,139,0,902,'Tommy Hilfiger'),(3635,75,0,903,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(3636,76,0,903,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(3637,85,0,903,'Tommy Hilfiger'),(3638,139,0,903,'Tommy Hilfiger'),(3639,75,0,904,'<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3640,76,0,904,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(3641,85,0,904,'Lawrence Grey Rollneck Pullover'),(3642,139,0,904,'Gabba'),(3643,75,0,905,'<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3644,76,0,905,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(3645,85,0,905,'Lawrence Grey Rollneck Pullover'),(3646,139,0,905,'Gabba'),(3647,75,0,906,'<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3648,76,0,906,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(3649,85,0,906,'Lawrence Grey Rollneck Pullover'),(3650,139,0,906,'Gabba'),(3651,75,0,907,'<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3652,76,0,907,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(3653,85,0,907,'Lawrence Grey Rollneck Pullover'),(3654,139,0,907,'Gabba'),(3655,75,0,908,'<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3656,76,0,908,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(3657,85,0,908,'Lawrence Grey Rollneck Pullover'),(3658,139,0,908,'Gabba'),(3659,75,0,909,'<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3660,76,0,909,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(3661,85,0,909,'Lawrence Grey Rollneck Pullover'),(3662,139,0,909,'Gabba'),(3663,75,0,910,'<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3664,76,0,910,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(3665,85,0,910,'Lawrence Grey Rollneck Pullover'),(3666,139,0,910,'Gabba'),(3667,75,0,911,'<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3668,76,0,911,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(3669,85,0,911,'Lawrence Grey Rollneck Pullover'),(3670,139,0,911,'Gabba'),(3671,75,0,912,'<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3672,76,0,912,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(3673,85,0,912,'Lawrence Grey Rollneck Pullover'),(3674,139,0,912,'Gabba'),(3675,75,0,913,'<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3676,76,0,913,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(3677,85,0,913,'Lawrence Grey Rollneck Pullover'),(3678,139,0,913,'Gabba'),(3679,75,0,914,'<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3680,76,0,914,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(3681,85,0,914,'Lawrence Grey Rollneck Pullover'),(3682,139,0,914,'Gabba'),(3683,75,0,915,'<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(3684,76,0,915,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(3685,85,0,915,'Lawrence Grey Rollneck Pullover'),(3686,139,0,915,'Gabba'),(3719,75,0,924,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"></span>Upgrade your essential denim options with the <strong>Baldessarini Jack jeans</strong>. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch.</p>\r\n<div class=\"product-tabs__content__slice\">\r\n<div class=\"product-tabs__content__cms\">\r\n<ul>\r\n<li>98% cotton, 2% elastane</li>\r\n<li>Twill woven</li>\r\n<li>Zip fly</li>\r\n<li>Five pocket design</li>\r\n<li>Belt loops</li>\r\n<li>Branded metal hardware</li>\r\n<li>Branded leather waistband tab</li>\r\n<li>Machine wash</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Model:</strong> John 16511<br /><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo tag on back of waistband<br /><strong>Material:</strong> 97% cotton, 3% elastane<br /><br /><br /></span></p>'),(3720,76,0,924,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(3721,85,0,924,'Navy John 16511'),(3722,139,0,924,'Baldessarini'),(3723,75,0,925,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"></span>Upgrade your essential denim options with the <strong>Baldessarini Jack jeans</strong>. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch.</p>\r\n<div class=\"product-tabs__content__slice\">\r\n<div class=\"product-tabs__content__cms\">\r\n<ul>\r\n<li>98% cotton, 2% elastane</li>\r\n<li>Twill woven</li>\r\n<li>Zip fly</li>\r\n<li>Five pocket design</li>\r\n<li>Belt loops</li>\r\n<li>Branded metal hardware</li>\r\n<li>Branded leather waistband tab</li>\r\n<li>Machine wash</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Model:</strong> John 16511<br /><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo tag on back of waistband<br /><strong>Material:</strong> 97% cotton, 3% elastane<br /><br /><br /></span></p>'),(3724,76,0,925,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(3725,85,0,925,'Navy John 16511'),(3726,139,0,925,'Baldessarini'),(3727,75,0,926,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"></span>Upgrade your essential denim options with the <strong>Baldessarini Jack jeans</strong>. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch.</p>\r\n<div class=\"product-tabs__content__slice\">\r\n<div class=\"product-tabs__content__cms\">\r\n<ul>\r\n<li>98% cotton, 2% elastane</li>\r\n<li>Twill woven</li>\r\n<li>Zip fly</li>\r\n<li>Five pocket design</li>\r\n<li>Belt loops</li>\r\n<li>Branded metal hardware</li>\r\n<li>Branded leather waistband tab</li>\r\n<li>Machine wash</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Model:</strong> John 16511<br /><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo tag on back of waistband<br /><strong>Material:</strong> 97% cotton, 3% elastane<br /><br /><br /></span></p>'),(3728,76,0,926,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(3729,85,0,926,'Navy John 16511'),(3730,139,0,926,'Baldessarini'),(3731,75,0,927,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"></span>Upgrade your essential denim options with the <strong>Baldessarini Jack jeans</strong>. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch.</p>\r\n<div class=\"product-tabs__content__slice\">\r\n<div class=\"product-tabs__content__cms\">\r\n<ul>\r\n<li>98% cotton, 2% elastane</li>\r\n<li>Twill woven</li>\r\n<li>Zip fly</li>\r\n<li>Five pocket design</li>\r\n<li>Belt loops</li>\r\n<li>Branded metal hardware</li>\r\n<li>Branded leather waistband tab</li>\r\n<li>Machine wash</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Model:</strong> John 16511<br /><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo tag on back of waistband<br /><strong>Material:</strong> 97% cotton, 3% elastane<br /><br /><br /></span></p>'),(3732,76,0,927,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(3733,85,0,927,'Navy John 16511'),(3734,139,0,927,'Baldessarini'),(3735,75,0,928,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"></span>Upgrade your essential denim options with the <strong>Baldessarini Jack jeans</strong>. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch.</p>\r\n<div class=\"product-tabs__content__slice\">\r\n<div class=\"product-tabs__content__cms\">\r\n<ul>\r\n<li>98% cotton, 2% elastane</li>\r\n<li>Twill woven</li>\r\n<li>Zip fly</li>\r\n<li>Five pocket design</li>\r\n<li>Belt loops</li>\r\n<li>Branded metal hardware</li>\r\n<li>Branded leather waistband tab</li>\r\n<li>Machine wash</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Model:</strong> John 16511<br /><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo tag on back of waistband<br /><strong>Material:</strong> 97% cotton, 3% elastane<br /><br /><br /></span></p>'),(3736,76,0,928,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(3737,85,0,928,'Navy John 16511'),(3738,139,0,928,'Baldessarini'),(3739,75,0,929,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"></span>Upgrade your essential denim options with the <strong>Baldessarini Jack jeans</strong>. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch.</p>\r\n<div class=\"product-tabs__content__slice\">\r\n<div class=\"product-tabs__content__cms\">\r\n<ul>\r\n<li>98% cotton, 2% elastane</li>\r\n<li>Twill woven</li>\r\n<li>Zip fly</li>\r\n<li>Five pocket design</li>\r\n<li>Belt loops</li>\r\n<li>Branded metal hardware</li>\r\n<li>Branded leather waistband tab</li>\r\n<li>Machine wash</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Model:</strong> John 16511<br /><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo tag on back of waistband<br /><strong>Material:</strong> 97% cotton, 3% elastane<br /><br /><br /></span></p>'),(3740,76,0,929,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(3741,85,0,929,'Navy John 16511'),(3742,139,0,929,'Baldessarini'),(3743,75,0,930,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"></span>Upgrade your essential denim options with the <strong>Baldessarini Jack jeans</strong>. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch.</p>\r\n<div class=\"product-tabs__content__slice\">\r\n<div class=\"product-tabs__content__cms\">\r\n<ul>\r\n<li>98% cotton, 2% elastane</li>\r\n<li>Twill woven</li>\r\n<li>Zip fly</li>\r\n<li>Five pocket design</li>\r\n<li>Belt loops</li>\r\n<li>Branded metal hardware</li>\r\n<li>Branded leather waistband tab</li>\r\n<li>Machine wash</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Model:</strong> John 16511<br /><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo tag on back of waistband<br /><strong>Material:</strong> 97% cotton, 3% elastane<br /><br /><br /></span></p>'),(3744,76,0,930,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(3745,85,0,930,'Navy John 16511'),(3746,139,0,930,'Baldessarini'),(3747,75,0,931,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"></span>Upgrade your essential denim options with the <strong>Baldessarini Jack jeans</strong>. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch.</p>\r\n<div class=\"product-tabs__content__slice\">\r\n<div class=\"product-tabs__content__cms\">\r\n<ul>\r\n<li>98% cotton, 2% elastane</li>\r\n<li>Twill woven</li>\r\n<li>Zip fly</li>\r\n<li>Five pocket design</li>\r\n<li>Belt loops</li>\r\n<li>Branded metal hardware</li>\r\n<li>Branded leather waistband tab</li>\r\n<li>Machine wash</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Model:</strong> John 16511<br /><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo tag on back of waistband<br /><strong>Material:</strong> 97% cotton, 3% elastane<br /><br /><br /></span></p>'),(3748,76,0,931,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(3749,85,0,931,'Navy John 16511'),(3750,139,0,931,'Baldessarini'),(3751,75,0,932,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"></span>Upgrade your essential denim options with the <strong>Baldessarini Jack jeans</strong>. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch.</p>\r\n<div class=\"product-tabs__content__slice\">\r\n<div class=\"product-tabs__content__cms\">\r\n<ul>\r\n<li>98% cotton, 2% elastane</li>\r\n<li>Twill woven</li>\r\n<li>Zip fly</li>\r\n<li>Five pocket design</li>\r\n<li>Belt loops</li>\r\n<li>Branded metal hardware</li>\r\n<li>Branded leather waistband tab</li>\r\n<li>Machine wash</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Model:</strong> John 16511<br /><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo tag on back of waistband<br /><strong>Material:</strong> 97% cotton, 3% elastane<br /><br /><br /></span></p>'),(3752,76,0,932,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(3753,85,0,932,'Navy John 16511'),(3754,139,0,932,'Baldessarini'),(3755,75,0,933,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loops and button fly, belt<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo appliqué(s)<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 32 and is 185cm/6′0″ tall.</span></p>'),(3756,76,0,933,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(3757,85,0,933,'Dark Blue Julyen'),(3758,139,0,933,'Crosshatch'),(3759,75,0,934,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loops and button fly, belt<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo appliqué(s)<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 32 and is 185cm/6′0″ tall.</span></p>'),(3760,76,0,934,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(3761,85,0,934,'Dark Blue Julyen'),(3762,139,0,934,'Crosshatch'),(3763,75,0,935,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loops and button fly, belt<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo appliqué(s)<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 32 and is 185cm/6′0″ tall.</span></p>'),(3764,76,0,935,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(3765,85,0,935,'Dark Blue Julyen'),(3766,139,0,935,'Crosshatch'),(3767,75,0,936,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loops and button fly, belt<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo appliqué(s)<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 32 and is 185cm/6′0″ tall.</span></p>'),(3768,76,0,936,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(3769,85,0,936,'Dark Blue Julyen'),(3770,139,0,936,'Crosshatch'),(3771,75,0,937,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loops and button fly, belt<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo appliqué(s)<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 32 and is 185cm/6′0″ tall.</span></p>'),(3772,76,0,937,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(3773,85,0,937,'Dark Blue Julyen'),(3774,139,0,937,'Crosshatch'),(3775,75,0,938,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loops and button fly, belt<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo appliqué(s)<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 32 and is 185cm/6′0″ tall.</span></p>'),(3776,76,0,938,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(3777,85,0,938,'Dark Blue Julyen'),(3778,139,0,938,'Crosshatch'),(3779,75,0,939,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loops and button fly, belt<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo appliqué(s)<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 32 and is 185cm/6′0″ tall.</span></p>'),(3780,76,0,939,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(3781,85,0,939,'Dark Blue Julyen'),(3782,139,0,939,'Crosshatch'),(3783,75,0,940,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loops and button fly, belt<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo appliqué(s)<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 32 and is 185cm/6′0″ tall.</span></p>'),(3784,76,0,940,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(3785,85,0,940,'Dark Blue Julyen'),(3786,139,0,940,'Crosshatch'),(3787,75,0,941,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loops and button fly, belt<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo appliqué(s)<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 32 and is 185cm/6′0″ tall.</span></p>'),(3788,76,0,941,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(3789,85,0,941,'Dark Blue Julyen'),(3790,139,0,941,'Crosshatch'),(3791,75,0,942,'<p>Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.</p>\r\n<p><strong>MATERIAL &amp; CARE</strong></p>\r\n<p><strong>Outer fabric material:</strong> 50% wool, 50% acrylic</p>\r\n<p><strong>Care instructions:</strong> Machine wash at 30°C, Do not iron, Machine wash on gentle cycle</p>\r\n<p><strong>DETAILS</strong></p>\r\n<p><strong>Neckline:</strong> Crew neck</p>\r\n<p><strong>Pattern:</strong> Marl</p>\r\n<p><strong>Article number:</strong> BRI22Q006-K11</p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Our model\'s height:</strong> </span><span class=\"h-text h-color-black body\">Our model is 72.0 \" tall and is wearing size M</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Fit:</strong> </span><span class=\"h-text h-color-black body\">Normal fit</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Length:</strong> </span><span class=\"h-text h-color-black body\">Normal</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">Extra long</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">29.5 \" (Size M)</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Total length:</strong> </span><span class=\"h-text h-color-black body\">27.5 \" (Size M)</span></p>'),(3792,76,0,942,'<p>Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape.</p>'),(3793,85,0,942,'Long-sleeved Jumper'),(3794,139,0,942,'Bruun & Stengade'),(3795,75,0,943,'<p>Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.</p>\r\n<p><strong>MATERIAL &amp; CARE</strong></p>\r\n<p><strong>Outer fabric material:</strong> 50% wool, 50% acrylic</p>\r\n<p><strong>Care instructions:</strong> Machine wash at 30°C, Do not iron, Machine wash on gentle cycle</p>\r\n<p><strong>DETAILS</strong></p>\r\n<p><strong>Neckline:</strong> Crew neck</p>\r\n<p><strong>Pattern:</strong> Marl</p>\r\n<p><strong>Article number:</strong> BRI22Q006-K11</p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Our model\'s height:</strong> </span><span class=\"h-text h-color-black body\">Our model is 72.0 \" tall and is wearing size M</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Fit:</strong> </span><span class=\"h-text h-color-black body\">Normal fit</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Length:</strong> </span><span class=\"h-text h-color-black body\">Normal</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">Extra long</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">29.5 \" (Size M)</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Total length:</strong> </span><span class=\"h-text h-color-black body\">27.5 \" (Size M)</span></p>'),(3796,76,0,943,'<p>Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape.</p>'),(3797,85,0,943,'Long-sleeved Jumper'),(3798,139,0,943,'Bruun & Stengade'),(3799,75,0,944,'<p>Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.</p>\r\n<p><strong>MATERIAL &amp; CARE</strong></p>\r\n<p><strong>Outer fabric material:</strong> 50% wool, 50% acrylic</p>\r\n<p><strong>Care instructions:</strong> Machine wash at 30°C, Do not iron, Machine wash on gentle cycle</p>\r\n<p><strong>DETAILS</strong></p>\r\n<p><strong>Neckline:</strong> Crew neck</p>\r\n<p><strong>Pattern:</strong> Marl</p>\r\n<p><strong>Article number:</strong> BRI22Q006-K11</p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Our model\'s height:</strong> </span><span class=\"h-text h-color-black body\">Our model is 72.0 \" tall and is wearing size M</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Fit:</strong> </span><span class=\"h-text h-color-black body\">Normal fit</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Length:</strong> </span><span class=\"h-text h-color-black body\">Normal</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">Extra long</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">29.5 \" (Size M)</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Total length:</strong> </span><span class=\"h-text h-color-black body\">27.5 \" (Size M)</span></p>'),(3800,76,0,944,'<p>Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape.</p>'),(3801,85,0,944,'Long-sleeved Jumper'),(3802,139,0,944,'Bruun & Stengade'),(3803,75,0,945,'<p>Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.</p>\r\n<p><strong>MATERIAL &amp; CARE</strong></p>\r\n<p><strong>Outer fabric material:</strong> 50% wool, 50% acrylic</p>\r\n<p><strong>Care instructions:</strong> Machine wash at 30°C, Do not iron, Machine wash on gentle cycle</p>\r\n<p><strong>DETAILS</strong></p>\r\n<p><strong>Neckline:</strong> Crew neck</p>\r\n<p><strong>Pattern:</strong> Marl</p>\r\n<p><strong>Article number:</strong> BRI22Q006-K11</p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Our model\'s height:</strong> </span><span class=\"h-text h-color-black body\">Our model is 72.0 \" tall and is wearing size M</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Fit:</strong> </span><span class=\"h-text h-color-black body\">Normal fit</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Length:</strong> </span><span class=\"h-text h-color-black body\">Normal</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">Extra long</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">29.5 \" (Size M)</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Total length:</strong> </span><span class=\"h-text h-color-black body\">27.5 \" (Size M)</span></p>'),(3804,76,0,945,'<p>Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape.</p>'),(3805,85,0,945,'Long-sleeved Jumper'),(3806,139,0,945,'Bruun & Stengade'),(3807,75,0,946,'<p>Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.</p>\r\n<p><strong>MATERIAL &amp; CARE</strong></p>\r\n<p><strong>Outer fabric material:</strong> 50% wool, 50% acrylic</p>\r\n<p><strong>Care instructions:</strong> Machine wash at 30°C, Do not iron, Machine wash on gentle cycle</p>\r\n<p><strong>DETAILS</strong></p>\r\n<p><strong>Neckline:</strong> Crew neck</p>\r\n<p><strong>Pattern:</strong> Marl</p>\r\n<p><strong>Article number:</strong> BRI22Q006-K11</p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Our model\'s height:</strong> </span><span class=\"h-text h-color-black body\">Our model is 72.0 \" tall and is wearing size M</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Fit:</strong> </span><span class=\"h-text h-color-black body\">Normal fit</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Length:</strong> </span><span class=\"h-text h-color-black body\">Normal</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">Extra long</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">29.5 \" (Size M)</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Total length:</strong> </span><span class=\"h-text h-color-black body\">27.5 \" (Size M)</span></p>'),(3808,76,0,946,'<p>Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape.</p>'),(3809,85,0,946,'Long-sleeved Jumper'),(3810,139,0,946,'Bruun & Stengade'),(3811,75,0,947,'<p>Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.</p>\r\n<p><strong>MATERIAL &amp; CARE</strong></p>\r\n<p><strong>Outer fabric material:</strong> 50% wool, 50% acrylic</p>\r\n<p><strong>Care instructions:</strong> Machine wash at 30°C, Do not iron, Machine wash on gentle cycle</p>\r\n<p><strong>DETAILS</strong></p>\r\n<p><strong>Neckline:</strong> Crew neck</p>\r\n<p><strong>Pattern:</strong> Marl</p>\r\n<p><strong>Article number:</strong> BRI22Q006-K11</p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Our model\'s height:</strong> </span><span class=\"h-text h-color-black body\">Our model is 72.0 \" tall and is wearing size M</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Fit:</strong> </span><span class=\"h-text h-color-black body\">Normal fit</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Length:</strong> </span><span class=\"h-text h-color-black body\">Normal</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">Extra long</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">29.5 \" (Size M)</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Total length:</strong> </span><span class=\"h-text h-color-black body\">27.5 \" (Size M)</span></p>'),(3812,76,0,947,'<p>Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape.</p>'),(3813,85,0,947,'Long-sleeved Jumper'),(3814,139,0,947,'Bruun & Stengade'),(3815,75,0,2,'<p>Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.</p>\r\n<p><strong>MATERIAL &amp; CARE</strong></p>\r\n<p><strong>Outer fabric material:</strong> 50% wool, 50% acrylic</p>\r\n<p><strong>Care instructions:</strong> Machine wash at 30°C, Do not iron, Machine wash on gentle cycle</p>\r\n<p><strong>DETAILS</strong></p>\r\n<p><strong>Neckline:</strong> Crew neck</p>\r\n<p><strong>Pattern:</strong> Marl</p>\r\n<p><strong>Article number:</strong> BRI22Q006-K11</p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Our model\'s height:</strong> </span><span class=\"h-text h-color-black body\">Our model is 72.0 \" tall and is wearing size M</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Fit:</strong> </span><span class=\"h-text h-color-black body\">Normal fit</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Length:</strong> </span><span class=\"h-text h-color-black body\">Normal</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">Extra long</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">29.5 \" (Size M)</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Total length:</strong> </span><span class=\"h-text h-color-black body\">27.5 \" (Size M)</span></p>'),(3816,76,0,2,'<p>Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape.</p>'),(3817,75,0,948,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(3818,76,0,948,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(3819,85,0,948,'Camper Lace-ups'),(3820,139,0,948,'Camper'),(3821,75,0,949,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(3822,76,0,949,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(3823,85,0,949,'Camper Lace-ups'),(3824,139,0,949,'Camper'),(3825,75,0,950,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(3826,76,0,950,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(3827,85,0,950,'Camper Lace-ups'),(3828,139,0,950,'Camper'),(3829,75,0,951,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(3830,76,0,951,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(3831,85,0,951,'Camper Lace-ups'),(3832,139,0,951,'Camper'),(3833,75,0,952,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(3834,76,0,952,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(3835,85,0,952,'Camper Lace-ups'),(3836,139,0,952,'Camper'),(3837,75,0,953,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(3838,76,0,953,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(3839,85,0,953,'Camper Lace-ups'),(3840,139,0,953,'Camper'),(3841,75,0,954,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(3842,76,0,954,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(3843,85,0,954,'Camper Lace-ups'),(3844,139,0,954,'Camper'),(3845,75,0,955,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(3846,76,0,955,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(3847,85,0,955,'Camper Lace-ups'),(3848,139,0,955,'Camper'),(3849,75,0,956,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(3850,76,0,956,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(3851,85,0,956,'Camper Lace-ups'),(3852,139,0,956,'Camper'),(3853,75,0,957,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(3854,76,0,957,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(3855,85,0,957,'Camper Lace-ups'),(3856,139,0,957,'Camper'),(3857,75,0,958,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.\\n\\nExtras: knitting patterns, logo appliqué(s)\\nOuter material: textile, synthetic\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.<br /><br /><strong>Extras:</strong> knitting patterns, logo appliqué(s)<br /><strong>Outer material:</strong> textile, synthetic<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><span style=\"color: inherit; font-size: inherit;\"><strong>Details:</strong> </span></p>\r\n<ul class=\"bullet_list___1JjG2 gl-list bullet_list--half-width___35Abt\">\r\n<li class=\"gl-vspacing-m\">Lace closure</li>\r\n<li class=\"gl-vspacing-m\">Knit upper</li>\r\n<li class=\"gl-vspacing-m\">EVA outsole with rubber inserts</li>\r\n<li class=\"gl-vspacing-m\">Lightweight EVA midsole</li>\r\n</ul>\r\n<ul class=\"bullet_list___1JjG2 gl-list bullet_list--half-width___35Abt\">\r\n<li class=\"gl-vspacing-m\">Sock-like construction hugs the foot</li>\r\n<li class=\"gl-vspacing-m\">Imported</li>\r\n</ul>'),(3858,76,0,958,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;White Adidas Originals sneakers - Pharrell Williams line&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Originals sneakers - Pharrell Williams line. Pharrell\'s Hu collection celebrates the hues of humanity</span></p>'),(3859,85,0,958,'Adidas Originals PW Tennis Hu'),(3860,139,0,958,'Adidas'),(3861,75,0,959,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.\\n\\nExtras: knitting patterns, logo appliqué(s)\\nOuter material: textile, synthetic\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.<br /><br /><strong>Extras:</strong> knitting patterns, logo appliqué(s)<br /><strong>Outer material:</strong> textile, synthetic<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><span style=\"color: inherit; font-size: inherit;\"><strong>Details:</strong> </span></p>\r\n<ul class=\"bullet_list___1JjG2 gl-list bullet_list--half-width___35Abt\">\r\n<li class=\"gl-vspacing-m\">Lace closure</li>\r\n<li class=\"gl-vspacing-m\">Knit upper</li>\r\n<li class=\"gl-vspacing-m\">EVA outsole with rubber inserts</li>\r\n<li class=\"gl-vspacing-m\">Lightweight EVA midsole</li>\r\n</ul>\r\n<ul class=\"bullet_list___1JjG2 gl-list bullet_list--half-width___35Abt\">\r\n<li class=\"gl-vspacing-m\">Sock-like construction hugs the foot</li>\r\n<li class=\"gl-vspacing-m\">Imported</li>\r\n</ul>'),(3862,76,0,959,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;White Adidas Originals sneakers - Pharrell Williams line&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Originals sneakers - Pharrell Williams line. Pharrell\'s Hu collection celebrates the hues of humanity</span></p>'),(3863,85,0,959,'Adidas Originals PW Tennis Hu'),(3864,139,0,959,'Adidas'),(3913,75,0,972,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /><br /></span></p>'),(3914,76,0,972,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(3915,85,0,972,'Lloyd Half Boots'),(3916,139,0,972,'Gant'),(3917,75,0,973,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /><br /></span></p>'),(3918,76,0,973,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(3919,85,0,973,'Lloyd Half Boots'),(3920,139,0,973,'Gant'),(3921,75,0,974,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /><br /></span></p>'),(3922,76,0,974,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(3923,85,0,974,'Lloyd Half Boots'),(3924,139,0,974,'Gant'),(3925,75,0,975,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /><br /></span></p>'),(3926,76,0,975,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(3927,85,0,975,'Lloyd Half Boots'),(3928,139,0,975,'Gant'),(3929,75,0,976,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /><br /></span></p>'),(3930,76,0,976,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(3931,85,0,976,'Lloyd Half Boots'),(3932,139,0,976,'Gant'),(3933,75,0,977,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /><br /></span></p>'),(3934,76,0,977,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(3935,85,0,977,'Lloyd Half Boots'),(3936,139,0,977,'Gant'),(3937,75,0,978,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /><br /></span></p>'),(3938,76,0,978,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(3939,85,0,978,'Lloyd Half Boots'),(3940,139,0,978,'Gant'),(3941,75,0,979,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /><br /></span></p>'),(3942,76,0,979,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(3943,85,0,979,'Lloyd Half Boots'),(3944,139,0,979,'Gant'),(3945,75,0,980,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /><br /></span></p>'),(3946,76,0,980,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(3947,85,0,980,'Lloyd Half Boots'),(3948,139,0,980,'Gant'),(3949,75,0,981,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /><br /></span></p>'),(3950,76,0,981,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(3951,85,0,981,'Lloyd Half Boots'),(3952,139,0,981,'Gant'),(3953,75,0,982,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /><br /></span></p>'),(3954,76,0,982,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(3955,85,0,982,'Lloyd Half Boots'),(3956,139,0,982,'Gant'),(3957,75,0,983,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /><br /></span></p>'),(3958,76,0,983,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(3959,85,0,983,'Lloyd Half Boots'),(3960,139,0,983,'Gant'),(3961,75,0,984,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /><br /></span></p>'),(3962,76,0,984,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(3963,85,0,984,'Lloyd Half Boots'),(3964,139,0,984,'Gant'),(3965,75,0,985,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /><br /></span></p>'),(3966,76,0,985,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(3967,85,0,985,'Lloyd Half Boots'),(3968,139,0,985,'Gant'),(3969,75,0,986,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(3970,76,0,986,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(3971,85,0,986,'Gant Marvel'),(3972,139,0,986,'Gant'),(3973,75,0,987,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(3974,76,0,987,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(3975,85,0,987,'Gant Marvel'),(3976,139,0,987,'Gant'),(3977,75,0,988,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(3978,76,0,988,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(3979,85,0,988,'Gant Marvel'),(3980,139,0,988,'Gant'),(3981,75,0,989,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(3982,76,0,989,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(3983,85,0,989,'Gant Marvel'),(3984,139,0,989,'Gant'),(3985,75,0,990,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(3986,76,0,990,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(3987,85,0,990,'Gant Marvel'),(3988,139,0,990,'Gant'),(3989,75,0,991,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(3990,76,0,991,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(3991,85,0,991,'Gant Marvel'),(3992,139,0,991,'Gant'),(3993,75,0,992,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(3994,76,0,992,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(3995,85,0,992,'Gant Marvel'),(3996,139,0,992,'Gant'),(3997,75,0,993,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(3998,76,0,993,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(3999,85,0,993,'Gant Marvel'),(4000,139,0,993,'Gant'),(4001,75,0,994,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(4002,76,0,994,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(4003,85,0,994,'Gant Marvel'),(4004,139,0,994,'Gant'),(4005,75,0,995,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(4006,76,0,995,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(4007,85,0,995,'Gant Marvel'),(4008,139,0,995,'Gant'),(4009,75,0,996,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(4010,76,0,996,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(4011,85,0,996,'Gant Marvel'),(4012,139,0,996,'Gant'),(4013,75,0,997,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(4014,76,0,997,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(4015,85,0,997,'Gant Marvel'),(4016,139,0,997,'Gant'),(4017,75,0,998,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(4018,76,0,998,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(4019,85,0,998,'Gant Marvel'),(4020,139,0,998,'Gant'),(4021,75,0,999,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(4022,76,0,999,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(4023,85,0,999,'Gant Marvel'),(4024,139,0,999,'Gant'),(4025,75,0,1000,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(4026,76,0,1000,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(4027,85,0,1000,'Gant Marvel'),(4028,139,0,1000,'Gant'),(4029,75,0,1001,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(4030,76,0,1001,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(4031,85,0,1001,'Gant Marvel'),(4032,139,0,1001,'Gant'),(4033,75,0,1002,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(4034,76,0,1002,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(4035,85,0,1002,'Gant Marvel'),(4036,139,0,1002,'Gant'),(4037,75,0,1003,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><span style=\"font-size: inherit;\"><strong><span style=\"color: inherit;\">Product Info:</span></strong></span></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(4038,76,0,1003,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(4039,85,0,1003,'Gant Marvel'),(4040,139,0,1003,'Gant'),(4041,75,0,1004,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(4042,76,0,1004,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(4043,85,0,1004,'Boxfresh'),(4044,139,0,1004,'Sneakers'),(4045,75,0,1005,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(4046,76,0,1005,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(4047,85,0,1005,'Boxfresh'),(4048,139,0,1005,'Sneakers'),(4049,75,0,1006,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(4050,76,0,1006,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(4051,85,0,1006,'Boxfresh'),(4052,139,0,1006,'Sneakers'),(4053,75,0,1007,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(4054,76,0,1007,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(4055,85,0,1007,'Boxfresh'),(4056,139,0,1007,'Sneakers'),(4057,75,0,1008,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(4058,76,0,1008,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(4059,85,0,1008,'Boxfresh'),(4060,139,0,1008,'Sneakers'),(4061,75,0,1009,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(4062,76,0,1009,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(4063,85,0,1009,'Boxfresh'),(4064,139,0,1009,'Sneakers'),(4065,75,0,1010,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(4066,76,0,1010,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(4067,85,0,1010,'Boxfresh'),(4068,139,0,1010,'Sneakers'),(4069,75,0,1011,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(4070,76,0,1011,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(4071,85,0,1011,'Boxfresh'),(4072,139,0,1011,'Sneakers'),(4073,75,0,1012,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(4074,76,0,1012,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(4075,85,0,1012,'Boxfresh'),(4076,139,0,1012,'Sneakers'),(4077,75,0,1013,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(4078,76,0,1013,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(4079,85,0,1013,'Boxfresh'),(4080,139,0,1013,'Sneakers'),(4081,75,0,1014,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4082,76,0,1014,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(4083,85,0,1014,'Hooded Sweater'),(4084,139,0,1014,'Superdry'),(4085,75,0,1015,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4086,76,0,1015,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(4087,85,0,1015,'Hooded Sweater'),(4088,139,0,1015,'Superdry'),(4089,75,0,1016,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4090,76,0,1016,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(4091,85,0,1016,'Hooded Sweater'),(4092,139,0,1016,'Superdry'),(4093,75,0,1017,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4094,76,0,1017,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(4095,85,0,1017,'Hooded Sweater'),(4096,139,0,1017,'Superdry'),(4097,75,0,1018,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4098,76,0,1018,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(4099,85,0,1018,'Hooded Sweater'),(4100,139,0,1018,'Superdry'),(4101,75,0,1019,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4102,76,0,1019,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(4103,85,0,1019,'Hooded Sweater'),(4104,139,0,1019,'Superdry'),(4105,75,0,1020,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4106,76,0,1020,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(4107,85,0,1020,'Hooded Sweater'),(4108,139,0,1020,'Superdry'),(4109,75,0,1021,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4110,76,0,1021,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(4111,85,0,1021,'Hooded Sweater'),(4112,139,0,1021,'Superdry'),(4113,75,0,1022,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4114,76,0,1022,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(4115,85,0,1022,'Hooded Sweater'),(4116,139,0,1022,'Superdry'),(4117,76,0,1,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(4118,75,0,1023,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, light quality<br /><strong>Material:</strong> 64% Lyocell, 30% cotton, 4% Elastomultiester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4119,76,0,1023,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(4120,85,0,1023,'Black Standard Jeans'),(4121,139,0,1023,'7 for all Mankind'),(4122,75,0,1024,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, light quality<br /><strong>Material:</strong> 64% Lyocell, 30% cotton, 4% Elastomultiester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4123,76,0,1024,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(4124,85,0,1024,'Black Standard Jeans'),(4125,139,0,1024,'7 for all Mankind'),(4126,75,0,1025,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, light quality<br /><strong>Material:</strong> 64% Lyocell, 30% cotton, 4% Elastomultiester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4127,76,0,1025,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(4128,85,0,1025,'Black Standard Jeans'),(4129,139,0,1025,'7 for all Mankind'),(4130,75,0,1026,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, light quality<br /><strong>Material:</strong> 64% Lyocell, 30% cotton, 4% Elastomultiester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4131,76,0,1026,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(4132,85,0,1026,'Black Standard Jeans'),(4133,139,0,1026,'7 for all Mankind'),(4134,75,0,1027,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, light quality<br /><strong>Material:</strong> 64% Lyocell, 30% cotton, 4% Elastomultiester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4135,76,0,1027,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(4136,85,0,1027,'Black Standard Jeans'),(4137,139,0,1027,'7 for all Mankind'),(4138,75,0,1028,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, light quality<br /><strong>Material:</strong> 64% Lyocell, 30% cotton, 4% Elastomultiester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4139,76,0,1028,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(4140,85,0,1028,'Black Standard Jeans'),(4141,139,0,1028,'7 for all Mankind'),(4142,75,0,1029,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 102 cm (40″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Extras:</strong> print/s<br /><strong>Material:</strong> 80% cotton, 20% polyester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(4143,76,0,1029,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(4144,85,0,1029,'Black Sweat Pants'),(4145,139,0,1029,'Diesel'),(4146,75,0,1030,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 102 cm (40″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Extras:</strong> print/s<br /><strong>Material:</strong> 80% cotton, 20% polyester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(4147,76,0,1030,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(4148,85,0,1030,'Black Sweat Pants'),(4149,139,0,1030,'Diesel'),(4150,75,0,1031,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 102 cm (40″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Extras:</strong> print/s<br /><strong>Material:</strong> 80% cotton, 20% polyester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(4151,76,0,1031,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(4152,85,0,1031,'Black Sweat Pants'),(4153,139,0,1031,'Diesel'),(4154,75,0,1032,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 102 cm (40″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Extras:</strong> print/s<br /><strong>Material:</strong> 80% cotton, 20% polyester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(4155,76,0,1032,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(4156,85,0,1032,'Black Sweat Pants'),(4157,139,0,1032,'Diesel'),(4158,75,0,1033,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 102 cm (40″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Extras:</strong> print/s<br /><strong>Material:</strong> 80% cotton, 20% polyester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(4159,76,0,1033,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(4160,85,0,1033,'Black Sweat Pants'),(4161,139,0,1033,'Diesel'),(4162,75,0,1034,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 102 cm (40″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Extras:</strong> print/s<br /><strong>Material:</strong> 80% cotton, 20% polyester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(4163,76,0,1034,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(4164,85,0,1034,'Black Sweat Pants'),(4165,139,0,1034,'Diesel'),(4166,75,0,1035,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4167,76,0,1035,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(4168,85,0,1035,'Blue Slim Fit Jeans'),(4169,139,0,1035,'Armani Jeans'),(4170,75,0,1036,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4171,76,0,1036,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(4172,85,0,1036,'Blue Slim Fit Jeans'),(4173,139,0,1036,'Armani Jeans'),(4174,75,0,1037,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4175,76,0,1037,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(4176,85,0,1037,'Blue Slim Fit Jeans'),(4177,139,0,1037,'Armani Jeans'),(4178,75,0,1038,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4179,76,0,1038,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(4180,85,0,1038,'Blue Slim Fit Jeans'),(4181,139,0,1038,'Armani Jeans'),(4182,75,0,1039,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4183,76,0,1039,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(4184,85,0,1039,'Blue Slim Fit Jeans'),(4185,139,0,1039,'Armani Jeans'),(4186,75,0,1040,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4187,76,0,1040,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(4188,85,0,1040,'Blue Slim Fit Jeans'),(4189,139,0,1040,'Armani Jeans'),(4190,75,0,1041,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4191,76,0,1041,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(4192,85,0,1041,'Blue Slim Fit Jeans'),(4193,139,0,1041,'Armani Jeans'),(4194,75,0,1042,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4195,76,0,1042,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(4196,85,0,1042,'Blue Slim Fit Jeans'),(4197,139,0,1042,'Armani Jeans'),(4198,75,0,1043,'<p>The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> mid-rise slim-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> distressed look with faded dyes and permanent wrinkles<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4199,76,0,1043,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(4200,85,0,1043,'Medium Blue Slim Fit Jeans – Cliff'),(4201,139,0,1043,'H.I.S Jeans'),(4202,75,0,1044,'<p>The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> mid-rise slim-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> distressed look with faded dyes and permanent wrinkles<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4203,76,0,1044,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(4204,85,0,1044,'Medium Blue Slim Fit Jeans – Cliff'),(4205,139,0,1044,'H.I.S Jeans'),(4206,75,0,1045,'<p>The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> mid-rise slim-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> distressed look with faded dyes and permanent wrinkles<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4207,76,0,1045,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(4208,85,0,1045,'Medium Blue Slim Fit Jeans – Cliff'),(4209,139,0,1045,'H.I.S Jeans'),(4210,75,0,1046,'<p>The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> mid-rise slim-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> distressed look with faded dyes and permanent wrinkles<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4211,76,0,1046,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(4212,85,0,1046,'Medium Blue Slim Fit Jeans – Cliff'),(4213,139,0,1046,'H.I.S Jeans'),(4214,75,0,1047,'<p>The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> mid-rise slim-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> distressed look with faded dyes and permanent wrinkles<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4215,76,0,1047,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(4216,85,0,1047,'Medium Blue Slim Fit Jeans – Cliff'),(4217,139,0,1047,'H.I.S Jeans'),(4218,75,0,1048,'<p>The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> mid-rise slim-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> distressed look with faded dyes and permanent wrinkles<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4219,76,0,1048,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(4220,85,0,1048,'Medium Blue Slim Fit Jeans – Cliff'),(4221,139,0,1048,'H.I.S Jeans'),(4222,75,0,1049,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4223,76,0,1049,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(4224,85,0,1049,'Blue Straight Leg Jeans'),(4225,139,0,1049,'Bugatti'),(4226,75,0,1050,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4227,76,0,1050,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(4228,85,0,1050,'Blue Straight Leg Jeans'),(4229,139,0,1050,'Bugatti'),(4230,75,0,1051,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4231,76,0,1051,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(4232,85,0,1051,'Blue Straight Leg Jeans'),(4233,139,0,1051,'Bugatti'),(4234,75,0,1052,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4235,76,0,1052,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(4236,85,0,1052,'Blue Straight Leg Jeans'),(4237,139,0,1052,'Bugatti'),(4238,75,0,1053,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4239,76,0,1053,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(4240,85,0,1053,'Blue Straight Leg Jeans'),(4241,139,0,1053,'Bugatti'),(4242,75,0,1054,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4243,76,0,1054,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(4244,85,0,1054,'Blue Straight Leg Jeans'),(4245,139,0,1054,'Bugatti'),(4246,75,0,1055,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4247,76,0,1055,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(4248,85,0,1055,'Blue Straight Leg Jeans'),(4249,139,0,1055,'Bugatti'),(4250,75,0,1056,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(4251,76,0,1056,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(4252,85,0,1056,'Blue Straight Leg Jeans'),(4253,139,0,1056,'Bugatti'),(4254,75,0,1057,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4255,76,0,1057,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(4256,85,0,1057,'Medium Blue Straight Leg Jeans – Rob'),(4257,139,0,1057,'Bogner'),(4258,75,0,1058,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4259,76,0,1058,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(4260,85,0,1058,'Medium Blue Straight Leg Jeans – Rob'),(4261,139,0,1058,'Bogner'),(4262,75,0,1059,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4263,76,0,1059,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(4264,85,0,1059,'Medium Blue Straight Leg Jeans – Rob'),(4265,139,0,1059,'Bogner'),(4266,75,0,1060,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4267,76,0,1060,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(4268,85,0,1060,'Medium Blue Straight Leg Jeans – Rob'),(4269,139,0,1060,'Bogner'),(4270,75,0,1061,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4271,76,0,1061,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(4272,85,0,1061,'Medium Blue Straight Leg Jeans – Rob'),(4273,139,0,1061,'Bogner'),(4274,75,0,1062,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4275,76,0,1062,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(4276,85,0,1062,'Medium Blue Straight Leg Jeans – Rob'),(4277,139,0,1062,'Bogner'),(4278,75,0,1063,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4279,76,0,1063,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(4280,85,0,1063,'Seventy Transitional Jacket'),(4281,139,0,1063,'Boss Orange'),(4282,75,0,1064,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4283,76,0,1064,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(4284,85,0,1064,'Seventy Transitional Jacket'),(4285,139,0,1064,'Boss Orange'),(4286,75,0,1065,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4287,76,0,1065,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(4288,85,0,1065,'Seventy Transitional Jacket'),(4289,139,0,1065,'Boss Orange'),(4290,75,0,1066,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4291,76,0,1066,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(4292,85,0,1066,'Seventy Transitional Jacket'),(4293,139,0,1066,'Boss Orange'),(4294,75,0,1067,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4295,76,0,1067,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(4296,85,0,1067,'Seventy Transitional Jacket'),(4297,139,0,1067,'Boss Orange'),(4298,75,0,1068,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4299,76,0,1068,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(4300,85,0,1068,'Seventy Transitional Jacket'),(4301,139,0,1068,'Boss Orange'),(4302,75,0,1069,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4303,76,0,1069,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(4304,85,0,1069,'Lawrence Grey Rollneck Pullover'),(4305,139,0,1069,'Lawrence Grey'),(4306,75,0,1070,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4307,76,0,1070,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(4308,85,0,1070,'Lawrence Grey Rollneck Pullover'),(4309,139,0,1070,'Lawrence Grey'),(4310,75,0,1071,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4311,76,0,1071,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(4312,85,0,1071,'Lawrence Grey Rollneck Pullover'),(4313,139,0,1071,'Lawrence Grey'),(4314,75,0,1072,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4315,76,0,1072,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(4316,85,0,1072,'Lawrence Grey Rollneck Pullover'),(4317,139,0,1072,'Lawrence Grey'),(4318,75,0,1073,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4319,76,0,1073,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(4320,85,0,1073,'Lawrence Grey Rollneck Pullover'),(4321,139,0,1073,'Lawrence Grey'),(4322,75,0,1074,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4323,76,0,1074,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(4324,85,0,1074,'Lawrence Grey Rollneck Pullover'),(4325,139,0,1074,'Lawrence Grey'),(4326,75,0,1075,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4327,76,0,1075,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(4328,85,0,1075,'Seventy Transitional Jacket'),(4329,139,0,1075,'Cipo & Baxx'),(4330,75,0,1076,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4331,76,0,1076,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(4332,85,0,1076,'Seventy Transitional Jacket'),(4333,139,0,1076,'Cipo & Baxx'),(4334,75,0,1077,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4335,76,0,1077,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(4336,85,0,1077,'Seventy Transitional Jacket'),(4337,139,0,1077,'Cipo & Baxx'),(4338,75,0,1078,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4339,76,0,1078,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(4340,85,0,1078,'Seventy Transitional Jacket'),(4341,139,0,1078,'Cipo & Baxx'),(4342,75,0,1079,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4343,76,0,1079,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(4344,85,0,1079,'Seventy Transitional Jacket'),(4345,139,0,1079,'Cipo & Baxx'),(4346,75,0,1080,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4347,76,0,1080,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(4348,85,0,1080,'Seventy Transitional Jacket'),(4349,139,0,1080,'Cipo & Baxx'),(4350,75,0,1081,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4351,76,0,1081,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(4352,85,0,1081,'Seventy Transitional Jacket'),(4353,139,0,1081,'Cipo & Baxx'),(4354,75,0,1082,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4355,76,0,1082,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(4356,85,0,1082,'Seventy Transitional Jacket'),(4357,139,0,1082,'Cipo & Baxx'),(4358,75,0,1083,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>'),(4359,76,0,1083,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(4360,85,0,1083,'Dark Blue Slim Fit Jeans'),(4361,139,0,1083,'Only & Sons'),(4362,75,0,1084,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>'),(4363,76,0,1084,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(4364,85,0,1084,'Dark Blue Slim Fit Jeans'),(4365,139,0,1084,'Only & Sons'),(4366,75,0,1085,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>'),(4367,76,0,1085,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(4368,85,0,1085,'Dark Blue Slim Fit Jeans'),(4369,139,0,1085,'Only & Sons'),(4370,75,0,1086,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>'),(4371,76,0,1086,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(4372,85,0,1086,'Dark Blue Slim Fit Jeans'),(4373,139,0,1086,'Only & Sons'),(4374,75,0,1087,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>'),(4375,76,0,1087,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(4376,85,0,1087,'Dark Blue Slim Fit Jeans'),(4377,139,0,1087,'Only & Sons'),(4378,75,0,1088,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, logo tag on back of waistband<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4379,76,0,1088,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(4380,85,0,1088,'Dark Blue Straight Leg Jeans – 700'),(4381,139,0,1088,'Carrera'),(4382,75,0,1089,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, logo tag on back of waistband<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4383,76,0,1089,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(4384,85,0,1089,'Dark Blue Straight Leg Jeans – 700'),(4385,139,0,1089,'Carrera'),(4386,75,0,1090,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, logo tag on back of waistband<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4387,76,0,1090,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(4388,85,0,1090,'Dark Blue Straight Leg Jeans – 700'),(4389,139,0,1090,'Carrera'),(4390,75,0,1091,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4391,76,0,1091,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(4392,85,0,1091,'Seventy Transitional Jacket'),(4393,139,0,1091,'Cipo & Baxx'),(4394,75,0,1092,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4395,76,0,1092,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(4396,85,0,1092,'Seventy Transitional Jacket'),(4397,139,0,1092,'Cipo & Baxx'),(4398,75,0,1093,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4399,76,0,1093,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(4400,85,0,1093,'Seventy Transitional Jacket'),(4401,139,0,1093,'Cipo & Baxx'),(4402,75,0,1094,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4403,76,0,1094,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(4404,85,0,1094,'Seventy Transitional Jacket'),(4405,139,0,1094,'Cipo & Baxx'),(4406,75,0,1095,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4407,76,0,1095,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(4408,85,0,1095,'Lawrence Grey Rollneck Pullover'),(4409,139,0,1095,'Lawrence Grey'),(4410,75,0,1096,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4411,76,0,1096,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(4412,85,0,1096,'Lawrence Grey Rollneck Pullover'),(4413,139,0,1096,'Lawrence Grey'),(4414,75,0,1097,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4415,76,0,1097,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(4416,85,0,1097,'Lawrence Grey Rollneck Pullover'),(4417,139,0,1097,'Lawrence Grey'),(4418,75,0,1098,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4419,76,0,1098,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(4420,85,0,1098,'Seventy Transitional Jacket'),(4421,139,0,1098,'Boss Orange'),(4422,75,0,1099,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4423,76,0,1099,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(4424,85,0,1099,'Seventy Transitional Jacket'),(4425,139,0,1099,'Boss Orange'),(4426,75,0,1100,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4427,76,0,1100,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(4428,85,0,1100,'Seventy Transitional Jacket'),(4429,139,0,1100,'Boss Orange'),(4430,75,0,1101,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4431,76,0,1101,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(4432,85,0,1101,'Medium Blue Straight Leg Jeans – Rob'),(4433,139,0,1101,'Bogner'),(4434,75,0,1102,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4435,76,0,1102,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(4436,85,0,1102,'Medium Blue Straight Leg Jeans – Rob'),(4437,139,0,1102,'Bogner'),(4438,75,0,1103,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(4439,76,0,1103,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(4440,85,0,1103,'Medium Blue Straight Leg Jeans – Rob'),(4441,139,0,1103,'Bogner'),(4442,75,0,1104,'<p>This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67,5 cm (26.5″)</p>\r\n<p><strong>Collar:</strong> ribbed knit collar</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Exterior pockets:</strong> slit pocket with press stud closure</p>\r\n<p><strong>Interior pockets:</strong> left inside pocket</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 83% polyester, 17% cotton</p>\r\n<p><strong>Lining material:</strong> 98% polyester, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4443,76,0,1104,'<p>Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front.</p>'),(4444,85,0,1104,'Seventy Transitional Jacket'),(4445,139,0,1104,'Diesel'),(4446,75,0,1105,'<p>This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67,5 cm (26.5″)</p>\r\n<p><strong>Collar:</strong> ribbed knit collar</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Exterior pockets:</strong> slit pocket with press stud closure</p>\r\n<p><strong>Interior pockets:</strong> left inside pocket</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 83% polyester, 17% cotton</p>\r\n<p><strong>Lining material:</strong> 98% polyester, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4447,76,0,1105,'<p>Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front.</p>'),(4448,85,0,1105,'Seventy Transitional Jacket'),(4449,139,0,1105,'Diesel'),(4450,75,0,1106,'<p>This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67,5 cm (26.5″)</p>\r\n<p><strong>Collar:</strong> ribbed knit collar</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Exterior pockets:</strong> slit pocket with press stud closure</p>\r\n<p><strong>Interior pockets:</strong> left inside pocket</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 83% polyester, 17% cotton</p>\r\n<p><strong>Lining material:</strong> 98% polyester, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4451,76,0,1106,'<p>Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front.</p>'),(4452,85,0,1106,'Seventy Transitional Jacket'),(4453,139,0,1106,'Diesel'),(4454,75,0,1107,'<p>With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem.</p>\r\n<p><strong>Cut:</strong> tapered, ribbed trim waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> embroidered logo(s)</p>\r\n<p><strong>Pattern:</strong> chequered</p>\r\n<p><strong>Material:</strong> 63% cotton, 27% polyamide, 10% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4455,76,0,1107,'<p>Knit sweater with a round neckline, long sleeves and contrast ribbed trims.</p>'),(4456,85,0,1107,'Lawrence Grey Rollneck Pullover'),(4457,139,0,1107,'Tommy Hilfiger'),(4458,75,0,1108,'<p>With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem.</p>\r\n<p><strong>Cut:</strong> tapered, ribbed trim waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> embroidered logo(s)</p>\r\n<p><strong>Pattern:</strong> chequered</p>\r\n<p><strong>Material:</strong> 63% cotton, 27% polyamide, 10% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4459,76,0,1108,'<p>Knit sweater with a round neckline, long sleeves and contrast ribbed trims.</p>'),(4460,85,0,1108,'Lawrence Grey Rollneck Pullover'),(4461,139,0,1108,'Tommy Hilfiger'),(4462,75,0,1109,'<p>With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem.</p>\r\n<p><strong>Cut:</strong> tapered, ribbed trim waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> embroidered logo(s)</p>\r\n<p><strong>Pattern:</strong> chequered</p>\r\n<p><strong>Material:</strong> 63% cotton, 27% polyamide, 10% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4463,76,0,1109,'<p>Knit sweater with a round neckline, long sleeves and contrast ribbed trims.</p>'),(4464,85,0,1109,'Lawrence Grey Rollneck Pullover'),(4465,139,0,1109,'Tommy Hilfiger'),(4466,75,0,1110,'<p>Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space.</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 70 cm (27.5″), sleeve length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Stand-up collar with integrated hood</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Interior pockets:</strong> inside pockets left and right</p>\r\n<p><strong>Lining:</strong> lined and padded</p>\r\n<p><strong>Material:</strong> 90% polyester, 10% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(4467,76,0,1110,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(4468,85,0,1110,'Seventy Transitional Jacket'),(4469,139,0,1110,'Steinbock'),(4470,75,0,1111,'<p>Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space.</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 70 cm (27.5″), sleeve length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Stand-up collar with integrated hood</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Interior pockets:</strong> inside pockets left and right</p>\r\n<p><strong>Lining:</strong> lined and padded</p>\r\n<p><strong>Material:</strong> 90% polyester, 10% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(4471,76,0,1111,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(4472,85,0,1111,'Seventy Transitional Jacket'),(4473,139,0,1111,'Steinbock'),(4474,75,0,1112,'<p>Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space.</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 70 cm (27.5″), sleeve length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Stand-up collar with integrated hood</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Interior pockets:</strong> inside pockets left and right</p>\r\n<p><strong>Lining:</strong> lined and padded</p>\r\n<p><strong>Material:</strong> 90% polyester, 10% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(4475,76,0,1112,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(4476,85,0,1112,'Seventy Transitional Jacket'),(4477,139,0,1112,'Steinbock'),(4478,75,0,1113,'<p>Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space.</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 70 cm (27.5″), sleeve length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Stand-up collar with integrated hood</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Interior pockets:</strong> inside pockets left and right</p>\r\n<p><strong>Lining:</strong> lined and padded</p>\r\n<p><strong>Material:</strong> 90% polyester, 10% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(4479,76,0,1113,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(4480,85,0,1113,'Seventy Transitional Jacket'),(4481,139,0,1113,'Steinbock'),(4482,75,0,1114,'<p>BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear.</p>\r\n<p><strong>Line:</strong> Puma x Big Sean</p>\r\n<p><strong>Cut:</strong> straight, drawstring hem</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> turn-down collar</p>\r\n<p><strong>Fastening:</strong> continuous snap fastener placket</p>\r\n<p><strong>Sleeve:</strong> elasticated cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> satin, subtle sheen, contrast piping, embroidered logo(s)</p>\r\n<p><strong>Material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4483,76,0,1114,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(4484,85,0,1114,'Seventy Transitional Jacket'),(4485,139,0,1114,'Boss Orange'),(4486,75,0,1115,'<p>BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear.</p>\r\n<p><strong>Line:</strong> Puma x Big Sean</p>\r\n<p><strong>Cut:</strong> straight, drawstring hem</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> turn-down collar</p>\r\n<p><strong>Fastening:</strong> continuous snap fastener placket</p>\r\n<p><strong>Sleeve:</strong> elasticated cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> satin, subtle sheen, contrast piping, embroidered logo(s)</p>\r\n<p><strong>Material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4487,76,0,1115,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(4488,85,0,1115,'Seventy Transitional Jacket'),(4489,139,0,1115,'Boss Orange'),(4490,75,0,1116,'<p>BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear.</p>\r\n<p><strong>Line:</strong> Puma x Big Sean</p>\r\n<p><strong>Cut:</strong> straight, drawstring hem</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> turn-down collar</p>\r\n<p><strong>Fastening:</strong> continuous snap fastener placket</p>\r\n<p><strong>Sleeve:</strong> elasticated cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> satin, subtle sheen, contrast piping, embroidered logo(s)</p>\r\n<p><strong>Material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4491,76,0,1116,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(4492,85,0,1116,'Seventy Transitional Jacket'),(4493,139,0,1116,'Boss Orange'),(4494,75,0,1117,'<p>BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear.</p>\r\n<p><strong>Line:</strong> Puma x Big Sean</p>\r\n<p><strong>Cut:</strong> straight, drawstring hem</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> turn-down collar</p>\r\n<p><strong>Fastening:</strong> continuous snap fastener placket</p>\r\n<p><strong>Sleeve:</strong> elasticated cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> satin, subtle sheen, contrast piping, embroidered logo(s)</p>\r\n<p><strong>Material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(4495,76,0,1117,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(4496,85,0,1117,'Seventy Transitional Jacket'),(4497,139,0,1117,'Boss Orange'),(4498,75,0,1118,'<p>People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>\r\n<p><strong>Cut:</strong> lightly fitted, ribbed waistband</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Chin guard, stand-up collar</p>\r\n<p><strong>Fastening:</strong> continuous two-way zip</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> water resistant zips, air vents under the arms</p>\r\n<p><strong>Outer material:</strong> 89% polyester, 11% elastane</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(4499,76,0,1118,'<p>Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>'),(4500,85,0,1118,'Seventy Transitional Jacket'),(4501,139,0,1118,'People of Shibuya'),(4502,75,0,1119,'<p>People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>\r\n<p><strong>Cut:</strong> lightly fitted, ribbed waistband</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Chin guard, stand-up collar</p>\r\n<p><strong>Fastening:</strong> continuous two-way zip</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> water resistant zips, air vents under the arms</p>\r\n<p><strong>Outer material:</strong> 89% polyester, 11% elastane</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(4503,76,0,1119,'<p>Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>'),(4504,85,0,1119,'Seventy Transitional Jacket'),(4505,139,0,1119,'People of Shibuya'),(4506,75,0,1120,'<p>People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>\r\n<p><strong>Cut:</strong> lightly fitted, ribbed waistband</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Chin guard, stand-up collar</p>\r\n<p><strong>Fastening:</strong> continuous two-way zip</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> water resistant zips, air vents under the arms</p>\r\n<p><strong>Outer material:</strong> 89% polyester, 11% elastane</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(4507,76,0,1120,'<p>Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>'),(4508,85,0,1120,'Seventy Transitional Jacket'),(4509,139,0,1120,'People of Shibuya'),(4510,75,0,1121,'<p>Cut: straight Measurements for size EU M: garment length 74 cm (29″) Collar: hood with drawstring Fastening: full length zip fastener Sleeve: single-button cuffs Exterior pockets: welt pocket(s) with button Lining: lined Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash</p>'),(4511,76,0,1121,'<p>Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket. Fastens in the front with snap buttons.</p>'),(4512,85,0,1121,'Seventy Transitional Jacket'),(4513,139,0,1121,'Jack & Jones'),(4514,75,0,1122,'<p>Cut: straight Measurements for size EU M: garment length 74 cm (29″) Collar: hood with drawstring Fastening: full length zip fastener Sleeve: single-button cuffs Exterior pockets: welt pocket(s) with button Lining: lined Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash</p>'),(4515,76,0,1122,'<p>Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket. Fastens in the front with snap buttons.</p>'),(4516,85,0,1122,'Seventy Transitional Jacket'),(4517,139,0,1122,'Jack & Jones'),(4518,75,0,1123,'<p>Cut: straight Measurements for size EU M: garment length 74 cm (29″) Collar: hood with drawstring Fastening: full length zip fastener Sleeve: single-button cuffs Exterior pockets: welt pocket(s) with button Lining: lined Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash</p>'),(4519,76,0,1123,'<p>Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket. Fastens in the front with snap buttons.</p>'),(4520,85,0,1123,'Seventy Transitional Jacket'),(4521,139,0,1123,'Jack & Jones'),(4522,75,0,1124,'<p>Cut: lightly fitted Measurements for size EU L: garment length 75 cm (29.5″) Collar: stand-up collar, hood with drawstring Fastening: short zip Sleeve: raglan sleeves Exterior pockets: flap pocket(s) with press stud closure Extras: logo patch, embroidered logo(s), internal soft fleece cover Material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU L and is 185cm/6′0″ tall.</p>'),(4523,76,0,1124,'<p>Puffer jacket with down filling. Fastening with front zip and snap buttons.</p>'),(4524,85,0,1124,'Seventy Transitional Jacket'),(4525,139,0,1124,'Hilfiger Denim'),(4526,75,0,1125,'<p>Cut: lightly fitted Measurements for size EU L: garment length 75 cm (29.5″) Collar: stand-up collar, hood with drawstring Fastening: short zip Sleeve: raglan sleeves Exterior pockets: flap pocket(s) with press stud closure Extras: logo patch, embroidered logo(s), internal soft fleece cover Material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU L and is 185cm/6′0″ tall.</p>'),(4527,76,0,1125,'<p>Puffer jacket with down filling. Fastening with front zip and snap buttons.</p>'),(4528,85,0,1125,'Seventy Transitional Jacket'),(4529,139,0,1125,'Hilfiger Denim'),(4530,75,0,1126,'<p>Cut: lightly fitted Measurements for size EU L: garment length 75 cm (29.5″) Collar: stand-up collar, hood with drawstring Fastening: short zip Sleeve: raglan sleeves Exterior pockets: flap pocket(s) with press stud closure Extras: logo patch, embroidered logo(s), internal soft fleece cover Material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU L and is 185cm/6′0″ tall.</p>'),(4531,76,0,1126,'<p>Puffer jacket with down filling. Fastening with front zip and snap buttons.</p>'),(4532,85,0,1126,'Seventy Transitional Jacket'),(4533,139,0,1126,'Hilfiger Denim'),(4534,75,0,1127,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, holes, logo tag on back of waistband<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(4535,76,0,1127,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(4536,85,0,1127,'Grey Slim Fit Jeans Cirrus'),(4537,139,0,1127,'Blend'),(4538,75,0,1128,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, holes, logo tag on back of waistband<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(4539,76,0,1128,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(4540,85,0,1128,'Grey Slim Fit Jeans Cirrus'),(4541,139,0,1128,'Blend'),(4542,75,0,1129,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, holes, logo tag on back of waistband<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(4543,76,0,1129,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(4544,85,0,1129,'Grey Slim Fit Jeans Cirrus'),(4545,139,0,1129,'Blend'),(4546,75,0,1130,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 67% cotton, 30% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(4547,76,0,1130,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit, neppy-look jeans with zip and button fastening and five pockets.<br /><br /></span></p>'),(4548,85,0,1130,'Khaki Straight Leg Jeans Cadiz'),(4549,139,0,1130,'Brax'),(4550,75,0,1131,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 67% cotton, 30% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(4551,76,0,1131,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit, neppy-look jeans with zip and button fastening and five pockets.<br /><br /></span></p>'),(4552,85,0,1131,'Khaki Straight Leg Jeans Cadiz'),(4553,139,0,1131,'Brax'),(4554,75,0,1132,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 67% cotton, 30% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(4555,76,0,1132,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit, neppy-look jeans with zip and button fastening and five pockets.<br /><br /></span></p>'),(4556,85,0,1132,'Khaki Straight Leg Jeans Cadiz'),(4557,139,0,1132,'Brax'),(4558,75,0,1133,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, elasticated leg openings\\nMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: slit pocket/s, side flap pockets, rear flap pocket(s)\\nExtras: logo label\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: tapered leg, elasticated leg openings<br />Measurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)<br />Extras: logo label<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(4559,76,0,1133,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Moss Cargo Pants by Solid&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Moss Cargo Pants by Solid</span></p>'),(4560,85,0,1133,'Moss Cargo Pants'),(4561,139,0,1133,'Solid'),(4562,75,0,1134,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, elasticated leg openings\\nMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: slit pocket/s, side flap pockets, rear flap pocket(s)\\nExtras: logo label\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: tapered leg, elasticated leg openings<br />Measurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)<br />Extras: logo label<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(4563,76,0,1134,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Moss Cargo Pants by Solid&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Moss Cargo Pants by Solid</span></p>'),(4564,85,0,1134,'Moss Cargo Pants'),(4565,139,0,1134,'Solid'),(4566,75,0,1135,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 67% cotton, 30% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(4567,76,0,1135,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit, neppy-look jeans with zip and button fastening and five pockets.<br /><br /></span></p>'),(4568,85,0,1135,'Khaki Straight Leg Jeans Cadiz'),(4569,139,0,1135,'Brax'),(4570,75,0,1136,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 67% cotton, 30% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(4571,76,0,1136,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit, neppy-look jeans with zip and button fastening and five pockets.<br /><br /></span></p>'),(4572,85,0,1136,'Khaki Straight Leg Jeans Cadiz'),(4573,139,0,1136,'Brax'),(4574,75,0,1137,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slightly tapered leg<br />Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 67% cotton, 30% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(4575,76,0,1137,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit, neppy-look jeans with zip and button fastening and five pockets.<br /><br /></span></p>'),(4576,85,0,1137,'Khaki Straight Leg Jeans Cadiz'),(4577,139,0,1137,'Brax'),(4578,75,0,1138,'<p>Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4579,76,0,1138,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(4580,85,0,1138,'Lawrence Grey Rollneck Pullover'),(4581,139,0,1138,'81 Hours'),(4582,75,0,1139,'<p>Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4583,76,0,1139,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(4584,85,0,1139,'Lawrence Grey Rollneck Pullover'),(4585,139,0,1139,'81 Hours'),(4586,75,0,1140,'<p>Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4587,76,0,1140,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(4588,85,0,1140,'Lawrence Grey Rollneck Pullover'),(4589,139,0,1140,'81 Hours'),(4590,75,0,1141,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(4591,76,0,1141,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(4592,85,0,1141,'Boyfriend Jeans'),(4593,139,0,1141,'Capital B'),(4594,75,0,1142,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(4595,76,0,1142,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(4596,85,0,1142,'Boyfriend Jeans'),(4597,139,0,1142,'Capital B'),(4598,75,0,1143,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(4599,76,0,1143,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(4600,85,0,1143,'Boyfriend Jeans'),(4601,139,0,1143,'Capital B'),(4602,75,0,1144,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(4603,76,0,1144,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(4604,85,0,1144,'Boyfriend Jeans'),(4605,139,0,1144,'Capital B'),(4606,75,0,1145,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(4607,76,0,1145,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(4608,85,0,1145,'Brax Chuck Slim Fit'),(4609,139,0,1145,'Brax Feel Good '),(4610,75,0,1146,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(4611,76,0,1146,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(4612,85,0,1146,'Brax Chuck Slim Fit'),(4613,139,0,1146,'Brax Feel Good '),(4614,75,0,1147,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(4615,76,0,1147,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(4616,85,0,1147,'Brax Chuck Slim Fit'),(4617,139,0,1147,'Brax Feel Good '),(4618,75,0,1148,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(4619,76,0,1148,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(4620,85,0,1148,'Business Trousers'),(4621,139,0,1148,'Escada'),(4622,75,0,1149,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(4623,76,0,1149,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(4624,85,0,1149,'Business Trousers'),(4625,139,0,1149,'Escada'),(4626,75,0,1150,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(4627,76,0,1150,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(4628,85,0,1150,'Business Trousers'),(4629,139,0,1150,'Escada'),(4630,75,0,1151,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(4631,76,0,1151,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(4632,85,0,1151,'Business Trousers'),(4633,139,0,1151,'Escada'),(4634,75,0,1152,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(4635,76,0,1152,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(4636,85,0,1152,'Seventy Transitional Jacket'),(4637,139,0,1152,'Calvin Klein Jeans'),(4638,75,0,1153,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(4639,76,0,1153,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(4640,85,0,1153,'Seventy Transitional Jacket'),(4641,139,0,1153,'Calvin Klein Jeans'),(4642,75,0,1154,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(4643,76,0,1154,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(4644,85,0,1154,'Seventy Transitional Jacket'),(4645,139,0,1154,'Calvin Klein Jeans'),(4646,75,0,1155,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(4647,76,0,1155,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(4648,85,0,1155,'Seventy Transitional Jacket'),(4649,139,0,1155,'Calvin Klein Jeans'),(4650,75,0,1156,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(4651,76,0,1156,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(4652,85,0,1156,'Casual Trousers'),(4653,139,0,1156,'Kaffe'),(4654,75,0,1157,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(4655,76,0,1157,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(4656,85,0,1157,'Casual Trousers'),(4657,139,0,1157,'Kaffe'),(4658,75,0,1158,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(4659,76,0,1158,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(4660,85,0,1158,'Casual Trousers'),(4661,139,0,1158,'Kaffe'),(4662,75,0,1159,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(4663,76,0,1159,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(4664,85,0,1159,'Casual Trousers'),(4665,139,0,1159,'Kaffe'),(4666,75,0,1160,'<ul>\r\n<li style=\"list-style-type: none;\">\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(4667,76,0,1160,'<p>V-neck dress featuring sleeves falling below the elbow with turn-up detail, pleats at the waist, side in-seam pockets and front button fastening.</p>'),(4668,85,0,1160,'Sequin Dress'),(4669,139,0,1160,'United colors of Benetton'),(4670,75,0,1161,'<ul>\r\n<li style=\"list-style-type: none;\">\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(4671,76,0,1161,'<p>V-neck dress featuring sleeves falling below the elbow with turn-up detail, pleats at the waist, side in-seam pockets and front button fastening.</p>'),(4672,85,0,1161,'Sequin Dress'),(4673,139,0,1161,'United colors of Benetton'),(4674,75,0,1162,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nExtras: logo appliqué(s)\\nPattern: solid-coloured\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Extras: logo appliqué(s)<br />Pattern: solid-coloured<br />Material: 100% cotton<br />Manufacturer\'s care instructions: machine wash</span></p>'),(4675,76,0,1162,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8395587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;9&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,5526612],&quot;15&quot;:&quot;arial, sans-serif&quot;,&quot;26&quot;:400}\">An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection</span></p>'),(4676,85,0,1162,'Chino'),(4677,139,0,1162,'Scout'),(4678,75,0,1163,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nExtras: logo appliqué(s)\\nPattern: solid-coloured\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Extras: logo appliqué(s)<br />Pattern: solid-coloured<br />Material: 100% cotton<br />Manufacturer\'s care instructions: machine wash</span></p>'),(4679,76,0,1163,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8395587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;9&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,5526612],&quot;15&quot;:&quot;arial, sans-serif&quot;,&quot;26&quot;:400}\">An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection</span></p>'),(4680,85,0,1163,'Chino'),(4681,139,0,1163,'Scout'),(4682,75,0,1164,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(4683,76,0,1164,'<p>Round neck knit dress with short flared sleeves and slit.</p>'),(4684,85,0,1164,'Sequin Dress'),(4685,139,0,1164,'Vera Mont'),(4686,75,0,1165,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(4687,76,0,1165,'<p>Round neck knit dress with short flared sleeves and slit.</p>'),(4688,85,0,1165,'Sequin Dress'),(4689,139,0,1165,'Vera Mont'),(4690,75,0,1166,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(4691,76,0,1166,'<p>Round neck knit dress with short flared sleeves and slit.</p>'),(4692,85,0,1166,'Sequin Dress'),(4693,139,0,1166,'Vera Mont'),(4694,75,0,1167,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(4695,76,0,1167,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(4696,85,0,1167,'Seventy Transitional Jacket'),(4697,139,0,1167,'Colmar'),(4698,75,0,1168,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(4699,76,0,1168,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(4700,85,0,1168,'Seventy Transitional Jacket'),(4701,139,0,1168,'Colmar'),(4702,75,0,1169,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(4703,76,0,1169,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(4704,85,0,1169,'Seventy Transitional Jacket'),(4705,139,0,1169,'Colmar'),(4706,75,0,1170,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(4707,76,0,1170,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(4708,85,0,1170,'Seventy Transitional Jacket'),(4709,139,0,1170,'Colmar'),(4710,75,0,1171,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(4711,76,0,1171,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(4712,85,0,1171,'Seventy Transitional Jacket'),(4713,139,0,1171,'Comma'),(4714,75,0,1172,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(4715,76,0,1172,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(4716,85,0,1172,'Seventy Transitional Jacket'),(4717,139,0,1172,'Comma'),(4718,75,0,1173,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(4719,76,0,1173,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(4720,85,0,1173,'Seventy Transitional Jacket'),(4721,139,0,1173,'Comma'),(4722,75,0,1174,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(4723,76,0,1174,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(4724,85,0,1174,'Seventy Transitional Jacket'),(4725,139,0,1174,'Comma'),(4726,75,0,1175,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(4727,76,0,1175,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(4728,85,0,1175,'Cotton-Stretch Tapered Pants'),(4729,139,0,1175,'Escada'),(4730,75,0,1176,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(4731,76,0,1176,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(4732,85,0,1176,'Cotton-Stretch Tapered Pants'),(4733,139,0,1176,'Escada'),(4734,75,0,1177,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(4735,76,0,1177,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(4736,85,0,1177,'Cotton-Stretch Tapered Pants'),(4737,139,0,1177,'Escada'),(4738,75,0,1178,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(4739,76,0,1178,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(4740,85,0,1178,'Cotton-Stretch Tapered Pants'),(4741,139,0,1178,'Escada'),(4742,75,0,1179,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(4743,76,0,1179,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(4744,85,0,1179,'Cotton-Stretch Tapered Pants'),(4745,139,0,1179,'Escada'),(4746,75,0,1180,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4747,76,0,1180,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(4748,85,0,1180,'Seventy Transitional Jacket'),(4749,139,0,1180,'Dolomite'),(4750,75,0,1181,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4751,76,0,1181,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(4752,85,0,1181,'Seventy Transitional Jacket'),(4753,139,0,1181,'Dolomite'),(4754,75,0,1182,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4755,76,0,1182,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(4756,85,0,1182,'Seventy Transitional Jacket'),(4757,139,0,1182,'Dolomite'),(4758,75,0,1183,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4759,76,0,1183,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(4760,85,0,1183,'Seventy Transitional Jacket'),(4761,139,0,1183,'Dolomite'),(4762,75,0,1184,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs\\nMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)\\nWaistband: elasticated waistband, zip with button on cuff\\nExtras: weaving pattern, solid-coloured, crease in front\\nPattern: patterned\\nMaterial: 53% cotton, 44% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight, narrow legs<br />Measurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)<br />Waistband: elasticated waistband, zip with button on cuff<br />Extras: weaving pattern, solid-coloured, crease in front<br />Pattern: patterned<br />Material: 53% cotton, 44% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(4763,76,0,1184,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease </span></p>'),(4764,85,0,1184,'Dress Trousers'),(4765,139,0,1184,'Gardeur'),(4766,75,0,1185,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs\\nMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)\\nWaistband: elasticated waistband, zip with button on cuff\\nExtras: weaving pattern, solid-coloured, crease in front\\nPattern: patterned\\nMaterial: 53% cotton, 44% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight, narrow legs<br />Measurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)<br />Waistband: elasticated waistband, zip with button on cuff<br />Extras: weaving pattern, solid-coloured, crease in front<br />Pattern: patterned<br />Material: 53% cotton, 44% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(4767,76,0,1185,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease </span></p>'),(4768,85,0,1185,'Dress Trousers'),(4769,139,0,1185,'Gardeur'),(4770,75,0,1186,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs\\nMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)\\nWaistband: elasticated waistband, zip with button on cuff\\nExtras: weaving pattern, solid-coloured, crease in front\\nPattern: patterned\\nMaterial: 53% cotton, 44% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight, narrow legs<br />Measurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)<br />Waistband: elasticated waistband, zip with button on cuff<br />Extras: weaving pattern, solid-coloured, crease in front<br />Pattern: patterned<br />Material: 53% cotton, 44% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(4771,76,0,1186,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease </span></p>'),(4772,85,0,1186,'Dress Trousers'),(4773,139,0,1186,'Gardeur'),(4774,75,0,1187,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(4775,76,0,1187,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(4776,85,0,1187,'Seventy Transitional Jacket'),(4777,139,0,1187,'Escada'),(4778,75,0,1188,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(4779,76,0,1188,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(4780,85,0,1188,'Seventy Transitional Jacket'),(4781,139,0,1188,'Escada'),(4782,75,0,1189,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(4783,76,0,1189,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(4784,85,0,1189,'Seventy Transitional Jacket'),(4785,139,0,1189,'Escada'),(4786,75,0,1190,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(4787,76,0,1190,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(4788,85,0,1190,'Seventy Transitional Jacket'),(4789,139,0,1190,'Escada'),(4790,75,0,1191,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(4791,76,0,1191,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(4792,85,0,1191,'Black Chino'),(4793,139,0,1191,'Steve Madden'),(4794,75,0,1192,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(4795,76,0,1192,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(4796,85,0,1192,'Black Chino'),(4797,139,0,1192,'Steve Madden'),(4798,75,0,1193,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(4799,76,0,1193,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(4800,85,0,1193,'Black Chino'),(4801,139,0,1193,'Steve Madden'),(4802,75,0,1194,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(4803,76,0,1194,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(4804,85,0,1194,'Black Chino'),(4805,139,0,1194,'Steve Madden'),(4806,75,0,1195,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(4807,76,0,1195,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(4808,85,0,1195,'Black Chino'),(4809,139,0,1195,'Steve Madden'),(4810,75,0,1196,'<p>Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4811,76,0,1196,'<p>Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back.</p>'),(4812,85,0,1196,'UNQ Linen Dress'),(4813,139,0,1196,'Just me'),(4814,75,0,1197,'<p>Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4815,76,0,1197,'<p>Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back.</p>'),(4816,85,0,1197,'UNQ Linen Dress'),(4817,139,0,1197,'Just me'),(4818,75,0,1198,'<p>Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4819,76,0,1198,'<p>Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back.</p>'),(4820,85,0,1198,'UNQ Linen Dress'),(4821,139,0,1198,'Just me'),(4822,75,0,1199,'<ul>\r\n<li style=\"list-style-type: none;\">\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(4823,76,0,1199,'<p>Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front.</p>'),(4824,85,0,1199,'Sequin Dress'),(4825,139,0,1199,'Lace Dress'),(4826,75,0,1200,'<ul>\r\n<li style=\"list-style-type: none;\">\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(4827,76,0,1200,'<p>Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front.</p>'),(4828,85,0,1200,'Sequin Dress'),(4829,139,0,1200,'Lace Dress'),(4830,75,0,1201,'<ul>\r\n<li style=\"list-style-type: none;\">\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(4831,76,0,1201,'<p>Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front.</p>'),(4832,85,0,1201,'Sequin Dress'),(4833,139,0,1201,'Lace Dress'),(4834,75,0,1202,'<p>Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4835,76,0,1202,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(4836,85,0,1202,'Lawrence Grey Rollneck Pullover'),(4837,139,0,1202,'Lawrence Grey'),(4838,75,0,1203,'<p>Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4839,76,0,1203,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(4840,85,0,1203,'Lawrence Grey Rollneck Pullover'),(4841,139,0,1203,'Lawrence Grey'),(4842,75,0,1204,'<p>Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4843,76,0,1204,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(4844,85,0,1204,'Lawrence Grey Rollneck Pullover'),(4845,139,0,1204,'Lawrence Grey'),(4846,75,0,1205,'<p>Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4847,76,0,1205,'<p>Dress with generous pleats and slightly flared skirt.</p>'),(4848,85,0,1205,'UNQ Linen Dress'),(4849,139,0,1205,'Lawrence Grey'),(4850,75,0,1206,'<p>Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4851,76,0,1206,'<p>Dress with generous pleats and slightly flared skirt.</p>'),(4852,85,0,1206,'UNQ Linen Dress'),(4853,139,0,1206,'Lawrence Grey'),(4854,75,0,1207,'<p>Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4855,76,0,1207,'<p>Dress with generous pleats and slightly flared skirt.</p>'),(4856,85,0,1207,'UNQ Linen Dress'),(4857,139,0,1207,'Lawrence Grey'),(4858,75,0,1208,'<p>Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(4859,76,0,1208,'<p>Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow.</p>'),(4860,85,0,1208,'UNQ Linen Dress'),(4861,139,0,1208,'Max & Co.'),(4862,75,0,1209,'<p>Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(4863,76,0,1209,'<p>Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow.</p>'),(4864,85,0,1209,'UNQ Linen Dress'),(4865,139,0,1209,'Max & Co.'),(4866,75,0,1210,'<p>Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(4867,76,0,1210,'<p>Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow.</p>'),(4868,85,0,1210,'UNQ Linen Dress'),(4869,139,0,1210,'Max & Co.'),(4870,75,0,1211,'<p>Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4871,76,0,1211,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(4872,85,0,1211,'Lawrence Grey Rollneck Pullover'),(4873,139,0,1211,'Max Tonso'),(4874,75,0,1212,'<p>Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4875,76,0,1212,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(4876,85,0,1212,'Lawrence Grey Rollneck Pullover'),(4877,139,0,1212,'Max Tonso'),(4878,75,0,1213,'<p>Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(4879,76,0,1213,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(4880,85,0,1213,'Lawrence Grey Rollneck Pullover'),(4881,139,0,1213,'Max Tonso'),(4882,75,0,1214,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(4883,76,0,1214,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(4884,85,0,1214,'Black Chino'),(4885,139,0,1214,'Elvio Zanon'),(4886,75,0,1215,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(4887,76,0,1215,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(4888,85,0,1215,'Black Chino'),(4889,139,0,1215,'Elvio Zanon'),(4890,75,0,1216,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(4891,76,0,1216,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(4892,85,0,1216,'Black Chino'),(4893,139,0,1216,'Elvio Zanon'),(4894,75,0,1217,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(4895,76,0,1217,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(4896,85,0,1217,'Black Chino'),(4897,139,0,1217,'Elvio Zanon'),(4898,75,0,1218,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(4899,76,0,1218,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(4900,85,0,1218,'Black Chino'),(4901,139,0,1218,'Elvio Zanon'),(4902,75,0,1219,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.\\n\\nRegular fit \\nTrendy colour and popular pattern\\nTied waist \\nBusiness-Casual pants\\n\\n65% Polyester,32% Viscose,3% Elastane&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.<br /><br />Regular fit <br />Trendy colour and popular pattern<br />Tied waist <br />Business-Casual pants<br /><br />65% Polyester,32% Viscose,3% Elastane</span></p>'),(4903,76,0,1219,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.</span></p>'),(4904,85,0,1219,'Pale Belt Pants '),(4905,139,0,1219,'Kaffe'),(4906,75,0,1220,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.\\n\\nRegular fit \\nTrendy colour and popular pattern\\nTied waist \\nBusiness-Casual pants\\n\\n65% Polyester,32% Viscose,3% Elastane&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.<br /><br />Regular fit <br />Trendy colour and popular pattern<br />Tied waist <br />Business-Casual pants<br /><br />65% Polyester,32% Viscose,3% Elastane</span></p>'),(4907,76,0,1220,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.</span></p>'),(4908,85,0,1220,'Pale Belt Pants '),(4909,139,0,1220,'Kaffe'),(4910,75,0,1221,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.\\n\\nRegular fit \\nTrendy colour and popular pattern\\nTied waist \\nBusiness-Casual pants\\n\\n65% Polyester,32% Viscose,3% Elastane&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.<br /><br />Regular fit <br />Trendy colour and popular pattern<br />Tied waist <br />Business-Casual pants<br /><br />65% Polyester,32% Viscose,3% Elastane</span></p>'),(4911,76,0,1221,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.</span></p>'),(4912,85,0,1221,'Pale Belt Pants '),(4913,139,0,1221,'Kaffe'),(4914,75,0,1222,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(4915,76,0,1222,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(4916,85,0,1222,'Pumps'),(4917,139,0,1222,'DKNY'),(4918,75,0,1223,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(4919,76,0,1223,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(4920,85,0,1223,'Pumps'),(4921,139,0,1223,'DKNY'),(4922,75,0,1224,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(4923,76,0,1224,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(4924,85,0,1224,'Pumps'),(4925,139,0,1224,'DKNY'),(4926,75,0,1225,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(4927,76,0,1225,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(4928,85,0,1225,'Pumps'),(4929,139,0,1225,'DKNY'),(4930,75,0,1226,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(4931,76,0,1226,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(4932,85,0,1226,'Pumps'),(4933,139,0,1226,'DKNY'),(4934,75,0,1227,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(4935,76,0,1227,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(4936,85,0,1227,'Pumps'),(4937,139,0,1227,'DKNY'),(4938,75,0,1228,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(4939,76,0,1228,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(4940,85,0,1228,'Seventy Transitional Jacket'),(4941,139,0,1228,'Rino & Pelle'),(4942,75,0,1229,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(4943,76,0,1229,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(4944,85,0,1229,'Seventy Transitional Jacket'),(4945,139,0,1229,'Rino & Pelle'),(4946,75,0,1230,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(4947,76,0,1230,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(4948,85,0,1230,'Seventy Transitional Jacket'),(4949,139,0,1230,'Rino & Pelle'),(4950,75,0,1231,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(4951,76,0,1231,'<p>Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip.</p>'),(4952,85,0,1231,'Sequin Dress'),(4953,139,0,1231,'Vera Mont'),(4954,75,0,1232,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(4955,76,0,1232,'<p>Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip.</p>'),(4956,85,0,1232,'Sequin Dress'),(4957,139,0,1232,'Vera Mont'),(4958,75,0,1233,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(4959,76,0,1233,'<p>Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip.</p>'),(4960,85,0,1233,'Sequin Dress'),(4961,139,0,1233,'Vera Mont'),(4962,85,0,1234,'Seventy Transitional Jacket'),(4963,139,0,1234,'Seventy'),(4964,85,0,1235,'Seventy Transitional Jacket'),(4965,139,0,1235,'Seventy'),(4966,85,0,1236,'Seventy Transitional Jacket'),(4967,139,0,1236,'Seventy'),(4968,85,0,1237,'Seventy Transitional Jacket'),(4969,139,0,1237,'Seventy'),(4970,85,0,1238,'Slim Fit Jeans'),(4971,139,0,1238,'Bench'),(4972,85,0,1239,'Slim Fit Jeans'),(4973,139,0,1239,'Bench'),(4974,85,0,1240,'Slim Fit Jeans'),(4975,139,0,1240,'Bench'),(4976,85,0,1241,'Slim Fit Jeans'),(4977,139,0,1241,'Bench'),(4978,75,0,1242,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /><br /></span></p>'),(4979,76,0,1242,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(4980,85,0,1242,'Slim Fit Jeans – Eline'),(4981,139,0,1242,'Eksept'),(4982,75,0,1243,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /><br /></span></p>'),(4983,76,0,1243,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(4984,85,0,1243,'Slim Fit Jeans – Eline'),(4985,139,0,1243,'Eksept'),(4986,75,0,1244,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /><br /></span></p>'),(4987,76,0,1244,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(4988,85,0,1244,'Slim Fit Jeans – Eline'),(4989,139,0,1244,'Eksept'),(4990,75,0,1245,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /><br /></span></p>'),(4991,76,0,1245,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(4992,85,0,1245,'Slim Fit Jeans – Eline'),(4993,139,0,1245,'Eksept'),(4994,75,0,1246,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /><br /></span></p>'),(4995,76,0,1246,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(4996,85,0,1246,'Slim Fit Jeans – Eline'),(4997,139,0,1246,'Eksept'),(4998,75,0,1247,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(4999,76,0,1247,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(5000,85,0,1247,'Black Chino'),(5001,139,0,1247,'Hammerstein'),(5002,75,0,1248,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5003,76,0,1248,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(5004,85,0,1248,'Black Chino'),(5005,139,0,1248,'Hammerstein'),(5006,75,0,1249,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5007,76,0,1249,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(5008,85,0,1249,'Black Chino'),(5009,139,0,1249,'Hammerstein'),(5010,75,0,1250,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5011,76,0,1250,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(5012,85,0,1250,'Black Chino'),(5013,139,0,1250,'Hammerstein'),(5014,75,0,1251,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(5015,76,0,1251,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(5016,85,0,1251,'Black Chino'),(5017,139,0,1251,'Kennel & Schmenger'),(5018,75,0,1252,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(5019,76,0,1252,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(5020,85,0,1252,'Black Chino'),(5021,139,0,1252,'Kennel & Schmenger'),(5022,75,0,1253,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(5023,76,0,1253,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(5024,85,0,1253,'Black Chino'),(5025,139,0,1253,'Kennel & Schmenger'),(5026,75,0,1254,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(5027,76,0,1254,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(5028,85,0,1254,'Black Chino'),(5029,139,0,1254,'Kennel & Schmenger'),(5030,75,0,1255,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(5031,76,0,1255,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(5032,85,0,1255,'Black Chino'),(5033,139,0,1255,'Kennel & Schmenger'),(5034,75,0,1256,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(5035,76,0,1256,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(5036,85,0,1256,'Black Chino'),(5037,139,0,1256,'Kennel & Schmenger'),(5038,75,0,1257,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(5039,76,0,1257,'<p><span style=\"font-size: 11pt; font-family: Arial; font-weight: 300; font-style: normal; color: #222222;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(5040,85,0,1257,'Slim Fit Jeans – Jane'),(5041,139,0,1257,'Broadway NYC Fashion'),(5042,75,0,1258,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(5043,76,0,1258,'<p><span style=\"font-size: 11pt; font-family: Arial; font-weight: 300; font-style: normal; color: #222222;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(5044,85,0,1258,'Slim Fit Jeans – Jane'),(5045,139,0,1258,'Broadway NYC Fashion'),(5046,75,0,1259,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(5047,76,0,1259,'<p><span style=\"font-size: 11pt; font-family: Arial; font-weight: 300; font-style: normal; color: #222222;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(5048,85,0,1259,'Slim Fit Jeans – Jane'),(5049,139,0,1259,'Broadway NYC Fashion'),(5050,75,0,1260,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(5051,76,0,1260,'<p><span style=\"font-size: 11pt; font-family: Arial; font-weight: 300; font-style: normal; color: #222222;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(5052,85,0,1260,'Slim Fit Jeans – Jane'),(5053,139,0,1260,'Broadway NYC Fashion'),(5054,75,0,1261,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5055,76,0,1261,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(5056,85,0,1261,'Black Chino'),(5057,139,0,1261,'Adidas'),(5058,75,0,1262,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5059,76,0,1262,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(5060,85,0,1262,'Black Chino'),(5061,139,0,1262,'Adidas'),(5062,75,0,1263,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5063,76,0,1263,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(5064,85,0,1263,'Black Chino'),(5065,139,0,1263,'Adidas'),(5066,75,0,1264,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5067,76,0,1264,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(5068,85,0,1264,'Black Chino'),(5069,139,0,1264,'Adidas'),(5070,75,0,1265,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5071,76,0,1265,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(5072,85,0,1265,'Black Chino'),(5073,139,0,1265,'Adidas'),(5074,75,0,1266,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5075,76,0,1266,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(5076,85,0,1266,'Black Chino'),(5077,139,0,1266,'Rapid Soul'),(5078,75,0,1267,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5079,76,0,1267,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(5080,85,0,1267,'Black Chino'),(5081,139,0,1267,'Rapid Soul'),(5082,75,0,1268,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5083,76,0,1268,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(5084,85,0,1268,'Black Chino'),(5085,139,0,1268,'Rapid Soul'),(5086,75,0,1269,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5087,76,0,1269,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(5088,85,0,1269,'Black Chino'),(5089,139,0,1269,'Rapid Soul'),(5090,75,0,1270,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5091,76,0,1270,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(5092,85,0,1270,'Black Chino'),(5093,139,0,1270,'Rapid Soul'),(5094,75,0,1271,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5095,76,0,1271,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles<br /><br /></p>'),(5096,85,0,1271,'Black Chino'),(5097,139,0,1271,'Rapid Soul'),(5098,75,0,1272,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5099,76,0,1272,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(5100,85,0,1272,'Black Chino'),(5101,139,0,1272,'Adidas'),(5102,75,0,1273,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5103,76,0,1273,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(5104,85,0,1273,'Black Chino'),(5105,139,0,1273,'Adidas'),(5106,75,0,1274,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5107,76,0,1274,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(5108,85,0,1274,'Black Chino'),(5109,139,0,1274,'Adidas'),(5110,75,0,1275,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5111,76,0,1275,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(5112,85,0,1275,'Black Chino'),(5113,139,0,1275,'Adidas'),(5114,75,0,1276,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5115,76,0,1276,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(5116,85,0,1276,'Black Chino'),(5117,139,0,1276,'Adidas'),(5118,75,0,1277,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5119,76,0,1277,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(5120,85,0,1277,'Black Chino'),(5121,139,0,1277,'Adidas'),(5122,75,0,1278,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5123,76,0,1278,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(5124,85,0,1278,'Black Chino'),(5125,139,0,1278,'Adidas'),(5126,75,0,1279,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(5127,76,0,1279,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.<br /><br /></p>'),(5128,85,0,1279,'Black Chino'),(5129,139,0,1279,'Adidas'),(5130,75,0,1280,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(5131,76,0,1280,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.<br /></span></p>'),(5132,85,0,1280,'Straight Leg Jeans'),(5133,139,0,1280,'S.Oliver'),(5134,75,0,1281,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(5135,76,0,1281,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.<br /></span></p>'),(5136,85,0,1281,'Straight Leg Jeans'),(5137,139,0,1281,'S.Oliver'),(5138,75,0,1282,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(5139,76,0,1282,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.<br /></span></p>'),(5140,85,0,1282,'Straight Leg Jeans'),(5141,139,0,1282,'S.Oliver'),(5142,75,0,1283,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(5143,76,0,1283,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.<br /></span></p>'),(5144,85,0,1283,'Straight Leg Jeans'),(5145,139,0,1283,'S.Oliver'),(5146,75,0,1284,'<p>Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(5147,76,0,1284,'<p>Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem.</p>'),(5148,85,0,1284,'Seventy Transitional Jacket'),(5149,139,0,1284,'Strenesse'),(5150,75,0,1285,'<p>Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(5151,76,0,1285,'<p>Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem.</p>'),(5152,85,0,1285,'Seventy Transitional Jacket'),(5153,139,0,1285,'Strenesse'),(5154,75,0,1286,'<p>Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(5155,76,0,1286,'<p>Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem.</p>'),(5156,85,0,1286,'Seventy Transitional Jacket'),(5157,139,0,1286,'Strenesse'),(5158,75,0,1287,'<p>Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(5159,76,0,1287,'<p>Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front.</p>'),(5160,85,0,1287,'Seventy Transitional Jacket'),(5161,139,0,1287,'Black Swan'),(5162,75,0,1288,'<p>Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(5163,76,0,1288,'<p>Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front.</p>'),(5164,85,0,1288,'Seventy Transitional Jacket'),(5165,139,0,1288,'Black Swan'),(5166,75,0,1289,'<p>Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(5167,76,0,1289,'<p>Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front.</p>'),(5168,85,0,1289,'Seventy Transitional Jacket'),(5169,139,0,1289,'Black Swan'),(5170,75,0,1290,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(5171,76,0,1290,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(5172,85,0,1290,'Sweat Pants'),(5173,139,0,1290,'Cotton Candy'),(5174,75,0,1291,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(5175,76,0,1291,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(5176,85,0,1291,'Sweat Pants'),(5177,139,0,1291,'Cotton Candy'),(5178,75,0,1292,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(5179,76,0,1292,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(5180,85,0,1292,'Sweat Pants'),(5181,139,0,1292,'Cotton Candy'),(5182,75,0,1293,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.\\n\\nManufacturers product information: medium body height\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: front mock pocket(s), back patch pocket(s)\\nExtras: stretch quality, open/frayed hem\\nMaterial: 85% cotton, 11% polyester, 4% elastane\\nManufacturer\'s care instructions: machine wash\\nPlease note: Här handlar det om en 2. val artikel.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.<br /><br />Manufacturers product information: medium body height<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: front mock pocket(s), back patch pocket(s)<br />Extras: stretch quality, open/frayed hem<br />Material: 85% cotton, 11% polyester, 4% elastane<br />Manufacturer\'s care instructions: machine wash<br />Please note: Här handlar det om en 2. val artikel.<br /></span></p>'),(5183,76,0,1293,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.</span></p>'),(5184,85,0,1293,'The Skinny Crop'),(5185,139,0,1293,'7 for all Mankind'),(5186,75,0,1294,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.\\n\\nManufacturers product information: medium body height\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: front mock pocket(s), back patch pocket(s)\\nExtras: stretch quality, open/frayed hem\\nMaterial: 85% cotton, 11% polyester, 4% elastane\\nManufacturer\'s care instructions: machine wash\\nPlease note: Här handlar det om en 2. val artikel.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.<br /><br />Manufacturers product information: medium body height<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: front mock pocket(s), back patch pocket(s)<br />Extras: stretch quality, open/frayed hem<br />Material: 85% cotton, 11% polyester, 4% elastane<br />Manufacturer\'s care instructions: machine wash<br />Please note: Här handlar det om en 2. val artikel.<br /></span></p>'),(5187,76,0,1294,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.</span></p>'),(5188,85,0,1294,'The Skinny Crop'),(5189,139,0,1294,'7 for all Mankind'),(5190,75,0,1295,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.\\n\\nManufacturers product information: medium body height\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: front mock pocket(s), back patch pocket(s)\\nExtras: stretch quality, open/frayed hem\\nMaterial: 85% cotton, 11% polyester, 4% elastane\\nManufacturer\'s care instructions: machine wash\\nPlease note: Här handlar det om en 2. val artikel.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.<br /><br />Manufacturers product information: medium body height<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: front mock pocket(s), back patch pocket(s)<br />Extras: stretch quality, open/frayed hem<br />Material: 85% cotton, 11% polyester, 4% elastane<br />Manufacturer\'s care instructions: machine wash<br />Please note: Här handlar det om en 2. val artikel.<br /></span></p>'),(5191,76,0,1295,'<p><span style=\"font-size: 10pt; font-family: Arial; font-style: normal;\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.</span></p>'),(5192,85,0,1295,'The Skinny Crop'),(5193,139,0,1295,'7 for all Mankind'),(5194,75,0,1296,'<p>Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(5195,76,0,1296,'<p>Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt.</p>'),(5196,85,0,1296,'UNQ Linen Dress'),(5197,139,0,1296,'United Colors of Benetton'),(5198,75,0,1297,'<p>Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(5199,76,0,1297,'<p>Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt.</p>'),(5200,85,0,1297,'UNQ Linen Dress'),(5201,139,0,1297,'United Colors of Benetton'),(5202,75,0,1298,'<p>Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(5203,76,0,1298,'<p>Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt.</p>'),(5204,85,0,1298,'UNQ Linen Dress'),(5205,139,0,1298,'United Colors of Benetton'),(5206,75,0,1299,'<p>Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(5207,76,0,1299,'<p>Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail.</p>'),(5208,85,0,1299,'UNQ Linen Dress'),(5209,139,0,1299,'UNQ'),(5210,75,0,1300,'<p>Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(5211,76,0,1300,'<p>Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail.</p>'),(5212,85,0,1300,'UNQ Linen Dress'),(5213,139,0,1300,'UNQ'),(5214,75,0,1301,'<p>Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(5215,76,0,1301,'<p>Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail.</p>'),(5216,85,0,1301,'UNQ Linen Dress'),(5217,139,0,1301,'UNQ'),(5218,75,0,1302,'<p>Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(5219,76,0,1302,'<p>Short flowing round-neck dress with short sleeves.</p>'),(5220,85,0,1302,'UNQ Linen Dress'),(5221,139,0,1302,'Weise'),(5222,75,0,1303,'<p>Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(5223,76,0,1303,'<p>Short flowing round-neck dress with short sleeves.</p>'),(5224,85,0,1303,'UNQ Linen Dress'),(5225,139,0,1303,'Weise'),(5226,75,0,1304,'<p>Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(5227,76,0,1304,'<p>Short flowing round-neck dress with short sleeves.</p>'),(5228,85,0,1304,'UNQ Linen Dress'),(5229,139,0,1304,'Weise'),(5230,75,0,1305,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Concealed front hook, button and zip closure\\nDetachable leather strap\\nTwo side pockets\\nUnlined\\nSample size: 42\\nJersey fabric: 100% virgin wool; With details in cattle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Concealed front hook, button and zip closure<br />Detachable leather strap<br />Two side pockets<br />Unlined<br />Sample size: 42<br />Jersey fabric: 100% virgin wool; With details in cattle.</span></p>'),(5231,76,0,1305,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. </span></p>'),(5232,85,0,1305,'Wool jersey trousers'),(5233,139,0,1305,'Max Mara'),(5234,75,0,1306,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Concealed front hook, button and zip closure\\nDetachable leather strap\\nTwo side pockets\\nUnlined\\nSample size: 42\\nJersey fabric: 100% virgin wool; With details in cattle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Concealed front hook, button and zip closure<br />Detachable leather strap<br />Two side pockets<br />Unlined<br />Sample size: 42<br />Jersey fabric: 100% virgin wool; With details in cattle.</span></p>'),(5235,76,0,1306,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. </span></p>'),(5236,85,0,1306,'Wool jersey trousers'),(5237,139,0,1306,'Max Mara'),(5238,75,0,1307,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Concealed front hook, button and zip closure\\nDetachable leather strap\\nTwo side pockets\\nUnlined\\nSample size: 42\\nJersey fabric: 100% virgin wool; With details in cattle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Concealed front hook, button and zip closure<br />Detachable leather strap<br />Two side pockets<br />Unlined<br />Sample size: 42<br />Jersey fabric: 100% virgin wool; With details in cattle.</span></p>'),(5239,76,0,1307,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. </span></p>'),(5240,85,0,1307,'Wool jersey trousers'),(5241,139,0,1307,'Max Mara'),(5242,75,0,1308,'<p>Measurements for size EU 85: width approx. 3,4 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: embossed logo</p>\r\n<p>Material: leather</p>'),(5243,76,0,1308,'<p>Contrast leather belt with a loop and a contrasting metal buckle.</p>'),(5244,85,0,1308,'Beige Leather Belt'),(5245,139,0,1308,'Strellson Premium'),(5246,75,0,1309,'<p>Reference number: 0927/S</p>\r\n<p>Measurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)</p>\r\n<p>Extras: logo on both temples, logo engraved on right/left lens, case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5247,76,0,1309,'<p>Rounded sunglasses with a black frame and transparent lenses. Faux leather case.</p>'),(5248,85,0,1309,'Black sunglasses'),(5249,139,0,1309,'Boss'),(5250,75,0,1310,'<p>Reference number: 0927/S</p>\r\n<p>Measurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)</p>\r\n<p>Extras: logo on both temples, logo engraved on right/left lens, case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5251,76,0,1310,'<p>Rounded sunglasses with a black frame and transparent lenses. Faux leather case.</p>'),(5252,85,0,1310,'Black sunglasses'),(5253,139,0,1310,'Boss'),(5254,75,0,1311,'Smart tote bag. It has two detachable shoulder straps so that it can be worn as a backpack or carried as a tote. There is an outside compartment for storing the shoulder straps.'),(5255,76,0,1311,'Measurements for one size: height 28 cm (11″), length 31 cm (12″), depth 9 cm (3.5″)\r\nFastening: zip\r\nExtras: grained leather, removable logo pendant, detachable shoulder strap\r\nMaterial: leather\r\nLining: suede\r\nOur model wears a EU OS and is 179cm/5′10″ tall.'),(5256,85,0,1311,'Medium blue handbag'),(5257,139,0,1311,'Escada'),(5258,75,0,1312,'<p>Reference number: BV0111S</p>\r\n<p>Measurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: titanium, plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5259,76,0,1312,'<p>Resin sunglasses with a double metal bridge.</p>'),(5260,85,0,1312,'Bottega Veneta'),(5261,139,0,1312,'Bottega Veneta'),(5262,75,0,1313,'<p>Reference number: BV0111S</p>\r\n<p>Measurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: titanium, plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5263,76,0,1313,'<p>Resin sunglasses with a double metal bridge.</p>'),(5264,85,0,1313,'Bottega Veneta'),(5265,139,0,1313,'Bottega Veneta'),(5266,75,0,1314,'<p>Measurements for one size: height 34 cm (13.5″), length 36 cm (14″), depth 8 cm (3″)</p>\r\n<p>Exterior pockets: zip pocket(s)</p>\r\n<p>Interior pockets: plug-in and zip pocket(s)</p>\r\n<p>Extras: suede, adjustable and detachable shoulder strap, logo appliqué(s)</p>\r\n<p>Lining: textile</p>\r\n<p>Material: leather Our model wears a EU OS and is 179cm/5′10″ tall.</p>'),(5267,76,0,1314,'<p>Brown leather bowling bag. Outer zip closure. Its interior features two compartments and one zip pocket. Its exterior features two handles.</p>'),(5268,85,0,1314,'Cognac Handbag'),(5269,139,0,1314,'Max Mara'),(5270,75,0,1315,'<p>Reference number: MB 657S</p>\r\n<p>Measurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: logo appliqué(s), case included</p>\r\n<p>Material: titanium</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5271,76,0,1315,'<p>Sunglasses with a metal frame and transparent coloured lenses. Faux leather case.</p>'),(5272,85,0,1315,'Green sunglasses'),(5273,139,0,1315,'Montblanc'),(5274,75,0,1316,'<p>Reference number: MB 657S</p>\r\n<p>Measurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: logo appliqué(s), case included</p>\r\n<p>Material: titanium</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5275,76,0,1316,'<p>Sunglasses with a metal frame and transparent coloured lenses. Faux leather case.</p>'),(5276,85,0,1316,'Green sunglasses'),(5277,139,0,1316,'Montblanc'),(5278,75,0,1317,'<p>Reference number: E1 BD1 18 03 01</p>\r\n<p>Measurements for one size: height 28 cm (11″), length 36 cm (14″), depth 13 cm (5″)</p>\r\n<p>Fastening: overlapping flap with clasp closure</p>\r\n<p>Lining material: lined Exterior pockets: slit pocket(s)</p>\r\n<p>Interior pockets: plug-in and zip pocket(s) Extras: logo appliqué(s), suede, adjustable and detachable shoulder strap</p>\r\n<p>Material: leather</p>\r\n<p>Lining: textile</p>'),(5279,76,0,1317,'<p>The Fauve bag in mini version, enriched with metal details, combines practicality and elegance in its white leather design.</p>'),(5280,85,0,1317,'Handbag'),(5281,139,0,1317,'Coccinelle'),(5282,75,0,1318,'<p>Measurements for one size: height 43 cm (17″), length 30 cm (12″), depth 15 cm (6″)</p>\r\n<p>Fastening: two-way zip (open from right and left)</p>\r\n<p>Lining material: lined</p>\r\n<p>Exterior pockets: patch zip pocket / s, zip pocket(s) Interior pockets: plug-in and zip pocket(s), padded laptop compartment</p>\r\n<p>Extras: grained leather, attachment for mounting, logo appliqué(s), padded back, adjustable and padded shoulder straps</p>\r\n<p>Material: leather</p>\r\n<p>Lining: textile Our model wears a EU OS and is 185cm/6′0″ tall.</p>'),(5283,76,0,1318,'<p>Basic backpack with zip closure. Double compartment. The inside features a compartment for storing electronic devices and laptops of up to 13 inches (13”).</p>'),(5284,85,0,1318,'Leather Backpack'),(5285,139,0,1318,'Head'),(5286,75,0,1319,'<p>Measurements for one size: height 27 cm (10.5″), length 36 cm (14″), depth 9 cm (3.5″)</p>\r\n<p>Fastening: overlapping flap with plug closure</p>\r\n<p>Lining material: lined Interior pockets: plug-in and zip pocket(s)</p>\r\n<p>Extras: patent leather, embossed logo, adjustable and detachable shoulder strap, removable address pendant, silver detail(s)</p>\r\n<p>Material: leather</p>\r\n<p>Lining: textile Our model wears a EU OS and is 185cm/6′0″ tall.</p>'),(5287,76,0,1319,'<p>Brown nubuck leather tote bag. Mock croc embossed detail on the exterior. The inside features two compartments and a zip pocket. Two front pockets that close with a clip. Two handles.</p>'),(5288,85,0,1319,'Leather Business Bag'),(5289,139,0,1319,'Marc O\'Polo'),(5290,75,0,1320,'<p>Measurements for size EU S: width approx. 1,8 cm (0.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: patent leather</p>\r\n<p>Material: leather</p>'),(5291,76,0,1320,'<p>Reversible leather belt with a loop and contrasting metal buckle.</p>'),(5292,85,0,1320,'Light blue Leather Belt'),(5293,139,0,1320,'Lawrence Grey'),(5294,85,0,1321,'Light grey Leather Belt'),(5295,139,0,1321,'B.Belt'),(5296,75,0,1322,'<p>Model: RMJLH Reference number: DiorSoReal</p>\r\n<p>Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5297,76,0,1322,'<p>Cateye glasses with a transparent resin frame and mirror lenses.</p>'),(5298,85,0,1322,'Black sunglasses'),(5299,139,0,1322,'Dior'),(5300,75,0,1323,'<p>Model: RMJLH Reference number: DiorSoReal</p>\r\n<p>Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5301,76,0,1323,'<p>Cateye glasses with a transparent resin frame and mirror lenses.</p>'),(5302,85,0,1323,'Black sunglasses'),(5303,139,0,1323,'Dior'),(5304,75,0,1324,'<p>Model: RMJLH Reference number: DiorSoReal</p>\r\n<p>Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5305,76,0,1324,'<p>Cateye glasses with a transparent resin frame and mirror lenses.</p>'),(5306,85,0,1324,'Black sunglasses'),(5307,139,0,1324,'Dior'),(5308,75,0,1325,'<p>Model: Diorsorealrise</p>\r\n<p>Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: patterned bow, patterned border, logo engraving, case included</p>\r\n<p>Material: plastic, metal</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5309,76,0,1325,'<p>Resin sunglasses with a double metal bridge.</p>'),(5310,85,0,1325,'Rose gold diorsorealrise'),(5311,139,0,1325,'Dior'),(5312,75,0,1326,'<p>Model: Diorsorealrise</p>\r\n<p>Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: patterned bow, patterned border, logo engraving, case included</p>\r\n<p>Material: plastic, metal</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5313,76,0,1326,'<p>Resin sunglasses with a double metal bridge.</p>'),(5314,85,0,1326,'Rose gold diorsorealrise'),(5315,139,0,1326,'Dior'),(5316,75,0,1327,'<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5317,76,0,1327,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(5318,85,0,1327,'Sunglasses'),(5319,139,0,1327,'Dior Homme'),(5320,75,0,1328,'<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5321,76,0,1328,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(5322,85,0,1328,'Sunglasses'),(5323,139,0,1328,'Dior Homme'),(5324,75,0,1329,'<p>Reference number: DL0255</p>\r\n<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo appliqué(s), case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5325,76,0,1329,'<p>Aviator-style sunglasses with a metal frame and coloured mirrored lenses. Faux leather case. </p>'),(5326,85,0,1329,'Black sunglasses'),(5327,139,0,1329,'Diesel'),(5328,75,0,1330,'<p>Reference number: DL0255</p>\r\n<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo appliqué(s), case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5329,76,0,1330,'<p>Aviator-style sunglasses with a metal frame and coloured mirrored lenses. Faux leather case. </p>'),(5330,85,0,1330,'Black sunglasses'),(5331,139,0,1330,'Diesel'),(5332,75,0,1331,'<p>Measurements for size EU 95: width approx. 3,3 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: suede</p>\r\n<p>Material: leather</p>'),(5333,76,0,1331,'<p>Basic leather belt with a loop and a contrasting shiny buckle.</p>'),(5334,85,0,1331,'Taupe Leather Belt'),(5335,139,0,1331,'Windsor.'),(5336,75,0,1332,'<p>Measurements for size EU 90: width approx. 3,5 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: Nubuck leather, partially textured surface</p>\r\n<p>Material: leather</p>'),(5337,76,0,1332,'<p>Tommy Hilfiger men’s belt. Our one-size-fits-all belt is as versatile as it is comfortable with its woven design and built-in stretch.</p>'),(5338,85,0,1332,'Medium blue Leather Belt'),(5339,139,0,1332,'Medium blue'),(5340,85,0,1333,'Hooded Sweater'),(5341,85,0,1334,'Hooded Sweater'),(5342,85,0,1335,'Hooded Sweater'),(5343,85,0,1336,'Hooded Sweater'),(5344,85,0,1337,'Hooded Sweater'),(5345,85,0,1338,'Hooded Sweater'),(5346,85,0,1339,'Hooded Sweater'),(5347,85,0,1340,'Hooded Sweater'),(5348,85,0,1341,'Hooded Sweater'),(5350,75,0,1343,'<p>Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5351,76,0,1343,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(5352,85,0,1343,'Sunglasses'),(5353,139,0,1343,'Jimmy Choo'),(5354,75,0,1344,'<p>Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(5355,76,0,1344,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(5356,85,0,1344,'Sunglasses'),(5357,139,0,1344,'Jimmy Choo'),(5358,85,0,1345,'People of Shibuya Transitional Jacket'),(5359,85,0,1346,'People of Shibuya Transitional Jacket'),(5360,85,0,1347,'People of Shibuya Transitional Jacket'),(5361,85,0,1348,'People of Shibuya Transitional Jacket'),(5362,85,0,1349,'People of Shibuya Transitional Jacket'),(5363,85,0,1350,'People of Shibuya Transitional Jacket'),(5364,85,0,1351,'Seventy Transitional Jacket'),(5365,75,0,1351,'<p>People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>\r\n<p><strong>Cut:</strong> lightly fitted, ribbed waistband</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Chin guard, stand-up collar</p>\r\n<p><strong>Fastening:</strong> continuous two-way zip</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> water resistant zips, air vents under the arms</p>\r\n<p><strong>Outer material:</strong> 89% polyester, 11% elastane</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5366,76,0,1351,'<p>Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>'),(5367,85,0,1352,'I Maschi Lace-up Boots'),(5368,85,0,1353,'I Maschi Lace-up Boots'),(5369,85,0,1354,'I Maschi Lace-up Boots'),(5370,85,0,1355,'I Maschi Lace-up Boots'),(5371,85,0,1356,'I Maschi Lace-up Boots'),(5372,85,0,1357,'I Maschi Lace-up Boots'),(5373,85,0,1358,'I Maschi Lace-up Boots'),(5374,85,0,1359,'I Maschi Lace-up Boots'),(5375,85,0,1360,'I Maschi Lace-up Boots'),(5376,85,0,1361,'I Maschi Lace-up Boots'),(5377,85,0,1362,'I Maschi Lace-up Boots'),(5378,85,0,1363,'I Maschi Lace-up Boots'),(5379,85,0,1364,'I Maschi Lace-up Boots'),(5380,85,0,1365,'I Maschi Lace-up Boots'),(5381,85,0,1366,'I Maschi Lace-up Boots'),(5382,85,0,1367,'I Maschi Lace-up Boots'),(5383,85,0,1368,'I Maschi Lace-up Boots'),(5384,85,0,1369,'I Maschi Lace-up Boots'),(5385,85,0,1370,'I Maschi Lace-up Boots'),(5386,85,0,1371,'I Maschi Lace-up Boots'),(5387,85,0,1372,'I Maschi Lace-up Boots'),(5388,85,0,1373,'I Maschi Lace-up Boots'),(5389,85,0,1374,'I Maschi Lace-up Boots'),(5390,85,0,1375,'I Maschi Lace-up Boots'),(5391,85,0,1376,'I Maschi Lace-up Boots'),(5392,85,0,1377,'I Maschi Lace-up Boots'),(5393,85,0,1378,'I Maschi Lace-up Boots'),(5394,85,0,1379,'I Maschi Lace-up Boots'),(5395,85,0,1380,'I Maschi Lace-up Boots'),(5396,85,0,1381,'I Maschi Lace-up Boots'),(5398,75,0,1383,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5399,76,0,1383,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5400,85,0,1383,'I Maschi Lace-up Boots'),(5401,139,0,1383,'I Maschi'),(5402,75,0,1384,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5403,76,0,1384,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5404,85,0,1384,'I Maschi Lace-up Boots'),(5405,139,0,1384,'I Maschi'),(5406,75,0,1385,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5407,76,0,1385,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5408,85,0,1385,'I Maschi Lace-up Boots'),(5409,139,0,1385,'I Maschi'),(5410,75,0,1386,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5411,76,0,1386,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5412,85,0,1386,'I Maschi Lace-up Boots'),(5413,139,0,1386,'I Maschi'),(5414,75,0,1387,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5415,76,0,1387,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5416,85,0,1387,'I Maschi Lace-up Boots'),(5417,139,0,1387,'I Maschi'),(5418,75,0,1388,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5419,76,0,1388,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5420,85,0,1388,'I Maschi Lace-up Boots'),(5421,139,0,1388,'I Maschi'),(5422,75,0,1389,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5423,76,0,1389,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5424,85,0,1389,'I Maschi Lace-up Boots'),(5425,139,0,1389,'I Maschi'),(5426,75,0,1390,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5427,76,0,1390,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5428,85,0,1390,'I Maschi Lace-up Boots'),(5429,139,0,1390,'I Maschi'),(5430,75,0,1391,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5431,76,0,1391,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5432,85,0,1391,'I Maschi Lace-up Boots'),(5433,139,0,1391,'I Maschi'),(5434,75,0,1392,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5435,76,0,1392,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5436,85,0,1392,'I Maschi Lace-up Boots'),(5437,139,0,1392,'I Maschi'),(5438,75,0,1393,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5439,76,0,1393,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5440,85,0,1393,'I Maschi Lace-up Boots'),(5441,139,0,1393,'I Maschi'),(5442,75,0,1394,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5443,76,0,1394,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5444,85,0,1394,'I Maschi Lace-up Boots'),(5445,139,0,1394,'I Maschi'),(5446,75,0,1395,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5447,76,0,1395,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5448,85,0,1395,'I Maschi Lace-up Boots'),(5449,139,0,1395,'I Maschi'),(5450,75,0,1396,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5451,76,0,1396,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5452,85,0,1396,'I Maschi Lace-up Boots'),(5453,139,0,1396,'I Maschi'),(5454,75,0,1397,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5455,76,0,1397,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5456,85,0,1397,'I Maschi Lace-up Boots'),(5457,139,0,1397,'I Maschi'),(5458,75,0,1398,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5459,76,0,1398,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5460,85,0,1398,'I Maschi Lace-up Boots'),(5461,139,0,1398,'I Maschi'),(5462,75,0,1399,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5463,76,0,1399,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5464,85,0,1399,'I Maschi Lace-up Boots'),(5465,139,0,1399,'I Maschi'),(5466,75,0,1400,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5467,76,0,1400,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5468,85,0,1400,'I Maschi Lace-up Boots'),(5469,139,0,1400,'I Maschi'),(5470,75,0,1401,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5471,76,0,1401,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5472,85,0,1401,'I Maschi Lace-up Boots'),(5473,139,0,1401,'I Maschi'),(5474,75,0,1402,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5475,76,0,1402,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5476,85,0,1402,'I Maschi Lace-up Boots'),(5477,139,0,1402,'I Maschi'),(5478,75,0,1403,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5479,76,0,1403,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5480,85,0,1403,'I Maschi Lace-up Boots'),(5481,139,0,1403,'I Maschi'),(5482,75,0,1404,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5483,76,0,1404,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5484,85,0,1404,'I Maschi Lace-up Boots'),(5485,139,0,1404,'I Maschi'),(5486,75,0,1405,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5487,76,0,1405,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5488,85,0,1405,'I Maschi Lace-up Boots'),(5489,139,0,1405,'I Maschi'),(5490,75,0,1406,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5491,76,0,1406,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5492,85,0,1406,'I Maschi Lace-up Boots'),(5493,139,0,1406,'I Maschi'),(5494,75,0,1407,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5495,76,0,1407,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5496,85,0,1407,'I Maschi Lace-up Boots'),(5497,139,0,1407,'I Maschi'),(5498,75,0,1408,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5499,76,0,1408,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5500,85,0,1408,'I Maschi Lace-up Boots'),(5501,139,0,1408,'I Maschi'),(5502,75,0,1409,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5503,76,0,1409,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5504,85,0,1409,'I Maschi Lace-up Boots'),(5505,139,0,1409,'I Maschi'),(5506,75,0,1410,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5507,76,0,1410,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5508,85,0,1410,'I Maschi Lace-up Boots'),(5509,139,0,1410,'I Maschi'),(5510,75,0,1411,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5511,76,0,1411,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5512,85,0,1411,'I Maschi Lace-up Boots'),(5513,139,0,1411,'I Maschi'),(5514,75,0,1412,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5515,76,0,1412,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5516,85,0,1412,'I Maschi Lace-up Boots'),(5517,139,0,1412,'I Maschi'),(5518,75,0,1413,'<p>Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather.</p>\r\n<p><strong>Details:</strong></p>\r\n<ul>\r\n<li>Sweet looks from the ground up</li>\r\n<li>Mid rise</li>\r\n<li>Lace-up fastening</li>\r\n<li>Pull tab</li>\r\n<li>Round toe</li>\r\n<li>Textured sole</li>\r\n</ul>\r\n<p><strong>Extras:</strong></p>\r\n<ul>\r\n<li>suede,</li>\r\n<li>Budapest style pattern</li>\r\n</ul>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><strong>Inner material:</strong> leather</p>\r\n<p><strong>Outsole:</strong> synthetic</p>'),(5519,76,0,1413,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;I Maschi Budapest style pattern leather lace-up boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">I Maschi suede leather lace-up boots with Budapest style pattern</span></p>'),(5520,85,0,1413,'I Maschi Lace-up Boots'),(5521,139,0,1413,'I Maschi'),(5522,75,0,1414,'<p>People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>\r\n<p><strong>Cut:</strong> lightly fitted, ribbed waistband</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Chin guard, stand-up collar</p>\r\n<p><strong>Fastening:</strong> continuous two-way zip</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> water resistant zips, air vents under the arms</p>\r\n<p><strong>Outer material:</strong> 89% polyester, 11% elastane</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5523,76,0,1414,'<p>Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>'),(5524,85,0,1414,'Seventy Transitional Jacket'),(5525,75,0,1415,'<p>People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>\r\n<p><strong>Cut:</strong> lightly fitted, ribbed waistband</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Chin guard, stand-up collar</p>\r\n<p><strong>Fastening:</strong> continuous two-way zip</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> water resistant zips, air vents under the arms</p>\r\n<p><strong>Outer material:</strong> 89% polyester, 11% elastane</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5526,76,0,1415,'<p>Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>'),(5527,85,0,1415,'Seventy Transitional Jacket'),(5528,75,0,1416,'<p>People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>\r\n<p><strong>Cut:</strong> lightly fitted, ribbed waistband</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Chin guard, stand-up collar</p>\r\n<p><strong>Fastening:</strong> continuous two-way zip</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> water resistant zips, air vents under the arms</p>\r\n<p><strong>Outer material:</strong> 89% polyester, 11% elastane</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5529,76,0,1416,'<p>Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>'),(5530,85,0,1416,'Seventy Transitional Jacket'),(5531,75,0,1417,'<p>People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>\r\n<p><strong>Cut:</strong> lightly fitted, ribbed waistband</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Chin guard, stand-up collar</p>\r\n<p><strong>Fastening:</strong> continuous two-way zip</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> water resistant zips, air vents under the arms</p>\r\n<p><strong>Outer material:</strong> 89% polyester, 11% elastane</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5532,76,0,1417,'<p>Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>'),(5533,85,0,1417,'Seventy Transitional Jacket'),(5534,75,0,1418,'<p>People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>\r\n<p><strong>Cut:</strong> lightly fitted, ribbed waistband</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Chin guard, stand-up collar</p>\r\n<p><strong>Fastening:</strong> continuous two-way zip</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> water resistant zips, air vents under the arms</p>\r\n<p><strong>Outer material:</strong> 89% polyester, 11% elastane</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5535,76,0,1418,'<p>Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>'),(5536,85,0,1418,'Seventy Transitional Jacket'),(5537,75,0,1419,'<p>People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>\r\n<p><strong>Cut:</strong> lightly fitted, ribbed waistband</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Chin guard, stand-up collar</p>\r\n<p><strong>Fastening:</strong> continuous two-way zip</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> water resistant zips, air vents under the arms</p>\r\n<p><strong>Outer material:</strong> 89% polyester, 11% elastane</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5538,76,0,1419,'<p>Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.</p>'),(5539,85,0,1419,'Seventy Transitional Jacket'),(5540,75,0,1420,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5541,76,0,1420,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5542,85,0,1420,'Grey Sneakers'),(5543,139,0,1420,'Adidas'),(5544,75,0,1421,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5545,76,0,1421,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5546,85,0,1421,'Grey Sneakers'),(5547,139,0,1421,'Adidas'),(5548,75,0,1422,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5549,76,0,1422,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5550,85,0,1422,'Grey Sneakers'),(5551,139,0,1422,'Adidas'),(5552,75,0,1423,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5553,76,0,1423,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5554,85,0,1423,'Grey Sneakers'),(5555,139,0,1423,'Adidas'),(5556,75,0,1424,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5557,76,0,1424,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5558,85,0,1424,'Grey Sneakers'),(5559,139,0,1424,'Adidas'),(5560,75,0,1425,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5561,76,0,1425,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5562,85,0,1425,'Grey Sneakers'),(5563,139,0,1425,'Adidas'),(5564,75,0,1426,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5565,76,0,1426,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5566,85,0,1426,'Grey Sneakers'),(5567,139,0,1426,'Adidas'),(5568,75,0,1427,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5569,76,0,1427,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5570,85,0,1427,'Grey Sneakers'),(5571,139,0,1427,'Adidas'),(5572,75,0,1428,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5573,76,0,1428,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5574,85,0,1428,'Grey Sneakers'),(5575,139,0,1428,'Adidas'),(5576,75,0,1429,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5577,76,0,1429,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5578,85,0,1429,'Grey Sneakers'),(5579,139,0,1429,'Adidas'),(5580,75,0,1430,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5581,76,0,1430,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5582,85,0,1430,'Grey Sneakers'),(5583,139,0,1430,'Adidas'),(5584,75,0,1431,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5585,76,0,1431,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5586,85,0,1431,'Grey Sneakers'),(5587,139,0,1431,'Adidas'),(5588,75,0,1432,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5589,76,0,1432,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5590,85,0,1432,'Grey Sneakers'),(5591,139,0,1432,'Adidas'),(5592,75,0,1433,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5593,76,0,1433,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5594,85,0,1433,'Grey Sneakers'),(5595,139,0,1433,'Adidas'),(5596,75,0,1434,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5597,76,0,1434,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5598,85,0,1434,'Grey Sneakers'),(5599,139,0,1434,'Adidas'),(5600,75,0,1435,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5601,76,0,1435,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5602,85,0,1435,'Grey Sneakers'),(5603,139,0,1435,'Adidas'),(5604,75,0,1436,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5605,76,0,1436,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5606,85,0,1436,'Grey Sneakers'),(5607,139,0,1436,'Adidas'),(5608,75,0,1437,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5609,76,0,1437,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5610,85,0,1437,'Grey Sneakers'),(5611,139,0,1437,'Adidas'),(5612,75,0,1438,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5613,76,0,1438,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5614,85,0,1438,'Grey Sneakers'),(5615,139,0,1438,'Adidas'),(5616,75,0,1439,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5617,76,0,1439,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5618,85,0,1439,'Grey Sneakers'),(5619,139,0,1439,'Adidas'),(5620,75,0,1440,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5621,76,0,1440,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5622,85,0,1440,'Grey Sneakers'),(5623,139,0,1440,'Adidas'),(5624,75,0,1441,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5625,76,0,1441,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5626,85,0,1441,'Grey Sneakers'),(5627,139,0,1441,'Adidas'),(5628,75,0,1442,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5629,76,0,1442,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5630,85,0,1442,'Grey Sneakers'),(5631,139,0,1442,'Adidas'),(5632,75,0,1443,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5633,76,0,1443,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5634,85,0,1443,'Grey Sneakers'),(5635,139,0,1443,'Adidas'),(5636,75,0,1444,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5637,76,0,1444,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5638,85,0,1444,'Grey Sneakers'),(5639,139,0,1444,'Adidas'),(5640,75,0,1445,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5641,76,0,1445,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5642,85,0,1445,'Grey Sneakers'),(5643,139,0,1445,'Adidas'),(5644,75,0,1446,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5645,76,0,1446,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5646,85,0,1446,'Grey Sneakers'),(5647,139,0,1446,'Adidas'),(5648,75,0,1447,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5649,76,0,1447,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5650,85,0,1447,'Grey Sneakers'),(5651,139,0,1447,'Adidas'),(5652,75,0,1448,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5653,76,0,1448,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5654,85,0,1448,'Grey Sneakers'),(5655,139,0,1448,'Adidas'),(5656,75,0,1449,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5657,76,0,1449,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5658,85,0,1449,'Grey Sneakers'),(5659,139,0,1449,'Adidas'),(5660,75,0,1450,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5661,76,0,1450,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5662,85,0,1450,'Grey Sneakers'),(5663,139,0,1450,'Adidas'),(5664,75,0,1451,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5665,76,0,1451,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5666,85,0,1451,'Grey Sneakers'),(5667,139,0,1451,'Adidas'),(5668,75,0,1452,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5669,76,0,1452,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5670,85,0,1452,'Grey Sneakers'),(5671,139,0,1452,'Adidas'),(5672,75,0,1453,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5673,76,0,1453,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5674,85,0,1453,'Grey Sneakers'),(5675,139,0,1453,'Adidas'),(5676,75,0,1454,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5677,76,0,1454,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5678,85,0,1454,'Grey Sneakers'),(5679,139,0,1454,'Adidas'),(5680,75,0,1455,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. \\n\\nExtras: lacing, logo appliqué(s), leather detailing\\nOuter material: textile, leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. <br /><br />Extras: lacing, logo appliqué(s), leather detailing<br /><br />Inner material: textile<br />Outsole: synthetic</span></p>'),(5681,76,0,1455,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas Nizza white low top sneakers&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Nizza white low top sneakers</span></p>'),(5682,85,0,1455,'Grey Sneakers'),(5683,139,0,1455,'Adidas'),(5684,75,0,1456,'<p>BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear.</p>\r\n<p><strong>Line:</strong> Puma x Big Sean</p>\r\n<p><strong>Cut:</strong> straight, drawstring hem</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> turn-down collar</p>\r\n<p><strong>Fastening:</strong> continuous snap fastener placket</p>\r\n<p><strong>Sleeve:</strong> elasticated cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> satin, subtle sheen, contrast piping, embroidered logo(s)</p>\r\n<p><strong>Material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(5685,76,0,1456,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(5686,85,0,1456,'Puma Transitional Jacket'),(5687,75,0,1457,'<p>BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear.</p>\r\n<p><strong>Line:</strong> Puma x Big Sean</p>\r\n<p><strong>Cut:</strong> straight, drawstring hem</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> turn-down collar</p>\r\n<p><strong>Fastening:</strong> continuous snap fastener placket</p>\r\n<p><strong>Sleeve:</strong> elasticated cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> satin, subtle sheen, contrast piping, embroidered logo(s)</p>\r\n<p><strong>Material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(5688,76,0,1457,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(5689,85,0,1457,'Puma Transitional Jacket'),(5690,75,0,1458,'<p>BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear.</p>\r\n<p><strong>Line:</strong> Puma x Big Sean</p>\r\n<p><strong>Cut:</strong> straight, drawstring hem</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> turn-down collar</p>\r\n<p><strong>Fastening:</strong> continuous snap fastener placket</p>\r\n<p><strong>Sleeve:</strong> elasticated cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> satin, subtle sheen, contrast piping, embroidered logo(s)</p>\r\n<p><strong>Material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(5691,76,0,1458,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(5692,85,0,1458,'Puma Transitional Jacket'),(5693,75,0,1459,'<p>BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear.</p>\r\n<p><strong>Line:</strong> Puma x Big Sean</p>\r\n<p><strong>Cut:</strong> straight, drawstring hem</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> turn-down collar</p>\r\n<p><strong>Fastening:</strong> continuous snap fastener placket</p>\r\n<p><strong>Sleeve:</strong> elasticated cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> satin, subtle sheen, contrast piping, embroidered logo(s)</p>\r\n<p><strong>Material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(5694,76,0,1459,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(5695,85,0,1459,'Puma Transitional Jacket'),(5696,75,0,1460,'<p>BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear.</p>\r\n<p><strong>Line:</strong> Puma x Big Sean</p>\r\n<p><strong>Cut:</strong> straight, drawstring hem</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> turn-down collar</p>\r\n<p><strong>Fastening:</strong> continuous snap fastener placket</p>\r\n<p><strong>Sleeve:</strong> elasticated cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> satin, subtle sheen, contrast piping, embroidered logo(s)</p>\r\n<p><strong>Material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(5697,76,0,1460,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(5698,85,0,1460,'Puma Transitional Jacket'),(5699,75,0,1461,'<p>BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear.</p>\r\n<p><strong>Line:</strong> Puma x Big Sean</p>\r\n<p><strong>Cut:</strong> straight, drawstring hem</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> turn-down collar</p>\r\n<p><strong>Fastening:</strong> continuous snap fastener placket</p>\r\n<p><strong>Sleeve:</strong> elasticated cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> satin, subtle sheen, contrast piping, embroidered logo(s)</p>\r\n<p><strong>Material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(5700,76,0,1461,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(5701,85,0,1461,'Puma Transitional Jacket'),(5702,75,0,1462,'<p>BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear.</p>\r\n<p><strong>Line:</strong> Puma x Big Sean</p>\r\n<p><strong>Cut:</strong> straight, drawstring hem</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> turn-down collar</p>\r\n<p><strong>Fastening:</strong> continuous snap fastener placket</p>\r\n<p><strong>Sleeve:</strong> elasticated cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> satin, subtle sheen, contrast piping, embroidered logo(s)</p>\r\n<p><strong>Material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(5703,76,0,1462,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(5704,85,0,1462,'Puma Transitional Jacket'),(5705,75,0,1463,'<p>BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear.</p>\r\n<p><strong>Line:</strong> Puma x Big Sean</p>\r\n<p><strong>Cut:</strong> straight, drawstring hem</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> turn-down collar</p>\r\n<p><strong>Fastening:</strong> continuous snap fastener placket</p>\r\n<p><strong>Sleeve:</strong> elasticated cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> satin, subtle sheen, contrast piping, embroidered logo(s)</p>\r\n<p><strong>Material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(5706,76,0,1463,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(5707,85,0,1463,'Puma Transitional Jacket'),(5708,75,0,1464,'<p>BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear.</p>\r\n<p><strong>Line:</strong> Puma x Big Sean</p>\r\n<p><strong>Cut:</strong> straight, drawstring hem</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> turn-down collar</p>\r\n<p><strong>Fastening:</strong> continuous snap fastener placket</p>\r\n<p><strong>Sleeve:</strong> elasticated cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s)</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Extras:</strong> satin, subtle sheen, contrast piping, embroidered logo(s)</p>\r\n<p><strong>Material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(5709,76,0,1464,'<p>Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.</p>'),(5710,85,0,1464,'Puma Transitional Jacket'),(5711,75,0,1465,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5712,76,0,1465,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5713,85,0,1465,'Timberland Lace-ups'),(5714,139,0,1465,'Timberland'),(5715,75,0,1466,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5716,76,0,1466,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5717,85,0,1466,'Timberland Lace-ups'),(5718,139,0,1466,'Timberland'),(5719,75,0,1467,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5720,76,0,1467,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5721,85,0,1467,'Timberland Lace-ups'),(5722,139,0,1467,'Timberland'),(5723,75,0,1468,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5724,76,0,1468,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5725,85,0,1468,'Timberland Lace-ups'),(5726,139,0,1468,'Timberland'),(5727,75,0,1469,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5728,76,0,1469,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5729,85,0,1469,'Timberland Lace-ups'),(5730,139,0,1469,'Timberland'),(5731,75,0,1470,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5732,76,0,1470,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5733,85,0,1470,'Timberland Lace-ups'),(5734,139,0,1470,'Timberland'),(5735,75,0,1471,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5736,76,0,1471,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5737,85,0,1471,'Timberland Lace-ups'),(5738,139,0,1471,'Timberland'),(5739,75,0,1472,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5740,76,0,1472,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5741,85,0,1472,'Timberland Lace-ups'),(5742,139,0,1472,'Timberland'),(5743,75,0,1473,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5744,76,0,1473,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5745,85,0,1473,'Timberland Lace-ups'),(5746,139,0,1473,'Timberland'),(5747,75,0,1474,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5748,76,0,1474,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5749,85,0,1474,'Timberland Lace-ups'),(5750,139,0,1474,'Timberland'),(5751,75,0,1475,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5752,76,0,1475,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5753,85,0,1475,'Timberland Lace-ups'),(5754,139,0,1475,'Timberland'),(5755,75,0,1476,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5756,76,0,1476,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5757,85,0,1476,'Timberland Lace-ups'),(5758,139,0,1476,'Timberland'),(5759,75,0,1477,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5760,76,0,1477,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5761,85,0,1477,'Timberland Lace-ups'),(5762,139,0,1477,'Timberland'),(5763,75,0,1478,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5764,76,0,1478,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5765,85,0,1478,'Timberland Lace-ups'),(5766,139,0,1478,'Timberland'),(5767,75,0,1479,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5768,76,0,1479,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5769,85,0,1479,'Timberland Lace-ups'),(5770,139,0,1479,'Timberland'),(5771,75,0,1480,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5772,76,0,1480,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5773,85,0,1480,'Timberland Lace-ups'),(5774,139,0,1480,'Timberland'),(5775,75,0,1481,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5776,76,0,1481,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5777,85,0,1481,'Timberland Lace-ups'),(5778,139,0,1481,'Timberland'),(5779,75,0,1482,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5780,76,0,1482,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5781,85,0,1482,'Timberland Lace-ups'),(5782,139,0,1482,'Timberland'),(5783,75,0,1483,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5784,76,0,1483,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5785,85,0,1483,'Timberland Lace-ups'),(5786,139,0,1483,'Timberland'),(5787,75,0,1484,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5788,76,0,1484,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5789,85,0,1484,'Timberland Lace-ups'),(5790,139,0,1484,'Timberland'),(5791,75,0,1485,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5792,76,0,1485,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5793,85,0,1485,'Timberland Lace-ups'),(5794,139,0,1485,'Timberland'),(5795,75,0,1486,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5796,76,0,1486,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5797,85,0,1486,'Timberland Lace-ups'),(5798,139,0,1486,'Timberland'),(5799,75,0,1487,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5800,76,0,1487,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5801,85,0,1487,'Timberland Lace-ups'),(5802,139,0,1487,'Timberland'),(5803,75,0,1488,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5804,76,0,1488,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5805,85,0,1488,'Timberland Lace-ups'),(5806,139,0,1488,'Timberland'),(5807,75,0,1489,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5808,76,0,1489,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5809,85,0,1489,'Timberland Lace-ups'),(5810,139,0,1489,'Timberland'),(5811,75,0,1490,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5812,76,0,1490,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5813,85,0,1490,'Timberland Lace-ups'),(5814,139,0,1490,'Timberland'),(5815,75,0,1491,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5816,76,0,1491,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5817,85,0,1491,'Timberland Lace-ups'),(5818,139,0,1491,'Timberland'),(5819,75,0,1492,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5820,76,0,1492,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5821,85,0,1492,'Timberland Lace-ups'),(5822,139,0,1492,'Timberland'),(5823,75,0,1493,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5824,76,0,1493,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5825,85,0,1493,'Timberland Lace-ups'),(5826,139,0,1493,'Timberland'),(5827,75,0,1494,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5828,76,0,1494,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5829,85,0,1494,'Timberland Lace-ups'),(5830,139,0,1494,'Timberland'),(5831,75,0,1495,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. \\n\\nExtras: logo appliqué(s), leather detailing, lacing\\nOuter material: leather, textile\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. <br /><br /><strong>Extras:</strong> logo appliqué(s), leather detailing, lacing<br /><strong>Outer material:</strong> leather, textile<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5832,76,0,1495,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Timberland textile ice colour lace-ups&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Timberland textile ice colour lace-ups</span></p>'),(5833,85,0,1495,'Timberland Lace-ups'),(5834,139,0,1495,'Timberland'),(5835,75,0,1496,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5836,76,0,1496,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5837,85,0,1496,'Cat Lace-up Boots'),(5838,139,0,1496,'Cat'),(5839,75,0,1497,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5840,76,0,1497,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5841,85,0,1497,'Cat Lace-up Boots'),(5842,139,0,1497,'Cat'),(5843,75,0,1498,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5844,76,0,1498,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5845,85,0,1498,'Cat Lace-up Boots'),(5846,139,0,1498,'Cat'),(5847,75,0,1499,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5848,76,0,1499,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5849,85,0,1499,'Cat Lace-up Boots'),(5850,139,0,1499,'Cat'),(5851,75,0,1500,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5852,76,0,1500,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5853,85,0,1500,'Cat Lace-up Boots'),(5854,139,0,1500,'Cat'),(5855,75,0,1501,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5856,76,0,1501,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5857,85,0,1501,'Cat Lace-up Boots'),(5858,139,0,1501,'Cat'),(5859,75,0,1502,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5860,76,0,1502,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5861,85,0,1502,'Cat Lace-up Boots'),(5862,139,0,1502,'Cat'),(5863,75,0,1503,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5864,76,0,1503,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5865,85,0,1503,'Cat Lace-up Boots'),(5866,139,0,1503,'Cat'),(5867,75,0,1504,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5868,76,0,1504,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5869,85,0,1504,'Cat Lace-up Boots'),(5870,139,0,1504,'Cat'),(5871,75,0,1505,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5872,76,0,1505,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5873,85,0,1505,'Cat Lace-up Boots'),(5874,139,0,1505,'Cat'),(5875,75,0,1506,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5876,76,0,1506,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5877,85,0,1506,'Cat Lace-up Boots'),(5878,139,0,1506,'Cat'),(5879,75,0,1507,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5880,76,0,1507,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5881,85,0,1507,'Cat Lace-up Boots'),(5882,139,0,1507,'Cat'),(5883,75,0,1508,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5884,76,0,1508,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5885,85,0,1508,'Cat Lace-up Boots'),(5886,139,0,1508,'Cat'),(5887,75,0,1509,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5888,76,0,1509,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5889,85,0,1509,'Cat Lace-up Boots'),(5890,139,0,1509,'Cat'),(5891,75,0,1510,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5892,76,0,1510,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5893,85,0,1510,'Cat Lace-up Boots'),(5894,139,0,1510,'Cat'),(5895,75,0,1511,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5896,76,0,1511,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5897,85,0,1511,'Cat Lace-up Boots'),(5898,139,0,1511,'Cat'),(5899,75,0,1512,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5900,76,0,1512,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5901,85,0,1512,'Cat Lace-up Boots'),(5902,139,0,1512,'Cat'),(5903,75,0,1513,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5904,76,0,1513,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5905,85,0,1513,'Cat Lace-up Boots'),(5906,139,0,1513,'Cat'),(5907,75,0,1514,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5908,76,0,1514,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5909,85,0,1514,'Cat Lace-up Boots'),(5910,139,0,1514,'Cat'),(5911,75,0,1515,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5912,76,0,1515,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5913,85,0,1515,'Cat Lace-up Boots'),(5914,139,0,1515,'Cat'),(5915,75,0,1516,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5916,76,0,1516,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5917,85,0,1516,'Cat Lace-up Boots'),(5918,139,0,1516,'Cat'),(5919,75,0,1517,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5920,76,0,1517,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5921,85,0,1517,'Cat Lace-up Boots'),(5922,139,0,1517,'Cat'),(5923,75,0,1518,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5924,76,0,1518,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5925,85,0,1518,'Cat Lace-up Boots'),(5926,139,0,1518,'Cat'),(5927,75,0,1519,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5928,76,0,1519,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5929,85,0,1519,'Cat Lace-up Boots'),(5930,139,0,1519,'Cat'),(5931,75,0,1520,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5932,76,0,1520,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5933,85,0,1520,'Cat Lace-up Boots'),(5934,139,0,1520,'Cat'),(5935,75,0,1521,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5936,76,0,1521,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5937,85,0,1521,'Cat Lace-up Boots'),(5938,139,0,1521,'Cat'),(5939,75,0,1522,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5940,76,0,1522,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5941,85,0,1522,'Cat Lace-up Boots'),(5942,139,0,1522,'Cat'),(5943,75,0,1523,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5944,76,0,1523,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5945,85,0,1523,'Cat Lace-up Boots'),(5946,139,0,1523,'Cat'),(5947,75,0,1524,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5948,76,0,1524,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5949,85,0,1524,'Cat Lace-up Boots'),(5950,139,0,1524,'Cat'),(5951,75,0,1525,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5952,76,0,1525,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5953,85,0,1525,'Cat Lace-up Boots'),(5954,139,0,1525,'Cat'),(5955,75,0,1526,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Durable and light half boots made out of nubuck leather by Caterpillar brand\\n\\nExtras: Nubuck leather, embossed logo\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.<br /><br /><strong>Extras:</strong> Nubuck leather, embossed logo<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5956,76,0,1526,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lace-up grey nubuck leather half boots by Cat&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s Lace-up nubuck leather half work boots by Cat</span></p>'),(5957,85,0,1526,'Cat Lace-up Boots'),(5958,139,0,1526,'Cat'),(5959,75,0,1527,'<p>Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space.</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 70 cm (27.5″), sleeve length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Stand-up collar with integrated hood</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Interior pockets:</strong> inside pockets left and right</p>\r\n<p><strong>Lining:</strong> lined and padded</p>\r\n<p><strong>Material:</strong> 90% polyester, 10% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5960,76,0,1527,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(5961,85,0,1527,'Steinbock Transitional Jacket'),(5962,75,0,1528,'<p>Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space.</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 70 cm (27.5″), sleeve length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Stand-up collar with integrated hood</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Interior pockets:</strong> inside pockets left and right</p>\r\n<p><strong>Lining:</strong> lined and padded</p>\r\n<p><strong>Material:</strong> 90% polyester, 10% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5963,76,0,1528,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(5964,85,0,1528,'Steinbock Transitional Jacket'),(5965,75,0,1529,'<p>Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space.</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 70 cm (27.5″), sleeve length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Stand-up collar with integrated hood</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Interior pockets:</strong> inside pockets left and right</p>\r\n<p><strong>Lining:</strong> lined and padded</p>\r\n<p><strong>Material:</strong> 90% polyester, 10% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5966,76,0,1529,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(5967,85,0,1529,'Steinbock Transitional Jacket'),(5968,75,0,1530,'<p>Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space.</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 70 cm (27.5″), sleeve length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Stand-up collar with integrated hood</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Interior pockets:</strong> inside pockets left and right</p>\r\n<p><strong>Lining:</strong> lined and padded</p>\r\n<p><strong>Material:</strong> 90% polyester, 10% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5969,76,0,1530,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(5970,85,0,1530,'Steinbock Transitional Jacket'),(5971,75,0,1531,'<p>Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space.</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 70 cm (27.5″), sleeve length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Stand-up collar with integrated hood</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Interior pockets:</strong> inside pockets left and right</p>\r\n<p><strong>Lining:</strong> lined and padded</p>\r\n<p><strong>Material:</strong> 90% polyester, 10% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5972,76,0,1531,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(5973,85,0,1531,'Steinbock Transitional Jacket'),(5974,75,0,1532,'<p>Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space.</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 70 cm (27.5″), sleeve length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Stand-up collar with integrated hood</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Interior pockets:</strong> inside pockets left and right</p>\r\n<p><strong>Lining:</strong> lined and padded</p>\r\n<p><strong>Material:</strong> 90% polyester, 10% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5975,76,0,1532,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(5976,85,0,1532,'Steinbock Transitional Jacket'),(5977,75,0,1533,'<p>Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space.</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 70 cm (27.5″), sleeve length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Stand-up collar with integrated hood</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Interior pockets:</strong> inside pockets left and right</p>\r\n<p><strong>Lining:</strong> lined and padded</p>\r\n<p><strong>Material:</strong> 90% polyester, 10% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5978,76,0,1533,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(5979,85,0,1533,'Steinbock Transitional Jacket');
INSERT INTO `catalog_product_entity_text` VALUES (5980,75,0,1534,'<p>Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space.</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 70 cm (27.5″), sleeve length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Stand-up collar with integrated hood</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Interior pockets:</strong> inside pockets left and right</p>\r\n<p><strong>Lining:</strong> lined and padded</p>\r\n<p><strong>Material:</strong> 90% polyester, 10% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5981,76,0,1534,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(5982,85,0,1534,'Steinbock Transitional Jacket'),(5983,75,0,1535,'<p>Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space.</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU 50:</strong> garment length 70 cm (27.5″), sleeve length 66 cm (26″)</p>\r\n<p><strong>Collar:</strong> Stand-up collar with integrated hood</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Exterior pockets:</strong> zip pocket(s)</p>\r\n<p><strong>Interior pockets:</strong> inside pockets left and right</p>\r\n<p><strong>Lining:</strong> lined and padded</p>\r\n<p><strong>Material:</strong> 90% polyester, 10% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU 50 and is 185cm/6′0″ tall.</p>'),(5984,76,0,1535,'<p>Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.</p>'),(5985,85,0,1535,'Steinbock Transitional Jacket'),(5986,75,0,1536,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5987,76,0,1536,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(5988,85,0,1536,'Half Boots'),(5989,139,0,1536,'Adidas'),(5990,75,0,1537,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5991,76,0,1537,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(5992,85,0,1537,'Half Boots'),(5993,139,0,1537,'Adidas'),(5994,75,0,1538,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5995,76,0,1538,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(5996,85,0,1538,'Half Boots'),(5997,139,0,1538,'Adidas'),(5998,75,0,1539,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(5999,76,0,1539,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6000,85,0,1539,'Half Boots'),(6001,139,0,1539,'Adidas'),(6002,75,0,1540,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6003,76,0,1540,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6004,85,0,1540,'Half Boots'),(6005,139,0,1540,'Adidas'),(6006,75,0,1541,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6007,76,0,1541,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6008,85,0,1541,'Half Boots'),(6009,139,0,1541,'Adidas'),(6010,75,0,1542,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6011,76,0,1542,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6012,85,0,1542,'Half Boots'),(6013,139,0,1542,'Adidas'),(6014,75,0,1543,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6015,76,0,1543,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6016,85,0,1543,'Half Boots'),(6017,139,0,1543,'Adidas'),(6018,75,0,1544,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6019,76,0,1544,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6020,85,0,1544,'Half Boots'),(6021,139,0,1544,'Adidas'),(6022,75,0,1545,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6023,76,0,1545,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6024,85,0,1545,'Half Boots'),(6025,139,0,1545,'Adidas'),(6026,75,0,1546,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6027,76,0,1546,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6028,85,0,1546,'Half Boots'),(6029,139,0,1546,'Adidas'),(6030,75,0,1547,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6031,76,0,1547,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6032,85,0,1547,'Half Boots'),(6033,139,0,1547,'Adidas'),(6034,75,0,1548,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6035,76,0,1548,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6036,85,0,1548,'Half Boots'),(6037,139,0,1548,'Adidas'),(6038,75,0,1549,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6039,76,0,1549,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6040,85,0,1549,'Half Boots'),(6041,139,0,1549,'Adidas'),(6042,75,0,1550,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6043,76,0,1550,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6044,85,0,1550,'Half Boots'),(6045,139,0,1550,'Adidas'),(6046,75,0,1551,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6047,76,0,1551,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6048,85,0,1551,'Half Boots'),(6049,139,0,1551,'Adidas'),(6050,75,0,1552,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6051,76,0,1552,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6052,85,0,1552,'Half Boots'),(6053,139,0,1552,'Adidas'),(6054,75,0,1553,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6055,76,0,1553,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6056,85,0,1553,'Half Boots'),(6057,139,0,1553,'Adidas'),(6058,75,0,1554,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6059,76,0,1554,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6060,85,0,1554,'Half Boots'),(6061,139,0,1554,'Adidas'),(6062,75,0,1555,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6063,76,0,1555,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6064,85,0,1555,'Half Boots'),(6065,139,0,1555,'Adidas'),(6066,75,0,1556,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6067,76,0,1556,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6068,85,0,1556,'Half Boots'),(6069,139,0,1556,'Adidas'),(6070,75,0,1557,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6071,76,0,1557,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6072,85,0,1557,'Half Boots'),(6073,139,0,1557,'Adidas'),(6074,75,0,1558,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6075,76,0,1558,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6076,85,0,1558,'Half Boots'),(6077,139,0,1558,'Adidas'),(6078,75,0,1559,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6079,76,0,1559,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6080,85,0,1559,'Half Boots'),(6081,139,0,1559,'Adidas'),(6082,75,0,1560,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6083,76,0,1560,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6084,85,0,1560,'Half Boots'),(6085,139,0,1560,'Adidas'),(6086,75,0,1561,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Product colors:</strong> Dark Blue / Black / White / Dark Brown/ Grey / Dark Red</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Low sole half boots made of soft dark blue lether by Boxfresh.\\n\\nExtras: suede, logo appliqué(s)\\nOuter material: leather\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Extras:</strong> suede, logo appliqué(s)<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>'),(6087,76,0,1561,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Boxfresh dark blue leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Boxfresh men\'s leather half boots</span></p>'),(6088,85,0,1561,'Half Boots'),(6089,139,0,1561,'Adidas'),(6090,75,0,1562,'<p>With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem.</p>\r\n<p><strong>Cut:</strong> tapered, ribbed trim waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> embroidered logo(s)</p>\r\n<p><strong>Pattern:</strong> chequered</p>\r\n<p><strong>Material:</strong> 63% cotton, 27% polyamide, 10% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6091,76,0,1562,'<p>Knit sweater with a round neckline, long sleeves and contrast ribbed trims.</p>'),(6092,85,0,1562,'Tommy Hilfiger Long-sleeved Jumper'),(6093,75,0,1563,'<p>With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem.</p>\r\n<p><strong>Cut:</strong> tapered, ribbed trim waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> embroidered logo(s)</p>\r\n<p><strong>Pattern:</strong> chequered</p>\r\n<p><strong>Material:</strong> 63% cotton, 27% polyamide, 10% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6094,76,0,1563,'<p>Knit sweater with a round neckline, long sleeves and contrast ribbed trims.</p>'),(6095,85,0,1563,'Tommy Hilfiger Long-sleeved Jumper'),(6096,75,0,1564,'<p>With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem.</p>\r\n<p><strong>Cut:</strong> tapered, ribbed trim waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> embroidered logo(s)</p>\r\n<p><strong>Pattern:</strong> chequered</p>\r\n<p><strong>Material:</strong> 63% cotton, 27% polyamide, 10% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6097,76,0,1564,'<p>Knit sweater with a round neckline, long sleeves and contrast ribbed trims.</p>'),(6098,85,0,1564,'Tommy Hilfiger Long-sleeved Jumper'),(6099,75,0,1565,'<p>With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem.</p>\r\n<p><strong>Cut:</strong> tapered, ribbed trim waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> embroidered logo(s)</p>\r\n<p><strong>Pattern:</strong> chequered</p>\r\n<p><strong>Material:</strong> 63% cotton, 27% polyamide, 10% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6100,76,0,1565,'<p>Knit sweater with a round neckline, long sleeves and contrast ribbed trims.</p>'),(6101,85,0,1565,'Tommy Hilfiger Long-sleeved Jumper'),(6102,75,0,1566,'<p>With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem.</p>\r\n<p><strong>Cut:</strong> tapered, ribbed trim waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> embroidered logo(s)</p>\r\n<p><strong>Pattern:</strong> chequered</p>\r\n<p><strong>Material:</strong> 63% cotton, 27% polyamide, 10% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6103,76,0,1566,'<p>Knit sweater with a round neckline, long sleeves and contrast ribbed trims.</p>'),(6104,85,0,1566,'Tommy Hilfiger Long-sleeved Jumper'),(6105,75,0,1567,'<p>With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem.</p>\r\n<p><strong>Cut:</strong> tapered, ribbed trim waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> embroidered logo(s)</p>\r\n<p><strong>Pattern:</strong> chequered</p>\r\n<p><strong>Material:</strong> 63% cotton, 27% polyamide, 10% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6106,76,0,1567,'<p>Knit sweater with a round neckline, long sleeves and contrast ribbed trims.</p>'),(6107,85,0,1567,'Tommy Hilfiger Long-sleeved Jumper'),(6108,75,0,1568,'<p>With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem.</p>\r\n<p><strong>Cut:</strong> tapered, ribbed trim waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> embroidered logo(s)</p>\r\n<p><strong>Pattern:</strong> chequered</p>\r\n<p><strong>Material:</strong> 63% cotton, 27% polyamide, 10% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6109,76,0,1568,'<p>Knit sweater with a round neckline, long sleeves and contrast ribbed trims.</p>'),(6110,85,0,1568,'Tommy Hilfiger Long-sleeved Jumper'),(6111,75,0,1569,'<p>This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67,5 cm (26.5″)</p>\r\n<p><strong>Collar:</strong> ribbed knit collar</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Exterior pockets:</strong> slit pocket with press stud closure</p>\r\n<p><strong>Interior pockets:</strong> left inside pocket</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 83% polyester, 17% cotton</p>\r\n<p><strong>Lining material:</strong> 98% polyester, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6112,76,0,1569,'<p>Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front.</p>'),(6113,85,0,1569,'Diesel Jacket'),(6114,75,0,1570,'<p>This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67,5 cm (26.5″)</p>\r\n<p><strong>Collar:</strong> ribbed knit collar</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Exterior pockets:</strong> slit pocket with press stud closure</p>\r\n<p><strong>Interior pockets:</strong> left inside pocket</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 83% polyester, 17% cotton</p>\r\n<p><strong>Lining material:</strong> 98% polyester, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6115,76,0,1570,'<p>Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front.</p>'),(6116,85,0,1570,'Diesel Jacket'),(6117,75,0,1571,'<p>This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67,5 cm (26.5″)</p>\r\n<p><strong>Collar:</strong> ribbed knit collar</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Exterior pockets:</strong> slit pocket with press stud closure</p>\r\n<p><strong>Interior pockets:</strong> left inside pocket</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 83% polyester, 17% cotton</p>\r\n<p><strong>Lining material:</strong> 98% polyester, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6118,76,0,1571,'<p>Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front.</p>'),(6119,85,0,1571,'Diesel Jacket'),(6120,75,0,1572,'<p>This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67,5 cm (26.5″)</p>\r\n<p><strong>Collar:</strong> ribbed knit collar</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Exterior pockets:</strong> slit pocket with press stud closure</p>\r\n<p><strong>Interior pockets:</strong> left inside pocket</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 83% polyester, 17% cotton</p>\r\n<p><strong>Lining material:</strong> 98% polyester, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6121,76,0,1572,'<p>Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front.</p>'),(6122,85,0,1572,'Diesel Jacket'),(6123,75,0,1573,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6124,76,0,1573,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6125,85,0,1573,'Grey Sweat Pants'),(6126,139,0,1573,'Lawrence Grey'),(6127,75,0,1574,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6128,76,0,1574,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6129,85,0,1574,'Grey Sweat Pants'),(6130,139,0,1574,'Lawrence Grey'),(6131,75,0,1575,'<p>This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67,5 cm (26.5″)</p>\r\n<p><strong>Collar:</strong> ribbed knit collar</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Exterior pockets:</strong> slit pocket with press stud closure</p>\r\n<p><strong>Interior pockets:</strong> left inside pocket</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 83% polyester, 17% cotton</p>\r\n<p><strong>Lining material:</strong> 98% polyester, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6132,76,0,1575,'<p>Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front.</p>'),(6133,85,0,1575,'Diesel Jacket'),(6134,75,0,1576,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6135,76,0,1576,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6136,85,0,1576,'Grey Sweat Pants'),(6137,139,0,1576,'Lawrence Grey'),(6138,75,0,1577,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6139,76,0,1577,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6140,85,0,1577,'Grey Sweat Pants'),(6141,139,0,1577,'Lawrence Grey'),(6142,75,0,1578,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6143,76,0,1578,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6144,85,0,1578,'Grey Sweat Pants'),(6145,139,0,1578,'Lawrence Grey'),(6146,75,0,1579,'<p>This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67,5 cm (26.5″)</p>\r\n<p><strong>Collar:</strong> ribbed knit collar</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Exterior pockets:</strong> slit pocket with press stud closure</p>\r\n<p><strong>Interior pockets:</strong> left inside pocket</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 83% polyester, 17% cotton</p>\r\n<p><strong>Lining material:</strong> 98% polyester, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6147,76,0,1579,'<p>Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front.</p>'),(6148,85,0,1579,'Diesel Jacket'),(6149,75,0,1580,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6150,76,0,1580,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6151,85,0,1580,'Grey Sweat Pants'),(6152,139,0,1580,'Lawrence Grey'),(6153,75,0,1581,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6154,76,0,1581,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6155,85,0,1581,'Grey Sweat Pants'),(6156,139,0,1581,'Lawrence Grey'),(6157,75,0,1582,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6158,76,0,1582,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6159,85,0,1582,'Grey Sweat Pants'),(6160,139,0,1582,'Lawrence Grey'),(6161,75,0,1583,'<p>This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67,5 cm (26.5″)</p>\r\n<p><strong>Collar:</strong> ribbed knit collar</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Exterior pockets:</strong> slit pocket with press stud closure</p>\r\n<p><strong>Interior pockets:</strong> left inside pocket</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 83% polyester, 17% cotton</p>\r\n<p><strong>Lining material:</strong> 98% polyester, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6162,76,0,1583,'<p>Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front.</p>'),(6163,85,0,1583,'Diesel Jacket'),(6164,75,0,1584,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6165,76,0,1584,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6166,85,0,1584,'Grey Sweat Pants'),(6167,139,0,1584,'Lawrence Grey'),(6168,75,0,1585,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6169,76,0,1585,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6170,85,0,1585,'Grey Sweat Pants'),(6171,139,0,1585,'Lawrence Grey'),(6172,75,0,1586,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6173,76,0,1586,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6174,85,0,1586,'Grey Sweat Pants'),(6175,139,0,1586,'Lawrence Grey'),(6176,75,0,1587,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6177,76,0,1587,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6178,85,0,1587,'Grey Sweat Pants'),(6179,139,0,1587,'Lawrence Grey'),(6180,75,0,1588,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6181,76,0,1588,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6182,85,0,1588,'Grey Sweat Pants'),(6183,139,0,1588,'Lawrence Grey'),(6184,75,0,1589,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6185,76,0,1589,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6186,85,0,1589,'Grey Sweat Pants'),(6187,139,0,1589,'Lawrence Grey'),(6188,75,0,1590,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6189,76,0,1590,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6190,85,0,1590,'Grey Sweat Pants'),(6191,139,0,1590,'Lawrence Grey'),(6192,75,0,1591,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6193,76,0,1591,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6194,85,0,1591,'Grey Sweat Pants'),(6195,139,0,1591,'Lawrence Grey'),(6196,75,0,1592,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6197,76,0,1592,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6198,85,0,1592,'Grey Sweat Pants'),(6199,139,0,1592,'Lawrence Grey'),(6200,75,0,1593,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6201,76,0,1593,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6202,85,0,1593,'Grey Sweat Pants'),(6203,139,0,1593,'Lawrence Grey'),(6204,75,0,1594,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6205,76,0,1594,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6206,85,0,1594,'Grey Sweat Pants'),(6207,139,0,1594,'Lawrence Grey'),(6208,75,0,1595,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6209,76,0,1595,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6210,85,0,1595,'Grey Sweat Pants'),(6211,139,0,1595,'Lawrence Grey'),(6212,75,0,1596,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs on the ankles<br /><strong>Measurements for size EU M:</strong> length of outside leg 105 cm (41.5″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Lining:</strong> internal soft fleece cover<br /><strong>Material:</strong> 80% cotton, 17% polyester, 3% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs on the ankles\\nMeasurements for size EU M: length of outside leg 105 cm (41.5″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nLining: internal soft fleece cover\\nMaterial: 80% cotton, 17% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6213,76,0,1596,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Grey Sweat Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Grey Sweat Pants by Lawrence Grey</span></p>'),(6214,85,0,1596,'Grey Sweat Pants'),(6215,139,0,1596,'Lawrence Grey'),(6216,75,0,1597,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6217,76,0,1597,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6218,85,0,1597,'J.B by Jean Biani Sneakers'),(6219,139,0,1597,'Adidas'),(6220,75,0,1598,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, logo tag on back of waistband<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6221,76,0,1598,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(6222,85,0,1598,'Dark Blue Straight Leg Jeans'),(6223,75,0,1599,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, logo tag on back of waistband<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6224,76,0,1599,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(6225,85,0,1599,'Dark Blue Straight Leg Jeans'),(6226,75,0,1600,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, logo tag on back of waistband<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6227,76,0,1600,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(6228,85,0,1600,'Dark Blue Straight Leg Jeans'),(6229,75,0,1601,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, logo tag on back of waistband<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6230,76,0,1601,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(6231,85,0,1601,'Dark Blue Straight Leg Jeans'),(6232,75,0,1602,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, logo tag on back of waistband<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6233,76,0,1602,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(6234,85,0,1602,'Dark Blue Straight Leg Jeans'),(6235,75,0,1603,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, logo tag on back of waistband<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6236,76,0,1603,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(6237,85,0,1603,'Dark Blue Straight Leg Jeans'),(6238,75,0,1604,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: 700\\nManufacturers product information: regular fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, logo tag on back of waistband<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears a EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6239,76,0,1604,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(6240,85,0,1604,'Dark Blue Straight Leg Jeans'),(6241,75,0,1605,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6242,76,0,1605,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6243,85,0,1605,'J.B by Jean Biani Sneakers'),(6244,139,0,1605,'Adidas'),(6245,75,0,1606,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6246,76,0,1606,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6247,85,0,1606,'J.B by Jean Biani Sneakers'),(6248,139,0,1606,'Adidas'),(6249,75,0,1607,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6250,76,0,1607,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6251,85,0,1607,'J.B by Jean Biani Sneakers'),(6252,139,0,1607,'Adidas'),(6253,75,0,1608,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6254,76,0,1608,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6255,85,0,1608,'J.B by Jean Biani Sneakers'),(6256,139,0,1608,'Adidas'),(6257,75,0,1609,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6258,76,0,1609,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6259,85,0,1609,'J.B by Jean Biani Sneakers'),(6260,139,0,1609,'Adidas'),(6261,75,0,1610,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6262,76,0,1610,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6263,85,0,1610,'J.B by Jean Biani Sneakers'),(6264,139,0,1610,'Adidas'),(6265,75,0,1611,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6266,76,0,1611,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6267,85,0,1611,'J.B by Jean Biani Sneakers'),(6268,139,0,1611,'Adidas'),(6269,75,0,1612,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6270,76,0,1612,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6271,85,0,1612,'J.B by Jean Biani Sneakers'),(6272,139,0,1612,'Adidas'),(6273,75,0,1613,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6274,76,0,1613,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6275,85,0,1613,'J.B by Jean Biani Sneakers'),(6276,139,0,1613,'Adidas'),(6277,75,0,1614,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6278,76,0,1614,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6279,85,0,1614,'J.B by Jean Biani Sneakers'),(6280,139,0,1614,'Adidas'),(6281,75,0,1615,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6282,76,0,1615,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6283,85,0,1615,'J.B by Jean Biani Sneakers'),(6284,139,0,1615,'Adidas'),(6285,75,0,1616,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6286,76,0,1616,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6287,85,0,1616,'J.B by Jean Biani Sneakers'),(6288,139,0,1616,'Adidas'),(6289,75,0,1617,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6290,76,0,1617,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6291,85,0,1617,'J.B by Jean Biani Sneakers'),(6292,139,0,1617,'Adidas'),(6293,75,0,1618,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6294,76,0,1618,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6295,85,0,1618,'J.B by Jean Biani Sneakers'),(6296,139,0,1618,'Adidas'),(6297,75,0,1619,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue leather low top sneakers by Jean Biani.\\n\\nExtras: hole pattern, grained leather, lacing\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.<br /><br /><strong>Extras:</strong> hole pattern, grained leather, lacing<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather<br /><strong>Outsole:</strong> synthetic</span></p>'),(6298,76,0,1619,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark blue, leather sneakers by Jean Biani&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Low-Top calfskin leather sneakers by Jean Biani</span></p>'),(6299,85,0,1619,'J.B by Jean Biani Sneakers'),(6300,139,0,1619,'Adidas'),(6301,75,0,1620,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(6302,76,0,1620,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(6303,85,0,1620,'Dark Blue Slim Fit Jeans'),(6304,75,0,1621,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(6305,76,0,1621,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(6306,85,0,1621,'Dark Blue Slim Fit Jeans'),(6307,75,0,1622,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(6308,76,0,1622,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(6309,85,0,1622,'Dark Blue Slim Fit Jeans'),(6310,75,0,1623,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(6311,76,0,1623,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(6312,85,0,1623,'Dark Blue Slim Fit Jeans'),(6313,75,0,1624,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(6314,76,0,1624,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(6315,85,0,1624,'Dark Blue Slim Fit Jeans'),(6316,75,0,1625,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(6317,76,0,1625,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(6318,85,0,1625,'Dark Blue Slim Fit Jeans'),(6319,75,0,1626,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(6320,76,0,1626,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(6321,85,0,1626,'Dark Blue Slim Fit Jeans'),(6322,75,0,1627,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(6323,76,0,1627,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(6324,85,0,1627,'Dark Blue Slim Fit Jeans'),(6325,75,0,1628,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(6326,76,0,1628,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(6327,85,0,1628,'Dark Blue Slim Fit Jeans'),(6328,75,0,1629,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(6329,76,0,1629,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(6330,85,0,1629,'Dark Blue Slim Fit Jeans'),(6331,75,0,1630,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: anti-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: 5-pocket\\nExtras: dark wash, contrast trims on side, logo tag on back of waistband\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> anti-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)<br /><strong>Waistband:</strong> buttoned, belt loop(s)<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> dark wash, contrast trims on side, logo tag on back of waistband<br /><strong>Material:</strong> 100% cotton<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(6332,76,0,1630,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(6333,85,0,1630,'Dark Blue Slim Fit Jeans'),(6334,75,0,1631,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(6335,76,0,1631,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(6336,85,0,1631,'Ugg Freamon Wp'),(6337,139,0,1631,'Ugg'),(6338,75,0,1632,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(6339,76,0,1632,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(6340,85,0,1632,'Ugg Freamon Wp'),(6341,139,0,1632,'Ugg'),(6342,75,0,1633,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(6343,76,0,1633,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(6344,85,0,1633,'Ugg Freamon Wp'),(6345,139,0,1633,'Ugg'),(6346,75,0,1634,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(6347,76,0,1634,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(6348,85,0,1634,'Ugg Freamon Wp'),(6349,139,0,1634,'Ugg'),(6350,75,0,1635,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(6351,76,0,1635,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(6352,85,0,1635,'Ugg Freamon Wp'),(6353,139,0,1635,'Ugg'),(6354,75,0,1636,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(6355,76,0,1636,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(6356,85,0,1636,'Ugg Freamon Wp'),(6357,139,0,1636,'Ugg'),(6358,75,0,1637,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(6359,76,0,1637,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(6360,85,0,1637,'Ugg Freamon Wp'),(6361,139,0,1637,'Ugg'),(6362,75,0,1638,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(6363,76,0,1638,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(6364,85,0,1638,'Ugg Freamon Wp'),(6365,139,0,1638,'Ugg'),(6366,75,0,1639,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(6367,76,0,1639,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(6368,85,0,1639,'Ugg Freamon Wp'),(6369,139,0,1639,'Ugg'),(6370,75,0,1640,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(6371,76,0,1640,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(6372,85,0,1640,'Ugg Freamon Wp'),(6373,139,0,1640,'Ugg'),(6374,75,0,1641,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(6375,76,0,1641,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(6376,85,0,1641,'Ugg Freamon Wp'),(6377,139,0,1641,'Ugg'),(6378,75,0,1642,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(6379,76,0,1642,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(6380,85,0,1642,'Ugg Freamon Wp'),(6381,139,0,1642,'Ugg'),(6382,75,0,1643,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Details: </strong></span></p>\r\n<ul>\r\n<li>Waterproof full-grain leather</li>\r\n<li>Oiled suede heel counter</li>\r\n<li>enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning</li>\r\n<li>Treadlite by UGG™ outsole</li>\r\n</ul>\r\n<p><strong>Extras:</strong> suede, grained leather, strap(s) on the bootlegs</p>\r\n<p><strong>Outer material:</strong> leather</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Inner material:</strong> leather</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility.\\n\\nExtras: suede, grained leather, strap(s) on the bootlegs\\nOuter material: leather\\nInner material: leather\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Outsole:</strong> synthetic</span></p>'),(6383,76,0,1643,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel colour half boots by Ugg&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Men\'s<br />Freamon waterproof half boots by Ugg</span></p>'),(6384,85,0,1643,'Ugg Freamon Wp'),(6385,139,0,1643,'Ugg'),(6386,75,0,1644,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6387,76,0,1644,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(6388,85,0,1644,'Cipo & Baxx Jacket'),(6389,75,0,1645,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6390,76,0,1645,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(6391,85,0,1645,'Cipo & Baxx Jacket'),(6392,75,0,1646,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6393,76,0,1646,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(6394,85,0,1646,'Cipo & Baxx Jacket'),(6395,75,0,1647,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6396,76,0,1647,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(6397,85,0,1647,'Cipo & Baxx Jacket'),(6398,75,0,1648,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6399,76,0,1648,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(6400,85,0,1648,'Cipo & Baxx Jacket'),(6401,75,0,1649,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6402,76,0,1649,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(6403,85,0,1649,'Cipo & Baxx Jacket'),(6404,75,0,1650,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6405,76,0,1650,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(6406,85,0,1650,'Cipo & Baxx Jacket'),(6407,75,0,1651,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6408,76,0,1651,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(6409,85,0,1651,'Cipo & Baxx Jacket'),(6410,75,0,1652,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6411,76,0,1652,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(6412,85,0,1652,'Cipo & Baxx Jacket'),(6413,75,0,1653,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6414,76,0,1653,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(6415,85,0,1653,'Cipo & Baxx Jacket'),(6416,75,0,1654,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6417,76,0,1654,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(6418,85,0,1654,'Cipo & Baxx Jacket'),(6419,75,0,1655,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6420,76,0,1655,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(6421,85,0,1655,'Cipo & Baxx Jacket'),(6422,75,0,1656,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>\r\n<p><strong>Cut:</strong> straight, ribbed waistband</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 71 cm (28″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> continuous zip fastener with overlapping button facing</p>\r\n<p><strong>Sleeve:</strong> ribbed cuffs</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s)</p>\r\n<p><strong>Lining:</strong> teddy fur lining</p>\r\n<p><strong>Outer material:</strong> 100% cotton</p>\r\n<p><strong>Lining material:</strong> 100% polyester</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6423,76,0,1656,'<p>Puffer jacket featuring side zip pockets and a zip-up front.</p>'),(6424,85,0,1656,'Cipo & Baxx Jacket'),(6425,75,0,1657,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6426,76,0,1657,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6427,85,0,1657,'Black Knitted Pants'),(6428,139,0,1657,'Lawrence Grey'),(6429,75,0,1658,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6430,76,0,1658,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6431,85,0,1658,'Black Knitted Pants'),(6432,139,0,1658,'Lawrence Grey'),(6433,75,0,1659,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6434,76,0,1659,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6435,85,0,1659,'Black Knitted Pants'),(6436,139,0,1659,'Lawrence Grey'),(6437,75,0,1660,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6438,76,0,1660,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6439,85,0,1660,'Black Knitted Pants'),(6440,139,0,1660,'Lawrence Grey'),(6441,75,0,1661,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6442,76,0,1661,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6443,85,0,1661,'Black Knitted Pants'),(6444,139,0,1661,'Lawrence Grey'),(6445,75,0,1662,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6446,76,0,1662,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6447,85,0,1662,'Black Knitted Pants'),(6448,139,0,1662,'Lawrence Grey'),(6449,75,0,1663,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6450,76,0,1663,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6451,85,0,1663,'Black Knitted Pants'),(6452,139,0,1663,'Lawrence Grey'),(6453,75,0,1664,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6454,76,0,1664,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6455,85,0,1664,'Black Knitted Pants'),(6456,139,0,1664,'Lawrence Grey'),(6457,75,0,1665,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6458,76,0,1665,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6459,85,0,1665,'Black Knitted Pants'),(6460,139,0,1665,'Lawrence Grey'),(6461,75,0,1666,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6462,76,0,1666,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6463,85,0,1666,'Black Knitted Pants'),(6464,139,0,1666,'Lawrence Grey'),(6465,75,0,1667,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6466,76,0,1667,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6467,85,0,1667,'Black Knitted Pants'),(6468,139,0,1667,'Lawrence Grey'),(6469,75,0,1668,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6470,76,0,1668,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6471,85,0,1668,'Black Knitted Pants'),(6472,139,0,1668,'Lawrence Grey'),(6473,75,0,1669,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6474,76,0,1669,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6475,85,0,1669,'Black Knitted Pants'),(6476,139,0,1669,'Lawrence Grey'),(6477,75,0,1670,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6478,76,0,1670,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6479,85,0,1670,'Black Knitted Pants'),(6480,139,0,1670,'Lawrence Grey'),(6481,75,0,1671,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6482,76,0,1671,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6483,85,0,1671,'Black Knitted Pants'),(6484,139,0,1671,'Lawrence Grey'),(6485,75,0,1672,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6486,76,0,1672,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6487,85,0,1672,'Black Knitted Pants'),(6488,139,0,1672,'Lawrence Grey'),(6489,75,0,1673,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6490,76,0,1673,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6491,85,0,1673,'Black Knitted Pants'),(6492,139,0,1673,'Lawrence Grey'),(6493,75,0,1674,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6494,76,0,1674,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6495,85,0,1674,'Black Knitted Pants'),(6496,139,0,1674,'Lawrence Grey'),(6497,75,0,1675,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6498,76,0,1675,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6499,85,0,1675,'Black Knitted Pants'),(6500,139,0,1675,'Lawrence Grey'),(6501,75,0,1676,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6502,76,0,1676,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6503,85,0,1676,'Black Knitted Pants'),(6504,139,0,1676,'Lawrence Grey'),(6505,75,0,1677,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, ribbed trim cuffs\\nMeasurements for size EU M: length of outside leg 110 cm (43.5″)\\nWaistband: elasticated waistband\\nPockets: seam pocket / s\\nExtras: flecked\\nMaterial: 60% cotton, 25% polyamide, 15% wool\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> tapered leg, ribbed trim cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 110 cm (43.5″)<br /><strong>Waistband:</strong> elasticated waistband<br /><strong>Pockets:</strong> seam pocket / s<br /><strong>Extras:</strong> flecked<br /><strong>Material:</strong> 60% cotton, 25% polyamide, 15% wool<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(6506,76,0,1677,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Knitted Pants by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Knitted Pants by Lawrence Grey</span></p>'),(6507,85,0,1677,'Black Knitted Pants'),(6508,139,0,1677,'Lawrence Grey'),(6509,75,0,1678,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6510,76,0,1678,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6511,85,0,1678,'Camel Dress Trousers – Glenn'),(6512,139,0,1678,'Jack & Jones'),(6513,75,0,1679,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6514,76,0,1679,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6515,85,0,1679,'Camel Dress Trousers – Glenn'),(6516,139,0,1679,'Jack & Jones'),(6517,75,0,1680,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6518,76,0,1680,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6519,85,0,1680,'Camel Dress Trousers – Glenn'),(6520,139,0,1680,'Jack & Jones'),(6521,75,0,1681,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6522,76,0,1681,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6523,85,0,1681,'Camel Dress Trousers – Glenn'),(6524,139,0,1681,'Jack & Jones'),(6525,75,0,1682,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6526,76,0,1682,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6527,85,0,1682,'Camel Dress Trousers – Glenn'),(6528,139,0,1682,'Jack & Jones'),(6529,75,0,1683,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6530,76,0,1683,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6531,85,0,1683,'Camel Dress Trousers – Glenn'),(6532,139,0,1683,'Jack & Jones'),(6533,75,0,1684,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6534,76,0,1684,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6535,85,0,1684,'Camel Dress Trousers – Glenn'),(6536,139,0,1684,'Jack & Jones'),(6537,75,0,1685,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6538,76,0,1685,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6539,85,0,1685,'Camel Dress Trousers – Glenn'),(6540,139,0,1685,'Jack & Jones'),(6541,75,0,1686,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6542,76,0,1686,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6543,85,0,1686,'Camel Dress Trousers – Glenn'),(6544,139,0,1686,'Jack & Jones'),(6545,75,0,1687,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6546,76,0,1687,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6547,85,0,1687,'Camel Dress Trousers – Glenn'),(6548,139,0,1687,'Jack & Jones'),(6549,75,0,1688,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6550,76,0,1688,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6551,85,0,1688,'Camel Dress Trousers – Glenn'),(6552,139,0,1688,'Jack & Jones'),(6553,75,0,1689,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6554,76,0,1689,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6555,85,0,1689,'Camel Dress Trousers – Glenn'),(6556,139,0,1689,'Jack & Jones'),(6557,75,0,1690,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6558,76,0,1690,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6559,85,0,1690,'Camel Dress Trousers – Glenn'),(6560,139,0,1690,'Jack & Jones'),(6564,75,0,1692,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6565,76,0,1692,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6566,85,0,1692,'Camel Dress Trousers – Glenn'),(6567,139,0,1692,'Jack & Jones'),(6568,75,0,1693,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6569,76,0,1693,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6570,85,0,1693,'Camel Dress Trousers – Glenn'),(6571,139,0,1693,'Jack & Jones'),(6572,75,0,1694,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6573,76,0,1694,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6574,85,0,1694,'Camel Dress Trousers – Glenn'),(6575,139,0,1694,'Jack & Jones'),(6576,75,0,1695,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6577,76,0,1695,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6578,85,0,1695,'Camel Dress Trousers – Glenn'),(6579,139,0,1695,'Jack & Jones'),(6580,75,0,1696,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6581,76,0,1696,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6582,85,0,1696,'Camel Dress Trousers – Glenn'),(6583,139,0,1696,'Jack & Jones'),(6584,75,0,1697,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6585,76,0,1697,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6586,85,0,1697,'Camel Dress Trousers – Glenn'),(6587,139,0,1697,'Jack & Jones'),(6588,75,0,1698,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6589,76,0,1698,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6590,85,0,1698,'Camel Dress Trousers – Glenn'),(6591,139,0,1698,'Jack & Jones'),(6592,75,0,1699,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Glenn\\nManufacturer\'s product information: slim-fit\\nCut: straight, narrow legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Manufacturer\'s product information:</strong> slim-fit<br /><strong>Cut:</strong> straight, narrow legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6593,76,0,1699,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camel Dress Trousers – Glenn by Jack &amp; Jones&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Camel Dress Trousers by Jack &amp; Jones</span></p>'),(6594,85,0,1699,'Camel Dress Trousers – Glenn'),(6595,139,0,1699,'Jack & Jones'),(6596,75,0,1700,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6597,76,0,1700,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(6598,85,0,1700,'Calvin Klein Wool Jumper'),(6599,75,0,1701,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6600,76,0,1701,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(6601,85,0,1701,'Calvin Klein Wool Jumper'),(6602,75,0,1702,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6603,76,0,1702,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(6604,85,0,1702,'Calvin Klein Wool Jumper'),(6605,75,0,1703,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6606,76,0,1703,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(6607,85,0,1703,'Calvin Klein Wool Jumper'),(6608,75,0,1704,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6609,76,0,1704,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(6610,85,0,1704,'Calvin Klein Wool Jumper'),(6611,75,0,1705,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6612,76,0,1705,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(6613,85,0,1705,'Calvin Klein Wool Jumper'),(6614,75,0,1706,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6615,76,0,1706,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(6616,85,0,1706,'Calvin Klein Wool Jumper'),(6617,75,0,1707,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6618,76,0,1707,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(6619,85,0,1707,'Calvin Klein Wool Jumper'),(6620,75,0,1708,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6621,76,0,1708,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(6622,85,0,1708,'Calvin Klein Wool Jumper'),(6623,75,0,1709,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 68 cm (27″), garment length 72 cm (28.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> long sleeves</p>\r\n<p><strong>Extras:</strong> embroidered logo on chest, contrast details, rib knit details</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 100% wool</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6624,76,0,1709,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(6625,85,0,1709,'Calvin Klein Wool Jumper'),(6626,75,0,1710,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6627,76,0,1710,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6628,85,0,1710,'Tan Corduroy Trousers'),(6629,139,0,1710,'Tommy Hilfiger'),(6630,75,0,1711,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6631,76,0,1711,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6632,85,0,1711,'Tan Corduroy Trousers'),(6633,139,0,1711,'Tommy Hilfiger'),(6634,75,0,1712,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6635,76,0,1712,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6636,85,0,1712,'Tan Corduroy Trousers'),(6637,139,0,1712,'Tommy Hilfiger'),(6638,75,0,1713,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6639,76,0,1713,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6640,85,0,1713,'Tan Corduroy Trousers'),(6641,139,0,1713,'Tommy Hilfiger'),(6642,75,0,1714,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6643,76,0,1714,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6644,85,0,1714,'Tan Corduroy Trousers'),(6645,139,0,1714,'Tommy Hilfiger'),(6646,75,0,1715,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6647,76,0,1715,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6648,85,0,1715,'Tan Corduroy Trousers'),(6649,139,0,1715,'Tommy Hilfiger'),(6650,75,0,1716,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6651,76,0,1716,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6652,85,0,1716,'Tan Corduroy Trousers'),(6653,139,0,1716,'Tommy Hilfiger'),(6654,75,0,1717,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6655,76,0,1717,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6656,85,0,1717,'Tan Corduroy Trousers'),(6657,139,0,1717,'Tommy Hilfiger'),(6658,75,0,1718,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6659,76,0,1718,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6660,85,0,1718,'Tan Corduroy Trousers'),(6661,139,0,1718,'Tommy Hilfiger'),(6662,75,0,1719,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6663,76,0,1719,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6664,85,0,1719,'Tan Corduroy Trousers'),(6665,139,0,1719,'Tommy Hilfiger'),(6666,75,0,1720,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6667,76,0,1720,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6668,85,0,1720,'Tan Corduroy Trousers'),(6669,139,0,1720,'Tommy Hilfiger'),(6670,75,0,1721,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6671,76,0,1721,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6672,85,0,1721,'Tan Corduroy Trousers'),(6673,139,0,1721,'Tommy Hilfiger'),(6674,75,0,1722,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6675,76,0,1722,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6676,85,0,1722,'Tan Corduroy Trousers'),(6677,139,0,1722,'Tommy Hilfiger'),(6678,75,0,1723,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6679,76,0,1723,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6680,85,0,1723,'Tan Corduroy Trousers'),(6681,139,0,1723,'Tommy Hilfiger'),(6682,75,0,1724,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6683,76,0,1724,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6684,85,0,1724,'Tan Corduroy Trousers'),(6685,139,0,1724,'Tommy Hilfiger'),(6686,75,0,1725,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6687,76,0,1725,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Tan Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tan Corduroy Trousers by Tommy Hilfiger</span></p>'),(6688,85,0,1725,'Tan Corduroy Trousers'),(6689,139,0,1725,'Tommy Hilfiger'),(6690,75,0,1726,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6691,76,0,1726,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(6692,85,0,1726,'Boss Denim Jacket'),(6693,75,0,1727,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6694,76,0,1727,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(6695,85,0,1727,'Boss Denim Jacket'),(6696,75,0,1728,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6697,76,0,1728,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(6698,85,0,1728,'Boss Denim Jacket'),(6699,75,0,1729,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6700,76,0,1729,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(6701,85,0,1729,'Boss Denim Jacket'),(6702,75,0,1730,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6703,76,0,1730,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(6704,85,0,1730,'Boss Denim Jacket'),(6705,75,0,1731,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6706,76,0,1731,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(6707,85,0,1731,'Boss Denim Jacket'),(6708,75,0,1732,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6709,76,0,1732,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(6710,85,0,1732,'Boss Denim Jacket'),(6711,75,0,1733,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6712,76,0,1733,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(6713,85,0,1733,'Boss Denim Jacket'),(6714,75,0,1734,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6715,76,0,1734,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(6716,85,0,1734,'Boss Denim Jacket'),(6717,75,0,1735,'<p>Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.</p>\r\n<p>Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit.</p>\r\n<p><strong>Cut:</strong> lightly fitted, elasticated back</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 67 cm (26.5″)</p>\r\n<p><strong>Fastening:</strong> continuous button placket</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> breast pocket(s), piped pocket(s)</p>\r\n<p><strong>Material:</strong> 98% cotton, 2% elastane</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6718,76,0,1735,'<p>A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.</p>\r\n<p> </p>'),(6719,85,0,1735,'Boss Denim Jacket'),(6720,75,0,1736,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6721,76,0,1736,'<p>Black Chino by Lawrence Grey</p>'),(6722,85,0,1736,'Black Chino'),(6723,139,0,1736,'Lawrence Grey'),(6724,75,0,1737,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6725,76,0,1737,'<p>Black Chino by Lawrence Grey</p>'),(6726,85,0,1737,'Black Chino'),(6727,139,0,1737,'Lawrence Grey'),(6728,75,0,1738,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6729,76,0,1738,'<p>Black Chino by Lawrence Grey</p>'),(6730,85,0,1738,'Black Chino'),(6731,139,0,1738,'Lawrence Grey'),(6732,75,0,1739,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6733,76,0,1739,'<p>Black Chino by Lawrence Grey</p>'),(6734,85,0,1739,'Black Chino'),(6735,139,0,1739,'Lawrence Grey'),(6736,75,0,1740,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6737,76,0,1740,'<p>Black Chino by Lawrence Grey</p>'),(6738,85,0,1740,'Black Chino'),(6739,139,0,1740,'Lawrence Grey'),(6740,75,0,1741,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6741,76,0,1741,'<p>Black Chino by Lawrence Grey</p>'),(6742,85,0,1741,'Black Chino'),(6743,139,0,1741,'Lawrence Grey'),(6744,75,0,1742,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6745,76,0,1742,'<p>Black Chino by Lawrence Grey</p>'),(6746,85,0,1742,'Black Chino'),(6747,139,0,1742,'Lawrence Grey'),(6748,75,0,1743,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6749,76,0,1743,'<p>Black Chino by Lawrence Grey</p>'),(6750,85,0,1743,'Black Chino'),(6751,139,0,1743,'Lawrence Grey'),(6752,75,0,1744,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6753,76,0,1744,'<p>Black Chino by Lawrence Grey</p>'),(6754,85,0,1744,'Black Chino'),(6755,139,0,1744,'Lawrence Grey'),(6756,75,0,1745,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6757,76,0,1745,'<p>Black Chino by Lawrence Grey</p>'),(6758,85,0,1745,'Black Chino'),(6759,139,0,1745,'Lawrence Grey'),(6760,75,0,1746,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6761,76,0,1746,'<p>Black Chino by Lawrence Grey</p>'),(6762,85,0,1746,'Black Chino'),(6763,139,0,1746,'Lawrence Grey'),(6764,75,0,1747,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6765,76,0,1747,'<p>Black Chino by Lawrence Grey</p>'),(6766,85,0,1747,'Black Chino'),(6767,139,0,1747,'Lawrence Grey'),(6768,75,0,1748,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6769,76,0,1748,'<p>Black Chino by Lawrence Grey</p>'),(6770,85,0,1748,'Black Chino'),(6771,139,0,1748,'Lawrence Grey'),(6772,75,0,1749,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6773,76,0,1749,'<p>Black Chino by Lawrence Grey</p>'),(6774,85,0,1749,'Black Chino'),(6775,139,0,1749,'Lawrence Grey'),(6776,75,0,1750,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6777,76,0,1750,'<p>Black Chino by Lawrence Grey</p>'),(6778,85,0,1750,'Black Chino'),(6779,139,0,1750,'Lawrence Grey'),(6780,75,0,1751,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6781,76,0,1751,'<p>Black Chino by Lawrence Grey</p>'),(6782,85,0,1751,'Black Chino'),(6783,139,0,1751,'Lawrence Grey'),(6784,75,0,1752,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6785,76,0,1752,'<p>Black Chino by Lawrence Grey</p>'),(6786,85,0,1752,'Black Chino'),(6787,139,0,1752,'Lawrence Grey'),(6788,75,0,1753,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6789,76,0,1753,'<p>Black Chino by Lawrence Grey</p>'),(6790,85,0,1753,'Black Chino'),(6791,139,0,1753,'Lawrence Grey'),(6792,75,0,1754,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6793,76,0,1754,'<p>Black Chino by Lawrence Grey</p>'),(6794,85,0,1754,'Black Chino'),(6795,139,0,1754,'Lawrence Grey'),(6796,75,0,1755,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6797,76,0,1755,'<p>Black Chino by Lawrence Grey</p>'),(6798,85,0,1755,'Black Chino'),(6799,139,0,1755,'Lawrence Grey'),(6800,75,0,1756,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6801,76,0,1756,'<p>Black Chino by Lawrence Grey</p>'),(6802,85,0,1756,'Black Chino'),(6803,139,0,1756,'Lawrence Grey'),(6804,75,0,1757,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6805,76,0,1757,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6806,85,0,1757,'Lawrence Grey Rollneck Pullover'),(6807,139,0,1757,'Lawrence Grey'),(6808,75,0,1758,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6809,76,0,1758,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6810,85,0,1758,'Lawrence Grey Rollneck Pullover'),(6811,139,0,1758,'Lawrence Grey'),(6812,75,0,1759,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6813,76,0,1759,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6814,85,0,1759,'Lawrence Grey Rollneck Pullover'),(6815,139,0,1759,'Lawrence Grey'),(6816,75,0,1760,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6817,76,0,1760,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6818,85,0,1760,'Lawrence Grey Rollneck Pullover'),(6819,139,0,1760,'Lawrence Grey'),(6820,75,0,1761,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6821,76,0,1761,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6822,85,0,1761,'Lawrence Grey Rollneck Pullover'),(6823,139,0,1761,'Lawrence Grey'),(6824,75,0,1762,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6825,76,0,1762,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6826,85,0,1762,'Lawrence Grey Rollneck Pullover'),(6827,139,0,1762,'Lawrence Grey'),(6828,75,0,1763,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6829,76,0,1763,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6830,85,0,1763,'Lawrence Grey Rollneck Pullover'),(6831,139,0,1763,'Lawrence Grey'),(6832,75,0,1764,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6833,76,0,1764,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6834,85,0,1764,'Lawrence Grey Rollneck Pullover'),(6835,139,0,1764,'Lawrence Grey'),(6836,75,0,1765,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6837,76,0,1765,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6838,85,0,1765,'Lawrence Grey Rollneck Pullover'),(6839,139,0,1765,'Lawrence Grey'),(6840,75,0,1766,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6841,76,0,1766,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6842,85,0,1766,'Lawrence Grey Rollneck Pullover'),(6843,139,0,1766,'Lawrence Grey'),(6844,75,0,1767,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6845,76,0,1767,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6846,85,0,1767,'Lawrence Grey Rollneck Pullover'),(6847,139,0,1767,'Lawrence Grey'),(6848,75,0,1768,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6849,76,0,1768,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6850,85,0,1768,'Lawrence Grey Rollneck Pullover'),(6851,139,0,1768,'Lawrence Grey'),(6852,75,0,1769,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6853,76,0,1769,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6854,85,0,1769,'Lawrence Grey Rollneck Pullover'),(6855,139,0,1769,'Lawrence Grey'),(6856,75,0,1770,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6857,76,0,1770,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6858,85,0,1770,'Lawrence Grey Rollneck Pullover'),(6859,139,0,1770,'Lawrence Grey'),(6860,75,0,1771,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6861,76,0,1771,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6862,85,0,1771,'Lawrence Grey Rollneck Pullover'),(6863,139,0,1771,'Lawrence Grey'),(6864,75,0,1772,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6865,76,0,1772,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6866,85,0,1772,'Lawrence Grey Rollneck Pullover'),(6867,139,0,1772,'Lawrence Grey'),(6868,75,0,1773,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6869,76,0,1773,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6870,85,0,1773,'Lawrence Grey Rollneck Pullover'),(6871,139,0,1773,'Lawrence Grey'),(6872,75,0,1774,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6873,76,0,1774,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6874,85,0,1774,'Lawrence Grey Rollneck Pullover'),(6875,139,0,1774,'Lawrence Grey'),(6876,75,0,1775,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6877,76,0,1775,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6878,85,0,1775,'Lawrence Grey Rollneck Pullover'),(6879,139,0,1775,'Lawrence Grey'),(6880,75,0,1776,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6881,76,0,1776,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6882,85,0,1776,'Lawrence Grey Rollneck Pullover'),(6883,139,0,1776,'Lawrence Grey'),(6884,75,0,1777,'<p>We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.</p>\r\n<p class=\"pdp-description__text__short\"><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 66 cm (26″), garment length 68 cm (27″)</p>\r\n<p><strong>Collar:</strong> rollneck</p>\r\n<p><strong>Extras:</strong> ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(6885,76,0,1777,'<p>Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.</p>'),(6886,85,0,1777,'Lawrence Grey Rollneck Pullover'),(6887,139,0,1777,'Lawrence Grey'),(6888,75,0,1778,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6889,76,0,1778,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(6890,85,0,1778,'Blue Straight Leg Jeans – Rob'),(6891,75,0,1779,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6892,76,0,1779,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(6893,85,0,1779,'Blue Straight Leg Jeans – Rob'),(6894,75,0,1780,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6895,76,0,1780,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(6896,85,0,1780,'Blue Straight Leg Jeans – Rob'),(6897,75,0,1781,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6898,76,0,1781,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(6899,85,0,1781,'Blue Straight Leg Jeans – Rob'),(6900,75,0,1782,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6901,76,0,1782,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(6902,85,0,1782,'Blue Straight Leg Jeans – Rob'),(6903,75,0,1783,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6904,76,0,1783,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(6905,85,0,1783,'Blue Straight Leg Jeans – Rob'),(6906,75,0,1784,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6907,76,0,1784,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(6908,85,0,1784,'Blue Straight Leg Jeans – Rob'),(6909,75,0,1785,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6910,76,0,1785,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(6911,85,0,1785,'Blue Straight Leg Jeans – Rob'),(6912,75,0,1786,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6913,76,0,1786,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(6914,85,0,1786,'Blue Straight Leg Jeans – Rob'),(6915,75,0,1787,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Rob\\nManufacturers product information: regular fit, mid-rise\\nCut: straight leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit, mid-rise<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded coloring<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(6916,76,0,1787,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.</span></p>'),(6917,85,0,1787,'Blue Straight Leg Jeans – Rob'),(6918,75,0,1788,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6919,76,0,1788,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6920,85,0,1788,'Navy Chino'),(6921,139,0,1788,'Lawrence Grey'),(6922,75,0,1789,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6923,76,0,1789,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6924,85,0,1789,'Navy Chino'),(6925,139,0,1789,'Lawrence Grey'),(6926,75,0,1790,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6927,76,0,1790,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6928,85,0,1790,'Navy Chino'),(6929,139,0,1790,'Lawrence Grey'),(6930,75,0,1791,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6931,76,0,1791,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6932,85,0,1791,'Navy Chino'),(6933,139,0,1791,'Lawrence Grey'),(6934,75,0,1792,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6935,76,0,1792,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6936,85,0,1792,'Navy Chino'),(6937,139,0,1792,'Lawrence Grey'),(6938,75,0,1793,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6939,76,0,1793,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6940,85,0,1793,'Navy Chino'),(6941,139,0,1793,'Lawrence Grey'),(6942,75,0,1794,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6943,76,0,1794,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6944,85,0,1794,'Navy Chino'),(6945,139,0,1794,'Lawrence Grey'),(6946,75,0,1795,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6947,76,0,1795,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6948,85,0,1795,'Navy Chino'),(6949,139,0,1795,'Lawrence Grey'),(6950,75,0,1796,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6951,76,0,1796,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6952,85,0,1796,'Navy Chino'),(6953,139,0,1796,'Lawrence Grey'),(6954,75,0,1797,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6955,76,0,1797,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6956,85,0,1797,'Navy Chino'),(6957,139,0,1797,'Lawrence Grey'),(6958,75,0,1798,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6959,76,0,1798,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6960,85,0,1798,'Navy Chino'),(6961,139,0,1798,'Lawrence Grey'),(6962,75,0,1799,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6963,76,0,1799,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6964,85,0,1799,'Navy Chino'),(6965,139,0,1799,'Lawrence Grey'),(6966,75,0,1800,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6967,76,0,1800,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6968,85,0,1800,'Navy Chino'),(6969,139,0,1800,'Lawrence Grey'),(6970,75,0,1801,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6971,76,0,1801,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6972,85,0,1801,'Navy Chino'),(6973,139,0,1801,'Lawrence Grey'),(6974,75,0,1802,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6975,76,0,1802,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6976,85,0,1802,'Navy Chino'),(6977,139,0,1802,'Lawrence Grey'),(6978,75,0,1803,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6979,76,0,1803,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6980,85,0,1803,'Navy Chino'),(6981,139,0,1803,'Lawrence Grey'),(6982,75,0,1804,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6983,76,0,1804,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6984,85,0,1804,'Navy Chino'),(6985,139,0,1804,'Lawrence Grey'),(6986,75,0,1805,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6987,76,0,1805,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6988,85,0,1805,'Navy Chino'),(6989,139,0,1805,'Lawrence Grey'),(6990,75,0,1806,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6991,76,0,1806,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6992,85,0,1806,'Navy Chino'),(6993,139,0,1806,'Lawrence Grey'),(6994,75,0,1807,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6995,76,0,1807,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(6996,85,0,1807,'Navy Chino'),(6997,139,0,1807,'Lawrence Grey'),(6998,75,0,1808,'<p>For quality menswear that’s made to last, <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Lawrence Grey</span>. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(6999,76,0,1808,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Chino by Lawrence Grey</span></p>'),(7000,85,0,1808,'Navy Chino'),(7001,139,0,1808,'Lawrence Grey'),(7002,75,0,1809,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7003,76,0,1809,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(7004,85,0,1809,'Blue Straight Leg Jeans'),(7005,75,0,1810,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7006,76,0,1810,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(7007,85,0,1810,'Blue Straight Leg Jeans'),(7008,75,0,1811,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7009,76,0,1811,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(7010,85,0,1811,'Blue Straight Leg Jeans'),(7011,75,0,1812,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7012,76,0,1812,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(7013,85,0,1812,'Blue Straight Leg Jeans'),(7014,75,0,1813,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7015,76,0,1813,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(7016,85,0,1813,'Blue Straight Leg Jeans'),(7017,75,0,1814,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7018,76,0,1814,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(7019,85,0,1814,'Blue Straight Leg Jeans'),(7020,75,0,1815,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7021,76,0,1815,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(7022,85,0,1815,'Blue Straight Leg Jeans'),(7023,75,0,1816,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7024,76,0,1816,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(7025,85,0,1816,'Blue Straight Leg Jeans'),(7026,75,0,1817,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Brand: Bugatti. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Material: cotton blend. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Country of Origin: Italy. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Front Rise: 10  </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: faded colouring, elastic\\nMaterial: 81% cotton, 17% Elastomultiester, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> faded colouring, elastic<br /><strong>Material:</strong> 81% cotton, 17% Elastomultiester, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7027,76,0,1817,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(7028,85,0,1817,'Blue Straight Leg Jeans'),(7093,75,0,1834,'<p>The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> mid-rise slim-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> distressed look with faded dyes and permanent wrinkles<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7094,76,0,1834,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(7095,85,0,1834,'Blue Slim Fit Jeans – Cliff'),(7096,75,0,1835,'<p>The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> mid-rise slim-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> distressed look with faded dyes and permanent wrinkles<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7097,76,0,1835,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(7098,85,0,1835,'Blue Slim Fit Jeans – Cliff'),(7099,75,0,1836,'<p>The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> mid-rise slim-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> distressed look with faded dyes and permanent wrinkles<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7100,76,0,1836,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(7101,85,0,1836,'Blue Slim Fit Jeans – Cliff'),(7102,75,0,1837,'<p>The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> mid-rise slim-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> distressed look with faded dyes and permanent wrinkles<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7103,76,0,1837,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(7104,85,0,1837,'Blue Slim Fit Jeans – Cliff'),(7105,75,0,1838,'<p>The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> mid-rise slim-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> distressed look with faded dyes and permanent wrinkles<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7106,76,0,1838,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(7107,85,0,1838,'Blue Slim Fit Jeans – Cliff'),(7108,75,0,1839,'<p>The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> mid-rise slim-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> distressed look with faded dyes and permanent wrinkles<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7109,76,0,1839,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(7110,85,0,1839,'Blue Slim Fit Jeans – Cliff'),(7111,75,0,1840,'<p>The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Cliff\\nManufacturers product information: mid-rise slim-fit\\nCut: narrow, slightly tapered legs\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: distressed look with faded dyes and permanent wrinkles\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> mid-rise slim-fit<br /><strong>Cut:</strong> narrow, slightly tapered legs<br /><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> distressed look with faded dyes and permanent wrinkles<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7112,76,0,1840,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.</span></p>'),(7113,85,0,1840,'Blue Slim Fit Jeans – Cliff'),(7114,75,0,1841,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7115,76,0,1841,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7116,85,0,1841,'Tommy Hilfiger'),(7117,139,0,1841,'Tommy Hilfiger'),(7118,75,0,1842,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7119,76,0,1842,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7120,85,0,1842,'Tommy Hilfiger'),(7121,139,0,1842,'Tommy Hilfiger'),(7122,75,0,1843,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7123,76,0,1843,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7124,85,0,1843,'Tommy Hilfiger'),(7125,139,0,1843,'Tommy Hilfiger'),(7126,75,0,1844,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7127,76,0,1844,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7128,85,0,1844,'Tommy Hilfiger'),(7129,139,0,1844,'Tommy Hilfiger'),(7130,75,0,1845,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7131,76,0,1845,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7132,85,0,1845,'Tommy Hilfiger'),(7133,139,0,1845,'Tommy Hilfiger'),(7134,75,0,1846,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7135,76,0,1846,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7136,85,0,1846,'Tommy Hilfiger'),(7137,139,0,1846,'Tommy Hilfiger'),(7138,75,0,1847,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7139,76,0,1847,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7140,85,0,1847,'Tommy Hilfiger'),(7141,139,0,1847,'Tommy Hilfiger'),(7142,75,0,1848,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7143,76,0,1848,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7144,85,0,1848,'Tommy Hilfiger'),(7145,139,0,1848,'Tommy Hilfiger'),(7146,75,0,1849,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7147,76,0,1849,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7148,85,0,1849,'Tommy Hilfiger'),(7149,139,0,1849,'Tommy Hilfiger'),(7150,75,0,1850,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7151,76,0,1850,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7152,85,0,1850,'Tommy Hilfiger'),(7153,139,0,1850,'Tommy Hilfiger'),(7154,75,0,1851,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7155,76,0,1851,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7156,85,0,1851,'Tommy Hilfiger'),(7157,139,0,1851,'Tommy Hilfiger'),(7158,75,0,1852,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7159,76,0,1852,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7160,85,0,1852,'Tommy Hilfiger'),(7161,139,0,1852,'Tommy Hilfiger'),(7162,75,0,1853,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7163,76,0,1853,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7164,85,0,1853,'Tommy Hilfiger'),(7165,139,0,1853,'Tommy Hilfiger'),(7166,75,0,1854,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7167,76,0,1854,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7168,85,0,1854,'Tommy Hilfiger'),(7169,139,0,1854,'Tommy Hilfiger'),(7170,75,0,1855,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7171,76,0,1855,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7172,85,0,1855,'Tommy Hilfiger'),(7173,139,0,1855,'Tommy Hilfiger'),(7174,75,0,1856,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7175,76,0,1856,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7176,85,0,1856,'Tommy Hilfiger'),(7177,139,0,1856,'Tommy Hilfiger'),(7178,75,0,1857,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7179,76,0,1857,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7180,85,0,1857,'Tommy Hilfiger'),(7181,139,0,1857,'Tommy Hilfiger'),(7182,75,0,1858,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7183,76,0,1858,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7184,85,0,1858,'Tommy Hilfiger'),(7185,139,0,1858,'Tommy Hilfiger'),(7186,75,0,1859,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7187,76,0,1859,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7188,85,0,1859,'Tommy Hilfiger'),(7189,139,0,1859,'Tommy Hilfiger'),(7190,75,0,1860,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7191,76,0,1860,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7192,85,0,1860,'Tommy Hilfiger'),(7193,139,0,1860,'Tommy Hilfiger'),(7194,75,0,1861,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7195,76,0,1861,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7196,85,0,1861,'Tommy Hilfiger'),(7197,139,0,1861,'Tommy Hilfiger'),(7198,75,0,1862,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7199,76,0,1862,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7200,85,0,1862,'Tommy Hilfiger'),(7201,139,0,1862,'Tommy Hilfiger'),(7202,75,0,1863,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7203,76,0,1863,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7204,85,0,1863,'Tommy Hilfiger'),(7205,139,0,1863,'Tommy Hilfiger'),(7206,75,0,1864,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7207,76,0,1864,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7208,85,0,1864,'Tommy Hilfiger'),(7209,139,0,1864,'Tommy Hilfiger'),(7210,75,0,1865,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7211,76,0,1865,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7212,85,0,1865,'Tommy Hilfiger'),(7213,139,0,1865,'Tommy Hilfiger'),(7214,75,0,1866,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU L32W32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>'),(7215,76,0,1866,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Navy Corduroy Trousers by Tommy Hilfiger&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Navy Corduroy fashionable trousers by Tommy Hilfiger</span></p>'),(7216,85,0,1866,'Tommy Hilfiger'),(7217,139,0,1866,'Tommy Hilfiger'),(7218,75,0,1867,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7219,76,0,1867,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(7220,85,0,1867,'Blue Slim Fit Jeans'),(7221,75,0,1868,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7222,76,0,1868,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(7223,85,0,1868,'Blue Slim Fit Jeans'),(7224,75,0,1869,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7225,76,0,1869,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(7226,85,0,1869,'Blue Slim Fit Jeans'),(7227,75,0,1870,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7228,76,0,1870,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(7229,85,0,1870,'Blue Slim Fit Jeans'),(7230,75,0,1871,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7231,76,0,1871,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(7232,85,0,1871,'Blue Slim Fit Jeans'),(7233,75,0,1872,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7234,76,0,1872,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(7235,85,0,1872,'Blue Slim Fit Jeans'),(7236,75,0,1873,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7237,76,0,1873,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(7238,85,0,1873,'Blue Slim Fit Jeans'),(7239,75,0,1874,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7240,76,0,1874,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(7241,85,0,1874,'Blue Slim Fit Jeans'),(7242,75,0,1875,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch <span class=\"details\">pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live</span></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nMaterial: 99% cotton, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Material:</strong> 99% cotton, 1% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(7243,76,0,1875,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg, long five-pocket jeans with a removable chain detail on the belt. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.</span></p>'),(7244,85,0,1875,'Blue Slim Fit Jeans'),(7245,75,0,1876,'<p>Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.<br />· A luxurious item made from 100% cashmere, the “jewel of fabrics.”<br />· A delicate, smooth knit you can wear for any occasion.<br />· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.<br />· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better.</p>\r\n<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7246,76,0,1876,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(7247,85,0,1876,'Gabba Long-sleeved Jumper'),(7248,139,0,1876,'Gabba'),(7249,75,0,1877,'<p>Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.<br />· A luxurious item made from 100% cashmere, the “jewel of fabrics.”<br />· A delicate, smooth knit you can wear for any occasion.<br />· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.<br />· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better.</p>\r\n<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7250,76,0,1877,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(7251,85,0,1877,'Gabba Long-sleeved Jumper'),(7252,139,0,1877,'Gabba'),(7253,75,0,1878,'<p>Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.<br />· A luxurious item made from 100% cashmere, the “jewel of fabrics.”<br />· A delicate, smooth knit you can wear for any occasion.<br />· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.<br />· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better.</p>\r\n<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7254,76,0,1878,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(7255,85,0,1878,'Gabba Long-sleeved Jumper'),(7256,139,0,1878,'Gabba'),(7257,75,0,1879,'<p>Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.<br />· A luxurious item made from 100% cashmere, the “jewel of fabrics.”<br />· A delicate, smooth knit you can wear for any occasion.<br />· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.<br />· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better.</p>\r\n<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7258,76,0,1879,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(7259,85,0,1879,'Gabba Long-sleeved Jumper'),(7260,139,0,1879,'Gabba'),(7261,75,0,1880,'<p>Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.<br />· A luxurious item made from 100% cashmere, the “jewel of fabrics.”<br />· A delicate, smooth knit you can wear for any occasion.<br />· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.<br />· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better.</p>\r\n<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7262,76,0,1880,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(7263,85,0,1880,'Gabba Long-sleeved Jumper'),(7264,139,0,1880,'Gabba'),(7265,75,0,1881,'<p>Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.<br />· A luxurious item made from 100% cashmere, the “jewel of fabrics.”<br />· A delicate, smooth knit you can wear for any occasion.<br />· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.<br />· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better.</p>\r\n<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7266,76,0,1881,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(7267,85,0,1881,'Gabba Long-sleeved Jumper'),(7268,139,0,1881,'Gabba'),(7269,75,0,1882,'<p>Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.<br />· A luxurious item made from 100% cashmere, the “jewel of fabrics.”<br />· A delicate, smooth knit you can wear for any occasion.<br />· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.<br />· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better.</p>\r\n<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7270,76,0,1882,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(7271,85,0,1882,'Gabba Long-sleeved Jumper'),(7272,139,0,1882,'Gabba'),(7273,75,0,1883,'<p>Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.<br />· A luxurious item made from 100% cashmere, the “jewel of fabrics.”<br />· A delicate, smooth knit you can wear for any occasion.<br />· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.<br />· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better.</p>\r\n<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7274,76,0,1883,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(7275,85,0,1883,'Gabba Long-sleeved Jumper'),(7276,139,0,1883,'Gabba'),(7277,75,0,1884,'<p>Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.<br />· A luxurious item made from 100% cashmere, the “jewel of fabrics.”<br />· A delicate, smooth knit you can wear for any occasion.<br />· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.<br />· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better.</p>\r\n<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7278,76,0,1884,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(7279,85,0,1884,'Gabba Long-sleeved Jumper'),(7280,139,0,1884,'Gabba'),(7281,75,0,1885,'<p>Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.<br />· A luxurious item made from 100% cashmere, the “jewel of fabrics.”<br />· A delicate, smooth knit you can wear for any occasion.<br />· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.<br />· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better.</p>\r\n<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7282,76,0,1885,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(7283,85,0,1885,'Gabba Long-sleeved Jumper'),(7284,139,0,1885,'Gabba'),(7285,75,0,1886,'<p>Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.<br />· A luxurious item made from 100% cashmere, the “jewel of fabrics.”<br />· A delicate, smooth knit you can wear for any occasion.<br />· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.<br />· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better.</p>\r\n<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7286,76,0,1886,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(7287,85,0,1886,'Gabba Long-sleeved Jumper'),(7288,139,0,1886,'Gabba'),(7289,75,0,1887,'<p>Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.<br />· A luxurious item made from 100% cashmere, the “jewel of fabrics.”<br />· A delicate, smooth knit you can wear for any occasion.<br />· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.<br />· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better.</p>\r\n<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7290,76,0,1887,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(7291,85,0,1887,'Gabba Long-sleeved Jumper'),(7292,139,0,1887,'Gabba'),(7293,75,0,1888,'<p>Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.<br />· A luxurious item made from 100% cashmere, the “jewel of fabrics.”<br />· A delicate, smooth knit you can wear for any occasion.<br />· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.<br />· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better.</p>\r\n<p><strong>Cut:</strong> slightly tapered</p>\r\n<p><strong>Measurements for size EU M:</strong> sleeve length 72 cm (28.5″), garment length 78 cm (30.5″)</p>\r\n<p><strong>Neckline:</strong> crew neck</p>\r\n<p><strong>Sleeve:</strong> ribbed trim cuffs</p>\r\n<p><strong>Extras:</strong> breast pocket(s), structured surface</p>\r\n<p><strong>Pattern:</strong> solid-coloured</p>\r\n<p><strong>Material:</strong> 70% cotton, 30% linen</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7294,76,0,1888,'<p>Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.</p>'),(7295,85,0,1888,'Gabba Long-sleeved Jumper'),(7296,139,0,1888,'Gabba'),(7297,75,0,1889,'<p>Upgrade your essential denim options with the <strong>Baldessarini Jack jeans</strong>. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch.</p>\r\n<div class=\"product-tabs__content__slice\">\r\n<div class=\"product-tabs__content__cms\">\r\n<ul>\r\n<li>98% cotton, 2% elastane</li>\r\n<li>Twill woven</li>\r\n<li>Zip fly</li>\r\n<li>Five pocket design</li>\r\n<li>Belt loops</li>\r\n<li>Branded metal hardware</li>\r\n<li>Branded leather waistband tab</li>\r\n<li>Machine wash</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Model:</strong> John 16511<br /><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo tag on back of waistband<br /><strong>Material:</strong> 97% cotton, 3% elastane<br /><br /></span></p>'),(7298,76,0,1889,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(7299,85,0,1889,'Navy John 16511'),(7300,139,0,1889,'Baldessarini'),(7301,75,0,1890,'<p>Upgrade your essential denim options with the <strong>Baldessarini Jack jeans</strong>. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch.</p>\r\n<div class=\"product-tabs__content__slice\">\r\n<div class=\"product-tabs__content__cms\">\r\n<ul>\r\n<li>98% cotton, 2% elastane</li>\r\n<li>Twill woven</li>\r\n<li>Zip fly</li>\r\n<li>Five pocket design</li>\r\n<li>Belt loops</li>\r\n<li>Branded metal hardware</li>\r\n<li>Branded leather waistband tab</li>\r\n<li>Machine wash</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Model:</strong> John 16511<br /><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo tag on back of waistband<br /><strong>Material:</strong> 97% cotton, 3% elastane<br /><br /></span></p>'),(7302,76,0,1890,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(7303,85,0,1890,'Navy John 16511'),(7304,139,0,1890,'Baldessarini'),(7305,75,0,1891,'<p>Upgrade your essential denim options with the <strong>Baldessarini Jack jeans</strong>. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch.</p>\r\n<div class=\"product-tabs__content__slice\">\r\n<div class=\"product-tabs__content__cms\">\r\n<ul>\r\n<li>98% cotton, 2% elastane</li>\r\n<li>Twill woven</li>\r\n<li>Zip fly</li>\r\n<li>Five pocket design</li>\r\n<li>Belt loops</li>\r\n<li>Branded metal hardware</li>\r\n<li>Branded leather waistband tab</li>\r\n<li>Machine wash</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Model:</strong> John 16511<br /><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo tag on back of waistband<br /><strong>Material:</strong> 97% cotton, 3% elastane<br /><br /></span></p>'),(7306,76,0,1891,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(7307,85,0,1891,'Navy John 16511'),(7308,139,0,1891,'Baldessarini'),(7309,75,0,1892,'<p>Upgrade your essential denim options with the <strong>Baldessarini Jack jeans</strong>. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch.</p>\r\n<div class=\"product-tabs__content__slice\">\r\n<div class=\"product-tabs__content__cms\">\r\n<ul>\r\n<li>98% cotton, 2% elastane</li>\r\n<li>Twill woven</li>\r\n<li>Zip fly</li>\r\n<li>Five pocket design</li>\r\n<li>Belt loops</li>\r\n<li>Branded metal hardware</li>\r\n<li>Branded leather waistband tab</li>\r\n<li>Machine wash</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Our model wears an EU L32W32 and is 185cm/6′0″ tall.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: John 16511\\nManufacturers product information: slim-fit\\nCut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: logo tag on back of waistband\\nMaterial: 97% cotton, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU L32W32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Model:</strong> John 16511<br /><strong>Manufacturers product information:</strong> slim-fit<br /><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU L32W32:</strong> waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo tag on back of waistband<br /><strong>Material:</strong> 97% cotton, 3% elastane<br /><br /></span></p>'),(7310,76,0,1892,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. </span></p>'),(7311,85,0,1892,'Navy John 16511'),(7312,139,0,1892,'Baldessarini'),(7313,75,0,1893,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loops and button fly, belt<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo appliqué(s)<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 32 and is 185cm/6′0″ tall.</span></p>'),(7314,76,0,1893,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(7315,85,0,1893,'Dark Blue Julyen'),(7316,139,0,1893,'Crosshatch'),(7317,75,0,1894,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loops and button fly, belt<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo appliqué(s)<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 32 and is 185cm/6′0″ tall.</span></p>'),(7318,76,0,1894,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(7319,85,0,1894,'Dark Blue Julyen'),(7320,139,0,1894,'Crosshatch'),(7321,75,0,1895,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loops and button fly, belt<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo appliqué(s)<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 32 and is 185cm/6′0″ tall.</span></p>'),(7322,76,0,1895,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(7323,85,0,1895,'Dark Blue Julyen'),(7324,139,0,1895,'Crosshatch'),(7325,75,0,1896,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. </span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Model: Julyen\\nManufacturers product information: regular fit\\nCut: straight leg\\nMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)\\nWaistband: belt loops and button fly, belt\\nPockets: 5-pocket\\nExtras: logo appliqué(s)\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 32 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><strong>Manufacturers product information:</strong> regular fit<br /><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)<br /><strong>Waistband:</strong> belt loops and button fly, belt<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> logo appliqué(s)<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 32 and is 185cm/6′0″ tall.</span></p>'),(7326,76,0,1896,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.</span></p>'),(7327,85,0,1896,'Dark Blue Julyen'),(7328,139,0,1896,'Crosshatch'),(7329,75,0,1897,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 102 cm (40″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Extras:</strong> print/s<br /><strong>Material:</strong> 80% cotton, 20% polyester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(7330,76,0,1897,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(7331,85,0,1897,'Black Sweat Pants'),(7332,75,0,1898,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 102 cm (40″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Extras:</strong> print/s<br /><strong>Material:</strong> 80% cotton, 20% polyester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(7333,76,0,1898,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(7334,85,0,1898,'Black Sweat Pants'),(7335,75,0,1899,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 102 cm (40″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Extras:</strong> print/s<br /><strong>Material:</strong> 80% cotton, 20% polyester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(7336,76,0,1899,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(7337,85,0,1899,'Black Sweat Pants'),(7338,75,0,1900,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 102 cm (40″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Extras:</strong> print/s<br /><strong>Material:</strong> 80% cotton, 20% polyester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(7339,76,0,1900,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(7340,85,0,1900,'Black Sweat Pants'),(7341,75,0,1901,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 102 cm (40″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Extras:</strong> print/s<br /><strong>Material:</strong> 80% cotton, 20% polyester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(7342,76,0,1901,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(7343,85,0,1901,'Black Sweat Pants'),(7344,75,0,1902,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 102 cm (40″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Extras:</strong> print/s<br /><strong>Material:</strong> 80% cotton, 20% polyester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(7345,76,0,1902,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(7346,85,0,1902,'Black Sweat Pants'),(7347,75,0,1903,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs, ribbed cuffs\\nMeasurements for size EU M: length of outside leg 102 cm (40″)\\nWaistband: drawstring waist with elastic\\nPockets: slit pocket/s\\nExtras: print/s\\nMaterial: 80% cotton, 20% polyester\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> straight, narrow legs, ribbed cuffs<br /><strong>Measurements for size EU M:</strong> length of outside leg 102 cm (40″)<br /><strong>Waistband:</strong> drawstring waist with elastic<br /><strong>Pockets:</strong> slit pocket/s<br /><strong>Extras:</strong> print/s<br /><strong>Material:</strong> 80% cotton, 20% polyester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU M and is 185cm/6′0″ tall.</span></p>'),(7348,76,0,1903,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black Sweat Pants by Diesel&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Black Sweat Pants by Diesel</span></p>'),(7349,85,0,1903,'Black Sweat Pants'),(7350,75,0,1904,'<p>Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.</p>\r\n<p><strong>MATERIAL &amp; CARE</strong></p>\r\n<p><strong>Outer fabric material:</strong> 50% wool, 50% acrylic</p>\r\n<p><strong>Care instructions:</strong> Machine wash at 30°C, Do not iron, Machine wash on gentle cycle</p>\r\n<p><strong>DETAILS</strong></p>\r\n<p><strong>Neckline:</strong> Crew neck</p>\r\n<p><strong>Pattern:</strong> Marl</p>\r\n<p><strong>Article number:</strong> BRI22Q006-K11</p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Our model\'s height:</strong> </span><span class=\"h-text h-color-black body\">Our model is 72.0 \" tall and is wearing size M</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Fit:</strong> </span><span class=\"h-text h-color-black body\">Normal fit</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Length:</strong> </span><span class=\"h-text h-color-black body\">Normal</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">Extra long</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">29.5 \" (Size M)</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Total length:</strong> </span><span class=\"h-text h-color-black body\">27.5 \" (Size M)</span></p>'),(7351,76,0,1904,'<p>Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape.</p>'),(7352,85,0,1904,'Long-sleeved Jumper'),(7353,139,0,1904,'Bruun & Stengade'),(7354,75,0,1905,'<p>Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.</p>\r\n<p><strong>MATERIAL &amp; CARE</strong></p>\r\n<p><strong>Outer fabric material:</strong> 50% wool, 50% acrylic</p>\r\n<p><strong>Care instructions:</strong> Machine wash at 30°C, Do not iron, Machine wash on gentle cycle</p>\r\n<p><strong>DETAILS</strong></p>\r\n<p><strong>Neckline:</strong> Crew neck</p>\r\n<p><strong>Pattern:</strong> Marl</p>\r\n<p><strong>Article number:</strong> BRI22Q006-K11</p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Our model\'s height:</strong> </span><span class=\"h-text h-color-black body\">Our model is 72.0 \" tall and is wearing size M</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Fit:</strong> </span><span class=\"h-text h-color-black body\">Normal fit</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Length:</strong> </span><span class=\"h-text h-color-black body\">Normal</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">Extra long</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">29.5 \" (Size M)</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Total length:</strong> </span><span class=\"h-text h-color-black body\">27.5 \" (Size M)</span></p>'),(7355,76,0,1905,'<p>Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape.</p>'),(7356,85,0,1905,'Long-sleeved Jumper'),(7357,139,0,1905,'Bruun & Stengade'),(7358,75,0,1906,'<p>Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.</p>\r\n<p><strong>MATERIAL &amp; CARE</strong></p>\r\n<p><strong>Outer fabric material:</strong> 50% wool, 50% acrylic</p>\r\n<p><strong>Care instructions:</strong> Machine wash at 30°C, Do not iron, Machine wash on gentle cycle</p>\r\n<p><strong>DETAILS</strong></p>\r\n<p><strong>Neckline:</strong> Crew neck</p>\r\n<p><strong>Pattern:</strong> Marl</p>\r\n<p><strong>Article number:</strong> BRI22Q006-K11</p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Our model\'s height:</strong> </span><span class=\"h-text h-color-black body\">Our model is 72.0 \" tall and is wearing size M</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Fit:</strong> </span><span class=\"h-text h-color-black body\">Normal fit</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Length:</strong> </span><span class=\"h-text h-color-black body\">Normal</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">Extra long</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">29.5 \" (Size M)</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Total length:</strong> </span><span class=\"h-text h-color-black body\">27.5 \" (Size M)</span></p>'),(7359,76,0,1906,'<p>Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape.</p>'),(7360,85,0,1906,'Long-sleeved Jumper'),(7361,139,0,1906,'Bruun & Stengade'),(7362,75,0,1907,'<p>Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.</p>\r\n<p><strong>MATERIAL &amp; CARE</strong></p>\r\n<p><strong>Outer fabric material:</strong> 50% wool, 50% acrylic</p>\r\n<p><strong>Care instructions:</strong> Machine wash at 30°C, Do not iron, Machine wash on gentle cycle</p>\r\n<p><strong>DETAILS</strong></p>\r\n<p><strong>Neckline:</strong> Crew neck</p>\r\n<p><strong>Pattern:</strong> Marl</p>\r\n<p><strong>Article number:</strong> BRI22Q006-K11</p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Our model\'s height:</strong> </span><span class=\"h-text h-color-black body\">Our model is 72.0 \" tall and is wearing size M</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Fit:</strong> </span><span class=\"h-text h-color-black body\">Normal fit</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Length:</strong> </span><span class=\"h-text h-color-black body\">Normal</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">Extra long</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">29.5 \" (Size M)</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Total length:</strong> </span><span class=\"h-text h-color-black body\">27.5 \" (Size M)</span></p>'),(7363,76,0,1907,'<p>Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape.</p>'),(7364,85,0,1907,'Long-sleeved Jumper'),(7365,139,0,1907,'Bruun & Stengade'),(7366,75,0,1908,'<p>Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.</p>\r\n<p><strong>MATERIAL &amp; CARE</strong></p>\r\n<p><strong>Outer fabric material:</strong> 50% wool, 50% acrylic</p>\r\n<p><strong>Care instructions:</strong> Machine wash at 30°C, Do not iron, Machine wash on gentle cycle</p>\r\n<p><strong>DETAILS</strong></p>\r\n<p><strong>Neckline:</strong> Crew neck</p>\r\n<p><strong>Pattern:</strong> Marl</p>\r\n<p><strong>Article number:</strong> BRI22Q006-K11</p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Our model\'s height:</strong> </span><span class=\"h-text h-color-black body\">Our model is 72.0 \" tall and is wearing size M</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Fit:</strong> </span><span class=\"h-text h-color-black body\">Normal fit</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Length:</strong> </span><span class=\"h-text h-color-black body\">Normal</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">Extra long</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">29.5 \" (Size M)</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Total length:</strong> </span><span class=\"h-text h-color-black body\">27.5 \" (Size M)</span></p>'),(7367,76,0,1908,'<p>Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape.</p>'),(7368,85,0,1908,'Long-sleeved Jumper'),(7369,139,0,1908,'Bruun & Stengade'),(7370,75,0,1909,'<p>Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.</p>\r\n<p><strong>MATERIAL &amp; CARE</strong></p>\r\n<p><strong>Outer fabric material:</strong> 50% wool, 50% acrylic</p>\r\n<p><strong>Care instructions:</strong> Machine wash at 30°C, Do not iron, Machine wash on gentle cycle</p>\r\n<p><strong>DETAILS</strong></p>\r\n<p><strong>Neckline:</strong> Crew neck</p>\r\n<p><strong>Pattern:</strong> Marl</p>\r\n<p><strong>Article number:</strong> BRI22Q006-K11</p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Our model\'s height:</strong> </span><span class=\"h-text h-color-black body\">Our model is 72.0 \" tall and is wearing size M</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Fit:</strong> </span><span class=\"h-text h-color-black body\">Normal fit</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Length:</strong> </span><span class=\"h-text h-color-black body\">Normal</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">Extra long</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">29.5 \" (Size M)</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Total length:</strong> </span><span class=\"h-text h-color-black body\">27.5 \" (Size M)</span></p>'),(7371,76,0,1909,'<p>Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape.</p>'),(7372,85,0,1909,'Long-sleeved Jumper'),(7373,139,0,1909,'Bruun & Stengade'),(7374,75,0,1910,'<p>Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.</p>\r\n<p><strong>MATERIAL &amp; CARE</strong></p>\r\n<p><strong>Outer fabric material:</strong> 50% wool, 50% acrylic</p>\r\n<p><strong>Care instructions:</strong> Machine wash at 30°C, Do not iron, Machine wash on gentle cycle</p>\r\n<p><strong>DETAILS</strong></p>\r\n<p><strong>Neckline:</strong> Crew neck</p>\r\n<p><strong>Pattern:</strong> Marl</p>\r\n<p><strong>Article number:</strong> BRI22Q006-K11</p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Our model\'s height:</strong> </span><span class=\"h-text h-color-black body\">Our model is 72.0 \" tall and is wearing size M</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Fit:</strong> </span><span class=\"h-text h-color-black body\">Normal fit</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Length:</strong> </span><span class=\"h-text h-color-black body\">Normal</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">Extra long</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Sleeve length:</strong> </span><span class=\"h-text h-color-black body\">29.5 \" (Size M)</span></p>\r\n<p class=\"h-text h-color-black body h-m-bottom-xs\"><span class=\"h-text h-color-black body h-bold\"><strong>Total length:</strong> </span><span class=\"h-text h-color-black body\">27.5 \" (Size M)</span></p>'),(7375,76,0,1910,'<p>Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape.</p>'),(7376,85,0,1910,'Long-sleeved Jumper'),(7377,139,0,1910,'Bruun & Stengade'),(7378,75,0,1911,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7379,76,0,1911,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(7380,85,0,1911,'Hooded Sweater'),(7381,139,0,1911,'Superdry'),(7382,75,0,1912,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7383,76,0,1912,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(7384,85,0,1912,'Hooded Sweater'),(7385,139,0,1912,'Superdry'),(7386,75,0,1913,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7387,76,0,1913,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(7388,85,0,1913,'Hooded Sweater'),(7389,139,0,1913,'Superdry'),(7390,75,0,1914,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7391,76,0,1914,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(7392,85,0,1914,'Hooded Sweater'),(7393,139,0,1914,'Superdry'),(7394,75,0,1915,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7395,76,0,1915,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(7396,85,0,1915,'Hooded Sweater'),(7397,139,0,1915,'Superdry'),(7398,75,0,1916,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7399,76,0,1916,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(7400,85,0,1916,'Hooded Sweater'),(7401,139,0,1916,'Superdry'),(7402,75,0,1917,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7403,76,0,1917,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(7404,85,0,1917,'Hooded Sweater'),(7405,139,0,1917,'Superdry'),(7406,75,0,1918,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7407,76,0,1918,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(7408,85,0,1918,'Hooded Sweater'),(7409,139,0,1918,'Superdry'),(7410,75,0,1919,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7411,76,0,1919,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(7412,85,0,1919,'Hooded Sweater'),(7413,139,0,1919,'Superdry'),(7414,75,0,1920,'<p>Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing.</p>\r\n<p><strong>Cut:</strong> slightly tapered, ribbed trim waistband<br /><strong>Measurements for size EU M:</strong> sleeve length 69 cm (27″), garment length 69 cm (27″) <br /><strong>Neckline:</strong> hood, short button placket<br /><br /><strong>Sleeve:</strong> ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: flecked<br /><strong>Pattern:</strong> patterned</p>\r\n<p><br /><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU M and is 185cm/6′0″ tall.</p>'),(7415,76,0,1920,'<p>Superdry men\'s Ticket Type mono hoodie.</p>'),(7416,85,0,1920,'Hooded Sweater'),(7417,139,0,1920,'Superdry'),(7439,75,0,1928,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7440,76,0,1928,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7441,85,0,1928,'Camper Lace-ups'),(7442,75,0,1929,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7443,76,0,1929,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7444,85,0,1929,'Camper Lace-ups'),(7445,75,0,1930,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7446,76,0,1930,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7447,85,0,1930,'Camper Lace-ups'),(7448,75,0,1931,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7449,76,0,1931,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7450,85,0,1931,'Camper Lace-ups'),(7451,75,0,1932,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7452,76,0,1932,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7453,85,0,1932,'Camper Lace-ups'),(7454,75,0,1933,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7455,76,0,1933,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7456,85,0,1933,'Camper Lace-ups'),(7457,75,0,1934,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7458,76,0,1934,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7459,85,0,1934,'Camper Lace-ups'),(7460,75,0,1935,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7461,76,0,1935,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7462,85,0,1935,'Camper Lace-ups'),(7463,75,0,1936,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7464,76,0,1936,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7465,85,0,1936,'Camper Lace-ups'),(7466,75,0,1937,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7467,76,0,1937,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7468,85,0,1937,'Camper Lace-ups'),(7469,75,0,1938,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7470,76,0,1938,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7471,85,0,1938,'Camper Lace-ups'),(7472,75,0,1939,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7473,76,0,1939,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7474,85,0,1939,'Camper Lace-ups'),(7475,75,0,1940,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7476,76,0,1940,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7477,85,0,1940,'Camper Lace-ups'),(7478,75,0,1941,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7479,76,0,1941,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7480,85,0,1941,'Camper Lace-ups'),(7481,75,0,1942,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7482,76,0,1942,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7483,85,0,1942,'Camper Lace-ups'),(7484,75,0,1943,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.<br /><br /><strong>Extras:</strong> lacing, suede, logo appliqué(s), contrast details<br /><strong>Outer material:</strong> leather<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Features: </strong></p>\r\n<p>360º Stitching outsole: Durability<br />TPU outsole with Contact Earth Technology: Abrasion resistance <br />Leather Working Group Certified </p>\r\n<p> </p>'),(7485,76,0,1943,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.\\n\\nExtras: lacing, suede, logo appliqué(s), contrast details\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.</span></p>'),(7486,85,0,1943,'Camper Lace-ups'),(7487,75,0,1944,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.\\n\\nExtras: knitting patterns, logo appliqué(s)\\nOuter material: textile, synthetic\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.<br /><br /><strong>Extras:</strong> knitting patterns, logo appliqué(s)<br /><strong>Outer material:</strong> textile, synthetic<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Details:</strong> </p>\r\n<ul class=\"bullet_list___1JjG2 gl-list bullet_list--half-width___35Abt\">\r\n<li class=\"gl-vspacing-m\">Lace closure</li>\r\n<li class=\"gl-vspacing-m\">Knit upper</li>\r\n<li class=\"gl-vspacing-m\">EVA outsole with rubber inserts</li>\r\n<li class=\"gl-vspacing-m\">Lightweight EVA midsole</li>\r\n</ul>\r\n<ul class=\"bullet_list___1JjG2 gl-list bullet_list--half-width___35Abt\">\r\n<li class=\"gl-vspacing-m\">Sock-like construction hugs the foot</li>\r\n<li class=\"gl-vspacing-m\">Imported</li>\r\n</ul>'),(7488,76,0,1944,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;White Adidas Originals sneakers - Pharrell Williams line&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Originals sneakers - Pharrell Williams line. Pharrell\'s Hu collection celebrates the hues of humanity</span></p>'),(7489,85,0,1944,'Adidas Originals PW Tennis Hu'),(7490,75,0,1945,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.\\n\\nExtras: knitting patterns, logo appliqué(s)\\nOuter material: textile, synthetic\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.<br /><br /><strong>Extras:</strong> knitting patterns, logo appliqué(s)<br /><strong>Outer material:</strong> textile, synthetic<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Details:</strong> </p>\r\n<ul class=\"bullet_list___1JjG2 gl-list bullet_list--half-width___35Abt\">\r\n<li class=\"gl-vspacing-m\">Lace closure</li>\r\n<li class=\"gl-vspacing-m\">Knit upper</li>\r\n<li class=\"gl-vspacing-m\">EVA outsole with rubber inserts</li>\r\n<li class=\"gl-vspacing-m\">Lightweight EVA midsole</li>\r\n</ul>\r\n<ul class=\"bullet_list___1JjG2 gl-list bullet_list--half-width___35Abt\">\r\n<li class=\"gl-vspacing-m\">Sock-like construction hugs the foot</li>\r\n<li class=\"gl-vspacing-m\">Imported</li>\r\n</ul>'),(7491,76,0,1945,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;White Adidas Originals sneakers - Pharrell Williams line&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Originals sneakers - Pharrell Williams line. Pharrell\'s Hu collection celebrates the hues of humanity</span></p>'),(7492,85,0,1945,'Adidas Originals PW Tennis Hu'),(7493,75,0,1946,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.\\n\\nExtras: knitting patterns, logo appliqué(s)\\nOuter material: textile, synthetic\\nInner material: textile\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.<br /><br /><strong>Extras:</strong> knitting patterns, logo appliqué(s)<br /><strong>Outer material:</strong> textile, synthetic<br /><strong>Inner material:</strong> textile<br /><strong>Outsole:</strong> synthetic</span></p>\r\n<p><strong>Details:</strong> </p>\r\n<ul class=\"bullet_list___1JjG2 gl-list bullet_list--half-width___35Abt\">\r\n<li class=\"gl-vspacing-m\">Lace closure</li>\r\n<li class=\"gl-vspacing-m\">Knit upper</li>\r\n<li class=\"gl-vspacing-m\">EVA outsole with rubber inserts</li>\r\n<li class=\"gl-vspacing-m\">Lightweight EVA midsole</li>\r\n</ul>\r\n<ul class=\"bullet_list___1JjG2 gl-list bullet_list--half-width___35Abt\">\r\n<li class=\"gl-vspacing-m\">Sock-like construction hugs the foot</li>\r\n<li class=\"gl-vspacing-m\">Imported</li>\r\n</ul>'),(7494,76,0,1946,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;White Adidas Originals sneakers - Pharrell Williams line&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Adidas Originals sneakers - Pharrell Williams line. Pharrell\'s Hu collection celebrates the hues of humanity</span></p>'),(7495,85,0,1946,'Adidas Originals PW Tennis Hu'),(7496,75,0,1947,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /></span></p>'),(7497,76,0,1947,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(7498,85,0,1947,'Lloyd Half Boots'),(7499,75,0,1948,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /></span></p>'),(7500,76,0,1948,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(7501,85,0,1948,'Lloyd Half Boots'),(7502,75,0,1949,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /></span></p>'),(7503,76,0,1949,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(7504,85,0,1949,'Lloyd Half Boots'),(7505,75,0,1950,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /></span></p>'),(7506,76,0,1950,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(7507,85,0,1950,'Lloyd Half Boots'),(7508,75,0,1951,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /></span></p>'),(7509,76,0,1951,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(7510,85,0,1951,'Lloyd Half Boots'),(7511,75,0,1952,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /></span></p>'),(7512,76,0,1952,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(7513,85,0,1952,'Lloyd Half Boots'),(7514,75,0,1953,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /></span></p>'),(7515,76,0,1953,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(7516,85,0,1953,'Lloyd Half Boots'),(7517,75,0,1954,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /></span></p>'),(7518,76,0,1954,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(7519,85,0,1954,'Lloyd Half Boots'),(7520,75,0,1955,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /></span></p>'),(7521,76,0,1955,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(7522,85,0,1955,'Lloyd Half Boots'),(7523,75,0,1956,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /></span></p>'),(7524,76,0,1956,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(7525,85,0,1956,'Lloyd Half Boots'),(7526,75,0,1957,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /></span></p>'),(7527,76,0,1957,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(7528,85,0,1957,'Lloyd Half Boots'),(7529,75,0,1958,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /></span></p>'),(7530,76,0,1958,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(7531,85,0,1958,'Lloyd Half Boots'),(7532,75,0,1959,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /></span></p>'),(7533,76,0,1959,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(7534,85,0,1959,'Lloyd Half Boots'),(7535,75,0,1960,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /></span></p>'),(7536,76,0,1960,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(7537,85,0,1960,'Lloyd Half Boots'),(7538,75,0,1961,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. <br /><br /><strong>Finish:</strong> Gore-Tex®: durably waterproof and wind proof, optimised breathability<br /><strong>Extras:</strong> Nubuck leather, reinforced shaft end, fabric insert, logo label<br /><strong>UPPER MATERIAL:</strong> Smooth Leather<br /><strong>LINING MATERIAL:</strong> Leather<br /><strong>SOLE:</strong> Rubber Sole<br /><strong>Inner material:</strong> leather, synthetic<br /><strong>Outsole:</strong> synthetic<br /></span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. \\n\\nFinish: Gore-Tex®: durably waterproof and wind proof, optimised breathability\\nExtras: Nubuck leather, reinforced shaft end, fabric insert, logo label\\nOuter material: leather\\nInner material: leather, synthetic\\nOutsole: synthetic&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><br /><br /><br /></span></p>'),(7539,76,0,1961,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Lloyd taupe colour Gore-Tex® and nubuck leather half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Lloyd taupe colour Gore-Tex® and nubuck leather half boots</span></p>'),(7540,85,0,1961,'Lloyd Half Boots'),(7541,75,0,1962,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(7542,76,0,1962,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(7543,85,0,1962,'Boxfresh'),(7544,75,0,1963,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(7545,76,0,1963,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(7546,85,0,1963,'Boxfresh'),(7547,75,0,1964,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(7548,76,0,1964,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(7549,85,0,1964,'Boxfresh'),(7550,75,0,1965,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(7551,76,0,1965,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(7552,85,0,1965,'Boxfresh'),(7553,75,0,1966,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(7554,76,0,1966,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(7555,85,0,1966,'Boxfresh'),(7556,75,0,1967,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(7557,76,0,1967,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(7558,85,0,1967,'Boxfresh'),(7559,75,0,1968,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(7560,76,0,1968,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(7561,85,0,1968,'Boxfresh'),(7562,75,0,1969,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(7563,76,0,1969,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(7564,85,0,1969,'Boxfresh'),(7565,75,0,1970,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(7566,76,0,1970,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(7567,85,0,1970,'Boxfresh'),(7568,75,0,1971,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(7569,76,0,1971,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(7570,85,0,1971,'Boxfresh'),(7571,75,0,1972,'<p>An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look.</p>\r\n<p><strong>Product details:</strong></p>\r\n<ul>\r\n<li>Brown leather upper</li>\r\n<li>Contrast white sports inspired sole</li>\r\n<li>Subtle branding</li>\r\n</ul>\r\n<p><strong>Composition:</strong></p>\r\n<ul>\r\n<li>Upper: 100% Leather</li>\r\n<li>Lining: 100% Textile</li>\r\n<li>Sole: 100% Rubber</li>\r\n</ul>\r\n<p><strong>Care:</strong></p>\r\n<ul>\r\n<li>Wipe clean with a damp cloth</li>\r\n</ul>'),(7572,76,0,1972,'<p>An iconic Boxfresh styles sneakers Spencer</p>'),(7573,85,0,1972,'Boxfresh'),(7574,75,0,1973,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7575,76,0,1973,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7576,85,0,1973,'Gant Marvel'),(7577,75,0,1974,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7578,76,0,1974,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7579,85,0,1974,'Gant Marvel'),(7580,75,0,1975,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7581,76,0,1975,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7582,85,0,1975,'Gant Marvel'),(7583,75,0,1976,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7584,76,0,1976,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7585,85,0,1976,'Gant Marvel'),(7586,75,0,1977,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7587,76,0,1977,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7588,85,0,1977,'Gant Marvel'),(7589,75,0,1978,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7590,76,0,1978,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7591,85,0,1978,'Gant Marvel'),(7592,75,0,1979,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7593,76,0,1979,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7594,85,0,1979,'Gant Marvel'),(7595,75,0,1980,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7596,76,0,1980,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7597,85,0,1980,'Gant Marvel'),(7598,75,0,1981,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7599,76,0,1981,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7600,85,0,1981,'Gant Marvel'),(7601,75,0,1982,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7602,76,0,1982,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7603,85,0,1982,'Gant Marvel'),(7604,75,0,1983,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7605,76,0,1983,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7606,85,0,1983,'Gant Marvel'),(7607,75,0,1984,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7608,76,0,1984,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7609,85,0,1984,'Gant Marvel'),(7610,75,0,1985,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7611,76,0,1985,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7612,85,0,1985,'Gant Marvel'),(7613,75,0,1986,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7614,76,0,1986,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7615,85,0,1986,'Gant Marvel'),(7616,75,0,1987,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7617,76,0,1987,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7618,85,0,1987,'Gant Marvel'),(7619,75,0,1988,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7620,76,0,1988,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7621,85,0,1988,'Gant Marvel'),(7622,75,0,1989,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7623,76,0,1989,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7624,85,0,1989,'Gant Marvel'),(7625,75,0,1990,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7626,76,0,1990,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7627,85,0,1990,'Gant Marvel'),(7628,75,0,1991,'<p>The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores.</p>\r\n<p>The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle.</p>\r\n<p><strong>Product Info:</strong></p>\r\n<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n<li><span class=\"a-list-item\">Outer Material: Leather &amp; Nylon</span></li>\r\n<li><span class=\"a-list-item\">Inner Material: Textile &amp; Leather</span></li>\r\n<li><span class=\"a-list-item\">Sole: Gum Rubber</span></li>\r\n<li><span class=\"a-list-item\">Closure: Lace-Up</span></li>\r\n<li><span class=\"a-list-item\">Heel Height: 2 centimetres</span></li>\r\n<li><span class=\"a-list-item\">Shoe Width: Regular</span></li>\r\n</ul>'),(7629,76,0,1991,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Suede taupe colour Gant Marvel half boots&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Suede taupe colour Gant Marvel half boots</span></p>'),(7630,85,0,1991,'Gant Marvel'),(7631,75,0,1992,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, elasticated leg openings\\nMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: slit pocket/s, side flap pockets, rear flap pocket(s)\\nExtras: logo label\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: tapered leg, elasticated leg openings<br />Measurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)<br />Extras: logo label<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(7632,76,0,1992,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Moss Cargo Pants by Solid&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Moss Cargo Pants by Solid</span></p>'),(7633,85,0,1992,'Moss Cargo Pants'),(7634,139,0,1992,'Solid'),(7635,75,0,1993,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, elasticated leg openings\\nMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: slit pocket/s, side flap pockets, rear flap pocket(s)\\nExtras: logo label\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: tapered leg, elasticated leg openings<br />Measurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)<br />Extras: logo label<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(7636,76,0,1993,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Moss Cargo Pants by Solid&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Moss Cargo Pants by Solid</span></p>'),(7637,85,0,1993,'Moss Cargo Pants'),(7638,139,0,1993,'Solid'),(7639,75,0,1994,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, elasticated leg openings\\nMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: slit pocket/s, side flap pockets, rear flap pocket(s)\\nExtras: logo label\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: tapered leg, elasticated leg openings<br />Measurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)<br />Extras: logo label<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(7640,76,0,1994,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Moss Cargo Pants by Solid&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Moss Cargo Pants by Solid</span></p>'),(7641,85,0,1994,'Moss Cargo Pants'),(7642,139,0,1994,'Solid'),(7643,75,0,1995,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, elasticated leg openings\\nMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: slit pocket/s, side flap pockets, rear flap pocket(s)\\nExtras: logo label\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: tapered leg, elasticated leg openings<br />Measurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)<br />Extras: logo label<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(7644,76,0,1995,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Moss Cargo Pants by Solid&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Moss Cargo Pants by Solid</span></p>'),(7645,85,0,1995,'Moss Cargo Pants'),(7646,139,0,1995,'Solid'),(7647,75,0,1996,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: tapered leg, elasticated leg openings\\nMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)\\nWaistband: buttoned, belt loop(s)\\nPockets: slit pocket/s, side flap pockets, rear flap pocket(s)\\nExtras: logo label\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU M and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Cut: tapered leg, elasticated leg openings<br />Measurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)<br />Waistband: buttoned, belt loop(s)<br />Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)<br />Extras: logo label<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU M and is 185cm/6′0″ tall.</span></p>'),(7648,76,0,1996,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Moss Cargo Pants by Solid&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\">Moss Cargo Pants by Solid</span></p>'),(7649,85,0,1996,'Moss Cargo Pants'),(7650,139,0,1996,'Solid'),(7651,75,0,1997,'<p>Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7652,76,0,1997,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(7653,85,0,1997,'Dark blue sunglasses'),(7654,75,0,1998,'<p>Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7655,76,0,1998,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(7656,85,0,1998,'Dark blue sunglasses'),(7657,75,0,1999,'<p>Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7658,76,0,1999,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(7659,85,0,1999,'Dark blue sunglasses'),(7660,75,0,2000,'<p>Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7661,76,0,2000,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(7662,85,0,2000,'Dark blue sunglasses'),(7663,75,0,2001,'<p>Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7664,76,0,2001,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(7665,85,0,2001,'Dark blue sunglasses'),(7666,75,0,2002,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(7667,76,0,2002,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(7668,85,0,2002,'Boyfriend Jeans'),(7669,139,0,2002,'Capital B'),(7670,75,0,2003,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(7671,76,0,2003,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(7672,85,0,2003,'Boyfriend Jeans'),(7673,139,0,2003,'Capital B'),(7674,75,0,2004,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(7675,76,0,2004,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(7676,85,0,2004,'Boyfriend Jeans'),(7677,139,0,2004,'Capital B'),(7678,75,0,2005,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(7679,76,0,2005,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(7680,85,0,2005,'Boyfriend Jeans'),(7681,139,0,2005,'Capital B'),(7682,75,0,2006,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(7683,76,0,2006,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(7684,85,0,2006,'Boyfriend Jeans'),(7685,139,0,2006,'Capital B'),(7686,75,0,2007,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(7687,76,0,2007,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(7688,85,0,2007,'Boyfriend Jeans'),(7689,139,0,2007,'Capital B'),(7690,75,0,2008,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(7691,76,0,2008,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(7692,85,0,2008,'Boyfriend Jeans'),(7693,139,0,2008,'Capital B'),(7694,75,0,2009,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(7695,76,0,2009,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(7696,85,0,2009,'Boyfriend Jeans'),(7697,139,0,2009,'Capital B'),(7698,75,0,2010,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: pleats, tapered leg\\nMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)\\nWaistband: zip with hook on cuff\\nPockets: slit pocket/s, rear mock slit pocket(s)\\nExtras: light quality, denim look, pleats\\nMaterial: 100% Lyocell\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: pleats, tapered leg<br />Measurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)<br />Waistband: zip with hook on cuff<br />Pockets: slit pocket/s, rear mock slit pocket(s)<br />Extras: light quality, denim look, pleats<br />Material: 100% Lyocell<br />Manufacturer\'s care instructions: machine wash</span></p>'),(7699,76,0,2010,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.</span></p>'),(7700,85,0,2010,'Boyfriend Jeans'),(7701,139,0,2010,'Capital B'),(7702,75,0,2011,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(7703,76,0,2011,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(7704,85,0,2011,'Brax Chuck Slim Fit'),(7705,139,0,2011,'Brax Feel Good'),(7706,75,0,2012,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(7707,76,0,2012,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(7708,85,0,2012,'Brax Chuck Slim Fit'),(7709,139,0,2012,'Brax Feel Good'),(7710,75,0,2013,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(7711,76,0,2013,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(7712,85,0,2013,'Brax Chuck Slim Fit'),(7713,139,0,2013,'Brax Feel Good'),(7714,75,0,2014,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(7715,76,0,2014,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(7716,85,0,2014,'Brax Chuck Slim Fit'),(7717,139,0,2014,'Brax Feel Good'),(7718,75,0,2015,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(7719,76,0,2015,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(7720,85,0,2015,'Brax Chuck Slim Fit'),(7721,139,0,2015,'Brax Feel Good'),(7722,75,0,2016,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(7723,76,0,2016,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(7724,85,0,2016,'Brax Chuck Slim Fit'),(7725,139,0,2016,'Brax Feel Good'),(7726,75,0,2017,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(7727,76,0,2017,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(7728,85,0,2017,'Brax Chuck Slim Fit'),(7729,139,0,2017,'Brax Feel Good'),(7730,75,0,2018,'<p>Measurements for size EU 90: width approx. 3,5 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: Nubuck leather, partially textured surface</p>\r\n<p>Material: leather</p>'),(7731,76,0,2018,'<p>Tommy Hilfiger men’s belt. Our one-size-fits-all belt is as versatile as it is comfortable with its woven design and built-in stretch.</p>'),(7732,85,0,2018,'Blue Leather Belt'),(7733,75,0,2019,'<p>Measurements for size EU 90: width approx. 3,5 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: Nubuck leather, partially textured surface</p>\r\n<p>Material: leather</p>'),(7734,76,0,2019,'<p>Tommy Hilfiger men’s belt. Our one-size-fits-all belt is as versatile as it is comfortable with its woven design and built-in stretch.</p>'),(7735,85,0,2019,'Blue Leather Belt'),(7736,75,0,2020,'<p>Measurements for size EU 90: width approx. 3,5 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: Nubuck leather, partially textured surface</p>\r\n<p>Material: leather</p>'),(7737,76,0,2020,'<p>Tommy Hilfiger men’s belt. Our one-size-fits-all belt is as versatile as it is comfortable with its woven design and built-in stretch.</p>'),(7738,85,0,2020,'Blue Leather Belt'),(7739,75,0,2021,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(7740,76,0,2021,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(7741,85,0,2021,'Business Trousers'),(7742,139,0,2021,'Escada'),(7743,75,0,2022,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(7744,76,0,2022,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(7745,85,0,2022,'Business Trousers'),(7746,139,0,2022,'Escada'),(7747,75,0,2023,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(7748,76,0,2023,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(7749,85,0,2023,'Business Trousers'),(7750,139,0,2023,'Escada'),(7751,75,0,2024,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(7752,76,0,2024,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(7753,85,0,2024,'Business Trousers'),(7754,139,0,2024,'Escada'),(7755,75,0,2025,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(7756,76,0,2025,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(7757,85,0,2025,'Business Trousers'),(7758,139,0,2025,'Escada'),(7759,75,0,2026,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(7760,76,0,2026,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(7761,85,0,2026,'Business Trousers'),(7762,139,0,2026,'Escada'),(7763,75,0,2027,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(7764,76,0,2027,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(7765,85,0,2027,'Business Trousers'),(7766,139,0,2027,'Escada'),(7767,75,0,2028,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(7768,76,0,2028,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(7769,85,0,2028,'Business Trousers'),(7770,139,0,2028,'Escada'),(7771,75,0,2029,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: front zip pocket(s), mock rear piped pocket(s)\\nExtras: creases, solid quality\\nPattern: solid-coloured\\nMaterial: 96% virgin wool, 4% polyamide\\nLining material: 57% viscose, 43% polyester\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: front zip pocket(s), mock rear piped pocket(s)<br />Extras: creases, solid quality<br />Pattern: solid-coloured<br />Material: 96% virgin wool, 4% polyamide<br />Lining material: 57% viscose, 43% polyester<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(7772,76,0,2029,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the </span></p>'),(7773,85,0,2029,'Business Trousers'),(7774,139,0,2029,'Escada'),(7775,75,0,2030,'<p>Measurements for size EU 95: width approx. 3,3 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: suede</p>\r\n<p>Material: leather</p>'),(7776,76,0,2030,'<p>Basic leather belt with a loop and a contrasting shiny buckle.</p>'),(7777,85,0,2030,'Taupe Leather Belt'),(7778,75,0,2031,'<p>Measurements for size EU 95: width approx. 3,3 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: suede</p>\r\n<p>Material: leather</p>'),(7779,76,0,2031,'<p>Basic leather belt with a loop and a contrasting shiny buckle.</p>'),(7780,85,0,2031,'Taupe Leather Belt'),(7781,75,0,2032,'<p>Measurements for size EU 95: width approx. 3,3 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: suede</p>\r\n<p>Material: leather</p>'),(7782,76,0,2032,'<p>Basic leather belt with a loop and a contrasting shiny buckle.</p>'),(7783,85,0,2032,'Taupe Leather Belt'),(7820,75,0,2042,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(7821,76,0,2042,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(7822,85,0,2042,'Casual Trousers'),(7823,139,0,2042,'Kaffe'),(7824,75,0,2043,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(7825,76,0,2043,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(7826,85,0,2043,'Casual Trousers'),(7827,139,0,2043,'Kaffe'),(7828,75,0,2044,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(7829,76,0,2044,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(7830,85,0,2044,'Casual Trousers'),(7831,139,0,2044,'Kaffe'),(7832,75,0,2045,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(7833,76,0,2045,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(7834,85,0,2045,'Casual Trousers'),(7835,139,0,2045,'Kaffe'),(7836,75,0,2046,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(7837,76,0,2046,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(7838,85,0,2046,'Casual Trousers'),(7839,139,0,2046,'Kaffe'),(7840,75,0,2047,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(7841,76,0,2047,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(7842,85,0,2047,'Casual Trousers'),(7843,139,0,2047,'Kaffe'),(7844,75,0,2048,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(7845,76,0,2048,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(7846,85,0,2048,'Casual Trousers'),(7847,139,0,2048,'Kaffe'),(7848,75,0,2049,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(7849,76,0,2049,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(7850,85,0,2049,'Casual Trousers'),(7851,139,0,2049,'Kaffe'),(7852,75,0,2050,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups\\nMeasurements for size EU 36: length of outside leg 96 cm (38″)\\nWaistband: elasticated waistband\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nPattern: patterned\\nMaterial: 65% polyester, 32% viscose, 3% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 36 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-ups<br />Measurements for size EU 36: length of outside leg 96 cm (38″)<br />Waistband: elasticated waistband<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Pattern: patterned<br />Material: 65% polyester, 32% viscose, 3% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU 36 and is 179cm/5′10″ tall.</span></p>'),(7853,76,0,2050,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.</span></p>'),(7854,85,0,2050,'Casual Trousers'),(7855,139,0,2050,'Kaffe'),(7856,75,0,2051,'<p>Reference number: DL0255</p>\r\n<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo appliqué(s), case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7857,76,0,2051,'<p>Aviator-style sunglasses with a metal frame and coloured mirrored lenses. Faux leather case.</p>'),(7858,85,0,2051,'Violet sunglasses'),(7859,75,0,2052,'<p>Reference number: DL0255</p>\r\n<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo appliqué(s), case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7860,76,0,2052,'<p>Aviator-style sunglasses with a metal frame and coloured mirrored lenses. Faux leather case.</p>'),(7861,85,0,2052,'Violet sunglasses'),(7862,75,0,2053,'<p>Reference number: DL0255</p>\r\n<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo appliqué(s), case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7863,76,0,2053,'<p>Aviator-style sunglasses with a metal frame and coloured mirrored lenses. Faux leather case.</p>'),(7864,85,0,2053,'Violet sunglasses'),(7865,75,0,2054,'<p>Reference number: DL0255</p>\r\n<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo appliqué(s), case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7866,76,0,2054,'<p>Aviator-style sunglasses with a metal frame and coloured mirrored lenses. Faux leather case.</p>'),(7867,85,0,2054,'Violet sunglasses'),(7868,75,0,2055,'<p>Reference number: DL0255</p>\r\n<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo appliqué(s), case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7869,76,0,2055,'<p>Aviator-style sunglasses with a metal frame and coloured mirrored lenses. Faux leather case.</p>'),(7870,85,0,2055,'Violet sunglasses'),(7871,75,0,2056,'<ul>\r\n<li>\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(7872,76,0,2056,'<p>V-neck dress featuring sleeves falling below the elbow with turn-up detail, pleats at the waist, side in-seam pockets and front button fastening.</p>'),(7873,85,0,2056,'Chiffon Dress '),(7874,139,0,2056,'United colors of Benetton'),(7875,75,0,2057,'<ul>\r\n<li>\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(7876,76,0,2057,'<p>V-neck dress featuring sleeves falling below the elbow with turn-up detail, pleats at the waist, side in-seam pockets and front button fastening.</p>'),(7877,85,0,2057,'Chiffon Dress '),(7878,139,0,2057,'United colors of Benetton'),(7879,75,0,2058,'<ul>\r\n<li>\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(7880,76,0,2058,'<p>V-neck dress featuring sleeves falling below the elbow with turn-up detail, pleats at the waist, side in-seam pockets and front button fastening.</p>'),(7881,85,0,2058,'Chiffon Dress '),(7882,139,0,2058,'United colors of Benetton'),(7883,75,0,2059,'<ul>\r\n<li>\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(7884,76,0,2059,'<p>V-neck dress featuring sleeves falling below the elbow with turn-up detail, pleats at the waist, side in-seam pockets and front button fastening.</p>'),(7885,85,0,2059,'Chiffon Dress '),(7886,139,0,2059,'United colors of Benetton'),(7887,75,0,2060,'<ul>\r\n<li>\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(7888,76,0,2060,'<p>V-neck dress featuring sleeves falling below the elbow with turn-up detail, pleats at the waist, side in-seam pockets and front button fastening.</p>'),(7889,85,0,2060,'Chiffon Dress '),(7890,139,0,2060,'United colors of Benetton'),(7891,75,0,2061,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nExtras: logo appliqué(s)\\nPattern: solid-coloured\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Extras: logo appliqué(s)<br />Pattern: solid-coloured<br />Material: 100% cotton<br />Manufacturer\'s care instructions: machine wash</span></p>'),(7892,76,0,2061,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8395587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;9&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,5526612],&quot;15&quot;:&quot;arial, sans-serif&quot;,&quot;26&quot;:400}\">An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection</span></p>'),(7893,85,0,2061,'Chino'),(7894,139,0,2061,'Scout'),(7895,75,0,2062,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nExtras: logo appliqué(s)\\nPattern: solid-coloured\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Extras: logo appliqué(s)<br />Pattern: solid-coloured<br />Material: 100% cotton<br />Manufacturer\'s care instructions: machine wash</span></p>'),(7896,76,0,2062,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8395587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;9&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,5526612],&quot;15&quot;:&quot;arial, sans-serif&quot;,&quot;26&quot;:400}\">An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection</span></p>'),(7897,85,0,2062,'Chino'),(7898,139,0,2062,'Scout'),(7899,75,0,2063,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nExtras: logo appliqué(s)\\nPattern: solid-coloured\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Extras: logo appliqué(s)<br />Pattern: solid-coloured<br />Material: 100% cotton<br />Manufacturer\'s care instructions: machine wash</span></p>'),(7900,76,0,2063,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8395587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;9&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,5526612],&quot;15&quot;:&quot;arial, sans-serif&quot;,&quot;26&quot;:400}\">An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection</span></p>'),(7901,85,0,2063,'Chino'),(7902,139,0,2063,'Scout'),(7903,75,0,2064,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nExtras: logo appliqué(s)\\nPattern: solid-coloured\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Extras: logo appliqué(s)<br />Pattern: solid-coloured<br />Material: 100% cotton<br />Manufacturer\'s care instructions: machine wash</span></p>'),(7904,76,0,2064,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8395587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;9&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,5526612],&quot;15&quot;:&quot;arial, sans-serif&quot;,&quot;26&quot;:400}\">An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection</span></p>'),(7905,85,0,2064,'Chino'),(7906,139,0,2064,'Scout'),(7907,75,0,2065,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, mock welt pocket/s at the back\\nExtras: logo appliqué(s)\\nPattern: solid-coloured\\nMaterial: 100% cotton\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, mock welt pocket/s at the back<br />Extras: logo appliqué(s)<br />Pattern: solid-coloured<br />Material: 100% cotton<br />Manufacturer\'s care instructions: machine wash</span></p>'),(7908,76,0,2065,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8395587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;9&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,5526612],&quot;15&quot;:&quot;arial, sans-serif&quot;,&quot;26&quot;:400}\">An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection</span></p>'),(7909,85,0,2065,'Chino'),(7910,139,0,2065,'Scout'),(7911,75,0,2066,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(7912,76,0,2066,'<p>Round neck knit dress with short flared sleeves and slit.</p>'),(7913,85,0,2066,'Cocktail Dress'),(7914,139,0,2066,'Vera Mont'),(7915,75,0,2067,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(7916,76,0,2067,'<p>Round neck knit dress with short flared sleeves and slit.</p>'),(7917,85,0,2067,'Cocktail Dress'),(7918,139,0,2067,'Vera Mont'),(7919,75,0,2068,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(7920,76,0,2068,'<p>Round neck knit dress with short flared sleeves and slit.</p>'),(7921,85,0,2068,'Cocktail Dress'),(7922,139,0,2068,'Vera Mont'),(7923,75,0,2069,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(7924,76,0,2069,'<p>Round neck knit dress with short flared sleeves and slit.</p>'),(7925,85,0,2069,'Cocktail Dress'),(7926,139,0,2069,'Vera Mont'),(7927,75,0,2070,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(7928,76,0,2070,'<p>Round neck knit dress with short flared sleeves and slit.</p>'),(7929,85,0,2070,'Cocktail Dress'),(7930,139,0,2070,'Vera Mont');
INSERT INTO `catalog_product_entity_text` VALUES (7931,75,0,2071,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(7932,76,0,2071,'<p>Round neck knit dress with short flared sleeves and slit.</p>'),(7933,85,0,2071,'Cocktail Dress'),(7934,139,0,2071,'Vera Mont'),(7935,75,0,2072,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(7936,76,0,2072,'<p>Round neck knit dress with short flared sleeves and slit.</p>'),(7937,85,0,2072,'Cocktail Dress'),(7938,139,0,2072,'Vera Mont'),(7939,75,0,2073,'<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7940,76,0,2073,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(7941,85,0,2073,'Sunglasses'),(7942,75,0,2074,'<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7943,76,0,2074,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(7944,85,0,2074,'Sunglasses'),(7945,75,0,2075,'<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7946,76,0,2075,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(7947,85,0,2075,'Sunglasses'),(7948,75,0,2076,'<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7949,76,0,2076,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(7950,85,0,2076,'Sunglasses'),(7951,75,0,2077,'<p>Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7952,76,0,2077,'<p>Sunglasses with a metal frame and transparent colored lenses. Faux leather case.</p>'),(7953,85,0,2077,'Sunglasses'),(7954,75,0,2078,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(7955,76,0,2078,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(7956,85,0,2078,'Colmar Soft Down Jacket'),(7957,139,0,2078,'Colmar'),(7958,75,0,2079,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(7959,76,0,2079,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(7960,85,0,2079,'Colmar Soft Down Jacket'),(7961,139,0,2079,'Colmar'),(7962,75,0,2080,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(7963,76,0,2080,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(7964,85,0,2080,'Colmar Soft Down Jacket'),(7965,139,0,2080,'Colmar'),(7966,75,0,2081,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(7967,76,0,2081,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(7968,85,0,2081,'Colmar Soft Down Jacket'),(7969,139,0,2081,'Colmar'),(7970,75,0,2082,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(7971,76,0,2082,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(7972,85,0,2082,'Colmar Soft Down Jacket'),(7973,139,0,2082,'Colmar'),(7974,75,0,2083,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(7975,76,0,2083,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(7976,85,0,2083,'Colmar Soft Down Jacket'),(7977,139,0,2083,'Colmar'),(7978,75,0,2084,'<p>Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(7979,76,0,2084,'<p>Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.</p>'),(7980,85,0,2084,'Colmar Soft Down Jacket'),(7981,139,0,2084,'Colmar'),(7982,75,0,2085,'<p>Model: Diorsorealrise</p>\r\n<p>Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: patterned bow, patterned border, logo engraving, case included</p>\r\n<p>Material: plastic, metal</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7983,76,0,2085,'<p>Resin sunglasses with a double metal bridge.</p>'),(7984,85,0,2085,'Rose gold diorsorealrise'),(7985,75,0,2086,'<p>Model: Diorsorealrise</p>\r\n<p>Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: patterned bow, patterned border, logo engraving, case included</p>\r\n<p>Material: plastic, metal</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7986,76,0,2086,'<p>Resin sunglasses with a double metal bridge.</p>'),(7987,85,0,2086,'Rose gold diorsorealrise'),(7988,75,0,2087,'<p>Model: Diorsorealrise</p>\r\n<p>Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: patterned bow, patterned border, logo engraving, case included</p>\r\n<p>Material: plastic, metal</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7989,76,0,2087,'<p>Resin sunglasses with a double metal bridge.</p>'),(7990,85,0,2087,'Rose gold diorsorealrise'),(7991,75,0,2088,'<p>Model: Diorsorealrise</p>\r\n<p>Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: patterned bow, patterned border, logo engraving, case included</p>\r\n<p>Material: plastic, metal</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7992,76,0,2088,'<p>Resin sunglasses with a double metal bridge.</p>'),(7993,85,0,2088,'Rose gold diorsorealrise'),(7994,75,0,2089,'<p>Model: Diorsorealrise</p>\r\n<p>Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: patterned bow, patterned border, logo engraving, case included</p>\r\n<p>Material: plastic, metal</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(7995,76,0,2089,'<p>Resin sunglasses with a double metal bridge.</p>'),(7996,85,0,2089,'Rose gold diorsorealrise'),(7997,75,0,2090,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(7998,76,0,2090,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(7999,85,0,2090,'Comma Casual Identity Quilted Jacket'),(8000,139,0,2090,'Comma'),(8001,75,0,2091,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8002,76,0,2091,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(8003,85,0,2091,'Comma Casual Identity Quilted Jacket'),(8004,139,0,2091,'Comma'),(8005,75,0,2092,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8006,76,0,2092,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(8007,85,0,2092,'Comma Casual Identity Quilted Jacket'),(8008,139,0,2092,'Comma'),(8009,75,0,2093,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8010,76,0,2093,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(8011,85,0,2093,'Comma Casual Identity Quilted Jacket'),(8012,139,0,2093,'Comma'),(8013,75,0,2094,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8014,76,0,2094,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(8015,85,0,2094,'Comma Casual Identity Quilted Jacket'),(8016,139,0,2094,'Comma'),(8017,75,0,2095,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8018,76,0,2095,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(8019,85,0,2095,'Comma Casual Identity Quilted Jacket'),(8020,139,0,2095,'Comma'),(8021,75,0,2096,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8022,76,0,2096,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(8023,85,0,2096,'Comma Casual Identity Quilted Jacket'),(8024,139,0,2096,'Comma'),(8025,75,0,2097,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8026,76,0,2097,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(8027,85,0,2097,'Comma Casual Identity Quilted Jacket'),(8028,139,0,2097,'Comma'),(8029,75,0,2098,'<p>Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8030,76,0,2098,'<p>High collar jacket with front zip pockets and a zip-up front.</p>'),(8031,85,0,2098,'Comma Casual Identity Quilted Jacket'),(8032,139,0,2098,'Comma'),(8033,75,0,2099,'<p>Model: RMJLH Reference number: DiorSoReal</p>\r\n<p>Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8034,76,0,2099,'<p>Cateye glasses with a transparent resin frame and mirror lenses.</p>'),(8035,85,0,2099,'Nude sunglasses'),(8036,75,0,2100,'<p>Model: RMJLH Reference number: DiorSoReal</p>\r\n<p>Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8037,76,0,2100,'<p>Cateye glasses with a transparent resin frame and mirror lenses.</p>'),(8038,85,0,2100,'Nude sunglasses'),(8039,75,0,2101,'<p>Model: RMJLH Reference number: DiorSoReal</p>\r\n<p>Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8040,76,0,2101,'<p>Cateye glasses with a transparent resin frame and mirror lenses.</p>'),(8041,85,0,2101,'Nude sunglasses'),(8042,75,0,2102,'<p>Model: RMJLH Reference number: DiorSoReal</p>\r\n<p>Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8043,76,0,2102,'<p>Cateye glasses with a transparent resin frame and mirror lenses.</p>'),(8044,85,0,2102,'Nude sunglasses'),(8045,75,0,2103,'<p>Model: RMJLH Reference number: DiorSoReal</p>\r\n<p>Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8046,76,0,2103,'<p>Cateye glasses with a transparent resin frame and mirror lenses.</p>'),(8047,85,0,2103,'Nude sunglasses'),(8048,75,0,2104,'<p>Model: RMJLH Reference number: DiorSoReal</p>\r\n<p>Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8049,76,0,2104,'<p>Cateye glasses with a transparent resin frame and mirror lenses.</p>'),(8050,85,0,2104,'Nude sunglasses'),(8051,75,0,2105,'<p>Model: RMJLH Reference number: DiorSoReal</p>\r\n<p>Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: logo on both temples, case included, gift-box</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8052,76,0,2105,'<p>Cateye glasses with a transparent resin frame and mirror lenses.</p>'),(8053,85,0,2105,'Nude sunglasses'),(8054,75,0,2106,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(8055,76,0,2106,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(8056,85,0,2106,'Cotton-Stretch Tapered Pants'),(8057,139,0,2106,'Escada'),(8058,75,0,2107,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(8059,76,0,2107,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(8060,85,0,2107,'Cotton-Stretch Tapered Pants'),(8061,139,0,2107,'Escada'),(8062,75,0,2108,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(8063,76,0,2108,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(8064,85,0,2108,'Cotton-Stretch Tapered Pants'),(8065,139,0,2108,'Escada'),(8066,75,0,2109,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(8067,76,0,2109,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(8068,85,0,2109,'Cotton-Stretch Tapered Pants'),(8069,139,0,2109,'Escada'),(8070,75,0,2110,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(8071,76,0,2110,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(8072,85,0,2110,'Cotton-Stretch Tapered Pants'),(8073,139,0,2110,'Escada'),(8074,75,0,2111,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(8075,76,0,2111,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(8076,85,0,2111,'Cotton-Stretch Tapered Pants'),(8077,139,0,2111,'Escada'),(8078,75,0,2112,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(8079,76,0,2112,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(8080,85,0,2112,'Cotton-Stretch Tapered Pants'),(8081,139,0,2112,'Escada'),(8082,75,0,2113,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(8083,76,0,2113,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(8084,85,0,2113,'Cotton-Stretch Tapered Pants'),(8085,139,0,2113,'Escada'),(8086,75,0,2114,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(8087,76,0,2114,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(8088,85,0,2114,'Cotton-Stretch Tapered Pants'),(8089,139,0,2114,'Escada'),(8090,75,0,2115,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(8091,76,0,2115,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(8092,85,0,2115,'Cotton-Stretch Tapered Pants'),(8093,139,0,2115,'Escada'),(8094,75,0,2116,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slim, tapered leg\\nMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)\\nWaistband: Zip with concealed hooks and safety button inside\\nPockets: slit pocket/s\\nExtras: creases, heavy jersey quality\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: dry cleaning&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: slim, tapered leg<br />Measurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)<br />Waistband: Zip with concealed hooks and safety button inside<br />Pockets: slit pocket/s<br />Extras: creases, heavy jersey quality<br />Pattern: solid-coloured<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: dry cleaning</span></p>'),(8095,76,0,2116,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.</span></p>'),(8096,85,0,2116,'Cotton-Stretch Tapered Pants'),(8097,139,0,2116,'Escada'),(8098,75,0,2117,'<p>Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8099,76,0,2117,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8100,85,0,2117,'Dine\'n\'Dance Cashmere Pullover'),(8101,139,0,2117,'Dine\'n\'Dance'),(8102,75,0,2118,'<p>Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8103,76,0,2118,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8104,85,0,2118,'Dine\'n\'Dance Cashmere Pullover'),(8105,139,0,2118,'Dine\'n\'Dance'),(8106,75,0,2119,'<p>Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8107,76,0,2119,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8108,85,0,2119,'Dine\'n\'Dance Cashmere Pullover'),(8109,139,0,2119,'Dine\'n\'Dance'),(8110,75,0,2120,'<p>Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8111,76,0,2120,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8112,85,0,2120,'Dine\'n\'Dance Cashmere Pullover'),(8113,139,0,2120,'Dine\'n\'Dance'),(8114,75,0,2121,'<p>Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8115,76,0,2121,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8116,85,0,2121,'Dine\'n\'Dance Cashmere Pullover'),(8117,139,0,2121,'Dine\'n\'Dance'),(8118,75,0,2122,'<p>Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8119,76,0,2122,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8120,85,0,2122,'Dine\'n\'Dance Cashmere Pullover'),(8121,139,0,2122,'Dine\'n\'Dance'),(8122,75,0,2123,'<p>Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8123,76,0,2123,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8124,85,0,2123,'Dine\'n\'Dance Cashmere Pullover'),(8125,139,0,2123,'Dine\'n\'Dance'),(8126,75,0,2124,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8127,76,0,2124,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(8128,85,0,2124,'Dolomite Quilted Jacket'),(8129,139,0,2124,'Dolomite'),(8130,75,0,2125,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8131,76,0,2125,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(8132,85,0,2125,'Dolomite Quilted Jacket'),(8133,139,0,2125,'Dolomite'),(8134,75,0,2126,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8135,76,0,2126,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(8136,85,0,2126,'Dolomite Quilted Jacket'),(8137,139,0,2126,'Dolomite'),(8138,75,0,2127,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8139,76,0,2127,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(8140,85,0,2127,'Dolomite Quilted Jacket'),(8141,139,0,2127,'Dolomite'),(8142,75,0,2128,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8143,76,0,2128,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(8144,85,0,2128,'Dolomite Quilted Jacket'),(8145,139,0,2128,'Dolomite'),(8146,75,0,2129,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8147,76,0,2129,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(8148,85,0,2129,'Dolomite Quilted Jacket'),(8149,139,0,2129,'Dolomite'),(8150,75,0,2130,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8151,76,0,2130,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(8152,85,0,2130,'Dolomite Quilted Jacket'),(8153,139,0,2130,'Dolomite'),(8154,75,0,2131,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8155,76,0,2131,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(8156,85,0,2131,'Dolomite Quilted Jacket'),(8157,139,0,2131,'Dolomite'),(8158,75,0,2132,'<p>Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8159,76,0,2132,'<p>Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.</p>'),(8160,85,0,2132,'Dolomite Quilted Jacket'),(8161,139,0,2132,'Dolomite'),(8162,85,0,2133,'Light grey Leather Belt'),(8163,85,0,2134,'Light grey Leather Belt'),(8164,85,0,2135,'Light grey Leather Belt'),(8165,75,0,2136,'<p>Measurements for size EU S: width approx. 1,8 cm (0.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: patent leather</p>\r\n<p>Material: leather</p>'),(8166,76,0,2136,'<p>Reversible leather belt with a loop and contrasting metal buckle.</p>'),(8167,85,0,2136,'Light blue Leather Belt'),(8168,75,0,2137,'<p>Measurements for size EU S: width approx. 1,8 cm (0.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: patent leather</p>\r\n<p>Material: leather</p>'),(8169,76,0,2137,'<p>Reversible leather belt with a loop and contrasting metal buckle.</p>'),(8170,85,0,2137,'Light blue Leather Belt'),(8171,75,0,2138,'<p>Measurements for size EU S: width approx. 1,8 cm (0.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: patent leather</p>\r\n<p>Material: leather</p>'),(8172,76,0,2138,'<p>Reversible leather belt with a loop and contrasting metal buckle.</p>'),(8173,85,0,2138,'Light blue Leather Belt'),(8174,75,0,2139,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs\\nMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)\\nWaistband: elasticated waistband, zip with button on cuff\\nExtras: weaving pattern, solid-coloured, crease in front\\nPattern: patterned\\nMaterial: 53% cotton, 44% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight, narrow legs<br />Measurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)<br />Waistband: elasticated waistband, zip with button on cuff<br />Extras: weaving pattern, solid-coloured, crease in front<br />Pattern: patterned<br />Material: 53% cotton, 44% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(8175,76,0,2139,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease </span></p>'),(8176,85,0,2139,'Dress Trousers'),(8177,139,0,2139,'Gardeur'),(8178,75,0,2140,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs\\nMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)\\nWaistband: elasticated waistband, zip with button on cuff\\nExtras: weaving pattern, solid-coloured, crease in front\\nPattern: patterned\\nMaterial: 53% cotton, 44% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight, narrow legs<br />Measurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)<br />Waistband: elasticated waistband, zip with button on cuff<br />Extras: weaving pattern, solid-coloured, crease in front<br />Pattern: patterned<br />Material: 53% cotton, 44% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(8179,76,0,2140,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease </span></p>'),(8180,85,0,2140,'Dress Trousers'),(8181,139,0,2140,'Gardeur'),(8182,75,0,2141,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs\\nMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)\\nWaistband: elasticated waistband, zip with button on cuff\\nExtras: weaving pattern, solid-coloured, crease in front\\nPattern: patterned\\nMaterial: 53% cotton, 44% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight, narrow legs<br />Measurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)<br />Waistband: elasticated waistband, zip with button on cuff<br />Extras: weaving pattern, solid-coloured, crease in front<br />Pattern: patterned<br />Material: 53% cotton, 44% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(8183,76,0,2141,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease </span></p>'),(8184,85,0,2141,'Dress Trousers'),(8185,139,0,2141,'Gardeur'),(8186,75,0,2142,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs\\nMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)\\nWaistband: elasticated waistband, zip with button on cuff\\nExtras: weaving pattern, solid-coloured, crease in front\\nPattern: patterned\\nMaterial: 53% cotton, 44% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight, narrow legs<br />Measurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)<br />Waistband: elasticated waistband, zip with button on cuff<br />Extras: weaving pattern, solid-coloured, crease in front<br />Pattern: patterned<br />Material: 53% cotton, 44% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(8187,76,0,2142,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease </span></p>'),(8188,85,0,2142,'Dress Trousers'),(8189,139,0,2142,'Gardeur'),(8190,75,0,2143,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs\\nMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)\\nWaistband: elasticated waistband, zip with button on cuff\\nExtras: weaving pattern, solid-coloured, crease in front\\nPattern: patterned\\nMaterial: 53% cotton, 44% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight, narrow legs<br />Measurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)<br />Waistband: elasticated waistband, zip with button on cuff<br />Extras: weaving pattern, solid-coloured, crease in front<br />Pattern: patterned<br />Material: 53% cotton, 44% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(8191,76,0,2143,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease </span></p>'),(8192,85,0,2143,'Dress Trousers'),(8193,139,0,2143,'Gardeur'),(8194,75,0,2144,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs\\nMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)\\nWaistband: elasticated waistband, zip with button on cuff\\nExtras: weaving pattern, solid-coloured, crease in front\\nPattern: patterned\\nMaterial: 53% cotton, 44% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight, narrow legs<br />Measurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)<br />Waistband: elasticated waistband, zip with button on cuff<br />Extras: weaving pattern, solid-coloured, crease in front<br />Pattern: patterned<br />Material: 53% cotton, 44% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(8195,76,0,2144,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease </span></p>'),(8196,85,0,2144,'Dress Trousers'),(8197,139,0,2144,'Gardeur'),(8198,75,0,2145,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight, narrow legs\\nMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)\\nWaistband: elasticated waistband, zip with button on cuff\\nExtras: weaving pattern, solid-coloured, crease in front\\nPattern: patterned\\nMaterial: 53% cotton, 44% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Cut: straight, narrow legs<br />Measurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)<br />Waistband: elasticated waistband, zip with button on cuff<br />Extras: weaving pattern, solid-coloured, crease in front<br />Pattern: patterned<br />Material: 53% cotton, 44% polyester, 3% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(8199,76,0,2145,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease </span></p>'),(8200,85,0,2145,'Dress Trousers'),(8201,139,0,2145,'Gardeur'),(8202,75,0,2146,'<p>Measurements for one size: height 43 cm (17″), length 30 cm (12″), depth 15 cm (6″)</p>\r\n<p>Fastening: two-way zip (open from right and left)</p>\r\n<p>Lining material: lined</p>\r\n<p>Exterior pockets: patch zip pocket / s, zip pocket(s) Interior pockets: plug-in and zip pocket(s), padded laptop compartment</p>\r\n<p>Extras: grained leather, attachment for mounting, logo appliqué(s), padded back, adjustable and padded shoulder straps</p>\r\n<p>Material: leather</p>\r\n<p>Lining: textile Our model wears a EU OS and is 185cm/6′0″ tall.</p>'),(8203,76,0,2146,'<p>Basic backpack with zip closure. Double compartment. The inside features a compartment for storing electronic devices and laptops of up to 13 inches (13”).</p>'),(8204,85,0,2146,'Leather Backpack'),(8205,75,0,2147,'<p>Measurements for one size: height 43 cm (17″), length 30 cm (12″), depth 15 cm (6″)</p>\r\n<p>Fastening: two-way zip (open from right and left)</p>\r\n<p>Lining material: lined</p>\r\n<p>Exterior pockets: patch zip pocket / s, zip pocket(s) Interior pockets: plug-in and zip pocket(s), padded laptop compartment</p>\r\n<p>Extras: grained leather, attachment for mounting, logo appliqué(s), padded back, adjustable and padded shoulder straps</p>\r\n<p>Material: leather</p>\r\n<p>Lining: textile Our model wears a EU OS and is 185cm/6′0″ tall.</p>'),(8206,76,0,2147,'<p>Basic backpack with zip closure. Double compartment. The inside features a compartment for storing electronic devices and laptops of up to 13 inches (13”).</p>'),(8207,85,0,2147,'Leather Backpack'),(8208,75,0,2148,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8209,76,0,2148,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(8210,85,0,2148,'Escada Gilet'),(8211,139,0,2148,'Escada'),(8212,75,0,2149,'<p>Measurements for one size: height 43 cm (17″), length 30 cm (12″), depth 15 cm (6″)</p>\r\n<p>Fastening: two-way zip (open from right and left)</p>\r\n<p>Lining material: lined</p>\r\n<p>Exterior pockets: patch zip pocket / s, zip pocket(s) Interior pockets: plug-in and zip pocket(s), padded laptop compartment</p>\r\n<p>Extras: grained leather, attachment for mounting, logo appliqué(s), padded back, adjustable and padded shoulder straps</p>\r\n<p>Material: leather</p>\r\n<p>Lining: textile Our model wears a EU OS and is 185cm/6′0″ tall.</p>'),(8213,76,0,2149,'<p>Basic backpack with zip closure. Double compartment. The inside features a compartment for storing electronic devices and laptops of up to 13 inches (13”).</p>'),(8214,85,0,2149,'Leather Backpack'),(8215,75,0,2150,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8216,76,0,2150,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(8217,85,0,2150,'Escada Gilet'),(8218,139,0,2150,'Escada'),(8219,75,0,2151,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8220,76,0,2151,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(8221,85,0,2151,'Escada Gilet'),(8222,139,0,2151,'Escada'),(8223,75,0,2152,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8224,76,0,2152,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(8225,85,0,2152,'Escada Gilet'),(8226,139,0,2152,'Escada'),(8227,75,0,2153,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8228,76,0,2153,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(8229,85,0,2153,'Escada Gilet'),(8230,139,0,2153,'Escada'),(8231,75,0,2154,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8232,76,0,2154,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(8233,85,0,2154,'Escada Gilet'),(8234,139,0,2154,'Escada'),(8235,75,0,2155,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8236,76,0,2155,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(8237,85,0,2155,'Escada Gilet'),(8238,139,0,2155,'Escada'),(8239,75,0,2156,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8240,76,0,2156,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(8241,85,0,2156,'Escada Gilet'),(8242,139,0,2156,'Escada'),(8243,75,0,2157,'<p>Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8244,76,0,2157,'<p>Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.</p>'),(8245,85,0,2157,'Escada Gilet'),(8246,139,0,2157,'Escada'),(8247,75,0,2158,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8248,76,0,2158,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(8249,85,0,2158,'Heeled Sandals'),(8250,139,0,2158,'Steve Madden'),(8251,75,0,2159,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8252,76,0,2159,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(8253,85,0,2159,'Heeled Sandals'),(8254,139,0,2159,'Steve Madden'),(8255,75,0,2160,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8256,76,0,2160,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(8257,85,0,2160,'Heeled Sandals'),(8258,139,0,2160,'Steve Madden'),(8259,75,0,2161,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8260,76,0,2161,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(8261,85,0,2161,'Heeled Sandals'),(8262,139,0,2161,'Steve Madden'),(8263,75,0,2162,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8264,76,0,2162,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(8265,85,0,2162,'Heeled Sandals'),(8266,139,0,2162,'Steve Madden'),(8267,75,0,2163,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8268,76,0,2163,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(8269,85,0,2163,'Heeled Sandals'),(8270,139,0,2163,'Steve Madden'),(8271,75,0,2164,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8272,76,0,2164,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(8273,85,0,2164,'Heeled Sandals'),(8274,139,0,2164,'Steve Madden'),(8275,75,0,2165,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8276,76,0,2165,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(8277,85,0,2165,'Heeled Sandals'),(8278,139,0,2165,'Steve Madden'),(8279,75,0,2166,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8280,76,0,2166,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(8281,85,0,2166,'Heeled Sandals'),(8282,139,0,2166,'Steve Madden'),(8283,75,0,2167,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8284,76,0,2167,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(8285,85,0,2167,'Heeled Sandals'),(8286,139,0,2167,'Steve Madden'),(8287,75,0,2168,'<ul>\r\n<li>Measurements for size EU 39: heel height 10 cm (4″)</li>\r\n<li>Extras: monk strap, velvety surface</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: synthetic</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8288,76,0,2168,'<p>Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.</p>'),(8289,85,0,2168,'Heeled Sandals'),(8290,139,0,2168,'Steve Madden'),(8291,75,0,2169,'<p>Reference number: E1 BD1 18 03 01</p>\r\n<p>Measurements for one size: height 28 cm (11″), length 36 cm (14″), depth 13 cm (5″)</p>\r\n<p>Fastening: overlapping flap with clasp closure</p>\r\n<p>Lining material: lined Exterior pockets: slit pocket(s)</p>\r\n<p>Interior pockets: plug-in and zip pocket(s) Extras: logo appliqué(s), suede, adjustable and detachable shoulder strap</p>\r\n<p>Material: leather</p>\r\n<p>Lining: textile</p>'),(8292,76,0,2169,'<p>The Fauve bag in mini version, enriched with metal details, combines practicality and elegance in its white leather design.</p>'),(8293,85,0,2169,'Handbag'),(8294,75,0,2170,'<p>Reference number: E1 BD1 18 03 01</p>\r\n<p>Measurements for one size: height 28 cm (11″), length 36 cm (14″), depth 13 cm (5″)</p>\r\n<p>Fastening: overlapping flap with clasp closure</p>\r\n<p>Lining material: lined Exterior pockets: slit pocket(s)</p>\r\n<p>Interior pockets: plug-in and zip pocket(s) Extras: logo appliqué(s), suede, adjustable and detachable shoulder strap</p>\r\n<p>Material: leather</p>\r\n<p>Lining: textile</p>'),(8295,76,0,2170,'<p>The Fauve bag in mini version, enriched with metal details, combines practicality and elegance in its white leather design.</p>'),(8296,85,0,2170,'Handbag'),(8297,75,0,2171,'<p>Reference number: E1 BD1 18 03 01</p>\r\n<p>Measurements for one size: height 28 cm (11″), length 36 cm (14″), depth 13 cm (5″)</p>\r\n<p>Fastening: overlapping flap with clasp closure</p>\r\n<p>Lining material: lined Exterior pockets: slit pocket(s)</p>\r\n<p>Interior pockets: plug-in and zip pocket(s) Extras: logo appliqué(s), suede, adjustable and detachable shoulder strap</p>\r\n<p>Material: leather</p>\r\n<p>Lining: textile</p>'),(8298,76,0,2171,'<p>The Fauve bag in mini version, enriched with metal details, combines practicality and elegance in its white leather design.</p>'),(8299,85,0,2171,'Handbag'),(8300,75,0,2172,'<p>Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8301,76,0,2172,'<p>Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back.</p>'),(8302,85,0,2172,'Just me Casual Dress'),(8303,139,0,2172,'Just me'),(8304,75,0,2173,'<p>Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8305,76,0,2173,'<p>Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back.</p>'),(8306,85,0,2173,'Just me Casual Dress'),(8307,139,0,2173,'Just me'),(8308,75,0,2174,'<p>Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8309,76,0,2174,'<p>Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back.</p>'),(8310,85,0,2174,'Just me Casual Dress'),(8311,139,0,2174,'Just me'),(8312,75,0,2175,'<p>Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8313,76,0,2175,'<p>Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back.</p>'),(8314,85,0,2175,'Just me Casual Dress'),(8315,139,0,2175,'Just me'),(8316,75,0,2176,'<p>Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8317,76,0,2176,'<p>Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back.</p>'),(8318,85,0,2176,'Just me Casual Dress'),(8319,139,0,2176,'Just me'),(8320,75,0,2177,'<p>Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8321,76,0,2177,'<p>Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back.</p>'),(8322,85,0,2177,'Just me Casual Dress'),(8323,139,0,2177,'Just me'),(8324,75,0,2178,'<p>Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8325,76,0,2178,'<p>Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back.</p>'),(8326,85,0,2178,'Just me Casual Dress'),(8327,139,0,2178,'Just me'),(8328,75,0,2179,'<ul>\r\n<li>\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(8329,76,0,2179,'<p>Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front.</p>'),(8330,85,0,2179,'Lace Dress'),(8331,139,0,2179,'Lace Dress'),(8332,75,0,2180,'<ul>\r\n<li>\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(8333,76,0,2180,'<p>Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front.</p>'),(8334,85,0,2180,'Lace Dress'),(8335,139,0,2180,'Lace Dress'),(8336,75,0,2181,'<ul>\r\n<li>\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(8337,76,0,2181,'<p>Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front.</p>'),(8338,85,0,2181,'Lace Dress'),(8339,139,0,2181,'Lace Dress'),(8340,75,0,2182,'<ul>\r\n<li>\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(8341,76,0,2182,'<p>Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front.</p>'),(8342,85,0,2182,'Lace Dress'),(8343,139,0,2182,'Lace Dress'),(8344,75,0,2183,'<ul>\r\n<li>\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(8345,76,0,2183,'<p>Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front.</p>'),(8346,85,0,2183,'Lace Dress'),(8347,139,0,2183,'Lace Dress'),(8348,75,0,2184,'<ul>\r\n<li>\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(8349,76,0,2184,'<p>Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front.</p>'),(8350,85,0,2184,'Lace Dress'),(8351,139,0,2184,'Lace Dress'),(8352,75,0,2185,'<ul>\r\n<li>\r\n<div class=\"collapsible collapsible-block\">\r\n<div class=\"collapsible-container type-formatted open\">\r\n<div class=\"block-collapsible\">\r\n<ul>\r\n<li>Cut: fitted with a slightly tapered skirt, back slit</li>\r\n<li>Measurements for size EU S: garment length 106 cm (41.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: shortsleeve</li>\r\n<li>Lining: lined</li>\r\n<li>Pattern: solid-coloured</li>\r\n<li>Outer material: 60% cotton, 40% polyamide</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: hand-wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU S and is 179cm/5′10″ tall.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"find-more\"> </div>\r\n</li>\r\n</ul>'),(8353,76,0,2185,'<p>Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front.</p>'),(8354,85,0,2185,'Lace Dress'),(8355,139,0,2185,'Lace Dress'),(8356,75,0,2186,'<p>Reference number: MB 657S</p>\r\n<p>Measurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: logo appliqué(s), case included</p>\r\n<p>Material: titanium</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8357,76,0,2186,'<p>Sunglasses with a metal frame and transparent coloured lenses. Faux leather case.</p>'),(8358,85,0,2186,'Green sunglasses'),(8359,75,0,2187,'<p>Reference number: MB 657S</p>\r\n<p>Measurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: logo appliqué(s), case included</p>\r\n<p>Material: titanium</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8360,76,0,2187,'<p>Sunglasses with a metal frame and transparent coloured lenses. Faux leather case.</p>'),(8361,85,0,2187,'Green sunglasses'),(8362,75,0,2188,'<p>Reference number: MB 657S</p>\r\n<p>Measurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: logo appliqué(s), case included</p>\r\n<p>Material: titanium</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8363,76,0,2188,'<p>Sunglasses with a metal frame and transparent coloured lenses. Faux leather case.</p>'),(8364,85,0,2188,'Green sunglasses'),(8365,75,0,2189,'<p>Reference number: MB 657S</p>\r\n<p>Measurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: logo appliqué(s), case included</p>\r\n<p>Material: titanium</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8366,76,0,2189,'<p>Sunglasses with a metal frame and transparent coloured lenses. Faux leather case.</p>'),(8367,85,0,2189,'Green sunglasses'),(8368,75,0,2190,'<p>Reference number: MB 657S</p>\r\n<p>Measurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)</p>\r\n<p>UV filter: category 3</p>\r\n<p>Extras: logo appliqué(s), case included</p>\r\n<p>Material: titanium</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8369,76,0,2190,'<p>Sunglasses with a metal frame and transparent coloured lenses. Faux leather case.</p>'),(8370,85,0,2190,'Green sunglasses'),(8371,75,0,2191,'<p>Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8372,76,0,2191,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8373,85,0,2191,'Lawrence Grey Cashmere Pullover'),(8374,139,0,2191,'Lawrence Grey'),(8375,75,0,2192,'<p>Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8376,76,0,2192,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8377,85,0,2192,'Lawrence Grey Cashmere Pullover'),(8378,139,0,2192,'Lawrence Grey'),(8379,75,0,2193,'<p>Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8380,76,0,2193,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8381,85,0,2193,'Lawrence Grey Cashmere Pullover'),(8382,139,0,2193,'Lawrence Grey'),(8383,75,0,2194,'<p>Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8384,76,0,2194,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8385,85,0,2194,'Lawrence Grey Cashmere Pullover'),(8386,139,0,2194,'Lawrence Grey'),(8387,75,0,2195,'<p>Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8388,76,0,2195,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8389,85,0,2195,'Lawrence Grey Cashmere Pullover'),(8390,139,0,2195,'Lawrence Grey'),(8391,75,0,2196,'<p>Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8392,76,0,2196,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8393,85,0,2196,'Lawrence Grey Cashmere Pullover'),(8394,139,0,2196,'Lawrence Grey'),(8395,75,0,2197,'<p>Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8396,76,0,2197,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8397,85,0,2197,'Lawrence Grey Cashmere Pullover'),(8398,139,0,2197,'Lawrence Grey'),(8399,75,0,2198,'<p>Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8400,76,0,2198,'<p>Dress with generous pleats and slightly flared skirt.</p>'),(8401,85,0,2198,'Lawrence Grey Knit Dress'),(8402,139,0,2198,'Lawrence Grey'),(8403,75,0,2199,'<p>Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8404,76,0,2199,'<p>Dress with generous pleats and slightly flared skirt.</p>'),(8405,85,0,2199,'Lawrence Grey Knit Dress'),(8406,139,0,2199,'Lawrence Grey'),(8407,75,0,2200,'<p>Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8408,76,0,2200,'<p>Dress with generous pleats and slightly flared skirt.</p>'),(8409,85,0,2200,'Lawrence Grey Knit Dress'),(8410,139,0,2200,'Lawrence Grey'),(8411,75,0,2201,'<p>Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8412,76,0,2201,'<p>Dress with generous pleats and slightly flared skirt.</p>'),(8413,85,0,2201,'Lawrence Grey Knit Dress'),(8414,139,0,2201,'Lawrence Grey'),(8415,75,0,2202,'<p>Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8416,76,0,2202,'<p>Dress with generous pleats and slightly flared skirt.</p>'),(8417,85,0,2202,'Lawrence Grey Knit Dress'),(8418,139,0,2202,'Lawrence Grey'),(8419,75,0,2203,'<p>Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8420,76,0,2203,'<p>Dress with generous pleats and slightly flared skirt.</p>'),(8421,85,0,2203,'Lawrence Grey Knit Dress'),(8422,139,0,2203,'Lawrence Grey'),(8423,75,0,2204,'<p>Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8424,76,0,2204,'<p>Dress with generous pleats and slightly flared skirt.</p>'),(8425,85,0,2204,'Lawrence Grey Knit Dress'),(8426,139,0,2204,'Lawrence Grey'),(8427,139,0,1656,'Cipo & Baxx'),(8428,139,0,1604,'Carrera'),(8429,139,0,1464,'Boss Orange'),(8430,139,0,1351,'People of Shibuya'),(8431,75,0,2205,'<p>Measurements for one size: height 34 cm (13.5″), length 36 cm (14″), depth 8 cm (3″)</p>\r\n<p>Exterior pockets: zip pocket(s)</p>\r\n<p>Interior pockets: plug-in and zip pocket(s)</p>\r\n<p>Extras: suede, adjustable and detachable shoulder strap, logo appliqué(s)</p>\r\n<p>Lining: textile</p>\r\n<p>Material: leather Our model wears a EU OS and is 179cm/5′10″ tall.</p>'),(8432,76,0,2205,'<p>Brown leather bowling bag. Outer zip closure. Its interior features two compartments and one zip pocket. Its exterior features two handles.</p>'),(8433,85,0,2205,'Cognac Handbag'),(8434,75,0,2206,'<p>Measurements for one size: height 34 cm (13.5″), length 36 cm (14″), depth 8 cm (3″)</p>\r\n<p>Exterior pockets: zip pocket(s)</p>\r\n<p>Interior pockets: plug-in and zip pocket(s)</p>\r\n<p>Extras: suede, adjustable and detachable shoulder strap, logo appliqué(s)</p>\r\n<p>Lining: textile</p>\r\n<p>Material: leather Our model wears a EU OS and is 179cm/5′10″ tall.</p>'),(8435,76,0,2206,'<p>Brown leather bowling bag. Outer zip closure. Its interior features two compartments and one zip pocket. Its exterior features two handles.</p>'),(8436,85,0,2206,'Cognac Handbag'),(8437,75,0,2207,'<p>Measurements for one size: height 34 cm (13.5″), length 36 cm (14″), depth 8 cm (3″)</p>\r\n<p>Exterior pockets: zip pocket(s)</p>\r\n<p>Interior pockets: plug-in and zip pocket(s)</p>\r\n<p>Extras: suede, adjustable and detachable shoulder strap, logo appliqué(s)</p>\r\n<p>Lining: textile</p>\r\n<p>Material: leather Our model wears a EU OS and is 179cm/5′10″ tall.</p>'),(8438,76,0,2207,'<p>Brown leather bowling bag. Outer zip closure. Its interior features two compartments and one zip pocket. Its exterior features two handles.</p>'),(8439,85,0,2207,'Cognac Handbag'),(8440,139,0,1568,'Tommy Hilfiger'),(8441,139,0,1946,'Adidas'),(8443,75,0,2208,'<p>Reference number: BV0111S</p>\r\n<p>Measurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: titanium, plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8444,76,0,2208,'<p>Resin sunglasses with a double metal bridge.</p>'),(8445,85,0,2208,'Bottega Veneta'),(8446,75,0,2209,'<p>Reference number: BV0111S</p>\r\n<p>Measurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: titanium, plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8447,76,0,2209,'<p>Resin sunglasses with a double metal bridge.</p>'),(8448,85,0,2209,'Bottega Veneta'),(8449,75,0,2210,'<p>Reference number: BV0111S</p>\r\n<p>Measurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: titanium, plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8450,76,0,2210,'<p>Resin sunglasses with a double metal bridge.</p>'),(8451,85,0,2210,'Bottega Veneta'),(8452,75,0,2211,'<p>Reference number: BV0111S</p>\r\n<p>Measurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: titanium, plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8453,76,0,2211,'<p>Resin sunglasses with a double metal bridge.</p>'),(8454,85,0,2211,'Bottega Veneta'),(8455,75,0,2212,'<p>Reference number: BV0111S</p>\r\n<p>Measurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)</p>\r\n<p>UV filter: category 3 Extras: case included</p>\r\n<p>Material: titanium, plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8456,76,0,2212,'<p>Resin sunglasses with a double metal bridge.</p>'),(8457,85,0,2212,'Bottega Veneta'),(8458,75,0,2213,'<p>Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(8459,76,0,2213,'<p>Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow.</p>'),(8460,85,0,2213,'Max & Co. Mini Dress'),(8461,139,0,2213,'Max & Co.'),(8462,75,0,2214,'<p>Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(8463,76,0,2214,'<p>Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow.</p>'),(8464,85,0,2214,'Max & Co. Mini Dress'),(8465,139,0,2214,'Max & Co.'),(8466,75,0,2215,'<p>Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(8467,76,0,2215,'<p>Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow.</p>'),(8468,85,0,2215,'Max & Co. Mini Dress'),(8469,139,0,2215,'Max & Co.'),(8470,139,0,1903,'Diesel'),(8471,75,0,2216,'<p>Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(8472,76,0,2216,'<p>Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow.</p>'),(8473,85,0,2216,'Max & Co. Mini Dress'),(8474,139,0,2216,'Max & Co.'),(8475,75,0,2217,'<p>Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(8476,76,0,2217,'<p>Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow.</p>'),(8477,85,0,2217,'Max & Co. Mini Dress'),(8478,139,0,2217,'Max & Co.'),(8479,75,0,2218,'<p>Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(8480,76,0,2218,'<p>Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow.</p>'),(8481,85,0,2218,'Max & Co. Mini Dress'),(8482,139,0,2218,'Max & Co.'),(8483,75,0,2219,'<p>Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(8484,76,0,2219,'<p>Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow.</p>'),(8485,85,0,2219,'Max & Co. Mini Dress'),(8486,139,0,2219,'Max & Co.'),(8487,139,0,1875,'Armani Jeans'),(8488,75,0,2220,'<p>Smart tote bag. It has two detachable shoulder straps so that it can be worn as a backpack or carried as a tote. There is an outside compartment for storing the shoulder straps.</p>'),(8489,76,0,2220,'<p>Measurements for one size: height 28 cm (11″), length 31 cm (12″), depth 9 cm (3.5″) Fastening: zip Extras: grained leather, removable logo pendant, detachable shoulder strap Material: leather Lining: suede Our model wears a EU OS and is 179cm/5′10″ tall.</p>'),(8490,85,0,2220,'Blue handbag'),(8491,75,0,2221,'<p>Smart tote bag. It has two detachable shoulder straps so that it can be worn as a backpack or carried as a tote. There is an outside compartment for storing the shoulder straps.</p>'),(8492,76,0,2221,'<p>Measurements for one size: height 28 cm (11″), length 31 cm (12″), depth 9 cm (3.5″) Fastening: zip Extras: grained leather, removable logo pendant, detachable shoulder strap Material: leather Lining: suede Our model wears a EU OS and is 179cm/5′10″ tall.</p>'),(8493,85,0,2221,'Blue handbag'),(8494,75,0,2222,'<p>Smart tote bag. It has two detachable shoulder straps so that it can be worn as a backpack or carried as a tote. There is an outside compartment for storing the shoulder straps.</p>'),(8495,76,0,2222,'<p>Measurements for one size: height 28 cm (11″), length 31 cm (12″), depth 9 cm (3.5″) Fastening: zip Extras: grained leather, removable logo pendant, detachable shoulder strap Material: leather Lining: suede Our model wears a EU OS and is 179cm/5′10″ tall.</p>'),(8496,85,0,2222,'Blue handbag'),(8497,139,0,1840,'H.I.S Jeans'),(8498,139,0,1817,'Bugatti'),(8499,75,0,2223,'<p>Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8500,76,0,2223,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8501,85,0,2223,'Max Tonso Cashmere Pullover'),(8502,139,0,2223,'Max Tonso'),(8503,75,0,2224,'<p>Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8504,76,0,2224,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8505,85,0,2224,'Max Tonso Cashmere Pullover'),(8506,139,0,2224,'Max Tonso'),(8507,75,0,2225,'<p>Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8508,76,0,2225,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8509,85,0,2225,'Max Tonso Cashmere Pullover'),(8510,139,0,2225,'Max Tonso'),(8511,75,0,2226,'<p>Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8512,76,0,2226,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8513,85,0,2226,'Max Tonso Cashmere Pullover'),(8514,139,0,2226,'Max Tonso'),(8515,75,0,2227,'<p>Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8516,76,0,2227,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8517,85,0,2227,'Max Tonso Cashmere Pullover'),(8518,139,0,2227,'Max Tonso'),(8519,75,0,2228,'<p>Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8520,76,0,2228,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8521,85,0,2228,'Max Tonso Cashmere Pullover'),(8522,139,0,2228,'Max Tonso'),(8523,75,0,2229,'<p>Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(8524,76,0,2229,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(8525,85,0,2229,'Max Tonso Cashmere Pullover'),(8526,139,0,2229,'Max Tonso'),(8527,139,0,1787,'Bogner'),(8528,139,0,1735,'Boss Orange'),(8529,139,0,1972,'Sneakers'),(8530,139,0,1709,'Lawrence Grey'),(8531,139,0,1943,'Camper'),(8532,139,0,1630,'Only & Sons'),(8533,139,0,1583,'Diesel'),(8534,75,0,2230,'<p>Reference number: 0927/S</p>\r\n<p>Measurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)</p>\r\n<p>Extras: logo on both temples, logo engraved on right/left lens, case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8535,76,0,2230,'<p>Rounded sunglasses with a black frame and transparent lenses. Faux leather case.</p>'),(8536,85,0,2230,'Black sunglasses'),(8537,75,0,2231,'<p>Reference number: 0927/S</p>\r\n<p>Measurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)</p>\r\n<p>Extras: logo on both temples, logo engraved on right/left lens, case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8538,76,0,2231,'<p>Rounded sunglasses with a black frame and transparent lenses. Faux leather case.</p>'),(8539,85,0,2231,'Black sunglasses'),(8540,75,0,2232,'<p>Reference number: 0927/S</p>\r\n<p>Measurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)</p>\r\n<p>Extras: logo on both temples, logo engraved on right/left lens, case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8541,76,0,2232,'<p>Rounded sunglasses with a black frame and transparent lenses. Faux leather case.</p>'),(8542,85,0,2232,'Black sunglasses'),(8543,75,0,2233,'<p>Reference number: 0927/S</p>\r\n<p>Measurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)</p>\r\n<p>Extras: logo on both temples, logo engraved on right/left lens, case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8544,76,0,2233,'<p>Rounded sunglasses with a black frame and transparent lenses. Faux leather case.</p>'),(8545,85,0,2233,'Black sunglasses'),(8546,75,0,2234,'<p>Reference number: 0927/S</p>\r\n<p>Measurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)</p>\r\n<p>Extras: logo on both temples, logo engraved on right/left lens, case included</p>\r\n<p>Material: plastic</p>\r\n<p>Please note: May only be returned in original packaging.</p>'),(8547,76,0,2234,'<p>Rounded sunglasses with a black frame and transparent lenses. Faux leather case.</p>'),(8548,85,0,2234,'Black sunglasses'),(8549,75,0,2235,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8550,76,0,2235,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(8551,85,0,2235,'Over The Knee Boots'),(8552,139,0,2235,'Elvio Zanon'),(8553,139,0,1991,'Gant'),(8554,75,0,2236,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8555,76,0,2236,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(8556,85,0,2236,'Over The Knee Boots'),(8557,139,0,2236,'Elvio Zanon'),(8558,75,0,2237,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8559,76,0,2237,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(8560,85,0,2237,'Over The Knee Boots'),(8561,139,0,2237,'Elvio Zanon'),(8562,75,0,2238,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8563,76,0,2238,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(8564,85,0,2238,'Over The Knee Boots'),(8565,139,0,2238,'Elvio Zanon'),(8566,75,0,2239,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8567,76,0,2239,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(8568,85,0,2239,'Over The Knee Boots'),(8569,139,0,2239,'Elvio Zanon'),(8570,75,0,2240,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8571,76,0,2240,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(8572,85,0,2240,'Over The Knee Boots'),(8573,139,0,2240,'Elvio Zanon'),(8574,75,0,2241,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8575,76,0,2241,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(8576,85,0,2241,'Over The Knee Boots'),(8577,139,0,2241,'Elvio Zanon'),(8578,75,0,2242,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8579,76,0,2242,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(8580,85,0,2242,'Over The Knee Boots'),(8581,139,0,2242,'Elvio Zanon'),(8582,75,0,2243,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8583,76,0,2243,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(8584,85,0,2243,'Over The Knee Boots'),(8585,139,0,2243,'Elvio Zanon'),(8586,75,0,2244,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8587,76,0,2244,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(8588,85,0,2244,'Over The Knee Boots'),(8589,139,0,2244,'Elvio Zanon'),(8590,75,0,2245,'<ul>\r\n<li>Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)</li>\r\n<li>Extras: suede look</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(8591,76,0,2245,'<p>Silver leather hill boots. High soft slouchy leg. Lined chunky heel. </p>'),(8592,85,0,2245,'Over The Knee Boots'),(8593,139,0,2245,'Elvio Zanon'),(8594,139,0,1961,'Gant'),(8595,139,0,1535,'Steinbock'),(8596,75,0,2246,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.\\n\\nRegular fit \\nTrendy colour and popular pattern\\nTied waist \\nBusiness-Casual pants\\n\\n65% Polyester,32% Viscose,3% Elastane&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.<br /><br />Regular fit <br />Trendy colour and popular pattern<br />Tied waist <br />Business-Casual pants<br /><br />65% Polyester,32% Viscose,3% Elastane</span></p>'),(8597,76,0,2246,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.</span></p>'),(8598,85,0,2246,'Pale Belt Pants '),(8599,139,0,2246,'Kaffe'),(8600,75,0,2247,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.\\n\\nRegular fit \\nTrendy colour and popular pattern\\nTied waist \\nBusiness-Casual pants\\n\\n65% Polyester,32% Viscose,3% Elastane&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.<br /><br />Regular fit <br />Trendy colour and popular pattern<br />Tied waist <br />Business-Casual pants<br /><br />65% Polyester,32% Viscose,3% Elastane</span></p>'),(8601,76,0,2247,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.</span></p>'),(8602,85,0,2247,'Pale Belt Pants '),(8603,139,0,2247,'Kaffe'),(8604,75,0,2248,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.\\n\\nRegular fit \\nTrendy colour and popular pattern\\nTied waist \\nBusiness-Casual pants\\n\\n65% Polyester,32% Viscose,3% Elastane&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.<br /><br />Regular fit <br />Trendy colour and popular pattern<br />Tied waist <br />Business-Casual pants<br /><br />65% Polyester,32% Viscose,3% Elastane</span></p>'),(8605,76,0,2248,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.</span></p>'),(8606,85,0,2248,'Pale Belt Pants '),(8607,139,0,2248,'Kaffe'),(8608,75,0,2249,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.\\n\\nRegular fit \\nTrendy colour and popular pattern\\nTied waist \\nBusiness-Casual pants\\n\\n65% Polyester,32% Viscose,3% Elastane&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.<br /><br />Regular fit <br />Trendy colour and popular pattern<br />Tied waist <br />Business-Casual pants<br /><br />65% Polyester,32% Viscose,3% Elastane</span></p>'),(8609,76,0,2249,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.</span></p>'),(8610,85,0,2249,'Pale Belt Pants '),(8611,139,0,2249,'Kaffe'),(8612,75,0,2250,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.\\n\\nRegular fit \\nTrendy colour and popular pattern\\nTied waist \\nBusiness-Casual pants\\n\\n65% Polyester,32% Viscose,3% Elastane&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.<br /><br />Regular fit <br />Trendy colour and popular pattern<br />Tied waist <br />Business-Casual pants<br /><br />65% Polyester,32% Viscose,3% Elastane</span></p>'),(8613,76,0,2250,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.</span></p>'),(8614,85,0,2250,'Pale Belt Pants '),(8615,139,0,2250,'Kaffe'),(8616,75,0,2251,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.\\n\\nRegular fit \\nTrendy colour and popular pattern\\nTied waist \\nBusiness-Casual pants\\n\\n65% Polyester,32% Viscose,3% Elastane&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.<br /><br />Regular fit <br />Trendy colour and popular pattern<br />Tied waist <br />Business-Casual pants<br /><br />65% Polyester,32% Viscose,3% Elastane</span></p>'),(8617,76,0,2251,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.</span></p>'),(8618,85,0,2251,'Pale Belt Pants '),(8619,139,0,2251,'Kaffe'),(8620,75,0,2252,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.\\n\\nRegular fit \\nTrendy colour and popular pattern\\nTied waist \\nBusiness-Casual pants\\n\\n65% Polyester,32% Viscose,3% Elastane&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.<br /><br />Regular fit <br />Trendy colour and popular pattern<br />Tied waist <br />Business-Casual pants<br /><br />65% Polyester,32% Viscose,3% Elastane</span></p>'),(8621,76,0,2252,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.</span></p>'),(8622,85,0,2252,'Pale Belt Pants '),(8623,139,0,2252,'Kaffe'),(8624,75,0,2253,'<p>Measurements for size EU 85: width approx. 3,4 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: embossed logo</p>\r\n<p>Material: leather</p>'),(8625,76,0,2253,'<p>Contrast leather belt with a loop and a contrasting metal buckle.</p>'),(8626,85,0,2253,'Beige Leather Belt'),(8627,139,0,2253,'Strellson Premium'),(8628,75,0,2254,'<p>Measurements for size EU 85: width approx. 3,4 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: embossed logo</p>\r\n<p>Material: leather</p>'),(8629,76,0,2254,'<p>Contrast leather belt with a loop and a contrasting metal buckle.</p>'),(8630,85,0,2254,'Beige Leather Belt'),(8631,139,0,2254,'Strellson Premium'),(8632,75,0,2255,'<p>Measurements for size EU 85: width approx. 3,4 cm (1.5″)</p>\r\n<p>Fastening: pin buckle</p>\r\n<p>Extras: embossed logo</p>\r\n<p>Material: leather</p>'),(8633,76,0,2255,'<p>Contrast leather belt with a loop and a contrasting metal buckle.</p>'),(8634,85,0,2255,'Beige Leather Belt'),(8635,139,0,2255,'Strellson Premium'),(8636,75,0,2256,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(8637,76,0,2256,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(8638,85,0,2256,'Pumps'),(8639,139,0,2256,'DKNY'),(8640,75,0,2257,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(8641,76,0,2257,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(8642,85,0,2257,'Pumps'),(8643,139,0,2257,'DKNY'),(8644,75,0,2258,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(8645,76,0,2258,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(8646,85,0,2258,'Pumps'),(8647,139,0,2258,'DKNY'),(8648,75,0,2259,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(8649,76,0,2259,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(8650,85,0,2259,'Pumps'),(8651,139,0,2259,'DKNY'),(8652,75,0,2260,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(8653,76,0,2260,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(8654,85,0,2260,'Pumps'),(8655,139,0,2260,'DKNY'),(8656,75,0,2261,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(8657,76,0,2261,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(8658,85,0,2261,'Pumps'),(8659,139,0,2261,'DKNY'),(8660,75,0,2262,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(8661,76,0,2262,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(8662,85,0,2262,'Pumps'),(8663,139,0,2262,'DKNY'),(8664,75,0,2263,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(8665,76,0,2263,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(8666,85,0,2263,'Pumps'),(8667,139,0,2263,'DKNY'),(8668,75,0,2264,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(8669,76,0,2264,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(8670,85,0,2264,'Pumps'),(8671,139,0,2264,'DKNY'),(8672,75,0,2265,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(8673,76,0,2265,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(8674,85,0,2265,'Pumps'),(8675,139,0,2265,'DKNY'),(8676,75,0,2266,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(8677,76,0,2266,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(8678,85,0,2266,'Pumps'),(8679,139,0,2266,'DKNY'),(8680,75,0,2267,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(8681,76,0,2267,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(8682,85,0,2267,'Pumps'),(8683,139,0,2267,'DKNY'),(8684,75,0,2268,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from black suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.\\n\\nLining:\\npolyurethane 100%\\nOuter:\\ncalf suede 100%\\nSole:\\nrubber 100%&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.<br /><br />Lining:<br />polyurethane 100%<br />Outer:<br />calf suede 100%<br />Sole:<br />rubber 100%</span></p>'),(8685,76,0,2268,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Black high-heel ankle boots. Back zip fastening. Platform soles. High block heels.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403841,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:400}\">Red high-heel ankle boots. Platform soles. High block heels.</span></p>'),(8686,85,0,2268,'Pumps'),(8687,139,0,2268,'DKNY'),(8724,75,0,2278,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(8725,76,0,2278,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(8726,85,0,2278,'Rino & Pelle Quilted Jacket'),(8727,139,0,2278,'Rino & Pelle'),(8728,75,0,2279,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(8729,76,0,2279,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(8730,85,0,2279,'Rino & Pelle Quilted Jacket'),(8731,139,0,2279,'Rino & Pelle'),(8732,75,0,2280,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(8733,76,0,2280,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(8734,85,0,2280,'Rino & Pelle Quilted Jacket'),(8735,139,0,2280,'Rino & Pelle'),(8736,75,0,2281,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(8737,76,0,2281,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(8738,85,0,2281,'Rino & Pelle Quilted Jacket'),(8739,139,0,2281,'Rino & Pelle'),(8740,75,0,2282,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(8741,76,0,2282,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(8742,85,0,2282,'Rino & Pelle Quilted Jacket'),(8743,139,0,2282,'Rino & Pelle'),(8744,75,0,2283,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(8745,76,0,2283,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(8746,85,0,2283,'Rino & Pelle Quilted Jacket'),(8747,139,0,2283,'Rino & Pelle'),(8748,75,0,2284,'<p>Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.</p>'),(8749,76,0,2284,'<p>Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.</p>'),(8750,85,0,2284,'Rino & Pelle Quilted Jacket'),(8751,139,0,2284,'Rino & Pelle'),(8752,75,0,2285,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(8753,76,0,2285,'<p>Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip.</p>'),(8754,85,0,2285,'Sequin Dress'),(8755,139,0,2285,'Vera Mont'),(8756,75,0,2286,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(8757,76,0,2286,'<p>Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip.</p>'),(8758,85,0,2286,'Sequin Dress'),(8759,139,0,2286,'Vera Mont'),(8760,75,0,2287,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(8761,76,0,2287,'<p>Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip.</p>'),(8762,85,0,2287,'Sequin Dress'),(8763,139,0,2287,'Vera Mont'),(8764,75,0,2288,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(8765,76,0,2288,'<p>Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip.</p>'),(8766,85,0,2288,'Sequin Dress'),(8767,139,0,2288,'Vera Mont'),(8768,75,0,2289,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(8769,76,0,2289,'<p>Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip.</p>'),(8770,85,0,2289,'Sequin Dress'),(8771,139,0,2289,'Vera Mont'),(8772,75,0,2290,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(8773,76,0,2290,'<p>Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip.</p>'),(8774,85,0,2290,'Sequin Dress'),(8775,139,0,2290,'Vera Mont'),(8776,75,0,2291,'<ul>\r\n<li>Cut: fitted with a slightly tapered skirt</li>\r\n<li>Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)</li>\r\n<li>Neckline: crew neck</li>\r\n<li>Fastening: rear zip</li>\r\n<li>Sleeve: 3/4-length sleeves</li>\r\n<li>Lining: partially lined</li>\r\n<li>Extras: light, translucent quality</li>\r\n<li>Pattern: patterned</li>\r\n<li>Outer material: 100% polyester</li>\r\n<li>Lining material: 100% polyester</li>\r\n<li>Manufacturer\'s care instructions: machine wash</li>\r\n</ul>\r\n<p> </p>\r\n<ul>\r\n<li>Our model wears a EU 36 and is 179cm/5′10″ tall.</li>\r\n</ul>'),(8777,76,0,2291,'<p>Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip.</p>'),(8778,85,0,2291,'Sequin Dress'),(8779,139,0,2291,'Vera Mont'),(8780,85,0,2292,'Seventy Transitional Jacket'),(8781,139,0,2292,'Seventy'),(8782,85,0,2293,'Seventy Transitional Jacket'),(8783,139,0,2293,'Seventy'),(8784,85,0,2294,'Seventy Transitional Jacket'),(8785,139,0,2294,'Seventy'),(8786,85,0,2295,'Seventy Transitional Jacket'),(8787,139,0,2295,'Seventy'),(8788,85,0,2296,'Seventy Transitional Jacket'),(8789,139,0,2296,'Seventy'),(8790,85,0,2297,'Seventy Transitional Jacket'),(8791,139,0,2297,'Seventy'),(8792,85,0,2298,'Seventy Transitional Jacket'),(8793,139,0,2298,'Seventy'),(8794,85,0,2299,'Seventy Transitional Jacket'),(8795,139,0,2299,'Seventy'),(8796,85,0,2300,'Seventy Transitional Jacket'),(8797,139,0,2300,'Seventy'),(8798,85,0,2301,'Slim Fit Jeans'),(8799,139,0,2301,'Bench'),(8800,85,0,2302,'Slim Fit Jeans'),(8801,139,0,2302,'Bench'),(8802,85,0,2303,'Slim Fit Jeans'),(8803,139,0,2303,'Bench'),(8804,85,0,2304,'Slim Fit Jeans'),(8805,139,0,2304,'Bench'),(8806,85,0,2305,'Slim Fit Jeans'),(8807,139,0,2305,'Bench'),(8808,85,0,2306,'Slim Fit Jeans'),(8809,139,0,2306,'Bench'),(8810,85,0,2307,'Slim Fit Jeans'),(8811,139,0,2307,'Bench'),(8812,85,0,2308,'Slim Fit Jeans'),(8813,139,0,2308,'Bench'),(8814,85,0,2309,'Slim Fit Jeans'),(8815,139,0,2309,'Bench'),(8816,75,0,2310,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(8817,76,0,2310,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(8818,85,0,2310,'Slim Fit Jeans – Eline'),(8819,139,0,2310,'Eksept'),(8820,75,0,2311,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(8821,76,0,2311,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(8822,85,0,2311,'Slim Fit Jeans – Eline'),(8823,139,0,2311,'Eksept'),(8824,75,0,2312,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(8825,76,0,2312,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(8826,85,0,2312,'Slim Fit Jeans – Eline'),(8827,139,0,2312,'Eksept'),(8828,75,0,2313,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(8829,76,0,2313,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(8830,85,0,2313,'Slim Fit Jeans – Eline'),(8831,139,0,2313,'Eksept'),(8832,75,0,2314,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(8833,76,0,2314,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(8834,85,0,2314,'Slim Fit Jeans – Eline'),(8835,139,0,2314,'Eksept'),(8836,75,0,2315,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(8837,76,0,2315,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(8838,85,0,2315,'Slim Fit Jeans – Eline'),(8839,139,0,2315,'Eksept'),(8840,75,0,2316,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(8841,76,0,2316,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(8842,85,0,2316,'Slim Fit Jeans – Eline'),(8843,139,0,2316,'Eksept'),(8844,75,0,2317,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(8845,76,0,2317,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(8846,85,0,2317,'Slim Fit Jeans – Eline'),(8847,139,0,2317,'Eksept'),(8848,75,0,2318,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(8849,76,0,2318,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(8850,85,0,2318,'Slim Fit Jeans – Eline'),(8851,139,0,2318,'Eksept'),(8852,75,0,2319,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(8853,76,0,2319,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(8854,85,0,2319,'Slim Fit Jeans – Eline'),(8855,139,0,2319,'Eksept'),(8856,75,0,2320,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. \\nManufacturers product information: mid-rise, skinny leg\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, faded colouring, roughened spots, lined where broken\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. <br />Manufacturers product information: mid-rise, skinny leg<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Extras: elastic, faded colouring, roughened spots, lined where broken<br />Material: 98% cotton, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br /></span></p>'),(8857,76,0,2320,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:905,&quot;3&quot;:{&quot;1&quot;:0},&quot;6&quot;:{&quot;1&quot;:[{&quot;1&quot;:2,&quot;2&quot;:0,&quot;5&quot;:[null,2,0]},{&quot;1&quot;:0,&quot;2&quot;:0,&quot;3&quot;:3},{&quot;1&quot;:1,&quot;2&quot;:0,&quot;4&quot;:1}]},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.</span></p>'),(8858,85,0,2320,'Slim Fit Jeans – Eline'),(8859,139,0,2320,'Eksept'),(8896,75,0,2330,'<p class=\"pdp-description__text__short\">JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets, and an inside pocket. Fastens in the front with snap buttons.<br /><br />The model is wearing size L and is 187 tall</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s) with button</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>'),(8897,76,0,2330,'<p>Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket.</p>'),(8898,85,0,2330,'Jack & Jones Transitional Jacket'),(8899,139,0,2330,'Jack & Jones'),(8900,75,0,2331,'<p class=\"pdp-description__text__short\">JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets, and an inside pocket. Fastens in the front with snap buttons.<br /><br />The model is wearing size L and is 187 tall</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s) with button</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>'),(8901,76,0,2331,'<p>Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket.</p>'),(8902,85,0,2331,'Jack & Jones Transitional Jacket'),(8903,139,0,2331,'Jack & Jones'),(8904,75,0,2332,'<p class=\"pdp-description__text__short\">JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets, and an inside pocket. Fastens in the front with snap buttons.<br /><br />The model is wearing size L and is 187 tall</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s) with button</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>'),(8905,76,0,2332,'<p>Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket.</p>'),(8906,85,0,2332,'Jack & Jones Transitional Jacket'),(8907,139,0,2332,'Jack & Jones'),(8908,75,0,2333,'<p class=\"pdp-description__text__short\">JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets, and an inside pocket. Fastens in the front with snap buttons.<br /><br />The model is wearing size L and is 187 tall</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s) with button</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>'),(8909,76,0,2333,'<p>Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket.</p>'),(8910,85,0,2333,'Jack & Jones Transitional Jacket'),(8911,139,0,2333,'Jack & Jones'),(8912,75,0,2334,'<p class=\"pdp-description__text__short\">JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets, and an inside pocket. Fastens in the front with snap buttons.<br /><br />The model is wearing size L and is 187 tall</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s) with button</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>'),(8913,76,0,2334,'<p>Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket.</p>'),(8914,85,0,2334,'Jack & Jones Transitional Jacket'),(8915,139,0,2334,'Jack & Jones'),(8916,75,0,2335,'<p class=\"pdp-description__text__short\">JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets, and an inside pocket. Fastens in the front with snap buttons.<br /><br />The model is wearing size L and is 187 tall</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s) with button</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>'),(8917,76,0,2335,'<p>Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket.</p>'),(8918,85,0,2335,'Jack & Jones Transitional Jacket'),(8919,139,0,2335,'Jack & Jones'),(8920,75,0,2336,'<p class=\"pdp-description__text__short\">JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets, and an inside pocket. Fastens in the front with snap buttons.<br /><br />The model is wearing size L and is 187 tall</p>\r\n<p><strong>Cut:</strong> straight</p>\r\n<p><strong>Measurements for size EU M:</strong> garment length 74 cm (29″)</p>\r\n<p><strong>Collar:</strong> hood with drawstring</p>\r\n<p><strong>Fastening:</strong> full length zip fastener</p>\r\n<p><strong>Sleeve:</strong> single-button cuffs</p>\r\n<p><strong>Exterior pockets:</strong> welt pocket(s) with button</p>\r\n<p><strong>Lining:</strong> lined</p>\r\n<p><strong>Outer material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>'),(8921,76,0,2336,'<p>Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket.</p>'),(8922,85,0,2336,'Jack & Jones Transitional Jacket'),(8923,139,0,2336,'Jack & Jones'),(8924,75,0,2337,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s bomber jacket has rubberized Tommy Hilfiger logo flag patch on chest. This Tommy Hilfiger jacket is a sporty take on the classic bomber. By Tommy jeans men.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU L:</strong> garment length 75 cm (29.5″)</p>\r\n<p><strong>Collar:</strong> stand-up collar, hood with drawstring</p>\r\n<p><strong>Fastening:</strong> short zip</p>\r\n<p><strong>Sleeve:</strong> raglan sleeves</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s) with press stud closure</p>\r\n<p><strong>Extras:</strong> logo patch, embroidered logo(s), internal soft fleece cover</p>\r\n<p><strong>Material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU L and is 185cm/6′0″ tall.</p>'),(8925,76,0,2337,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at zipper and interior collar. Puffer jacket with down filling. Fastening with front zip and snap buttons.</p>'),(8926,85,0,2337,'Hilfiger Denim Transitional Jacket'),(8927,139,0,2337,'Hilfiger Denim'),(8928,75,0,2338,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s bomber jacket has rubberized Tommy Hilfiger logo flag patch on chest. This Tommy Hilfiger jacket is a sporty take on the classic bomber. By Tommy jeans men.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU L:</strong> garment length 75 cm (29.5″)</p>\r\n<p><strong>Collar:</strong> stand-up collar, hood with drawstring</p>\r\n<p><strong>Fastening:</strong> short zip</p>\r\n<p><strong>Sleeve:</strong> raglan sleeves</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s) with press stud closure</p>\r\n<p><strong>Extras:</strong> logo patch, embroidered logo(s), internal soft fleece cover</p>\r\n<p><strong>Material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU L and is 185cm/6′0″ tall.</p>'),(8929,76,0,2338,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at zipper and interior collar. Puffer jacket with down filling. Fastening with front zip and snap buttons.</p>'),(8930,85,0,2338,'Hilfiger Denim Transitional Jacket'),(8931,139,0,2338,'Hilfiger Denim'),(8932,75,0,2339,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s bomber jacket has rubberized Tommy Hilfiger logo flag patch on chest. This Tommy Hilfiger jacket is a sporty take on the classic bomber. By Tommy jeans men.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU L:</strong> garment length 75 cm (29.5″)</p>\r\n<p><strong>Collar:</strong> stand-up collar, hood with drawstring</p>\r\n<p><strong>Fastening:</strong> short zip</p>\r\n<p><strong>Sleeve:</strong> raglan sleeves</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s) with press stud closure</p>\r\n<p><strong>Extras:</strong> logo patch, embroidered logo(s), internal soft fleece cover</p>\r\n<p><strong>Material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU L and is 185cm/6′0″ tall.</p>'),(8933,76,0,2339,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at zipper and interior collar. Puffer jacket with down filling. Fastening with front zip and snap buttons.</p>'),(8934,85,0,2339,'Hilfiger Denim Transitional Jacket'),(8935,139,0,2339,'Hilfiger Denim'),(8936,75,0,2340,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s bomber jacket has rubberized Tommy Hilfiger logo flag patch on chest. This Tommy Hilfiger jacket is a sporty take on the classic bomber. By Tommy jeans men.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU L:</strong> garment length 75 cm (29.5″)</p>\r\n<p><strong>Collar:</strong> stand-up collar, hood with drawstring</p>\r\n<p><strong>Fastening:</strong> short zip</p>\r\n<p><strong>Sleeve:</strong> raglan sleeves</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s) with press stud closure</p>\r\n<p><strong>Extras:</strong> logo patch, embroidered logo(s), internal soft fleece cover</p>\r\n<p><strong>Material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU L and is 185cm/6′0″ tall.</p>'),(8937,76,0,2340,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at zipper and interior collar. Puffer jacket with down filling. Fastening with front zip and snap buttons.</p>'),(8938,85,0,2340,'Hilfiger Denim Transitional Jacket'),(8939,139,0,2340,'Hilfiger Denim'),(8940,75,0,2341,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s bomber jacket has rubberized Tommy Hilfiger logo flag patch on chest. This Tommy Hilfiger jacket is a sporty take on the classic bomber. By Tommy jeans men.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU L:</strong> garment length 75 cm (29.5″)</p>\r\n<p><strong>Collar:</strong> stand-up collar, hood with drawstring</p>\r\n<p><strong>Fastening:</strong> short zip</p>\r\n<p><strong>Sleeve:</strong> raglan sleeves</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s) with press stud closure</p>\r\n<p><strong>Extras:</strong> logo patch, embroidered logo(s), internal soft fleece cover</p>\r\n<p><strong>Material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU L and is 185cm/6′0″ tall.</p>'),(8941,76,0,2341,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at zipper and interior collar. Puffer jacket with down filling. Fastening with front zip and snap buttons.</p>'),(8942,85,0,2341,'Hilfiger Denim Transitional Jacket'),(8943,139,0,2341,'Hilfiger Denim'),(8944,75,0,2342,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s bomber jacket has rubberized Tommy Hilfiger logo flag patch on chest. This Tommy Hilfiger jacket is a sporty take on the classic bomber. By Tommy jeans men.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU L:</strong> garment length 75 cm (29.5″)</p>\r\n<p><strong>Collar:</strong> stand-up collar, hood with drawstring</p>\r\n<p><strong>Fastening:</strong> short zip</p>\r\n<p><strong>Sleeve:</strong> raglan sleeves</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s) with press stud closure</p>\r\n<p><strong>Extras:</strong> logo patch, embroidered logo(s), internal soft fleece cover</p>\r\n<p><strong>Material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU L and is 185cm/6′0″ tall.</p>'),(8945,76,0,2342,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at zipper and interior collar. Puffer jacket with down filling. Fastening with front zip and snap buttons.</p>'),(8946,85,0,2342,'Hilfiger Denim Transitional Jacket'),(8947,139,0,2342,'Hilfiger Denim'),(8948,75,0,2343,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s bomber jacket has rubberized Tommy Hilfiger logo flag patch on chest. This Tommy Hilfiger jacket is a sporty take on the classic bomber. By Tommy jeans men.</p>\r\n<p><strong>Cut:</strong> lightly fitted</p>\r\n<p><strong>Measurements for size EU L:</strong> garment length 75 cm (29.5″)</p>\r\n<p><strong>Collar:</strong> stand-up collar, hood with drawstring</p>\r\n<p><strong>Fastening:</strong> short zip</p>\r\n<p><strong>Sleeve:</strong> raglan sleeves</p>\r\n<p><strong>Exterior pockets:</strong> flap pocket(s) with press stud closure</p>\r\n<p><strong>Extras:</strong> logo patch, embroidered logo(s), internal soft fleece cover</p>\r\n<p><strong>Material:</strong> 100% polyamide</p>\r\n<p><strong>Manufacturer\'s care instructions:</strong> machine wash</p>\r\n<p>Our model wears an EU L and is 185cm/6′0″ tall.</p>'),(8949,76,0,2343,'<p>Tommy Hilfiger bomber jacket for men featuring stripe details at zipper and interior collar. Puffer jacket with down filling. Fastening with front zip and snap buttons.</p>'),(8950,85,0,2343,'Hilfiger Denim Transitional Jacket'),(8951,139,0,2343,'Hilfiger Denim'),(8952,75,0,2344,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Concealed front hook, button and zip closure\\nDetachable leather strap\\nTwo side pockets\\nUnlined\\nSample size: 42\\nJersey fabric: 100% virgin wool; With details in cattle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Concealed front hook, button and zip closure<br />Detachable leather strap<br />Two side pockets<br />Unlined<br />Sample size: 42<br />Jersey fabric: 100% virgin wool; With details in cattle.</span></p>'),(8953,76,0,2344,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. </span></p>'),(8954,85,0,2344,'Wool jersey trousers'),(8955,139,0,2344,'Max Mara'),(8956,75,0,2345,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Concealed front hook, button and zip closure\\nDetachable leather strap\\nTwo side pockets\\nUnlined\\nSample size: 42\\nJersey fabric: 100% virgin wool; With details in cattle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Concealed front hook, button and zip closure<br />Detachable leather strap<br />Two side pockets<br />Unlined<br />Sample size: 42<br />Jersey fabric: 100% virgin wool; With details in cattle.</span></p>'),(8957,76,0,2345,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. </span></p>'),(8958,85,0,2345,'Wool jersey trousers'),(8959,139,0,2345,'Max Mara'),(8960,75,0,2346,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Concealed front hook, button and zip closure\\nDetachable leather strap\\nTwo side pockets\\nUnlined\\nSample size: 42\\nJersey fabric: 100% virgin wool; With details in cattle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Concealed front hook, button and zip closure<br />Detachable leather strap<br />Two side pockets<br />Unlined<br />Sample size: 42<br />Jersey fabric: 100% virgin wool; With details in cattle.</span></p>'),(8961,76,0,2346,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. </span></p>'),(8962,85,0,2346,'Wool jersey trousers'),(8963,139,0,2346,'Max Mara'),(8964,75,0,2347,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Concealed front hook, button and zip closure\\nDetachable leather strap\\nTwo side pockets\\nUnlined\\nSample size: 42\\nJersey fabric: 100% virgin wool; With details in cattle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Concealed front hook, button and zip closure<br />Detachable leather strap<br />Two side pockets<br />Unlined<br />Sample size: 42<br />Jersey fabric: 100% virgin wool; With details in cattle.</span></p>'),(8965,76,0,2347,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. </span></p>'),(8966,85,0,2347,'Wool jersey trousers'),(8967,139,0,2347,'Max Mara'),(8968,75,0,2348,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Concealed front hook, button and zip closure\\nDetachable leather strap\\nTwo side pockets\\nUnlined\\nSample size: 42\\nJersey fabric: 100% virgin wool; With details in cattle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Concealed front hook, button and zip closure<br />Detachable leather strap<br />Two side pockets<br />Unlined<br />Sample size: 42<br />Jersey fabric: 100% virgin wool; With details in cattle.</span></p>'),(8969,76,0,2348,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. </span></p>'),(8970,85,0,2348,'Wool jersey trousers'),(8971,139,0,2348,'Max Mara'),(8972,75,0,2349,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Concealed front hook, button and zip closure\\nDetachable leather strap\\nTwo side pockets\\nUnlined\\nSample size: 42\\nJersey fabric: 100% virgin wool; With details in cattle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Concealed front hook, button and zip closure<br />Detachable leather strap<br />Two side pockets<br />Unlined<br />Sample size: 42<br />Jersey fabric: 100% virgin wool; With details in cattle.</span></p>'),(8973,76,0,2349,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. </span></p>'),(8974,85,0,2349,'Wool jersey trousers'),(8975,139,0,2349,'Max Mara'),(8976,75,0,2350,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Concealed front hook, button and zip closure\\nDetachable leather strap\\nTwo side pockets\\nUnlined\\nSample size: 42\\nJersey fabric: 100% virgin wool; With details in cattle.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">Concealed front hook, button and zip closure<br />Detachable leather strap<br />Two side pockets<br />Unlined<br />Sample size: 42<br />Jersey fabric: 100% virgin wool; With details in cattle.</span></p>'),(8977,76,0,2350,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. </span></p>'),(8978,85,0,2350,'Wool jersey trousers'),(8979,139,0,2350,'Max Mara'),(8980,75,0,2351,'<p>Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8981,76,0,2351,'<p>Short flowing round-neck dress with short sleeves.</p>'),(8982,85,0,2351,'Weise Midi Dress'),(8983,139,0,2351,'Weise'),(8984,75,0,2352,'<p>Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8985,76,0,2352,'<p>Short flowing round-neck dress with short sleeves.</p>'),(8986,85,0,2352,'Weise Midi Dress'),(8987,139,0,2352,'Weise'),(8988,75,0,2353,'<p>Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8989,76,0,2353,'<p>Short flowing round-neck dress with short sleeves.</p>'),(8990,85,0,2353,'Weise Midi Dress'),(8991,139,0,2353,'Weise'),(8992,75,0,2354,'<p>Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8993,76,0,2354,'<p>Short flowing round-neck dress with short sleeves.</p>'),(8994,85,0,2354,'Weise Midi Dress'),(8995,139,0,2354,'Weise'),(8996,75,0,2355,'<p>Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(8997,76,0,2355,'<p>Short flowing round-neck dress with short sleeves.</p>'),(8998,85,0,2355,'Weise Midi Dress'),(8999,139,0,2355,'Weise'),(9000,75,0,2356,'<p>Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9001,76,0,2356,'<p>Short flowing round-neck dress with short sleeves.</p>'),(9002,85,0,2356,'Weise Midi Dress'),(9003,139,0,2356,'Weise'),(9004,75,0,2357,'<p>Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9005,76,0,2357,'<p>Short flowing round-neck dress with short sleeves.</p>'),(9006,85,0,2357,'Weise Midi Dress'),(9007,139,0,2357,'Weise'),(9008,75,0,2358,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9009,76,0,2358,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(9010,85,0,2358,'Calvin Klein Jeans Down Jacket'),(9011,139,0,2358,'Calvin Klein Jeans'),(9012,75,0,2359,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9013,76,0,2359,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(9014,85,0,2359,'Calvin Klein Jeans Down Jacket'),(9015,139,0,2359,'Calvin Klein Jeans'),(9016,75,0,2360,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9017,76,0,2360,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(9018,85,0,2360,'Calvin Klein Jeans Down Jacket'),(9019,139,0,2360,'Calvin Klein Jeans'),(9020,75,0,2361,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9021,76,0,2361,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(9022,85,0,2361,'Calvin Klein Jeans Down Jacket'),(9023,139,0,2361,'Calvin Klein Jeans'),(9024,75,0,2362,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9025,76,0,2362,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(9026,85,0,2362,'Calvin Klein Jeans Down Jacket'),(9027,139,0,2362,'Calvin Klein Jeans'),(9028,75,0,2363,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9029,76,0,2363,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(9030,85,0,2363,'Calvin Klein Jeans Down Jacket'),(9031,139,0,2363,'Calvin Klein Jeans'),(9032,75,0,2364,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9033,76,0,2364,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(9034,85,0,2364,'Calvin Klein Jeans Down Jacket'),(9035,139,0,2364,'Calvin Klein Jeans'),(9036,75,0,2365,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9037,76,0,2365,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(9038,85,0,2365,'Calvin Klein Jeans Down Jacket'),(9039,139,0,2365,'Calvin Klein Jeans'),(9040,75,0,2366,'<p>Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9041,76,0,2366,'<p>Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.</p>'),(9042,85,0,2366,'Calvin Klein Jeans Down Jacket'),(9043,139,0,2366,'Calvin Klein Jeans'),(9044,75,0,2367,'<p>Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9045,76,0,2367,'<p>Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail.</p>'),(9046,85,0,2367,'UNQ Linen Dress'),(9047,139,0,2367,'UNQ'),(9048,75,0,2368,'<p>Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9049,76,0,2368,'<p>Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail.</p>'),(9050,85,0,2368,'UNQ Linen Dress'),(9051,139,0,2368,'UNQ'),(9052,75,0,2369,'<p>Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9053,76,0,2369,'<p>Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail.</p>'),(9054,85,0,2369,'UNQ Linen Dress'),(9055,139,0,2369,'UNQ'),(9056,75,0,2370,'<p>Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9057,76,0,2370,'<p>Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail.</p>'),(9058,85,0,2370,'UNQ Linen Dress'),(9059,139,0,2370,'UNQ'),(9060,75,0,2371,'<p>Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9061,76,0,2371,'<p>Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail.</p>'),(9062,85,0,2371,'UNQ Linen Dress'),(9063,139,0,2371,'UNQ'),(9064,75,0,2372,'<p>Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9065,76,0,2372,'<p>Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail.</p>'),(9066,85,0,2372,'UNQ Linen Dress'),(9067,139,0,2372,'UNQ'),(9068,75,0,2373,'<p>Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9069,76,0,2373,'<p>Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail.</p>'),(9070,85,0,2373,'UNQ Linen Dress'),(9071,139,0,2373,'UNQ'),(9072,75,0,2374,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9073,76,0,2374,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9074,85,0,2374,'Dark Grey Chino'),(9075,139,0,2374,'Lawrence Grey'),(9076,75,0,2375,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9077,76,0,2375,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9078,85,0,2375,'Dark Grey Chino'),(9079,139,0,2375,'Lawrence Grey'),(9080,75,0,2376,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9081,76,0,2376,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9082,85,0,2376,'Dark Grey Chino'),(9083,139,0,2376,'Lawrence Grey'),(9084,75,0,2377,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9085,76,0,2377,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9086,85,0,2377,'Dark Grey Chino'),(9087,139,0,2377,'Lawrence Grey'),(9088,75,0,2378,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9089,76,0,2378,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9090,85,0,2378,'Dark Grey Chino'),(9091,139,0,2378,'Lawrence Grey'),(9092,75,0,2379,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9093,76,0,2379,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9094,85,0,2379,'Dark Grey Chino'),(9095,139,0,2379,'Lawrence Grey'),(9096,75,0,2380,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9097,76,0,2380,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9098,85,0,2380,'Dark Grey Chino'),(9099,139,0,2380,'Lawrence Grey'),(9100,75,0,2381,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9101,76,0,2381,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9102,85,0,2381,'Dark Grey Chino'),(9103,139,0,2381,'Lawrence Grey'),(9104,75,0,2382,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9105,76,0,2382,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9106,85,0,2382,'Dark Grey Chino'),(9107,139,0,2382,'Lawrence Grey'),(9108,75,0,2383,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9109,76,0,2383,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9110,85,0,2383,'Dark Grey Chino'),(9111,139,0,2383,'Lawrence Grey'),(9112,75,0,2384,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9113,76,0,2384,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9114,85,0,2384,'Dark Grey Chino'),(9115,139,0,2384,'Lawrence Grey'),(9116,75,0,2385,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9117,76,0,2385,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9118,85,0,2385,'Dark Grey Chino'),(9119,139,0,2385,'Lawrence Grey'),(9120,75,0,2386,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9121,76,0,2386,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9122,85,0,2386,'Dark Grey Chino'),(9123,139,0,2386,'Lawrence Grey'),(9124,75,0,2387,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9125,76,0,2387,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9126,85,0,2387,'Dark Grey Chino'),(9127,139,0,2387,'Lawrence Grey'),(9128,75,0,2388,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9129,76,0,2388,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9130,85,0,2388,'Dark Grey Chino'),(9131,139,0,2388,'Lawrence Grey'),(9132,75,0,2389,'<p>From our men\'s range by <span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Lawrence Grey </span>, these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, rear buttoned piped pocket(s)\\nExtras: creases\\nPattern: solid-coloured\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU 50 and is 185cm/6′0″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:13185,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0,&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10}\"><strong>Cut:</strong> slightly tapered leg<br /><strong>Measurements for size EU 50:</strong> waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> slit pocket/s, rear buttoned piped pocket(s)<br /><strong>Extras:</strong> creases<br /><strong>Pattern:</strong> solid-coloured<br /><strong>Material:</strong> 98% cotton, 2% elastane<br /><strong>Manufacturer\'s care instructions:</strong> machine wash<br />Our model wears an EU 50 and is 185cm/6′0″ tall.</span></p>'),(9133,76,0,2389,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Dark Grey Chino by Lawrence Grey&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403587,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;Arial&quot;,&quot;16&quot;:10,&quot;26&quot;:300}\">Dark Grey Chino by Lawrence Grey</span></p>'),(9134,85,0,2389,'Dark Grey Chino'),(9135,139,0,2389,'Lawrence Grey'),(9136,75,0,2390,'<p>Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9137,76,0,2390,'<p>Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt.</p>'),(9138,85,0,2390,'United Colors of Benetton Knit Dress'),(9139,139,0,2390,'United Colors of Benetton'),(9140,75,0,2391,'<p>Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9141,76,0,2391,'<p>Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt.</p>'),(9142,85,0,2391,'United Colors of Benetton Knit Dress'),(9143,139,0,2391,'United Colors of Benetton'),(9144,75,0,2392,'<p>Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9145,76,0,2392,'<p>Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt.</p>'),(9146,85,0,2392,'United Colors of Benetton Knit Dress'),(9147,139,0,2392,'United Colors of Benetton'),(9148,75,0,2393,'<p>Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9149,76,0,2393,'<p>Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt.</p>'),(9150,85,0,2393,'United Colors of Benetton Knit Dress'),(9151,139,0,2393,'United Colors of Benetton'),(9152,75,0,2394,'<p>Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9153,76,0,2394,'<p>Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt.</p>'),(9154,85,0,2394,'United Colors of Benetton Knit Dress'),(9155,139,0,2394,'United Colors of Benetton'),(9156,75,0,2395,'<p>Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9157,76,0,2395,'<p>Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt.</p>'),(9158,85,0,2395,'United Colors of Benetton Knit Dress'),(9159,139,0,2395,'United Colors of Benetton'),(9160,75,0,2396,'<p>Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall.</p>'),(9161,76,0,2396,'<p>Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt.</p>'),(9162,85,0,2396,'United Colors of Benetton Knit Dress'),(9163,139,0,2396,'United Colors of Benetton'),(9164,75,0,2397,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.\\n\\nManufacturers product information: medium body height\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: front mock pocket(s), back patch pocket(s)\\nExtras: stretch quality, open/frayed hem\\nMaterial: 85% cotton, 11% polyester, 4% elastane\\nManufacturer\'s care instructions: machine wash\\nPlease note: Här handlar det om en 2. val artikel.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.<br /><br />Manufacturers product information: medium body height<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: front mock pocket(s), back patch pocket(s)<br />Extras: stretch quality, open/frayed hem<br />Material: 85% cotton, 11% polyester, 4% elastane<br />Manufacturer\'s care instructions: machine wash<br />Please note: Här handlar det om en 2. val artikel.</span></p>'),(9165,76,0,2397,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.</span></p>'),(9166,85,0,2397,'The Skinny Crop'),(9167,139,0,2397,'7 for all Mankind'),(9168,75,0,2398,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.\\n\\nManufacturers product information: medium body height\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: front mock pocket(s), back patch pocket(s)\\nExtras: stretch quality, open/frayed hem\\nMaterial: 85% cotton, 11% polyester, 4% elastane\\nManufacturer\'s care instructions: machine wash\\nPlease note: Här handlar det om en 2. val artikel.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.<br /><br />Manufacturers product information: medium body height<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: front mock pocket(s), back patch pocket(s)<br />Extras: stretch quality, open/frayed hem<br />Material: 85% cotton, 11% polyester, 4% elastane<br />Manufacturer\'s care instructions: machine wash<br />Please note: Här handlar det om en 2. val artikel.</span></p>'),(9169,76,0,2398,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.</span></p>'),(9170,85,0,2398,'The Skinny Crop'),(9171,139,0,2398,'7 for all Mankind'),(9172,75,0,2399,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.\\n\\nManufacturers product information: medium body height\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: front mock pocket(s), back patch pocket(s)\\nExtras: stretch quality, open/frayed hem\\nMaterial: 85% cotton, 11% polyester, 4% elastane\\nManufacturer\'s care instructions: machine wash\\nPlease note: Här handlar det om en 2. val artikel.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.<br /><br />Manufacturers product information: medium body height<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: front mock pocket(s), back patch pocket(s)<br />Extras: stretch quality, open/frayed hem<br />Material: 85% cotton, 11% polyester, 4% elastane<br />Manufacturer\'s care instructions: machine wash<br />Please note: Här handlar det om en 2. val artikel.</span></p>'),(9173,76,0,2399,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.</span></p>'),(9174,85,0,2399,'The Skinny Crop'),(9175,139,0,2399,'7 for all Mankind'),(9176,75,0,2400,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.\\n\\nManufacturers product information: medium body height\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: front mock pocket(s), back patch pocket(s)\\nExtras: stretch quality, open/frayed hem\\nMaterial: 85% cotton, 11% polyester, 4% elastane\\nManufacturer\'s care instructions: machine wash\\nPlease note: Här handlar det om en 2. val artikel.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.<br /><br />Manufacturers product information: medium body height<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: front mock pocket(s), back patch pocket(s)<br />Extras: stretch quality, open/frayed hem<br />Material: 85% cotton, 11% polyester, 4% elastane<br />Manufacturer\'s care instructions: machine wash<br />Please note: Här handlar det om en 2. val artikel.</span></p>'),(9177,76,0,2400,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.</span></p>'),(9178,85,0,2400,'The Skinny Crop'),(9179,139,0,2400,'7 for all Mankind'),(9180,75,0,2401,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.\\n\\nManufacturers product information: medium body height\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: front mock pocket(s), back patch pocket(s)\\nExtras: stretch quality, open/frayed hem\\nMaterial: 85% cotton, 11% polyester, 4% elastane\\nManufacturer\'s care instructions: machine wash\\nPlease note: Här handlar det om en 2. val artikel.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.<br /><br />Manufacturers product information: medium body height<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: front mock pocket(s), back patch pocket(s)<br />Extras: stretch quality, open/frayed hem<br />Material: 85% cotton, 11% polyester, 4% elastane<br />Manufacturer\'s care instructions: machine wash<br />Please note: Här handlar det om en 2. val artikel.</span></p>'),(9181,76,0,2401,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.</span></p>'),(9182,85,0,2401,'The Skinny Crop'),(9183,139,0,2401,'7 for all Mankind'),(9184,75,0,2402,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.\\n\\nManufacturers product information: medium body height\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: front mock pocket(s), back patch pocket(s)\\nExtras: stretch quality, open/frayed hem\\nMaterial: 85% cotton, 11% polyester, 4% elastane\\nManufacturer\'s care instructions: machine wash\\nPlease note: Här handlar det om en 2. val artikel.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.<br /><br />Manufacturers product information: medium body height<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: front mock pocket(s), back patch pocket(s)<br />Extras: stretch quality, open/frayed hem<br />Material: 85% cotton, 11% polyester, 4% elastane<br />Manufacturer\'s care instructions: machine wash<br />Please note: Här handlar det om en 2. val artikel.</span></p>'),(9185,76,0,2402,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.</span></p>'),(9186,85,0,2402,'The Skinny Crop'),(9187,139,0,2402,'7 for all Mankind'),(9188,75,0,2403,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.\\n\\nManufacturers product information: medium body height\\nCut: slim, tapered leg\\nMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: front mock pocket(s), back patch pocket(s)\\nExtras: stretch quality, open/frayed hem\\nMaterial: 85% cotton, 11% polyester, 4% elastane\\nManufacturer\'s care instructions: machine wash\\nPlease note: Här handlar det om en 2. val artikel.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.<br /><br />Manufacturers product information: medium body height<br />Cut: slim, tapered leg<br />Measurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: front mock pocket(s), back patch pocket(s)<br />Extras: stretch quality, open/frayed hem<br />Material: 85% cotton, 11% polyester, 4% elastane<br />Manufacturer\'s care instructions: machine wash<br />Please note: Här handlar det om en 2. val artikel.</span></p>'),(9189,76,0,2403,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.</span></p>'),(9190,85,0,2403,'The Skinny Crop'),(9191,139,0,2403,'7 for all Mankind'),(9192,75,0,2404,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(9193,76,0,2404,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(9194,85,0,2404,'Sweat Pants'),(9195,139,0,2404,'Cotton Candy'),(9196,75,0,2405,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(9197,76,0,2405,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(9198,85,0,2405,'Sweat Pants'),(9199,139,0,2405,'Cotton Candy'),(9200,75,0,2406,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(9201,76,0,2406,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(9202,85,0,2406,'Sweat Pants'),(9203,139,0,2406,'Cotton Candy'),(9204,75,0,2407,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(9205,76,0,2407,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(9206,85,0,2407,'Sweat Pants'),(9207,139,0,2407,'Cotton Candy'),(9208,75,0,2408,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(9209,76,0,2408,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(9210,85,0,2408,'Sweat Pants'),(9211,139,0,2408,'Cotton Candy'),(9212,75,0,2409,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(9213,76,0,2409,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(9214,85,0,2409,'Sweat Pants'),(9215,139,0,2409,'Cotton Candy'),(9216,75,0,2410,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.\\n\\nThanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton \\nfinish gives the trousers a cool summer feel. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:3,&quot;12&quot;:0}\">This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.<br /><br />Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton <br />finish gives the trousers a cool summer feel. </span></p>'),(9217,76,0,2410,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.</span></p>'),(9218,85,0,2410,'Sweat Pants'),(9219,139,0,2410,'Cotton Candy'),(9220,75,0,2411,'<p>Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9221,76,0,2411,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(9222,85,0,2411,'81 Hours Cashmere Pullover'),(9223,139,0,2411,'81 Hours'),(9224,75,0,2412,'<p>Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9225,76,0,2412,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(9226,85,0,2412,'81 Hours Cashmere Pullover'),(9227,139,0,2412,'81 Hours'),(9228,75,0,2413,'<p>Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9229,76,0,2413,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(9230,85,0,2413,'81 Hours Cashmere Pullover'),(9231,139,0,2413,'81 Hours'),(9232,75,0,2414,'<p>Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9233,76,0,2414,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(9234,85,0,2414,'81 Hours Cashmere Pullover'),(9235,139,0,2414,'81 Hours'),(9236,75,0,2415,'<p>Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9237,76,0,2415,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(9238,85,0,2415,'81 Hours Cashmere Pullover'),(9239,139,0,2415,'81 Hours'),(9240,75,0,2416,'<p>Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9241,76,0,2416,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(9242,85,0,2416,'81 Hours Cashmere Pullover'),(9243,139,0,2416,'81 Hours'),(9244,75,0,2417,'<p>Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9245,76,0,2417,'<p>Long sleeve knit sweater with a round neckline and ribbed trims.</p>'),(9246,85,0,2417,'81 Hours Cashmere Pullover'),(9247,139,0,2417,'81 Hours'),(9248,75,0,2418,'<p>Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9249,76,0,2418,'<p>Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front.</p>'),(9250,85,0,2418,'Swan Transitional Jacket'),(9251,139,0,2418,'Black Swan'),(9252,75,0,2419,'<p>Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9253,76,0,2419,'<p>Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front.</p>'),(9254,85,0,2419,'Swan Transitional Jacket'),(9255,139,0,2419,'Black Swan'),(9256,75,0,2420,'<p>Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9257,76,0,2420,'<p>Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front.</p>'),(9258,85,0,2420,'Swan Transitional Jacket'),(9259,139,0,2420,'Black Swan'),(9260,75,0,2421,'<p>Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9261,76,0,2421,'<p>Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front.</p>'),(9262,85,0,2421,'Swan Transitional Jacket'),(9263,139,0,2421,'Black Swan'),(9264,75,0,2422,'<p>Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9265,76,0,2422,'<p>Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front.</p>'),(9266,85,0,2422,'Swan Transitional Jacket'),(9267,139,0,2422,'Black Swan'),(9268,75,0,2423,'<p>Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9269,76,0,2423,'<p>Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front.</p>'),(9270,85,0,2423,'Swan Transitional Jacket'),(9271,139,0,2423,'Black Swan'),(9272,75,0,2424,'<p>Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9273,76,0,2424,'<p>Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front.</p>'),(9274,85,0,2424,'Swan Transitional Jacket'),(9275,139,0,2424,'Black Swan'),(9276,75,0,2425,'<p>Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9277,76,0,2425,'<p>Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem.</p>'),(9278,85,0,2425,'Strenesse Elegant Jacket'),(9279,139,0,2425,'Strenesse'),(9280,75,0,2426,'<p>Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9281,76,0,2426,'<p>Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem.</p>'),(9282,85,0,2426,'Strenesse Elegant Jacket'),(9283,139,0,2426,'Strenesse'),(9284,75,0,2427,'<p>Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9285,76,0,2427,'<p>Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem.</p>'),(9286,85,0,2427,'Strenesse Elegant Jacket'),(9287,139,0,2427,'Strenesse'),(9288,75,0,2428,'<p>Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9289,76,0,2428,'<p>Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem.</p>'),(9290,85,0,2428,'Strenesse Elegant Jacket'),(9291,139,0,2428,'Strenesse'),(9292,75,0,2429,'<p>Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9293,76,0,2429,'<p>Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem.</p>'),(9294,85,0,2429,'Strenesse Elegant Jacket'),(9295,139,0,2429,'Strenesse'),(9296,75,0,2430,'<p>Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9297,76,0,2430,'<p>Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem.</p>'),(9298,85,0,2430,'Strenesse Elegant Jacket'),(9299,139,0,2430,'Strenesse'),(9300,75,0,2431,'<p>Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.</p>'),(9301,76,0,2431,'<p>Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem.</p>'),(9302,85,0,2431,'Strenesse Elegant Jacket'),(9303,139,0,2431,'Strenesse'),(9304,75,0,2432,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(9305,76,0,2432,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.</span></p>'),(9306,85,0,2432,'Straight Leg Jeans'),(9307,139,0,2432,'S.Oliver'),(9308,75,0,2433,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(9309,76,0,2433,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.</span></p>'),(9310,85,0,2433,'Straight Leg Jeans'),(9311,139,0,2433,'S.Oliver'),(9312,75,0,2434,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(9313,76,0,2434,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.</span></p>'),(9314,85,0,2434,'Straight Leg Jeans'),(9315,139,0,2434,'S.Oliver'),(9316,75,0,2435,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(9317,76,0,2435,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.</span></p>'),(9318,85,0,2435,'Straight Leg Jeans'),(9319,139,0,2435,'S.Oliver'),(9320,75,0,2436,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(9321,76,0,2436,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.</span></p>'),(9322,85,0,2436,'Straight Leg Jeans'),(9323,139,0,2436,'S.Oliver'),(9324,75,0,2437,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(9325,76,0,2437,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.</span></p>'),(9326,85,0,2437,'Straight Leg Jeans'),(9327,139,0,2437,'S.Oliver'),(9328,75,0,2438,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(9329,76,0,2438,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.</span></p>'),(9330,85,0,2438,'Straight Leg Jeans'),(9331,139,0,2438,'S.Oliver'),(9332,75,0,2439,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(9333,76,0,2439,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.</span></p>'),(9334,85,0,2439,'Straight Leg Jeans'),(9335,139,0,2439,'S.Oliver'),(9336,75,0,2440,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: Casual, Bow Leg\\nCut: slightly tapered leg\\nMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: slit pocket/s, back patch pocket(s)\\nExtras: elastic, faded colouring\\nMaterial: 92% cotton, 6% polyester, 2% elastane\\nManufacturer\'s care instructions: machine wash\\nOur model wears a EU D36L32 and is 179cm/5′10″ tall.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturers product information: Casual, Bow Leg<br />Cut: slightly tapered leg<br />Measurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: slit pocket/s, back patch pocket(s)<br />Extras: elastic, faded colouring<br />Material: 92% cotton, 6% polyester, 2% elastane<br />Manufacturer\'s care instructions: machine wash<br />Our model wears a EU D36L32 and is 179cm/5′10″ tall.</span></p>'),(9337,76,0,2440,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.</span></p>'),(9338,85,0,2440,'Straight Leg Jeans'),(9339,139,0,2440,'S.Oliver'),(9340,75,0,2441,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9341,76,0,2441,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9342,85,0,2441,'Sneakers'),(9343,139,0,2441,'Adidas'),(9344,75,0,2442,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9345,76,0,2442,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9346,85,0,2442,'Sneakers'),(9347,139,0,2442,'Adidas'),(9348,75,0,2443,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9349,76,0,2443,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9350,85,0,2443,'Sneakers'),(9351,139,0,2443,'Adidas'),(9352,75,0,2444,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9353,76,0,2444,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9354,85,0,2444,'Sneakers'),(9355,139,0,2444,'Adidas'),(9356,75,0,2445,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9357,76,0,2445,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9358,85,0,2445,'Sneakers'),(9359,139,0,2445,'Adidas'),(9360,75,0,2446,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9361,76,0,2446,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9362,85,0,2446,'Sneakers'),(9363,139,0,2446,'Adidas'),(9364,75,0,2447,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9365,76,0,2447,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9366,85,0,2447,'Sneakers'),(9367,139,0,2447,'Adidas'),(9368,75,0,2448,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9369,76,0,2448,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9370,85,0,2448,'Sneakers'),(9371,139,0,2448,'Adidas'),(9372,75,0,2449,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9373,76,0,2449,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9374,85,0,2449,'Sneakers'),(9375,139,0,2449,'Adidas'),(9376,75,0,2450,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9377,76,0,2450,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9378,85,0,2450,'Sneakers'),(9379,139,0,2450,'Adidas'),(9380,75,0,2451,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9381,76,0,2451,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9382,85,0,2451,'Sneakers'),(9383,139,0,2451,'Adidas'),(9384,75,0,2452,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9385,76,0,2452,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9386,85,0,2452,'Sneakers'),(9387,139,0,2452,'Adidas'),(9388,75,0,2453,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9389,76,0,2453,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9390,85,0,2453,'Sneakers'),(9391,139,0,2453,'Adidas'),(9392,75,0,2454,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9393,76,0,2454,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9394,85,0,2454,'Sneakers'),(9395,139,0,2454,'Adidas'),(9396,75,0,2455,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9397,76,0,2455,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9398,85,0,2455,'Sneakers'),(9399,139,0,2455,'Adidas'),(9400,75,0,2456,'<ul>\r\n<li>Model: EQT Support ADV PK</li>\r\n<li>Measurements for size EU 42: heel approx. X high 3 cm (1″)</li>\r\n<li>Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9401,76,0,2456,'<p>White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. </p>'),(9402,85,0,2456,'Sneakers'),(9403,139,0,2456,'Adidas'),(9404,75,0,2457,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9405,76,0,2457,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.</p>'),(9406,85,0,2457,'Sneakers'),(9407,139,0,2457,'Adidas'),(9408,75,0,2458,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9409,76,0,2458,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.</p>'),(9410,85,0,2458,'Sneakers'),(9411,139,0,2458,'Adidas'),(9412,75,0,2459,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9413,76,0,2459,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.</p>'),(9414,85,0,2459,'Sneakers'),(9415,139,0,2459,'Adidas'),(9416,75,0,2460,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9417,76,0,2460,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.</p>'),(9418,85,0,2460,'Sneakers'),(9419,139,0,2460,'Adidas'),(9420,75,0,2461,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9421,76,0,2461,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.</p>'),(9422,85,0,2461,'Sneakers'),(9423,139,0,2461,'Adidas'),(9424,75,0,2462,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9425,76,0,2462,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.</p>'),(9426,85,0,2462,'Sneakers'),(9427,139,0,2462,'Adidas'),(9428,75,0,2463,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9429,76,0,2463,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.</p>'),(9430,85,0,2463,'Sneakers'),(9431,139,0,2463,'Adidas'),(9432,75,0,2464,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9433,76,0,2464,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.</p>'),(9434,85,0,2464,'Sneakers'),(9435,139,0,2464,'Adidas'),(9436,75,0,2465,'<ul>\r\n<li>Model: Forest Grove</li>\r\n<li>Measurements for size EU 38: sole height 2,5 cm (1″)</li>\r\n<li>Extras: suede, lacing, logo embroidery</li>\r\n<li>Outer material: leather, textile</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9437,76,0,2465,'<p>Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.</p>'),(9438,85,0,2465,'Sneakers'),(9439,139,0,2465,'Adidas'),(9440,75,0,2466,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9441,76,0,2466,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles</p>'),(9442,85,0,2466,'Sneakers'),(9443,139,0,2466,'Rapid Soul'),(9444,75,0,2467,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9445,76,0,2467,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles</p>'),(9446,85,0,2467,'Sneakers'),(9447,139,0,2467,'Rapid Soul'),(9448,75,0,2468,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9449,76,0,2468,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles</p>'),(9450,85,0,2468,'Sneakers'),(9451,139,0,2468,'Rapid Soul'),(9452,75,0,2469,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9453,76,0,2469,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles</p>'),(9454,85,0,2469,'Sneakers'),(9455,139,0,2469,'Rapid Soul'),(9456,75,0,2470,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9457,76,0,2470,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles</p>'),(9458,85,0,2470,'Sneakers'),(9459,139,0,2470,'Rapid Soul'),(9460,75,0,2471,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9461,76,0,2471,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles</p>'),(9462,85,0,2471,'Sneakers'),(9463,139,0,2471,'Rapid Soul'),(9464,75,0,2472,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9465,76,0,2472,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles</p>'),(9466,85,0,2472,'Sneakers'),(9467,139,0,2472,'Rapid Soul'),(9468,75,0,2473,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9469,76,0,2473,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles</p>'),(9470,85,0,2473,'Sneakers'),(9471,139,0,2473,'Rapid Soul'),(9472,75,0,2474,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9473,76,0,2474,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles</p>'),(9474,85,0,2474,'Sneakers'),(9475,139,0,2474,'Rapid Soul'),(9476,75,0,2475,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9477,76,0,2475,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles</p>'),(9478,85,0,2475,'Sneakers'),(9479,139,0,2475,'Rapid Soul'),(9480,75,0,2476,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9481,76,0,2476,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles</p>'),(9482,85,0,2476,'Sneakers'),(9483,139,0,2476,'Rapid Soul'),(9484,75,0,2477,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9485,76,0,2477,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles</p>'),(9486,85,0,2477,'Sneakers'),(9487,139,0,2477,'Rapid Soul'),(9488,75,0,2478,'<ul>\r\n<li>Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)</li>\r\n<li>Extras: lacing, elasticated entry, structured surface</li>\r\n<li>Outer material: textile, synthetic</li>\r\n<li>Inner material: textile</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9489,76,0,2478,'<p>Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles</p>'),(9490,85,0,2478,'Sneakers'),(9491,139,0,2478,'Rapid Soul'),(9492,75,0,2479,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(9493,76,0,2479,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(9494,85,0,2479,'Slim Fit Jeans – Jane'),(9495,139,0,2479,'Broadway NYC Fashion'),(9496,75,0,2480,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(9497,76,0,2480,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(9498,85,0,2480,'Slim Fit Jeans – Jane'),(9499,139,0,2480,'Broadway NYC Fashion'),(9500,75,0,2481,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(9501,76,0,2481,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(9502,85,0,2481,'Slim Fit Jeans – Jane'),(9503,139,0,2481,'Broadway NYC Fashion'),(9504,75,0,2482,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(9505,76,0,2482,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(9506,85,0,2482,'Slim Fit Jeans – Jane'),(9507,139,0,2482,'Broadway NYC Fashion'),(9508,75,0,2483,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(9509,76,0,2483,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(9510,85,0,2483,'Slim Fit Jeans – Jane'),(9511,139,0,2483,'Broadway NYC Fashion'),(9512,75,0,2484,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(9513,76,0,2484,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(9514,85,0,2484,'Slim Fit Jeans – Jane'),(9515,139,0,2484,'Broadway NYC Fashion'),(9516,75,0,2485,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(9517,76,0,2485,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(9518,85,0,2485,'Slim Fit Jeans – Jane'),(9519,139,0,2485,'Broadway NYC Fashion'),(9520,75,0,2486,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(9521,76,0,2486,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(9522,85,0,2486,'Slim Fit Jeans – Jane'),(9523,139,0,2486,'Broadway NYC Fashion'),(9524,75,0,2487,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturer\'s product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">Manufacturer\'s product information: skinny<br />Cut: slim, tapered leg<br />Measurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)<br />Waistband: belt loop and zip with snaps on the collar<br />Pockets: 5-pocket<br />Pattern: solid-coloured<br />Material: 39% cotton, 39% jute, 21% polyester, 1% elastane<br />Manufacturer\'s care instructions: machine wash</span></p>'),(9525,76,0,2487,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:8403843,&quot;3&quot;:{&quot;1&quot;:0},&quot;4&quot;:[null,2,16777215],&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;14&quot;:[null,2,2236962],&quot;15&quot;:&quot;\\&quot;Avenir LT W01_45 Book1475508\\&quot;, \\&quot;Helvetica Neue\\&quot;, Helvetica, Arial, sans-serif&quot;,&quot;16&quot;:11,&quot;26&quot;:300}\">Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. </span></p>'),(9526,85,0,2487,'Slim Fit Jeans – Jane'),(9527,139,0,2487,'Broadway NYC Fashion'),(9528,75,0,2488,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(9529,76,0,2488,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(9530,85,0,2488,'Silver Pumps'),(9531,139,0,2488,'Kennel & Schmenger'),(9532,75,0,2489,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(9533,76,0,2489,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(9534,85,0,2489,'Silver Pumps'),(9535,139,0,2489,'Kennel & Schmenger'),(9536,75,0,2490,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(9537,76,0,2490,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(9538,85,0,2490,'Silver Pumps'),(9539,139,0,2490,'Kennel & Schmenger'),(9540,75,0,2491,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(9541,76,0,2491,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(9542,85,0,2491,'Silver Pumps'),(9543,139,0,2491,'Kennel & Schmenger'),(9544,75,0,2492,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(9545,76,0,2492,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(9546,85,0,2492,'Silver Pumps'),(9547,139,0,2492,'Kennel & Schmenger'),(9548,75,0,2493,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(9549,76,0,2493,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(9550,85,0,2493,'Silver Pumps'),(9551,139,0,2493,'Kennel & Schmenger'),(9552,75,0,2494,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(9553,76,0,2494,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(9554,85,0,2494,'Silver Pumps'),(9555,139,0,2494,'Kennel & Schmenger'),(9556,75,0,2495,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(9557,76,0,2495,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(9558,85,0,2495,'Silver Pumps'),(9559,139,0,2495,'Kennel & Schmenger'),(9560,75,0,2496,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(9561,76,0,2496,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(9562,85,0,2496,'Silver Pumps'),(9563,139,0,2496,'Kennel & Schmenger'),(9564,75,0,2497,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(9565,76,0,2497,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(9566,85,0,2497,'Silver Pumps'),(9567,139,0,2497,'Kennel & Schmenger'),(9568,75,0,2498,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(9569,76,0,2498,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(9570,85,0,2498,'Silver Pumps'),(9571,139,0,2498,'Kennel & Schmenger'),(9572,75,0,2499,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(9573,76,0,2499,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(9574,85,0,2499,'Silver Pumps'),(9575,139,0,2499,'Kennel & Schmenger'),(9576,75,0,2500,'<ul>\r\n<li>Measurements for size EU 39: heel height 7,5 cm (3″)</li>\r\n<li>Extras: a mix of suede and smooth leathers</li>\r\n<li>Outer material: leather</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: leather</li>\r\n<li>Please note: Quality leather soles are sensitive to moisture.</li>\r\n</ul>'),(9577,76,0,2500,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Beown leather ankle boots. Two elastic side panels for slipping on with ease. Pull tab in the back. Decorative seams on the upper. Rounded toes. Black soles. Leather insoles.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:9089,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0,&quot;16&quot;:10}\">Two elastic side panels for slipping on with ease. Pull tab in the back. </span></p>'),(9578,85,0,2500,'Silver Pumps'),(9579,139,0,2500,'Kennel & Schmenger'),(9580,75,0,2501,'<p>It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose, printed or distressed, Blend have mastered it all, while adding their own unique spin into the mix. Jeans by Blend You can never have too many pairs. A tight cut for a sleek shape. Light grey wash with zip fly and five-pocket styling.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> skinny</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slim, tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Extras:</strong> elastic, holes, logo tag on back of waistband</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 98% cotton, 2% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9581,76,0,2501,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(9582,85,0,2501,'Grey Slim Fit Jeans Cirrus'),(9583,139,0,2501,'Blend'),(9584,75,0,2502,'<p>It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose, printed or distressed, Blend have mastered it all, while adding their own unique spin into the mix. Jeans by Blend You can never have too many pairs. A tight cut for a sleek shape. Light grey wash with zip fly and five-pocket styling.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> skinny</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slim, tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Extras:</strong> elastic, holes, logo tag on back of waistband</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 98% cotton, 2% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9585,76,0,2502,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(9586,85,0,2502,'Grey Slim Fit Jeans Cirrus'),(9587,139,0,2502,'Blend'),(9588,75,0,2503,'<p>It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose, printed or distressed, Blend have mastered it all, while adding their own unique spin into the mix. Jeans by Blend You can never have too many pairs. A tight cut for a sleek shape. Light grey wash with zip fly and five-pocket styling.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> skinny</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slim, tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Extras:</strong> elastic, holes, logo tag on back of waistband</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 98% cotton, 2% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9589,76,0,2503,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(9590,85,0,2503,'Grey Slim Fit Jeans Cirrus'),(9591,139,0,2503,'Blend'),(9592,75,0,2504,'<p>It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose, printed or distressed, Blend have mastered it all, while adding their own unique spin into the mix. Jeans by Blend You can never have too many pairs. A tight cut for a sleek shape. Light grey wash with zip fly and five-pocket styling.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> skinny</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slim, tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Extras:</strong> elastic, holes, logo tag on back of waistband</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 98% cotton, 2% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9593,76,0,2504,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(9594,85,0,2504,'Grey Slim Fit Jeans Cirrus'),(9595,139,0,2504,'Blend'),(9596,75,0,2505,'<p>It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose, printed or distressed, Blend have mastered it all, while adding their own unique spin into the mix. Jeans by Blend You can never have too many pairs. A tight cut for a sleek shape. Light grey wash with zip fly and five-pocket styling.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> skinny</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slim, tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Extras:</strong> elastic, holes, logo tag on back of waistband</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 98% cotton, 2% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9597,76,0,2505,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(9598,85,0,2505,'Grey Slim Fit Jeans Cirrus'),(9599,139,0,2505,'Blend'),(9600,75,0,2506,'<p>It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose, printed or distressed, Blend have mastered it all, while adding their own unique spin into the mix. Jeans by Blend You can never have too many pairs. A tight cut for a sleek shape. Light grey wash with zip fly and five-pocket styling.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> skinny</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slim, tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Extras:</strong> elastic, holes, logo tag on back of waistband</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 98% cotton, 2% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9601,76,0,2506,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(9602,85,0,2506,'Grey Slim Fit Jeans Cirrus'),(9603,139,0,2506,'Blend'),(9604,75,0,2507,'<p>It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose, printed or distressed, Blend have mastered it all, while adding their own unique spin into the mix. Jeans by Blend You can never have too many pairs. A tight cut for a sleek shape. Light grey wash with zip fly and five-pocket styling.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturers product information:</strong> skinny</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slim, tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Extras:</strong> elastic, holes, logo tag on back of waistband</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 98% cotton, 2% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Manufacturers product information: skinny\\nCut: slim, tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, holes, logo tag on back of waistband\\nMaterial: 98% cotton, 2% elastane\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9605,76,0,2507,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.</span></p>'),(9606,85,0,2507,'Grey Slim Fit Jeans Cirrus'),(9607,139,0,2507,'Blend'),(9608,75,0,2508,'<p>Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slightly tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pattern:</strong> solid-coloured</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 67% cotton, 30% polyester, 3% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9609,76,0,2508,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets.<br /></span></p>'),(9610,85,0,2508,'Khaki Straight Leg Jeans Cadiz'),(9611,139,0,2508,'Brax'),(9612,75,0,2509,'<p>Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slightly tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pattern:</strong> solid-coloured</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 67% cotton, 30% polyester, 3% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9613,76,0,2509,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets.<br /></span></p>'),(9614,85,0,2509,'Khaki Straight Leg Jeans Cadiz'),(9615,139,0,2509,'Brax'),(9616,75,0,2510,'<p>Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slightly tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pattern:</strong> solid-coloured</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 67% cotton, 30% polyester, 3% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9617,76,0,2510,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets.<br /></span></p>'),(9618,85,0,2510,'Khaki Straight Leg Jeans Cadiz'),(9619,139,0,2510,'Brax'),(9620,75,0,2511,'<p>Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slightly tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pattern:</strong> solid-coloured</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 67% cotton, 30% polyester, 3% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9621,76,0,2511,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets.<br /></span></p>'),(9622,85,0,2511,'Khaki Straight Leg Jeans Cadiz'),(9623,139,0,2511,'Brax'),(9624,75,0,2512,'<p>Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slightly tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pattern:</strong> solid-coloured</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 67% cotton, 30% polyester, 3% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9625,76,0,2512,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets.<br /></span></p>'),(9626,85,0,2512,'Khaki Straight Leg Jeans Cadiz'),(9627,139,0,2512,'Brax'),(9628,75,0,2513,'<p>Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slightly tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pattern:</strong> solid-coloured</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 67% cotton, 30% polyester, 3% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9629,76,0,2513,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets.<br /></span></p>'),(9630,85,0,2513,'Khaki Straight Leg Jeans Cadiz'),(9631,139,0,2513,'Brax'),(9632,75,0,2514,'<p>Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slightly tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pattern:</strong> solid-coloured</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 67% cotton, 30% polyester, 3% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9633,76,0,2514,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets.<br /></span></p>'),(9634,85,0,2514,'Khaki Straight Leg Jeans Cadiz'),(9635,139,0,2514,'Brax'),(9636,75,0,2515,'<p>Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slightly tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pattern:</strong> solid-coloured</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 67% cotton, 30% polyester, 3% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9637,76,0,2515,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets.<br /></span></p>'),(9638,85,0,2515,'Khaki Straight Leg Jeans Cadiz'),(9639,139,0,2515,'Brax'),(9640,75,0,2516,'<p>Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slightly tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pattern:</strong> solid-coloured</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 67% cotton, 30% polyester, 3% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9641,76,0,2516,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets.<br /></span></p>'),(9642,85,0,2516,'Khaki Straight Leg Jeans Cadiz'),(9643,139,0,2516,'Brax'),(9644,75,0,2517,'<p>Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband.</p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> slightly tapered leg</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Measurements for size EU L32W32:</strong> waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Waistband:</strong> belt loop and zip with snaps on the collar</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pockets:</strong> 5-pocket</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Pattern:</strong> solid-coloured</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Material:</strong> 67% cotton, 30% polyester, 3% elastane</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: slightly tapered leg\\nMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nPattern: solid-coloured\\nMaterial: 67% cotton, 30% polyester, 3% elastane\\nManufacturer\'s care instructions: machine wash\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9645,76,0,2517,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Regular fit, neppy-look jeans with zip and button fastening and five pockets.\\n\\n&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets.<br /></span></p>'),(9646,85,0,2517,'Khaki Straight Leg Jeans Cadiz'),(9647,139,0,2517,'Brax'),(9648,75,0,2518,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, light quality<br /><strong>Material:</strong> 64% Lyocell, 30% cotton, 4% Elastomultiester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9649,76,0,2518,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(9650,85,0,2518,'Black Standard Jeans'),(9651,139,0,2518,'7 for all Mankind'),(9652,75,0,2519,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, light quality<br /><strong>Material:</strong> 64% Lyocell, 30% cotton, 4% Elastomultiester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9653,76,0,2519,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(9654,85,0,2519,'Black Standard Jeans'),(9655,139,0,2519,'7 for all Mankind'),(9656,75,0,2520,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, light quality<br /><strong>Material:</strong> 64% Lyocell, 30% cotton, 4% Elastomultiester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9657,76,0,2520,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(9658,85,0,2520,'Black Standard Jeans'),(9659,139,0,2520,'7 for all Mankind'),(9660,75,0,2521,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, light quality<br /><strong>Material:</strong> 64% Lyocell, 30% cotton, 4% Elastomultiester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9661,76,0,2521,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(9662,85,0,2521,'Black Standard Jeans'),(9663,139,0,2521,'7 for all Mankind'),(9664,75,0,2522,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, light quality<br /><strong>Material:</strong> 64% Lyocell, 30% cotton, 4% Elastomultiester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9665,76,0,2522,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(9666,85,0,2522,'Black Standard Jeans'),(9667,139,0,2522,'7 for all Mankind'),(9668,75,0,2523,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, light quality<br /><strong>Material:</strong> 64% Lyocell, 30% cotton, 4% Elastomultiester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9669,76,0,2523,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(9670,85,0,2523,'Black Standard Jeans'),(9671,139,0,2523,'7 for all Mankind'),(9672,75,0,2524,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\">The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort.</span></p>\r\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Cut: straight leg\\nMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)\\nWaistband: belt loop and zip with snaps on the collar\\nPockets: 5-pocket\\nExtras: elastic, light quality\\nMaterial: 64% Lyocell, 30% cotton, 4% Elastomultiester\\nManufacturer\'s care instructions: machine wash&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:3,&quot;12&quot;:0}\"><strong>Cut:</strong> straight leg<br /><strong>Measurements for size EU 32:</strong> waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)<br /><strong>Waistband:</strong> belt loop and zip with snaps on the collar<br /><strong>Pockets:</strong> 5-pocket<br /><strong>Extras:</strong> elastic, light quality<br /><strong>Material:</strong> 64% Lyocell, 30% cotton, 4% Elastomultiester<br /><strong>Manufacturer\'s care instructions:</strong> machine wash</span></p>'),(9673,76,0,2524,'<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:897,&quot;3&quot;:{&quot;1&quot;:0},&quot;10&quot;:0,&quot;11&quot;:4,&quot;12&quot;:0}\">Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.</span></p>'),(9674,85,0,2524,'Black Standard Jeans'),(9675,139,0,2524,'7 for all Mankind'),(9676,139,0,2234,'Boss'),(9677,139,0,2222,'Escada'),(9678,139,0,2020,'Medium blue'),(9679,139,0,2212,'Bottega Veneta'),(9680,139,0,2207,'Bottega Veneta'),(9681,139,0,2001,'Jimmy Choo'),(9682,139,0,2190,'Montblanc'),(9683,139,0,2171,'Coccinelle'),(9684,139,0,2149,'Head'),(9685,75,0,2525,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9686,76,0,2525,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(9687,85,0,2525,'Silk Pumps'),(9688,139,0,2525,'Hammerstein'),(9689,75,0,2526,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9690,76,0,2526,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(9691,85,0,2526,'Silk Pumps'),(9692,139,0,2526,'Hammerstein'),(9693,75,0,2527,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9694,76,0,2527,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(9695,85,0,2527,'Silk Pumps'),(9696,139,0,2527,'Hammerstein'),(9697,75,0,2528,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9698,76,0,2528,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(9699,85,0,2528,'Silk Pumps'),(9700,139,0,2528,'Hammerstein'),(9701,75,0,2529,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9702,76,0,2529,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(9703,85,0,2529,'Silk Pumps'),(9704,139,0,2529,'Hammerstein'),(9705,75,0,2530,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9706,76,0,2530,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(9707,85,0,2530,'Silk Pumps'),(9708,139,0,2530,'Hammerstein'),(9709,75,0,2531,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9710,76,0,2531,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(9711,85,0,2531,'Silk Pumps'),(9712,139,0,2531,'Hammerstein'),(9713,75,0,2532,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9714,76,0,2532,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(9715,85,0,2532,'Silk Pumps'),(9716,139,0,2532,'Hammerstein'),(9717,75,0,2533,'<ul>\r\n<li>Measurements for size EU 39: heel height 9 cm (3.5″)</li>\r\n<li>Extras: fabric trim, Floral appliqués</li>\r\n<li>Outer material: textile</li>\r\n<li>Inner material: leather</li>\r\n<li>Outsole: synthetic</li>\r\n</ul>'),(9718,76,0,2533,'<p>Patent leather heels available in several colours. Pointed toes. High block heels. </p>'),(9719,85,0,2533,'Silk Pumps'),(9720,139,0,2533,'Hammerstein'),(9721,139,0,2138,'Head'),(9722,139,0,2135,'B.Belt'),(9723,139,0,2105,'Dior'),(9724,75,0,2534,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9725,76,0,2534,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(9726,85,0,2534,'Rich & Royal Transitional Jacket'),(9727,139,0,2534,'Rich & Royal'),(9728,75,0,2535,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9729,76,0,2535,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(9730,85,0,2535,'Rich & Royal Transitional Jacket'),(9731,139,0,2535,'Rich & Royal'),(9732,75,0,2536,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9733,76,0,2536,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(9734,85,0,2536,'Rich & Royal Transitional Jacket'),(9735,139,0,2536,'Rich & Royal'),(9736,75,0,2537,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9737,76,0,2537,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(9738,85,0,2537,'Rich & Royal Transitional Jacket'),(9739,139,0,2537,'Rich & Royal'),(9740,139,0,2089,'Dior'),(9741,75,0,2538,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9742,76,0,2538,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(9743,85,0,2538,'Rich & Royal Transitional Jacket'),(9744,139,0,2538,'Rich & Royal'),(9745,75,0,2539,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9746,76,0,2539,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(9747,85,0,2539,'Rich & Royal Transitional Jacket'),(9748,139,0,2539,'Rich & Royal'),(9749,75,0,2540,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9750,76,0,2540,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(9751,85,0,2540,'Rich & Royal Transitional Jacket'),(9752,139,0,2540,'Rich & Royal'),(9753,75,0,2541,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9754,76,0,2541,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(9755,85,0,2541,'Rich & Royal Transitional Jacket'),(9756,139,0,2541,'Rich & Royal'),(9757,75,0,2542,'<p>Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.</p>'),(9758,76,0,2542,'<p>Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.</p>'),(9759,85,0,2542,'Rich & Royal Transitional Jacket'),(9760,139,0,2542,'Rich & Royal'),(9761,139,0,2077,'Dior Homme'),(9762,139,0,2055,'Diesel'),(9763,139,0,2032,'Windsor.'),(9764,76,0,2135,'<p>Contrast leather B.Belt with a loop and a contrasting metal buckle.</p>\r\n<article class=\"ProductDetails\">\r\n<div class=\"ProductDetails-ShortDescription\"> </div>\r\n</article>'),(9765,75,0,2135,'<p>Measurements for size EU S: width approx. 1,8 cm (0.5″)</p>\r\n<p>Material: leather</p>\r\n<p>Fastening: pin buckle</p>'),(9766,75,0,2300,'<p>Seventy Transitional Jacket with open neck on chest. With lightweight material, long sleeves and checkered pattern. The jacket has two buttons from the inside to close the shella. With 2 pockets, one on each side.</p>'),(9767,76,0,2300,'<p>With lightweight material, long sleeves and checkered pattern. The jacket has two buttons from the inside to close the shella. With 2 pockets, one on each side.</p>'),(9768,76,0,2309,'<p>Slim fit jeans by Bench</p>'),(9769,75,0,2309,'<p>Featuring side taping with beaded appliqués and zip fly and top button fastening.</p>');
/*!40000 ALTER TABLE `catalog_product_entity_text` ENABLE KEYS */;
UNLOCK TABLES;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_text_after_insert AFTER INSERT ON catalog_product_entity_text FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_text_after_update AFTER UPDATE ON catalog_product_entity_text FOR EACH ROW
BEGIN
IF (NEW.`value_id` <=> OLD.`value_id` OR NEW.`attribute_id` <=> OLD.`attribute_id` OR NEW.`store_id` <=> OLD.`store_id` OR NEW.`entity_id` <=> OLD.`entity_id` OR NEW.`value` <=> OLD.`value`) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_text_after_delete AFTER DELETE ON catalog_product_entity_text FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

--
-- Table structure for table `catalog_product_entity_tier_price`
--

DROP TABLE IF EXISTS `catalog_product_entity_tier_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_entity_tier_price` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `all_groups` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Is Applicable To All Customer Groups',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `qty` decimal(12,4) NOT NULL DEFAULT '1.0000' COMMENT 'QTY',
  `value` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Value',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `percentage_value` decimal(5,2) DEFAULT NULL COMMENT 'Percentage value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `UNQ_E8AB433B9ACB00343ABB312AD2FAB087` (`entity_id`,`all_groups`,`customer_group_id`,`qty`,`website_id`),
  KEY `CATALOG_PRODUCT_ENTITY_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_ENTITY_TIER_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CAT_PRD_ENTT_TIER_PRICE_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_TIER_PRICE_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_TIER_PRICE_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Tier Price Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_tier_price`
--

LOCK TABLES `catalog_product_entity_tier_price` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_tier_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_entity_tier_price` ENABLE KEYS */;
UNLOCK TABLES;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_tier_price_after_insert AFTER INSERT ON catalog_product_entity_tier_price FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_tier_price_after_update AFTER UPDATE ON catalog_product_entity_tier_price FOR EACH ROW
BEGIN
IF (NEW.`value_id` <=> OLD.`value_id` OR NEW.`entity_id` <=> OLD.`entity_id` OR NEW.`all_groups` <=> OLD.`all_groups` OR NEW.`customer_group_id` <=> OLD.`customer_group_id` OR NEW.`qty` <=> OLD.`qty` OR NEW.`value` <=> OLD.`value` OR NEW.`website_id` <=> OLD.`website_id` OR NEW.`percentage_value` <=> OLD.`percentage_value`) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_tier_price_after_delete AFTER DELETE ON catalog_product_entity_tier_price FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

--
-- Table structure for table `catalog_product_entity_varchar`
--

DROP TABLE IF EXISTS `catalog_product_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_entity_varchar` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_PRODUCT_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_VCHR_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=39832 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Varchar Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_varchar`
--

LOCK TABLES `catalog_product_entity_varchar` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_varchar` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_varchar` VALUES (1,73,0,1,'Hooded Sweater'),(2,84,0,1,'Hooded Sweater'),(3,86,0,1,'Hooded Sweater '),(4,87,0,1,'/i/m/image_31305746_81_620x757_0.jpg'),(5,88,0,1,'no_selection'),(6,89,0,1,'/i/m/image_31305746_81_620x757_0.jpg'),(7,106,0,1,'container2'),(8,121,0,1,'hooded-sweater'),(9,132,0,1,'2'),(10,133,0,1,'no_selection'),(11,206,0,1,'80% cotton, 20% polyester'),(17,73,0,2,'Long-sleeved Jumper'),(18,84,0,2,'Long-sleeved Jumper'),(19,86,0,2,'Long-sleeved Jumper '),(20,87,0,2,'/u/n/unspecified.jpg'),(21,88,0,2,'/u/n/unspecified.jpg'),(22,89,0,2,'/u/n/unspecified.jpg'),(23,106,0,2,'container2'),(24,121,0,2,'long-sleeved-jumper'),(25,132,0,2,'2'),(26,133,0,2,'/u/n/unspecified.jpg'),(27,206,0,2,' 100% cotton'),(37,73,0,3,'ADIDAS Sneakers'),(38,84,0,3,'Napapijri Grey Sneakers'),(39,86,0,3,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(40,87,0,3,'/5/4/544555454.jpg'),(41,88,0,3,'/5/4/544555454.jpg'),(42,89,0,3,'/5/4/544555454.jpg'),(43,106,0,3,'container2'),(44,121,0,3,'napapijri-grey-sneakers'),(45,132,0,3,'2'),(46,133,0,3,'no_selection'),(47,206,0,3,'leather, textile'),(61,73,0,4,'Boxfresh'),(62,84,0,4,'Boxfresh'),(63,86,0,4,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(64,106,0,4,'container2'),(65,121,0,4,'boxfresh'),(66,132,0,4,'2'),(67,206,0,4,' leather'),(69,87,0,4,'/i/m/image_31091015_72_620x757_0_1.jpg'),(70,88,0,4,'/i/m/image_31091015_72_620x757_0_1.jpg'),(71,89,0,4,'/i/m/image_31091015_72_620x757_0_1.jpg'),(72,133,0,4,'/i/m/image_31091015_72_620x757_0_1.jpg'),(77,73,0,5,'J.B by Jean Biani Sneakers'),(78,84,0,5,'J.B by Jean Biani Sneakers'),(79,86,0,5,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(80,106,0,5,'container2'),(81,121,0,5,'j-b-by-jean-biani-sneakers'),(82,132,0,5,'2'),(84,87,0,5,'/4/_/4.jpg'),(85,88,0,5,'/4/_/4.jpg'),(86,89,0,5,'/4/_/4.jpg'),(87,133,0,5,'no_selection'),(88,206,0,5,'textile, synthetic'),(97,73,0,6,'Adidas Originals PW Tennis Hu'),(98,84,0,6,'Adidas Originals PW Tennis Hu'),(99,86,0,6,'Adidas Originals PW Tennis Hu Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper,'),(100,87,0,6,'/i/m/image_31141265_20_620x757_0.jpg'),(101,88,0,6,'/i/m/image_31141265_20_620x757_0.jpg'),(102,89,0,6,'/i/m/image_31141265_20_620x757_0.jpg'),(103,106,0,6,'container2'),(104,121,0,6,'adidas-originals-pw-tennis-hu'),(105,132,0,6,'2'),(106,133,0,6,'/i/m/image_31141265_20_620x757_0.jpg'),(112,206,0,6,'textile, synthetic'),(121,73,0,7,'Brax Chuck Slim Fit'),(122,84,0,7,'Brax Chuck Slim Fit'),(123,86,0,7,'Brax Chuck Slim Fit '),(124,87,0,7,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back.jpg'),(125,88,0,7,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back.jpg'),(126,89,0,7,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back.jpg'),(127,106,0,7,'container2'),(128,121,0,7,'brax-chuck-slim-fit'),(129,132,0,7,'2'),(130,133,0,7,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back.jpg'),(131,206,0,7,'Cotton'),(137,73,0,8,'Ugg Freamon Wp'),(138,84,0,8,'Ugg Freamon Wp'),(139,86,0,8,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(140,87,0,8,'/i/m/image_31276018_23_620x757_0.jpg'),(141,88,0,8,'/i/m/image_31276018_23_620x757_0.jpg'),(142,89,0,8,'/i/m/image_31276018_23_620x757_0.jpg'),(143,106,0,8,'container2'),(144,121,0,8,'ugg-freamon-wp'),(145,132,0,8,'2'),(146,133,0,8,'no_selection'),(147,206,0,8,'leather'),(157,73,0,9,'Sweat Pants'),(158,84,0,9,'Sweat Pants'),(159,86,0,9,'Sweat Pants '),(160,87,0,9,'/i/m/image_31241601_81_620x757_0.jpg'),(161,88,0,9,'/i/m/image_31241601_81_620x757_0.jpg'),(162,89,0,9,'/i/m/image_31241601_81_620x757_0.jpg'),(163,106,0,9,'container2'),(164,121,0,9,'sweat-pants'),(165,132,0,9,'2'),(166,133,0,9,'/i/m/image_31241601_81_620x757_0.jpg'),(167,206,0,9,'48% polyester, 22% cotton, 15% wool, 15% polyacrylic'),(173,73,0,10,'Business Trousers'),(174,84,0,10,'Business Trousers'),(175,86,0,10,'Business Trousers '),(176,87,0,10,'/i/m/image_30977108_10_970x1182_0.jpg'),(177,88,0,10,'/i/m/image_30977108_10_970x1182_0.jpg'),(178,89,0,10,'/i/m/image_30977108_10_970x1182_0.jpg'),(179,106,0,10,'container2'),(180,121,0,10,'business-trousers'),(181,132,0,10,'2'),(182,133,0,10,'/i/m/image_30977108_10_970x1182_0.jpg'),(183,206,0,10,'96% virgin wool, 4% polyamide'),(185,73,0,11,'Chino'),(186,84,0,11,'Chino'),(187,86,0,11,'Chino '),(188,87,0,11,'/i/m/image_31240220_10_970x1182_0.jpg'),(189,88,0,11,'/i/m/image_31240220_10_970x1182_0.jpg'),(190,89,0,11,'/i/m/image_31240220_10_970x1182_0.jpg'),(191,106,0,11,'container2'),(192,121,0,11,'chino'),(193,132,0,11,'2'),(194,133,0,11,'/i/m/image_31240220_10_970x1182_0.jpg'),(195,206,0,11,'100% cotton'),(201,73,0,12,'Dress Trousers'),(202,84,0,12,'Dress Trousers'),(203,86,0,12,'Dress Trousers Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, cr'),(204,87,0,12,'/i/m/image_31331004_36_970x1182_0.jpg'),(205,88,0,12,'/i/m/image_31331004_36_970x1182_0.jpg'),(206,89,0,12,'/i/m/image_31331004_36_970x1182_0.jpg'),(207,106,0,12,'container2'),(208,121,0,12,'dress-trousers'),(209,132,0,12,'2'),(210,133,0,12,'/i/m/image_31331004_36_970x1182_0.jpg'),(211,206,0,12,'53% cotton, 44% polyester, 3% elastane'),(255,73,0,15,'Half Boots'),(256,84,0,15,'Boxfresh'),(257,86,0,15,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(258,87,0,15,'/i/m/image_31091010_31_620x757_0_1.jpg'),(259,88,0,15,'/i/m/image_31091010_31_620x757_0_1.jpg'),(260,89,0,15,'/i/m/image_31091010_31_620x757_0_1.jpg'),(261,106,0,15,'container2'),(262,121,0,15,'half-boots'),(263,132,0,15,'2'),(264,133,0,15,'no_selection'),(265,206,0,15,'leather'),(275,73,0,16,'Gant Marvel'),(276,84,0,16,'Gant Marvel'),(277,86,0,16,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(278,87,0,16,'/i/m/image_31085465_74_620x757_0_1.jpg'),(279,88,0,16,'/i/m/image_31085465_74_620x757_0_1.jpg'),(280,89,0,16,'/i/m/image_31085465_74_620x757_0_1.jpg'),(281,106,0,16,'container2'),(282,121,0,16,'gant-marvel'),(283,132,0,16,'2'),(284,133,0,16,'/i/m/image_31085465_74_620x757_0_1.jpg'),(285,206,0,16,'leather'),(303,73,0,17,'Casual Trousers'),(304,84,0,17,'Casual Trousers'),(305,86,0,17,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool'),(306,87,0,17,'/i/m/image_31340162_80_970x1182_0.jpg'),(307,88,0,17,'/i/m/image_31340162_80_970x1182_0.jpg'),(308,89,0,17,'/i/m/image_31340162_80_970x1182_0.jpg'),(309,106,0,17,'container2'),(310,121,0,17,'casual-trousers'),(311,132,0,17,'2'),(312,133,0,17,'/i/m/image_31340162_80_970x1182_0.jpg'),(313,206,0,17,'65% polyester, 32% viscose, 3% elastane'),(318,73,0,18,'Slim Fit Jeans'),(319,84,0,18,'Slim Fit Jeans'),(320,86,0,18,'Slim Fit Jeans '),(321,87,0,18,'/i/m/image_31125033_85_970x1182_3.jpg'),(322,88,0,18,'/i/m/image_31125033_85_970x1182_3.jpg'),(323,89,0,18,'/i/m/image_31125033_85_970x1182_0.jpg'),(324,106,0,18,'container2'),(325,121,0,18,'slim-fit-jeans'),(326,132,0,18,'2'),(327,133,0,18,'/i/m/image_31125033_85_970x1182_3.jpg'),(332,73,0,19,'Pale Belt Pants '),(333,84,0,19,'Pale Belt Pants '),(334,86,0,19,'Pale Belt Pants  The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pa'),(335,87,0,19,'/1/0/10502970_50015_100.jpg'),(336,88,0,19,'/1/0/10502970_50015_100.jpg'),(337,89,0,19,'/1/0/10502970_50015_100.jpg'),(338,106,0,19,'container2'),(339,121,0,19,'pale-belt-pants'),(340,132,0,19,'2'),(341,133,0,19,'/1/0/10502970_50015_100.jpg'),(342,206,0,19,'65% Polyester,32% Viscose,3% Elastane'),(348,73,0,20,'I Maschi Lace-up Boots'),(349,84,0,20,'I Maschi Lace-up Boots'),(350,86,0,20,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(351,87,0,20,'/i/m/image_30807043_21_620x757_0.jpg'),(352,88,0,20,'/i/m/image_30807043_21_620x757_0.jpg'),(353,89,0,20,'/i/m/image_30807043_21_620x757_0.jpg'),(354,106,0,20,'container2'),(355,121,0,20,'i-maschi-lace-up-boots'),(356,132,0,20,'2'),(357,133,0,20,'no_selection'),(358,206,0,20,'leather'),(380,73,0,22,'Straight Leg Jeans'),(381,84,0,22,'Straight Leg Jeans'),(382,86,0,22,'Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on'),(383,87,0,22,'/i/m/image_31237526_30_970x1182_3.jpg'),(384,88,0,22,'no_selection'),(385,89,0,22,'/i/m/image_31237526_30_970x1182_0.jpg'),(386,106,0,22,'container2'),(387,121,0,22,'straight-leg-jeans'),(388,132,0,22,'2'),(389,133,0,22,'no_selection'),(410,73,0,24,'Wool jersey trousers'),(411,84,0,24,'Wool jersey trousers'),(412,86,0,24,'Wool jersey trousers Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle.'),(413,87,0,24,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6.jpg'),(414,88,0,24,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6.jpg'),(415,89,0,24,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6.jpg'),(416,106,0,24,'container2'),(417,121,0,24,'wool-jersey-trousers'),(418,132,0,24,'2'),(419,133,0,24,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6.jpg'),(420,206,0,24,'100% virgin wool'),(426,73,0,25,'Lloyd Half Boots'),(427,84,0,25,'Lloyd Half Boots'),(428,86,0,25,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(429,87,0,25,'/i/m/image_31179106_74_620x757_0-1.jpg'),(430,88,0,25,'/i/m/image_31179106_74_620x757_0-1.jpg'),(431,89,0,25,'/i/m/image_31179106_74_620x757_0-1.jpg'),(432,106,0,25,'container2'),(433,121,0,25,'lloyd-half-boots'),(434,132,0,25,'2'),(435,133,0,25,'/i/m/image_31179106_74_620x757_0-1.jpg'),(436,206,0,25,' leather'),(442,73,0,26,'Cotton-Stretch Tapered Pants'),(443,84,0,26,'Cotton-Stretch Tapered Pants'),(444,86,0,26,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sEx'),(445,87,0,26,'/i/m/image_30977037_25_970x1182_0.jpg'),(446,88,0,26,'/i/m/image_30977037_25_970x1182_0.jpg'),(447,89,0,26,'/i/m/image_30977037_25_970x1182_0.jpg'),(448,106,0,26,'container2'),(449,121,0,26,'cotton-stretch-tapered-pants'),(450,132,0,26,'2'),(451,133,0,26,'/i/m/image_30977037_25_970x1182_0.jpg'),(452,206,0,26,'98% cotton, 2% elastane'),(488,73,0,29,'Cat Lace-up Boots'),(489,84,0,29,'Cat Lace-up Boots'),(490,86,0,29,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(491,106,0,29,'container2'),(492,121,0,29,'cat-lace-up-boots'),(493,132,0,29,'2'),(495,73,0,30,'The Skinny Crop'),(496,84,0,30,'The Skinny Crop'),(497,86,0,30,'The Skinny Crop Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manufact'),(498,87,0,30,'no_selection'),(499,88,0,30,'no_selection'),(500,89,0,30,'/i/m/image_31332644_47_970x1182_0.jpg'),(501,106,0,30,'container2'),(502,121,0,30,'the-skinny-crop'),(503,132,0,30,'2'),(504,133,0,30,'no_selection'),(509,73,0,31,'Bottega Veneta'),(510,84,0,31,'Bottega Veneta'),(511,86,0,31,'Bottega Veneta Reference number: BV0111S\r\nMeasurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: titanium, plastic\r\nPlease not'),(512,87,0,31,'/m/a/main.jpg'),(513,88,0,31,'/m/a/main.jpg'),(514,89,0,31,'/m/a/main.jpg'),(515,106,0,31,'container2'),(516,121,0,31,'bottega-veneta'),(517,132,0,31,'2'),(518,133,0,31,'/m/a/main.jpg'),(519,206,0,31,'titanium, plastic'),(525,87,0,29,'/i/m/image_31149594_82_620x757_0.jpg'),(526,88,0,29,'/i/m/image_31149594_82_620x757_0.jpg'),(527,89,0,29,'/i/m/image_31149594_82_620x757_0.jpg'),(528,133,0,29,'no_selection'),(529,206,0,29,'leather'),(562,73,0,32,'Sunglasses'),(563,84,0,32,'Sunglasses'),(564,86,0,32,'Sunglasses Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3 Extras: logo on both temples, case included, gift-box\r\nMaterial: plastic\r\nPlease note: May '),(565,87,0,32,'/i/m/image_31160332_10_620x757_0.jpg'),(566,88,0,32,'/i/m/image_31160332_10_620x757_0.jpg'),(567,89,0,32,'/i/m/image_31160332_10_620x757_0.jpg'),(568,106,0,32,'container2'),(569,121,0,32,'sunglasses'),(570,132,0,32,'2'),(571,133,0,32,'/i/m/image_31160332_10_620x757_0.jpg'),(572,206,0,32,'Plastic'),(582,73,0,33,'Boyfriend Jeans'),(583,84,0,33,'Boyfriend Jeans'),(584,86,0,33,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qual'),(585,87,0,33,'/i/m/image_31202680_34_970x1182_0.jpg'),(586,88,0,33,'/i/m/image_31202680_34_970x1182_0.jpg'),(587,89,0,33,'/i/m/image_31202680_34_970x1182_0.jpg'),(588,106,0,33,'container2'),(589,121,0,33,'boyfriend-jeans'),(590,132,0,33,'2'),(591,133,0,33,'/i/m/image_31202680_34_970x1182_0.jpg'),(596,73,0,34,'Navy Chino'),(597,84,0,34,'Navy Chino'),(598,86,0,34,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(599,87,0,34,'/m/a/main_1_1.jpg'),(600,88,0,34,'/m/a/main_1_1.jpg'),(601,89,0,34,'/m/a/main_1_1.jpg'),(602,106,0,34,'container2'),(603,121,0,34,'navy-chino'),(604,132,0,34,'2'),(605,133,0,34,'/m/a/main_1_1.jpg'),(606,206,0,34,'98% cotton, 2% elastane'),(612,73,0,35,'Timberland Lace-ups'),(613,84,0,35,'Timberland Lace-ups'),(614,86,0,35,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(615,87,0,35,'/i/m/image_30986434_97_620x757_0.jpg'),(616,88,0,35,'/i/m/image_30986434_97_620x757_0.jpg'),(617,89,0,35,'/i/m/image_30986434_97_620x757_0.jpg'),(618,106,0,35,'container2'),(619,121,0,35,'timberland-lace-ups'),(620,132,0,35,'2'),(621,133,0,35,'no_selection'),(622,206,0,35,'Textile'),(628,73,0,36,'Tommy Hilfiger'),(629,84,0,36,'Tommy Hilfiger'),(630,86,0,36,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(631,87,0,36,'/m/a/main_1_2.jpg'),(632,88,0,36,'/m/a/main_1_2.jpg'),(633,89,0,36,'/m/a/main_1_2.jpg'),(634,106,0,36,'container2'),(635,121,0,36,'tommy-hilfiger'),(636,132,0,36,'2'),(637,133,0,36,'/m/a/main_1_2.jpg'),(638,206,0,36,'98% cotton, 2% elastane'),(662,73,0,38,'Dark Grey Chino'),(663,84,0,38,'Dark Grey Chino'),(664,86,0,38,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(665,87,0,38,'/m/a/main_3.jpg'),(666,88,0,38,'/m/a/main_3.jpg'),(667,89,0,38,'/m/a/main_3.jpg'),(668,106,0,38,'container2'),(669,121,0,38,'dark-grey-chino'),(670,132,0,38,'2'),(671,133,0,38,'/m/a/main_3.jpg'),(672,206,0,38,'98% cotton, 2% elastane'),(710,73,0,41,'Seventy Transitional Jacket'),(711,84,0,41,'Seventy Transitional Jacket'),(712,86,0,41,'Seventy Transitional Jacket '),(713,106,0,41,'container2'),(714,121,0,41,'seventy-transitional-jacket'),(715,132,0,41,'2'),(717,73,0,42,'Black Chino'),(718,84,0,42,'Black Chino'),(719,86,0,42,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(720,106,0,42,'container2'),(721,121,0,42,'black-chino'),(722,132,0,42,'2'),(723,206,0,42,'98% cotton, 2% elastane'),(725,73,0,43,'Camper Lace-ups'),(726,84,0,43,'Camper Lace-ups'),(727,86,0,43,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(728,87,0,43,'/i/m/image_30947478_80_970x1182_0.jpg'),(729,88,0,43,'/i/m/image_30947478_80_970x1182_0.jpg'),(730,89,0,43,'/i/m/image_30947478_80_970x1182_0.jpg'),(731,106,0,43,'container2'),(732,121,0,43,'camper-lace-ups'),(733,132,0,43,'2'),(734,133,0,43,'/i/m/image_30947478_80_970x1182_0.jpg'),(735,206,0,43,'Leather'),(741,73,0,44,'Dark blue sunglasses'),(742,84,0,44,'Sunglasses'),(743,86,0,44,'Sunglasses Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: plastic\r\nPlease note: May only be returne'),(744,87,0,44,'/m/a/main_2.jpg'),(745,88,0,44,'/m/a/main_2.jpg'),(746,89,0,44,'/m/a/main_2.jpg'),(747,106,0,44,'container2'),(748,121,0,44,'dark-blue-sunglasses'),(749,132,0,44,'2'),(750,133,0,44,'/m/a/main_2.jpg'),(751,206,0,44,'Plastic'),(761,73,0,45,'Slim Fit Jeans – Eline'),(762,84,0,45,'Slim Fit Jeans – Eline'),(763,86,0,45,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a'),(764,87,0,45,'/i/m/image_31233103_34_970x1182_0.jpg'),(765,88,0,45,'/i/m/image_31233103_34_970x1182_0.jpg'),(766,89,0,45,'/i/m/image_31233103_34_970x1182_0.jpg'),(767,106,0,45,'container2'),(768,121,0,45,'slim-fit-jeans-eline'),(769,132,0,45,'2'),(770,133,0,45,'/i/m/image_31233103_34_970x1182_0.jpg'),(775,73,0,46,'Grey Sweat Pants'),(776,84,0,46,'Grey Sweat Pants'),(777,86,0,46,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(778,87,0,46,'/i/m/image_31134483_80_620x757_3.jpg'),(779,88,0,46,'/i/m/image_31134483_80_620x757_3.jpg'),(780,89,0,46,'/i/m/image_31134483_80_620x757_3.jpg'),(781,106,0,46,'container2'),(782,121,0,46,'grey-sweat-pants'),(783,132,0,46,'2'),(784,133,0,46,'no_selection'),(785,206,0,46,'80% cotton, 17% polyester, 3% elastane'),(791,73,0,47,'Black Knitted Pants'),(792,84,0,47,'Black Knitted Pants'),(793,86,0,47,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(794,87,0,47,'/i/m/image_31135088_10_620x757_3.jpg'),(795,88,0,47,'/i/m/image_31135088_10_620x757_3.jpg'),(796,89,0,47,'/i/m/image_31135088_10_620x757_3.jpg'),(797,106,0,47,'container2'),(798,121,0,47,'black-knitted-pants'),(799,132,0,47,'2'),(800,133,0,47,'no_selection'),(801,206,0,47,'60% cotton, 25% polyamide, 15% wool'),(815,73,0,48,'Green sunglasses'),(816,84,0,48,'Green sunglasses'),(817,86,0,48,'Green sunglasses Reference number: MB 657S\r\nMeasurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3\r\nExtras: logo appliqué(s), case included\r\nMaterial: tita'),(818,87,0,48,'/m/a/main_3_1.jpg'),(819,88,0,48,'/m/a/main_3_1.jpg'),(820,89,0,48,'/m/a/main_3_1.jpg'),(821,106,0,48,'container2'),(822,121,0,48,'green-sunglasses'),(823,132,0,48,'2'),(824,133,0,48,'/m/a/main_3_1.jpg'),(825,206,0,48,'Titanium'),(839,73,0,49,'Tan Corduroy Trousers'),(840,84,0,49,'Tan Corduroy Trousers'),(841,86,0,49,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(842,87,0,49,'/i/m/image_31231300_73_620x757_3.jpg'),(843,88,0,49,'/i/m/image_31231300_73_620x757_3.jpg'),(844,89,0,49,'/i/m/image_31231300_73_620x757_3.jpg'),(845,106,0,49,'container2'),(846,121,0,49,'tan-corduroy-trousers'),(847,132,0,49,'2'),(848,133,0,49,'no_selection'),(849,206,0,49,'98% cotton, 2% elastane'),(863,87,0,41,'/i/m/image_31261586_25_970x1182_0.jpg'),(864,88,0,41,'/i/m/image_31261586_25_970x1182_0.jpg'),(865,89,0,41,'/i/m/image_31261586_25_970x1182_0.jpg'),(866,133,0,41,'/i/m/image_31261586_25_970x1182_0.jpg'),(867,206,0,41,'Viscose'),(876,73,0,50,'Rino & Pelle Quilted Jacket'),(877,84,0,50,'Seventy Transitional Jacket'),(878,86,0,50,'Seventy Transitional Jacket '),(879,87,0,50,'/i/m/image_31220278_21_970x1182_0.jpg'),(880,88,0,50,'/i/m/image_31220278_21_970x1182_0.jpg'),(881,89,0,50,'/i/m/image_31220278_21_970x1182_0.jpg'),(882,106,0,50,'container2'),(883,121,0,50,'seventy-transitional-jacket-1'),(884,132,0,50,'2'),(885,133,0,50,'/i/m/image_31220278_21_970x1182_0.jpg'),(886,206,0,50,'100% polyamide'),(892,73,0,51,'Moss Cargo Pants'),(893,84,0,51,'Moss Cargo Pants'),(894,86,0,51,'Moss Cargo Pants Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets, '),(895,87,0,51,'/m/a/main_3_3.jpg'),(896,88,0,51,'/m/a/main_3_3.jpg'),(897,89,0,51,'/m/a/main_3_3.jpg'),(898,106,0,51,'container2'),(899,121,0,51,'moss-cargo-pants'),(900,132,0,51,'2'),(901,133,0,51,'/m/a/main_3_3.jpg'),(902,206,0,51,'98% cotton, 2% elastane'),(927,73,0,53,'Camel Dress Trousers – Glenn'),(928,84,0,53,'Camel Dress Trousers – Glenn'),(929,86,0,53,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(930,87,0,53,'/i/m/image_31207422_23_620x757_3.jpg'),(931,88,0,53,'/i/m/image_31207422_23_620x757_3.jpg'),(932,89,0,53,'/i/m/image_31207422_23_620x757_3.jpg'),(933,106,0,53,'container2'),(934,121,0,53,'camel-dress-trousers-glenn'),(935,132,0,53,'2'),(936,133,0,53,'no_selection'),(937,206,0,53,'98% cotton, 2% elastane'),(943,73,0,54,'Pumps'),(944,84,0,54,'Pumps'),(945,86,0,54,'Pumps Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(946,87,0,54,'/i/m/image_30950832_43_620x757_0.jpg'),(947,88,0,54,'/i/m/image_30950832_43_620x757_0.jpg'),(948,89,0,54,'/i/m/image_30950832_43_620x757_0.jpg'),(949,106,0,54,'container2'),(950,121,0,54,'pumps'),(951,132,0,54,'2'),(952,133,0,54,'/i/m/image_30950832_43_620x757_0.jpg'),(953,206,0,54,'Leather'),(967,73,0,55,'Black Sweat Pants'),(968,84,0,55,'Black Sweat Pants'),(969,86,0,55,'Black Sweat Pants Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care ins'),(970,87,0,55,'/m/a/main_3_5.jpg'),(971,88,0,55,'/m/a/main_3_5.jpg'),(972,89,0,55,'/m/a/main_3_5.jpg'),(973,106,0,55,'container2'),(974,121,0,55,'black-sweat-pants'),(975,132,0,55,'2'),(976,133,0,55,'/m/a/main_3_5.jpg'),(977,206,0,55,'80% cotton, 20% polyester'),(987,73,0,56,'Strenesse Elegant Jacket'),(988,84,0,56,'Seventy Transitional Jacket'),(989,86,0,56,'Seventy Transitional Jacket '),(990,87,0,56,'/i/m/image_30811612_22_970x1182_0.jpg'),(991,88,0,56,'/i/m/image_30811612_22_970x1182_0.jpg'),(992,89,0,56,'/i/m/image_30811612_22_970x1182_0.jpg'),(993,106,0,56,'container2'),(994,121,0,56,'seventy-transitional-jacket-2'),(995,132,0,56,'2'),(996,133,0,56,'/i/m/image_30811612_22_970x1182_0.jpg'),(997,206,0,56,'77% viscose, 19% polyamide'),(1004,73,0,57,'Slim Fit Jeans – Jane'),(1005,84,0,57,'Slim Fit Jeans – Jane'),(1006,86,0,57,'Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPo'),(1007,87,0,57,'no_selection'),(1008,88,0,57,'/i/m/image_30930729_37_970x1182_0.jpg'),(1009,89,0,57,'/i/m/image_30930729_37_970x1182_0.jpg'),(1010,106,0,57,'container2'),(1011,121,0,57,'slim-fit-jeans-jane'),(1012,132,0,57,'2'),(1013,133,0,57,'/i/m/image_30930729_37_970x1182_0.jpg'),(1026,73,0,58,'Black sunglasses'),(1027,84,0,58,'Black sunglasses'),(1028,86,0,58,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(1029,87,0,58,'/m/a/main_4.jpg'),(1030,88,0,58,'/m/a/main_4.jpg'),(1031,89,0,58,'/m/a/main_4.jpg'),(1032,106,0,58,'container2'),(1033,121,0,58,'black-sunglasses'),(1034,132,0,58,'2'),(1035,133,0,58,'/m/a/main_4.jpg'),(1036,206,0,58,'Plastic'),(1046,73,0,59,'Escada Gilet'),(1047,84,0,59,'Seventy Transitional Jacket'),(1048,86,0,59,'Seventy Transitional Jacket '),(1049,87,0,59,'/i/m/image_30838511_25_970x1182_0.jpg'),(1050,88,0,59,'/i/m/image_30838511_25_970x1182_0.jpg'),(1051,89,0,59,'/i/m/image_30838511_25_970x1182_0.jpg'),(1052,106,0,59,'container2'),(1053,121,0,59,'seventy-transitional-jacket-3'),(1054,132,0,59,'2'),(1055,133,0,59,'/i/m/image_30838511_25_970x1182_0.jpg'),(1056,206,0,59,'100% virgin wool'),(1063,73,0,60,'Silver Pumps'),(1064,84,0,60,'Black Chino'),(1065,86,0,60,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(1066,106,0,60,'container2'),(1067,121,0,60,'black-chino-1'),(1068,132,0,60,'2'),(1069,206,0,60,'Leather'),(1080,73,0,61,'Violet sunglasses'),(1081,84,0,61,'Black sunglasses'),(1082,86,0,61,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(1083,87,0,61,'/m/a/main_4_2.jpg'),(1084,88,0,61,'/m/a/main_4_2.jpg'),(1085,89,0,61,'/m/a/main_4_2.jpg'),(1086,106,0,61,'container2'),(1087,121,0,61,'black-sunglasses-1'),(1088,132,0,61,'2'),(1089,133,0,61,'/m/a/main_4_2.jpg'),(1090,206,0,61,'Plastic'),(1115,73,0,63,'Blue Straight Leg Jeans'),(1116,84,0,63,'Blue Straight Leg Jeans'),(1117,86,0,63,'Blue Straight Leg Jeans Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial'),(1118,87,0,63,'/i/m/image_31253491_30_970x1182_0.jpg'),(1119,88,0,63,'/i/m/image_31253491_30_970x1182_0.jpg'),(1120,89,0,63,'/i/m/image_31253491_30_970x1182_0.jpg'),(1121,106,0,63,'container2'),(1122,121,0,63,'blue-straight-leg-jeans'),(1123,132,0,63,'2'),(1124,133,0,63,'/i/m/image_31253491_30_970x1182_0.jpg'),(1125,206,0,63,'81% cotton, 17% Elastomultiester, 2% elastane'),(1131,87,0,60,'/i/m/image_31074190_83_620x757_0.jpg'),(1132,88,0,60,'/i/m/image_31074190_83_620x757_0.jpg'),(1133,89,0,60,'/i/m/image_31074190_83_620x757_0.jpg'),(1134,133,0,60,'/i/m/image_31074190_83_620x757_0.jpg'),(1147,73,0,64,'Dolomite Quilted Jacket'),(1148,84,0,64,'Seventy Transitional Jacket'),(1149,86,0,64,'Seventy Transitional Jacket '),(1150,87,0,64,'/i/m/image_31266871_25_970x1182_0.jpg'),(1151,88,0,64,'/i/m/image_31266871_25_970x1182_0.jpg'),(1152,89,0,64,'/i/m/image_31266871_25_970x1182_0.jpg'),(1153,106,0,64,'container2'),(1154,121,0,64,'seventy-transitional-jacket-4'),(1155,132,0,64,'2'),(1156,133,0,64,'/i/m/image_31266871_25_970x1182_0.jpg'),(1157,206,0,64,'100% polyamide'),(1172,73,0,65,'Nude sunglasses'),(1173,84,0,65,'Black sunglasses'),(1174,86,0,65,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(1175,87,0,65,'/m/a/main_5.jpg'),(1176,88,0,65,'/m/a/main_5.jpg'),(1177,89,0,65,'/m/a/main_5.jpg'),(1178,106,0,65,'container2'),(1179,121,0,65,'black-sunglasses-2'),(1180,132,0,65,'2'),(1181,133,0,65,'/m/a/main_5.jpg'),(1182,206,0,65,'Plastic'),(1189,73,0,66,'Dark Blue Slim Fit Jeans'),(1190,84,0,66,'Dark Blue Slim Fit Jeans'),(1191,86,0,66,'Dark Blue Slim Fit Jeans Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt lo'),(1192,87,0,66,'/i/m/image_31265248_31_970x1182_0.jpg'),(1193,88,0,66,'/i/m/image_31265248_31_970x1182_0.jpg'),(1194,89,0,66,'/i/m/image_31265248_31_970x1182_0.jpg'),(1195,106,0,66,'container2'),(1196,121,0,66,'dark-blue-slim-fit-jeans'),(1197,132,0,66,'2'),(1198,133,0,66,'/i/m/image_31265248_31_970x1182_0.jpg'),(1199,206,0,66,'100% cotton'),(1223,73,0,68,'Blue Slim Fit Jeans'),(1224,84,0,68,'Blue Slim Fit Jeans'),(1225,86,0,68,'Blue Slim Fit Jeans Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the'),(1226,87,0,68,'/i/m/image_31158529_30_970x1182_0.jpg'),(1227,88,0,68,'/i/m/image_31158529_30_970x1182_0.jpg'),(1228,89,0,68,'/i/m/image_31158529_30_970x1182_0.jpg'),(1229,106,0,68,'container2'),(1230,121,0,68,'blue-slim-fit-jeans'),(1231,132,0,68,'2'),(1232,133,0,68,'/i/m/image_31158529_30_970x1182_0.jpg'),(1233,206,0,68,'99% cotton, 1% elastane'),(1263,87,0,42,'/i/m/image_31189077_10_620x757_3.jpg'),(1264,88,0,42,'/i/m/image_31189077_10_620x757_3.jpg'),(1265,89,0,42,'/i/m/image_31189077_10_620x757_3.jpg'),(1266,133,0,42,'no_selection'),(1287,73,0,69,'Silk Pumps'),(1288,84,0,69,'Black Chino'),(1289,86,0,69,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(1290,87,0,69,'/i/m/image_31103364_21_620x757_0.jpg'),(1291,88,0,69,'/i/m/image_31103364_21_620x757_0.jpg'),(1292,89,0,69,'/i/m/image_31103364_21_620x757_0.jpg'),(1293,106,0,69,'container2'),(1294,121,0,69,'black-chino-2'),(1295,132,0,69,'2'),(1296,133,0,69,'/i/m/image_31103364_21_620x757_0.jpg'),(1297,206,0,69,'Synthetic'),(1356,73,0,70,'Calvin Klein Jeans Down Jacket'),(1357,84,0,70,'Seventy Transitional Jacket'),(1358,86,0,70,'Seventy Transitional Jacket '),(1359,87,0,70,'/i/m/image_31291013_25_970x1182_0.jpg'),(1360,88,0,70,'/i/m/image_31291013_25_970x1182_0.jpg'),(1361,89,0,70,'/i/m/image_31291013_25_970x1182_0.jpg'),(1362,106,0,70,'container2'),(1363,121,0,70,'seventy-transitional-jacket-5'),(1364,132,0,70,'2'),(1365,133,0,70,'/i/m/image_31291013_25_970x1182_0.jpg'),(1366,206,0,70,'100% polyamide'),(1373,73,0,71,'Khaki Straight Leg Jeans Cadiz'),(1374,84,0,71,'Khaki Straight Leg Jeans Cadiz'),(1375,86,0,71,'Khaki Straight Leg Jeans Cadiz Cut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern:'),(1376,87,0,71,'/i/m/image_31204067_55_970x1182_0.jpg'),(1377,88,0,71,'/i/m/image_31204067_55_970x1182_0.jpg'),(1378,89,0,71,'/i/m/image_31204067_55_970x1182_0.jpg'),(1379,106,0,71,'container2'),(1380,121,0,71,'khaki-straight-leg-jeans-cadiz'),(1381,132,0,71,'2'),(1382,133,0,71,'/i/m/image_31204067_55_970x1182_0.jpg'),(1383,206,0,71,'67% cotton, 30% polyester, 3% elastane'),(1397,73,0,72,'Colmar Soft Down Jacket'),(1398,84,0,72,'Seventy Transitional Jacket'),(1399,86,0,72,'Seventy Transitional Jacket '),(1400,87,0,72,'/i/m/image_31319864_25_970x1182_0.jpg'),(1401,88,0,72,'/i/m/image_31319864_25_970x1182_0.jpg'),(1402,89,0,72,'/i/m/image_31319864_25_970x1182_0.jpg'),(1403,106,0,72,'container2'),(1404,121,0,72,'seventy-transitional-jacket-6'),(1405,132,0,72,'2'),(1406,133,0,72,'/i/m/image_31319864_25_970x1182_0.jpg'),(1407,206,0,72,'100% polyamide'),(1426,73,0,73,'Rich & Royal Transitional Jacket'),(1427,84,0,73,'Seventy Transitional Jacket'),(1428,86,0,73,'Seventy Transitional Jacket '),(1429,87,0,73,'/i/m/image_31151579_25_970x1182_0.jpg'),(1430,88,0,73,'/i/m/image_31151579_25_970x1182_0.jpg'),(1431,89,0,73,'/i/m/image_31151579_25_970x1182_0.jpg'),(1432,106,0,73,'container2'),(1433,121,0,73,'seventy-transitional-jacket-7'),(1434,132,0,73,'2'),(1435,133,0,73,'/i/m/image_31151579_25_970x1182_0.jpg'),(1436,206,0,73,'45% cotton, 44% polyacrylic, 11% polyester'),(1443,73,0,74,'Rose gold diorsorealrise'),(1444,84,0,74,'Rose gold diorsorealrise'),(1445,86,0,74,'Rose gold diorsorealrise Model: Diorsorealrise\r\nMeasurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3\r\nExtras: patterned bow, patterned border, logo engra'),(1446,87,0,74,'/m/a/main_5_2.jpg'),(1447,88,0,74,'/m/a/main_5_2.jpg'),(1448,89,0,74,'/m/a/main_5_2.jpg'),(1449,106,0,74,'container2'),(1450,121,0,74,'rose-gold-diorsorealrise'),(1451,132,0,74,'2'),(1452,133,0,74,'/m/a/main_5_2.jpg'),(1453,206,0,74,'plastic, metal'),(1471,73,0,75,'Over The Knee Boots'),(1472,84,0,75,'Black Chino'),(1473,86,0,75,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(1474,87,0,75,'/i/m/image_31196404_83_620x757_0.jpg'),(1475,88,0,75,'/i/m/image_31196404_83_620x757_0.jpg'),(1476,89,0,75,'/i/m/image_31196404_83_620x757_0.jpg'),(1477,106,0,75,'container2'),(1478,121,0,75,'black-chino-3'),(1479,132,0,75,'2'),(1480,133,0,75,'/i/m/image_31196404_83_620x757_0.jpg'),(1481,206,0,75,'Leather'),(1488,73,0,76,'Grey Slim Fit Jeans Cirrus'),(1489,84,0,76,'Grey Slim Fit Jeans Cirrus'),(1490,86,0,76,'Grey Slim Fit Jeans Cirrus Manufacturers product information: skinnyCut: slim, tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)Waistband: belt loop and zip with snaps on '),(1491,87,0,76,'/i/m/image_31304863_80_970x1182_0.jpg'),(1492,88,0,76,'/i/m/image_31304863_80_970x1182_0.jpg'),(1493,89,0,76,'/i/m/image_31304863_80_970x1182_0.jpg'),(1494,106,0,76,'container2'),(1495,121,0,76,'grey-slim-fit-jeans-cirrus'),(1496,132,0,76,'2'),(1497,133,0,76,'/i/m/image_31304863_80_970x1182_0.jpg'),(1498,206,0,76,'98% cotton, 2% elastane'),(1512,73,0,77,'Swan Transitional Jacket'),(1513,84,0,77,'Seventy Transitional Jacket'),(1514,86,0,77,'Seventy Transitional Jacket '),(1515,87,0,77,'/i/m/image_31292416_21_970x1182_0.jpg'),(1516,88,0,77,'/i/m/image_31292416_21_970x1182_0.jpg'),(1517,89,0,77,'/i/m/image_31292416_21_970x1182_0.jpg'),(1518,106,0,77,'container2'),(1519,121,0,77,'seventy-transitional-jacket-8'),(1520,132,0,77,'2'),(1521,133,0,77,'/i/m/image_31292416_21_970x1182_0.jpg'),(1522,206,0,77,'100% polyester'),(1529,73,0,78,'Black Standard Jeans'),(1530,84,0,78,'Black Standard Jeans'),(1531,86,0,78,'Black Standard Jeans Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMa'),(1532,87,0,78,'/i/m/image_31124658_10_970x1182_0.jpg'),(1533,88,0,78,'/i/m/image_31124658_10_970x1182_0.jpg'),(1534,89,0,78,'/i/m/image_31124658_10_970x1182_0.jpg'),(1535,106,0,78,'container2'),(1536,121,0,78,'black-standard-jeans'),(1537,132,0,78,'2'),(1538,133,0,78,'/i/m/image_31124658_10_970x1182_0.jpg'),(1539,206,0,78,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(1549,73,0,79,'Blue Straight Leg Jeans – Rob'),(1550,84,0,79,'Medium Blue Straight Leg Jeans – Rob'),(1551,86,0,79,'Medium Blue Straight Leg Jeans – Rob Model: RobManufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: bel'),(1552,87,0,79,'/m/a/main_5_3.jpg'),(1553,88,0,79,'/m/a/main_5_3.jpg'),(1554,89,0,79,'/m/a/main_5_3.jpg'),(1555,106,0,79,'container2'),(1556,121,0,79,'medium-blue-straight-leg-jeans-rob'),(1557,132,0,79,'2'),(1558,133,0,79,'/m/a/main_5_3.jpg'),(1559,206,0,79,'99% cotton, 1% elastane'),(1569,73,0,80,'Comma Casual Identity Quilted Jacket'),(1570,84,0,80,'Seventy Transitional Jacket'),(1571,86,0,80,'Seventy Transitional Jacket '),(1572,87,0,80,'/i/m/image_31239294_22_970x1182_0.jpg'),(1573,88,0,80,'/i/m/image_31239294_22_970x1182_0.jpg'),(1574,89,0,80,'/i/m/image_31239294_22_970x1182_0.jpg'),(1575,106,0,80,'container2'),(1576,121,0,80,'seventy-transitional-jacket-9'),(1577,132,0,80,'2'),(1578,133,0,80,'/i/m/image_31239294_22_970x1182_0.jpg'),(1579,206,0,80,' 68% cotton, 32% polyamide'),(1598,73,0,81,'Lawrence Grey Cotton Jacket'),(1599,84,0,81,'Seventy Transitional Jacket'),(1600,86,0,81,'Seventy Transitional Jacket '),(1601,87,0,81,'/i/m/image_30805166_20_970x1182_0.jpg'),(1602,88,0,81,'/i/m/image_30805166_20_970x1182_0.jpg'),(1603,89,0,81,'/i/m/image_30805166_20_970x1182_0.jpg'),(1604,106,0,81,'container2'),(1605,121,0,81,'seventy-transitional-jacket-10'),(1606,132,0,81,'2'),(1607,133,0,81,'/i/m/image_30805166_20_970x1182_0.jpg'),(1608,206,0,81,'90% cotton, 10% polyester'),(1643,73,0,82,'Heeled Sandals'),(1644,84,0,82,'Black Chino'),(1645,86,0,82,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(1646,87,0,82,'/i/m/image_31197648_45_620x757_0.jpg'),(1647,88,0,82,'/i/m/image_31197648_45_620x757_0.jpg'),(1648,89,0,82,'/i/m/image_31197648_45_620x757_0.jpg'),(1649,106,0,82,'container2'),(1650,121,0,82,'black-chino-4'),(1651,132,0,82,'2'),(1652,133,0,82,'/i/m/image_31197648_45_620x757_0.jpg'),(1653,206,0,82,'Synthetic'),(1664,73,0,83,'Cipo & Baxx Jacket'),(1665,84,0,83,'Seventy Transitional Jacket'),(1666,86,0,83,'Seventy Transitional Jacket '),(1667,87,0,83,'/i/m/image_30988045_20_970x1182_0.jpg'),(1668,88,0,83,'/i/m/image_30988045_20_970x1182_0.jpg'),(1669,89,0,83,'/i/m/image_30988045_20_970x1182_0.jpg'),(1670,106,0,83,'container2'),(1671,121,0,83,'seventy-transitional-jacket-11'),(1672,132,0,83,'2'),(1673,133,0,83,'/i/m/image_30988045_20_970x1182_0.jpg'),(1674,206,0,83,'100% cotton'),(1693,73,0,84,'Sneakers'),(1694,84,0,84,'Black Chino'),(1695,86,0,84,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(1696,87,0,84,'/i/m/image_31093629_20_620x757_0.jpg'),(1697,88,0,84,'/i/m/image_31093629_20_620x757_0.jpg'),(1698,89,0,84,'/i/m/image_31093629_20_620x757_0.jpg'),(1699,106,0,84,'container2'),(1700,121,0,84,'black-chino-5'),(1701,132,0,84,'2'),(1702,133,0,84,'/i/m/image_31093629_20_620x757_0.jpg'),(1703,206,0,84,'Synthetic'),(1726,73,0,85,'Blue Slim Fit Jeans – Cliff'),(1727,84,0,85,'Medium Blue Slim Fit Jeans – Cliff'),(1728,86,0,85,'Medium Blue Slim Fit Jeans – Cliff Model: CliffManufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)'),(1729,87,0,85,'/m/a/main_5_4.jpg'),(1730,88,0,85,'/m/a/main_5_4.jpg'),(1731,89,0,85,'/m/a/main_5_4.jpg'),(1732,106,0,85,'container2'),(1733,121,0,85,'medium-blue-slim-fit-jeans-cliff'),(1734,132,0,85,'2'),(1735,133,0,85,'/m/a/main_5_4.jpg'),(1736,206,0,85,'98% cotton, 2% elastane'),(1754,73,0,86,'Sneakers'),(1755,84,0,86,'Black Chino'),(1756,86,0,86,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(1757,87,0,86,'/i/m/image_31333018_65_620x757_0.jpg'),(1758,88,0,86,'/i/m/image_31333018_65_620x757_0.jpg'),(1759,89,0,86,'/i/m/image_31333018_65_620x757_0.jpg'),(1760,106,0,86,'container2'),(1761,121,0,86,'black-chino-6'),(1762,132,0,86,'2'),(1763,133,0,86,'/i/m/image_31333018_65_620x757_0.jpg'),(1764,206,0,86,'Synthetic'),(1779,73,0,87,'Diesel Jacket'),(1780,84,0,87,'Seventy Transitional Jacket'),(1781,86,0,87,'Seventy Transitional Jacket '),(1782,87,0,87,'/i/m/image_31302817_21_970x1182_0-3.jpg'),(1783,88,0,87,'/i/m/image_31302817_21_970x1182_0-3.jpg'),(1784,89,0,87,'/i/m/image_31302817_21_970x1182_0-3.jpg'),(1785,106,0,87,'container2'),(1786,121,0,87,'seventy-transitional-jacket-12'),(1787,132,0,87,'2'),(1788,133,0,87,'/i/m/image_31302817_21_970x1182_0-3.jpg'),(1789,206,0,87,'83% polyester, 17% cotton'),(1796,73,0,88,'Dark Blue Straight Leg Jeans'),(1797,84,0,88,'Dark Blue Straight Leg Jeans – 700'),(1798,86,0,88,'Dark Blue Straight Leg Jeans – 700 Model: 700Manufacturers product information: regular fitCut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)Waistband: belt lo'),(1799,87,0,88,'/m/a/main_5_5.jpg'),(1800,88,0,88,'/m/a/main_5_5.jpg'),(1801,89,0,88,'/m/a/main_5_5.jpg'),(1802,106,0,88,'container2'),(1803,121,0,88,'dark-blue-straight-leg-jeans-700'),(1804,132,0,88,'2'),(1805,133,0,88,'/m/a/main_5_5.jpg'),(1806,206,0,88,'98% cotton, 2% elastane'),(1820,73,0,89,'Sneakers'),(1821,84,0,89,'Black Chino'),(1822,86,0,89,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(1823,87,0,89,'/i/m/image_30945868_82_620x757_0.jpg'),(1824,88,0,89,'/i/m/image_30945868_82_620x757_0.jpg'),(1825,89,0,89,'/i/m/image_30945868_82_620x757_0.jpg'),(1826,106,0,89,'container2'),(1827,121,0,89,'black-chino-7'),(1828,132,0,89,'2'),(1829,133,0,89,'/i/m/image_30945868_82_620x757_0.jpg'),(1830,206,0,89,'Synthetic'),(1885,73,0,91,'People of Shibuya Transitional Jacket'),(1886,84,0,91,'Seventy Transitional Jacket'),(1887,86,0,91,'Seventy Transitional Jacket '),(1888,87,0,91,'/i/m/image_31091479_21_970x1182_0.jpg'),(1889,88,0,91,'/i/m/image_31091479_21_970x1182_0.jpg'),(1890,89,0,91,'/i/m/image_31091479_21_970x1182_0.jpg'),(1891,106,0,91,'container2'),(1892,121,0,91,'seventy-transitional-jacket-13'),(1893,132,0,91,'2'),(1894,133,0,91,'/i/m/image_31091479_21_970x1182_0.jpg'),(1895,206,0,91,'89% polyester, 11% elastane'),(1910,73,0,92,'Boss Denim Jacket'),(1911,84,0,92,'Seventy Transitional Jacket'),(1912,86,0,92,'Seventy Transitional Jacket '),(1913,87,0,92,'/i/m/image_31250794_20_970x1182_0.jpg'),(1914,88,0,92,'/i/m/image_31250794_20_970x1182_0.jpg'),(1915,89,0,92,'/i/m/image_31250794_20_970x1182_0.jpg'),(1916,106,0,92,'container2'),(1917,121,0,92,'seventy-transitional-jacket-14'),(1918,132,0,92,'2'),(1919,133,0,92,'/i/m/image_31250794_20_970x1182_0.jpg'),(1920,206,0,92,'98% cotton, 2% elastane'),(1935,73,0,93,'Puma Transitional Jacket'),(1936,84,0,93,'Seventy Transitional Jacket'),(1937,86,0,93,'Seventy Transitional Jacket '),(1938,87,0,93,'/i/m/image_31219211_25_970x1182_0.jpg'),(1939,88,0,93,'/i/m/image_31219211_25_970x1182_0.jpg'),(1940,89,0,93,'/i/m/image_31219211_25_970x1182_0.jpg'),(1941,106,0,93,'container2'),(1942,121,0,93,'seventy-transitional-jacket-15'),(1943,132,0,93,'2'),(1944,133,0,93,'/i/m/image_31219211_25_970x1182_0.jpg'),(1945,206,0,93,'100% polyester'),(1980,73,0,95,'Hilfiger Denim Transitional Jacket'),(1981,84,0,95,'Seventy Transitional Jacket'),(1982,86,0,95,'Seventy Transitional Jacket '),(1983,87,0,95,'/i/m/image_31166144_20_970x1182_0.jpg'),(1984,88,0,95,'/i/m/image_31166144_20_970x1182_0.jpg'),(1985,89,0,95,'/i/m/image_31166144_20_970x1182_0.jpg'),(1986,106,0,95,'container2'),(1987,121,0,95,'seventy-transitional-jacket-16'),(1988,132,0,95,'2'),(1989,133,0,95,'/i/m/image_31166144_20_970x1182_0.jpg'),(1990,206,0,95,'100% polyamide'),(2013,73,0,97,'Dark Blue Julyen'),(2014,84,0,97,'Dark Blue Julyen'),(2015,86,0,97,'Dark Blue Julyen Model: JulyenManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPocke'),(2016,87,0,97,'/m/a/main_5_8.jpg'),(2017,88,0,97,'/m/a/main_5_8.jpg'),(2018,89,0,97,'/m/a/main_5_8.jpg'),(2019,106,0,97,'container2'),(2020,121,0,97,'dark-blue-julyen'),(2021,132,0,97,'2'),(2022,133,0,97,'/m/a/main_5_8.jpg'),(2023,206,0,97,'98% cotton, 2% elastane'),(2041,73,0,98,'Steinbock Transitional Jacket'),(2042,84,0,98,'Seventy Transitional Jacket'),(2043,86,0,98,'Seventy Transitional Jacket '),(2044,87,0,98,'/i/m/image_31176055_22_970x1182_0.jpg'),(2045,88,0,98,'/i/m/image_31176055_22_970x1182_0.jpg'),(2046,89,0,98,'/i/m/image_31176055_22_970x1182_0.jpg'),(2047,106,0,98,'container2'),(2048,121,0,98,'seventy-transitional-jacket-17'),(2049,132,0,98,'2'),(2050,133,0,98,'/i/m/image_31176055_22_970x1182_0.jpg'),(2051,206,0,98,'100% polyamide'),(2058,73,0,99,'Navy John 16511'),(2059,84,0,99,'Navy John 16511'),(2060,86,0,99,'Navy John 16511 Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with s'),(2061,87,0,99,'/3/e/3e3r4r3e2ww.jpg'),(2062,88,0,99,'/3/e/3e3r4r3e2ww.jpg'),(2063,89,0,99,'/3/e/3e3r4r3e2ww.jpg'),(2064,106,0,99,'container2'),(2065,121,0,99,'navy-john-16511'),(2066,132,0,99,'2'),(2067,133,0,99,'no_selection'),(2068,206,0,99,'97% cotton, 3% elastane'),(2082,73,0,100,'Jack & Jones Transitional Jacket'),(2083,84,0,100,'Seventy Transitional Jacket'),(2084,86,0,100,'Seventy Transitional Jacket '),(2085,87,0,100,'/i/m/image_31207365_20_970x1182_0.jpg'),(2086,88,0,100,'/i/m/image_31207365_20_970x1182_0.jpg'),(2087,89,0,100,'/i/m/image_31207365_20_970x1182_0.jpg'),(2088,106,0,100,'container2'),(2089,121,0,100,'seventy-transitional-jacket-18'),(2090,132,0,100,'2'),(2091,133,0,100,'/i/m/image_31207365_20_970x1182_0.jpg'),(2092,206,0,100,'100% polyamide'),(2119,73,0,101,'Lawrence Grey Rollneck Pullover'),(2120,84,0,101,'Lawrence Grey Rollneck Pullover'),(2121,86,0,101,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(2122,87,0,101,'/i/m/image_31167823_74_970x1182_0.jpg'),(2123,88,0,101,'/i/m/image_31167823_74_970x1182_0.jpg'),(2124,89,0,101,'/i/m/image_31167823_74_970x1182_0.jpg'),(2125,106,0,101,'container2'),(2126,121,0,101,'lawrence-grey-rollneck-pullover'),(2127,132,0,101,'2'),(2128,133,0,101,'/i/m/image_31167823_74_970x1182_0.jpg'),(2129,206,0,101,'50% merino, 50% acrylic'),(2143,73,0,102,'Calvin Klein Wool Jumper'),(2144,84,0,102,'Lawrence Grey Rollneck Pullover'),(2145,86,0,102,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(2146,87,0,102,'/i/m/image_31226241_25_970x1182_0.jpg'),(2147,88,0,102,'/i/m/image_31226241_25_970x1182_0.jpg'),(2148,89,0,102,'/i/m/image_31226241_25_970x1182_0.jpg'),(2149,106,0,102,'container2'),(2150,121,0,102,'lawrence-grey-rollneck-pullover-1'),(2151,132,0,102,'2'),(2152,133,0,102,'/i/m/image_31226241_25_970x1182_0.jpg'),(2153,206,0,102,'100% wool'),(2172,73,0,103,'Tommy Hilfiger Long-sleeved Jumper'),(2173,84,0,103,'Lawrence Grey Rollneck Pullover'),(2174,86,0,103,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(2175,87,0,103,'/i/m/image_31231309_25_970x1182_0.jpg'),(2176,88,0,103,'/i/m/image_31231309_25_970x1182_0.jpg'),(2177,89,0,103,'/i/m/image_31231309_25_970x1182_0.jpg'),(2178,106,0,103,'container2'),(2179,121,0,103,'lawrence-grey-rollneck-pullover-2'),(2180,132,0,103,'2'),(2181,133,0,103,'/i/m/image_31231309_25_970x1182_0.jpg'),(2182,206,0,103,'63% cotton, 27% polyamide, 10% wool'),(2201,73,0,104,'Gabba Long-sleeved Jumper'),(2202,84,0,104,'Lawrence Grey Rollneck Pullover'),(2203,86,0,104,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(2204,87,0,104,'/i/m/image_31273656_25_970x1182_0.jpg'),(2205,88,0,104,'/i/m/image_31273656_25_970x1182_0.jpg'),(2206,89,0,104,'/i/m/image_31273656_25_970x1182_0.jpg'),(2207,106,0,104,'container2'),(2208,121,0,104,'lawrence-grey-rollneck-pullover-3'),(2209,132,0,104,'2'),(2210,133,0,104,'/i/m/image_31273656_25_970x1182_0.jpg'),(2211,206,0,104,'70% cotton, 30% linen'),(2230,73,0,105,'Max Tonso Cashmere Pullover'),(2231,84,0,105,'Lawrence Grey Rollneck Pullover'),(2232,86,0,105,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(2233,87,0,105,'/i/m/image_31343872_25_970x1182_0.jpg'),(2234,88,0,105,'/i/m/image_31343872_25_970x1182_0.jpg'),(2235,89,0,105,'/i/m/image_31343872_25_970x1182_0.jpg'),(2236,106,0,105,'container2'),(2237,121,0,105,'lawrence-grey-rollneck-pullover-4'),(2238,132,0,105,'2'),(2239,133,0,105,'/i/m/image_31343872_25_970x1182_0.jpg'),(2240,206,0,105,' 100% cashmere'),(2286,73,0,106,'Lawrence Grey Cashmere Pullover'),(2287,84,0,106,'Lawrence Grey Rollneck Pullover'),(2288,86,0,106,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(2289,87,0,106,'/i/m/image_31145394_21_970x1182_0.jpg'),(2290,88,0,106,'/i/m/image_31145394_21_970x1182_0.jpg'),(2291,89,0,106,'/i/m/image_31145394_21_970x1182_0.jpg'),(2292,106,0,106,'container2'),(2293,121,0,106,'lawrence-grey-rollneck-pullover-5'),(2294,132,0,106,'2'),(2295,133,0,106,'/i/m/image_31145394_21_970x1182_0.jpg'),(2296,206,0,106,' 100% cashmere'),(2315,73,0,107,'Dine\'n\'Dance Cashmere Pullover'),(2316,84,0,107,'Lawrence Grey Rollneck Pullover'),(2317,86,0,107,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(2318,87,0,107,'/i/m/image_31218012_21_970x1182_0.jpg'),(2319,88,0,107,'/i/m/image_31218012_21_970x1182_0.jpg'),(2320,89,0,107,'/i/m/image_31218012_21_970x1182_0.jpg'),(2321,106,0,107,'container2'),(2322,121,0,107,'lawrence-grey-rollneck-pullover-6'),(2323,132,0,107,'2'),(2324,133,0,107,'/i/m/image_31218012_21_970x1182_0.jpg'),(2325,206,0,107,' 100% cashmere'),(2340,73,0,108,'81 Hours Cashmere Pullover'),(2341,84,0,108,'Lawrence Grey Rollneck Pullover'),(2342,86,0,108,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(2343,87,0,108,'/i/m/image_31028523_81_970x1182_0_1.jpg'),(2344,88,0,108,'/i/m/image_31028523_81_970x1182_0_1.jpg'),(2345,89,0,108,'/i/m/image_31028523_81_970x1182_0_1.jpg'),(2346,106,0,108,'container2'),(2347,121,0,108,'lawrence-grey-rollneck-pullover-7'),(2348,132,0,108,'2'),(2349,133,0,108,'/i/m/image_31028523_81_970x1182_0_1.jpg'),(2350,206,0,108,' 100% cashmere'),(2369,73,0,109,'UNQ Linen Dress'),(2370,84,0,109,'UNQ Linen Dress'),(2371,86,0,109,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(2372,87,0,109,'/i/m/image_31262293_21_970x1182_0.jpg'),(2373,88,0,109,'/i/m/image_31262293_21_970x1182_0.jpg'),(2374,89,0,109,'/i/m/image_31262293_21_970x1182_0.jpg'),(2375,106,0,109,'container2'),(2376,121,0,109,'unq-linen-dress'),(2377,132,0,109,'2'),(2378,133,0,109,'/i/m/image_31262293_21_970x1182_0.jpg'),(2379,206,0,109,'54% linen, 29% polyester, 15% viscose, 2% elastane'),(2389,73,0,110,'United Colors of Benetton  Knit Dress'),(2390,84,0,110,'UNQ Linen Dress'),(2391,86,0,110,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(2392,87,0,110,'/i/m/image_31104994_83_970x1182_0.jpg'),(2393,88,0,110,'/i/m/image_31104994_83_970x1182_0.jpg'),(2394,89,0,110,'/i/m/image_31104994_83_970x1182_0.jpg'),(2395,106,0,110,'container2'),(2396,121,0,110,'unq-linen-dress-1'),(2397,132,0,110,'2'),(2398,133,0,110,'/i/m/image_31104994_83_970x1182_0.jpg'),(2399,206,0,110,'50% cotton, 50% polyacrylic'),(2410,73,0,111,'Taupe Leather Belt'),(2411,84,0,111,'Taupe Leather Belt'),(2412,86,0,111,'Taupe Leather Belt Measurements for size EU 95: width approx. 3,3 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: suede\r\nMaterial: leather'),(2413,87,0,111,'/m/a/main_6.jpg'),(2414,88,0,111,'/m/a/main_6.jpg'),(2415,89,0,111,'/m/a/main_6.jpg'),(2416,106,0,111,'container2'),(2417,121,0,111,'taupe-leather-belt'),(2418,132,0,111,'2'),(2419,133,0,111,'/m/a/main_6.jpg'),(2420,206,0,111,'leather'),(2454,73,0,112,'Weise Midi Dress'),(2455,84,0,112,'UNQ Linen Dress'),(2456,86,0,112,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(2457,87,0,112,'/i/m/image_31268637_45_970x1182_0.jpg'),(2458,88,0,112,'/i/m/image_31268637_45_970x1182_0.jpg'),(2459,89,0,112,'/i/m/image_31268637_45_970x1182_0.jpg'),(2460,106,0,112,'container2'),(2461,121,0,112,'unq-linen-dress-2'),(2462,132,0,112,'2'),(2463,133,0,112,'/i/m/image_31268637_45_970x1182_0.jpg'),(2464,206,0,112,'37% polyacrylic, 28% viscose, 19% polyester, 16% wool'),(2479,73,0,113,'Max & Co. Mini Dress'),(2480,84,0,113,'UNQ Linen Dress'),(2481,86,0,113,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(2482,87,0,113,'/i/m/image_31280337_45_970x1182_0.jpg'),(2483,88,0,113,'/i/m/image_31280337_45_970x1182_0.jpg'),(2484,89,0,113,'/i/m/image_31280337_45_970x1182_0.jpg'),(2485,106,0,113,'container2'),(2486,121,0,113,'unq-linen-dress-3'),(2487,132,0,113,'2'),(2488,133,0,113,'/i/m/image_31280337_45_970x1182_0.jpg'),(2489,206,0,113,'59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre'),(2496,73,0,114,'Beige Leather Belt'),(2497,84,0,114,'Beige Leather Belt'),(2498,86,0,114,'Beige Leather Belt Measurements for size EU 85: width approx. 3,4 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: embossed logo\r\nMaterial: leather'),(2499,87,0,114,'/m/a/main_7.jpg'),(2500,88,0,114,'/m/a/main_7.jpg'),(2501,89,0,114,'/m/a/main_7.jpg'),(2502,106,0,114,'container2'),(2503,121,0,114,'beige-leather-belt'),(2504,132,0,114,'2'),(2505,133,0,114,'/m/a/main_7.jpg'),(2506,206,0,114,'leather'),(2524,73,0,115,'Just me Casual Dress'),(2525,84,0,115,'UNQ Linen Dress'),(2526,86,0,115,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(2527,87,0,115,'/i/m/image_31292070_22_970x1182_0.jpg'),(2528,88,0,115,'/i/m/image_31292070_22_970x1182_0.jpg'),(2529,89,0,115,'/i/m/image_31292070_22_970x1182_0.jpg'),(2530,106,0,115,'container2'),(2531,121,0,115,'unq-linen-dress-4'),(2532,132,0,115,'2'),(2533,133,0,115,'/i/m/image_31292070_22_970x1182_0.jpg'),(2534,206,0,115,'100% polyester'),(2541,73,0,116,'Blue Leather Belt'),(2542,84,0,116,'Medium blue Leather Belt'),(2543,86,0,116,'Medium blue Leather Belt Measurements for size EU 90: width approx. 3,5 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: Nubuck leather, partially textured surface\r\nMaterial: leather'),(2544,87,0,116,'/m/a/main_8.jpg'),(2545,88,0,116,'/m/a/main_8.jpg'),(2546,89,0,116,'/m/a/main_8.jpg'),(2547,106,0,116,'container2'),(2548,121,0,116,'medium-blue-leather-belt'),(2549,132,0,116,'2'),(2550,133,0,116,'/m/a/main_8.jpg'),(2551,206,0,116,'Leather'),(2561,73,0,117,'Lawrence Grey Knit Dress'),(2562,84,0,117,'UNQ Linen Dress'),(2563,86,0,117,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(2564,87,0,117,'/i/m/image_31167816_22_970x1182_0.jpg'),(2565,88,0,117,'/i/m/image_31167816_22_970x1182_0.jpg'),(2566,89,0,117,'/i/m/image_31167816_22_970x1182_0.jpg'),(2567,106,0,117,'container2'),(2568,121,0,117,'unq-linen-dress-5'),(2569,132,0,117,'2'),(2570,133,0,117,'/i/m/image_31167816_22_970x1182_0.jpg'),(2571,206,0,117,'100% merino'),(2586,73,0,118,'Light grey Leather Belt'),(2587,84,0,118,'Light grey Leather Belt'),(2588,86,0,118,'Light grey Leather Belt '),(2589,87,0,118,'/m/a/main_9.jpg'),(2590,88,0,118,'/m/a/main_9.jpg'),(2591,89,0,118,'/m/a/main_9.jpg'),(2592,106,0,118,'container2'),(2593,121,0,118,'light-grey-leather-belt'),(2594,132,0,118,'2'),(2595,133,0,118,'/m/a/main_9.jpg'),(2596,206,0,118,'Leather'),(2606,73,0,119,'Sequin Dress'),(2607,84,0,119,'Sequin Dress'),(2608,86,0,119,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(2609,87,0,119,'/i/m/image_31350778_10_620x757_0.jpg'),(2610,88,0,119,'/i/m/image_31350778_10_620x757_0.jpg'),(2611,89,0,119,'/i/m/image_31350778_10_620x757_0.jpg'),(2612,106,0,119,'container2'),(2613,121,0,119,'sequin-dress'),(2614,132,0,119,'2'),(2615,133,0,119,'/i/m/image_31350778_10_620x757_0.jpg'),(2616,206,0,119,' 100% polyeste'),(2634,73,0,120,'Cocktail Dress'),(2635,84,0,120,'Sequin Dress'),(2636,86,0,120,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(2637,87,0,120,'/i/m/image_31350783_66_620x757_0_1.jpg'),(2638,88,0,120,'/i/m/image_31350783_66_620x757_0_1.jpg'),(2639,89,0,120,'/i/m/image_31350783_66_620x757_0_1.jpg'),(2640,106,0,120,'container2'),(2641,121,0,120,'sequin-dress-1'),(2642,132,0,120,'2'),(2643,133,0,120,'/i/m/image_31350783_66_620x757_0_1.jpg'),(2644,206,0,120,' 100% polyeste'),(2699,73,0,121,'Light blue Leather Belt'),(2700,84,0,121,'Light blue Leather Belt'),(2701,86,0,121,'Light blue Leather Belt Measurements for size EU S: width approx. 1,8 cm (0.5″)\r\nFastening: pin buckle\r\nExtras: patent leather\r\nMaterial: leather'),(2702,87,0,121,'/m/a/main_10.jpg'),(2703,88,0,121,'/m/a/main_10.jpg'),(2704,89,0,121,'/m/a/main_10.jpg'),(2705,106,0,121,'container2'),(2706,121,0,121,'light-blue-leather-belt'),(2707,132,0,121,'2'),(2708,133,0,121,'/m/a/main_10.jpg'),(2709,206,0,121,'Leather'),(2723,73,0,122,'Lace Dress'),(2724,84,0,122,'Sequin Dress'),(2725,86,0,122,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(2726,87,0,122,'/i/m/image_31292042_34_620x757_0.jpg'),(2727,88,0,122,'/i/m/image_31292042_34_620x757_0.jpg'),(2728,89,0,122,'/i/m/image_31292042_34_620x757_0.jpg'),(2729,106,0,122,'container2'),(2730,121,0,122,'sequin-dress-2'),(2731,132,0,122,'2'),(2732,133,0,122,'/i/m/image_31292042_34_620x757_0.jpg'),(2733,206,0,122,'60% cotton, 40% polyamide'),(2788,73,0,123,'Chiffon Dress '),(2789,84,0,123,'Sequin Dress'),(2790,86,0,123,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(2791,87,0,123,'/i/m/image_31305260_80_620x757_0.jpg'),(2792,88,0,123,'/i/m/image_31305260_80_620x757_0.jpg'),(2793,89,0,123,'/i/m/image_31305260_80_620x757_0.jpg'),(2794,106,0,123,'container2'),(2795,121,0,123,'sequin-dress-3'),(2796,132,0,123,'2'),(2797,133,0,123,'/i/m/image_31305260_80_620x757_0.jpg'),(2798,206,0,123,'60% cotton, 40% polyamide'),(2816,73,0,124,'Leather Business Bag'),(2817,84,0,124,'Leather Business Bag'),(2818,86,0,124,'Leather Business Bag '),(2819,87,0,124,'/m/a/main_10_1.jpg'),(2820,88,0,124,'/m/a/main_10_1.jpg'),(2821,89,0,124,'/m/a/main_10_1.jpg'),(2822,106,0,124,'container2'),(2823,121,0,124,'leather-business-bag'),(2824,132,0,124,'2'),(2825,133,0,124,'/m/a/main_10_1.jpg'),(2826,206,0,124,'leather'),(2840,73,0,125,'Leather Backpack'),(2841,84,0,125,'Leather Backpack'),(2842,86,0,125,'Leather Backpack Measurements for one size: height 43 cm (17″), length 30 cm (12″), depth 15 cm (6″)\r\nFastening: two-way zip (open from right and left)\r\nLining material: lined\r\nExterior pockets: patch zip pocket / s, zip pocket(s) Interior pockets: plug-i'),(2843,87,0,125,'/m/a/main_11.jpg'),(2844,88,0,125,'/m/a/main_11.jpg'),(2845,89,0,125,'/m/a/main_11.jpg'),(2846,106,0,125,'container2'),(2847,121,0,125,'leather-backpack'),(2848,132,0,125,'2'),(2849,133,0,125,'/m/a/main_11.jpg'),(2850,206,0,125,'leather'),(2868,73,0,126,'Handbag'),(2869,84,0,126,'Handbag'),(2870,86,0,126,'Handbag Reference number: E1 BD1 18 03 01\r\nMeasurements for one size: height 28 cm (11″), length 36 cm (14″), depth 13 cm (5″)\r\nFastening: overlapping flap with clasp closure\r\nLining material: lined Exterior pockets: slit pocket(s)\r\nInterior pockets: plug'),(2871,87,0,126,'/m/a/main_12.jpg'),(2872,88,0,126,'/m/a/main_12.jpg'),(2873,89,0,126,'/m/a/main_12.jpg'),(2874,106,0,126,'container2'),(2875,121,0,126,'handbag'),(2876,132,0,126,'2'),(2877,133,0,126,'/m/a/main_12.jpg'),(2878,206,0,126,'Leather'),(2992,73,0,127,'Cognac Handbag'),(2993,84,0,127,'Cognac Handbag'),(2994,86,0,127,'Cognac Handbag '),(2995,106,0,127,'container2'),(2996,121,0,127,'cognac-handbag'),(2997,132,0,127,'2'),(2998,87,0,127,'/m/a/main_15.jpg'),(2999,88,0,127,'/m/a/main_15.jpg'),(3000,89,0,127,'/m/a/main_15.jpg'),(3001,133,0,127,'/m/a/main_15.jpg'),(3002,206,0,127,'leather'),(3008,73,0,128,'Blue handbag'),(3009,84,0,128,'Medium blue handbag'),(3010,86,0,128,'Medium blue handbag Smart tote bag. It has two detachable shoulder straps so that it can be worn as a backpack or carried as a tote. There is an outside compartment for storing the shoulder straps.'),(3011,87,0,128,'/m/a/main_15_2.jpg'),(3012,88,0,128,'/m/a/main_15_2.jpg'),(3013,89,0,128,'/m/a/main_15_2.jpg'),(3014,106,0,128,'container2'),(3015,121,0,128,'medium-blue-handbag'),(3016,132,0,128,'2'),(3017,133,0,128,'/m/a/main_15_2.jpg'),(3018,206,0,128,'Leather'),(3020,73,0,129,'Moss Cargo Pants-brown'),(3021,84,0,129,'Moss Cargo Pants'),(3022,86,0,129,'Moss Cargo Pants Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets, '),(3023,106,0,129,'container2'),(3024,121,0,129,'moss-cargo-pants-brown'),(3025,132,0,129,'0'),(3026,206,0,129,'98% cotton, 2% elastane'),(3036,73,0,130,'Moss Cargo Pants-brown-Large size'),(3037,84,0,130,'Moss Cargo Pants'),(3038,86,0,130,'Moss Cargo Pants Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets, '),(3039,106,0,130,'container2'),(3040,121,0,130,'moss-cargo-pants-brown-large-size'),(3041,132,0,130,'0'),(3042,206,0,130,'98% cotton, 2% elastane'),(3044,73,0,131,'Moss Cargo Pants-brown-Medium size'),(3045,84,0,131,'Moss Cargo Pants'),(3046,86,0,131,'Moss Cargo Pants Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets, '),(3047,106,0,131,'container2'),(3048,121,0,131,'moss-cargo-pants-brown-medium-size'),(3049,132,0,131,'0'),(3050,206,0,131,'98% cotton, 2% elastane'),(3056,73,0,132,'Hooded Sweater-grey-Large size'),(3057,84,0,132,'Hooded Sweater'),(3058,86,0,132,'Hooded Sweater '),(3059,106,0,132,'container2'),(3060,121,0,132,'hooded-sweater-grey-large-size'),(3061,132,0,132,'0'),(3062,206,0,132,'80% cotton, 20% polyester'),(3064,73,0,133,'Hooded Sweater-grey-Small size'),(3065,84,0,133,'Hooded Sweater'),(3066,86,0,133,'Hooded Sweater '),(3067,106,0,133,'container2'),(3068,121,0,133,'hooded-sweater-grey-small-size'),(3069,132,0,133,'0'),(3070,206,0,133,'80% cotton, 20% polyester'),(3072,73,0,134,'Hooded Sweater-grey-Medium size'),(3073,84,0,134,'Hooded Sweater'),(3074,86,0,134,'Hooded Sweater '),(3075,106,0,134,'container2'),(3076,121,0,134,'hooded-sweater-grey-medium-size'),(3077,132,0,134,'0'),(3078,206,0,134,'80% cotton, 20% polyester'),(3084,73,0,135,'Long-sleeved Jumper-grey-Large size'),(3085,84,0,135,'Long-sleeved Jumper'),(3086,86,0,135,'Long-sleeved Jumper '),(3087,106,0,135,'container2'),(3088,121,0,135,'long-sleeved-jumper-grey-large-size'),(3089,132,0,135,'0'),(3090,206,0,135,' 100% cotton'),(3092,73,0,136,'Long-sleeved Jumper-grey-Small size'),(3093,84,0,136,'Long-sleeved Jumper'),(3094,86,0,136,'Long-sleeved Jumper '),(3095,106,0,136,'container2'),(3096,121,0,136,'long-sleeved-jumper-grey-small-size'),(3097,132,0,136,'0'),(3098,206,0,136,' 100% cotton'),(3100,73,0,137,'Long-sleeved Jumper-grey-Medium size'),(3101,84,0,137,'Long-sleeved Jumper'),(3102,86,0,137,'Long-sleeved Jumper '),(3103,106,0,137,'container2'),(3104,121,0,137,'long-sleeved-jumper-grey-medium-size'),(3105,132,0,137,'0'),(3106,206,0,137,' 100% cotton'),(3112,73,0,138,'Grey Sneakers-grey-EU 42'),(3113,84,0,138,'Napapijri Grey Sneakers'),(3114,86,0,138,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(3115,106,0,138,'container2'),(3116,121,0,138,'grey-sneakers-grey-eu-42'),(3117,132,0,138,'0'),(3118,206,0,138,'leather, textile'),(3120,73,0,139,'Grey Sneakers-grey-EU 45'),(3121,84,0,139,'Napapijri Grey Sneakers'),(3122,86,0,139,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(3123,106,0,139,'container2'),(3124,121,0,139,'grey-sneakers-grey-eu-45'),(3125,132,0,139,'0'),(3126,206,0,139,'leather, textile'),(3128,73,0,140,'Grey Sneakers-grey-EU 37'),(3129,84,0,140,'Napapijri Grey Sneakers'),(3130,86,0,140,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(3131,106,0,140,'container2'),(3132,121,0,140,'grey-sneakers-grey-eu-37'),(3133,132,0,140,'0'),(3134,206,0,140,'leather, textile'),(3136,73,0,141,'Grey Sneakers-grey-EU 40'),(3137,84,0,141,'Napapijri Grey Sneakers'),(3138,86,0,141,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(3139,106,0,141,'container2'),(3140,121,0,141,'grey-sneakers-grey-eu-40'),(3141,132,0,141,'0'),(3142,206,0,141,'leather, textile'),(3144,73,0,142,'Grey Sneakers-grey-EU 38'),(3145,84,0,142,'Napapijri Grey Sneakers'),(3146,86,0,142,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(3147,106,0,142,'container2'),(3148,121,0,142,'grey-sneakers-grey-eu-38'),(3149,132,0,142,'0'),(3150,206,0,142,'leather, textile'),(3152,73,0,143,'Grey Sneakers-grey-EU 41'),(3153,84,0,143,'Napapijri Grey Sneakers'),(3154,86,0,143,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(3155,106,0,143,'container2'),(3156,121,0,143,'grey-sneakers-grey-eu-41'),(3157,132,0,143,'0'),(3158,206,0,143,'leather, textile'),(3160,73,0,144,'Grey Sneakers-grey-EU 43'),(3161,84,0,144,'Napapijri Grey Sneakers'),(3162,86,0,144,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(3163,106,0,144,'container2'),(3164,121,0,144,'grey-sneakers-grey-eu-43'),(3165,132,0,144,'0'),(3166,206,0,144,'leather, textile'),(3172,73,0,145,'Boxfresh-EU 39-brown'),(3173,84,0,145,'Boxfresh'),(3174,86,0,145,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(3175,106,0,145,'container2'),(3176,121,0,145,'boxfresh-eu-39-brown'),(3177,132,0,145,'0'),(3178,206,0,145,' leather'),(3180,73,0,146,'Boxfresh-EU 42-brown'),(3181,84,0,146,'Boxfresh'),(3182,86,0,146,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(3183,106,0,146,'container2'),(3184,121,0,146,'boxfresh-eu-42-brown'),(3185,132,0,146,'0'),(3186,206,0,146,' leather'),(3188,73,0,147,'Boxfresh-EU 40-brown'),(3189,84,0,147,'Boxfresh'),(3190,86,0,147,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(3191,106,0,147,'container2'),(3192,121,0,147,'boxfresh-eu-40-brown'),(3193,132,0,147,'0'),(3194,206,0,147,' leather'),(3196,73,0,148,'Boxfresh-EU 43-brown'),(3197,84,0,148,'Boxfresh'),(3198,86,0,148,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(3199,106,0,148,'container2'),(3200,121,0,148,'boxfresh-eu-43-brown'),(3201,132,0,148,'0'),(3202,206,0,148,' leather'),(3204,73,0,149,'Boxfresh-EU 41-brown'),(3205,84,0,149,'Boxfresh'),(3206,86,0,149,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(3207,106,0,149,'container2'),(3208,121,0,149,'boxfresh-eu-41-brown'),(3209,132,0,149,'0'),(3210,206,0,149,' leather'),(3216,73,0,150,'J.B by Jean Biani Sneakers-EU 40-black'),(3217,84,0,150,'J.B by Jean Biani Sneakers'),(3218,86,0,150,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(3219,106,0,150,'container2'),(3220,121,0,150,'j-b-by-jean-biani-sneakers-eu-40-black'),(3221,132,0,150,'0'),(3222,206,0,150,'textile, synthetic'),(3224,73,0,151,'J.B by Jean Biani Sneakers-EU 41-black'),(3225,84,0,151,'J.B by Jean Biani Sneakers'),(3226,86,0,151,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(3227,106,0,151,'container2'),(3228,121,0,151,'j-b-by-jean-biani-sneakers-eu-41-black'),(3229,132,0,151,'0'),(3230,206,0,151,'textile, synthetic'),(3232,73,0,152,'J.B by Jean Biani Sneakers-EU 42-black'),(3233,84,0,152,'J.B by Jean Biani Sneakers'),(3234,86,0,152,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(3235,106,0,152,'container2'),(3236,121,0,152,'j-b-by-jean-biani-sneakers-eu-42-black'),(3237,132,0,152,'0'),(3238,206,0,152,'textile, synthetic'),(3244,73,0,153,'Adidas Originals PW Tennis Hu-blue-EU 40'),(3245,84,0,153,'Adidas Originals PW Tennis Hu'),(3246,86,0,153,'Adidas Originals PW Tennis Hu Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper,'),(3247,106,0,153,'container2'),(3248,121,0,153,'adidas-originals-pw-tennis-hu-blue-eu-40'),(3249,132,0,153,'0'),(3250,206,0,153,'textile, synthetic'),(3252,73,0,154,'Adidas Originals PW Tennis Hu-blue-EU 41'),(3253,84,0,154,'Adidas Originals PW Tennis Hu'),(3254,86,0,154,'Adidas Originals PW Tennis Hu Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper,'),(3255,106,0,154,'container2'),(3256,121,0,154,'adidas-originals-pw-tennis-hu-blue-eu-41'),(3257,132,0,154,'0'),(3258,206,0,154,'textile, synthetic'),(3260,73,0,155,'Adidas Originals PW Tennis Hu-white-EU 40'),(3261,84,0,155,'Adidas Originals PW Tennis Hu'),(3262,86,0,155,'Adidas Originals PW Tennis Hu Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper,'),(3263,106,0,155,'container2'),(3264,121,0,155,'adidas-originals-pw-tennis-hu-white-eu-40'),(3265,132,0,155,'0'),(3266,206,0,155,'textile, synthetic'),(3268,73,0,156,'Adidas Originals PW Tennis Hu-white-EU 41'),(3269,84,0,156,'Adidas Originals PW Tennis Hu'),(3270,86,0,156,'Adidas Originals PW Tennis Hu Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper,'),(3271,106,0,156,'container2'),(3272,121,0,156,'adidas-originals-pw-tennis-hu-white-eu-41'),(3273,132,0,156,'0'),(3274,206,0,156,'textile, synthetic'),(3280,73,0,157,'Brax Chuck Slim Fit-white-Small size'),(3281,84,0,157,'Brax Chuck Slim Fit'),(3282,86,0,157,'Brax Chuck Slim Fit '),(3283,106,0,157,'container2'),(3284,121,0,157,'brax-chuck-slim-fit-white-small-size'),(3285,132,0,157,'0'),(3286,206,0,157,'Cotton'),(3288,73,0,158,'Brax Chuck Slim Fit-white-Extra small size'),(3289,84,0,158,'Brax Chuck Slim Fit'),(3290,86,0,158,'Brax Chuck Slim Fit '),(3291,106,0,158,'container2'),(3292,121,0,158,'brax-chuck-slim-fit-white-extra-small-size'),(3293,132,0,158,'0'),(3294,206,0,158,'Cotton'),(3296,73,0,159,'Brax Chuck Slim Fit-white-Medium size'),(3297,84,0,159,'Brax Chuck Slim Fit'),(3298,86,0,159,'Brax Chuck Slim Fit '),(3299,106,0,159,'container2'),(3300,121,0,159,'brax-chuck-slim-fit-white-medium-size'),(3301,132,0,159,'0'),(3302,206,0,159,'Cotton'),(3308,73,0,160,'Ugg Freamon Wp-brown-EU 43'),(3309,84,0,160,'Ugg Freamon Wp'),(3310,86,0,160,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(3311,106,0,160,'container2'),(3312,121,0,160,'ugg-freamon-wp-brown-eu-43'),(3313,132,0,160,'0'),(3314,206,0,160,'leather'),(3316,73,0,161,'Ugg Freamon Wp-brown-EU 42'),(3317,84,0,161,'Ugg Freamon Wp'),(3318,86,0,161,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(3319,106,0,161,'container2'),(3320,121,0,161,'ugg-freamon-wp-brown-eu-42'),(3321,132,0,161,'0'),(3322,206,0,161,'leather'),(3324,73,0,162,'Ugg Freamon Wp-brown-EU 44'),(3325,84,0,162,'Ugg Freamon Wp'),(3326,86,0,162,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(3327,106,0,162,'container2'),(3328,121,0,162,'ugg-freamon-wp-brown-eu-44'),(3329,132,0,162,'0'),(3330,206,0,162,'leather'),(3336,73,0,163,'Sweat Pants-grey-Small size'),(3337,84,0,163,'Sweat Pants'),(3338,86,0,163,'Sweat Pants '),(3339,106,0,163,'container2'),(3340,121,0,163,'sweat-pants-grey-small-size'),(3341,132,0,163,'0'),(3342,206,0,163,'48% polyester, 22% cotton, 15% wool, 15% polyacrylic'),(3344,73,0,164,'Sweat Pants-grey-Extra small size'),(3345,84,0,164,'Sweat Pants'),(3346,86,0,164,'Sweat Pants '),(3347,106,0,164,'container2'),(3348,121,0,164,'sweat-pants-grey-extra-small-size'),(3349,132,0,164,'0'),(3350,206,0,164,'48% polyester, 22% cotton, 15% wool, 15% polyacrylic'),(3352,73,0,165,'Sweat Pants-grey-Large size'),(3353,84,0,165,'Sweat Pants'),(3354,86,0,165,'Sweat Pants '),(3355,106,0,165,'container2'),(3356,121,0,165,'sweat-pants-grey-large-size'),(3357,132,0,165,'0'),(3358,206,0,165,'48% polyester, 22% cotton, 15% wool, 15% polyacrylic'),(3364,73,0,166,'Business Trousers-black-Large size'),(3365,84,0,166,'Business Trousers'),(3366,86,0,166,'Business Trousers '),(3367,106,0,166,'container2'),(3368,121,0,166,'business-trousers-black-large-size'),(3369,132,0,166,'0'),(3370,206,0,166,'96% virgin wool, 4% polyamide'),(3372,73,0,167,'Business Trousers-black-Extra small size'),(3373,84,0,167,'Business Trousers'),(3374,86,0,167,'Business Trousers '),(3375,106,0,167,'container2'),(3376,121,0,167,'business-trousers-black-extra-small-size'),(3377,132,0,167,'0'),(3378,206,0,167,'96% virgin wool, 4% polyamide'),(3380,73,0,168,'Business Trousers-black-Small size'),(3381,84,0,168,'Business Trousers'),(3382,86,0,168,'Business Trousers '),(3383,106,0,168,'container2'),(3384,121,0,168,'business-trousers-black-small-size'),(3385,132,0,168,'0'),(3386,206,0,168,'96% virgin wool, 4% polyamide'),(3388,73,0,169,'Business Trousers-black-Medium size'),(3389,84,0,169,'Business Trousers'),(3390,86,0,169,'Business Trousers '),(3391,106,0,169,'container2'),(3392,121,0,169,'business-trousers-black-medium-size'),(3393,132,0,169,'0'),(3394,206,0,169,'96% virgin wool, 4% polyamide'),(3400,73,0,170,'Chino-black-Extra small size'),(3401,84,0,170,'Chino'),(3402,86,0,170,'Chino '),(3403,106,0,170,'container2'),(3404,121,0,170,'chino-black-extra-small-size'),(3405,132,0,170,'0'),(3406,206,0,170,'100% cotton'),(3408,73,0,171,'Chino-black-Small size'),(3409,84,0,171,'Chino'),(3410,86,0,171,'Chino '),(3411,106,0,171,'container2'),(3412,121,0,171,'chino-black-small-size'),(3413,132,0,171,'0'),(3414,206,0,171,'100% cotton'),(3420,73,0,172,'Dress Trousers-black-Large size'),(3421,84,0,172,'Dress Trousers'),(3422,86,0,172,'Dress Trousers Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, cr'),(3423,106,0,172,'container2'),(3424,121,0,172,'dress-trousers-black-large-size'),(3425,132,0,172,'0'),(3426,206,0,172,'53% cotton, 44% polyester, 3% elastane'),(3428,73,0,173,'Dress Trousers-black-Small size'),(3429,84,0,173,'Dress Trousers'),(3430,86,0,173,'Dress Trousers Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, cr'),(3431,106,0,173,'container2'),(3432,121,0,173,'dress-trousers-black-small-size'),(3433,132,0,173,'0'),(3434,206,0,173,'53% cotton, 44% polyester, 3% elastane'),(3436,73,0,174,'Dress Trousers-black-Medium size'),(3437,84,0,174,'Dress Trousers'),(3438,86,0,174,'Dress Trousers Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, cr'),(3439,106,0,174,'container2'),(3440,121,0,174,'dress-trousers-black-medium-size'),(3441,132,0,174,'0'),(3442,206,0,174,'53% cotton, 44% polyester, 3% elastane'),(3448,73,0,175,'Half Boots-EU 39-blue'),(3449,84,0,175,'Boxfresh'),(3450,86,0,175,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(3451,106,0,175,'container2'),(3452,121,0,175,'half-boots-eu-39-blue'),(3453,132,0,175,'0'),(3454,206,0,175,'leather'),(3456,73,0,176,'Half Boots-EU 40-blue'),(3457,84,0,176,'Boxfresh'),(3458,86,0,176,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(3459,106,0,176,'container2'),(3460,121,0,176,'half-boots-eu-40-blue'),(3461,132,0,176,'0'),(3462,206,0,176,'leather'),(3464,73,0,177,'Half Boots-EU 41-blue'),(3465,84,0,177,'Boxfresh'),(3466,86,0,177,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(3467,106,0,177,'container2'),(3468,121,0,177,'half-boots-eu-41-blue'),(3469,132,0,177,'0'),(3470,206,0,177,'leather'),(3472,73,0,178,'Half Boots-EU 42-blue'),(3473,84,0,178,'Boxfresh'),(3474,86,0,178,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(3475,106,0,178,'container2'),(3476,121,0,178,'half-boots-eu-42-blue'),(3477,132,0,178,'0'),(3478,206,0,178,'leather'),(3480,73,0,179,'Half Boots-EU 43-blue'),(3481,84,0,179,'Boxfresh'),(3482,86,0,179,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(3483,106,0,179,'container2'),(3484,121,0,179,'half-boots-eu-43-blue'),(3485,132,0,179,'0'),(3486,206,0,179,'leather'),(3492,73,0,180,'Gant Marvel-EU 40-brown'),(3493,84,0,180,'Gant Marvel'),(3494,86,0,180,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(3495,106,0,180,'container2'),(3496,121,0,180,'gant-marvel-eu-40-brown'),(3497,132,0,180,'0'),(3498,206,0,180,'leather'),(3500,73,0,181,'Gant Marvel-EU 41-brown'),(3501,84,0,181,'Gant Marvel'),(3502,86,0,181,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(3503,106,0,181,'container2'),(3504,121,0,181,'gant-marvel-eu-41-brown'),(3505,132,0,181,'0'),(3506,206,0,181,'leather'),(3508,73,0,182,'Gant Marvel-EU 42-brown'),(3509,84,0,182,'Gant Marvel'),(3510,86,0,182,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(3511,106,0,182,'container2'),(3512,121,0,182,'gant-marvel-eu-42-brown'),(3513,132,0,182,'0'),(3514,206,0,182,'leather'),(3516,73,0,183,'Gant Marvel-EU 43-brown'),(3517,84,0,183,'Gant Marvel'),(3518,86,0,183,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(3519,106,0,183,'container2'),(3520,121,0,183,'gant-marvel-eu-43-brown'),(3521,132,0,183,'0'),(3522,206,0,183,'leather'),(3524,73,0,184,'Gant Marvel-EU 44-brown'),(3525,84,0,184,'Gant Marvel'),(3526,86,0,184,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(3527,106,0,184,'container2'),(3528,121,0,184,'gant-marvel-eu-44-brown'),(3529,132,0,184,'0'),(3530,206,0,184,'leather'),(3532,73,0,185,'Gant Marvel-EU 39-brown'),(3533,84,0,185,'Gant Marvel'),(3534,86,0,185,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(3535,106,0,185,'container2'),(3536,121,0,185,'gant-marvel-eu-39-brown'),(3537,132,0,185,'0'),(3538,206,0,185,'leather'),(3544,73,0,186,'Casual Trousers-grey-Extra small size'),(3545,84,0,186,'Casual Trousers'),(3546,86,0,186,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool'),(3547,106,0,186,'container2'),(3548,121,0,186,'casual-trousers-grey-extra-small-size'),(3549,132,0,186,'0'),(3550,206,0,186,'65% polyester, 32% viscose, 3% elastane'),(3551,73,0,187,'Casual Trousers-grey-Small size'),(3552,84,0,187,'Casual Trousers'),(3553,86,0,187,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool'),(3554,106,0,187,'container2'),(3555,121,0,187,'casual-trousers-grey-small-size'),(3556,132,0,187,'0'),(3557,206,0,187,'65% polyester, 32% viscose, 3% elastane'),(3558,73,0,188,'Casual Trousers-grey-Medium size'),(3559,84,0,188,'Casual Trousers'),(3560,86,0,188,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool'),(3561,106,0,188,'container2'),(3562,121,0,188,'casual-trousers-grey-medium-size'),(3563,132,0,188,'0'),(3564,206,0,188,'65% polyester, 32% viscose, 3% elastane'),(3565,73,0,189,'Casual Trousers-grey-Large size'),(3566,84,0,189,'Casual Trousers'),(3567,86,0,189,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool'),(3568,106,0,189,'container2'),(3569,121,0,189,'casual-trousers-grey-large-size'),(3570,132,0,189,'0'),(3571,206,0,189,'65% polyester, 32% viscose, 3% elastane'),(3576,73,0,190,'Slim Fit Jeans-black-Extra small size'),(3577,84,0,190,'Slim Fit Jeans'),(3578,86,0,190,'Slim Fit Jeans '),(3579,106,0,190,'container2'),(3580,121,0,190,'slim-fit-jeans-black-extra-small-size'),(3581,132,0,190,'0'),(3582,73,0,191,'Slim Fit Jeans-black-Extra large size'),(3583,84,0,191,'Slim Fit Jeans'),(3584,86,0,191,'Slim Fit Jeans '),(3585,106,0,191,'container2'),(3586,121,0,191,'slim-fit-jeans-black-extra-large-size'),(3587,132,0,191,'0'),(3588,73,0,192,'Slim Fit Jeans-black-Small size'),(3589,84,0,192,'Slim Fit Jeans'),(3590,86,0,192,'Slim Fit Jeans '),(3591,106,0,192,'container2'),(3592,121,0,192,'slim-fit-jeans-black-small-size'),(3593,132,0,192,'0'),(3594,73,0,193,'Slim Fit Jeans-black-Large size'),(3595,84,0,193,'Slim Fit Jeans'),(3596,86,0,193,'Slim Fit Jeans '),(3597,106,0,193,'container2'),(3598,121,0,193,'slim-fit-jeans-black-large-size'),(3599,132,0,193,'0'),(3604,73,0,194,'Pale Belt Pants -grey-Extra large size'),(3605,84,0,194,'Pale Belt Pants '),(3606,86,0,194,'Pale Belt Pants  The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pa'),(3607,106,0,194,'container2'),(3608,121,0,194,'pale-belt-pants-grey-extra-large-size'),(3609,132,0,194,'0'),(3610,206,0,194,'65% Polyester,32% Viscose,3% Elastane'),(3612,73,0,195,'Pale Belt Pants -grey-Small size'),(3613,84,0,195,'Pale Belt Pants '),(3614,86,0,195,'Pale Belt Pants  The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pa'),(3615,106,0,195,'container2'),(3616,121,0,195,'pale-belt-pants-grey-small-size'),(3617,132,0,195,'0'),(3618,206,0,195,'65% Polyester,32% Viscose,3% Elastane'),(3620,73,0,196,'Pale Belt Pants -grey-Medium size'),(3621,84,0,196,'Pale Belt Pants '),(3622,86,0,196,'Pale Belt Pants  The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pa'),(3623,106,0,196,'container2'),(3624,121,0,196,'pale-belt-pants-grey-medium-size'),(3625,132,0,196,'0'),(3626,206,0,196,'65% Polyester,32% Viscose,3% Elastane'),(3632,73,0,197,'I Maschi Lace-up Boots-brown-EU 39'),(3633,84,0,197,'I Maschi Lace-up Boots'),(3634,86,0,197,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(3635,106,0,197,'container2'),(3636,121,0,197,'i-maschi-lace-up-boots-brown-eu-39'),(3637,132,0,197,'0'),(3638,206,0,197,'leather'),(3640,73,0,198,'I Maschi Lace-up Boots-brown-EU 40'),(3641,84,0,198,'I Maschi Lace-up Boots'),(3642,86,0,198,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(3643,106,0,198,'container2'),(3644,121,0,198,'i-maschi-lace-up-boots-brown-eu-40'),(3645,132,0,198,'0'),(3646,206,0,198,'leather'),(3648,73,0,199,'I Maschi Lace-up Boots-brown-EU 41'),(3649,84,0,199,'I Maschi Lace-up Boots'),(3650,86,0,199,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(3651,106,0,199,'container2'),(3652,121,0,199,'i-maschi-lace-up-boots-brown-eu-41'),(3653,132,0,199,'0'),(3654,206,0,199,'leather'),(3656,73,0,200,'I Maschi Lace-up Boots-brown-EU 43'),(3657,84,0,200,'I Maschi Lace-up Boots'),(3658,86,0,200,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(3659,106,0,200,'container2'),(3660,121,0,200,'i-maschi-lace-up-boots-brown-eu-43'),(3661,132,0,200,'0'),(3662,206,0,200,'leather'),(3664,73,0,201,'I Maschi Lace-up Boots-brown-EU 42'),(3665,84,0,201,'I Maschi Lace-up Boots'),(3666,86,0,201,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(3667,106,0,201,'container2'),(3668,121,0,201,'i-maschi-lace-up-boots-brown-eu-42'),(3669,132,0,201,'0'),(3670,206,0,201,'leather'),(3672,73,0,202,'I Maschi Lace-up Boots-brown-EU 44'),(3673,84,0,202,'I Maschi Lace-up Boots'),(3674,86,0,202,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(3675,106,0,202,'container2'),(3676,121,0,202,'i-maschi-lace-up-boots-brown-eu-44'),(3677,132,0,202,'0'),(3678,206,0,202,'leather'),(3684,73,0,203,'Straight Leg Jeans-Small size-blue'),(3685,84,0,203,'Straight Leg Jeans'),(3686,86,0,203,'Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on'),(3687,106,0,203,'container2'),(3688,121,0,203,'straight-leg-jeans-small-size-blue'),(3689,132,0,203,'0'),(3690,73,0,204,'Straight Leg Jeans-Extra small size-blue'),(3691,84,0,204,'Straight Leg Jeans'),(3692,86,0,204,'Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on'),(3693,106,0,204,'container2'),(3694,121,0,204,'straight-leg-jeans-extra-small-size-blue'),(3695,132,0,204,'0'),(3696,73,0,205,'Straight Leg Jeans-Large size-blue'),(3697,84,0,205,'Straight Leg Jeans'),(3698,86,0,205,'Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on'),(3699,106,0,205,'container2'),(3700,121,0,205,'straight-leg-jeans-large-size-blue'),(3701,132,0,205,'0'),(3702,73,0,206,'Straight Leg Jeans-Extra large size-blue'),(3703,84,0,206,'Straight Leg Jeans'),(3704,86,0,206,'Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on'),(3705,106,0,206,'container2'),(3706,121,0,206,'straight-leg-jeans-extra-large-size-blue'),(3707,132,0,206,'0'),(3712,73,0,207,'Wool jersey trousers-black-Small size'),(3713,84,0,207,'Wool jersey trousers'),(3714,86,0,207,'Wool jersey trousers Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle.'),(3715,106,0,207,'container2'),(3716,121,0,207,'wool-jersey-trousers-black-small-size'),(3717,132,0,207,'0'),(3718,206,0,207,'100% virgin wool'),(3720,73,0,208,'Wool jersey trousers-black-Extra large size'),(3721,84,0,208,'Wool jersey trousers'),(3722,86,0,208,'Wool jersey trousers Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle.'),(3723,106,0,208,'container2'),(3724,121,0,208,'wool-jersey-trousers-black-extra-large-size'),(3725,132,0,208,'0'),(3726,206,0,208,'100% virgin wool'),(3728,73,0,209,'Wool jersey trousers-black-Extra small size'),(3729,84,0,209,'Wool jersey trousers'),(3730,86,0,209,'Wool jersey trousers Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle.'),(3731,106,0,209,'container2'),(3732,121,0,209,'wool-jersey-trousers-black-extra-small-size'),(3733,132,0,209,'0'),(3734,206,0,209,'100% virgin wool'),(3740,73,0,210,'Lloyd Half Boots-brown-EU 39'),(3741,84,0,210,'Lloyd Half Boots'),(3742,86,0,210,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(3743,106,0,210,'container2'),(3744,121,0,210,'lloyd-half-boots-brown-eu-39'),(3745,132,0,210,'0'),(3746,206,0,210,' leather'),(3748,73,0,211,'Lloyd Half Boots-brown-EU 40'),(3749,84,0,211,'Lloyd Half Boots'),(3750,86,0,211,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(3751,106,0,211,'container2'),(3752,121,0,211,'lloyd-half-boots-brown-eu-40'),(3753,132,0,211,'0'),(3754,206,0,211,' leather'),(3756,73,0,212,'Lloyd Half Boots-brown-EU 41'),(3757,84,0,212,'Lloyd Half Boots'),(3758,86,0,212,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(3759,106,0,212,'container2'),(3760,121,0,212,'lloyd-half-boots-brown-eu-41'),(3761,132,0,212,'0'),(3762,206,0,212,' leather'),(3764,73,0,213,'Lloyd Half Boots-brown-EU 42'),(3765,84,0,213,'Lloyd Half Boots'),(3766,86,0,213,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(3767,106,0,213,'container2'),(3768,121,0,213,'lloyd-half-boots-brown-eu-42'),(3769,132,0,213,'0'),(3770,206,0,213,' leather'),(3772,73,0,214,'Lloyd Half Boots-brown-EU 43'),(3773,84,0,214,'Lloyd Half Boots'),(3774,86,0,214,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(3775,106,0,214,'container2'),(3776,121,0,214,'lloyd-half-boots-brown-eu-43'),(3777,132,0,214,'0'),(3778,206,0,214,' leather'),(3780,73,0,215,'Lloyd Half Boots-brown-EU 44'),(3781,84,0,215,'Lloyd Half Boots'),(3782,86,0,215,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(3783,106,0,215,'container2'),(3784,121,0,215,'lloyd-half-boots-brown-eu-44'),(3785,132,0,215,'0'),(3786,206,0,215,' leather'),(3788,73,0,216,'Lloyd Half Boots-brown-EU 45'),(3789,84,0,216,'Lloyd Half Boots'),(3790,86,0,216,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(3791,106,0,216,'container2'),(3792,121,0,216,'lloyd-half-boots-brown-eu-45'),(3793,132,0,216,'0'),(3794,206,0,216,' leather'),(3800,73,0,217,'Cotton-Stretch Tapered Pants-white-Large size'),(3801,84,0,217,'Cotton-Stretch Tapered Pants'),(3802,86,0,217,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sEx'),(3803,106,0,217,'container2'),(3804,121,0,217,'cotton-stretch-tapered-pants-white-large-size'),(3805,132,0,217,'0'),(3806,206,0,217,'98% cotton, 2% elastane'),(3808,73,0,218,'Cotton-Stretch Tapered Pants-white-Extra small size'),(3809,84,0,218,'Cotton-Stretch Tapered Pants'),(3810,86,0,218,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sEx'),(3811,106,0,218,'container2'),(3812,121,0,218,'cotton-stretch-tapered-pants-white-extra-small-size'),(3813,132,0,218,'0'),(3814,206,0,218,'98% cotton, 2% elastane'),(3816,73,0,219,'Cotton-Stretch Tapered Pants-white-Small size'),(3817,84,0,219,'Cotton-Stretch Tapered Pants'),(3818,86,0,219,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sEx'),(3819,106,0,219,'container2'),(3820,121,0,219,'cotton-stretch-tapered-pants-white-small-size'),(3821,132,0,219,'0'),(3822,206,0,219,'98% cotton, 2% elastane'),(3824,73,0,220,'Cotton-Stretch Tapered Pants-white-Medium size'),(3825,84,0,220,'Cotton-Stretch Tapered Pants'),(3826,86,0,220,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sEx'),(3827,106,0,220,'container2'),(3828,121,0,220,'cotton-stretch-tapered-pants-white-medium-size'),(3829,132,0,220,'0'),(3830,206,0,220,'98% cotton, 2% elastane'),(3832,73,0,221,'Cotton-Stretch Tapered Pants-white-Extra large size'),(3833,84,0,221,'Cotton-Stretch Tapered Pants'),(3834,86,0,221,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sEx'),(3835,106,0,221,'container2'),(3836,121,0,221,'cotton-stretch-tapered-pants-white-extra-large-size'),(3837,132,0,221,'0'),(3838,206,0,221,'98% cotton, 2% elastane'),(3844,73,0,222,'Cat Lace-up Boots-grey-EU 36'),(3845,84,0,222,'Cat Lace-up Boots'),(3846,86,0,222,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(3847,106,0,222,'container2'),(3848,121,0,222,'cat-lace-up-boots-grey-eu-36'),(3849,132,0,222,'0'),(3850,206,0,222,'leather'),(3852,73,0,223,'Cat Lace-up Boots-grey-EU 37'),(3853,84,0,223,'Cat Lace-up Boots'),(3854,86,0,223,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(3855,106,0,223,'container2'),(3856,121,0,223,'cat-lace-up-boots-grey-eu-37'),(3857,132,0,223,'0'),(3858,206,0,223,'leather'),(3860,73,0,224,'Cat Lace-up Boots-grey-EU 38'),(3861,84,0,224,'Cat Lace-up Boots'),(3862,86,0,224,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(3863,106,0,224,'container2'),(3864,121,0,224,'cat-lace-up-boots-grey-eu-38'),(3865,132,0,224,'0'),(3866,206,0,224,'leather'),(3868,73,0,225,'Cat Lace-up Boots-grey-EU 39'),(3869,84,0,225,'Cat Lace-up Boots'),(3870,86,0,225,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(3871,106,0,225,'container2'),(3872,121,0,225,'cat-lace-up-boots-grey-eu-39'),(3873,132,0,225,'0'),(3874,206,0,225,'leather'),(3876,73,0,226,'Cat Lace-up Boots-grey-EU 40'),(3877,84,0,226,'Cat Lace-up Boots'),(3878,86,0,226,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(3879,106,0,226,'container2'),(3880,121,0,226,'cat-lace-up-boots-grey-eu-40'),(3881,132,0,226,'0'),(3882,206,0,226,'leather'),(3884,73,0,227,'Cat Lace-up Boots-grey-EU 41'),(3885,84,0,227,'Cat Lace-up Boots'),(3886,86,0,227,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(3887,106,0,227,'container2'),(3888,121,0,227,'cat-lace-up-boots-grey-eu-41'),(3889,132,0,227,'0'),(3890,206,0,227,'leather'),(3896,73,0,228,'The Skinny Crop-red-Small size'),(3897,84,0,228,'The Skinny Crop'),(3898,86,0,228,'The Skinny Crop Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manufact'),(3899,106,0,228,'container2'),(3900,121,0,228,'the-skinny-crop-red-small-size'),(3901,132,0,228,'0'),(3902,73,0,229,'The Skinny Crop-red-Extra small size'),(3903,84,0,229,'The Skinny Crop'),(3904,86,0,229,'The Skinny Crop Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manufact'),(3905,106,0,229,'container2'),(3906,121,0,229,'the-skinny-crop-red-extra-small-size'),(3907,132,0,229,'0'),(3908,73,0,230,'The Skinny Crop-red-Medium size'),(3909,84,0,230,'The Skinny Crop'),(3910,86,0,230,'The Skinny Crop Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manufact'),(3911,106,0,230,'container2'),(3912,121,0,230,'the-skinny-crop-red-medium-size'),(3913,132,0,230,'0'),(3918,73,0,231,'Bottega Veneta-Small size-brown'),(3919,84,0,231,'Bottega Veneta'),(3920,86,0,231,'Bottega Veneta Reference number: BV0111S\r\nMeasurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: titanium, plastic\r\nPlease not'),(3921,106,0,231,'container2'),(3922,121,0,231,'bottega-veneta-small-size-brown'),(3923,132,0,231,'0'),(3924,206,0,231,'titanium, plastic'),(3926,73,0,232,'Bottega Veneta-Medium size-brown'),(3927,84,0,232,'Bottega Veneta'),(3928,86,0,232,'Bottega Veneta Reference number: BV0111S\r\nMeasurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: titanium, plastic\r\nPlease not'),(3929,106,0,232,'container2'),(3930,121,0,232,'bottega-veneta-medium-size-brown'),(3931,132,0,232,'0'),(3932,206,0,232,'titanium, plastic'),(3938,73,0,233,'Sunglasses-black-Small size'),(3939,84,0,233,'Sunglasses'),(3940,86,0,233,'Sunglasses Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3 Extras: logo on both temples, case included, gift-box\r\nMaterial: plastic\r\nPlease note: May '),(3941,106,0,233,'container2'),(3942,121,0,233,'sunglasses-black-small-size'),(3943,132,0,233,'0'),(3944,206,0,233,'Plastic'),(3946,73,0,234,'Sunglasses-black-Medium size'),(3947,84,0,234,'Sunglasses'),(3948,86,0,234,'Sunglasses Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3 Extras: logo on both temples, case included, gift-box\r\nMaterial: plastic\r\nPlease note: May '),(3949,106,0,234,'container2'),(3950,121,0,234,'sunglasses-black-medium-size'),(3951,132,0,234,'0'),(3952,206,0,234,'Plastic'),(3958,73,0,235,'Boyfriend Jeans-blue-Small size'),(3959,84,0,235,'Boyfriend Jeans'),(3960,86,0,235,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qual'),(3961,106,0,235,'container2'),(3962,121,0,235,'boyfriend-jeans-blue-small-size'),(3963,132,0,235,'0'),(3964,73,0,236,'Boyfriend Jeans-blue-Medium size'),(3965,84,0,236,'Boyfriend Jeans'),(3966,86,0,236,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qual'),(3967,106,0,236,'container2'),(3968,121,0,236,'boyfriend-jeans-blue-medium-size'),(3969,132,0,236,'0'),(3970,73,0,237,'Boyfriend Jeans-blue-Extra small size'),(3971,84,0,237,'Boyfriend Jeans'),(3972,86,0,237,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qual'),(3973,106,0,237,'container2'),(3974,121,0,237,'boyfriend-jeans-blue-extra-small-size'),(3975,132,0,237,'0'),(3976,73,0,238,'Boyfriend Jeans-blue-Large size'),(3977,84,0,238,'Boyfriend Jeans'),(3978,86,0,238,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qual'),(3979,106,0,238,'container2'),(3980,121,0,238,'boyfriend-jeans-blue-large-size'),(3981,132,0,238,'0'),(3986,73,0,239,'Navy Chino-black-Small size'),(3987,84,0,239,'Navy Chino'),(3988,86,0,239,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(3989,106,0,239,'container2'),(3990,121,0,239,'navy-chino-black-small-size'),(3991,132,0,239,'0'),(3992,206,0,239,'98% cotton, 2% elastane'),(3994,73,0,240,'Navy Chino-black-Medium size'),(3995,84,0,240,'Navy Chino'),(3996,86,0,240,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(3997,106,0,240,'container2'),(3998,121,0,240,'navy-chino-black-medium-size'),(3999,132,0,240,'0'),(4000,206,0,240,'98% cotton, 2% elastane'),(4002,73,0,241,'Navy Chino-black-Large size'),(4003,84,0,241,'Navy Chino'),(4004,86,0,241,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(4005,106,0,241,'container2'),(4006,121,0,241,'navy-chino-black-large-size'),(4007,132,0,241,'0'),(4008,206,0,241,'98% cotton, 2% elastane'),(4010,73,0,242,'Navy Chino-black-Extra large size'),(4011,84,0,242,'Navy Chino'),(4012,86,0,242,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(4013,106,0,242,'container2'),(4014,121,0,242,'navy-chino-black-extra-large-size'),(4015,132,0,242,'0'),(4016,206,0,242,'98% cotton, 2% elastane'),(4022,73,0,243,'Timberland Lace-ups-EU 40-brown'),(4023,84,0,243,'Timberland Lace-ups'),(4024,86,0,243,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(4025,106,0,243,'container2'),(4026,121,0,243,'timberland-lace-ups-eu-40-brown'),(4027,132,0,243,'0'),(4028,206,0,243,'Textile'),(4030,73,0,244,'Timberland Lace-ups-EU 39-brown'),(4031,84,0,244,'Timberland Lace-ups'),(4032,86,0,244,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(4033,106,0,244,'container2'),(4034,121,0,244,'timberland-lace-ups-eu-39-brown'),(4035,132,0,244,'0'),(4036,206,0,244,'Textile'),(4038,73,0,245,'Timberland Lace-ups-EU 42-brown'),(4039,84,0,245,'Timberland Lace-ups'),(4040,86,0,245,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(4041,106,0,245,'container2'),(4042,121,0,245,'timberland-lace-ups-eu-42-brown'),(4043,132,0,245,'0'),(4044,206,0,245,'Textile'),(4046,73,0,246,'Timberland Lace-ups-EU 43-brown'),(4047,84,0,246,'Timberland Lace-ups'),(4048,86,0,246,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(4049,106,0,246,'container2'),(4050,121,0,246,'timberland-lace-ups-eu-43-brown'),(4051,132,0,246,'0'),(4052,206,0,246,'Textile'),(4054,73,0,247,'Timberland Lace-ups-EU 45-brown'),(4055,84,0,247,'Timberland Lace-ups'),(4056,86,0,247,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(4057,106,0,247,'container2'),(4058,121,0,247,'timberland-lace-ups-eu-45-brown'),(4059,132,0,247,'0'),(4060,206,0,247,'Textile'),(4062,73,0,248,'Timberland Lace-ups-EU 44-brown'),(4063,84,0,248,'Timberland Lace-ups'),(4064,86,0,248,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(4065,106,0,248,'container2'),(4066,121,0,248,'timberland-lace-ups-eu-44-brown'),(4067,132,0,248,'0'),(4068,206,0,248,'Textile'),(4074,73,0,249,'Tommy Hilfiger-black-Extra small size'),(4075,84,0,249,'Tommy Hilfiger'),(4076,86,0,249,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(4077,106,0,249,'container2'),(4078,121,0,249,'tommy-hilfiger-black-extra-small-size'),(4079,132,0,249,'0'),(4080,206,0,249,'98% cotton, 2% elastane'),(4082,73,0,250,'Tommy Hilfiger-black-Small size'),(4083,84,0,250,'Tommy Hilfiger'),(4084,86,0,250,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(4085,106,0,250,'container2'),(4086,121,0,250,'tommy-hilfiger-black-small-size'),(4087,132,0,250,'0'),(4088,206,0,250,'98% cotton, 2% elastane'),(4090,73,0,251,'Tommy Hilfiger-black-Medium size'),(4091,84,0,251,'Tommy Hilfiger'),(4092,86,0,251,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(4093,106,0,251,'container2'),(4094,121,0,251,'tommy-hilfiger-black-medium-size'),(4095,132,0,251,'0'),(4096,206,0,251,'98% cotton, 2% elastane'),(4098,73,0,252,'Tommy Hilfiger-black-Extra large size'),(4099,84,0,252,'Tommy Hilfiger'),(4100,86,0,252,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(4101,106,0,252,'container2'),(4102,121,0,252,'tommy-hilfiger-black-extra-large-size'),(4103,132,0,252,'0'),(4104,206,0,252,'98% cotton, 2% elastane'),(4106,73,0,253,'Tommy Hilfiger-black-Large size'),(4107,84,0,253,'Tommy Hilfiger'),(4108,86,0,253,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(4109,106,0,253,'container2'),(4110,121,0,253,'tommy-hilfiger-black-large-size'),(4111,132,0,253,'0'),(4112,206,0,253,'98% cotton, 2% elastane'),(4118,73,0,254,'Dark Grey Chino-grey-Small size'),(4119,84,0,254,'Dark Grey Chino'),(4120,86,0,254,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(4121,106,0,254,'container2'),(4122,121,0,254,'dark-grey-chino-grey-small-size'),(4123,132,0,254,'0'),(4124,206,0,254,'98% cotton, 2% elastane'),(4126,73,0,255,'Dark Grey Chino-grey-Medium size'),(4127,84,0,255,'Dark Grey Chino'),(4128,86,0,255,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(4129,106,0,255,'container2'),(4130,121,0,255,'dark-grey-chino-grey-medium-size'),(4131,132,0,255,'0'),(4132,206,0,255,'98% cotton, 2% elastane'),(4134,73,0,256,'Dark Grey Chino-grey-Large size'),(4135,84,0,256,'Dark Grey Chino'),(4136,86,0,256,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(4137,106,0,256,'container2'),(4138,121,0,256,'dark-grey-chino-grey-large-size'),(4139,132,0,256,'0'),(4140,206,0,256,'98% cotton, 2% elastane'),(4146,73,0,257,'Seventy Transitional Jacket-white-Small size'),(4147,84,0,257,'Seventy Transitional Jacket'),(4148,86,0,257,'Seventy Transitional Jacket '),(4149,106,0,257,'container2'),(4150,121,0,257,'seventy-transitional-jacket-white-small-size'),(4151,132,0,257,'0'),(4152,206,0,257,'Viscose'),(4154,73,0,258,'Seventy Transitional Jacket-white-Medium size'),(4155,84,0,258,'Seventy Transitional Jacket'),(4156,86,0,258,'Seventy Transitional Jacket '),(4157,106,0,258,'container2'),(4158,121,0,258,'seventy-transitional-jacket-white-medium-size'),(4159,132,0,258,'0'),(4160,206,0,258,'Viscose'),(4162,73,0,259,'Seventy Transitional Jacket-white-Extra small size'),(4163,84,0,259,'Seventy Transitional Jacket'),(4164,86,0,259,'Seventy Transitional Jacket '),(4165,106,0,259,'container2'),(4166,121,0,259,'seventy-transitional-jacket-white-extra-small-size'),(4167,132,0,259,'0'),(4168,206,0,259,'Viscose'),(4170,73,0,260,'Seventy Transitional Jacket-white-Large size'),(4171,84,0,260,'Seventy Transitional Jacket'),(4172,86,0,260,'Seventy Transitional Jacket '),(4173,106,0,260,'container2'),(4174,121,0,260,'seventy-transitional-jacket-white-large-size'),(4175,132,0,260,'0'),(4176,206,0,260,'Viscose'),(4182,73,0,261,'Black Chino-black-Small size'),(4183,84,0,261,'Black Chino'),(4184,86,0,261,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(4185,106,0,261,'container2'),(4186,121,0,261,'black-chino-black-small-size'),(4187,132,0,261,'0'),(4188,206,0,261,'98% cotton, 2% elastane'),(4190,73,0,262,'Black Chino-black-Medium size'),(4191,84,0,262,'Black Chino'),(4192,86,0,262,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(4193,106,0,262,'container2'),(4194,121,0,262,'black-chino-black-medium-size'),(4195,132,0,262,'0'),(4196,206,0,262,'98% cotton, 2% elastane'),(4198,73,0,263,'Black Chino-black-Large size'),(4199,84,0,263,'Black Chino'),(4200,86,0,263,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(4201,106,0,263,'container2'),(4202,121,0,263,'black-chino-black-large-size'),(4203,132,0,263,'0'),(4204,206,0,263,'98% cotton, 2% elastane'),(4206,73,0,264,'Black Chino-black-Extra large size'),(4207,84,0,264,'Black Chino'),(4208,86,0,264,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(4209,106,0,264,'container2'),(4210,121,0,264,'black-chino-black-extra-large-size'),(4211,132,0,264,'0'),(4212,206,0,264,'98% cotton, 2% elastane'),(4218,73,0,265,'Camper Lace-ups-black-EU 41'),(4219,84,0,265,'Camper Lace-ups'),(4220,86,0,265,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(4221,106,0,265,'container2'),(4222,121,0,265,'camper-lace-ups-black-eu-41'),(4223,132,0,265,'0'),(4224,206,0,265,'Leather'),(4226,73,0,266,'Camper Lace-ups-black-EU 42'),(4227,84,0,266,'Camper Lace-ups'),(4228,86,0,266,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(4229,106,0,266,'container2'),(4230,121,0,266,'camper-lace-ups-black-eu-42'),(4231,132,0,266,'0'),(4232,206,0,266,'Leather'),(4234,73,0,267,'Camper Lace-ups-black-EU 40'),(4235,84,0,267,'Camper Lace-ups'),(4236,86,0,267,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(4237,106,0,267,'container2'),(4238,121,0,267,'camper-lace-ups-black-eu-40'),(4239,132,0,267,'0'),(4240,206,0,267,'Leather'),(4242,73,0,268,'Camper Lace-ups-black-EU 44'),(4243,84,0,268,'Camper Lace-ups'),(4244,86,0,268,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(4245,106,0,268,'container2'),(4246,121,0,268,'camper-lace-ups-black-eu-44'),(4247,132,0,268,'0'),(4248,206,0,268,'Leather'),(4250,73,0,269,'Camper Lace-ups-black-EU 43'),(4251,84,0,269,'Camper Lace-ups'),(4252,86,0,269,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(4253,106,0,269,'container2'),(4254,121,0,269,'camper-lace-ups-black-eu-43'),(4255,132,0,269,'0'),(4256,206,0,269,'Leather'),(4262,73,0,270,'Dark blue sunglasses-Medium size-blue'),(4263,84,0,270,'Sunglasses'),(4264,86,0,270,'Sunglasses Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: plastic\r\nPlease note: May only be returne'),(4265,106,0,270,'container2'),(4266,121,0,270,'dark-blue-sunglasses-medium-size-blue'),(4267,132,0,270,'0'),(4268,206,0,270,'Plastic'),(4270,73,0,271,'Dark blue sunglasses-Large size-blue'),(4271,84,0,271,'Sunglasses'),(4272,86,0,271,'Sunglasses Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: plastic\r\nPlease note: May only be returne'),(4273,106,0,271,'container2'),(4274,121,0,271,'dark-blue-sunglasses-large-size-blue'),(4275,132,0,271,'0'),(4276,206,0,271,'Plastic'),(4282,73,0,272,'Slim Fit Jeans – Eline-Small size-blue'),(4283,84,0,272,'Slim Fit Jeans – Eline'),(4284,86,0,272,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a'),(4285,106,0,272,'container2'),(4286,121,0,272,'slim-fit-jeans-eline-small-size-blue'),(4287,132,0,272,'0'),(4288,73,0,273,'Slim Fit Jeans – Eline-Medium size-blue'),(4289,84,0,273,'Slim Fit Jeans – Eline'),(4290,86,0,273,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a'),(4291,106,0,273,'container2'),(4292,121,0,273,'slim-fit-jeans-eline-medium-size-blue'),(4293,132,0,273,'0'),(4294,73,0,274,'Slim Fit Jeans – Eline-Extra small size-blue'),(4295,84,0,274,'Slim Fit Jeans – Eline'),(4296,86,0,274,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a'),(4297,106,0,274,'container2'),(4298,121,0,274,'slim-fit-jeans-eline-extra-small-size-blue'),(4299,132,0,274,'0'),(4300,73,0,275,'Slim Fit Jeans – Eline-Large size-blue'),(4301,84,0,275,'Slim Fit Jeans – Eline'),(4302,86,0,275,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a'),(4303,106,0,275,'container2'),(4304,121,0,275,'slim-fit-jeans-eline-large-size-blue'),(4305,132,0,275,'0'),(4306,73,0,276,'Slim Fit Jeans – Eline-Extra large size-blue'),(4307,84,0,276,'Slim Fit Jeans – Eline'),(4308,86,0,276,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a'),(4309,106,0,276,'container2'),(4310,121,0,276,'slim-fit-jeans-eline-extra-large-size-blue'),(4311,132,0,276,'0'),(4316,73,0,277,'Grey Sweat Pants-grey-Extra small size'),(4317,84,0,277,'Grey Sweat Pants'),(4318,86,0,277,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(4319,106,0,277,'container2'),(4320,121,0,277,'grey-sweat-pants-grey-extra-small-size'),(4321,132,0,277,'0'),(4322,206,0,277,'80% cotton, 17% polyester, 3% elastane'),(4324,73,0,278,'Grey Sweat Pants-grey-Small size'),(4325,84,0,278,'Grey Sweat Pants'),(4326,86,0,278,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(4327,106,0,278,'container2'),(4328,121,0,278,'grey-sweat-pants-grey-small-size'),(4329,132,0,278,'0'),(4330,206,0,278,'80% cotton, 17% polyester, 3% elastane'),(4332,73,0,279,'Grey Sweat Pants-grey-Medium size'),(4333,84,0,279,'Grey Sweat Pants'),(4334,86,0,279,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(4335,106,0,279,'container2'),(4336,121,0,279,'grey-sweat-pants-grey-medium-size'),(4337,132,0,279,'0'),(4338,206,0,279,'80% cotton, 17% polyester, 3% elastane'),(4340,73,0,280,'Grey Sweat Pants-grey-Large size'),(4341,84,0,280,'Grey Sweat Pants'),(4342,86,0,280,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(4343,106,0,280,'container2'),(4344,121,0,280,'grey-sweat-pants-grey-large-size'),(4345,132,0,280,'0'),(4346,206,0,280,'80% cotton, 17% polyester, 3% elastane'),(4352,73,0,281,'Black Knitted Pants-black-Medium size'),(4353,84,0,281,'Black Knitted Pants'),(4354,86,0,281,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(4355,106,0,281,'container2'),(4356,121,0,281,'black-knitted-pants-black-medium-size'),(4357,132,0,281,'0'),(4358,206,0,281,'60% cotton, 25% polyamide, 15% wool'),(4360,73,0,282,'Black Knitted Pants-black-Small size'),(4361,84,0,282,'Black Knitted Pants'),(4362,86,0,282,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(4363,106,0,282,'container2'),(4364,121,0,282,'black-knitted-pants-black-small-size'),(4365,132,0,282,'0'),(4366,206,0,282,'60% cotton, 25% polyamide, 15% wool'),(4368,73,0,283,'Black Knitted Pants-black-Extra large size'),(4369,84,0,283,'Black Knitted Pants'),(4370,86,0,283,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(4371,106,0,283,'container2'),(4372,121,0,283,'black-knitted-pants-black-extra-large-size'),(4373,132,0,283,'0'),(4374,206,0,283,'60% cotton, 25% polyamide, 15% wool'),(4376,73,0,284,'Black Knitted Pants-black-Large size'),(4377,84,0,284,'Black Knitted Pants'),(4378,86,0,284,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(4379,106,0,284,'container2'),(4380,121,0,284,'black-knitted-pants-black-large-size'),(4381,132,0,284,'0'),(4382,206,0,284,'60% cotton, 25% polyamide, 15% wool'),(4388,73,0,285,'Green sunglasses-black-Small size'),(4389,84,0,285,'Green sunglasses'),(4390,86,0,285,'Green sunglasses Reference number: MB 657S\r\nMeasurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3\r\nExtras: logo appliqué(s), case included\r\nMaterial: tita'),(4391,106,0,285,'container2'),(4392,121,0,285,'green-sunglasses-black-small-size'),(4393,132,0,285,'0'),(4394,206,0,285,'Titanium'),(4396,73,0,286,'Green sunglasses-black-Medium size'),(4397,84,0,286,'Green sunglasses'),(4398,86,0,286,'Green sunglasses Reference number: MB 657S\r\nMeasurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3\r\nExtras: logo appliqué(s), case included\r\nMaterial: tita'),(4399,106,0,286,'container2'),(4400,121,0,286,'green-sunglasses-black-medium-size'),(4401,132,0,286,'0'),(4402,206,0,286,'Titanium'),(4408,73,0,287,'Tan Corduroy Trousers-brown-Small size'),(4409,84,0,287,'Tan Corduroy Trousers'),(4410,86,0,287,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(4411,106,0,287,'container2'),(4412,121,0,287,'tan-corduroy-trousers-brown-small-size'),(4413,132,0,287,'0'),(4414,206,0,287,'98% cotton, 2% elastane'),(4416,73,0,288,'Tan Corduroy Trousers-brown-Large size'),(4417,84,0,288,'Tan Corduroy Trousers'),(4418,86,0,288,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(4419,106,0,288,'container2'),(4420,121,0,288,'tan-corduroy-trousers-brown-large-size'),(4421,132,0,288,'0'),(4422,206,0,288,'98% cotton, 2% elastane'),(4424,73,0,289,'Tan Corduroy Trousers-brown-Medium size'),(4425,84,0,289,'Tan Corduroy Trousers'),(4426,86,0,289,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(4427,106,0,289,'container2'),(4428,121,0,289,'tan-corduroy-trousers-brown-medium-size'),(4429,132,0,289,'0'),(4430,206,0,289,'98% cotton, 2% elastane'),(4436,73,0,290,'Rino & Pelle Quilted Jacket-brown-Extra small size'),(4437,84,0,290,'Seventy Transitional Jacket'),(4438,86,0,290,'Seventy Transitional Jacket '),(4439,106,0,290,'container2'),(4440,121,0,290,'rino-pelle-quilted-jacket-brown-extra-small-size'),(4441,132,0,290,'0'),(4442,206,0,290,'100% polyamide'),(4444,73,0,291,'Rino & Pelle Quilted Jacket-brown-Small size'),(4445,84,0,291,'Seventy Transitional Jacket'),(4446,86,0,291,'Seventy Transitional Jacket '),(4447,106,0,291,'container2'),(4448,121,0,291,'rino-pelle-quilted-jacket-brown-small-size'),(4449,132,0,291,'0'),(4450,206,0,291,'100% polyamide'),(4452,73,0,292,'Rino & Pelle Quilted Jacket-brown-Medium size'),(4453,84,0,292,'Seventy Transitional Jacket'),(4454,86,0,292,'Seventy Transitional Jacket '),(4455,106,0,292,'container2'),(4456,121,0,292,'rino-pelle-quilted-jacket-brown-medium-size'),(4457,132,0,292,'0'),(4458,206,0,292,'100% polyamide'),(4460,73,0,293,'Rino & Pelle Quilted Jacket-white-Extra small size'),(4461,84,0,293,'Seventy Transitional Jacket'),(4462,86,0,293,'Seventy Transitional Jacket '),(4463,106,0,293,'container2'),(4464,121,0,293,'rino-pelle-quilted-jacket-white-extra-small-size'),(4465,132,0,293,'0'),(4466,206,0,293,'100% polyamide'),(4468,73,0,294,'Rino & Pelle Quilted Jacket-white-Small size'),(4469,84,0,294,'Seventy Transitional Jacket'),(4470,86,0,294,'Seventy Transitional Jacket '),(4471,106,0,294,'container2'),(4472,121,0,294,'rino-pelle-quilted-jacket-white-small-size'),(4473,132,0,294,'0'),(4474,206,0,294,'100% polyamide'),(4476,73,0,295,'Rino & Pelle Quilted Jacket-white-Medium size'),(4477,84,0,295,'Seventy Transitional Jacket'),(4478,86,0,295,'Seventy Transitional Jacket '),(4479,106,0,295,'container2'),(4480,121,0,295,'rino-pelle-quilted-jacket-white-medium-size'),(4481,132,0,295,'0'),(4482,206,0,295,'100% polyamide'),(4488,73,0,296,'Camel Dress Trousers – Glenn-brown-Extra small size'),(4489,84,0,296,'Camel Dress Trousers – Glenn'),(4490,86,0,296,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(4491,106,0,296,'container2'),(4492,121,0,296,'camel-dress-trousers-glenn-brown-extra-small-size'),(4493,132,0,296,'0'),(4494,206,0,296,'98% cotton, 2% elastane'),(4496,73,0,297,'Camel Dress Trousers – Glenn-brown-Small size'),(4497,84,0,297,'Camel Dress Trousers – Glenn'),(4498,86,0,297,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(4499,106,0,297,'container2'),(4500,121,0,297,'camel-dress-trousers-glenn-brown-small-size'),(4501,132,0,297,'0'),(4502,206,0,297,'98% cotton, 2% elastane'),(4504,73,0,298,'Camel Dress Trousers – Glenn-brown-Medium size'),(4505,84,0,298,'Camel Dress Trousers – Glenn'),(4506,86,0,298,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(4507,106,0,298,'container2'),(4508,121,0,298,'camel-dress-trousers-glenn-brown-medium-size'),(4509,132,0,298,'0'),(4510,206,0,298,'98% cotton, 2% elastane'),(4512,73,0,299,'Camel Dress Trousers – Glenn-brown-Large size'),(4513,84,0,299,'Camel Dress Trousers – Glenn'),(4514,86,0,299,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(4515,106,0,299,'container2'),(4516,121,0,299,'camel-dress-trousers-glenn-brown-large-size'),(4517,132,0,299,'0'),(4518,206,0,299,'98% cotton, 2% elastane'),(4524,73,0,300,'Pumps-red-EU 37'),(4525,84,0,300,'Pumps'),(4526,86,0,300,'Pumps Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(4527,106,0,300,'container2'),(4528,121,0,300,'pumps-red-eu-37'),(4529,132,0,300,'0'),(4530,206,0,300,'Leather'),(4532,73,0,301,'Pumps-red-EU 38'),(4533,84,0,301,'Pumps'),(4534,86,0,301,'Pumps Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(4535,106,0,301,'container2'),(4536,121,0,301,'pumps-red-eu-38'),(4537,132,0,301,'0'),(4538,206,0,301,'Leather'),(4540,73,0,302,'Pumps-red-EU 36'),(4541,84,0,302,'Pumps'),(4542,86,0,302,'Pumps Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(4543,106,0,302,'container2'),(4544,121,0,302,'pumps-red-eu-36'),(4545,132,0,302,'0'),(4546,206,0,302,'Leather'),(4548,73,0,303,'Pumps-red-EU 39'),(4549,84,0,303,'Pumps'),(4550,86,0,303,'Pumps Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(4551,106,0,303,'container2'),(4552,121,0,303,'pumps-red-eu-39'),(4553,132,0,303,'0'),(4554,206,0,303,'Leather'),(4556,73,0,304,'Pumps-red-EU 40'),(4557,84,0,304,'Pumps'),(4558,86,0,304,'Pumps Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(4559,106,0,304,'container2'),(4560,121,0,304,'pumps-red-eu-40'),(4561,132,0,304,'0'),(4562,206,0,304,'Leather'),(4564,73,0,305,'Pumps-red-EU 41'),(4565,84,0,305,'Pumps'),(4566,86,0,305,'Pumps Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(4567,106,0,305,'container2'),(4568,121,0,305,'pumps-red-eu-41'),(4569,132,0,305,'0'),(4570,206,0,305,'Leather'),(4576,73,0,306,'Black Sweat Pants-black-Extra small size'),(4577,84,0,306,'Black Sweat Pants'),(4578,86,0,306,'Black Sweat Pants Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care ins'),(4579,106,0,306,'container2'),(4580,121,0,306,'black-sweat-pants-black-extra-small-size'),(4581,132,0,306,'0'),(4582,206,0,306,'80% cotton, 20% polyester'),(4584,73,0,307,'Black Sweat Pants-black-Small size'),(4585,84,0,307,'Black Sweat Pants'),(4586,86,0,307,'Black Sweat Pants Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care ins'),(4587,106,0,307,'container2'),(4588,121,0,307,'black-sweat-pants-black-small-size'),(4589,132,0,307,'0'),(4590,206,0,307,'80% cotton, 20% polyester'),(4592,73,0,308,'Black Sweat Pants-black-Medium size'),(4593,84,0,308,'Black Sweat Pants'),(4594,86,0,308,'Black Sweat Pants Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care ins'),(4595,106,0,308,'container2'),(4596,121,0,308,'black-sweat-pants-black-medium-size'),(4597,132,0,308,'0'),(4598,206,0,308,'80% cotton, 20% polyester'),(4604,73,0,309,'Strenesse Elegant Jacket-white-Extra small size'),(4605,84,0,309,'Seventy Transitional Jacket'),(4606,86,0,309,'Seventy Transitional Jacket '),(4607,106,0,309,'container2'),(4608,121,0,309,'strenesse-elegant-jacket-white-extra-small-size'),(4609,132,0,309,'0'),(4610,206,0,309,'77% viscose, 19% polyamide'),(4612,73,0,310,'Strenesse Elegant Jacket-white-Small size'),(4613,84,0,310,'Seventy Transitional Jacket'),(4614,86,0,310,'Seventy Transitional Jacket '),(4615,106,0,310,'container2'),(4616,121,0,310,'strenesse-elegant-jacket-white-small-size'),(4617,132,0,310,'0'),(4618,206,0,310,'77% viscose, 19% polyamide'),(4620,73,0,311,'Strenesse Elegant Jacket-white-Medium size'),(4621,84,0,311,'Seventy Transitional Jacket'),(4622,86,0,311,'Seventy Transitional Jacket '),(4623,106,0,311,'container2'),(4624,121,0,311,'strenesse-elegant-jacket-white-medium-size'),(4625,132,0,311,'0'),(4626,206,0,311,'77% viscose, 19% polyamide'),(4632,73,0,312,'Slim Fit Jeans – Jane-Medium size-black'),(4633,84,0,312,'Slim Fit Jeans – Jane'),(4634,86,0,312,'Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPo'),(4635,106,0,312,'container2'),(4636,121,0,312,'slim-fit-jeans-jane-medium-size-black'),(4637,132,0,312,'0'),(4638,73,0,313,'Slim Fit Jeans – Jane-Large size-black'),(4639,84,0,313,'Slim Fit Jeans – Jane'),(4640,86,0,313,'Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPo'),(4641,106,0,313,'container2'),(4642,121,0,313,'slim-fit-jeans-jane-large-size-black'),(4643,132,0,313,'0'),(4644,73,0,314,'Slim Fit Jeans – Jane-Small size-black'),(4645,84,0,314,'Slim Fit Jeans – Jane'),(4646,86,0,314,'Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPo'),(4647,106,0,314,'container2'),(4648,121,0,314,'slim-fit-jeans-jane-small-size-black'),(4649,132,0,314,'0'),(4650,73,0,315,'Slim Fit Jeans – Jane-Extra small size-black'),(4651,84,0,315,'Slim Fit Jeans – Jane'),(4652,86,0,315,'Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPo'),(4653,106,0,315,'container2'),(4654,121,0,315,'slim-fit-jeans-jane-extra-small-size-black'),(4655,132,0,315,'0'),(4660,73,0,316,'Black sunglasses-black-Small size'),(4661,84,0,316,'Black sunglasses'),(4662,86,0,316,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(4663,106,0,316,'container2'),(4664,121,0,316,'black-sunglasses-black-small-size'),(4665,132,0,316,'0'),(4666,206,0,316,'Plastic'),(4668,73,0,317,'Black sunglasses-black-Medium size'),(4669,84,0,317,'Black sunglasses'),(4670,86,0,317,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(4671,106,0,317,'container2'),(4672,121,0,317,'black-sunglasses-black-medium-size'),(4673,132,0,317,'0'),(4674,206,0,317,'Plastic'),(4680,73,0,318,'Escada Gilet-white-Small size'),(4681,84,0,318,'Seventy Transitional Jacket'),(4682,86,0,318,'Seventy Transitional Jacket '),(4683,106,0,318,'container2'),(4684,121,0,318,'escada-gilet-white-small-size'),(4685,132,0,318,'0'),(4686,206,0,318,'100% virgin wool'),(4688,73,0,319,'Escada Gilet-white-Medium size'),(4689,84,0,319,'Seventy Transitional Jacket'),(4690,86,0,319,'Seventy Transitional Jacket '),(4691,106,0,319,'container2'),(4692,121,0,319,'escada-gilet-white-medium-size'),(4693,132,0,319,'0'),(4694,206,0,319,'100% virgin wool'),(4696,73,0,320,'Escada Gilet-white-Extra small size'),(4697,84,0,320,'Seventy Transitional Jacket'),(4698,86,0,320,'Seventy Transitional Jacket '),(4699,106,0,320,'container2'),(4700,121,0,320,'escada-gilet-white-extra-small-size'),(4701,132,0,320,'0'),(4702,206,0,320,'100% virgin wool'),(4704,73,0,321,'Escada Gilet-white-Large size'),(4705,84,0,321,'Seventy Transitional Jacket'),(4706,86,0,321,'Seventy Transitional Jacket '),(4707,106,0,321,'container2'),(4708,121,0,321,'escada-gilet-white-large-size'),(4709,132,0,321,'0'),(4710,206,0,321,'100% virgin wool'),(4716,73,0,322,'Silver Pumps-grey-EU 36'),(4717,84,0,322,'Black Chino'),(4718,86,0,322,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(4719,106,0,322,'container2'),(4720,121,0,322,'silver-pumps-grey-eu-36'),(4721,132,0,322,'0'),(4722,206,0,322,'Leather'),(4724,73,0,323,'Silver Pumps-grey-EU 37'),(4725,84,0,323,'Black Chino'),(4726,86,0,323,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(4727,106,0,323,'container2'),(4728,121,0,323,'silver-pumps-grey-eu-37'),(4729,132,0,323,'0'),(4730,206,0,323,'Leather'),(4732,73,0,324,'Silver Pumps-grey-EU 38'),(4733,84,0,324,'Black Chino'),(4734,86,0,324,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(4735,106,0,324,'container2'),(4736,121,0,324,'silver-pumps-grey-eu-38'),(4737,132,0,324,'0'),(4738,206,0,324,'Leather'),(4740,73,0,325,'Silver Pumps-grey-EU 39'),(4741,84,0,325,'Black Chino'),(4742,86,0,325,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(4743,106,0,325,'container2'),(4744,121,0,325,'silver-pumps-grey-eu-39'),(4745,132,0,325,'0'),(4746,206,0,325,'Leather'),(4748,73,0,326,'Silver Pumps-grey-EU 40'),(4749,84,0,326,'Black Chino'),(4750,86,0,326,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(4751,106,0,326,'container2'),(4752,121,0,326,'silver-pumps-grey-eu-40'),(4753,132,0,326,'0'),(4754,206,0,326,'Leather'),(4756,73,0,327,'Silver Pumps-grey-EU 41'),(4757,84,0,327,'Black Chino'),(4758,86,0,327,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(4759,106,0,327,'container2'),(4760,121,0,327,'silver-pumps-grey-eu-41'),(4761,132,0,327,'0'),(4762,206,0,327,'Leather'),(4768,73,0,328,'Violet sunglasses-black-Small size'),(4769,84,0,328,'Black sunglasses'),(4770,86,0,328,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(4771,106,0,328,'container2'),(4772,121,0,328,'violet-sunglasses-black-small-size'),(4773,132,0,328,'0'),(4774,206,0,328,'Plastic'),(4776,73,0,329,'Violet sunglasses-black-Medium size'),(4777,84,0,329,'Black sunglasses'),(4778,86,0,329,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(4779,106,0,329,'container2'),(4780,121,0,329,'violet-sunglasses-black-medium-size'),(4781,132,0,329,'0'),(4782,206,0,329,'Plastic'),(4788,73,0,330,'Blue Straight Leg Jeans-blue-Medium size'),(4789,84,0,330,'Blue Straight Leg Jeans'),(4790,86,0,330,'Blue Straight Leg Jeans Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial'),(4791,106,0,330,'container2'),(4792,121,0,330,'blue-straight-leg-jeans-blue-medium-size'),(4793,132,0,330,'0'),(4794,206,0,330,'81% cotton, 17% Elastomultiester, 2% elastane'),(4796,73,0,331,'Blue Straight Leg Jeans-blue-Extra small size'),(4797,84,0,331,'Blue Straight Leg Jeans'),(4798,86,0,331,'Blue Straight Leg Jeans Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial'),(4799,106,0,331,'container2'),(4800,121,0,331,'blue-straight-leg-jeans-blue-extra-small-size'),(4801,132,0,331,'0'),(4802,206,0,331,'81% cotton, 17% Elastomultiester, 2% elastane'),(4804,73,0,332,'Blue Straight Leg Jeans-blue-Small size'),(4805,84,0,332,'Blue Straight Leg Jeans'),(4806,86,0,332,'Blue Straight Leg Jeans Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial'),(4807,106,0,332,'container2'),(4808,121,0,332,'blue-straight-leg-jeans-blue-small-size'),(4809,132,0,332,'0'),(4810,206,0,332,'81% cotton, 17% Elastomultiester, 2% elastane'),(4812,73,0,333,'Blue Straight Leg Jeans-blue-Large size'),(4813,84,0,333,'Blue Straight Leg Jeans'),(4814,86,0,333,'Blue Straight Leg Jeans Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial'),(4815,106,0,333,'container2'),(4816,121,0,333,'blue-straight-leg-jeans-blue-large-size'),(4817,132,0,333,'0'),(4818,206,0,333,'81% cotton, 17% Elastomultiester, 2% elastane'),(4824,73,0,334,'Dolomite Quilted Jacket-white-Extra small size'),(4825,84,0,334,'Seventy Transitional Jacket'),(4826,86,0,334,'Seventy Transitional Jacket '),(4827,106,0,334,'container2'),(4828,121,0,334,'dolomite-quilted-jacket-white-extra-small-size'),(4829,132,0,334,'0'),(4830,206,0,334,'100% polyamide'),(4832,73,0,335,'Dolomite Quilted Jacket-white-Small size'),(4833,84,0,335,'Seventy Transitional Jacket'),(4834,86,0,335,'Seventy Transitional Jacket '),(4835,106,0,335,'container2'),(4836,121,0,335,'dolomite-quilted-jacket-white-small-size'),(4837,132,0,335,'0'),(4838,206,0,335,'100% polyamide'),(4840,73,0,336,'Dolomite Quilted Jacket-white-Medium size'),(4841,84,0,336,'Seventy Transitional Jacket'),(4842,86,0,336,'Seventy Transitional Jacket '),(4843,106,0,336,'container2'),(4844,121,0,336,'dolomite-quilted-jacket-white-medium-size'),(4845,132,0,336,'0'),(4846,206,0,336,'100% polyamide'),(4848,73,0,337,'Dolomite Quilted Jacket-white-Large size'),(4849,84,0,337,'Seventy Transitional Jacket'),(4850,86,0,337,'Seventy Transitional Jacket '),(4851,106,0,337,'container2'),(4852,121,0,337,'dolomite-quilted-jacket-white-large-size'),(4853,132,0,337,'0'),(4854,206,0,337,'100% polyamide'),(4860,73,0,338,'Nude sunglasses-white-Small size'),(4861,84,0,338,'Black sunglasses'),(4862,86,0,338,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(4863,106,0,338,'container2'),(4864,121,0,338,'nude-sunglasses-white-small-size'),(4865,132,0,338,'0'),(4866,206,0,338,'Plastic'),(4868,73,0,339,'Nude sunglasses-white-Extra small size'),(4869,84,0,339,'Black sunglasses'),(4870,86,0,339,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(4871,106,0,339,'container2'),(4872,121,0,339,'nude-sunglasses-white-extra-small-size'),(4873,132,0,339,'0'),(4874,206,0,339,'Plastic'),(4876,73,0,340,'Nude sunglasses-white-Medium size'),(4877,84,0,340,'Black sunglasses'),(4878,86,0,340,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(4879,106,0,340,'container2'),(4880,121,0,340,'nude-sunglasses-white-medium-size'),(4881,132,0,340,'0'),(4882,206,0,340,'Plastic'),(4888,73,0,341,'Dark Blue Slim Fit Jeans-blue-Extra small size'),(4889,84,0,341,'Dark Blue Slim Fit Jeans'),(4890,86,0,341,'Dark Blue Slim Fit Jeans Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt lo'),(4891,106,0,341,'container2'),(4892,121,0,341,'dark-blue-slim-fit-jeans-blue-extra-small-size'),(4893,132,0,341,'0'),(4894,206,0,341,'100% cotton'),(4896,73,0,342,'Dark Blue Slim Fit Jeans-blue-Small size'),(4897,84,0,342,'Dark Blue Slim Fit Jeans'),(4898,86,0,342,'Dark Blue Slim Fit Jeans Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt lo'),(4899,106,0,342,'container2'),(4900,121,0,342,'dark-blue-slim-fit-jeans-blue-small-size'),(4901,132,0,342,'0'),(4902,206,0,342,'100% cotton'),(4904,73,0,343,'Dark Blue Slim Fit Jeans-blue-Medium size'),(4905,84,0,343,'Dark Blue Slim Fit Jeans'),(4906,86,0,343,'Dark Blue Slim Fit Jeans Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt lo'),(4907,106,0,343,'container2'),(4908,121,0,343,'dark-blue-slim-fit-jeans-blue-medium-size'),(4909,132,0,343,'0'),(4910,206,0,343,'100% cotton'),(4912,73,0,344,'Dark Blue Slim Fit Jeans-blue-Large size'),(4913,84,0,344,'Dark Blue Slim Fit Jeans'),(4914,86,0,344,'Dark Blue Slim Fit Jeans Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt lo'),(4915,106,0,344,'container2'),(4916,121,0,344,'dark-blue-slim-fit-jeans-blue-large-size'),(4917,132,0,344,'0'),(4918,206,0,344,'100% cotton'),(4920,73,0,345,'Dark Blue Slim Fit Jeans-blue-Extra large size'),(4921,84,0,345,'Dark Blue Slim Fit Jeans'),(4922,86,0,345,'Dark Blue Slim Fit Jeans Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt lo'),(4923,106,0,345,'container2'),(4924,121,0,345,'dark-blue-slim-fit-jeans-blue-extra-large-size'),(4925,132,0,345,'0'),(4926,206,0,345,'100% cotton'),(4932,73,0,346,'Blue Slim Fit Jeans-blue-Small size'),(4933,84,0,346,'Blue Slim Fit Jeans'),(4934,86,0,346,'Blue Slim Fit Jeans Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the'),(4935,106,0,346,'container2'),(4936,121,0,346,'blue-slim-fit-jeans-blue-small-size'),(4937,132,0,346,'0'),(4938,206,0,346,'99% cotton, 1% elastane'),(4940,73,0,347,'Blue Slim Fit Jeans-blue-Large size'),(4941,84,0,347,'Blue Slim Fit Jeans'),(4942,86,0,347,'Blue Slim Fit Jeans Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the'),(4943,106,0,347,'container2'),(4944,121,0,347,'blue-slim-fit-jeans-blue-large-size'),(4945,132,0,347,'0'),(4946,206,0,347,'99% cotton, 1% elastane'),(4948,73,0,348,'Blue Slim Fit Jeans-blue-Medium size'),(4949,84,0,348,'Blue Slim Fit Jeans'),(4950,86,0,348,'Blue Slim Fit Jeans Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the'),(4951,106,0,348,'container2'),(4952,121,0,348,'blue-slim-fit-jeans-blue-medium-size'),(4953,132,0,348,'0'),(4954,206,0,348,'99% cotton, 1% elastane'),(4956,73,0,349,'Blue Slim Fit Jeans-blue-Extra large size'),(4957,84,0,349,'Blue Slim Fit Jeans'),(4958,86,0,349,'Blue Slim Fit Jeans Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the'),(4959,106,0,349,'container2'),(4960,121,0,349,'blue-slim-fit-jeans-blue-extra-large-size'),(4961,132,0,349,'0'),(4962,206,0,349,'99% cotton, 1% elastane'),(4968,73,0,350,'Silk Pumps-brown-EU 37'),(4969,84,0,350,'Black Chino'),(4970,86,0,350,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(4971,106,0,350,'container2'),(4972,121,0,350,'silk-pumps-brown-eu-37'),(4973,132,0,350,'0'),(4974,206,0,350,'Synthetic'),(4976,73,0,351,'Silk Pumps-brown-EU 36'),(4977,84,0,351,'Black Chino'),(4978,86,0,351,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(4979,106,0,351,'container2'),(4980,121,0,351,'silk-pumps-brown-eu-36'),(4981,132,0,351,'0'),(4982,206,0,351,'Synthetic'),(4984,73,0,352,'Silk Pumps-brown-EU 38'),(4985,84,0,352,'Black Chino'),(4986,86,0,352,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(4987,106,0,352,'container2'),(4988,121,0,352,'silk-pumps-brown-eu-38'),(4989,132,0,352,'0'),(4990,206,0,352,'Synthetic'),(4992,73,0,353,'Silk Pumps-brown-EU 40'),(4993,84,0,353,'Black Chino'),(4994,86,0,353,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(4995,106,0,353,'container2'),(4996,121,0,353,'silk-pumps-brown-eu-40'),(4997,132,0,353,'0'),(4998,206,0,353,'Synthetic'),(5004,73,0,354,'Calvin Klein Jeans Down Jacket-white-Small size'),(5005,84,0,354,'Seventy Transitional Jacket'),(5006,86,0,354,'Seventy Transitional Jacket '),(5007,106,0,354,'container2'),(5008,121,0,354,'calvin-klein-jeans-down-jacket-white-small-size'),(5009,132,0,354,'0'),(5010,206,0,354,'100% polyamide'),(5012,73,0,355,'Calvin Klein Jeans Down Jacket-white-Extra small size'),(5013,84,0,355,'Seventy Transitional Jacket'),(5014,86,0,355,'Seventy Transitional Jacket '),(5015,106,0,355,'container2'),(5016,121,0,355,'calvin-klein-jeans-down-jacket-white-extra-small-size'),(5017,132,0,355,'0'),(5018,206,0,355,'100% polyamide'),(5020,73,0,356,'Calvin Klein Jeans Down Jacket-white-Large size'),(5021,84,0,356,'Seventy Transitional Jacket'),(5022,86,0,356,'Seventy Transitional Jacket '),(5023,106,0,356,'container2'),(5024,121,0,356,'calvin-klein-jeans-down-jacket-white-large-size'),(5025,132,0,356,'0'),(5026,206,0,356,'100% polyamide'),(5028,73,0,357,'Calvin Klein Jeans Down Jacket-white-Medium size'),(5029,84,0,357,'Seventy Transitional Jacket'),(5030,86,0,357,'Seventy Transitional Jacket '),(5031,106,0,357,'container2'),(5032,121,0,357,'calvin-klein-jeans-down-jacket-white-medium-size'),(5033,132,0,357,'0'),(5034,206,0,357,'100% polyamide'),(5040,73,0,358,'Khaki Straight Leg Jeans Cadiz-brown-Small size'),(5041,84,0,358,'Khaki Straight Leg Jeans Cadiz'),(5042,86,0,358,'Khaki Straight Leg Jeans Cadiz Cut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern:'),(5043,106,0,358,'container2'),(5044,121,0,358,'khaki-straight-leg-jeans-cadiz-brown-small-size'),(5045,132,0,358,'0'),(5046,206,0,358,'67% cotton, 30% polyester, 3% elastane'),(5048,73,0,359,'Khaki Straight Leg Jeans Cadiz-brown-Medium size'),(5049,84,0,359,'Khaki Straight Leg Jeans Cadiz'),(5050,86,0,359,'Khaki Straight Leg Jeans Cadiz Cut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern:'),(5051,106,0,359,'container2'),(5052,121,0,359,'khaki-straight-leg-jeans-cadiz-brown-medium-size'),(5053,132,0,359,'0'),(5054,206,0,359,'67% cotton, 30% polyester, 3% elastane'),(5056,73,0,360,'Khaki Straight Leg Jeans Cadiz-brown-Large size'),(5057,84,0,360,'Khaki Straight Leg Jeans Cadiz'),(5058,86,0,360,'Khaki Straight Leg Jeans Cadiz Cut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern:'),(5059,106,0,360,'container2'),(5060,121,0,360,'khaki-straight-leg-jeans-cadiz-brown-large-size'),(5061,132,0,360,'0'),(5062,206,0,360,'67% cotton, 30% polyester, 3% elastane'),(5064,73,0,361,'Khaki Straight Leg Jeans Cadiz-black-Small size'),(5065,84,0,361,'Khaki Straight Leg Jeans Cadiz'),(5066,86,0,361,'Khaki Straight Leg Jeans Cadiz Cut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern:'),(5067,106,0,361,'container2'),(5068,121,0,361,'khaki-straight-leg-jeans-cadiz-black-small-size'),(5069,132,0,361,'0'),(5070,206,0,361,'67% cotton, 30% polyester, 3% elastane'),(5072,73,0,362,'Khaki Straight Leg Jeans Cadiz-black-Medium size'),(5073,84,0,362,'Khaki Straight Leg Jeans Cadiz'),(5074,86,0,362,'Khaki Straight Leg Jeans Cadiz Cut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern:'),(5075,106,0,362,'container2'),(5076,121,0,362,'khaki-straight-leg-jeans-cadiz-black-medium-size'),(5077,132,0,362,'0'),(5078,206,0,362,'67% cotton, 30% polyester, 3% elastane'),(5080,73,0,363,'Khaki Straight Leg Jeans Cadiz-black-Large size'),(5081,84,0,363,'Khaki Straight Leg Jeans Cadiz'),(5082,86,0,363,'Khaki Straight Leg Jeans Cadiz Cut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern:'),(5083,106,0,363,'container2'),(5084,121,0,363,'khaki-straight-leg-jeans-cadiz-black-large-size'),(5085,132,0,363,'0'),(5086,206,0,363,'67% cotton, 30% polyester, 3% elastane'),(5092,73,0,364,'Colmar Soft Down Jacket-white-Small size'),(5093,84,0,364,'Seventy Transitional Jacket'),(5094,86,0,364,'Seventy Transitional Jacket '),(5095,106,0,364,'container2'),(5096,121,0,364,'colmar-soft-down-jacket-white-small-size'),(5097,132,0,364,'0'),(5098,206,0,364,'100% polyamide'),(5100,73,0,365,'Colmar Soft Down Jacket-white-Medium size'),(5101,84,0,365,'Seventy Transitional Jacket'),(5102,86,0,365,'Seventy Transitional Jacket '),(5103,106,0,365,'container2'),(5104,121,0,365,'colmar-soft-down-jacket-white-medium-size'),(5105,132,0,365,'0'),(5106,206,0,365,'100% polyamide'),(5108,73,0,366,'Colmar Soft Down Jacket-white-Extra small size'),(5109,84,0,366,'Seventy Transitional Jacket'),(5110,86,0,366,'Seventy Transitional Jacket '),(5111,106,0,366,'container2'),(5112,121,0,366,'colmar-soft-down-jacket-white-extra-small-size'),(5113,132,0,366,'0'),(5114,206,0,366,'100% polyamide'),(5116,73,0,367,'Colmar Soft Down Jacket-white-Large size'),(5117,84,0,367,'Seventy Transitional Jacket'),(5118,86,0,367,'Seventy Transitional Jacket '),(5119,106,0,367,'container2'),(5120,121,0,367,'colmar-soft-down-jacket-white-large-size'),(5121,132,0,367,'0'),(5122,206,0,367,'100% polyamide'),(5128,73,0,368,'Rich & Royal Transitional Jacket-brown-Small size'),(5129,84,0,368,'Seventy Transitional Jacket'),(5130,86,0,368,'Seventy Transitional Jacket '),(5131,106,0,368,'container2'),(5132,121,0,368,'rich-royal-transitional-jacket-brown-small-size'),(5133,132,0,368,'0'),(5134,206,0,368,'45% cotton, 44% polyacrylic, 11% polyester'),(5136,73,0,369,'Rich & Royal Transitional Jacket-brown-Extra small size'),(5137,84,0,369,'Seventy Transitional Jacket'),(5138,86,0,369,'Seventy Transitional Jacket '),(5139,106,0,369,'container2'),(5140,121,0,369,'rich-royal-transitional-jacket-brown-extra-small-size'),(5141,132,0,369,'0'),(5142,206,0,369,'45% cotton, 44% polyacrylic, 11% polyester'),(5144,73,0,370,'Rich & Royal Transitional Jacket-brown-Medium size'),(5145,84,0,370,'Seventy Transitional Jacket'),(5146,86,0,370,'Seventy Transitional Jacket '),(5147,106,0,370,'container2'),(5148,121,0,370,'rich-royal-transitional-jacket-brown-medium-size'),(5149,132,0,370,'0'),(5150,206,0,370,'45% cotton, 44% polyacrylic, 11% polyester'),(5152,73,0,371,'Rich & Royal Transitional Jacket-brown-Large size'),(5153,84,0,371,'Seventy Transitional Jacket'),(5154,86,0,371,'Seventy Transitional Jacket '),(5155,106,0,371,'container2'),(5156,121,0,371,'rich-royal-transitional-jacket-brown-large-size'),(5157,132,0,371,'0'),(5158,206,0,371,'45% cotton, 44% polyacrylic, 11% polyester'),(5160,73,0,372,'Rich & Royal Transitional Jacket-white-Small size'),(5161,84,0,372,'Seventy Transitional Jacket'),(5162,86,0,372,'Seventy Transitional Jacket '),(5163,106,0,372,'container2'),(5164,121,0,372,'rich-royal-transitional-jacket-white-small-size'),(5165,132,0,372,'0'),(5166,206,0,372,'45% cotton, 44% polyacrylic, 11% polyester'),(5168,73,0,373,'Rich & Royal Transitional Jacket-white-Extra small size'),(5169,84,0,373,'Seventy Transitional Jacket'),(5170,86,0,373,'Seventy Transitional Jacket '),(5171,106,0,373,'container2'),(5172,121,0,373,'rich-royal-transitional-jacket-white-extra-small-size'),(5173,132,0,373,'0'),(5174,206,0,373,'45% cotton, 44% polyacrylic, 11% polyester'),(5176,73,0,374,'Rich & Royal Transitional Jacket-white-Medium size'),(5177,84,0,374,'Seventy Transitional Jacket'),(5178,86,0,374,'Seventy Transitional Jacket '),(5179,106,0,374,'container2'),(5180,121,0,374,'rich-royal-transitional-jacket-white-medium-size'),(5181,132,0,374,'0'),(5182,206,0,374,'45% cotton, 44% polyacrylic, 11% polyester'),(5184,73,0,375,'Rich & Royal Transitional Jacket-white-Large size'),(5185,84,0,375,'Seventy Transitional Jacket'),(5186,86,0,375,'Seventy Transitional Jacket '),(5187,106,0,375,'container2'),(5188,121,0,375,'rich-royal-transitional-jacket-white-large-size'),(5189,132,0,375,'0'),(5190,206,0,375,'45% cotton, 44% polyacrylic, 11% polyester'),(5196,73,0,376,'Rose gold diorsorealrise-brown-Small size'),(5197,84,0,376,'Rose gold diorsorealrise'),(5198,86,0,376,'Rose gold diorsorealrise Model: Diorsorealrise\r\nMeasurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3\r\nExtras: patterned bow, patterned border, logo engra'),(5199,106,0,376,'container2'),(5200,121,0,376,'rose-gold-diorsorealrise-brown-small-size'),(5201,132,0,376,'0'),(5202,206,0,376,'plastic, metal'),(5204,73,0,377,'Rose gold diorsorealrise-brown-Medium size'),(5205,84,0,377,'Rose gold diorsorealrise'),(5206,86,0,377,'Rose gold diorsorealrise Model: Diorsorealrise\r\nMeasurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3\r\nExtras: patterned bow, patterned border, logo engra'),(5207,106,0,377,'container2'),(5208,121,0,377,'rose-gold-diorsorealrise-brown-medium-size'),(5209,132,0,377,'0'),(5210,206,0,377,'plastic, metal'),(5212,73,0,378,'Rose gold diorsorealrise-red-Small size'),(5213,84,0,378,'Rose gold diorsorealrise'),(5214,86,0,378,'Rose gold diorsorealrise Model: Diorsorealrise\r\nMeasurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3\r\nExtras: patterned bow, patterned border, logo engra'),(5215,106,0,378,'container2'),(5216,121,0,378,'rose-gold-diorsorealrise-red-small-size'),(5217,132,0,378,'0'),(5218,206,0,378,'plastic, metal'),(5220,73,0,379,'Rose gold diorsorealrise-red-Medium size'),(5221,84,0,379,'Rose gold diorsorealrise'),(5222,86,0,379,'Rose gold diorsorealrise Model: Diorsorealrise\r\nMeasurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3\r\nExtras: patterned bow, patterned border, logo engra'),(5223,106,0,379,'container2'),(5224,121,0,379,'rose-gold-diorsorealrise-red-medium-size'),(5225,132,0,379,'0'),(5226,206,0,379,'plastic, metal'),(5232,73,0,380,'Over The Knee Boots-brown-EU 36'),(5233,84,0,380,'Black Chino'),(5234,86,0,380,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5235,106,0,380,'container2'),(5236,121,0,380,'over-the-knee-boots-brown-eu-36'),(5237,132,0,380,'0'),(5238,206,0,380,'Leather'),(5240,73,0,381,'Over The Knee Boots-brown-EU 39'),(5241,84,0,381,'Black Chino'),(5242,86,0,381,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5243,106,0,381,'container2'),(5244,121,0,381,'over-the-knee-boots-brown-eu-39'),(5245,132,0,381,'0'),(5246,206,0,381,'Leather'),(5248,73,0,382,'Over The Knee Boots-brown-EU 40'),(5249,84,0,382,'Black Chino'),(5250,86,0,382,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5251,106,0,382,'container2'),(5252,121,0,382,'over-the-knee-boots-brown-eu-40'),(5253,132,0,382,'0'),(5254,206,0,382,'Leather'),(5256,73,0,383,'Over The Knee Boots-brown-EU 41'),(5257,84,0,383,'Black Chino'),(5258,86,0,383,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5259,106,0,383,'container2'),(5260,121,0,383,'over-the-knee-boots-brown-eu-41'),(5261,132,0,383,'0'),(5262,206,0,383,'Leather'),(5264,73,0,384,'Over The Knee Boots-brown-EU 38'),(5265,84,0,384,'Black Chino'),(5266,86,0,384,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5267,106,0,384,'container2'),(5268,121,0,384,'over-the-knee-boots-brown-eu-38'),(5269,132,0,384,'0'),(5270,206,0,384,'Leather'),(5276,73,0,385,'Grey Slim Fit Jeans Cirrus-grey-Medium size'),(5277,84,0,385,'Grey Slim Fit Jeans Cirrus'),(5278,86,0,385,'Grey Slim Fit Jeans Cirrus Manufacturers product information: skinnyCut: slim, tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)Waistband: belt loop and zip with snaps on '),(5279,106,0,385,'container2'),(5280,121,0,385,'grey-slim-fit-jeans-cirrus-grey-medium-size'),(5281,132,0,385,'0'),(5282,206,0,385,'98% cotton, 2% elastane'),(5284,73,0,386,'Grey Slim Fit Jeans Cirrus-grey-Small size'),(5285,84,0,386,'Grey Slim Fit Jeans Cirrus'),(5286,86,0,386,'Grey Slim Fit Jeans Cirrus Manufacturers product information: skinnyCut: slim, tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)Waistband: belt loop and zip with snaps on '),(5287,106,0,386,'container2'),(5288,121,0,386,'grey-slim-fit-jeans-cirrus-grey-small-size'),(5289,132,0,386,'0'),(5290,206,0,386,'98% cotton, 2% elastane'),(5292,73,0,387,'Grey Slim Fit Jeans Cirrus-grey-Large size'),(5293,84,0,387,'Grey Slim Fit Jeans Cirrus'),(5294,86,0,387,'Grey Slim Fit Jeans Cirrus Manufacturers product information: skinnyCut: slim, tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)Waistband: belt loop and zip with snaps on '),(5295,106,0,387,'container2'),(5296,121,0,387,'grey-slim-fit-jeans-cirrus-grey-large-size'),(5297,132,0,387,'0'),(5298,206,0,387,'98% cotton, 2% elastane'),(5304,73,0,388,'Black Swan Transitional Jacket-brown-Small size'),(5305,84,0,388,'Seventy Transitional Jacket'),(5306,86,0,388,'Seventy Transitional Jacket '),(5307,106,0,388,'container2'),(5308,121,0,388,'black-swan-transitional-jacket-brown-small-size'),(5309,132,0,388,'0'),(5310,206,0,388,'100% polyester'),(5312,73,0,389,'Black Swan Transitional Jacket-brown-Extra small size'),(5313,84,0,389,'Seventy Transitional Jacket'),(5314,86,0,389,'Seventy Transitional Jacket '),(5315,106,0,389,'container2'),(5316,121,0,389,'black-swan-transitional-jacket-brown-extra-small-size'),(5317,132,0,389,'0'),(5318,206,0,389,'100% polyester'),(5320,73,0,390,'Black Swan Transitional Jacket-brown-Medium size'),(5321,84,0,390,'Seventy Transitional Jacket'),(5322,86,0,390,'Seventy Transitional Jacket '),(5323,106,0,390,'container2'),(5324,121,0,390,'black-swan-transitional-jacket-brown-medium-size'),(5325,132,0,390,'0'),(5326,206,0,390,'100% polyester'),(5332,73,0,391,'Black Standard Jeans-Medium size-black'),(5333,84,0,391,'Black Standard Jeans'),(5334,86,0,391,'Black Standard Jeans Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMa'),(5335,106,0,391,'container2'),(5336,121,0,391,'black-standard-jeans-medium-size-black'),(5337,132,0,391,'0'),(5338,206,0,391,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(5340,73,0,392,'Black Standard Jeans-Small size-black'),(5341,84,0,392,'Black Standard Jeans'),(5342,86,0,392,'Black Standard Jeans Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMa'),(5343,106,0,392,'container2'),(5344,121,0,392,'black-standard-jeans-small-size-black'),(5345,132,0,392,'0'),(5346,206,0,392,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(5348,73,0,393,'Black Standard Jeans-Large size-black'),(5349,84,0,393,'Black Standard Jeans'),(5350,86,0,393,'Black Standard Jeans Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMa'),(5351,106,0,393,'container2'),(5352,121,0,393,'black-standard-jeans-large-size-black'),(5353,132,0,393,'0'),(5354,206,0,393,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(5360,73,0,394,'Medium Blue Straight Leg Jeans – Rob-blue-Small size'),(5361,84,0,394,'Medium Blue Straight Leg Jeans – Rob'),(5362,86,0,394,'Medium Blue Straight Leg Jeans – Rob Model: RobManufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: bel'),(5363,106,0,394,'container2'),(5364,121,0,394,'medium-blue-straight-leg-jeans-rob-blue-small-size'),(5365,132,0,394,'0'),(5366,206,0,394,'99% cotton, 1% elastane'),(5368,73,0,395,'Medium Blue Straight Leg Jeans – Rob-blue-Medium size'),(5369,84,0,395,'Medium Blue Straight Leg Jeans – Rob'),(5370,86,0,395,'Medium Blue Straight Leg Jeans – Rob Model: RobManufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: bel'),(5371,106,0,395,'container2'),(5372,121,0,395,'medium-blue-straight-leg-jeans-rob-blue-medium-size'),(5373,132,0,395,'0'),(5374,206,0,395,'99% cotton, 1% elastane'),(5376,73,0,396,'Medium Blue Straight Leg Jeans – Rob-blue-Large size'),(5377,84,0,396,'Medium Blue Straight Leg Jeans – Rob'),(5378,86,0,396,'Medium Blue Straight Leg Jeans – Rob Model: RobManufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: bel'),(5379,106,0,396,'container2'),(5380,121,0,396,'medium-blue-straight-leg-jeans-rob-blue-large-size'),(5381,132,0,396,'0'),(5382,206,0,396,'99% cotton, 1% elastane'),(5388,73,0,397,'Comma Casual Identity Quilted Jacket-red-Small size'),(5389,84,0,397,'Seventy Transitional Jacket'),(5390,86,0,397,'Seventy Transitional Jacket '),(5391,106,0,397,'container2'),(5392,121,0,397,'comma-casual-identity-quilted-jacket-red-small-size'),(5393,132,0,397,'0'),(5394,206,0,397,' 68% cotton, 32% polyamide'),(5396,73,0,398,'Comma Casual Identity Quilted Jacket-red-Extra small size'),(5397,84,0,398,'Seventy Transitional Jacket'),(5398,86,0,398,'Seventy Transitional Jacket '),(5399,106,0,398,'container2'),(5400,121,0,398,'comma-casual-identity-quilted-jacket-red-extra-small-size'),(5401,132,0,398,'0'),(5402,206,0,398,' 68% cotton, 32% polyamide'),(5404,73,0,399,'Comma Casual Identity Quilted Jacket-red-Extra large size'),(5405,84,0,399,'Seventy Transitional Jacket'),(5406,86,0,399,'Seventy Transitional Jacket '),(5407,106,0,399,'container2'),(5408,121,0,399,'comma-casual-identity-quilted-jacket-red-extra-large-size'),(5409,132,0,399,'0'),(5410,206,0,399,' 68% cotton, 32% polyamide'),(5412,73,0,400,'Comma Casual Identity Quilted Jacket-red-Medium size'),(5413,84,0,400,'Seventy Transitional Jacket'),(5414,86,0,400,'Seventy Transitional Jacket '),(5415,106,0,400,'container2'),(5416,121,0,400,'comma-casual-identity-quilted-jacket-red-medium-size'),(5417,132,0,400,'0'),(5418,206,0,400,' 68% cotton, 32% polyamide'),(5424,73,0,401,'Lawrence Grey Cotton Jacket-white-Small size'),(5425,84,0,401,'Seventy Transitional Jacket'),(5426,86,0,401,'Seventy Transitional Jacket '),(5427,106,0,401,'container2'),(5428,121,0,401,'lawrence-grey-cotton-jacket-white-small-size'),(5429,132,0,401,'0'),(5430,206,0,401,'90% cotton, 10% polyester'),(5432,73,0,402,'Lawrence Grey Cotton Jacket-white-Medium size'),(5433,84,0,402,'Seventy Transitional Jacket'),(5434,86,0,402,'Seventy Transitional Jacket '),(5435,106,0,402,'container2'),(5436,121,0,402,'lawrence-grey-cotton-jacket-white-medium-size'),(5437,132,0,402,'0'),(5438,206,0,402,'90% cotton, 10% polyester'),(5440,73,0,403,'Lawrence Grey Cotton Jacket-white-Extra small size'),(5441,84,0,403,'Seventy Transitional Jacket'),(5442,86,0,403,'Seventy Transitional Jacket '),(5443,106,0,403,'container2'),(5444,121,0,403,'lawrence-grey-cotton-jacket-white-extra-small-size'),(5445,132,0,403,'0'),(5446,206,0,403,'90% cotton, 10% polyester'),(5448,73,0,404,'Lawrence Grey Cotton Jacket-brown-Small size'),(5449,84,0,404,'Seventy Transitional Jacket'),(5450,86,0,404,'Seventy Transitional Jacket '),(5451,106,0,404,'container2'),(5452,121,0,404,'lawrence-grey-cotton-jacket-brown-small-size'),(5453,132,0,404,'0'),(5454,206,0,404,'90% cotton, 10% polyester'),(5456,73,0,405,'Lawrence Grey Cotton Jacket-brown-Medium size'),(5457,84,0,405,'Seventy Transitional Jacket'),(5458,86,0,405,'Seventy Transitional Jacket '),(5459,106,0,405,'container2'),(5460,121,0,405,'lawrence-grey-cotton-jacket-brown-medium-size'),(5461,132,0,405,'0'),(5462,206,0,405,'90% cotton, 10% polyester'),(5464,73,0,406,'Lawrence Grey Cotton Jacket-brown-Extra small size'),(5465,84,0,406,'Seventy Transitional Jacket'),(5466,86,0,406,'Seventy Transitional Jacket '),(5467,106,0,406,'container2'),(5468,121,0,406,'lawrence-grey-cotton-jacket-brown-extra-small-size'),(5469,132,0,406,'0'),(5470,206,0,406,'90% cotton, 10% polyester'),(5476,73,0,407,'Heeled Sandals-EU 37-brown'),(5477,84,0,407,'Black Chino'),(5478,86,0,407,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5479,106,0,407,'container2'),(5480,121,0,407,'heeled-sandals-eu-37-brown'),(5481,132,0,407,'0'),(5482,206,0,407,'Synthetic'),(5484,73,0,408,'Heeled Sandals-EU 38-brown'),(5485,84,0,408,'Black Chino'),(5486,86,0,408,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5487,106,0,408,'container2'),(5488,121,0,408,'heeled-sandals-eu-38-brown'),(5489,132,0,408,'0'),(5490,206,0,408,'Synthetic'),(5492,73,0,409,'Heeled Sandals-EU 39-brown'),(5493,84,0,409,'Black Chino'),(5494,86,0,409,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5495,106,0,409,'container2'),(5496,121,0,409,'heeled-sandals-eu-39-brown'),(5497,132,0,409,'0'),(5498,206,0,409,'Synthetic'),(5500,73,0,410,'Heeled Sandals-EU 40-brown'),(5501,84,0,410,'Black Chino'),(5502,86,0,410,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5503,106,0,410,'container2'),(5504,121,0,410,'heeled-sandals-eu-40-brown'),(5505,132,0,410,'0'),(5506,206,0,410,'Synthetic'),(5508,73,0,411,'Heeled Sandals-EU 41-brown'),(5509,84,0,411,'Black Chino'),(5510,86,0,411,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5511,106,0,411,'container2'),(5512,121,0,411,'heeled-sandals-eu-41-brown'),(5513,132,0,411,'0'),(5514,206,0,411,'Synthetic'),(5520,73,0,412,'Cipo & Baxx Jacket-white-Small size'),(5521,84,0,412,'Seventy Transitional Jacket'),(5522,86,0,412,'Seventy Transitional Jacket '),(5523,106,0,412,'container2'),(5524,121,0,412,'cipo-baxx-jacket-white-small-size'),(5525,132,0,412,'0'),(5526,206,0,412,'100% cotton'),(5528,73,0,413,'Cipo & Baxx Jacket-white-Medium size'),(5529,84,0,413,'Seventy Transitional Jacket'),(5530,86,0,413,'Seventy Transitional Jacket '),(5531,106,0,413,'container2'),(5532,121,0,413,'cipo-baxx-jacket-white-medium-size'),(5533,132,0,413,'0'),(5534,206,0,413,'100% cotton'),(5536,73,0,414,'Cipo & Baxx Jacket-white-Extra large size'),(5537,84,0,414,'Seventy Transitional Jacket'),(5538,86,0,414,'Seventy Transitional Jacket '),(5539,106,0,414,'container2'),(5540,121,0,414,'cipo-baxx-jacket-white-extra-large-size'),(5541,132,0,414,'0'),(5542,206,0,414,'100% cotton'),(5544,73,0,415,'Cipo & Baxx Jacket-white-Large size'),(5545,84,0,415,'Seventy Transitional Jacket'),(5546,86,0,415,'Seventy Transitional Jacket '),(5547,106,0,415,'container2'),(5548,121,0,415,'cipo-baxx-jacket-white-large-size'),(5549,132,0,415,'0'),(5550,206,0,415,'100% cotton'),(5556,73,0,416,'Sneakers-white-EU 37'),(5557,84,0,416,'Black Chino'),(5558,86,0,416,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5559,106,0,416,'container2'),(5560,121,0,416,'sneakers-white-eu-37'),(5561,132,0,416,'0'),(5562,206,0,416,'Synthetic'),(5564,73,0,417,'Sneakers-white-EU 38'),(5565,84,0,417,'Black Chino'),(5566,86,0,417,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5567,106,0,417,'container2'),(5568,121,0,417,'sneakers-white-eu-38'),(5569,132,0,417,'0'),(5570,206,0,417,'Synthetic'),(5572,73,0,418,'Sneakers-white-EU 39'),(5573,84,0,418,'Black Chino'),(5574,86,0,418,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5575,106,0,418,'container2'),(5576,121,0,418,'sneakers-white-eu-39'),(5577,132,0,418,'0'),(5578,206,0,418,'Synthetic'),(5580,73,0,419,'Sneakers-white-EU 41'),(5581,84,0,419,'Black Chino'),(5582,86,0,419,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5583,106,0,419,'container2'),(5584,121,0,419,'sneakers-white-eu-41'),(5585,132,0,419,'0'),(5586,206,0,419,'Synthetic'),(5588,73,0,420,'Sneakers-white-EU 40'),(5589,84,0,420,'Black Chino'),(5590,86,0,420,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5591,106,0,420,'container2'),(5592,121,0,420,'sneakers-white-eu-40'),(5593,132,0,420,'0'),(5594,206,0,420,'Synthetic'),(5596,73,0,421,'Sneakers-grey-EU 37'),(5597,84,0,421,'Black Chino'),(5598,86,0,421,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5599,106,0,421,'container2'),(5600,121,0,421,'sneakers-grey-eu-37'),(5601,132,0,421,'0'),(5602,206,0,421,'Synthetic'),(5604,73,0,422,'Sneakers-grey-EU 38'),(5605,84,0,422,'Black Chino'),(5606,86,0,422,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5607,106,0,422,'container2'),(5608,121,0,422,'sneakers-grey-eu-38'),(5609,132,0,422,'0'),(5610,206,0,422,'Synthetic'),(5612,73,0,423,'Sneakers-grey-EU 39'),(5613,84,0,423,'Black Chino'),(5614,86,0,423,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5615,106,0,423,'container2'),(5616,121,0,423,'sneakers-grey-eu-39'),(5617,132,0,423,'0'),(5618,206,0,423,'Synthetic'),(5620,73,0,424,'Sneakers-grey-EU 41'),(5621,84,0,424,'Black Chino'),(5622,86,0,424,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5623,106,0,424,'container2'),(5624,121,0,424,'sneakers-grey-eu-41'),(5625,132,0,424,'0'),(5626,206,0,424,'Synthetic'),(5628,73,0,425,'Sneakers-grey-EU 40'),(5629,84,0,425,'Black Chino'),(5630,86,0,425,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5631,106,0,425,'container2'),(5632,121,0,425,'sneakers-grey-eu-40'),(5633,132,0,425,'0'),(5634,206,0,425,'Synthetic'),(5640,73,0,426,'Blue Slim Fit Jeans – Cliff-blue-Small size'),(5641,84,0,426,'Medium Blue Slim Fit Jeans – Cliff'),(5642,86,0,426,'Medium Blue Slim Fit Jeans – Cliff Model: CliffManufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)'),(5643,106,0,426,'container2'),(5644,121,0,426,'blue-slim-fit-jeans-cliff-blue-small-size'),(5645,132,0,426,'0'),(5646,206,0,426,'98% cotton, 2% elastane'),(5648,73,0,427,'Blue Slim Fit Jeans – Cliff-blue-Large size'),(5649,84,0,427,'Medium Blue Slim Fit Jeans – Cliff'),(5650,86,0,427,'Medium Blue Slim Fit Jeans – Cliff Model: CliffManufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)'),(5651,106,0,427,'container2'),(5652,121,0,427,'blue-slim-fit-jeans-cliff-blue-large-size'),(5653,132,0,427,'0'),(5654,206,0,427,'98% cotton, 2% elastane'),(5656,73,0,428,'Blue Slim Fit Jeans – Cliff-blue-Medium size'),(5657,84,0,428,'Medium Blue Slim Fit Jeans – Cliff'),(5658,86,0,428,'Medium Blue Slim Fit Jeans – Cliff Model: CliffManufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)'),(5659,106,0,428,'container2'),(5660,121,0,428,'blue-slim-fit-jeans-cliff-blue-medium-size'),(5661,132,0,428,'0'),(5662,206,0,428,'98% cotton, 2% elastane'),(5668,73,0,429,'Sneakers-EU 36-white'),(5669,84,0,429,'Black Chino'),(5670,86,0,429,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5671,106,0,429,'container2'),(5672,121,0,429,'sneakers-eu-36-white'),(5673,132,0,429,'0'),(5674,206,0,429,'Synthetic'),(5676,73,0,430,'Sneakers-EU 36-grey'),(5677,84,0,430,'Black Chino'),(5678,86,0,430,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5679,106,0,430,'container2'),(5680,121,0,430,'sneakers-eu-36-grey'),(5681,132,0,430,'0'),(5682,206,0,430,'Synthetic'),(5684,73,0,431,'Sneakers-EU 38-white'),(5685,84,0,431,'Black Chino'),(5686,86,0,431,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5687,106,0,431,'container2'),(5688,121,0,431,'sneakers-eu-38-white'),(5689,132,0,431,'0'),(5690,206,0,431,'Synthetic'),(5692,73,0,432,'Sneakers-EU 38-grey'),(5693,84,0,432,'Black Chino'),(5694,86,0,432,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5695,106,0,432,'container2'),(5696,121,0,432,'sneakers-eu-38-grey'),(5697,132,0,432,'0'),(5698,206,0,432,'Synthetic'),(5700,73,0,433,'Sneakers-EU 37-white'),(5701,84,0,433,'Black Chino'),(5702,86,0,433,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5703,106,0,433,'container2'),(5704,121,0,433,'sneakers-eu-37-white'),(5705,132,0,433,'0'),(5706,206,0,433,'Synthetic'),(5708,73,0,434,'Sneakers-EU 37-grey'),(5709,84,0,434,'Black Chino'),(5710,86,0,434,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5711,106,0,434,'container2'),(5712,121,0,434,'sneakers-eu-37-grey'),(5713,132,0,434,'0'),(5714,206,0,434,'Synthetic'),(5716,73,0,435,'Sneakers-EU 40-white'),(5717,84,0,435,'Black Chino'),(5718,86,0,435,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5719,106,0,435,'container2'),(5720,121,0,435,'sneakers-eu-40-white'),(5721,132,0,435,'0'),(5722,206,0,435,'Synthetic'),(5724,73,0,436,'Sneakers-EU 40-grey'),(5725,84,0,436,'Black Chino'),(5726,86,0,436,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5727,106,0,436,'container2'),(5728,121,0,436,'sneakers-eu-40-grey'),(5729,132,0,436,'0'),(5730,206,0,436,'Synthetic'),(5736,73,0,437,'Diesel Jacket-brown-Small size'),(5737,84,0,437,'Seventy Transitional Jacket'),(5738,86,0,437,'Seventy Transitional Jacket '),(5739,106,0,437,'container2'),(5740,121,0,437,'diesel-jacket-brown-small-size'),(5741,132,0,437,'0'),(5742,206,0,437,'83% polyester, 17% cotton'),(5744,73,0,438,'Diesel Jacket-brown-Large size'),(5745,84,0,438,'Seventy Transitional Jacket'),(5746,86,0,438,'Seventy Transitional Jacket '),(5747,106,0,438,'container2'),(5748,121,0,438,'diesel-jacket-brown-large-size'),(5749,132,0,438,'0'),(5750,206,0,438,'83% polyester, 17% cotton'),(5752,73,0,439,'Diesel Jacket-brown-Medium size'),(5753,84,0,439,'Seventy Transitional Jacket'),(5754,86,0,439,'Seventy Transitional Jacket '),(5755,106,0,439,'container2'),(5756,121,0,439,'diesel-jacket-brown-medium-size'),(5757,132,0,439,'0'),(5758,206,0,439,'83% polyester, 17% cotton'),(5764,73,0,440,'Dark Blue Straight Leg Jeans-blue-Small size'),(5765,84,0,440,'Dark Blue Straight Leg Jeans – 700'),(5766,86,0,440,'Dark Blue Straight Leg Jeans – 700 Model: 700Manufacturers product information: regular fitCut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)Waistband: belt lo'),(5767,106,0,440,'container2'),(5768,121,0,440,'dark-blue-straight-leg-jeans-blue-small-size'),(5769,132,0,440,'0'),(5770,206,0,440,'98% cotton, 2% elastane'),(5772,73,0,441,'Dark Blue Straight Leg Jeans-blue-Medium size'),(5773,84,0,441,'Dark Blue Straight Leg Jeans – 700'),(5774,86,0,441,'Dark Blue Straight Leg Jeans – 700 Model: 700Manufacturers product information: regular fitCut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)Waistband: belt lo'),(5775,106,0,441,'container2'),(5776,121,0,441,'dark-blue-straight-leg-jeans-blue-medium-size'),(5777,132,0,441,'0'),(5778,206,0,441,'98% cotton, 2% elastane'),(5780,73,0,442,'Dark Blue Straight Leg Jeans-blue-Large size'),(5781,84,0,442,'Dark Blue Straight Leg Jeans – 700'),(5782,86,0,442,'Dark Blue Straight Leg Jeans – 700 Model: 700Manufacturers product information: regular fitCut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)Waistband: belt lo'),(5783,106,0,442,'container2'),(5784,121,0,442,'dark-blue-straight-leg-jeans-blue-large-size'),(5785,132,0,442,'0'),(5786,206,0,442,'98% cotton, 2% elastane'),(5792,73,0,443,'Sneakers-white-EU 36'),(5793,84,0,443,'Black Chino'),(5794,86,0,443,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5795,106,0,443,'container2'),(5796,121,0,443,'sneakers-white-eu-36'),(5797,132,0,443,'0'),(5798,206,0,443,'Synthetic'),(5800,73,0,444,'Sneakers-white-EU 38'),(5801,84,0,444,'Black Chino'),(5802,86,0,444,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5803,106,0,444,'container2'),(5804,121,0,444,'sneakers-white-eu-38'),(5805,132,0,444,'0'),(5806,206,0,444,'Synthetic'),(5808,73,0,445,'Sneakers-white-EU 39'),(5809,84,0,445,'Black Chino'),(5810,86,0,445,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5811,106,0,445,'container2'),(5812,121,0,445,'sneakers-white-eu-39'),(5813,132,0,445,'0'),(5814,206,0,445,'Synthetic'),(5816,73,0,446,'Sneakers-white-EU 41'),(5817,84,0,446,'Black Chino'),(5818,86,0,446,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5819,106,0,446,'container2'),(5820,121,0,446,'sneakers-white-eu-41'),(5821,132,0,446,'0'),(5822,206,0,446,'Synthetic'),(5824,73,0,447,'Sneakers-white-EU 40'),(5825,84,0,447,'Black Chino'),(5826,86,0,447,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5827,106,0,447,'container2'),(5828,121,0,447,'sneakers-white-eu-40'),(5829,132,0,447,'0'),(5830,206,0,447,'Synthetic'),(5832,73,0,448,'Sneakers-white-EU 43'),(5833,84,0,448,'Black Chino'),(5834,86,0,448,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5835,106,0,448,'container2'),(5836,121,0,448,'sneakers-white-eu-43'),(5837,132,0,448,'0'),(5838,206,0,448,'Synthetic'),(5840,73,0,449,'Sneakers-grey-EU 36'),(5841,84,0,449,'Black Chino'),(5842,86,0,449,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5843,106,0,449,'container2'),(5844,121,0,449,'sneakers-grey-eu-36'),(5845,132,0,449,'0'),(5846,206,0,449,'Synthetic'),(5848,73,0,450,'Sneakers-grey-EU 38'),(5849,84,0,450,'Black Chino'),(5850,86,0,450,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5851,106,0,450,'container2'),(5852,121,0,450,'sneakers-grey-eu-38'),(5853,132,0,450,'0'),(5854,206,0,450,'Synthetic'),(5856,73,0,451,'Sneakers-grey-EU 39'),(5857,84,0,451,'Black Chino'),(5858,86,0,451,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5859,106,0,451,'container2'),(5860,121,0,451,'sneakers-grey-eu-39'),(5861,132,0,451,'0'),(5862,206,0,451,'Synthetic'),(5864,73,0,452,'Sneakers-grey-EU 41'),(5865,84,0,452,'Black Chino'),(5866,86,0,452,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5867,106,0,452,'container2'),(5868,121,0,452,'sneakers-grey-eu-41'),(5869,132,0,452,'0'),(5870,206,0,452,'Synthetic'),(5872,73,0,453,'Sneakers-grey-EU 40'),(5873,84,0,453,'Black Chino'),(5874,86,0,453,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5875,106,0,453,'container2'),(5876,121,0,453,'sneakers-grey-eu-40'),(5877,132,0,453,'0'),(5878,206,0,453,'Synthetic'),(5880,73,0,454,'Sneakers-grey-EU 43'),(5881,84,0,454,'Black Chino'),(5882,86,0,454,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(5883,106,0,454,'container2'),(5884,121,0,454,'sneakers-grey-eu-43'),(5885,132,0,454,'0'),(5886,206,0,454,'Synthetic'),(5892,73,0,455,'People of Shibuya Transitional Jacket-brown-Extra small size'),(5893,84,0,455,'Seventy Transitional Jacket'),(5894,86,0,455,'Seventy Transitional Jacket '),(5895,106,0,455,'container2'),(5896,121,0,455,'people-of-shibuya-transitional-jacket-brown-extra-small-size'),(5897,132,0,455,'0'),(5898,206,0,455,'89% polyester, 11% elastane'),(5900,73,0,456,'People of Shibuya Transitional Jacket-brown-Small size'),(5901,84,0,456,'Seventy Transitional Jacket'),(5902,86,0,456,'Seventy Transitional Jacket '),(5903,106,0,456,'container2'),(5904,121,0,456,'people-of-shibuya-transitional-jacket-brown-small-size'),(5905,132,0,456,'0'),(5906,206,0,456,'89% polyester, 11% elastane'),(5908,73,0,457,'People of Shibuya Transitional Jacket-brown-Medium size'),(5909,84,0,457,'Seventy Transitional Jacket'),(5910,86,0,457,'Seventy Transitional Jacket '),(5911,106,0,457,'container2'),(5912,121,0,457,'people-of-shibuya-transitional-jacket-brown-medium-size'),(5913,132,0,457,'0'),(5914,206,0,457,'89% polyester, 11% elastane'),(5920,73,0,458,'Boss Orange Denim Jacket-white-Small size'),(5921,84,0,458,'Seventy Transitional Jacket'),(5922,86,0,458,'Seventy Transitional Jacket '),(5923,106,0,458,'container2'),(5924,121,0,458,'boss-orange-denim-jacket-white-small-size'),(5925,132,0,458,'0'),(5926,206,0,458,'98% cotton, 2% elastane'),(5928,73,0,459,'Boss Orange Denim Jacket-white-Extra large size'),(5929,84,0,459,'Seventy Transitional Jacket'),(5930,86,0,459,'Seventy Transitional Jacket '),(5931,106,0,459,'container2'),(5932,121,0,459,'boss-orange-denim-jacket-white-extra-large-size'),(5933,132,0,459,'0'),(5934,206,0,459,'98% cotton, 2% elastane'),(5936,73,0,460,'Boss Orange Denim Jacket-white-Medium size'),(5937,84,0,460,'Seventy Transitional Jacket'),(5938,86,0,460,'Seventy Transitional Jacket '),(5939,106,0,460,'container2'),(5940,121,0,460,'boss-orange-denim-jacket-white-medium-size'),(5941,132,0,460,'0'),(5942,206,0,460,'98% cotton, 2% elastane'),(5948,73,0,461,'Puma Transitional Jacket-white-Small size'),(5949,84,0,461,'Seventy Transitional Jacket'),(5950,86,0,461,'Seventy Transitional Jacket '),(5951,106,0,461,'container2'),(5952,121,0,461,'puma-transitional-jacket-white-small-size'),(5953,132,0,461,'0'),(5954,206,0,461,'100% polyester'),(5956,73,0,462,'Puma Transitional Jacket-white-Medium size'),(5957,84,0,462,'Seventy Transitional Jacket'),(5958,86,0,462,'Seventy Transitional Jacket '),(5959,106,0,462,'container2'),(5960,121,0,462,'puma-transitional-jacket-white-medium-size'),(5961,132,0,462,'0'),(5962,206,0,462,'100% polyester'),(5964,73,0,463,'Puma Transitional Jacket-white-Extra large size'),(5965,84,0,463,'Seventy Transitional Jacket'),(5966,86,0,463,'Seventy Transitional Jacket '),(5967,106,0,463,'container2'),(5968,121,0,463,'puma-transitional-jacket-white-extra-large-size'),(5969,132,0,463,'0'),(5970,206,0,463,'100% polyester'),(5972,73,0,464,'Puma Transitional Jacket-white-Large size'),(5973,84,0,464,'Seventy Transitional Jacket'),(5974,86,0,464,'Seventy Transitional Jacket '),(5975,106,0,464,'container2'),(5976,121,0,464,'puma-transitional-jacket-white-large-size'),(5977,132,0,464,'0'),(5978,206,0,464,'100% polyester'),(5984,73,0,465,'Hilfiger Denim Transitional Jacket-white-Small size'),(5985,84,0,465,'Seventy Transitional Jacket'),(5986,86,0,465,'Seventy Transitional Jacket '),(5987,106,0,465,'container2'),(5988,121,0,465,'hilfiger-denim-transitional-jacket-white-small-size'),(5989,132,0,465,'0'),(5990,206,0,465,'100% polyamide'),(5992,73,0,466,'Hilfiger Denim Transitional Jacket-white-Medium size'),(5993,84,0,466,'Seventy Transitional Jacket'),(5994,86,0,466,'Seventy Transitional Jacket '),(5995,106,0,466,'container2'),(5996,121,0,466,'hilfiger-denim-transitional-jacket-white-medium-size'),(5997,132,0,466,'0'),(5998,206,0,466,'100% polyamide'),(6000,73,0,467,'Hilfiger Denim Transitional Jacket-white-Large size'),(6001,84,0,467,'Seventy Transitional Jacket'),(6002,86,0,467,'Seventy Transitional Jacket '),(6003,106,0,467,'container2'),(6004,121,0,467,'hilfiger-denim-transitional-jacket-white-large-size'),(6005,132,0,467,'0'),(6006,206,0,467,'100% polyamide'),(6012,73,0,468,'Dark Blue Julyen-blue-Small size'),(6013,84,0,468,'Dark Blue Julyen'),(6014,86,0,468,'Dark Blue Julyen Model: JulyenManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPocke'),(6015,106,0,468,'container2'),(6016,121,0,468,'dark-blue-julyen-blue-small-size'),(6017,132,0,468,'0'),(6018,206,0,468,'98% cotton, 2% elastane'),(6020,73,0,469,'Dark Blue Julyen-blue-Large size'),(6021,84,0,469,'Dark Blue Julyen'),(6022,86,0,469,'Dark Blue Julyen Model: JulyenManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPocke'),(6023,106,0,469,'container2'),(6024,121,0,469,'dark-blue-julyen-blue-large-size'),(6025,132,0,469,'0'),(6026,206,0,469,'98% cotton, 2% elastane'),(6028,73,0,470,'Dark Blue Julyen-blue-Medium size'),(6029,84,0,470,'Dark Blue Julyen'),(6030,86,0,470,'Dark Blue Julyen Model: JulyenManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPocke'),(6031,106,0,470,'container2'),(6032,121,0,470,'dark-blue-julyen-blue-medium-size'),(6033,132,0,470,'0'),(6034,206,0,470,'98% cotton, 2% elastane'),(6040,73,0,471,'Steinbock Transitional Jacket-brown-Extra small size'),(6041,84,0,471,'Seventy Transitional Jacket'),(6042,86,0,471,'Seventy Transitional Jacket '),(6043,106,0,471,'container2'),(6044,121,0,471,'steinbock-transitional-jacket-brown-extra-small-size'),(6045,132,0,471,'0'),(6046,206,0,471,'100% polyamide'),(6048,73,0,472,'Steinbock Transitional Jacket-brown-Extra large size'),(6049,84,0,472,'Seventy Transitional Jacket'),(6050,86,0,472,'Seventy Transitional Jacket '),(6051,106,0,472,'container2'),(6052,121,0,472,'steinbock-transitional-jacket-brown-extra-large-size'),(6053,132,0,472,'0'),(6054,206,0,472,'100% polyamide'),(6056,73,0,473,'Steinbock Transitional Jacket-brown-Small size'),(6057,84,0,473,'Seventy Transitional Jacket'),(6058,86,0,473,'Seventy Transitional Jacket '),(6059,106,0,473,'container2'),(6060,121,0,473,'steinbock-transitional-jacket-brown-small-size'),(6061,132,0,473,'0'),(6062,206,0,473,'100% polyamide'),(6064,73,0,474,'Steinbock Transitional Jacket-brown-Medium size'),(6065,84,0,474,'Seventy Transitional Jacket'),(6066,86,0,474,'Seventy Transitional Jacket '),(6067,106,0,474,'container2'),(6068,121,0,474,'steinbock-transitional-jacket-brown-medium-size'),(6069,132,0,474,'0'),(6070,206,0,474,'100% polyamide'),(6076,73,0,475,'Navy John 16511-black-Medium size'),(6077,84,0,475,'Navy John 16511'),(6078,86,0,475,'Navy John 16511 Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with s'),(6079,106,0,475,'container2'),(6080,121,0,475,'navy-john-16511-black-medium-size'),(6081,132,0,475,'0'),(6082,206,0,475,'97% cotton, 3% elastane'),(6084,73,0,476,'Navy John 16511-black-Small size'),(6085,84,0,476,'Navy John 16511'),(6086,86,0,476,'Navy John 16511 Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with s'),(6087,106,0,476,'container2'),(6088,121,0,476,'navy-john-16511-black-small-size'),(6089,132,0,476,'0'),(6090,206,0,476,'97% cotton, 3% elastane'),(6092,73,0,477,'Navy John 16511-black-Large size'),(6093,84,0,477,'Navy John 16511'),(6094,86,0,477,'Navy John 16511 Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with s'),(6095,106,0,477,'container2'),(6096,121,0,477,'navy-john-16511-black-large-size'),(6097,132,0,477,'0'),(6098,206,0,477,'97% cotton, 3% elastane'),(6104,73,0,478,'Jack & Jones Transitional Jacket-white-Small size'),(6105,84,0,478,'Seventy Transitional Jacket'),(6106,86,0,478,'Seventy Transitional Jacket '),(6107,106,0,478,'container2'),(6108,121,0,478,'jack-jones-transitional-jacket-white-small-size'),(6109,132,0,478,'0'),(6110,206,0,478,'100% polyamide'),(6112,73,0,479,'Jack & Jones Transitional Jacket-white-Large size'),(6113,84,0,479,'Seventy Transitional Jacket'),(6114,86,0,479,'Seventy Transitional Jacket '),(6115,106,0,479,'container2'),(6116,121,0,479,'jack-jones-transitional-jacket-white-large-size'),(6117,132,0,479,'0'),(6118,206,0,479,'100% polyamide'),(6120,73,0,480,'Jack & Jones Transitional Jacket-white-Extra large size'),(6121,84,0,480,'Seventy Transitional Jacket'),(6122,86,0,480,'Seventy Transitional Jacket '),(6123,106,0,480,'container2'),(6124,121,0,480,'jack-jones-transitional-jacket-white-extra-large-size'),(6125,132,0,480,'0'),(6126,206,0,480,'100% polyamide'),(6132,73,0,481,'Lawrence Grey Rollneck Pullover-brown-Small size'),(6133,84,0,481,'Lawrence Grey Rollneck Pullover'),(6134,86,0,481,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6135,106,0,481,'container2'),(6136,121,0,481,'lawrence-grey-rollneck-pullover-brown-small-size'),(6137,132,0,481,'0'),(6138,206,0,481,'50% merino, 50% acrylic'),(6140,73,0,482,'Lawrence Grey Rollneck Pullover-brown-Medium size'),(6141,84,0,482,'Lawrence Grey Rollneck Pullover'),(6142,86,0,482,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6143,106,0,482,'container2'),(6144,121,0,482,'lawrence-grey-rollneck-pullover-brown-medium-size'),(6145,132,0,482,'0'),(6146,206,0,482,'50% merino, 50% acrylic'),(6148,73,0,483,'Lawrence Grey Rollneck Pullover-brown-Large size'),(6149,84,0,483,'Lawrence Grey Rollneck Pullover'),(6150,86,0,483,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6151,106,0,483,'container2'),(6152,121,0,483,'lawrence-grey-rollneck-pullover-brown-large-size'),(6153,132,0,483,'0'),(6154,206,0,483,'50% merino, 50% acrylic'),(6156,73,0,484,'Lawrence Grey Rollneck Pullover-brown-Extra small size'),(6157,84,0,484,'Lawrence Grey Rollneck Pullover'),(6158,86,0,484,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6159,106,0,484,'container2'),(6160,121,0,484,'lawrence-grey-rollneck-pullover-brown-extra-small-size'),(6161,132,0,484,'0'),(6162,206,0,484,'50% merino, 50% acrylic'),(6168,73,0,485,'Calvin Klein Wool Jumper-grey-Small size'),(6169,84,0,485,'Lawrence Grey Rollneck Pullover'),(6170,86,0,485,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6171,106,0,485,'container2'),(6172,121,0,485,'calvin-klein-wool-jumper-grey-small-size'),(6173,132,0,485,'0'),(6174,206,0,485,'100% wool'),(6176,73,0,486,'Calvin Klein Wool Jumper-grey-Large size'),(6177,84,0,486,'Lawrence Grey Rollneck Pullover'),(6178,86,0,486,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6179,106,0,486,'container2'),(6180,121,0,486,'calvin-klein-wool-jumper-grey-large-size'),(6181,132,0,486,'0'),(6182,206,0,486,'100% wool'),(6184,73,0,487,'Calvin Klein Wool Jumper-grey-Extra small size'),(6185,84,0,487,'Lawrence Grey Rollneck Pullover'),(6186,86,0,487,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6187,106,0,487,'container2'),(6188,121,0,487,'calvin-klein-wool-jumper-grey-extra-small-size'),(6189,132,0,487,'0'),(6190,206,0,487,'100% wool'),(6196,73,0,488,'Tommy Hilfiger Long-sleeved Jumper-brown-Extra small size'),(6197,84,0,488,'Lawrence Grey Rollneck Pullover'),(6198,86,0,488,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6199,106,0,488,'container2'),(6200,121,0,488,'tommy-hilfiger-long-sleeved-jumper-brown-extra-small-size'),(6201,132,0,488,'0'),(6202,206,0,488,'63% cotton, 27% polyamide, 10% wool'),(6204,73,0,489,'Tommy Hilfiger Long-sleeved Jumper-brown-Small size'),(6205,84,0,489,'Lawrence Grey Rollneck Pullover'),(6206,86,0,489,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6207,106,0,489,'container2'),(6208,121,0,489,'tommy-hilfiger-long-sleeved-jumper-brown-small-size'),(6209,132,0,489,'0'),(6210,206,0,489,'63% cotton, 27% polyamide, 10% wool'),(6212,73,0,490,'Tommy Hilfiger Long-sleeved Jumper-brown-Medium size'),(6213,84,0,490,'Lawrence Grey Rollneck Pullover'),(6214,86,0,490,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6215,106,0,490,'container2'),(6216,121,0,490,'tommy-hilfiger-long-sleeved-jumper-brown-medium-size'),(6217,132,0,490,'0'),(6218,206,0,490,'63% cotton, 27% polyamide, 10% wool'),(6224,73,0,491,'Gabba Long-sleeved Jumper-white-Small size'),(6225,84,0,491,'Lawrence Grey Rollneck Pullover'),(6226,86,0,491,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6227,106,0,491,'container2'),(6228,121,0,491,'gabba-long-sleeved-jumper-white-small-size'),(6229,132,0,491,'0'),(6230,206,0,491,'70% cotton, 30% linen'),(6232,73,0,492,'Gabba Long-sleeved Jumper-white-Extra small size'),(6233,84,0,492,'Lawrence Grey Rollneck Pullover'),(6234,86,0,492,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6235,106,0,492,'container2'),(6236,121,0,492,'gabba-long-sleeved-jumper-white-extra-small-size'),(6237,132,0,492,'0'),(6238,206,0,492,'70% cotton, 30% linen'),(6240,73,0,493,'Gabba Long-sleeved Jumper-white-Large size'),(6241,84,0,493,'Lawrence Grey Rollneck Pullover'),(6242,86,0,493,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6243,106,0,493,'container2'),(6244,121,0,493,'gabba-long-sleeved-jumper-white-large-size'),(6245,132,0,493,'0'),(6246,206,0,493,'70% cotton, 30% linen'),(6248,73,0,494,'Gabba Long-sleeved Jumper-white-Medium size'),(6249,84,0,494,'Lawrence Grey Rollneck Pullover'),(6250,86,0,494,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6251,106,0,494,'container2'),(6252,121,0,494,'gabba-long-sleeved-jumper-white-medium-size'),(6253,132,0,494,'0'),(6254,206,0,494,'70% cotton, 30% linen'),(6260,73,0,495,'Max Tonso Cashmere Pullover-brown-Small size'),(6261,84,0,495,'Lawrence Grey Rollneck Pullover'),(6262,86,0,495,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6263,106,0,495,'container2'),(6264,121,0,495,'max-tonso-cashmere-pullover-brown-small-size'),(6265,132,0,495,'0'),(6266,206,0,495,' 100% cashmere'),(6268,73,0,496,'Max Tonso Cashmere Pullover-brown-Extra small size'),(6269,84,0,496,'Lawrence Grey Rollneck Pullover'),(6270,86,0,496,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6271,106,0,496,'container2'),(6272,121,0,496,'max-tonso-cashmere-pullover-brown-extra-small-size'),(6273,132,0,496,'0'),(6274,206,0,496,' 100% cashmere'),(6276,73,0,497,'Max Tonso Cashmere Pullover-brown-Medium size'),(6277,84,0,497,'Lawrence Grey Rollneck Pullover'),(6278,86,0,497,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6279,106,0,497,'container2'),(6280,121,0,497,'max-tonso-cashmere-pullover-brown-medium-size'),(6281,132,0,497,'0'),(6282,206,0,497,' 100% cashmere'),(6288,73,0,498,'Lawrence Grey Cashmere Pullover-brown-Small size'),(6289,84,0,498,'Lawrence Grey Rollneck Pullover'),(6290,86,0,498,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6291,106,0,498,'container2'),(6292,121,0,498,'lawrence-grey-cashmere-pullover-brown-small-size'),(6293,132,0,498,'0'),(6294,206,0,498,' 100% cashmere'),(6296,73,0,499,'Lawrence Grey Cashmere Pullover-brown-Extra small size'),(6297,84,0,499,'Lawrence Grey Rollneck Pullover'),(6298,86,0,499,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6299,106,0,499,'container2'),(6300,121,0,499,'lawrence-grey-cashmere-pullover-brown-extra-small-size'),(6301,132,0,499,'0'),(6302,206,0,499,' 100% cashmere'),(6304,73,0,500,'Lawrence Grey Cashmere Pullover-brown-Medium size'),(6305,84,0,500,'Lawrence Grey Rollneck Pullover'),(6306,86,0,500,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6307,106,0,500,'container2'),(6308,121,0,500,'lawrence-grey-cashmere-pullover-brown-medium-size'),(6309,132,0,500,'0'),(6310,206,0,500,' 100% cashmere'),(6316,73,0,501,'81 Hours Cashmere Pullover-Small size-brown'),(6317,84,0,501,'Lawrence Grey Rollneck Pullover'),(6318,86,0,501,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6319,106,0,501,'container2'),(6320,121,0,501,'81-hours-cashmere-pullover-small-size-brown'),(6321,132,0,501,'0'),(6322,206,0,501,' 100% cashmere'),(6324,73,0,502,'81 Hours Cashmere Pullover-Extra small size-brown'),(6325,84,0,502,'Lawrence Grey Rollneck Pullover'),(6326,86,0,502,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6327,106,0,502,'container2'),(6328,121,0,502,'81-hours-cashmere-pullover-extra-small-size-brown'),(6329,132,0,502,'0'),(6330,206,0,502,' 100% cashmere'),(6332,73,0,503,'81 Hours Cashmere Pullover-Medium size-brown'),(6333,84,0,503,'Lawrence Grey Rollneck Pullover'),(6334,86,0,503,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6335,106,0,503,'container2'),(6336,121,0,503,'81-hours-cashmere-pullover-medium-size-brown'),(6337,132,0,503,'0'),(6338,206,0,503,' 100% cashmere'),(6344,73,0,504,'Dine\'n\'Dance Cashmere Pullover-brown-Extra small size'),(6345,84,0,504,'Lawrence Grey Rollneck Pullover'),(6346,86,0,504,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6347,106,0,504,'container2'),(6348,121,0,504,'dine-n-dance-cashmere-pullover-brown-extra-small-size'),(6349,132,0,504,'0'),(6350,206,0,504,' 100% cashmere'),(6352,73,0,505,'Dine\'n\'Dance Cashmere Pullover-brown-Small size'),(6353,84,0,505,'Lawrence Grey Rollneck Pullover'),(6354,86,0,505,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6355,106,0,505,'container2'),(6356,121,0,505,'dine-n-dance-cashmere-pullover-brown-small-size'),(6357,132,0,505,'0'),(6358,206,0,505,' 100% cashmere'),(6360,73,0,506,'Dine\'n\'Dance Cashmere Pullover-brown-Medium size'),(6361,84,0,506,'Lawrence Grey Rollneck Pullover'),(6362,86,0,506,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6363,106,0,506,'container2'),(6364,121,0,506,'dine-n-dance-cashmere-pullover-brown-medium-size'),(6365,132,0,506,'0'),(6366,206,0,506,' 100% cashmere'),(6368,73,0,507,'Dine\'n\'Dance Cashmere Pullover-white-Extra small size'),(6369,84,0,507,'Lawrence Grey Rollneck Pullover'),(6370,86,0,507,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6371,106,0,507,'container2'),(6372,121,0,507,'dine-n-dance-cashmere-pullover-white-extra-small-size'),(6373,132,0,507,'0'),(6374,206,0,507,' 100% cashmere'),(6376,73,0,508,'Dine\'n\'Dance Cashmere Pullover-white-Small size'),(6377,84,0,508,'Lawrence Grey Rollneck Pullover'),(6378,86,0,508,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6379,106,0,508,'container2'),(6380,121,0,508,'dine-n-dance-cashmere-pullover-white-small-size'),(6381,132,0,508,'0'),(6382,206,0,508,' 100% cashmere'),(6384,73,0,509,'Dine\'n\'Dance Cashmere Pullover-white-Medium size'),(6385,84,0,509,'Lawrence Grey Rollneck Pullover'),(6386,86,0,509,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(6387,106,0,509,'container2'),(6388,121,0,509,'dine-n-dance-cashmere-pullover-white-medium-size'),(6389,132,0,509,'0'),(6390,206,0,509,' 100% cashmere'),(6396,73,0,510,'UNQ Linen Dress-brown-Extra small size'),(6397,84,0,510,'UNQ Linen Dress'),(6398,86,0,510,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6399,106,0,510,'container2'),(6400,121,0,510,'unq-linen-dress-brown-extra-small-size'),(6401,132,0,510,'0'),(6402,206,0,510,'54% linen, 29% polyester, 15% viscose, 2% elastane'),(6404,73,0,511,'UNQ Linen Dress-brown-Small size'),(6405,84,0,511,'UNQ Linen Dress'),(6406,86,0,511,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6407,106,0,511,'container2'),(6408,121,0,511,'unq-linen-dress-brown-small-size'),(6409,132,0,511,'0'),(6410,206,0,511,'54% linen, 29% polyester, 15% viscose, 2% elastane'),(6412,73,0,512,'UNQ Linen Dress-brown-Medium size'),(6413,84,0,512,'UNQ Linen Dress'),(6414,86,0,512,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6415,106,0,512,'container2'),(6416,121,0,512,'unq-linen-dress-brown-medium-size'),(6417,132,0,512,'0'),(6418,206,0,512,'54% linen, 29% polyester, 15% viscose, 2% elastane'),(6424,73,0,513,'United Colors of Benetton  Knit Dress-grey-Extra small size'),(6425,84,0,513,'UNQ Linen Dress'),(6426,86,0,513,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6427,106,0,513,'container2'),(6428,121,0,513,'united-colors-of-benetton-knit-dress-grey-extra-small-size'),(6429,132,0,513,'0'),(6430,206,0,513,'50% cotton, 50% polyacrylic'),(6432,73,0,514,'United Colors of Benetton  Knit Dress-grey-Small size'),(6433,84,0,514,'UNQ Linen Dress'),(6434,86,0,514,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6435,106,0,514,'container2'),(6436,121,0,514,'united-colors-of-benetton-knit-dress-grey-small-size'),(6437,132,0,514,'0'),(6438,206,0,514,'50% cotton, 50% polyacrylic'),(6440,73,0,515,'United Colors of Benetton  Knit Dress-grey-Medium size'),(6441,84,0,515,'UNQ Linen Dress'),(6442,86,0,515,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6443,106,0,515,'container2'),(6444,121,0,515,'united-colors-of-benetton-knit-dress-grey-medium-size'),(6445,132,0,515,'0'),(6446,206,0,515,'50% cotton, 50% polyacrylic'),(6452,73,0,516,'Taupe Leather Belt-brown-Small size'),(6453,84,0,516,'Taupe Leather Belt'),(6454,86,0,516,'Taupe Leather Belt Measurements for size EU 95: width approx. 3,3 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: suede\r\nMaterial: leather'),(6455,106,0,516,'container2'),(6456,121,0,516,'taupe-leather-belt-brown-small-size'),(6457,132,0,516,'0'),(6458,206,0,516,'leather'),(6464,73,0,517,'Weise Midi Dress-red-Extra small size'),(6465,84,0,517,'UNQ Linen Dress'),(6466,86,0,517,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6467,106,0,517,'container2'),(6468,121,0,517,'weise-midi-dress-red-extra-small-size'),(6469,132,0,517,'0'),(6470,206,0,517,'37% polyacrylic, 28% viscose, 19% polyester, 16% wool'),(6472,73,0,518,'Weise Midi Dress-red-Small size'),(6473,84,0,518,'UNQ Linen Dress'),(6474,86,0,518,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6475,106,0,518,'container2'),(6476,121,0,518,'weise-midi-dress-red-small-size'),(6477,132,0,518,'0'),(6478,206,0,518,'37% polyacrylic, 28% viscose, 19% polyester, 16% wool'),(6480,73,0,519,'Weise Midi Dress-red-Medium size'),(6481,84,0,519,'UNQ Linen Dress'),(6482,86,0,519,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6483,106,0,519,'container2'),(6484,121,0,519,'weise-midi-dress-red-medium-size'),(6485,132,0,519,'0'),(6486,206,0,519,'37% polyacrylic, 28% viscose, 19% polyester, 16% wool'),(6492,73,0,520,'Max & Co. Mini Dress-brown-Extra small size'),(6493,84,0,520,'UNQ Linen Dress'),(6494,86,0,520,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6495,106,0,520,'container2'),(6496,121,0,520,'max-co-mini-dress-brown-extra-small-size'),(6497,132,0,520,'0'),(6498,206,0,520,'59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre'),(6500,73,0,521,'Max & Co. Mini Dress-brown-Small size'),(6501,84,0,521,'UNQ Linen Dress'),(6502,86,0,521,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6503,106,0,521,'container2'),(6504,121,0,521,'max-co-mini-dress-brown-small-size'),(6505,132,0,521,'0'),(6506,206,0,521,'59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre'),(6508,73,0,522,'Max & Co. Mini Dress-brown-Large size'),(6509,84,0,522,'UNQ Linen Dress'),(6510,86,0,522,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6511,106,0,522,'container2'),(6512,121,0,522,'max-co-mini-dress-brown-large-size'),(6513,132,0,522,'0'),(6514,206,0,522,'59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre'),(6520,73,0,523,'Beige Leather Belt-brown-Medium size'),(6521,84,0,523,'Beige Leather Belt'),(6522,86,0,523,'Beige Leather Belt Measurements for size EU 85: width approx. 3,4 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: embossed logo\r\nMaterial: leather'),(6523,106,0,523,'container2'),(6524,121,0,523,'beige-leather-belt-brown-medium-size'),(6525,132,0,523,'0'),(6526,206,0,523,'leather'),(6532,73,0,524,'Just me Casual Dress-brown-Extra small size'),(6533,84,0,524,'UNQ Linen Dress'),(6534,86,0,524,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6535,106,0,524,'container2'),(6536,121,0,524,'just-me-casual-dress-brown-extra-small-size'),(6537,132,0,524,'0'),(6538,206,0,524,'100% polyester'),(6540,73,0,525,'Just me Casual Dress-brown-Small size'),(6541,84,0,525,'UNQ Linen Dress'),(6542,86,0,525,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6543,106,0,525,'container2'),(6544,121,0,525,'just-me-casual-dress-brown-small-size'),(6545,132,0,525,'0'),(6546,206,0,525,'100% polyester'),(6548,73,0,526,'Just me Casual Dress-brown-Medium size'),(6549,84,0,526,'UNQ Linen Dress'),(6550,86,0,526,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6551,106,0,526,'container2'),(6552,121,0,526,'just-me-casual-dress-brown-medium-size'),(6553,132,0,526,'0'),(6554,206,0,526,'100% polyester'),(6560,73,0,527,'Blue Leather Belt-blue-Small size'),(6561,84,0,527,'Medium blue Leather Belt'),(6562,86,0,527,'Medium blue Leather Belt Measurements for size EU 90: width approx. 3,5 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: Nubuck leather, partially textured surface\r\nMaterial: leather'),(6563,106,0,527,'container2'),(6564,121,0,527,'blue-leather-belt-blue-small-size'),(6565,132,0,527,'0'),(6566,206,0,527,'Leather'),(6572,73,0,528,'Lawrence Grey Knit Dress-grey-Extra small size'),(6573,84,0,528,'UNQ Linen Dress'),(6574,86,0,528,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6575,106,0,528,'container2'),(6576,121,0,528,'lawrence-grey-knit-dress-grey-extra-small-size'),(6577,132,0,528,'0'),(6578,206,0,528,'100% merino'),(6580,73,0,529,'Lawrence Grey Knit Dress-grey-Small size'),(6581,84,0,529,'UNQ Linen Dress'),(6582,86,0,529,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6583,106,0,529,'container2'),(6584,121,0,529,'lawrence-grey-knit-dress-grey-small-size'),(6585,132,0,529,'0'),(6586,206,0,529,'100% merino'),(6588,73,0,530,'Lawrence Grey Knit Dress-grey-Medium size'),(6589,84,0,530,'UNQ Linen Dress'),(6590,86,0,530,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(6591,106,0,530,'container2'),(6592,121,0,530,'lawrence-grey-knit-dress-grey-medium-size'),(6593,132,0,530,'0'),(6594,206,0,530,'100% merino'),(6600,73,0,531,'Light grey Leather Belt-grey-Small size'),(6601,84,0,531,'Light grey Leather Belt'),(6602,86,0,531,'Light grey Leather Belt '),(6603,106,0,531,'container2'),(6604,121,0,531,'light-grey-leather-belt-grey-small-size'),(6605,132,0,531,'0'),(6606,206,0,531,'Leather'),(6612,73,0,532,'Sequin Dress-black-Extra small size'),(6613,84,0,532,'Sequin Dress'),(6614,86,0,532,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(6615,106,0,532,'container2'),(6616,121,0,532,'sequin-dress-black-extra-small-size'),(6617,132,0,532,'0'),(6618,206,0,532,' 100% polyeste'),(6620,73,0,533,'Sequin Dress-black-Small size'),(6621,84,0,533,'Sequin Dress'),(6622,86,0,533,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(6623,106,0,533,'container2'),(6624,121,0,533,'sequin-dress-black-small-size'),(6625,132,0,533,'0'),(6626,206,0,533,' 100% polyeste'),(6628,73,0,534,'Sequin Dress-black-Medium size'),(6629,84,0,534,'Sequin Dress'),(6630,86,0,534,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(6631,106,0,534,'container2'),(6632,121,0,534,'sequin-dress-black-medium-size'),(6633,132,0,534,'0'),(6634,206,0,534,' 100% polyeste'),(6640,73,0,535,'Cocktail Dress-white-Extra small size'),(6641,84,0,535,'Sequin Dress'),(6642,86,0,535,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(6643,106,0,535,'container2'),(6644,121,0,535,'cocktail-dress-white-extra-small-size'),(6645,132,0,535,'0'),(6646,206,0,535,' 100% polyeste'),(6648,73,0,536,'Cocktail Dress-white-Small size'),(6649,84,0,536,'Sequin Dress'),(6650,86,0,536,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(6651,106,0,536,'container2'),(6652,121,0,536,'cocktail-dress-white-small-size'),(6653,132,0,536,'0'),(6654,206,0,536,' 100% polyeste'),(6656,73,0,537,'Cocktail Dress-white-Medium size'),(6657,84,0,537,'Sequin Dress'),(6658,86,0,537,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(6659,106,0,537,'container2'),(6660,121,0,537,'cocktail-dress-white-medium-size'),(6661,132,0,537,'0'),(6662,206,0,537,' 100% polyeste'),(6668,73,0,538,'Lace Dress-grey-Extra small size'),(6669,84,0,538,'Sequin Dress'),(6670,86,0,538,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(6671,106,0,538,'container2'),(6672,121,0,538,'lace-dress-grey-extra-small-size'),(6673,132,0,538,'0'),(6674,206,0,538,'60% cotton, 40% polyamide'),(6676,73,0,539,'Lace Dress-grey-Small size'),(6677,84,0,539,'Sequin Dress'),(6678,86,0,539,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(6679,106,0,539,'container2'),(6680,121,0,539,'lace-dress-grey-small-size'),(6681,132,0,539,'0'),(6682,206,0,539,'60% cotton, 40% polyamide'),(6684,73,0,540,'Lace Dress-grey-Medium size'),(6685,84,0,540,'Sequin Dress'),(6686,86,0,540,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(6687,106,0,540,'container2'),(6688,121,0,540,'lace-dress-grey-medium-size'),(6689,132,0,540,'0'),(6690,206,0,540,'60% cotton, 40% polyamide'),(6696,73,0,541,'Light blue Leather Belt-blue-Small size'),(6697,84,0,541,'Light blue Leather Belt'),(6698,86,0,541,'Light blue Leather Belt Measurements for size EU S: width approx. 1,8 cm (0.5″)\r\nFastening: pin buckle\r\nExtras: patent leather\r\nMaterial: leather'),(6699,106,0,541,'container2'),(6700,121,0,541,'light-blue-leather-belt-blue-small-size'),(6701,132,0,541,'0'),(6702,206,0,541,'Leather'),(6708,73,0,542,'Chiffon Dress -grey-Small size'),(6709,84,0,542,'Sequin Dress'),(6710,86,0,542,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(6711,106,0,542,'container2'),(6712,121,0,542,'chiffon-dress-grey-small-size'),(6713,132,0,542,'0'),(6714,206,0,542,'60% cotton, 40% polyamide'),(6716,73,0,543,'Chiffon Dress -grey-Medium size'),(6717,84,0,543,'Sequin Dress'),(6718,86,0,543,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(6719,106,0,543,'container2'),(6720,121,0,543,'chiffon-dress-grey-medium-size'),(6721,132,0,543,'0'),(6722,206,0,543,'60% cotton, 40% polyamide'),(6728,73,0,544,'Leather Business Bag-brown'),(6729,84,0,544,'Leather Business Bag'),(6730,86,0,544,'Leather Business Bag '),(6731,106,0,544,'container2'),(6732,121,0,544,'leather-business-bag-brown'),(6733,132,0,544,'0'),(6734,206,0,544,'leather'),(6740,73,0,545,'Leather Backpack-brown'),(6741,84,0,545,'Leather Backpack'),(6742,86,0,545,'Leather Backpack Measurements for one size: height 43 cm (17″), length 30 cm (12″), depth 15 cm (6″)\r\nFastening: two-way zip (open from right and left)\r\nLining material: lined\r\nExterior pockets: patch zip pocket / s, zip pocket(s) Interior pockets: plug-i'),(6743,106,0,545,'container2'),(6744,121,0,545,'leather-backpack-brown'),(6745,132,0,545,'0'),(6746,206,0,545,'leather'),(6752,73,0,546,'Handbag-grey'),(6753,84,0,546,'Handbag'),(6754,86,0,546,'Handbag Reference number: E1 BD1 18 03 01\r\nMeasurements for one size: height 28 cm (11″), length 36 cm (14″), depth 13 cm (5″)\r\nFastening: overlapping flap with clasp closure\r\nLining material: lined Exterior pockets: slit pocket(s)\r\nInterior pockets: plug'),(6755,106,0,546,'container2'),(6756,121,0,546,'handbag-grey'),(6757,132,0,546,'0'),(6758,206,0,546,'Leather'),(6764,73,0,547,'Cognac Handbag-brown'),(6765,84,0,547,'Cognac Handbag'),(6766,86,0,547,'Cognac Handbag '),(6767,106,0,547,'container2'),(6768,121,0,547,'cognac-handbag-brown'),(6769,132,0,547,'0'),(6770,206,0,547,'leather'),(6776,73,0,548,'Blue handbag-blue'),(6777,84,0,548,'Medium blue handbag'),(6778,86,0,548,'Medium blue handbag Smart tote bag. It has two detachable shoulder straps so that it can be worn as a backpack or carried as a tote. There is an outside compartment for storing the shoulder straps.'),(6779,106,0,548,'container2'),(6780,121,0,548,'blue-handbag-blue'),(6781,132,0,548,'0'),(6782,206,0,548,'Leather'),(6783,73,0,549,'I Maschi Lace-up Boots-white-EU 39'),(6784,84,0,549,'I Maschi Lace-up Boots'),(6785,86,0,549,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(6786,87,0,549,'/1/2/1223332323.jpg'),(6787,88,0,549,'/1/2/1223332323.jpg'),(6788,89,0,549,'/1/2/1223332323.jpg'),(6789,106,0,549,'container2'),(6790,121,0,549,'i-maschi-lace-up-boots-white-eu-39'),(6791,132,0,549,'0'),(6792,133,0,549,'/1/2/1223332323.jpg'),(6793,206,0,549,'leather'),(6798,73,0,550,'I Maschi Lace-up Boots-white-EU 40'),(6799,84,0,550,'I Maschi Lace-up Boots'),(6800,86,0,550,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(6801,87,0,550,'/1/2/1223332323_1.jpg'),(6802,88,0,550,'/1/2/1223332323_1.jpg'),(6803,89,0,550,'/1/2/1223332323_1.jpg'),(6804,106,0,550,'container2'),(6805,121,0,550,'i-maschi-lace-up-boots-white-eu-40'),(6806,132,0,550,'0'),(6807,133,0,550,'/1/2/1223332323_1.jpg'),(6808,206,0,550,'leather'),(6813,73,0,551,'I Maschi Lace-up Boots-white-EU 41'),(6814,84,0,551,'I Maschi Lace-up Boots'),(6815,86,0,551,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(6816,87,0,551,'/1/2/1223332323_2.jpg'),(6817,88,0,551,'/1/2/1223332323_2.jpg'),(6818,89,0,551,'/1/2/1223332323_2.jpg'),(6819,106,0,551,'container2'),(6820,121,0,551,'i-maschi-lace-up-boots-white-eu-41'),(6821,132,0,551,'0'),(6822,133,0,551,'/1/2/1223332323_2.jpg'),(6823,206,0,551,'leather'),(6828,73,0,552,'I Maschi Lace-up Boots-white-EU 42'),(6829,84,0,552,'I Maschi Lace-up Boots'),(6830,86,0,552,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(6831,87,0,552,'/1/2/1223332323_3.jpg'),(6832,88,0,552,'/1/2/1223332323_3.jpg'),(6833,89,0,552,'/1/2/1223332323_3.jpg'),(6834,106,0,552,'container2'),(6835,121,0,552,'i-maschi-lace-up-boots-white-eu-42'),(6836,132,0,552,'0'),(6837,133,0,552,'/1/2/1223332323_3.jpg'),(6838,206,0,552,'leather'),(6843,73,0,553,'I Maschi Lace-up Boots-white-EU 43'),(6844,84,0,553,'I Maschi Lace-up Boots'),(6845,86,0,553,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(6846,87,0,553,'/1/2/1223332323_4.jpg'),(6847,88,0,553,'/1/2/1223332323_4.jpg'),(6848,89,0,553,'/1/2/1223332323_4.jpg'),(6849,106,0,553,'container2'),(6850,121,0,553,'i-maschi-lace-up-boots-white-eu-43'),(6851,132,0,553,'0'),(6852,133,0,553,'/1/2/1223332323_4.jpg'),(6853,206,0,553,'leather'),(6858,73,0,554,'I Maschi Lace-up Boots-white-EU 44'),(6859,84,0,554,'I Maschi Lace-up Boots'),(6860,86,0,554,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(6861,87,0,554,'/1/2/1223332323_5.jpg'),(6862,88,0,554,'/1/2/1223332323_5.jpg'),(6863,89,0,554,'/1/2/1223332323_5.jpg'),(6864,106,0,554,'container2'),(6865,121,0,554,'i-maschi-lace-up-boots-white-eu-44'),(6866,132,0,554,'0'),(6867,133,0,554,'/1/2/1223332323_5.jpg'),(6868,206,0,554,'leather'),(6873,73,0,555,'I Maschi Lace-up Boots-black-EU 39'),(6874,84,0,555,'I Maschi Lace-up Boots'),(6875,86,0,555,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(6876,87,0,555,'/2/3/23232323.jpg'),(6877,88,0,555,'/2/3/23232323.jpg'),(6878,89,0,555,'/2/3/23232323.jpg'),(6879,106,0,555,'container2'),(6880,121,0,555,'i-maschi-lace-up-boots-black-eu-39'),(6881,132,0,555,'0'),(6882,133,0,555,'/2/3/23232323.jpg'),(6883,206,0,555,'leather'),(6888,73,0,556,'I Maschi Lace-up Boots-black-EU 40'),(6889,84,0,556,'I Maschi Lace-up Boots'),(6890,86,0,556,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(6891,87,0,556,'/2/3/23232323_1.jpg'),(6892,88,0,556,'/2/3/23232323_1.jpg'),(6893,89,0,556,'/2/3/23232323_1.jpg'),(6894,106,0,556,'container2'),(6895,121,0,556,'i-maschi-lace-up-boots-black-eu-40'),(6896,132,0,556,'0'),(6897,133,0,556,'/2/3/23232323_1.jpg'),(6898,206,0,556,'leather'),(6903,73,0,557,'I Maschi Lace-up Boots-black-EU 41'),(6904,84,0,557,'I Maschi Lace-up Boots'),(6905,86,0,557,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(6906,87,0,557,'/2/3/23232323_2.jpg'),(6907,88,0,557,'/2/3/23232323_2.jpg'),(6908,89,0,557,'/2/3/23232323_2.jpg'),(6909,106,0,557,'container2'),(6910,121,0,557,'i-maschi-lace-up-boots-black-eu-41'),(6911,132,0,557,'0'),(6912,133,0,557,'/2/3/23232323_2.jpg'),(6913,206,0,557,'leather'),(6918,73,0,558,'I Maschi Lace-up Boots-black-EU 42'),(6919,84,0,558,'I Maschi Lace-up Boots'),(6920,86,0,558,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(6921,87,0,558,'/2/3/23232323_3.jpg'),(6922,88,0,558,'/2/3/23232323_3.jpg'),(6923,89,0,558,'/2/3/23232323_3.jpg'),(6924,106,0,558,'container2'),(6925,121,0,558,'i-maschi-lace-up-boots-black-eu-42'),(6926,132,0,558,'0'),(6927,133,0,558,'/2/3/23232323_3.jpg'),(6928,206,0,558,'leather'),(6933,73,0,559,'I Maschi Lace-up Boots-black-EU 43'),(6934,84,0,559,'I Maschi Lace-up Boots'),(6935,86,0,559,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(6936,87,0,559,'/2/3/23232323_4.jpg'),(6937,88,0,559,'/2/3/23232323_4.jpg'),(6938,89,0,559,'/2/3/23232323_4.jpg'),(6939,106,0,559,'container2'),(6940,121,0,559,'i-maschi-lace-up-boots-black-eu-43'),(6941,132,0,559,'0'),(6942,133,0,559,'/2/3/23232323_4.jpg'),(6943,206,0,559,'leather'),(6948,73,0,560,'I Maschi Lace-up Boots-black-EU 44'),(6949,84,0,560,'I Maschi Lace-up Boots'),(6950,86,0,560,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(6951,87,0,560,'/2/3/23232323_5.jpg'),(6952,88,0,560,'/2/3/23232323_5.jpg'),(6953,89,0,560,'/2/3/23232323_5.jpg'),(6954,106,0,560,'container2'),(6955,121,0,560,'i-maschi-lace-up-boots-black-eu-44'),(6956,132,0,560,'0'),(6957,133,0,560,'/2/3/23232323_5.jpg'),(6958,206,0,560,'leather'),(6963,73,0,561,'I Maschi Lace-up Boots-grey-EU 39'),(6964,84,0,561,'I Maschi Lace-up Boots'),(6965,86,0,561,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(6966,87,0,561,'/p/h/photo_4.jpg'),(6967,88,0,561,'/p/h/photo_4.jpg'),(6968,89,0,561,'/p/h/photo_4.jpg'),(6969,106,0,561,'container2'),(6970,121,0,561,'i-maschi-lace-up-boots-grey-eu-39'),(6971,132,0,561,'0'),(6972,133,0,561,'/p/h/photo_4.jpg'),(6973,206,0,561,'leather'),(6978,73,0,562,'I Maschi Lace-up Boots-grey-EU 40'),(6979,84,0,562,'I Maschi Lace-up Boots'),(6980,86,0,562,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(6981,87,0,562,'/p/h/photo_4_1.jpg'),(6982,88,0,562,'/p/h/photo_4_1.jpg'),(6983,89,0,562,'/p/h/photo_4_1.jpg'),(6984,106,0,562,'container2'),(6985,121,0,562,'i-maschi-lace-up-boots-grey-eu-40'),(6986,132,0,562,'0'),(6987,133,0,562,'/p/h/photo_4_1.jpg'),(6988,206,0,562,'leather'),(6993,73,0,563,'I Maschi Lace-up Boots-grey-EU 41'),(6994,84,0,563,'I Maschi Lace-up Boots'),(6995,86,0,563,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(6996,87,0,563,'/p/h/photo_4_2.jpg'),(6997,88,0,563,'/p/h/photo_4_2.jpg'),(6998,89,0,563,'/p/h/photo_4_2.jpg'),(6999,106,0,563,'container2'),(7000,121,0,563,'i-maschi-lace-up-boots-grey-eu-41'),(7001,132,0,563,'0'),(7002,133,0,563,'/p/h/photo_4_2.jpg'),(7003,206,0,563,'leather'),(7008,73,0,564,'I Maschi Lace-up Boots-grey-EU 42'),(7009,84,0,564,'I Maschi Lace-up Boots'),(7010,86,0,564,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(7011,87,0,564,'/p/h/photo_4_3.jpg'),(7012,88,0,564,'/p/h/photo_4_3.jpg'),(7013,89,0,564,'/p/h/photo_4_3.jpg'),(7014,106,0,564,'container2'),(7015,121,0,564,'i-maschi-lace-up-boots-grey-eu-42'),(7016,132,0,564,'0'),(7017,133,0,564,'/p/h/photo_4_3.jpg'),(7018,206,0,564,'leather'),(7023,73,0,565,'I Maschi Lace-up Boots-grey-EU 43'),(7024,84,0,565,'I Maschi Lace-up Boots'),(7025,86,0,565,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(7026,87,0,565,'/p/h/photo_4_4.jpg'),(7027,88,0,565,'/p/h/photo_4_4.jpg'),(7028,89,0,565,'/p/h/photo_4_4.jpg'),(7029,106,0,565,'container2'),(7030,121,0,565,'i-maschi-lace-up-boots-grey-eu-43'),(7031,132,0,565,'0'),(7032,133,0,565,'/p/h/photo_4_4.jpg'),(7033,206,0,565,'leather'),(7038,73,0,566,'I Maschi Lace-up Boots-grey-EU 44'),(7039,84,0,566,'I Maschi Lace-up Boots'),(7040,86,0,566,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(7041,87,0,566,'/p/h/photo_4_5.jpg'),(7042,88,0,566,'/p/h/photo_4_5.jpg'),(7043,89,0,566,'/p/h/photo_4_5.jpg'),(7044,106,0,566,'container2'),(7045,121,0,566,'i-maschi-lace-up-boots-grey-eu-44'),(7046,132,0,566,'0'),(7047,133,0,566,'/p/h/photo_4_5.jpg'),(7048,206,0,566,'leather'),(7053,73,0,567,'I Maschi Lace-up Boots-blue-EU 39'),(7054,84,0,567,'I Maschi Lace-up Boots'),(7055,86,0,567,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(7056,87,0,567,'/3/4/34322323.jpg'),(7057,88,0,567,'/3/4/34322323.jpg'),(7058,89,0,567,'/3/4/34322323.jpg'),(7059,106,0,567,'container2'),(7060,121,0,567,'i-maschi-lace-up-boots-blue-eu-39'),(7061,132,0,567,'0'),(7062,133,0,567,'/3/4/34322323.jpg'),(7063,206,0,567,'leather'),(7068,73,0,568,'I Maschi Lace-up Boots-blue-EU 40'),(7069,84,0,568,'I Maschi Lace-up Boots'),(7070,86,0,568,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(7071,87,0,568,'/3/4/34322323_1.jpg'),(7072,88,0,568,'/3/4/34322323_1.jpg'),(7073,89,0,568,'/3/4/34322323_1.jpg'),(7074,106,0,568,'container2'),(7075,121,0,568,'i-maschi-lace-up-boots-blue-eu-40'),(7076,132,0,568,'0'),(7077,133,0,568,'/3/4/34322323_1.jpg'),(7078,206,0,568,'leather'),(7083,73,0,569,'I Maschi Lace-up Boots-blue-EU 41'),(7084,84,0,569,'I Maschi Lace-up Boots'),(7085,86,0,569,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(7086,87,0,569,'/3/4/34322323_2.jpg'),(7087,88,0,569,'/3/4/34322323_2.jpg'),(7088,89,0,569,'/3/4/34322323_2.jpg'),(7089,106,0,569,'container2'),(7090,121,0,569,'i-maschi-lace-up-boots-blue-eu-41'),(7091,132,0,569,'0'),(7092,133,0,569,'/3/4/34322323_2.jpg'),(7093,206,0,569,'leather'),(7098,73,0,570,'I Maschi Lace-up Boots-blue-EU 42'),(7099,84,0,570,'I Maschi Lace-up Boots'),(7100,86,0,570,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(7101,87,0,570,'/3/4/34322323_3.jpg'),(7102,88,0,570,'/3/4/34322323_3.jpg'),(7103,89,0,570,'/3/4/34322323_3.jpg'),(7104,106,0,570,'container2'),(7105,121,0,570,'i-maschi-lace-up-boots-blue-eu-42'),(7106,132,0,570,'0'),(7107,133,0,570,'/3/4/34322323_3.jpg'),(7108,206,0,570,'leather'),(7113,73,0,571,'I Maschi Lace-up Boots-blue-EU 43'),(7114,84,0,571,'I Maschi Lace-up Boots'),(7115,86,0,571,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(7116,87,0,571,'/3/4/34322323_4.jpg'),(7117,88,0,571,'/3/4/34322323_4.jpg'),(7118,89,0,571,'/3/4/34322323_4.jpg'),(7119,106,0,571,'container2'),(7120,121,0,571,'i-maschi-lace-up-boots-blue-eu-43'),(7121,132,0,571,'0'),(7122,133,0,571,'/3/4/34322323_4.jpg'),(7123,206,0,571,'leather'),(7128,73,0,572,'I Maschi Lace-up Boots-blue-EU 44'),(7129,84,0,572,'I Maschi Lace-up Boots'),(7130,86,0,572,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(7131,87,0,572,'/3/4/34322323_5.jpg'),(7132,88,0,572,'/3/4/34322323_5.jpg'),(7133,89,0,572,'/3/4/34322323_5.jpg'),(7134,106,0,572,'container2'),(7135,121,0,572,'i-maschi-lace-up-boots-blue-eu-44'),(7136,132,0,572,'0'),(7137,133,0,572,'/3/4/34322323_5.jpg'),(7138,206,0,572,'leather'),(7143,73,0,573,'I Maschi Lace-up Boots-red-EU 39'),(7144,84,0,573,'I Maschi Lace-up Boots'),(7145,86,0,573,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(7146,87,0,573,'/i/m/image_30807043_21_620x757_0_copy.jpg'),(7147,88,0,573,'/i/m/image_30807043_21_620x757_0_copy.jpg'),(7148,89,0,573,'/i/m/image_30807043_21_620x757_0_copy.jpg'),(7149,106,0,573,'container2'),(7150,121,0,573,'i-maschi-lace-up-boots-red-eu-39'),(7151,132,0,573,'0'),(7152,133,0,573,'/i/m/image_30807043_21_620x757_0_copy.jpg'),(7153,206,0,573,'leather'),(7158,73,0,574,'I Maschi Lace-up Boots-red-EU 40'),(7159,84,0,574,'I Maschi Lace-up Boots'),(7160,86,0,574,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(7161,87,0,574,'/i/m/image_30807043_21_620x757_0_copy_1.jpg'),(7162,88,0,574,'/i/m/image_30807043_21_620x757_0_copy_1.jpg'),(7163,89,0,574,'/i/m/image_30807043_21_620x757_0_copy_1.jpg'),(7164,106,0,574,'container2'),(7165,121,0,574,'i-maschi-lace-up-boots-red-eu-40'),(7166,132,0,574,'0'),(7167,133,0,574,'/i/m/image_30807043_21_620x757_0_copy_1.jpg'),(7168,206,0,574,'leather'),(7173,73,0,575,'I Maschi Lace-up Boots-red-EU 41'),(7174,84,0,575,'I Maschi Lace-up Boots'),(7175,86,0,575,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(7176,87,0,575,'/i/m/image_30807043_21_620x757_0_copy_2.jpg'),(7177,88,0,575,'/i/m/image_30807043_21_620x757_0_copy_2.jpg'),(7178,89,0,575,'/i/m/image_30807043_21_620x757_0_copy_2.jpg'),(7179,106,0,575,'container2'),(7180,121,0,575,'i-maschi-lace-up-boots-red-eu-41'),(7181,132,0,575,'0'),(7182,133,0,575,'/i/m/image_30807043_21_620x757_0_copy_2.jpg'),(7183,206,0,575,'leather'),(7188,73,0,576,'I Maschi Lace-up Boots-red-EU 42'),(7189,84,0,576,'I Maschi Lace-up Boots'),(7190,86,0,576,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(7191,87,0,576,'/i/m/image_30807043_21_620x757_0_copy_3.jpg'),(7192,88,0,576,'/i/m/image_30807043_21_620x757_0_copy_3.jpg'),(7193,89,0,576,'/i/m/image_30807043_21_620x757_0_copy_3.jpg'),(7194,106,0,576,'container2'),(7195,121,0,576,'i-maschi-lace-up-boots-red-eu-42'),(7196,132,0,576,'0'),(7197,133,0,576,'/i/m/image_30807043_21_620x757_0_copy_3.jpg'),(7198,206,0,576,'leather'),(7203,73,0,577,'I Maschi Lace-up Boots-red-EU 43'),(7204,84,0,577,'I Maschi Lace-up Boots'),(7205,86,0,577,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(7206,87,0,577,'/i/m/image_30807043_21_620x757_0_copy_4.jpg'),(7207,88,0,577,'/i/m/image_30807043_21_620x757_0_copy_4.jpg'),(7208,89,0,577,'/i/m/image_30807043_21_620x757_0_copy_4.jpg'),(7209,106,0,577,'container2'),(7210,121,0,577,'i-maschi-lace-up-boots-red-eu-43'),(7211,132,0,577,'0'),(7212,133,0,577,'/i/m/image_30807043_21_620x757_0_copy_4.jpg'),(7213,206,0,577,'leather'),(7218,73,0,578,'I Maschi Lace-up Boots-red-EU 44'),(7219,84,0,578,'I Maschi Lace-up Boots'),(7220,86,0,578,'I Maschi Lace-up Boots Moder with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(7221,87,0,578,'/i/m/image_30807043_21_620x757_0_copy_5.jpg'),(7222,88,0,578,'/i/m/image_30807043_21_620x757_0_copy_5.jpg'),(7223,89,0,578,'/i/m/image_30807043_21_620x757_0_copy_5.jpg'),(7224,106,0,578,'container2'),(7225,121,0,578,'i-maschi-lace-up-boots-red-eu-44'),(7226,132,0,578,'0'),(7227,133,0,578,'/i/m/image_30807043_21_620x757_0_copy_5.jpg'),(7228,206,0,578,'leather'),(7245,73,0,579,'Grey Sneakers-brown-EU 37'),(7246,84,0,579,'Napapijri Grey Sneakers'),(7247,86,0,579,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7248,87,0,579,'/5/6/565656.jpg'),(7249,88,0,579,'/5/6/565656.jpg'),(7250,89,0,579,'/5/6/565656.jpg'),(7251,106,0,579,'container2'),(7252,121,0,579,'grey-sneakers-brown-eu-37'),(7253,132,0,579,'0'),(7254,133,0,579,'/5/6/565656.jpg'),(7255,206,0,579,'leather, textile'),(7260,73,0,580,'Grey Sneakers-brown-EU 38'),(7261,84,0,580,'Napapijri Grey Sneakers'),(7262,86,0,580,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7263,87,0,580,'/5/6/565656_1.jpg'),(7264,88,0,580,'/5/6/565656_1.jpg'),(7265,89,0,580,'/5/6/565656_1.jpg'),(7266,106,0,580,'container2'),(7267,121,0,580,'grey-sneakers-brown-eu-38'),(7268,132,0,580,'0'),(7269,133,0,580,'/5/6/565656_1.jpg'),(7270,206,0,580,'leather, textile'),(7275,73,0,581,'Grey Sneakers-brown-EU 40'),(7276,84,0,581,'Napapijri Grey Sneakers'),(7277,86,0,581,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7278,87,0,581,'/5/6/565656_2.jpg'),(7279,88,0,581,'/5/6/565656_2.jpg'),(7280,89,0,581,'/5/6/565656_2.jpg'),(7281,106,0,581,'container2'),(7282,121,0,581,'grey-sneakers-brown-eu-40'),(7283,132,0,581,'0'),(7284,133,0,581,'/5/6/565656_2.jpg'),(7285,206,0,581,'leather, textile'),(7290,73,0,582,'Grey Sneakers-brown-EU 41'),(7291,84,0,582,'Napapijri Grey Sneakers'),(7292,86,0,582,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7293,87,0,582,'/5/6/565656_3.jpg'),(7294,88,0,582,'/5/6/565656_3.jpg'),(7295,89,0,582,'/5/6/565656_3.jpg'),(7296,106,0,582,'container2'),(7297,121,0,582,'grey-sneakers-brown-eu-41'),(7298,132,0,582,'0'),(7299,133,0,582,'/5/6/565656_3.jpg'),(7300,206,0,582,'leather, textile'),(7305,73,0,583,'Grey Sneakers-brown-EU 42'),(7306,84,0,583,'Napapijri Grey Sneakers'),(7307,86,0,583,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7308,87,0,583,'/5/6/565656_4.jpg'),(7309,88,0,583,'/5/6/565656_4.jpg'),(7310,89,0,583,'/5/6/565656_4.jpg'),(7311,106,0,583,'container2'),(7312,121,0,583,'grey-sneakers-brown-eu-42'),(7313,132,0,583,'0'),(7314,133,0,583,'/5/6/565656_4.jpg'),(7315,206,0,583,'leather, textile'),(7320,73,0,584,'Grey Sneakers-brown-EU 43'),(7321,84,0,584,'Napapijri Grey Sneakers'),(7322,86,0,584,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7323,87,0,584,'/5/6/565656_5.jpg'),(7324,88,0,584,'/5/6/565656_5.jpg'),(7325,89,0,584,'/5/6/565656_5.jpg'),(7326,106,0,584,'container2'),(7327,121,0,584,'grey-sneakers-brown-eu-43'),(7328,132,0,584,'0'),(7329,133,0,584,'/5/6/565656_5.jpg'),(7330,206,0,584,'leather, textile'),(7335,73,0,585,'Grey Sneakers-brown-EU 45'),(7336,84,0,585,'Napapijri Grey Sneakers'),(7337,86,0,585,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7338,87,0,585,'/5/6/565656_6.jpg'),(7339,88,0,585,'/5/6/565656_6.jpg'),(7340,89,0,585,'/5/6/565656_6.jpg'),(7341,106,0,585,'container2'),(7342,121,0,585,'grey-sneakers-brown-eu-45'),(7343,132,0,585,'0'),(7344,133,0,585,'/5/6/565656_6.jpg'),(7345,206,0,585,'leather, textile'),(7350,73,0,586,'Grey Sneakers-white-EU 37'),(7351,84,0,586,'Napapijri Grey Sneakers'),(7352,86,0,586,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7353,87,0,586,'/i/m/image_31332981_20_970x1182_1.jpg'),(7354,88,0,586,'/i/m/image_31332981_20_970x1182_1.jpg'),(7355,89,0,586,'/i/m/image_31332981_20_970x1182_1.jpg'),(7356,106,0,586,'container2'),(7357,121,0,586,'grey-sneakers-white-eu-37'),(7358,132,0,586,'0'),(7359,133,0,586,'/i/m/image_31332981_20_970x1182_1.jpg'),(7360,206,0,586,'leather, textile'),(7365,73,0,587,'Grey Sneakers-white-EU 38'),(7366,84,0,587,'Napapijri Grey Sneakers'),(7367,86,0,587,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7368,87,0,587,'/i/m/image_31332981_20_970x1182_1_1.jpg'),(7369,88,0,587,'/i/m/image_31332981_20_970x1182_1_1.jpg'),(7370,89,0,587,'/i/m/image_31332981_20_970x1182_1_1.jpg'),(7371,106,0,587,'container2'),(7372,121,0,587,'grey-sneakers-white-eu-38'),(7373,132,0,587,'0'),(7374,133,0,587,'/i/m/image_31332981_20_970x1182_1_1.jpg'),(7375,206,0,587,'leather, textile'),(7380,73,0,588,'Grey Sneakers-white-EU 40'),(7381,84,0,588,'Napapijri Grey Sneakers'),(7382,86,0,588,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7383,87,0,588,'/i/m/image_31332981_20_970x1182_1_2.jpg'),(7384,88,0,588,'/i/m/image_31332981_20_970x1182_1_2.jpg'),(7385,89,0,588,'/i/m/image_31332981_20_970x1182_1_2.jpg'),(7386,106,0,588,'container2'),(7387,121,0,588,'grey-sneakers-white-eu-40'),(7388,132,0,588,'0'),(7389,133,0,588,'/i/m/image_31332981_20_970x1182_1_2.jpg'),(7390,206,0,588,'leather, textile'),(7395,73,0,589,'Grey Sneakers-white-EU 41'),(7396,84,0,589,'Napapijri Grey Sneakers'),(7397,86,0,589,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7398,87,0,589,'/i/m/image_31332981_20_970x1182_1_3.jpg'),(7399,88,0,589,'/i/m/image_31332981_20_970x1182_1_3.jpg'),(7400,89,0,589,'/i/m/image_31332981_20_970x1182_1_3.jpg'),(7401,106,0,589,'container2'),(7402,121,0,589,'grey-sneakers-white-eu-41'),(7403,132,0,589,'0'),(7404,133,0,589,'/i/m/image_31332981_20_970x1182_1_3.jpg'),(7405,206,0,589,'leather, textile'),(7410,73,0,590,'Grey Sneakers-white-EU 42'),(7411,84,0,590,'Napapijri Grey Sneakers'),(7412,86,0,590,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7413,87,0,590,'/i/m/image_31332981_20_970x1182_1_4.jpg'),(7414,88,0,590,'/i/m/image_31332981_20_970x1182_1_4.jpg'),(7415,89,0,590,'/i/m/image_31332981_20_970x1182_1_4.jpg'),(7416,106,0,590,'container2'),(7417,121,0,590,'grey-sneakers-white-eu-42'),(7418,132,0,590,'0'),(7419,133,0,590,'/i/m/image_31332981_20_970x1182_1_4.jpg'),(7420,206,0,590,'leather, textile'),(7425,73,0,591,'Grey Sneakers-white-EU 43'),(7426,84,0,591,'Napapijri Grey Sneakers'),(7427,86,0,591,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7428,87,0,591,'/i/m/image_31332981_20_970x1182_1_5.jpg'),(7429,88,0,591,'/i/m/image_31332981_20_970x1182_1_5.jpg'),(7430,89,0,591,'/i/m/image_31332981_20_970x1182_1_5.jpg'),(7431,106,0,591,'container2'),(7432,121,0,591,'grey-sneakers-white-eu-43'),(7433,132,0,591,'0'),(7434,133,0,591,'/i/m/image_31332981_20_970x1182_1_5.jpg'),(7435,206,0,591,'leather, textile'),(7440,73,0,592,'Grey Sneakers-white-EU 45'),(7441,84,0,592,'Napapijri Grey Sneakers'),(7442,86,0,592,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7443,87,0,592,'/i/m/image_31332981_20_970x1182_1_6.jpg'),(7444,88,0,592,'/i/m/image_31332981_20_970x1182_1_6.jpg'),(7445,89,0,592,'/i/m/image_31332981_20_970x1182_1_6.jpg'),(7446,106,0,592,'container2'),(7447,121,0,592,'grey-sneakers-white-eu-45'),(7448,132,0,592,'0'),(7449,133,0,592,'/i/m/image_31332981_20_970x1182_1_6.jpg'),(7450,206,0,592,'leather, textile'),(7455,73,0,593,'Grey Sneakers-black-EU 37'),(7456,84,0,593,'Napapijri Grey Sneakers'),(7457,86,0,593,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7458,87,0,593,'/5/4/5443344.jpg'),(7459,88,0,593,'/5/4/5443344.jpg'),(7460,89,0,593,'/5/4/5443344.jpg'),(7461,106,0,593,'container2'),(7462,121,0,593,'grey-sneakers-black-eu-37'),(7463,132,0,593,'0'),(7464,133,0,593,'/5/4/5443344.jpg'),(7465,206,0,593,'leather, textile'),(7470,73,0,594,'Grey Sneakers-black-EU 38'),(7471,84,0,594,'Napapijri Grey Sneakers'),(7472,86,0,594,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7473,87,0,594,'/5/4/5443344_1.jpg'),(7474,88,0,594,'/5/4/5443344_1.jpg'),(7475,89,0,594,'/5/4/5443344_1.jpg'),(7476,106,0,594,'container2'),(7477,121,0,594,'grey-sneakers-black-eu-38'),(7478,132,0,594,'0'),(7479,133,0,594,'/5/4/5443344_1.jpg'),(7480,206,0,594,'leather, textile'),(7485,73,0,595,'Grey Sneakers-black-EU 40'),(7486,84,0,595,'Napapijri Grey Sneakers'),(7487,86,0,595,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7488,87,0,595,'/5/4/5443344_2.jpg'),(7489,88,0,595,'/5/4/5443344_2.jpg'),(7490,89,0,595,'/5/4/5443344_2.jpg'),(7491,106,0,595,'container2'),(7492,121,0,595,'grey-sneakers-black-eu-40'),(7493,132,0,595,'0'),(7494,133,0,595,'/5/4/5443344_2.jpg'),(7495,206,0,595,'leather, textile'),(7500,73,0,596,'Grey Sneakers-black-EU 41'),(7501,84,0,596,'Napapijri Grey Sneakers'),(7502,86,0,596,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7503,87,0,596,'/5/4/5443344_3.jpg'),(7504,88,0,596,'/5/4/5443344_3.jpg'),(7505,89,0,596,'/5/4/5443344_3.jpg'),(7506,106,0,596,'container2'),(7507,121,0,596,'grey-sneakers-black-eu-41'),(7508,132,0,596,'0'),(7509,133,0,596,'/5/4/5443344_3.jpg'),(7510,206,0,596,'leather, textile'),(7515,73,0,597,'Grey Sneakers-black-EU 42'),(7516,84,0,597,'Napapijri Grey Sneakers'),(7517,86,0,597,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7518,87,0,597,'/5/4/5443344_4.jpg'),(7519,88,0,597,'/5/4/5443344_4.jpg'),(7520,89,0,597,'/5/4/5443344_4.jpg'),(7521,106,0,597,'container2'),(7522,121,0,597,'grey-sneakers-black-eu-42'),(7523,132,0,597,'0'),(7524,133,0,597,'/5/4/5443344_4.jpg'),(7525,206,0,597,'leather, textile'),(7530,73,0,598,'Grey Sneakers-black-EU 43'),(7531,84,0,598,'Napapijri Grey Sneakers'),(7532,86,0,598,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7533,87,0,598,'/5/4/5443344_5.jpg'),(7534,88,0,598,'/5/4/5443344_5.jpg'),(7535,89,0,598,'/5/4/5443344_5.jpg'),(7536,106,0,598,'container2'),(7537,121,0,598,'grey-sneakers-black-eu-43'),(7538,132,0,598,'0'),(7539,133,0,598,'/5/4/5443344_5.jpg'),(7540,206,0,598,'leather, textile'),(7545,73,0,599,'Grey Sneakers-black-EU 45'),(7546,84,0,599,'Napapijri Grey Sneakers'),(7547,86,0,599,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7548,87,0,599,'/5/4/5443344_6.jpg'),(7549,88,0,599,'/5/4/5443344_6.jpg'),(7550,89,0,599,'/5/4/5443344_6.jpg'),(7551,106,0,599,'container2'),(7552,121,0,599,'grey-sneakers-black-eu-45'),(7553,132,0,599,'0'),(7554,133,0,599,'/5/4/5443344_6.jpg'),(7555,206,0,599,'leather, textile'),(7560,73,0,600,'Grey Sneakers-blue-EU 37'),(7561,84,0,600,'Napapijri Grey Sneakers'),(7562,86,0,600,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7563,87,0,600,'/3/4/34223223.jpg'),(7564,88,0,600,'/3/4/34223223.jpg'),(7565,89,0,600,'/3/4/34223223.jpg'),(7566,106,0,600,'container2'),(7567,121,0,600,'grey-sneakers-blue-eu-37'),(7568,132,0,600,'0'),(7569,133,0,600,'/3/4/34223223.jpg'),(7570,206,0,600,'leather, textile'),(7575,73,0,601,'Grey Sneakers-blue-EU 38'),(7576,84,0,601,'Napapijri Grey Sneakers'),(7577,86,0,601,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7578,87,0,601,'/3/4/34223223_1.jpg'),(7579,88,0,601,'/3/4/34223223_1.jpg'),(7580,89,0,601,'/3/4/34223223_1.jpg'),(7581,106,0,601,'container2'),(7582,121,0,601,'grey-sneakers-blue-eu-38'),(7583,132,0,601,'0'),(7584,133,0,601,'/3/4/34223223_1.jpg'),(7585,206,0,601,'leather, textile'),(7590,73,0,602,'Grey Sneakers-blue-EU 40'),(7591,84,0,602,'Napapijri Grey Sneakers'),(7592,86,0,602,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7593,87,0,602,'/3/4/34223223_2.jpg'),(7594,88,0,602,'/3/4/34223223_2.jpg'),(7595,89,0,602,'/3/4/34223223_2.jpg'),(7596,106,0,602,'container2'),(7597,121,0,602,'grey-sneakers-blue-eu-40'),(7598,132,0,602,'0'),(7599,133,0,602,'/3/4/34223223_2.jpg'),(7600,206,0,602,'leather, textile'),(7605,73,0,603,'Grey Sneakers-blue-EU 41'),(7606,84,0,603,'Napapijri Grey Sneakers'),(7607,86,0,603,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7608,87,0,603,'/3/4/34223223_3.jpg'),(7609,88,0,603,'/3/4/34223223_3.jpg'),(7610,89,0,603,'/3/4/34223223_3.jpg'),(7611,106,0,603,'container2'),(7612,121,0,603,'grey-sneakers-blue-eu-41'),(7613,132,0,603,'0'),(7614,133,0,603,'/3/4/34223223_3.jpg'),(7615,206,0,603,'leather, textile'),(7620,73,0,604,'Grey Sneakers-blue-EU 42'),(7621,84,0,604,'Napapijri Grey Sneakers'),(7622,86,0,604,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7623,87,0,604,'/3/4/34223223_4.jpg'),(7624,88,0,604,'/3/4/34223223_4.jpg'),(7625,89,0,604,'/3/4/34223223_4.jpg'),(7626,106,0,604,'container2'),(7627,121,0,604,'grey-sneakers-blue-eu-42'),(7628,132,0,604,'0'),(7629,133,0,604,'/3/4/34223223_4.jpg'),(7630,206,0,604,'leather, textile'),(7635,73,0,605,'Grey Sneakers-blue-EU 43'),(7636,84,0,605,'Napapijri Grey Sneakers'),(7637,86,0,605,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7638,87,0,605,'/3/4/34223223_5.jpg'),(7639,88,0,605,'/3/4/34223223_5.jpg'),(7640,89,0,605,'/3/4/34223223_5.jpg'),(7641,106,0,605,'container2'),(7642,121,0,605,'grey-sneakers-blue-eu-43'),(7643,132,0,605,'0'),(7644,133,0,605,'/3/4/34223223_5.jpg'),(7645,206,0,605,'leather, textile'),(7650,73,0,606,'Grey Sneakers-blue-EU 45'),(7651,84,0,606,'Napapijri Grey Sneakers'),(7652,86,0,606,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7653,87,0,606,'/3/4/34223223_6.jpg'),(7654,88,0,606,'/3/4/34223223_6.jpg'),(7655,89,0,606,'/3/4/34223223_6.jpg'),(7656,106,0,606,'container2'),(7657,121,0,606,'grey-sneakers-blue-eu-45'),(7658,132,0,606,'0'),(7659,133,0,606,'/3/4/34223223_6.jpg'),(7660,206,0,606,'leather, textile'),(7665,73,0,607,'Grey Sneakers-red-EU 37'),(7666,84,0,607,'Napapijri Grey Sneakers'),(7667,86,0,607,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7668,87,0,607,'/2/2/2234234222.jpg'),(7669,88,0,607,'/2/2/2234234222.jpg'),(7670,89,0,607,'/2/2/2234234222.jpg'),(7671,106,0,607,'container2'),(7672,121,0,607,'grey-sneakers-red-eu-37'),(7673,132,0,607,'0'),(7674,133,0,607,'/2/2/2234234222.jpg'),(7675,206,0,607,'leather, textile'),(7680,73,0,608,'Grey Sneakers-red-EU 38'),(7681,84,0,608,'Napapijri Grey Sneakers'),(7682,86,0,608,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7683,87,0,608,'/2/2/2234234222_1.jpg'),(7684,88,0,608,'/2/2/2234234222_1.jpg'),(7685,89,0,608,'/2/2/2234234222_1.jpg'),(7686,106,0,608,'container2'),(7687,121,0,608,'grey-sneakers-red-eu-38'),(7688,132,0,608,'0'),(7689,133,0,608,'/2/2/2234234222_1.jpg'),(7690,206,0,608,'leather, textile'),(7695,73,0,609,'Grey Sneakers-red-EU 40'),(7696,84,0,609,'Napapijri Grey Sneakers'),(7697,86,0,609,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7698,87,0,609,'/2/2/2234234222_2.jpg'),(7699,88,0,609,'/2/2/2234234222_2.jpg'),(7700,89,0,609,'/2/2/2234234222_2.jpg'),(7701,106,0,609,'container2'),(7702,121,0,609,'grey-sneakers-red-eu-40'),(7703,132,0,609,'0'),(7704,133,0,609,'/2/2/2234234222_2.jpg'),(7705,206,0,609,'leather, textile'),(7710,73,0,610,'Grey Sneakers-red-EU 41'),(7711,84,0,610,'Napapijri Grey Sneakers'),(7712,86,0,610,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7713,87,0,610,'/2/2/2234234222_3.jpg'),(7714,88,0,610,'/2/2/2234234222_3.jpg'),(7715,89,0,610,'/2/2/2234234222_3.jpg'),(7716,106,0,610,'container2'),(7717,121,0,610,'grey-sneakers-red-eu-41'),(7718,132,0,610,'0'),(7719,133,0,610,'/2/2/2234234222_3.jpg'),(7720,206,0,610,'leather, textile'),(7725,73,0,611,'Grey Sneakers-red-EU 42'),(7726,84,0,611,'Napapijri Grey Sneakers'),(7727,86,0,611,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7728,87,0,611,'/2/2/2234234222_4.jpg'),(7729,88,0,611,'/2/2/2234234222_4.jpg'),(7730,89,0,611,'/2/2/2234234222_4.jpg'),(7731,106,0,611,'container2'),(7732,121,0,611,'grey-sneakers-red-eu-42'),(7733,132,0,611,'0'),(7734,133,0,611,'/2/2/2234234222_4.jpg'),(7735,206,0,611,'leather, textile'),(7740,73,0,612,'Grey Sneakers-red-EU 43'),(7741,84,0,612,'Napapijri Grey Sneakers'),(7742,86,0,612,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7743,87,0,612,'/2/2/2234234222_5.jpg'),(7744,88,0,612,'/2/2/2234234222_5.jpg'),(7745,89,0,612,'/2/2/2234234222_5.jpg'),(7746,106,0,612,'container2'),(7747,121,0,612,'grey-sneakers-red-eu-43'),(7748,132,0,612,'0'),(7749,133,0,612,'/2/2/2234234222_5.jpg'),(7750,206,0,612,'leather, textile'),(7755,73,0,613,'Grey Sneakers-red-EU 45'),(7756,84,0,613,'Napapijri Grey Sneakers'),(7757,86,0,613,'Napapijri Grey Sneakers Casual shoes from Napapijri. The material of the upper part is genuine leather - full grain leather, nubuck, suede, fabric - fabric. The material of the lining is textile. Comfort is provided by the insoles made of textile. The sol'),(7758,87,0,613,'/2/2/2234234222_6.jpg'),(7759,88,0,613,'/2/2/2234234222_6.jpg'),(7760,89,0,613,'/2/2/2234234222_6.jpg'),(7761,106,0,613,'container2'),(7762,121,0,613,'grey-sneakers-red-eu-45'),(7763,132,0,613,'0'),(7764,133,0,613,'/2/2/2234234222_6.jpg'),(7765,206,0,613,'leather, textile'),(7782,73,0,614,'Timberland Lace-ups-EU 39-white'),(7783,84,0,614,'Timberland Lace-ups'),(7784,86,0,614,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(7785,87,0,614,'/3/4/34534223322.jpg'),(7786,88,0,614,'/3/4/34534223322.jpg'),(7787,89,0,614,'/3/4/34534223322.jpg'),(7788,106,0,614,'container2'),(7789,121,0,614,'timberland-lace-ups-eu-39-white'),(7790,132,0,614,'0'),(7791,133,0,614,'/3/4/34534223322.jpg'),(7792,206,0,614,'Textile'),(7797,73,0,615,'Timberland Lace-ups-EU 39-black'),(7798,84,0,615,'Timberland Lace-ups'),(7799,86,0,615,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(7800,87,0,615,'/4/5/456456546.jpg'),(7801,88,0,615,'/4/5/456456546.jpg'),(7802,89,0,615,'/4/5/456456546.jpg'),(7803,106,0,615,'container2'),(7804,121,0,615,'timberland-lace-ups-eu-39-black'),(7805,132,0,615,'0'),(7806,133,0,615,'/4/5/456456546.jpg'),(7807,206,0,615,'Textile'),(7812,73,0,616,'Timberland Lace-ups-EU 39-grey'),(7813,84,0,616,'Timberland Lace-ups'),(7814,86,0,616,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(7815,87,0,616,'/3/5/356564545.jpg'),(7816,88,0,616,'/3/5/356564545.jpg'),(7817,89,0,616,'/3/5/356564545.jpg'),(7818,106,0,616,'container2'),(7819,121,0,616,'timberland-lace-ups-eu-39-grey'),(7820,132,0,616,'0'),(7821,133,0,616,'/3/5/356564545.jpg'),(7822,206,0,616,'Textile'),(7827,73,0,617,'Timberland Lace-ups-EU 39-blue'),(7828,84,0,617,'Timberland Lace-ups'),(7829,86,0,617,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(7830,87,0,617,'/3/2/32343434.jpg'),(7831,88,0,617,'/3/2/32343434.jpg'),(7832,89,0,617,'/3/2/32343434.jpg'),(7833,106,0,617,'container2'),(7834,121,0,617,'timberland-lace-ups-eu-39-blue'),(7835,132,0,617,'0'),(7836,133,0,617,'/3/2/32343434.jpg'),(7837,206,0,617,'Textile'),(7842,73,0,618,'Timberland Lace-ups-EU 39-red'),(7843,84,0,618,'Timberland Lace-ups'),(7844,86,0,618,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(7845,87,0,618,'/3/4/34222345543.jpg'),(7846,88,0,618,'/3/4/34222345543.jpg'),(7847,89,0,618,'/3/4/34222345543.jpg'),(7848,106,0,618,'container2'),(7849,121,0,618,'timberland-lace-ups-eu-39-red'),(7850,132,0,618,'0'),(7851,133,0,618,'/3/4/34222345543.jpg'),(7852,206,0,618,'Textile'),(7857,73,0,619,'Timberland Lace-ups-EU 40-white'),(7858,84,0,619,'Timberland Lace-ups'),(7859,86,0,619,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(7860,87,0,619,'/3/4/34534223322_1.jpg'),(7861,88,0,619,'/3/4/34534223322_1.jpg'),(7862,89,0,619,'/3/4/34534223322_1.jpg'),(7863,106,0,619,'container2'),(7864,121,0,619,'timberland-lace-ups-eu-40-white'),(7865,132,0,619,'0'),(7866,133,0,619,'/3/4/34534223322_1.jpg'),(7867,206,0,619,'Textile'),(7872,73,0,620,'Timberland Lace-ups-EU 40-black'),(7873,84,0,620,'Timberland Lace-ups'),(7874,86,0,620,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(7875,87,0,620,'/4/5/456456546_1.jpg'),(7876,88,0,620,'/4/5/456456546_1.jpg'),(7877,89,0,620,'/4/5/456456546_1.jpg'),(7878,106,0,620,'container2'),(7879,121,0,620,'timberland-lace-ups-eu-40-black'),(7880,132,0,620,'0'),(7881,133,0,620,'/4/5/456456546_1.jpg'),(7882,206,0,620,'Textile'),(7887,73,0,621,'Timberland Lace-ups-EU 40-grey'),(7888,84,0,621,'Timberland Lace-ups'),(7889,86,0,621,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(7890,87,0,621,'/3/5/356564545_1.jpg'),(7891,88,0,621,'/3/5/356564545_1.jpg'),(7892,89,0,621,'/3/5/356564545_1.jpg'),(7893,106,0,621,'container2'),(7894,121,0,621,'timberland-lace-ups-eu-40-grey'),(7895,132,0,621,'0'),(7896,133,0,621,'/3/5/356564545_1.jpg'),(7897,206,0,621,'Textile'),(7902,73,0,622,'Timberland Lace-ups-EU 40-blue'),(7903,84,0,622,'Timberland Lace-ups'),(7904,86,0,622,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(7905,87,0,622,'/3/2/32343434_1.jpg'),(7906,88,0,622,'/3/2/32343434_1.jpg'),(7907,89,0,622,'/3/2/32343434_1.jpg'),(7908,106,0,622,'container2'),(7909,121,0,622,'timberland-lace-ups-eu-40-blue'),(7910,132,0,622,'0'),(7911,133,0,622,'/3/2/32343434_1.jpg'),(7912,206,0,622,'Textile'),(7917,73,0,623,'Timberland Lace-ups-EU 40-red'),(7918,84,0,623,'Timberland Lace-ups'),(7919,86,0,623,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(7920,87,0,623,'/3/4/34222345543_1.jpg'),(7921,88,0,623,'/3/4/34222345543_1.jpg'),(7922,89,0,623,'/3/4/34222345543_1.jpg'),(7923,106,0,623,'container2'),(7924,121,0,623,'timberland-lace-ups-eu-40-red'),(7925,132,0,623,'0'),(7926,133,0,623,'/3/4/34222345543_1.jpg'),(7927,206,0,623,'Textile'),(7932,73,0,624,'Timberland Lace-ups-EU 42-white'),(7933,84,0,624,'Timberland Lace-ups'),(7934,86,0,624,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(7935,87,0,624,'/3/4/34534223322_2.jpg'),(7936,88,0,624,'/3/4/34534223322_2.jpg'),(7937,89,0,624,'/3/4/34534223322_2.jpg'),(7938,106,0,624,'container2'),(7939,121,0,624,'timberland-lace-ups-eu-42-white'),(7940,132,0,624,'0'),(7941,133,0,624,'/3/4/34534223322_2.jpg'),(7942,206,0,624,'Textile'),(7947,73,0,625,'Timberland Lace-ups-EU 42-black'),(7948,84,0,625,'Timberland Lace-ups'),(7949,86,0,625,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(7950,87,0,625,'/4/5/456456546_2.jpg'),(7951,88,0,625,'/4/5/456456546_2.jpg'),(7952,89,0,625,'/4/5/456456546_2.jpg'),(7953,106,0,625,'container2'),(7954,121,0,625,'timberland-lace-ups-eu-42-black'),(7955,132,0,625,'0'),(7956,133,0,625,'/4/5/456456546_2.jpg'),(7957,206,0,625,'Textile'),(7962,73,0,626,'Timberland Lace-ups-EU 42-grey'),(7963,84,0,626,'Timberland Lace-ups'),(7964,86,0,626,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(7965,87,0,626,'/3/5/356564545_2.jpg'),(7966,88,0,626,'/3/5/356564545_2.jpg'),(7967,89,0,626,'/3/5/356564545_2.jpg'),(7968,106,0,626,'container2'),(7969,121,0,626,'timberland-lace-ups-eu-42-grey'),(7970,132,0,626,'0'),(7971,133,0,626,'/3/5/356564545_2.jpg'),(7972,206,0,626,'Textile'),(7977,73,0,627,'Timberland Lace-ups-EU 42-blue'),(7978,84,0,627,'Timberland Lace-ups'),(7979,86,0,627,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(7980,87,0,627,'/3/2/32343434_2.jpg'),(7981,88,0,627,'/3/2/32343434_2.jpg'),(7982,89,0,627,'/3/2/32343434_2.jpg'),(7983,106,0,627,'container2'),(7984,121,0,627,'timberland-lace-ups-eu-42-blue'),(7985,132,0,627,'0'),(7986,133,0,627,'/3/2/32343434_2.jpg'),(7987,206,0,627,'Textile'),(7992,73,0,628,'Timberland Lace-ups-EU 42-red'),(7993,84,0,628,'Timberland Lace-ups'),(7994,86,0,628,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(7995,87,0,628,'/3/4/34222345543_2.jpg'),(7996,88,0,628,'/3/4/34222345543_2.jpg'),(7997,89,0,628,'/3/4/34222345543_2.jpg'),(7998,106,0,628,'container2'),(7999,121,0,628,'timberland-lace-ups-eu-42-red'),(8000,132,0,628,'0'),(8001,133,0,628,'/3/4/34222345543_2.jpg'),(8002,206,0,628,'Textile'),(8007,73,0,629,'Timberland Lace-ups-EU 43-white'),(8008,84,0,629,'Timberland Lace-ups'),(8009,86,0,629,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(8010,87,0,629,'/3/4/34534223322_3.jpg'),(8011,88,0,629,'/3/4/34534223322_3.jpg'),(8012,89,0,629,'/3/4/34534223322_3.jpg'),(8013,106,0,629,'container2'),(8014,121,0,629,'timberland-lace-ups-eu-43-white'),(8015,132,0,629,'0'),(8016,133,0,629,'/3/4/34534223322_3.jpg'),(8017,206,0,629,'Textile'),(8022,73,0,630,'Timberland Lace-ups-EU 43-black'),(8023,84,0,630,'Timberland Lace-ups'),(8024,86,0,630,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(8025,87,0,630,'/4/5/456456546_3.jpg'),(8026,88,0,630,'/4/5/456456546_3.jpg'),(8027,89,0,630,'/4/5/456456546_3.jpg'),(8028,106,0,630,'container2'),(8029,121,0,630,'timberland-lace-ups-eu-43-black'),(8030,132,0,630,'0'),(8031,133,0,630,'/4/5/456456546_3.jpg'),(8032,206,0,630,'Textile'),(8037,73,0,631,'Timberland Lace-ups-EU 43-grey'),(8038,84,0,631,'Timberland Lace-ups'),(8039,86,0,631,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(8040,87,0,631,'/3/5/356564545_3.jpg'),(8041,88,0,631,'/3/5/356564545_3.jpg'),(8042,89,0,631,'/3/5/356564545_3.jpg'),(8043,106,0,631,'container2'),(8044,121,0,631,'timberland-lace-ups-eu-43-grey'),(8045,132,0,631,'0'),(8046,133,0,631,'/3/5/356564545_3.jpg'),(8047,206,0,631,'Textile'),(8052,73,0,632,'Timberland Lace-ups-EU 43-blue'),(8053,84,0,632,'Timberland Lace-ups'),(8054,86,0,632,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(8055,87,0,632,'/3/2/32343434_3.jpg'),(8056,88,0,632,'/3/2/32343434_3.jpg'),(8057,89,0,632,'/3/2/32343434_3.jpg'),(8058,106,0,632,'container2'),(8059,121,0,632,'timberland-lace-ups-eu-43-blue'),(8060,132,0,632,'0'),(8061,133,0,632,'/3/2/32343434_3.jpg'),(8062,206,0,632,'Textile'),(8067,73,0,633,'Timberland Lace-ups-EU 43-red'),(8068,84,0,633,'Timberland Lace-ups'),(8069,86,0,633,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(8070,87,0,633,'/3/4/34222345543_3.jpg'),(8071,88,0,633,'/3/4/34222345543_3.jpg'),(8072,89,0,633,'/3/4/34222345543_3.jpg'),(8073,106,0,633,'container2'),(8074,121,0,633,'timberland-lace-ups-eu-43-red'),(8075,132,0,633,'0'),(8076,133,0,633,'/3/4/34222345543_3.jpg'),(8077,206,0,633,'Textile'),(8082,73,0,634,'Timberland Lace-ups-EU 44-white'),(8083,84,0,634,'Timberland Lace-ups'),(8084,86,0,634,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(8085,87,0,634,'/3/4/34534223322_4.jpg'),(8086,88,0,634,'/3/4/34534223322_4.jpg'),(8087,89,0,634,'/3/4/34534223322_4.jpg'),(8088,106,0,634,'container2'),(8089,121,0,634,'timberland-lace-ups-eu-44-white'),(8090,132,0,634,'0'),(8091,133,0,634,'/3/4/34534223322_4.jpg'),(8092,206,0,634,'Textile'),(8097,73,0,635,'Timberland Lace-ups-EU 44-black'),(8098,84,0,635,'Timberland Lace-ups'),(8099,86,0,635,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(8100,87,0,635,'/4/5/456456546_4.jpg'),(8101,88,0,635,'/4/5/456456546_4.jpg'),(8102,89,0,635,'/4/5/456456546_4.jpg'),(8103,106,0,635,'container2'),(8104,121,0,635,'timberland-lace-ups-eu-44-black'),(8105,132,0,635,'0'),(8106,133,0,635,'/4/5/456456546_4.jpg'),(8107,206,0,635,'Textile'),(8112,73,0,636,'Timberland Lace-ups-EU 44-grey'),(8113,84,0,636,'Timberland Lace-ups'),(8114,86,0,636,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(8115,87,0,636,'/3/5/356564545_4.jpg'),(8116,88,0,636,'/3/5/356564545_4.jpg'),(8117,89,0,636,'/3/5/356564545_4.jpg'),(8118,106,0,636,'container2'),(8119,121,0,636,'timberland-lace-ups-eu-44-grey'),(8120,132,0,636,'0'),(8121,133,0,636,'/3/5/356564545_4.jpg'),(8122,206,0,636,'Textile'),(8127,73,0,637,'Timberland Lace-ups-EU 44-blue'),(8128,84,0,637,'Timberland Lace-ups'),(8129,86,0,637,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(8130,87,0,637,'/3/2/32343434_4.jpg'),(8131,88,0,637,'/3/2/32343434_4.jpg'),(8132,89,0,637,'/3/2/32343434_4.jpg'),(8133,106,0,637,'container2'),(8134,121,0,637,'timberland-lace-ups-eu-44-blue'),(8135,132,0,637,'0'),(8136,133,0,637,'/3/2/32343434_4.jpg'),(8137,206,0,637,'Textile'),(8142,73,0,638,'Timberland Lace-ups-EU 44-red'),(8143,84,0,638,'Timberland Lace-ups'),(8144,86,0,638,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(8145,87,0,638,'/3/4/34222345543_4.jpg'),(8146,88,0,638,'/3/4/34222345543_4.jpg'),(8147,89,0,638,'/3/4/34222345543_4.jpg'),(8148,106,0,638,'container2'),(8149,121,0,638,'timberland-lace-ups-eu-44-red'),(8150,132,0,638,'0'),(8151,133,0,638,'/3/4/34222345543_4.jpg'),(8152,206,0,638,'Textile'),(8157,73,0,639,'Timberland Lace-ups-EU 45-white'),(8158,84,0,639,'Timberland Lace-ups'),(8159,86,0,639,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(8160,87,0,639,'/3/4/34534223322_5.jpg'),(8161,88,0,639,'/3/4/34534223322_5.jpg'),(8162,89,0,639,'/3/4/34534223322_5.jpg'),(8163,106,0,639,'container2'),(8164,121,0,639,'timberland-lace-ups-eu-45-white'),(8165,132,0,639,'0'),(8166,133,0,639,'/3/4/34534223322_5.jpg'),(8167,206,0,639,'Textile'),(8172,73,0,640,'Timberland Lace-ups-EU 45-black'),(8173,84,0,640,'Timberland Lace-ups'),(8174,86,0,640,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(8175,87,0,640,'/4/5/456456546_5.jpg'),(8176,88,0,640,'/4/5/456456546_5.jpg'),(8177,89,0,640,'/4/5/456456546_5.jpg'),(8178,106,0,640,'container2'),(8179,121,0,640,'timberland-lace-ups-eu-45-black'),(8180,132,0,640,'0'),(8181,133,0,640,'/4/5/456456546_5.jpg'),(8182,206,0,640,'Textile'),(8187,73,0,641,'Timberland Lace-ups-EU 45-grey'),(8188,84,0,641,'Timberland Lace-ups'),(8189,86,0,641,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(8190,87,0,641,'/3/5/356564545_5.jpg'),(8191,88,0,641,'/3/5/356564545_5.jpg'),(8192,89,0,641,'/3/5/356564545_5.jpg'),(8193,106,0,641,'container2'),(8194,121,0,641,'timberland-lace-ups-eu-45-grey'),(8195,132,0,641,'0'),(8196,133,0,641,'/3/5/356564545_5.jpg'),(8197,206,0,641,'Textile'),(8202,73,0,642,'Timberland Lace-ups-EU 45-blue'),(8203,84,0,642,'Timberland Lace-ups'),(8204,86,0,642,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(8205,87,0,642,'/3/2/32343434_5.jpg'),(8206,88,0,642,'/3/2/32343434_5.jpg'),(8207,89,0,642,'/3/2/32343434_5.jpg'),(8208,106,0,642,'container2'),(8209,121,0,642,'timberland-lace-ups-eu-45-blue'),(8210,132,0,642,'0'),(8211,133,0,642,'/3/2/32343434_5.jpg'),(8212,206,0,642,'Textile'),(8217,73,0,643,'Timberland Lace-ups-EU 45-red'),(8218,84,0,643,'Timberland Lace-ups'),(8219,86,0,643,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(8220,87,0,643,'/3/4/34222345543_5.jpg'),(8221,88,0,643,'/3/4/34222345543_5.jpg'),(8222,89,0,643,'/3/4/34222345543_5.jpg'),(8223,106,0,643,'container2'),(8224,121,0,643,'timberland-lace-ups-eu-45-red'),(8225,132,0,643,'0'),(8226,133,0,643,'/3/4/34222345543_5.jpg'),(8227,206,0,643,'Textile'),(8244,73,0,644,'Cat Lace-up Boots-brown-EU 36'),(8245,84,0,644,'Cat Lace-up Boots'),(8246,86,0,644,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8247,87,0,644,'/3/4/345345454.jpg'),(8248,88,0,644,'/3/4/345345454.jpg'),(8249,89,0,644,'/3/4/345345454.jpg'),(8250,106,0,644,'container2'),(8251,121,0,644,'cat-lace-up-boots-brown-eu-36'),(8252,132,0,644,'0'),(8253,133,0,644,'/3/4/345345454.jpg'),(8254,206,0,644,'leather'),(8259,73,0,645,'Cat Lace-up Boots-brown-EU 37'),(8260,84,0,645,'Cat Lace-up Boots'),(8261,86,0,645,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8262,87,0,645,'/3/4/345345454_1.jpg'),(8263,88,0,645,'/3/4/345345454_1.jpg'),(8264,89,0,645,'/3/4/345345454_1.jpg'),(8265,106,0,645,'container2'),(8266,121,0,645,'cat-lace-up-boots-brown-eu-37'),(8267,132,0,645,'0'),(8268,133,0,645,'/3/4/345345454_1.jpg'),(8269,206,0,645,'leather'),(8274,73,0,646,'Cat Lace-up Boots-brown-EU 38'),(8275,84,0,646,'Cat Lace-up Boots'),(8276,86,0,646,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8277,87,0,646,'/3/4/345345454_2.jpg'),(8278,88,0,646,'/3/4/345345454_2.jpg'),(8279,89,0,646,'/3/4/345345454_2.jpg'),(8280,106,0,646,'container2'),(8281,121,0,646,'cat-lace-up-boots-brown-eu-38'),(8282,132,0,646,'0'),(8283,133,0,646,'/3/4/345345454_2.jpg'),(8284,206,0,646,'leather'),(8289,73,0,647,'Cat Lace-up Boots-brown-EU 39'),(8290,84,0,647,'Cat Lace-up Boots'),(8291,86,0,647,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8292,87,0,647,'/3/4/345345454_3.jpg'),(8293,88,0,647,'/3/4/345345454_3.jpg'),(8294,89,0,647,'/3/4/345345454_3.jpg'),(8295,106,0,647,'container2'),(8296,121,0,647,'cat-lace-up-boots-brown-eu-39'),(8297,132,0,647,'0'),(8298,133,0,647,'/3/4/345345454_3.jpg'),(8299,206,0,647,'leather'),(8304,73,0,648,'Cat Lace-up Boots-brown-EU 40'),(8305,84,0,648,'Cat Lace-up Boots'),(8306,86,0,648,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8307,87,0,648,'/3/4/345345454_4.jpg'),(8308,88,0,648,'/3/4/345345454_4.jpg'),(8309,89,0,648,'/3/4/345345454_4.jpg'),(8310,106,0,648,'container2'),(8311,121,0,648,'cat-lace-up-boots-brown-eu-40'),(8312,132,0,648,'0'),(8313,133,0,648,'/3/4/345345454_4.jpg'),(8314,206,0,648,'leather'),(8319,73,0,649,'Cat Lace-up Boots-brown-EU 41'),(8320,84,0,649,'Cat Lace-up Boots'),(8321,86,0,649,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8322,87,0,649,'/3/4/345345454_5.jpg'),(8323,88,0,649,'/3/4/345345454_5.jpg'),(8324,89,0,649,'/3/4/345345454_5.jpg'),(8325,106,0,649,'container2'),(8326,121,0,649,'cat-lace-up-boots-brown-eu-41'),(8327,132,0,649,'0'),(8328,133,0,649,'/3/4/345345454_5.jpg'),(8329,206,0,649,'leather'),(8334,73,0,650,'Cat Lace-up Boots-white-EU 36'),(8335,84,0,650,'Cat Lace-up Boots'),(8336,86,0,650,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8337,87,0,650,'/4/5/45245345345.jpg'),(8338,88,0,650,'/4/5/45245345345.jpg'),(8339,89,0,650,'/4/5/45245345345.jpg'),(8340,106,0,650,'container2'),(8341,121,0,650,'cat-lace-up-boots-white-eu-36'),(8342,132,0,650,'0'),(8343,133,0,650,'/4/5/45245345345.jpg'),(8344,206,0,650,'leather'),(8349,73,0,651,'Cat Lace-up Boots-white-EU 37'),(8350,84,0,651,'Cat Lace-up Boots'),(8351,86,0,651,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8352,87,0,651,'/4/5/45245345345_1.jpg'),(8353,88,0,651,'/4/5/45245345345_1.jpg'),(8354,89,0,651,'/4/5/45245345345_1.jpg'),(8355,106,0,651,'container2'),(8356,121,0,651,'cat-lace-up-boots-white-eu-37'),(8357,132,0,651,'0'),(8358,133,0,651,'/4/5/45245345345_1.jpg'),(8359,206,0,651,'leather'),(8364,73,0,652,'Cat Lace-up Boots-white-EU 38'),(8365,84,0,652,'Cat Lace-up Boots'),(8366,86,0,652,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8367,87,0,652,'/4/5/45245345345_2.jpg'),(8368,88,0,652,'/4/5/45245345345_2.jpg'),(8369,89,0,652,'/4/5/45245345345_2.jpg'),(8370,106,0,652,'container2'),(8371,121,0,652,'cat-lace-up-boots-white-eu-38'),(8372,132,0,652,'0'),(8373,133,0,652,'/4/5/45245345345_2.jpg'),(8374,206,0,652,'leather'),(8379,73,0,653,'Cat Lace-up Boots-white-EU 39'),(8380,84,0,653,'Cat Lace-up Boots'),(8381,86,0,653,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8382,87,0,653,'/4/5/45245345345_3.jpg'),(8383,88,0,653,'/4/5/45245345345_3.jpg'),(8384,89,0,653,'/4/5/45245345345_3.jpg'),(8385,106,0,653,'container2'),(8386,121,0,653,'cat-lace-up-boots-white-eu-39'),(8387,132,0,653,'0'),(8388,133,0,653,'/4/5/45245345345_3.jpg'),(8389,206,0,653,'leather'),(8394,73,0,654,'Cat Lace-up Boots-white-EU 40'),(8395,84,0,654,'Cat Lace-up Boots'),(8396,86,0,654,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8397,87,0,654,'/4/5/45245345345_4.jpg'),(8398,88,0,654,'/4/5/45245345345_4.jpg'),(8399,89,0,654,'/4/5/45245345345_4.jpg'),(8400,106,0,654,'container2'),(8401,121,0,654,'cat-lace-up-boots-white-eu-40'),(8402,132,0,654,'0'),(8403,133,0,654,'/4/5/45245345345_4.jpg'),(8404,206,0,654,'leather'),(8409,73,0,655,'Cat Lace-up Boots-white-EU 41'),(8410,84,0,655,'Cat Lace-up Boots'),(8411,86,0,655,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8412,87,0,655,'/4/5/45245345345_5.jpg'),(8413,88,0,655,'/4/5/45245345345_5.jpg'),(8414,89,0,655,'/4/5/45245345345_5.jpg'),(8415,106,0,655,'container2'),(8416,121,0,655,'cat-lace-up-boots-white-eu-41'),(8417,132,0,655,'0'),(8418,133,0,655,'/4/5/45245345345_5.jpg'),(8419,206,0,655,'leather'),(8424,73,0,656,'Cat Lace-up Boots-black-EU 36'),(8425,84,0,656,'Cat Lace-up Boots'),(8426,86,0,656,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8427,87,0,656,'/2/3/2342232323.jpg'),(8428,88,0,656,'/2/3/2342232323.jpg'),(8429,89,0,656,'/2/3/2342232323.jpg'),(8430,106,0,656,'container2'),(8431,121,0,656,'cat-lace-up-boots-black-eu-36'),(8432,132,0,656,'0'),(8433,133,0,656,'/2/3/2342232323.jpg'),(8434,206,0,656,'leather'),(8439,73,0,657,'Cat Lace-up Boots-black-EU 37'),(8440,84,0,657,'Cat Lace-up Boots'),(8441,86,0,657,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8442,87,0,657,'/2/3/2342232323_1.jpg'),(8443,88,0,657,'/2/3/2342232323_1.jpg'),(8444,89,0,657,'/2/3/2342232323_1.jpg'),(8445,106,0,657,'container2'),(8446,121,0,657,'cat-lace-up-boots-black-eu-37'),(8447,132,0,657,'0'),(8448,133,0,657,'/2/3/2342232323_1.jpg'),(8449,206,0,657,'leather'),(8454,73,0,658,'Cat Lace-up Boots-black-EU 38'),(8455,84,0,658,'Cat Lace-up Boots'),(8456,86,0,658,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8457,87,0,658,'/2/3/2342232323_2.jpg'),(8458,88,0,658,'/2/3/2342232323_2.jpg'),(8459,89,0,658,'/2/3/2342232323_2.jpg'),(8460,106,0,658,'container2'),(8461,121,0,658,'cat-lace-up-boots-black-eu-38'),(8462,132,0,658,'0'),(8463,133,0,658,'/2/3/2342232323_2.jpg'),(8464,206,0,658,'leather'),(8469,73,0,659,'Cat Lace-up Boots-black-EU 39'),(8470,84,0,659,'Cat Lace-up Boots'),(8471,86,0,659,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8472,87,0,659,'/2/3/2342232323_3.jpg'),(8473,88,0,659,'/2/3/2342232323_3.jpg'),(8474,89,0,659,'/2/3/2342232323_3.jpg'),(8475,106,0,659,'container2'),(8476,121,0,659,'cat-lace-up-boots-black-eu-39'),(8477,132,0,659,'0'),(8478,133,0,659,'/2/3/2342232323_3.jpg'),(8479,206,0,659,'leather'),(8484,73,0,660,'Cat Lace-up Boots-black-EU 40'),(8485,84,0,660,'Cat Lace-up Boots'),(8486,86,0,660,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8487,87,0,660,'/2/3/2342232323_4.jpg'),(8488,88,0,660,'/2/3/2342232323_4.jpg'),(8489,89,0,660,'/2/3/2342232323_4.jpg'),(8490,106,0,660,'container2'),(8491,121,0,660,'cat-lace-up-boots-black-eu-40'),(8492,132,0,660,'0'),(8493,133,0,660,'/2/3/2342232323_4.jpg'),(8494,206,0,660,'leather'),(8499,73,0,661,'Cat Lace-up Boots-black-EU 41'),(8500,84,0,661,'Cat Lace-up Boots'),(8501,86,0,661,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8502,87,0,661,'/2/3/2342232323_5.jpg'),(8503,88,0,661,'/2/3/2342232323_5.jpg'),(8504,89,0,661,'/2/3/2342232323_5.jpg'),(8505,106,0,661,'container2'),(8506,121,0,661,'cat-lace-up-boots-black-eu-41'),(8507,132,0,661,'0'),(8508,133,0,661,'/2/3/2342232323_5.jpg'),(8509,206,0,661,'leather'),(8514,73,0,662,'Cat Lace-up Boots-blue-EU 36'),(8515,84,0,662,'Cat Lace-up Boots'),(8516,86,0,662,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8517,87,0,662,'/3/4/345345345.jpg'),(8518,88,0,662,'/3/4/345345345.jpg'),(8519,89,0,662,'/3/4/345345345.jpg'),(8520,106,0,662,'container2'),(8521,121,0,662,'cat-lace-up-boots-blue-eu-36'),(8522,132,0,662,'0'),(8523,133,0,662,'/3/4/345345345.jpg'),(8524,206,0,662,'leather'),(8529,73,0,663,'Cat Lace-up Boots-blue-EU 37'),(8530,84,0,663,'Cat Lace-up Boots'),(8531,86,0,663,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8532,87,0,663,'/3/4/345345345_1.jpg'),(8533,88,0,663,'/3/4/345345345_1.jpg'),(8534,89,0,663,'/3/4/345345345_1.jpg'),(8535,106,0,663,'container2'),(8536,121,0,663,'cat-lace-up-boots-blue-eu-37'),(8537,132,0,663,'0'),(8538,133,0,663,'/3/4/345345345_1.jpg'),(8539,206,0,663,'leather'),(8544,73,0,664,'Cat Lace-up Boots-blue-EU 38'),(8545,84,0,664,'Cat Lace-up Boots'),(8546,86,0,664,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8547,87,0,664,'/3/4/345345345_2.jpg'),(8548,88,0,664,'/3/4/345345345_2.jpg'),(8549,89,0,664,'/3/4/345345345_2.jpg'),(8550,106,0,664,'container2'),(8551,121,0,664,'cat-lace-up-boots-blue-eu-38'),(8552,132,0,664,'0'),(8553,133,0,664,'/3/4/345345345_2.jpg'),(8554,206,0,664,'leather'),(8559,73,0,665,'Cat Lace-up Boots-blue-EU 39'),(8560,84,0,665,'Cat Lace-up Boots'),(8561,86,0,665,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8562,87,0,665,'/3/4/345345345_3.jpg'),(8563,88,0,665,'/3/4/345345345_3.jpg'),(8564,89,0,665,'/3/4/345345345_3.jpg'),(8565,106,0,665,'container2'),(8566,121,0,665,'cat-lace-up-boots-blue-eu-39'),(8567,132,0,665,'0'),(8568,133,0,665,'/3/4/345345345_3.jpg'),(8569,206,0,665,'leather'),(8574,73,0,666,'Cat Lace-up Boots-blue-EU 40'),(8575,84,0,666,'Cat Lace-up Boots'),(8576,86,0,666,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8577,87,0,666,'/3/4/345345345_4.jpg'),(8578,88,0,666,'/3/4/345345345_4.jpg'),(8579,89,0,666,'/3/4/345345345_4.jpg'),(8580,106,0,666,'container2'),(8581,121,0,666,'cat-lace-up-boots-blue-eu-40'),(8582,132,0,666,'0'),(8583,133,0,666,'/3/4/345345345_4.jpg'),(8584,206,0,666,'leather'),(8589,73,0,667,'Cat Lace-up Boots-blue-EU 41'),(8590,84,0,667,'Cat Lace-up Boots'),(8591,86,0,667,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8592,87,0,667,'/3/4/345345345_5.jpg'),(8593,88,0,667,'/3/4/345345345_5.jpg'),(8594,89,0,667,'/3/4/345345345_5.jpg'),(8595,106,0,667,'container2'),(8596,121,0,667,'cat-lace-up-boots-blue-eu-41'),(8597,132,0,667,'0'),(8598,133,0,667,'/3/4/345345345_5.jpg'),(8599,206,0,667,'leather'),(8604,73,0,668,'Cat Lace-up Boots-red-EU 36'),(8605,84,0,668,'Cat Lace-up Boots'),(8606,86,0,668,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8607,87,0,668,'/3/4/34343434.jpg'),(8608,88,0,668,'/3/4/34343434.jpg'),(8609,89,0,668,'/3/4/34343434.jpg'),(8610,106,0,668,'container2'),(8611,121,0,668,'cat-lace-up-boots-red-eu-36'),(8612,132,0,668,'0'),(8613,133,0,668,'/3/4/34343434.jpg'),(8614,206,0,668,'leather'),(8619,73,0,669,'Cat Lace-up Boots-red-EU 37'),(8620,84,0,669,'Cat Lace-up Boots'),(8621,86,0,669,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8622,87,0,669,'/3/4/34343434_1.jpg'),(8623,88,0,669,'/3/4/34343434_1.jpg'),(8624,89,0,669,'/3/4/34343434_1.jpg'),(8625,106,0,669,'container2'),(8626,121,0,669,'cat-lace-up-boots-red-eu-37'),(8627,132,0,669,'0'),(8628,133,0,669,'/3/4/34343434_1.jpg'),(8629,206,0,669,'leather'),(8634,73,0,670,'Cat Lace-up Boots-red-EU 38'),(8635,84,0,670,'Cat Lace-up Boots'),(8636,86,0,670,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8637,87,0,670,'/3/4/34343434_2.jpg'),(8638,88,0,670,'/3/4/34343434_2.jpg'),(8639,89,0,670,'/3/4/34343434_2.jpg'),(8640,106,0,670,'container2'),(8641,121,0,670,'cat-lace-up-boots-red-eu-38'),(8642,132,0,670,'0'),(8643,133,0,670,'/3/4/34343434_2.jpg'),(8644,206,0,670,'leather'),(8649,73,0,671,'Cat Lace-up Boots-red-EU 39'),(8650,84,0,671,'Cat Lace-up Boots'),(8651,86,0,671,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8652,87,0,671,'/3/4/34343434_3.jpg'),(8653,88,0,671,'/3/4/34343434_3.jpg'),(8654,89,0,671,'/3/4/34343434_3.jpg'),(8655,106,0,671,'container2'),(8656,121,0,671,'cat-lace-up-boots-red-eu-39'),(8657,132,0,671,'0'),(8658,133,0,671,'/3/4/34343434_3.jpg'),(8659,206,0,671,'leather'),(8664,73,0,672,'Cat Lace-up Boots-red-EU 40'),(8665,84,0,672,'Cat Lace-up Boots'),(8666,86,0,672,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8667,87,0,672,'/3/4/34343434_4.jpg'),(8668,88,0,672,'/3/4/34343434_4.jpg'),(8669,89,0,672,'/3/4/34343434_4.jpg'),(8670,106,0,672,'container2'),(8671,121,0,672,'cat-lace-up-boots-red-eu-40'),(8672,132,0,672,'0'),(8673,133,0,672,'/3/4/34343434_4.jpg'),(8674,206,0,672,'leather'),(8679,73,0,673,'Cat Lace-up Boots-red-EU 41'),(8680,84,0,673,'Cat Lace-up Boots'),(8681,86,0,673,'Cat Lace-up Boots Durable and light half boots made out of nubuck leather by Caterpillar brandExtras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(8682,87,0,673,'/3/4/34343434_5.jpg'),(8683,88,0,673,'/3/4/34343434_5.jpg'),(8684,89,0,673,'/3/4/34343434_5.jpg'),(8685,106,0,673,'container2'),(8686,121,0,673,'cat-lace-up-boots-red-eu-41'),(8687,132,0,673,'0'),(8688,133,0,673,'/3/4/34343434_5.jpg'),(8689,206,0,673,'leather'),(8702,73,0,674,'Half Boots-EU 39-brown'),(8703,84,0,674,'Boxfresh'),(8704,86,0,674,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8705,87,0,674,'/5/6/564545656.jpg'),(8706,88,0,674,'/5/6/564545656.jpg'),(8707,89,0,674,'/5/6/564545656.jpg'),(8708,106,0,674,'container2'),(8709,121,0,674,'half-boots-eu-39-brown'),(8710,132,0,674,'0'),(8711,133,0,674,'/5/6/564545656.jpg'),(8712,206,0,674,'leather'),(8717,73,0,675,'Half Boots-EU 39-white'),(8718,84,0,675,'Boxfresh'),(8719,86,0,675,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8720,87,0,675,'/7/8/7889897867.jpg'),(8721,88,0,675,'/7/8/7889897867.jpg'),(8722,89,0,675,'/7/8/7889897867.jpg'),(8723,106,0,675,'container2'),(8724,121,0,675,'half-boots-eu-39-white'),(8725,132,0,675,'0'),(8726,133,0,675,'/7/8/7889897867.jpg'),(8727,206,0,675,'leather'),(8732,73,0,676,'Half Boots-EU 39-black'),(8733,84,0,676,'Boxfresh'),(8734,86,0,676,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8735,87,0,676,'/7/8/78877878.jpg'),(8736,88,0,676,'/7/8/78877878.jpg'),(8737,89,0,676,'/7/8/78877878.jpg'),(8738,106,0,676,'container2'),(8739,121,0,676,'half-boots-eu-39-black'),(8740,132,0,676,'0'),(8741,133,0,676,'/7/8/78877878.jpg'),(8742,206,0,676,'leather'),(8747,73,0,677,'Half Boots-EU 39-grey'),(8748,84,0,677,'Boxfresh'),(8749,86,0,677,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8750,87,0,677,'/5/6/5634134245.jpg'),(8751,88,0,677,'/5/6/5634134245.jpg'),(8752,89,0,677,'/5/6/5634134245.jpg'),(8753,106,0,677,'container2'),(8754,121,0,677,'half-boots-eu-39-grey'),(8755,132,0,677,'0'),(8756,133,0,677,'/5/6/5634134245.jpg'),(8757,206,0,677,'leather'),(8762,73,0,678,'Half Boots-EU 39-red'),(8763,84,0,678,'Boxfresh'),(8764,86,0,678,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8765,87,0,678,'/6/7/6788999.jpg'),(8766,88,0,678,'/6/7/6788999.jpg'),(8767,89,0,678,'/6/7/6788999.jpg'),(8768,106,0,678,'container2'),(8769,121,0,678,'half-boots-eu-39-red'),(8770,132,0,678,'0'),(8771,133,0,678,'/6/7/6788999.jpg'),(8772,206,0,678,'leather'),(8777,73,0,679,'Half Boots-EU 40-brown'),(8778,84,0,679,'Boxfresh'),(8779,86,0,679,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8780,87,0,679,'/5/6/564545656_1.jpg'),(8781,88,0,679,'/5/6/564545656_1.jpg'),(8782,89,0,679,'/5/6/564545656_1.jpg'),(8783,106,0,679,'container2'),(8784,121,0,679,'half-boots-eu-40-brown'),(8785,132,0,679,'0'),(8786,133,0,679,'/5/6/564545656_1.jpg'),(8787,206,0,679,'leather'),(8792,73,0,680,'Half Boots-EU 40-white'),(8793,84,0,680,'Boxfresh'),(8794,86,0,680,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8795,87,0,680,'/7/8/7889897867_1.jpg'),(8796,88,0,680,'/7/8/7889897867_1.jpg'),(8797,89,0,680,'/7/8/7889897867_1.jpg'),(8798,106,0,680,'container2'),(8799,121,0,680,'half-boots-eu-40-white'),(8800,132,0,680,'0'),(8801,133,0,680,'/7/8/7889897867_1.jpg'),(8802,206,0,680,'leather'),(8807,73,0,681,'Half Boots-EU 40-black'),(8808,84,0,681,'Boxfresh'),(8809,86,0,681,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8810,87,0,681,'/7/8/78877878_1.jpg'),(8811,88,0,681,'/7/8/78877878_1.jpg'),(8812,89,0,681,'/7/8/78877878_1.jpg'),(8813,106,0,681,'container2'),(8814,121,0,681,'half-boots-eu-40-black'),(8815,132,0,681,'0'),(8816,133,0,681,'/7/8/78877878_1.jpg'),(8817,206,0,681,'leather'),(8822,73,0,682,'Half Boots-EU 40-grey'),(8823,84,0,682,'Boxfresh'),(8824,86,0,682,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8825,87,0,682,'/5/6/5634134245_1.jpg'),(8826,88,0,682,'/5/6/5634134245_1.jpg'),(8827,89,0,682,'/5/6/5634134245_1.jpg'),(8828,106,0,682,'container2'),(8829,121,0,682,'half-boots-eu-40-grey'),(8830,132,0,682,'0'),(8831,133,0,682,'/5/6/5634134245_1.jpg'),(8832,206,0,682,'leather'),(8837,73,0,683,'Half Boots-EU 40-red'),(8838,84,0,683,'Boxfresh'),(8839,86,0,683,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8840,87,0,683,'/6/7/6788999_1.jpg'),(8841,88,0,683,'/6/7/6788999_1.jpg'),(8842,89,0,683,'/6/7/6788999_1.jpg'),(8843,106,0,683,'container2'),(8844,121,0,683,'half-boots-eu-40-red'),(8845,132,0,683,'0'),(8846,133,0,683,'/6/7/6788999_1.jpg'),(8847,206,0,683,'leather'),(8852,73,0,684,'Half Boots-EU 41-brown'),(8853,84,0,684,'Boxfresh'),(8854,86,0,684,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8855,87,0,684,'/5/6/564545656_2.jpg'),(8856,88,0,684,'/5/6/564545656_2.jpg'),(8857,89,0,684,'/5/6/564545656_2.jpg'),(8858,106,0,684,'container2'),(8859,121,0,684,'half-boots-eu-41-brown'),(8860,132,0,684,'0'),(8861,133,0,684,'/5/6/564545656_2.jpg'),(8862,206,0,684,'leather'),(8867,73,0,685,'Half Boots-EU 41-white'),(8868,84,0,685,'Boxfresh'),(8869,86,0,685,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8870,87,0,685,'/7/8/7889897867_2.jpg'),(8871,88,0,685,'/7/8/7889897867_2.jpg'),(8872,89,0,685,'/7/8/7889897867_2.jpg'),(8873,106,0,685,'container2'),(8874,121,0,685,'half-boots-eu-41-white'),(8875,132,0,685,'0'),(8876,133,0,685,'/7/8/7889897867_2.jpg'),(8877,206,0,685,'leather'),(8882,73,0,686,'Half Boots-EU 41-black'),(8883,84,0,686,'Boxfresh'),(8884,86,0,686,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8885,87,0,686,'/7/8/78877878_2.jpg'),(8886,88,0,686,'/7/8/78877878_2.jpg'),(8887,89,0,686,'/7/8/78877878_2.jpg'),(8888,106,0,686,'container2'),(8889,121,0,686,'half-boots-eu-41-black'),(8890,132,0,686,'0'),(8891,133,0,686,'/7/8/78877878_2.jpg'),(8892,206,0,686,'leather'),(8897,73,0,687,'Half Boots-EU 41-grey'),(8898,84,0,687,'Boxfresh'),(8899,86,0,687,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8900,87,0,687,'/5/6/5634134245_2.jpg'),(8901,88,0,687,'/5/6/5634134245_2.jpg'),(8902,89,0,687,'/5/6/5634134245_2.jpg'),(8903,106,0,687,'container2'),(8904,121,0,687,'half-boots-eu-41-grey'),(8905,132,0,687,'0'),(8906,133,0,687,'/5/6/5634134245_2.jpg'),(8907,206,0,687,'leather'),(8912,73,0,688,'Half Boots-EU 41-red'),(8913,84,0,688,'Boxfresh'),(8914,86,0,688,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8915,87,0,688,'/6/7/6788999_2.jpg'),(8916,88,0,688,'/6/7/6788999_2.jpg'),(8917,89,0,688,'/6/7/6788999_2.jpg'),(8918,106,0,688,'container2'),(8919,121,0,688,'half-boots-eu-41-red'),(8920,132,0,688,'0'),(8921,133,0,688,'/6/7/6788999_2.jpg'),(8922,206,0,688,'leather'),(8927,73,0,689,'Half Boots-EU 42-brown'),(8928,84,0,689,'Boxfresh'),(8929,86,0,689,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8930,87,0,689,'/5/6/564545656_3.jpg'),(8931,88,0,689,'/5/6/564545656_3.jpg'),(8932,89,0,689,'/5/6/564545656_3.jpg'),(8933,106,0,689,'container2'),(8934,121,0,689,'half-boots-eu-42-brown'),(8935,132,0,689,'0'),(8936,133,0,689,'/5/6/564545656_3.jpg'),(8937,206,0,689,'leather'),(8942,73,0,690,'Half Boots-EU 42-white'),(8943,84,0,690,'Boxfresh'),(8944,86,0,690,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8945,87,0,690,'/7/8/7889897867_3.jpg'),(8946,88,0,690,'/7/8/7889897867_3.jpg'),(8947,89,0,690,'/7/8/7889897867_3.jpg'),(8948,106,0,690,'container2'),(8949,121,0,690,'half-boots-eu-42-white'),(8950,132,0,690,'0'),(8951,133,0,690,'/7/8/7889897867_3.jpg'),(8952,206,0,690,'leather'),(8957,73,0,691,'Half Boots-EU 42-black'),(8958,84,0,691,'Boxfresh'),(8959,86,0,691,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8960,87,0,691,'/7/8/78877878_3.jpg'),(8961,88,0,691,'/7/8/78877878_3.jpg'),(8962,89,0,691,'/7/8/78877878_3.jpg'),(8963,106,0,691,'container2'),(8964,121,0,691,'half-boots-eu-42-black'),(8965,132,0,691,'0'),(8966,133,0,691,'/7/8/78877878_3.jpg'),(8967,206,0,691,'leather'),(8972,73,0,692,'Half Boots-EU 42-grey'),(8973,84,0,692,'Boxfresh'),(8974,86,0,692,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8975,87,0,692,'/5/6/5634134245_3.jpg'),(8976,88,0,692,'/5/6/5634134245_3.jpg'),(8977,89,0,692,'/5/6/5634134245_3.jpg'),(8978,106,0,692,'container2'),(8979,121,0,692,'half-boots-eu-42-grey'),(8980,132,0,692,'0'),(8981,133,0,692,'/5/6/5634134245_3.jpg'),(8982,206,0,692,'leather'),(8987,73,0,693,'Half Boots-EU 42-red'),(8988,84,0,693,'Boxfresh'),(8989,86,0,693,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(8990,87,0,693,'/6/7/6788999_3.jpg'),(8991,88,0,693,'/6/7/6788999_3.jpg'),(8992,89,0,693,'/6/7/6788999_3.jpg'),(8993,106,0,693,'container2'),(8994,121,0,693,'half-boots-eu-42-red'),(8995,132,0,693,'0'),(8996,133,0,693,'/6/7/6788999_3.jpg'),(8997,206,0,693,'leather'),(9002,73,0,694,'Half Boots-EU 43-brown'),(9003,84,0,694,'Boxfresh'),(9004,86,0,694,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(9005,87,0,694,'/5/6/564545656_4.jpg'),(9006,88,0,694,'/5/6/564545656_4.jpg'),(9007,89,0,694,'/5/6/564545656_4.jpg'),(9008,106,0,694,'container2'),(9009,121,0,694,'half-boots-eu-43-brown'),(9010,132,0,694,'0'),(9011,133,0,694,'/5/6/564545656_4.jpg'),(9012,206,0,694,'leather'),(9017,73,0,695,'Half Boots-EU 43-white'),(9018,84,0,695,'Boxfresh'),(9019,86,0,695,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(9020,87,0,695,'/7/8/7889897867_4.jpg'),(9021,88,0,695,'/7/8/7889897867_4.jpg'),(9022,89,0,695,'/7/8/7889897867_4.jpg'),(9023,106,0,695,'container2'),(9024,121,0,695,'half-boots-eu-43-white'),(9025,132,0,695,'0'),(9026,133,0,695,'/7/8/7889897867_4.jpg'),(9027,206,0,695,'leather'),(9032,73,0,696,'Half Boots-EU 43-black'),(9033,84,0,696,'Boxfresh'),(9034,86,0,696,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(9035,87,0,696,'/7/8/78877878_4.jpg'),(9036,88,0,696,'/7/8/78877878_4.jpg'),(9037,89,0,696,'/7/8/78877878_4.jpg'),(9038,106,0,696,'container2'),(9039,121,0,696,'half-boots-eu-43-black'),(9040,132,0,696,'0'),(9041,133,0,696,'/7/8/78877878_4.jpg'),(9042,206,0,696,'leather'),(9047,73,0,697,'Half Boots-EU 43-grey'),(9048,84,0,697,'Boxfresh'),(9049,86,0,697,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(9050,87,0,697,'/5/6/5634134245_4.jpg'),(9051,88,0,697,'/5/6/5634134245_4.jpg'),(9052,89,0,697,'/5/6/5634134245_4.jpg'),(9053,106,0,697,'container2'),(9054,121,0,697,'half-boots-eu-43-grey'),(9055,132,0,697,'0'),(9056,133,0,697,'/5/6/5634134245_4.jpg'),(9057,206,0,697,'leather'),(9062,73,0,698,'Half Boots-EU 43-red'),(9063,84,0,698,'Boxfresh'),(9064,86,0,698,'Boxfresh Low sole half boots made of soft dark blue lether by Boxfresh.Extras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(9065,87,0,698,'/6/7/6788999_4.jpg'),(9066,88,0,698,'/6/7/6788999_4.jpg'),(9067,89,0,698,'/6/7/6788999_4.jpg'),(9068,106,0,698,'container2'),(9069,121,0,698,'half-boots-eu-43-red'),(9070,132,0,698,'0'),(9071,133,0,698,'/6/7/6788999_4.jpg'),(9072,206,0,698,'leather'),(9073,73,0,699,'J.B by Jean Biani Sneakers-EU 40-brown'),(9074,84,0,699,'J.B by Jean Biani Sneakers'),(9075,86,0,699,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(9076,87,0,699,'/3/4/344232434.jpg'),(9077,88,0,699,'/3/4/344232434.jpg'),(9078,89,0,699,'/3/4/344232434.jpg'),(9079,106,0,699,'container2'),(9080,121,0,699,'j-b-by-jean-biani-sneakers-eu-40-brown'),(9081,132,0,699,'0'),(9082,133,0,699,'/3/4/344232434.jpg'),(9083,206,0,699,'textile, synthetic'),(9088,73,0,700,'J.B by Jean Biani Sneakers-EU 40-white'),(9089,84,0,700,'J.B by Jean Biani Sneakers'),(9090,86,0,700,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(9091,87,0,700,'/4/7/472465656.jpg'),(9092,88,0,700,'/4/7/472465656.jpg'),(9093,89,0,700,'/4/7/472465656.jpg'),(9094,106,0,700,'container2'),(9095,121,0,700,'j-b-by-jean-biani-sneakers-eu-40-white'),(9096,132,0,700,'0'),(9097,133,0,700,'/4/7/472465656.jpg'),(9098,206,0,700,'textile, synthetic'),(9103,73,0,701,'J.B by Jean Biani Sneakers-EU 40-grey'),(9104,84,0,701,'J.B by Jean Biani Sneakers'),(9105,86,0,701,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(9106,87,0,701,'/3/4/34r24234342.jpg'),(9107,88,0,701,'/3/4/34r24234342.jpg'),(9108,89,0,701,'/3/4/34r24234342.jpg'),(9109,106,0,701,'container2'),(9110,121,0,701,'j-b-by-jean-biani-sneakers-eu-40-grey'),(9111,132,0,701,'0'),(9112,133,0,701,'/3/4/34r24234342.jpg'),(9113,206,0,701,'textile, synthetic'),(9118,73,0,702,'J.B by Jean Biani Sneakers-EU 40-blue'),(9119,84,0,702,'J.B by Jean Biani Sneakers'),(9120,86,0,702,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(9121,87,0,702,'/i/m/image_31083710_31_620x757_0.jpg'),(9122,88,0,702,'/i/m/image_31083710_31_620x757_0.jpg'),(9123,89,0,702,'/i/m/image_31083710_31_620x757_0.jpg'),(9124,106,0,702,'container2'),(9125,121,0,702,'j-b-by-jean-biani-sneakers-eu-40-blue'),(9126,132,0,702,'0'),(9127,133,0,702,'/i/m/image_31083710_31_620x757_0.jpg'),(9128,206,0,702,'textile, synthetic'),(9133,73,0,703,'J.B by Jean Biani Sneakers-EU 40-red'),(9134,84,0,703,'J.B by Jean Biani Sneakers'),(9135,86,0,703,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(9136,87,0,703,'/3/5/356666.jpg'),(9137,88,0,703,'/3/5/356666.jpg'),(9138,89,0,703,'/3/5/356666.jpg'),(9139,106,0,703,'container2'),(9140,121,0,703,'j-b-by-jean-biani-sneakers-eu-40-red'),(9141,132,0,703,'0'),(9142,133,0,703,'/3/5/356666.jpg'),(9143,206,0,703,'textile, synthetic'),(9148,73,0,704,'J.B by Jean Biani Sneakers-EU 41-brown'),(9149,84,0,704,'J.B by Jean Biani Sneakers'),(9150,86,0,704,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(9151,87,0,704,'/3/4/344232434_1.jpg'),(9152,88,0,704,'/3/4/344232434_1.jpg'),(9153,89,0,704,'/3/4/344232434_1.jpg'),(9154,106,0,704,'container2'),(9155,121,0,704,'j-b-by-jean-biani-sneakers-eu-41-brown'),(9156,132,0,704,'0'),(9157,133,0,704,'/3/4/344232434_1.jpg'),(9158,206,0,704,'textile, synthetic'),(9163,73,0,705,'J.B by Jean Biani Sneakers-EU 41-white'),(9164,84,0,705,'J.B by Jean Biani Sneakers'),(9165,86,0,705,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(9166,87,0,705,'/4/7/472465656_1.jpg'),(9167,88,0,705,'/4/7/472465656_1.jpg'),(9168,89,0,705,'/4/7/472465656_1.jpg'),(9169,106,0,705,'container2'),(9170,121,0,705,'j-b-by-jean-biani-sneakers-eu-41-white'),(9171,132,0,705,'0'),(9172,133,0,705,'/4/7/472465656_1.jpg'),(9173,206,0,705,'textile, synthetic'),(9178,73,0,706,'J.B by Jean Biani Sneakers-EU 41-grey'),(9179,84,0,706,'J.B by Jean Biani Sneakers'),(9180,86,0,706,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(9181,87,0,706,'/3/4/34r24234342_1.jpg'),(9182,88,0,706,'/3/4/34r24234342_1.jpg'),(9183,89,0,706,'/3/4/34r24234342_1.jpg'),(9184,106,0,706,'container2'),(9185,121,0,706,'j-b-by-jean-biani-sneakers-eu-41-grey'),(9186,132,0,706,'0'),(9187,133,0,706,'/3/4/34r24234342_1.jpg'),(9188,206,0,706,'textile, synthetic'),(9193,73,0,707,'J.B by Jean Biani Sneakers-EU 41-blue'),(9194,84,0,707,'J.B by Jean Biani Sneakers'),(9195,86,0,707,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(9196,87,0,707,'/i/m/image_31083710_31_620x757_0_1.jpg'),(9197,88,0,707,'/i/m/image_31083710_31_620x757_0_1.jpg'),(9198,89,0,707,'/i/m/image_31083710_31_620x757_0_1.jpg'),(9199,106,0,707,'container2'),(9200,121,0,707,'j-b-by-jean-biani-sneakers-eu-41-blue'),(9201,132,0,707,'0'),(9202,133,0,707,'/i/m/image_31083710_31_620x757_0_1.jpg'),(9203,206,0,707,'textile, synthetic'),(9208,73,0,708,'J.B by Jean Biani Sneakers-EU 41-red'),(9209,84,0,708,'J.B by Jean Biani Sneakers'),(9210,86,0,708,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(9211,87,0,708,'/3/5/356666_1.jpg'),(9212,88,0,708,'/3/5/356666_1.jpg'),(9213,89,0,708,'/3/5/356666_1.jpg'),(9214,106,0,708,'container2'),(9215,121,0,708,'j-b-by-jean-biani-sneakers-eu-41-red'),(9216,132,0,708,'0'),(9217,133,0,708,'/3/5/356666_1.jpg'),(9218,206,0,708,'textile, synthetic'),(9223,73,0,709,'J.B by Jean Biani Sneakers-EU 42-brown'),(9224,84,0,709,'J.B by Jean Biani Sneakers'),(9225,86,0,709,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(9226,87,0,709,'/3/4/344232434_2.jpg'),(9227,88,0,709,'/3/4/344232434_2.jpg'),(9228,89,0,709,'/3/4/344232434_2.jpg'),(9229,106,0,709,'container2'),(9230,121,0,709,'j-b-by-jean-biani-sneakers-eu-42-brown'),(9231,132,0,709,'0'),(9232,133,0,709,'/3/4/344232434_2.jpg'),(9233,206,0,709,'textile, synthetic'),(9238,73,0,710,'J.B by Jean Biani Sneakers-EU 42-white'),(9239,84,0,710,'J.B by Jean Biani Sneakers'),(9240,86,0,710,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(9241,87,0,710,'/4/7/472465656_2.jpg'),(9242,88,0,710,'/4/7/472465656_2.jpg'),(9243,89,0,710,'/4/7/472465656_2.jpg'),(9244,106,0,710,'container2'),(9245,121,0,710,'j-b-by-jean-biani-sneakers-eu-42-white'),(9246,132,0,710,'0'),(9247,133,0,710,'/4/7/472465656_2.jpg'),(9248,206,0,710,'textile, synthetic'),(9253,73,0,711,'J.B by Jean Biani Sneakers-EU 42-grey'),(9254,84,0,711,'J.B by Jean Biani Sneakers'),(9255,86,0,711,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(9256,87,0,711,'/3/4/34r24234342_2.jpg'),(9257,88,0,711,'/3/4/34r24234342_2.jpg'),(9258,89,0,711,'/3/4/34r24234342_2.jpg'),(9259,106,0,711,'container2'),(9260,121,0,711,'j-b-by-jean-biani-sneakers-eu-42-grey'),(9261,132,0,711,'0'),(9262,133,0,711,'/3/4/34r24234342_2.jpg'),(9263,206,0,711,'textile, synthetic'),(9268,73,0,712,'J.B by Jean Biani Sneakers-EU 42-blue'),(9269,84,0,712,'J.B by Jean Biani Sneakers'),(9270,86,0,712,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(9271,87,0,712,'/i/m/image_31083710_31_620x757_0_2.jpg'),(9272,88,0,712,'/i/m/image_31083710_31_620x757_0_2.jpg'),(9273,89,0,712,'/i/m/image_31083710_31_620x757_0_2.jpg'),(9274,106,0,712,'container2'),(9275,121,0,712,'j-b-by-jean-biani-sneakers-eu-42-blue'),(9276,132,0,712,'0'),(9277,133,0,712,'/i/m/image_31083710_31_620x757_0_2.jpg'),(9278,206,0,712,'textile, synthetic'),(9283,73,0,713,'J.B by Jean Biani Sneakers-EU 42-red'),(9284,84,0,713,'J.B by Jean Biani Sneakers'),(9285,86,0,713,'J.B by Jean Biani Sneakers Dark blue leather low top sneakers by Jean Biani.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(9286,87,0,713,'/3/5/356666_2.jpg'),(9287,88,0,713,'/3/5/356666_2.jpg'),(9288,89,0,713,'/3/5/356666_2.jpg'),(9289,106,0,713,'container2'),(9290,121,0,713,'j-b-by-jean-biani-sneakers-eu-42-red'),(9291,132,0,713,'0'),(9292,133,0,713,'/3/5/356666_2.jpg'),(9293,206,0,713,'textile, synthetic'),(9302,73,0,714,'Grey Sweat Pants-brown-Extra small size'),(9303,84,0,714,'Grey Sweat Pants'),(9304,86,0,714,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9305,87,0,714,'/4/f/4f4f43.jpg'),(9306,88,0,714,'/4/f/4f4f43.jpg'),(9307,89,0,714,'/4/f/4f4f43.jpg'),(9308,106,0,714,'container2'),(9309,121,0,714,'grey-sweat-pants-brown-extra-small-size'),(9310,132,0,714,'0'),(9311,133,0,714,'/4/f/4f4f43.jpg'),(9312,206,0,714,'80% cotton, 17% polyester, 3% elastane'),(9317,73,0,715,'Grey Sweat Pants-brown-Small size'),(9318,84,0,715,'Grey Sweat Pants'),(9319,86,0,715,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9320,87,0,715,'/4/f/4f4f43_1.jpg'),(9321,88,0,715,'/4/f/4f4f43_1.jpg'),(9322,89,0,715,'/4/f/4f4f43_1.jpg'),(9323,106,0,715,'container2'),(9324,121,0,715,'grey-sweat-pants-brown-small-size'),(9325,132,0,715,'0'),(9326,133,0,715,'/4/f/4f4f43_1.jpg'),(9327,206,0,715,'80% cotton, 17% polyester, 3% elastane'),(9332,73,0,716,'Grey Sweat Pants-brown-Medium size'),(9333,84,0,716,'Grey Sweat Pants'),(9334,86,0,716,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9335,87,0,716,'/4/f/4f4f43_2.jpg'),(9336,88,0,716,'/4/f/4f4f43_2.jpg'),(9337,89,0,716,'/4/f/4f4f43_2.jpg'),(9338,106,0,716,'container2'),(9339,121,0,716,'grey-sweat-pants-brown-medium-size'),(9340,132,0,716,'0'),(9341,133,0,716,'/4/f/4f4f43_2.jpg'),(9342,206,0,716,'80% cotton, 17% polyester, 3% elastane'),(9347,73,0,717,'Grey Sweat Pants-brown-Large size'),(9348,84,0,717,'Grey Sweat Pants'),(9349,86,0,717,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9350,87,0,717,'/4/f/4f4f43_3.jpg'),(9351,88,0,717,'/4/f/4f4f43_3.jpg'),(9352,89,0,717,'/4/f/4f4f43_3.jpg'),(9353,106,0,717,'container2'),(9354,121,0,717,'grey-sweat-pants-brown-large-size'),(9355,132,0,717,'0'),(9356,133,0,717,'/4/f/4f4f43_3.jpg'),(9357,206,0,717,'80% cotton, 17% polyester, 3% elastane'),(9362,73,0,718,'Grey Sweat Pants-white-Extra small size'),(9363,84,0,718,'Grey Sweat Pants'),(9364,86,0,718,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9365,87,0,718,'/3/f/3f333.jpg'),(9366,88,0,718,'/3/f/3f333.jpg'),(9367,89,0,718,'/3/f/3f333.jpg'),(9368,106,0,718,'container2'),(9369,121,0,718,'grey-sweat-pants-white-extra-small-size'),(9370,132,0,718,'0'),(9371,133,0,718,'/3/f/3f333.jpg'),(9372,206,0,718,'80% cotton, 17% polyester, 3% elastane'),(9377,73,0,719,'Grey Sweat Pants-white-Small size'),(9378,84,0,719,'Grey Sweat Pants'),(9379,86,0,719,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9380,87,0,719,'/3/f/3f333_1.jpg'),(9381,88,0,719,'/3/f/3f333_1.jpg'),(9382,89,0,719,'/3/f/3f333_1.jpg'),(9383,106,0,719,'container2'),(9384,121,0,719,'grey-sweat-pants-white-small-size'),(9385,132,0,719,'0'),(9386,133,0,719,'/3/f/3f333_1.jpg'),(9387,206,0,719,'80% cotton, 17% polyester, 3% elastane'),(9392,73,0,720,'Grey Sweat Pants-white-Medium size'),(9393,84,0,720,'Grey Sweat Pants'),(9394,86,0,720,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9395,87,0,720,'/3/f/3f333_2.jpg'),(9396,88,0,720,'/3/f/3f333_2.jpg'),(9397,89,0,720,'/3/f/3f333_2.jpg'),(9398,106,0,720,'container2'),(9399,121,0,720,'grey-sweat-pants-white-medium-size'),(9400,132,0,720,'0'),(9401,133,0,720,'/3/f/3f333_2.jpg'),(9402,206,0,720,'80% cotton, 17% polyester, 3% elastane'),(9407,73,0,721,'Grey Sweat Pants-white-Large size'),(9408,84,0,721,'Grey Sweat Pants'),(9409,86,0,721,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9410,87,0,721,'/3/f/3f333_3.jpg'),(9411,88,0,721,'/3/f/3f333_3.jpg'),(9412,89,0,721,'/3/f/3f333_3.jpg'),(9413,106,0,721,'container2'),(9414,121,0,721,'grey-sweat-pants-white-large-size'),(9415,132,0,721,'0'),(9416,133,0,721,'/3/f/3f333_3.jpg'),(9417,206,0,721,'80% cotton, 17% polyester, 3% elastane'),(9422,73,0,722,'Grey Sweat Pants-black-Extra small size'),(9423,84,0,722,'Grey Sweat Pants'),(9424,86,0,722,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9425,87,0,722,'/4/4/4425f.jpg'),(9426,88,0,722,'/4/4/4425f.jpg'),(9427,89,0,722,'/4/4/4425f.jpg'),(9428,106,0,722,'container2'),(9429,121,0,722,'grey-sweat-pants-black-extra-small-size'),(9430,132,0,722,'0'),(9431,133,0,722,'/4/4/4425f.jpg'),(9432,206,0,722,'80% cotton, 17% polyester, 3% elastane'),(9437,73,0,723,'Grey Sweat Pants-black-Small size'),(9438,84,0,723,'Grey Sweat Pants'),(9439,86,0,723,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9440,87,0,723,'/4/4/4425f_1.jpg'),(9441,88,0,723,'/4/4/4425f_1.jpg'),(9442,89,0,723,'/4/4/4425f_1.jpg'),(9443,106,0,723,'container2'),(9444,121,0,723,'grey-sweat-pants-black-small-size'),(9445,132,0,723,'0'),(9446,133,0,723,'/4/4/4425f_1.jpg'),(9447,206,0,723,'80% cotton, 17% polyester, 3% elastane'),(9452,73,0,724,'Grey Sweat Pants-black-Medium size'),(9453,84,0,724,'Grey Sweat Pants'),(9454,86,0,724,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9455,87,0,724,'/4/4/4425f_2.jpg'),(9456,88,0,724,'/4/4/4425f_2.jpg'),(9457,89,0,724,'/4/4/4425f_2.jpg'),(9458,106,0,724,'container2'),(9459,121,0,724,'grey-sweat-pants-black-medium-size'),(9460,132,0,724,'0'),(9461,133,0,724,'/4/4/4425f_2.jpg'),(9462,206,0,724,'80% cotton, 17% polyester, 3% elastane'),(9467,73,0,725,'Grey Sweat Pants-black-Large size'),(9468,84,0,725,'Grey Sweat Pants'),(9469,86,0,725,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9470,87,0,725,'/4/4/4425f_3.jpg'),(9471,88,0,725,'/4/4/4425f_3.jpg'),(9472,89,0,725,'/4/4/4425f_3.jpg'),(9473,106,0,725,'container2'),(9474,121,0,725,'grey-sweat-pants-black-large-size'),(9475,132,0,725,'0'),(9476,133,0,725,'/4/4/4425f_3.jpg'),(9477,206,0,725,'80% cotton, 17% polyester, 3% elastane'),(9482,73,0,726,'Grey Sweat Pants-blue-Extra small size'),(9483,84,0,726,'Grey Sweat Pants'),(9484,86,0,726,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9485,87,0,726,'/4/f/4f4r4r.jpg'),(9486,88,0,726,'/4/f/4f4r4r.jpg'),(9487,89,0,726,'/4/f/4f4r4r.jpg'),(9488,106,0,726,'container2'),(9489,121,0,726,'grey-sweat-pants-blue-extra-small-size'),(9490,132,0,726,'0'),(9491,133,0,726,'/4/f/4f4r4r.jpg'),(9492,206,0,726,'80% cotton, 17% polyester, 3% elastane'),(9497,73,0,727,'Grey Sweat Pants-blue-Small size'),(9498,84,0,727,'Grey Sweat Pants'),(9499,86,0,727,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9500,87,0,727,'/4/f/4f4r4r_1.jpg'),(9501,88,0,727,'/4/f/4f4r4r_1.jpg'),(9502,89,0,727,'/4/f/4f4r4r_1.jpg'),(9503,106,0,727,'container2'),(9504,121,0,727,'grey-sweat-pants-blue-small-size'),(9505,132,0,727,'0'),(9506,133,0,727,'/4/f/4f4r4r_1.jpg'),(9507,206,0,727,'80% cotton, 17% polyester, 3% elastane'),(9512,73,0,728,'Grey Sweat Pants-blue-Medium size'),(9513,84,0,728,'Grey Sweat Pants'),(9514,86,0,728,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9515,87,0,728,'/4/f/4f4r4r_2.jpg'),(9516,88,0,728,'/4/f/4f4r4r_2.jpg'),(9517,89,0,728,'/4/f/4f4r4r_2.jpg'),(9518,106,0,728,'container2'),(9519,121,0,728,'grey-sweat-pants-blue-medium-size'),(9520,132,0,728,'0'),(9521,133,0,728,'/4/f/4f4r4r_2.jpg'),(9522,206,0,728,'80% cotton, 17% polyester, 3% elastane'),(9527,73,0,729,'Grey Sweat Pants-blue-Large size'),(9528,84,0,729,'Grey Sweat Pants'),(9529,86,0,729,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9530,87,0,729,'/4/f/4f4r4r_3.jpg'),(9531,88,0,729,'/4/f/4f4r4r_3.jpg'),(9532,89,0,729,'/4/f/4f4r4r_3.jpg'),(9533,106,0,729,'container2'),(9534,121,0,729,'grey-sweat-pants-blue-large-size'),(9535,132,0,729,'0'),(9536,133,0,729,'/4/f/4f4r4r_3.jpg'),(9537,206,0,729,'80% cotton, 17% polyester, 3% elastane'),(9542,73,0,730,'Grey Sweat Pants-red-Extra small size'),(9543,84,0,730,'Grey Sweat Pants'),(9544,86,0,730,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9545,87,0,730,'/6/g/6gg4_copy.jpg'),(9546,88,0,730,'/6/g/6gg4_copy.jpg'),(9547,89,0,730,'/6/g/6gg4_copy.jpg'),(9548,106,0,730,'container2'),(9549,121,0,730,'grey-sweat-pants-red-extra-small-size'),(9550,132,0,730,'0'),(9551,133,0,730,'/6/g/6gg4_copy.jpg'),(9552,206,0,730,'80% cotton, 17% polyester, 3% elastane'),(9557,73,0,731,'Grey Sweat Pants-red-Small size'),(9558,84,0,731,'Grey Sweat Pants'),(9559,86,0,731,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9560,87,0,731,'/6/g/6gg4_copy_1.jpg'),(9561,88,0,731,'/6/g/6gg4_copy_1.jpg'),(9562,89,0,731,'/6/g/6gg4_copy_1.jpg'),(9563,106,0,731,'container2'),(9564,121,0,731,'grey-sweat-pants-red-small-size'),(9565,132,0,731,'0'),(9566,133,0,731,'/6/g/6gg4_copy_1.jpg'),(9567,206,0,731,'80% cotton, 17% polyester, 3% elastane'),(9572,73,0,732,'Grey Sweat Pants-red-Medium size'),(9573,84,0,732,'Grey Sweat Pants'),(9574,86,0,732,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9575,87,0,732,'/6/g/6gg4_copy_2.jpg'),(9576,88,0,732,'/6/g/6gg4_copy_2.jpg'),(9577,89,0,732,'/6/g/6gg4_copy_2.jpg'),(9578,106,0,732,'container2'),(9579,121,0,732,'grey-sweat-pants-red-medium-size'),(9580,132,0,732,'0'),(9581,133,0,732,'/6/g/6gg4_copy_2.jpg'),(9582,206,0,732,'80% cotton, 17% polyester, 3% elastane'),(9587,73,0,733,'Grey Sweat Pants-red-Large size'),(9588,84,0,733,'Grey Sweat Pants'),(9589,86,0,733,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17'),(9590,87,0,733,'/6/g/6gg4_copy_3.jpg'),(9591,88,0,733,'/6/g/6gg4_copy_3.jpg'),(9592,89,0,733,'/6/g/6gg4_copy_3.jpg'),(9593,106,0,733,'container2'),(9594,121,0,733,'grey-sweat-pants-red-large-size'),(9595,132,0,733,'0'),(9596,133,0,733,'/6/g/6gg4_copy_3.jpg'),(9597,206,0,733,'80% cotton, 17% polyester, 3% elastane'),(9606,73,0,734,'Ugg Freamon Wp-white-EU 42'),(9607,84,0,734,'Ugg Freamon Wp'),(9608,86,0,734,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(9609,87,0,734,'/5/6/565.jpg'),(9610,88,0,734,'/5/6/565.jpg'),(9611,89,0,734,'/5/6/565.jpg'),(9612,106,0,734,'container2'),(9613,121,0,734,'ugg-freamon-wp-white-eu-42'),(9614,132,0,734,'0'),(9615,133,0,734,'/5/6/565.jpg'),(9616,206,0,734,'leather'),(9621,73,0,735,'Ugg Freamon Wp-white-EU 43'),(9622,84,0,735,'Ugg Freamon Wp'),(9623,86,0,735,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(9624,87,0,735,'/5/6/565_1.jpg'),(9625,88,0,735,'/5/6/565_1.jpg'),(9626,89,0,735,'/5/6/565_1.jpg'),(9627,106,0,735,'container2'),(9628,121,0,735,'ugg-freamon-wp-white-eu-43'),(9629,132,0,735,'0'),(9630,133,0,735,'/5/6/565_1.jpg'),(9631,206,0,735,'leather'),(9636,73,0,736,'Ugg Freamon Wp-white-EU 44'),(9637,84,0,736,'Ugg Freamon Wp'),(9638,86,0,736,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(9639,87,0,736,'/5/6/565_2.jpg'),(9640,88,0,736,'/5/6/565_2.jpg'),(9641,89,0,736,'/5/6/565_2.jpg'),(9642,106,0,736,'container2'),(9643,121,0,736,'ugg-freamon-wp-white-eu-44'),(9644,132,0,736,'0'),(9645,133,0,736,'/5/6/565_2.jpg'),(9646,206,0,736,'leather'),(9651,73,0,737,'Ugg Freamon Wp-black-EU 42'),(9652,84,0,737,'Ugg Freamon Wp'),(9653,86,0,737,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(9654,87,0,737,'/4/4/444.jpg'),(9655,88,0,737,'/4/4/444.jpg'),(9656,89,0,737,'/4/4/444.jpg'),(9657,106,0,737,'container2'),(9658,121,0,737,'ugg-freamon-wp-black-eu-42'),(9659,132,0,737,'0'),(9660,133,0,737,'/4/4/444.jpg'),(9661,206,0,737,'leather'),(9666,73,0,738,'Ugg Freamon Wp-black-EU 43'),(9667,84,0,738,'Ugg Freamon Wp'),(9668,86,0,738,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(9669,87,0,738,'/4/4/444_1.jpg'),(9670,88,0,738,'/4/4/444_1.jpg'),(9671,89,0,738,'/4/4/444_1.jpg'),(9672,106,0,738,'container2'),(9673,121,0,738,'ugg-freamon-wp-black-eu-43'),(9674,132,0,738,'0'),(9675,133,0,738,'/4/4/444_1.jpg'),(9676,206,0,738,'leather'),(9681,73,0,739,'Ugg Freamon Wp-black-EU 44'),(9682,84,0,739,'Ugg Freamon Wp'),(9683,86,0,739,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(9684,87,0,739,'/4/4/444_2.jpg'),(9685,88,0,739,'/4/4/444_2.jpg'),(9686,89,0,739,'/4/4/444_2.jpg'),(9687,106,0,739,'container2'),(9688,121,0,739,'ugg-freamon-wp-black-eu-44'),(9689,132,0,739,'0'),(9690,133,0,739,'/4/4/444_2.jpg'),(9691,206,0,739,'leather'),(9696,73,0,740,'Ugg Freamon Wp-grey-EU 42'),(9697,84,0,740,'Ugg Freamon Wp'),(9698,86,0,740,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(9699,87,0,740,'/5/3/534234.jpg'),(9700,88,0,740,'/5/3/534234.jpg'),(9701,89,0,740,'/5/3/534234.jpg'),(9702,106,0,740,'container2'),(9703,121,0,740,'ugg-freamon-wp-grey-eu-42'),(9704,132,0,740,'0'),(9705,133,0,740,'/5/3/534234.jpg'),(9706,206,0,740,'leather'),(9711,73,0,741,'Ugg Freamon Wp-grey-EU 43'),(9712,84,0,741,'Ugg Freamon Wp'),(9713,86,0,741,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(9714,87,0,741,'/5/3/534234_1.jpg'),(9715,88,0,741,'/5/3/534234_1.jpg'),(9716,89,0,741,'/5/3/534234_1.jpg'),(9717,106,0,741,'container2'),(9718,121,0,741,'ugg-freamon-wp-grey-eu-43'),(9719,132,0,741,'0'),(9720,133,0,741,'/5/3/534234_1.jpg'),(9721,206,0,741,'leather'),(9726,73,0,742,'Ugg Freamon Wp-grey-EU 44'),(9727,84,0,742,'Ugg Freamon Wp'),(9728,86,0,742,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(9729,87,0,742,'/5/3/534234_2.jpg'),(9730,88,0,742,'/5/3/534234_2.jpg'),(9731,89,0,742,'/5/3/534234_2.jpg'),(9732,106,0,742,'container2'),(9733,121,0,742,'ugg-freamon-wp-grey-eu-44'),(9734,132,0,742,'0'),(9735,133,0,742,'/5/3/534234_2.jpg'),(9736,206,0,742,'leather'),(9741,73,0,743,'Ugg Freamon Wp-blue-EU 42'),(9742,84,0,743,'Ugg Freamon Wp'),(9743,86,0,743,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(9744,87,0,743,'/6/7/675.jpg'),(9745,88,0,743,'/6/7/675.jpg'),(9746,89,0,743,'/6/7/675.jpg'),(9747,106,0,743,'container2'),(9748,121,0,743,'ugg-freamon-wp-blue-eu-42'),(9749,132,0,743,'0'),(9750,133,0,743,'/6/7/675.jpg'),(9751,206,0,743,'leather'),(9756,73,0,744,'Ugg Freamon Wp-blue-EU 43'),(9757,84,0,744,'Ugg Freamon Wp'),(9758,86,0,744,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(9759,87,0,744,'/6/7/675_1.jpg'),(9760,88,0,744,'/6/7/675_1.jpg'),(9761,89,0,744,'/6/7/675_1.jpg'),(9762,106,0,744,'container2'),(9763,121,0,744,'ugg-freamon-wp-blue-eu-43'),(9764,132,0,744,'0'),(9765,133,0,744,'/6/7/675_1.jpg'),(9766,206,0,744,'leather'),(9771,73,0,745,'Ugg Freamon Wp-blue-EU 44'),(9772,84,0,745,'Ugg Freamon Wp'),(9773,86,0,745,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(9774,87,0,745,'/6/7/675_2.jpg'),(9775,88,0,745,'/6/7/675_2.jpg'),(9776,89,0,745,'/6/7/675_2.jpg'),(9777,106,0,745,'container2'),(9778,121,0,745,'ugg-freamon-wp-blue-eu-44'),(9779,132,0,745,'0'),(9780,133,0,745,'/6/7/675_2.jpg'),(9781,206,0,745,'leather'),(9786,73,0,746,'Ugg Freamon Wp-red-EU 42'),(9787,84,0,746,'Ugg Freamon Wp'),(9788,86,0,746,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(9789,87,0,746,'/2/1/21.jpg'),(9790,88,0,746,'/2/1/21.jpg'),(9791,89,0,746,'/2/1/21.jpg'),(9792,106,0,746,'container2'),(9793,121,0,746,'ugg-freamon-wp-red-eu-42'),(9794,132,0,746,'0'),(9795,133,0,746,'/2/1/21.jpg'),(9796,206,0,746,'leather'),(9801,73,0,747,'Ugg Freamon Wp-red-EU 43'),(9802,84,0,747,'Ugg Freamon Wp'),(9803,86,0,747,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(9804,87,0,747,'/2/1/21_1.jpg'),(9805,88,0,747,'/2/1/21_1.jpg'),(9806,89,0,747,'/2/1/21_1.jpg'),(9807,106,0,747,'container2'),(9808,121,0,747,'ugg-freamon-wp-red-eu-43'),(9809,132,0,747,'0'),(9810,133,0,747,'/2/1/21_1.jpg'),(9811,206,0,747,'leather'),(9816,73,0,748,'Ugg Freamon Wp-red-EU 44'),(9817,84,0,748,'Ugg Freamon Wp'),(9818,86,0,748,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle.'),(9819,87,0,748,'/2/1/21_2.jpg'),(9820,88,0,748,'/2/1/21_2.jpg'),(9821,89,0,748,'/2/1/21_2.jpg'),(9822,106,0,748,'container2'),(9823,121,0,748,'ugg-freamon-wp-red-eu-44'),(9824,132,0,748,'0'),(9825,133,0,748,'/2/1/21_2.jpg'),(9826,206,0,748,'leather'),(9835,73,0,749,'Black Knitted Pants-brown-Small size'),(9836,84,0,749,'Black Knitted Pants'),(9837,86,0,749,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(9838,87,0,749,'/2/3/23d.jpg'),(9839,88,0,749,'/2/3/23d.jpg'),(9840,89,0,749,'/2/3/23d.jpg'),(9841,106,0,749,'container2'),(9842,121,0,749,'black-knitted-pants-brown-small-size'),(9843,132,0,749,'0'),(9844,133,0,749,'/2/3/23d.jpg'),(9845,206,0,749,'60% cotton, 25% polyamide, 15% wool'),(9850,73,0,750,'Black Knitted Pants-brown-Medium size'),(9851,84,0,750,'Black Knitted Pants'),(9852,86,0,750,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(9853,87,0,750,'/2/3/23d_1.jpg'),(9854,88,0,750,'/2/3/23d_1.jpg'),(9855,89,0,750,'/2/3/23d_1.jpg'),(9856,106,0,750,'container2'),(9857,121,0,750,'black-knitted-pants-brown-medium-size'),(9858,132,0,750,'0'),(9859,133,0,750,'/2/3/23d_1.jpg'),(9860,206,0,750,'60% cotton, 25% polyamide, 15% wool'),(9865,73,0,751,'Black Knitted Pants-brown-Large size'),(9866,84,0,751,'Black Knitted Pants'),(9867,86,0,751,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(9868,87,0,751,'/2/3/23d_2.jpg'),(9869,88,0,751,'/2/3/23d_2.jpg'),(9870,89,0,751,'/2/3/23d_2.jpg'),(9871,106,0,751,'container2'),(9872,121,0,751,'black-knitted-pants-brown-large-size'),(9873,132,0,751,'0'),(9874,133,0,751,'/2/3/23d_2.jpg'),(9875,206,0,751,'60% cotton, 25% polyamide, 15% wool'),(9880,73,0,752,'Black Knitted Pants-brown-Extra large size'),(9881,84,0,752,'Black Knitted Pants'),(9882,86,0,752,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(9883,87,0,752,'/2/3/23d_3.jpg'),(9884,88,0,752,'/2/3/23d_3.jpg'),(9885,89,0,752,'/2/3/23d_3.jpg'),(9886,106,0,752,'container2'),(9887,121,0,752,'black-knitted-pants-brown-extra-large-size'),(9888,132,0,752,'0'),(9889,133,0,752,'/2/3/23d_3.jpg'),(9890,206,0,752,'60% cotton, 25% polyamide, 15% wool'),(9895,73,0,753,'Black Knitted Pants-white-Small size'),(9896,84,0,753,'Black Knitted Pants'),(9897,86,0,753,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(9898,87,0,753,'/3/d/3d3d3d.jpg'),(9899,88,0,753,'/3/d/3d3d3d.jpg'),(9900,89,0,753,'/3/d/3d3d3d.jpg'),(9901,106,0,753,'container2'),(9902,121,0,753,'black-knitted-pants-white-small-size'),(9903,132,0,753,'0'),(9904,133,0,753,'/3/d/3d3d3d.jpg'),(9905,206,0,753,'60% cotton, 25% polyamide, 15% wool'),(9910,73,0,754,'Black Knitted Pants-white-Medium size'),(9911,84,0,754,'Black Knitted Pants'),(9912,86,0,754,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(9913,87,0,754,'/3/d/3d3d3d_1.jpg'),(9914,88,0,754,'/3/d/3d3d3d_1.jpg'),(9915,89,0,754,'/3/d/3d3d3d_1.jpg'),(9916,106,0,754,'container2'),(9917,121,0,754,'black-knitted-pants-white-medium-size'),(9918,132,0,754,'0'),(9919,133,0,754,'/3/d/3d3d3d_1.jpg'),(9920,206,0,754,'60% cotton, 25% polyamide, 15% wool'),(9925,73,0,755,'Black Knitted Pants-white-Large size'),(9926,84,0,755,'Black Knitted Pants'),(9927,86,0,755,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(9928,87,0,755,'/3/d/3d3d3d_2.jpg'),(9929,88,0,755,'/3/d/3d3d3d_2.jpg'),(9930,89,0,755,'/3/d/3d3d3d_2.jpg'),(9931,106,0,755,'container2'),(9932,121,0,755,'black-knitted-pants-white-large-size'),(9933,132,0,755,'0'),(9934,133,0,755,'/3/d/3d3d3d_2.jpg'),(9935,206,0,755,'60% cotton, 25% polyamide, 15% wool'),(9940,73,0,756,'Black Knitted Pants-white-Extra large size'),(9941,84,0,756,'Black Knitted Pants'),(9942,86,0,756,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(9943,87,0,756,'/3/d/3d3d3d_3.jpg'),(9944,88,0,756,'/3/d/3d3d3d_3.jpg'),(9945,89,0,756,'/3/d/3d3d3d_3.jpg'),(9946,106,0,756,'container2'),(9947,121,0,756,'black-knitted-pants-white-extra-large-size'),(9948,132,0,756,'0'),(9949,133,0,756,'/3/d/3d3d3d_3.jpg'),(9950,206,0,756,'60% cotton, 25% polyamide, 15% wool'),(9955,73,0,757,'Black Knitted Pants-grey-Small size'),(9956,84,0,757,'Black Knitted Pants'),(9957,86,0,757,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(9958,87,0,757,'/4/g/4g.jpg'),(9959,88,0,757,'/4/g/4g.jpg'),(9960,89,0,757,'/4/g/4g.jpg'),(9961,106,0,757,'container2'),(9962,121,0,757,'black-knitted-pants-grey-small-size'),(9963,132,0,757,'0'),(9964,133,0,757,'/4/g/4g.jpg'),(9965,206,0,757,'60% cotton, 25% polyamide, 15% wool'),(9970,73,0,758,'Black Knitted Pants-grey-Medium size'),(9971,84,0,758,'Black Knitted Pants'),(9972,86,0,758,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(9973,87,0,758,'/4/g/4g_1.jpg'),(9974,88,0,758,'/4/g/4g_1.jpg'),(9975,89,0,758,'/4/g/4g_1.jpg'),(9976,106,0,758,'container2'),(9977,121,0,758,'black-knitted-pants-grey-medium-size'),(9978,132,0,758,'0'),(9979,133,0,758,'/4/g/4g_1.jpg'),(9980,206,0,758,'60% cotton, 25% polyamide, 15% wool'),(9985,73,0,759,'Black Knitted Pants-grey-Large size'),(9986,84,0,759,'Black Knitted Pants'),(9987,86,0,759,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(9988,87,0,759,'/4/g/4g_2.jpg'),(9989,88,0,759,'/4/g/4g_2.jpg'),(9990,89,0,759,'/4/g/4g_2.jpg'),(9991,106,0,759,'container2'),(9992,121,0,759,'black-knitted-pants-grey-large-size'),(9993,132,0,759,'0'),(9994,133,0,759,'/4/g/4g_2.jpg'),(9995,206,0,759,'60% cotton, 25% polyamide, 15% wool'),(10000,73,0,760,'Black Knitted Pants-grey-Extra large size'),(10001,84,0,760,'Black Knitted Pants'),(10002,86,0,760,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(10003,87,0,760,'/4/g/4g_3.jpg'),(10004,88,0,760,'/4/g/4g_3.jpg'),(10005,89,0,760,'/4/g/4g_3.jpg'),(10006,106,0,760,'container2'),(10007,121,0,760,'black-knitted-pants-grey-extra-large-size'),(10008,132,0,760,'0'),(10009,133,0,760,'/4/g/4g_3.jpg'),(10010,206,0,760,'60% cotton, 25% polyamide, 15% wool'),(10015,73,0,761,'Black Knitted Pants-blue-Small size'),(10016,84,0,761,'Black Knitted Pants'),(10017,86,0,761,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(10018,87,0,761,'/3/4/3462dwxwx.jpg'),(10019,88,0,761,'/3/4/3462dwxwx.jpg'),(10020,89,0,761,'/3/4/3462dwxwx.jpg'),(10021,106,0,761,'container2'),(10022,121,0,761,'black-knitted-pants-blue-small-size'),(10023,132,0,761,'0'),(10024,133,0,761,'/3/4/3462dwxwx.jpg'),(10025,206,0,761,'60% cotton, 25% polyamide, 15% wool'),(10030,73,0,762,'Black Knitted Pants-blue-Medium size'),(10031,84,0,762,'Black Knitted Pants'),(10032,86,0,762,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(10033,87,0,762,'/3/4/3462dwxwx_1.jpg'),(10034,88,0,762,'/3/4/3462dwxwx_1.jpg'),(10035,89,0,762,'/3/4/3462dwxwx_1.jpg'),(10036,106,0,762,'container2'),(10037,121,0,762,'black-knitted-pants-blue-medium-size'),(10038,132,0,762,'0'),(10039,133,0,762,'/3/4/3462dwxwx_1.jpg'),(10040,206,0,762,'60% cotton, 25% polyamide, 15% wool'),(10045,73,0,763,'Black Knitted Pants-blue-Large size'),(10046,84,0,763,'Black Knitted Pants'),(10047,86,0,763,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(10048,87,0,763,'/3/4/3462dwxwx_2.jpg'),(10049,88,0,763,'/3/4/3462dwxwx_2.jpg'),(10050,89,0,763,'/3/4/3462dwxwx_2.jpg'),(10051,106,0,763,'container2'),(10052,121,0,763,'black-knitted-pants-blue-large-size'),(10053,132,0,763,'0'),(10054,133,0,763,'/3/4/3462dwxwx_2.jpg'),(10055,206,0,763,'60% cotton, 25% polyamide, 15% wool'),(10060,73,0,764,'Black Knitted Pants-blue-Extra large size'),(10061,84,0,764,'Black Knitted Pants'),(10062,86,0,764,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(10063,87,0,764,'/3/4/3462dwxwx_3.jpg'),(10064,88,0,764,'/3/4/3462dwxwx_3.jpg'),(10065,89,0,764,'/3/4/3462dwxwx_3.jpg'),(10066,106,0,764,'container2'),(10067,121,0,764,'black-knitted-pants-blue-extra-large-size'),(10068,132,0,764,'0'),(10069,133,0,764,'/3/4/3462dwxwx_3.jpg'),(10070,206,0,764,'60% cotton, 25% polyamide, 15% wool'),(10075,73,0,765,'Black Knitted Pants-red-Small size'),(10076,84,0,765,'Black Knitted Pants'),(10077,86,0,765,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(10078,87,0,765,'/4/0/4014.jpg'),(10079,88,0,765,'/4/0/4014.jpg'),(10080,89,0,765,'/4/0/4014.jpg'),(10081,106,0,765,'container2'),(10082,121,0,765,'black-knitted-pants-red-small-size'),(10083,132,0,765,'0'),(10084,133,0,765,'/4/0/4014.jpg'),(10085,206,0,765,'60% cotton, 25% polyamide, 15% wool'),(10090,73,0,766,'Black Knitted Pants-red-Medium size'),(10091,84,0,766,'Black Knitted Pants'),(10092,86,0,766,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(10093,87,0,766,'/4/0/4014_1.jpg'),(10094,88,0,766,'/4/0/4014_1.jpg'),(10095,89,0,766,'/4/0/4014_1.jpg'),(10096,106,0,766,'container2'),(10097,121,0,766,'black-knitted-pants-red-medium-size'),(10098,132,0,766,'0'),(10099,133,0,766,'/4/0/4014_1.jpg'),(10100,206,0,766,'60% cotton, 25% polyamide, 15% wool'),(10105,73,0,767,'Black Knitted Pants-red-Large size'),(10106,84,0,767,'Black Knitted Pants'),(10107,86,0,767,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(10108,87,0,767,'/4/0/4014_2.jpg'),(10109,88,0,767,'/4/0/4014_2.jpg'),(10110,89,0,767,'/4/0/4014_2.jpg'),(10111,106,0,767,'container2'),(10112,121,0,767,'black-knitted-pants-red-large-size'),(10113,132,0,767,'0'),(10114,133,0,767,'/4/0/4014_2.jpg'),(10115,206,0,767,'60% cotton, 25% polyamide, 15% wool'),(10120,73,0,768,'Black Knitted Pants-red-Extra large size'),(10121,84,0,768,'Black Knitted Pants'),(10122,86,0,768,'Black Knitted Pants Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care '),(10123,87,0,768,'/4/0/4014_3.jpg'),(10124,88,0,768,'/4/0/4014_3.jpg'),(10125,89,0,768,'/4/0/4014_3.jpg'),(10126,106,0,768,'container2'),(10127,121,0,768,'black-knitted-pants-red-extra-large-size'),(10128,132,0,768,'0'),(10129,133,0,768,'/4/0/4014_3.jpg'),(10130,206,0,768,'60% cotton, 25% polyamide, 15% wool'),(10139,73,0,769,'Camel Dress Trousers – Glenn-white-Extra small size'),(10140,84,0,769,'Camel Dress Trousers – Glenn'),(10141,86,0,769,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10142,87,0,769,'/1/2/12w2s3s33.jpg'),(10143,88,0,769,'/1/2/12w2s3s33.jpg'),(10144,89,0,769,'/1/2/12w2s3s33.jpg'),(10145,106,0,769,'container2'),(10146,121,0,769,'camel-dress-trousers-glenn-white-extra-small-size'),(10147,132,0,769,'0'),(10148,133,0,769,'/1/2/12w2s3s33.jpg'),(10149,206,0,769,'98% cotton, 2% elastane'),(10154,73,0,770,'Camel Dress Trousers – Glenn-white-Small size'),(10155,84,0,770,'Camel Dress Trousers – Glenn'),(10156,86,0,770,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10157,87,0,770,'/1/2/12w2s3s33_1.jpg'),(10158,88,0,770,'/1/2/12w2s3s33_1.jpg'),(10159,89,0,770,'/1/2/12w2s3s33_1.jpg'),(10160,106,0,770,'container2'),(10161,121,0,770,'camel-dress-trousers-glenn-white-small-size'),(10162,132,0,770,'0'),(10163,133,0,770,'/1/2/12w2s3s33_1.jpg'),(10164,206,0,770,'98% cotton, 2% elastane'),(10169,73,0,771,'Camel Dress Trousers – Glenn-white-Medium size'),(10170,84,0,771,'Camel Dress Trousers – Glenn'),(10171,86,0,771,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10172,87,0,771,'/1/2/12w2s3s33_2.jpg'),(10173,88,0,771,'/1/2/12w2s3s33_2.jpg'),(10174,89,0,771,'/1/2/12w2s3s33_2.jpg'),(10175,106,0,771,'container2'),(10176,121,0,771,'camel-dress-trousers-glenn-white-medium-size'),(10177,132,0,771,'0'),(10178,133,0,771,'/1/2/12w2s3s33_2.jpg'),(10179,206,0,771,'98% cotton, 2% elastane'),(10184,73,0,772,'Camel Dress Trousers – Glenn-white-Large size'),(10185,84,0,772,'Camel Dress Trousers – Glenn'),(10186,86,0,772,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10187,87,0,772,'/1/2/12w2s3s33_3.jpg'),(10188,88,0,772,'/1/2/12w2s3s33_3.jpg'),(10189,89,0,772,'/1/2/12w2s3s33_3.jpg'),(10190,106,0,772,'container2'),(10191,121,0,772,'camel-dress-trousers-glenn-white-large-size'),(10192,132,0,772,'0'),(10193,133,0,772,'/1/2/12w2s3s33_3.jpg'),(10194,206,0,772,'98% cotton, 2% elastane'),(10199,73,0,773,'Camel Dress Trousers – Glenn-black-Extra small size'),(10200,84,0,773,'Camel Dress Trousers – Glenn'),(10201,86,0,773,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10202,87,0,773,'/1/2/1223d4f4f5.jpg'),(10203,88,0,773,'/1/2/1223d4f4f5.jpg'),(10204,89,0,773,'/1/2/1223d4f4f5.jpg'),(10205,106,0,773,'container2'),(10206,121,0,773,'camel-dress-trousers-glenn-black-extra-small-size'),(10207,132,0,773,'0'),(10208,133,0,773,'/1/2/1223d4f4f5.jpg'),(10209,206,0,773,'98% cotton, 2% elastane'),(10214,73,0,774,'Camel Dress Trousers – Glenn-black-Small size'),(10215,84,0,774,'Camel Dress Trousers – Glenn'),(10216,86,0,774,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10217,87,0,774,'/1/2/1223d4f4f5_1.jpg'),(10218,88,0,774,'/1/2/1223d4f4f5_1.jpg'),(10219,89,0,774,'/1/2/1223d4f4f5_1.jpg'),(10220,106,0,774,'container2'),(10221,121,0,774,'camel-dress-trousers-glenn-black-small-size'),(10222,132,0,774,'0'),(10223,133,0,774,'/1/2/1223d4f4f5_1.jpg'),(10224,206,0,774,'98% cotton, 2% elastane'),(10229,73,0,775,'Camel Dress Trousers – Glenn-black-Medium size'),(10230,84,0,775,'Camel Dress Trousers – Glenn'),(10231,86,0,775,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10232,87,0,775,'/1/2/1223d4f4f5_2.jpg'),(10233,88,0,775,'/1/2/1223d4f4f5_2.jpg'),(10234,89,0,775,'/1/2/1223d4f4f5_2.jpg'),(10235,106,0,775,'container2'),(10236,121,0,775,'camel-dress-trousers-glenn-black-medium-size'),(10237,132,0,775,'0'),(10238,133,0,775,'/1/2/1223d4f4f5_2.jpg'),(10239,206,0,775,'98% cotton, 2% elastane'),(10244,73,0,776,'Camel Dress Trousers – Glenn-black-Large size'),(10245,84,0,776,'Camel Dress Trousers – Glenn'),(10246,86,0,776,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10247,87,0,776,'/1/2/1223d4f4f5_3.jpg'),(10248,88,0,776,'/1/2/1223d4f4f5_3.jpg'),(10249,89,0,776,'/1/2/1223d4f4f5_3.jpg'),(10250,106,0,776,'container2'),(10251,121,0,776,'camel-dress-trousers-glenn-black-large-size'),(10252,132,0,776,'0'),(10253,133,0,776,'/1/2/1223d4f4f5_3.jpg'),(10254,206,0,776,'98% cotton, 2% elastane'),(10259,73,0,777,'Camel Dress Trousers – Glenn-grey-Extra small size'),(10260,84,0,777,'Camel Dress Trousers – Glenn'),(10261,86,0,777,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10262,87,0,777,'/3/4/34f4w22.jpg'),(10263,88,0,777,'/3/4/34f4w22.jpg'),(10264,89,0,777,'/3/4/34f4w22.jpg'),(10265,106,0,777,'container2'),(10266,121,0,777,'camel-dress-trousers-glenn-grey-extra-small-size'),(10267,132,0,777,'0'),(10268,133,0,777,'/3/4/34f4w22.jpg'),(10269,206,0,777,'98% cotton, 2% elastane'),(10274,73,0,778,'Camel Dress Trousers – Glenn-grey-Small size'),(10275,84,0,778,'Camel Dress Trousers – Glenn'),(10276,86,0,778,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10277,87,0,778,'/3/4/34f4w22_1.jpg'),(10278,88,0,778,'/3/4/34f4w22_1.jpg'),(10279,89,0,778,'/3/4/34f4w22_1.jpg'),(10280,106,0,778,'container2'),(10281,121,0,778,'camel-dress-trousers-glenn-grey-small-size'),(10282,132,0,778,'0'),(10283,133,0,778,'/3/4/34f4w22_1.jpg'),(10284,206,0,778,'98% cotton, 2% elastane'),(10289,73,0,779,'Camel Dress Trousers – Glenn-grey-Medium size'),(10290,84,0,779,'Camel Dress Trousers – Glenn'),(10291,86,0,779,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10292,87,0,779,'/3/4/34f4w22_2.jpg'),(10293,88,0,779,'/3/4/34f4w22_2.jpg'),(10294,89,0,779,'/3/4/34f4w22_2.jpg'),(10295,106,0,779,'container2'),(10296,121,0,779,'camel-dress-trousers-glenn-grey-medium-size'),(10297,132,0,779,'0'),(10298,133,0,779,'/3/4/34f4w22_2.jpg'),(10299,206,0,779,'98% cotton, 2% elastane'),(10304,73,0,780,'Camel Dress Trousers – Glenn-grey-Large size'),(10305,84,0,780,'Camel Dress Trousers – Glenn'),(10306,86,0,780,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10307,87,0,780,'/3/4/34f4w22_3.jpg'),(10308,88,0,780,'/3/4/34f4w22_3.jpg'),(10309,89,0,780,'/3/4/34f4w22_3.jpg'),(10310,106,0,780,'container2'),(10311,121,0,780,'camel-dress-trousers-glenn-grey-large-size'),(10312,132,0,780,'0'),(10313,133,0,780,'/3/4/34f4w22_3.jpg'),(10314,206,0,780,'98% cotton, 2% elastane'),(10319,73,0,781,'Camel Dress Trousers – Glenn-blue-Extra small size'),(10320,84,0,781,'Camel Dress Trousers – Glenn'),(10321,86,0,781,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10322,87,0,781,'/2/4/24r.jpg'),(10323,88,0,781,'/2/4/24r.jpg'),(10324,89,0,781,'/2/4/24r.jpg'),(10325,106,0,781,'container2'),(10326,121,0,781,'camel-dress-trousers-glenn-blue-extra-small-size'),(10327,132,0,781,'0'),(10328,133,0,781,'/2/4/24r.jpg'),(10329,206,0,781,'98% cotton, 2% elastane'),(10334,73,0,782,'Camel Dress Trousers – Glenn-blue-Small size'),(10335,84,0,782,'Camel Dress Trousers – Glenn'),(10336,86,0,782,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10337,87,0,782,'/2/4/24r_1.jpg'),(10338,88,0,782,'/2/4/24r_1.jpg'),(10339,89,0,782,'/2/4/24r_1.jpg'),(10340,106,0,782,'container2'),(10341,121,0,782,'camel-dress-trousers-glenn-blue-small-size'),(10342,132,0,782,'0'),(10343,133,0,782,'/2/4/24r_1.jpg'),(10344,206,0,782,'98% cotton, 2% elastane'),(10349,73,0,783,'Camel Dress Trousers – Glenn-blue-Medium size'),(10350,84,0,783,'Camel Dress Trousers – Glenn'),(10351,86,0,783,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10352,87,0,783,'/2/4/24r_2.jpg'),(10353,88,0,783,'/2/4/24r_2.jpg'),(10354,89,0,783,'/2/4/24r_2.jpg'),(10355,106,0,783,'container2'),(10356,121,0,783,'camel-dress-trousers-glenn-blue-medium-size'),(10357,132,0,783,'0'),(10358,133,0,783,'/2/4/24r_2.jpg'),(10359,206,0,783,'98% cotton, 2% elastane'),(10364,73,0,784,'Camel Dress Trousers – Glenn-blue-Large size'),(10365,84,0,784,'Camel Dress Trousers – Glenn'),(10366,86,0,784,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10367,87,0,784,'/2/4/24r_3.jpg'),(10368,88,0,784,'/2/4/24r_3.jpg'),(10369,89,0,784,'/2/4/24r_3.jpg'),(10370,106,0,784,'container2'),(10371,121,0,784,'camel-dress-trousers-glenn-blue-large-size'),(10372,132,0,784,'0'),(10373,133,0,784,'/2/4/24r_3.jpg'),(10374,206,0,784,'98% cotton, 2% elastane'),(10379,73,0,785,'Camel Dress Trousers – Glenn-red-Extra small size'),(10380,84,0,785,'Camel Dress Trousers – Glenn'),(10381,86,0,785,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10382,87,0,785,'/1/q/1q2qww.jpg'),(10383,88,0,785,'/1/q/1q2qww.jpg'),(10384,89,0,785,'/1/q/1q2qww.jpg'),(10385,106,0,785,'container2'),(10386,121,0,785,'camel-dress-trousers-glenn-red-extra-small-size'),(10387,132,0,785,'0'),(10388,133,0,785,'/1/q/1q2qww.jpg'),(10389,206,0,785,'98% cotton, 2% elastane'),(10394,73,0,786,'Camel Dress Trousers – Glenn-red-Small size'),(10395,84,0,786,'Camel Dress Trousers – Glenn'),(10396,86,0,786,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10397,87,0,786,'/1/q/1q2qww_1.jpg'),(10398,88,0,786,'/1/q/1q2qww_1.jpg'),(10399,89,0,786,'/1/q/1q2qww_1.jpg'),(10400,106,0,786,'container2'),(10401,121,0,786,'camel-dress-trousers-glenn-red-small-size'),(10402,132,0,786,'0'),(10403,133,0,786,'/1/q/1q2qww_1.jpg'),(10404,206,0,786,'98% cotton, 2% elastane'),(10409,73,0,787,'Camel Dress Trousers – Glenn-red-Medium size'),(10410,84,0,787,'Camel Dress Trousers – Glenn'),(10411,86,0,787,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10412,87,0,787,'/1/q/1q2qww_2.jpg'),(10413,88,0,787,'/1/q/1q2qww_2.jpg'),(10414,89,0,787,'/1/q/1q2qww_2.jpg'),(10415,106,0,787,'container2'),(10416,121,0,787,'camel-dress-trousers-glenn-red-medium-size'),(10417,132,0,787,'0'),(10418,133,0,787,'/1/q/1q2qww_2.jpg'),(10419,206,0,787,'98% cotton, 2% elastane'),(10424,73,0,788,'Camel Dress Trousers – Glenn-red-Large size'),(10425,84,0,788,'Camel Dress Trousers – Glenn'),(10426,86,0,788,'Camel Dress Trousers – Glenn Model: GlennManufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and'),(10427,87,0,788,'/1/q/1q2qww_3.jpg'),(10428,88,0,788,'/1/q/1q2qww_3.jpg'),(10429,89,0,788,'/1/q/1q2qww_3.jpg'),(10430,106,0,788,'container2'),(10431,121,0,788,'camel-dress-trousers-glenn-red-large-size'),(10432,132,0,788,'0'),(10433,133,0,788,'/1/q/1q2qww_3.jpg'),(10434,206,0,788,'98% cotton, 2% elastane'),(10447,73,0,789,'Tan Corduroy Trousers-white-Small size'),(10448,84,0,789,'Tan Corduroy Trousers'),(10449,86,0,789,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(10450,87,0,789,'/5/t/5tggt5.jpg'),(10451,88,0,789,'/5/t/5tggt5.jpg'),(10452,89,0,789,'/5/t/5tggt5.jpg'),(10453,106,0,789,'container2'),(10454,121,0,789,'tan-corduroy-trousers-white-small-size'),(10455,132,0,789,'0'),(10456,133,0,789,'/5/t/5tggt5.jpg'),(10457,206,0,789,'98% cotton, 2% elastane'),(10462,73,0,790,'Tan Corduroy Trousers-white-Medium size'),(10463,84,0,790,'Tan Corduroy Trousers'),(10464,86,0,790,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(10465,87,0,790,'/5/t/5tggt5_1.jpg'),(10466,88,0,790,'/5/t/5tggt5_1.jpg'),(10467,89,0,790,'/5/t/5tggt5_1.jpg'),(10468,106,0,790,'container2'),(10469,121,0,790,'tan-corduroy-trousers-white-medium-size'),(10470,132,0,790,'0'),(10471,133,0,790,'/5/t/5tggt5_1.jpg'),(10472,206,0,790,'98% cotton, 2% elastane'),(10477,73,0,791,'Tan Corduroy Trousers-white-Large size'),(10478,84,0,791,'Tan Corduroy Trousers'),(10479,86,0,791,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(10480,87,0,791,'/5/t/5tggt5_2.jpg'),(10481,88,0,791,'/5/t/5tggt5_2.jpg'),(10482,89,0,791,'/5/t/5tggt5_2.jpg'),(10483,106,0,791,'container2'),(10484,121,0,791,'tan-corduroy-trousers-white-large-size'),(10485,132,0,791,'0'),(10486,133,0,791,'/5/t/5tggt5_2.jpg'),(10487,206,0,791,'98% cotton, 2% elastane'),(10492,73,0,792,'Tan Corduroy Trousers-black-Small size'),(10493,84,0,792,'Tan Corduroy Trousers'),(10494,86,0,792,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(10495,87,0,792,'/f/5/f543e.jpg'),(10496,88,0,792,'/f/5/f543e.jpg'),(10497,89,0,792,'/f/5/f543e.jpg'),(10498,106,0,792,'container2'),(10499,121,0,792,'tan-corduroy-trousers-black-small-size'),(10500,132,0,792,'0'),(10501,133,0,792,'/f/5/f543e.jpg'),(10502,206,0,792,'98% cotton, 2% elastane'),(10507,73,0,793,'Tan Corduroy Trousers-black-Medium size'),(10508,84,0,793,'Tan Corduroy Trousers'),(10509,86,0,793,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(10510,87,0,793,'/f/5/f543e_1.jpg'),(10511,88,0,793,'/f/5/f543e_1.jpg'),(10512,89,0,793,'/f/5/f543e_1.jpg'),(10513,106,0,793,'container2'),(10514,121,0,793,'tan-corduroy-trousers-black-medium-size'),(10515,132,0,793,'0'),(10516,133,0,793,'/f/5/f543e_1.jpg'),(10517,206,0,793,'98% cotton, 2% elastane'),(10522,73,0,794,'Tan Corduroy Trousers-black-Large size'),(10523,84,0,794,'Tan Corduroy Trousers'),(10524,86,0,794,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(10525,87,0,794,'/f/5/f543e_2.jpg'),(10526,88,0,794,'/f/5/f543e_2.jpg'),(10527,89,0,794,'/f/5/f543e_2.jpg'),(10528,106,0,794,'container2'),(10529,121,0,794,'tan-corduroy-trousers-black-large-size'),(10530,132,0,794,'0'),(10531,133,0,794,'/f/5/f543e_2.jpg'),(10532,206,0,794,'98% cotton, 2% elastane'),(10537,73,0,795,'Tan Corduroy Trousers-grey-Small size'),(10538,84,0,795,'Tan Corduroy Trousers'),(10539,86,0,795,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(10540,87,0,795,'/2/3/23d4d4ed3d.jpg'),(10541,88,0,795,'/2/3/23d4d4ed3d.jpg'),(10542,89,0,795,'/2/3/23d4d4ed3d.jpg'),(10543,106,0,795,'container2'),(10544,121,0,795,'tan-corduroy-trousers-grey-small-size'),(10545,132,0,795,'0'),(10546,133,0,795,'/2/3/23d4d4ed3d.jpg'),(10547,206,0,795,'98% cotton, 2% elastane'),(10552,73,0,796,'Tan Corduroy Trousers-grey-Medium size'),(10553,84,0,796,'Tan Corduroy Trousers'),(10554,86,0,796,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(10555,87,0,796,'/2/3/23d4d4ed3d_1.jpg'),(10556,88,0,796,'/2/3/23d4d4ed3d_1.jpg'),(10557,89,0,796,'/2/3/23d4d4ed3d_1.jpg'),(10558,106,0,796,'container2'),(10559,121,0,796,'tan-corduroy-trousers-grey-medium-size'),(10560,132,0,796,'0'),(10561,133,0,796,'/2/3/23d4d4ed3d_1.jpg'),(10562,206,0,796,'98% cotton, 2% elastane'),(10567,73,0,797,'Tan Corduroy Trousers-grey-Large size'),(10568,84,0,797,'Tan Corduroy Trousers'),(10569,86,0,797,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(10570,87,0,797,'/2/3/23d4d4ed3d_2.jpg'),(10571,88,0,797,'/2/3/23d4d4ed3d_2.jpg'),(10572,89,0,797,'/2/3/23d4d4ed3d_2.jpg'),(10573,106,0,797,'container2'),(10574,121,0,797,'tan-corduroy-trousers-grey-large-size'),(10575,132,0,797,'0'),(10576,133,0,797,'/2/3/23d4d4ed3d_2.jpg'),(10577,206,0,797,'98% cotton, 2% elastane'),(10582,73,0,798,'Tan Corduroy Trousers-blue-Small size'),(10583,84,0,798,'Tan Corduroy Trousers'),(10584,86,0,798,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(10585,87,0,798,'/7/y/7y7y6y5g.jpg'),(10586,88,0,798,'/7/y/7y7y6y5g.jpg'),(10587,89,0,798,'/7/y/7y7y6y5g.jpg'),(10588,106,0,798,'container2'),(10589,121,0,798,'tan-corduroy-trousers-blue-small-size'),(10590,132,0,798,'0'),(10591,133,0,798,'/7/y/7y7y6y5g.jpg'),(10592,206,0,798,'98% cotton, 2% elastane'),(10597,73,0,799,'Tan Corduroy Trousers-blue-Medium size'),(10598,84,0,799,'Tan Corduroy Trousers'),(10599,86,0,799,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(10600,87,0,799,'/7/y/7y7y6y5g_1.jpg'),(10601,88,0,799,'/7/y/7y7y6y5g_1.jpg'),(10602,89,0,799,'/7/y/7y7y6y5g_1.jpg'),(10603,106,0,799,'container2'),(10604,121,0,799,'tan-corduroy-trousers-blue-medium-size'),(10605,132,0,799,'0'),(10606,133,0,799,'/7/y/7y7y6y5g_1.jpg'),(10607,206,0,799,'98% cotton, 2% elastane'),(10612,73,0,800,'Tan Corduroy Trousers-blue-Large size'),(10613,84,0,800,'Tan Corduroy Trousers'),(10614,86,0,800,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(10615,87,0,800,'/7/y/7y7y6y5g_2.jpg'),(10616,88,0,800,'/7/y/7y7y6y5g_2.jpg'),(10617,89,0,800,'/7/y/7y7y6y5g_2.jpg'),(10618,106,0,800,'container2'),(10619,121,0,800,'tan-corduroy-trousers-blue-large-size'),(10620,132,0,800,'0'),(10621,133,0,800,'/7/y/7y7y6y5g_2.jpg'),(10622,206,0,800,'98% cotton, 2% elastane'),(10627,73,0,801,'Tan Corduroy Trousers-red-Small size'),(10628,84,0,801,'Tan Corduroy Trousers'),(10629,86,0,801,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(10630,87,0,801,'/8/6/865u7hhh.jpg'),(10631,88,0,801,'/8/6/865u7hhh.jpg'),(10632,89,0,801,'/8/6/865u7hhh.jpg'),(10633,106,0,801,'container2'),(10634,121,0,801,'tan-corduroy-trousers-red-small-size'),(10635,132,0,801,'0'),(10636,133,0,801,'/8/6/865u7hhh.jpg'),(10637,206,0,801,'98% cotton, 2% elastane'),(10642,73,0,802,'Tan Corduroy Trousers-red-Medium size'),(10643,84,0,802,'Tan Corduroy Trousers'),(10644,86,0,802,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(10645,87,0,802,'/8/6/865u7hhh_1.jpg'),(10646,88,0,802,'/8/6/865u7hhh_1.jpg'),(10647,89,0,802,'/8/6/865u7hhh_1.jpg'),(10648,106,0,802,'container2'),(10649,121,0,802,'tan-corduroy-trousers-red-medium-size'),(10650,132,0,802,'0'),(10651,133,0,802,'/8/6/865u7hhh_1.jpg'),(10652,206,0,802,'98% cotton, 2% elastane'),(10657,73,0,803,'Tan Corduroy Trousers-red-Large size'),(10658,84,0,803,'Tan Corduroy Trousers'),(10659,86,0,803,'Tan Corduroy Trousers Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMa'),(10660,87,0,803,'/8/6/865u7hhh_2.jpg'),(10661,88,0,803,'/8/6/865u7hhh_2.jpg'),(10662,89,0,803,'/8/6/865u7hhh_2.jpg'),(10663,106,0,803,'container2'),(10664,121,0,803,'tan-corduroy-trousers-red-large-size'),(10665,132,0,803,'0'),(10666,133,0,803,'/8/6/865u7hhh_2.jpg'),(10667,206,0,803,'98% cotton, 2% elastane'),(10676,73,0,804,'Black Chino-brown-Small size'),(10677,84,0,804,'Black Chino'),(10678,86,0,804,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10679,87,0,804,'/d/3/d3d4433.jpg'),(10680,88,0,804,'/d/3/d3d4433.jpg'),(10681,89,0,804,'/d/3/d3d4433.jpg'),(10682,106,0,804,'container2'),(10683,121,0,804,'black-chino-brown-small-size'),(10684,132,0,804,'0'),(10685,133,0,804,'/d/3/d3d4433.jpg'),(10686,206,0,804,'98% cotton, 2% elastane'),(10691,73,0,805,'Black Chino-brown-Medium size'),(10692,84,0,805,'Black Chino'),(10693,86,0,805,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10694,87,0,805,'/d/3/d3d4433_1.jpg'),(10695,88,0,805,'/d/3/d3d4433_1.jpg'),(10696,89,0,805,'/d/3/d3d4433_1.jpg'),(10697,106,0,805,'container2'),(10698,121,0,805,'black-chino-brown-medium-size'),(10699,132,0,805,'0'),(10700,133,0,805,'/d/3/d3d4433_1.jpg'),(10701,206,0,805,'98% cotton, 2% elastane'),(10706,73,0,806,'Black Chino-brown-Large size'),(10707,84,0,806,'Black Chino'),(10708,86,0,806,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10709,87,0,806,'/d/3/d3d4433_2.jpg'),(10710,88,0,806,'/d/3/d3d4433_2.jpg'),(10711,89,0,806,'/d/3/d3d4433_2.jpg'),(10712,106,0,806,'container2'),(10713,121,0,806,'black-chino-brown-large-size'),(10714,132,0,806,'0'),(10715,133,0,806,'/d/3/d3d4433_2.jpg'),(10716,206,0,806,'98% cotton, 2% elastane'),(10721,73,0,807,'Black Chino-brown-Extra large size'),(10722,84,0,807,'Black Chino'),(10723,86,0,807,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10724,87,0,807,'/d/3/d3d4433_3.jpg'),(10725,88,0,807,'/d/3/d3d4433_3.jpg'),(10726,89,0,807,'/d/3/d3d4433_3.jpg'),(10727,106,0,807,'container2'),(10728,121,0,807,'black-chino-brown-extra-large-size'),(10729,132,0,807,'0'),(10730,133,0,807,'/d/3/d3d4433_3.jpg'),(10731,206,0,807,'98% cotton, 2% elastane'),(10736,73,0,808,'Black Chino-white-Small size'),(10737,84,0,808,'Black Chino'),(10738,86,0,808,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10739,87,0,808,'/4/y/4y56hrnbtb.jpg'),(10740,88,0,808,'/4/y/4y56hrnbtb.jpg'),(10741,89,0,808,'/4/y/4y56hrnbtb.jpg'),(10742,106,0,808,'container2'),(10743,121,0,808,'black-chino-white-small-size'),(10744,132,0,808,'0'),(10745,133,0,808,'/4/y/4y56hrnbtb.jpg'),(10746,206,0,808,'98% cotton, 2% elastane'),(10751,73,0,809,'Black Chino-white-Medium size'),(10752,84,0,809,'Black Chino'),(10753,86,0,809,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10754,87,0,809,'/4/y/4y56hrnbtb_1.jpg'),(10755,88,0,809,'/4/y/4y56hrnbtb_1.jpg'),(10756,89,0,809,'/4/y/4y56hrnbtb_1.jpg'),(10757,106,0,809,'container2'),(10758,121,0,809,'black-chino-white-medium-size'),(10759,132,0,809,'0'),(10760,133,0,809,'/4/y/4y56hrnbtb_1.jpg'),(10761,206,0,809,'98% cotton, 2% elastane'),(10766,73,0,810,'Black Chino-white-Large size'),(10767,84,0,810,'Black Chino'),(10768,86,0,810,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10769,87,0,810,'/4/y/4y56hrnbtb_2.jpg'),(10770,88,0,810,'/4/y/4y56hrnbtb_2.jpg'),(10771,89,0,810,'/4/y/4y56hrnbtb_2.jpg'),(10772,106,0,810,'container2'),(10773,121,0,810,'black-chino-white-large-size'),(10774,132,0,810,'0'),(10775,133,0,810,'/4/y/4y56hrnbtb_2.jpg'),(10776,206,0,810,'98% cotton, 2% elastane'),(10781,73,0,811,'Black Chino-white-Extra large size'),(10782,84,0,811,'Black Chino'),(10783,86,0,811,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10784,87,0,811,'/4/y/4y56hrnbtb_3.jpg'),(10785,88,0,811,'/4/y/4y56hrnbtb_3.jpg'),(10786,89,0,811,'/4/y/4y56hrnbtb_3.jpg'),(10787,106,0,811,'container2'),(10788,121,0,811,'black-chino-white-extra-large-size'),(10789,132,0,811,'0'),(10790,133,0,811,'/4/y/4y56hrnbtb_3.jpg'),(10791,206,0,811,'98% cotton, 2% elastane'),(10796,73,0,812,'Black Chino-grey-Small size'),(10797,84,0,812,'Black Chino'),(10798,86,0,812,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10799,87,0,812,'/7/6/7644gt5d.jpg'),(10800,88,0,812,'/7/6/7644gt5d.jpg'),(10801,89,0,812,'/7/6/7644gt5d.jpg'),(10802,106,0,812,'container2'),(10803,121,0,812,'black-chino-grey-small-size'),(10804,132,0,812,'0'),(10805,133,0,812,'/7/6/7644gt5d.jpg'),(10806,206,0,812,'98% cotton, 2% elastane'),(10811,73,0,813,'Black Chino-grey-Medium size'),(10812,84,0,813,'Black Chino'),(10813,86,0,813,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10814,87,0,813,'/7/6/7644gt5d_1.jpg'),(10815,88,0,813,'/7/6/7644gt5d_1.jpg'),(10816,89,0,813,'/7/6/7644gt5d_1.jpg'),(10817,106,0,813,'container2'),(10818,121,0,813,'black-chino-grey-medium-size'),(10819,132,0,813,'0'),(10820,133,0,813,'/7/6/7644gt5d_1.jpg'),(10821,206,0,813,'98% cotton, 2% elastane'),(10826,73,0,814,'Black Chino-grey-Large size'),(10827,84,0,814,'Black Chino'),(10828,86,0,814,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10829,87,0,814,'/7/6/7644gt5d_2.jpg'),(10830,88,0,814,'/7/6/7644gt5d_2.jpg'),(10831,89,0,814,'/7/6/7644gt5d_2.jpg'),(10832,106,0,814,'container2'),(10833,121,0,814,'black-chino-grey-large-size'),(10834,132,0,814,'0'),(10835,133,0,814,'/7/6/7644gt5d_2.jpg'),(10836,206,0,814,'98% cotton, 2% elastane'),(10841,73,0,815,'Black Chino-grey-Extra large size'),(10842,84,0,815,'Black Chino'),(10843,86,0,815,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10844,87,0,815,'/7/6/7644gt5d_3.jpg'),(10845,88,0,815,'/7/6/7644gt5d_3.jpg'),(10846,89,0,815,'/7/6/7644gt5d_3.jpg'),(10847,106,0,815,'container2'),(10848,121,0,815,'black-chino-grey-extra-large-size'),(10849,132,0,815,'0'),(10850,133,0,815,'/7/6/7644gt5d_3.jpg'),(10851,206,0,815,'98% cotton, 2% elastane'),(10856,73,0,816,'Black Chino-blue-Small size'),(10857,84,0,816,'Black Chino'),(10858,86,0,816,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10859,87,0,816,'/e/w/ewrf555.jpg'),(10860,88,0,816,'/e/w/ewrf555.jpg'),(10861,89,0,816,'/e/w/ewrf555.jpg'),(10862,106,0,816,'container2'),(10863,121,0,816,'black-chino-blue-small-size'),(10864,132,0,816,'0'),(10865,133,0,816,'/e/w/ewrf555.jpg'),(10866,206,0,816,'98% cotton, 2% elastane'),(10871,73,0,817,'Black Chino-blue-Medium size'),(10872,84,0,817,'Black Chino'),(10873,86,0,817,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10874,87,0,817,'/e/w/ewrf555_1.jpg'),(10875,88,0,817,'/e/w/ewrf555_1.jpg'),(10876,89,0,817,'/e/w/ewrf555_1.jpg'),(10877,106,0,817,'container2'),(10878,121,0,817,'black-chino-blue-medium-size'),(10879,132,0,817,'0'),(10880,133,0,817,'/e/w/ewrf555_1.jpg'),(10881,206,0,817,'98% cotton, 2% elastane'),(10886,73,0,818,'Black Chino-blue-Large size'),(10887,84,0,818,'Black Chino'),(10888,86,0,818,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10889,87,0,818,'/e/w/ewrf555_2.jpg'),(10890,88,0,818,'/e/w/ewrf555_2.jpg'),(10891,89,0,818,'/e/w/ewrf555_2.jpg'),(10892,106,0,818,'container2'),(10893,121,0,818,'black-chino-blue-large-size'),(10894,132,0,818,'0'),(10895,133,0,818,'/e/w/ewrf555_2.jpg'),(10896,206,0,818,'98% cotton, 2% elastane'),(10901,73,0,819,'Black Chino-blue-Extra large size'),(10902,84,0,819,'Black Chino'),(10903,86,0,819,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10904,87,0,819,'/e/w/ewrf555_3.jpg'),(10905,88,0,819,'/e/w/ewrf555_3.jpg'),(10906,89,0,819,'/e/w/ewrf555_3.jpg'),(10907,106,0,819,'container2'),(10908,121,0,819,'black-chino-blue-extra-large-size'),(10909,132,0,819,'0'),(10910,133,0,819,'/e/w/ewrf555_3.jpg'),(10911,206,0,819,'98% cotton, 2% elastane'),(10916,73,0,820,'Black Chino-red-Small size'),(10917,84,0,820,'Black Chino'),(10918,86,0,820,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10919,87,0,820,'/4/g/4g6j7j7j.jpg'),(10920,88,0,820,'/4/g/4g6j7j7j.jpg'),(10921,89,0,820,'/4/g/4g6j7j7j.jpg'),(10922,106,0,820,'container2'),(10923,121,0,820,'black-chino-red-small-size'),(10924,132,0,820,'0'),(10925,133,0,820,'/4/g/4g6j7j7j.jpg'),(10926,206,0,820,'98% cotton, 2% elastane'),(10931,73,0,821,'Black Chino-red-Medium size'),(10932,84,0,821,'Black Chino'),(10933,86,0,821,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10934,87,0,821,'/4/g/4g6j7j7j_1.jpg'),(10935,88,0,821,'/4/g/4g6j7j7j_1.jpg'),(10936,89,0,821,'/4/g/4g6j7j7j_1.jpg'),(10937,106,0,821,'container2'),(10938,121,0,821,'black-chino-red-medium-size'),(10939,132,0,821,'0'),(10940,133,0,821,'/4/g/4g6j7j7j_1.jpg'),(10941,206,0,821,'98% cotton, 2% elastane'),(10946,73,0,822,'Black Chino-red-Large size'),(10947,84,0,822,'Black Chino'),(10948,86,0,822,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10949,87,0,822,'/4/g/4g6j7j7j_2.jpg'),(10950,88,0,822,'/4/g/4g6j7j7j_2.jpg'),(10951,89,0,822,'/4/g/4g6j7j7j_2.jpg'),(10952,106,0,822,'container2'),(10953,121,0,822,'black-chino-red-large-size'),(10954,132,0,822,'0'),(10955,133,0,822,'/4/g/4g6j7j7j_2.jpg'),(10956,206,0,822,'98% cotton, 2% elastane'),(10961,73,0,823,'Black Chino-red-Extra large size'),(10962,84,0,823,'Black Chino'),(10963,86,0,823,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(10964,87,0,823,'/4/g/4g6j7j7j_3.jpg'),(10965,88,0,823,'/4/g/4g6j7j7j_3.jpg'),(10966,89,0,823,'/4/g/4g6j7j7j_3.jpg'),(10967,106,0,823,'container2'),(10968,121,0,823,'black-chino-red-extra-large-size'),(10969,132,0,823,'0'),(10970,133,0,823,'/4/g/4g6j7j7j_3.jpg'),(10971,206,0,823,'98% cotton, 2% elastane'),(10972,73,0,824,'Lawrence Grey Rollneck Pullover-white-Extra small size'),(10973,84,0,824,'Lawrence Grey Rollneck Pullover'),(10974,86,0,824,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(10975,87,0,824,'/2/2/22w2w1w2s2ss.jpg'),(10976,88,0,824,'/2/2/22w2w1w2s2ss.jpg'),(10977,89,0,824,'/2/2/22w2w1w2s2ss.jpg'),(10978,106,0,824,'container2'),(10979,121,0,824,'lawrence-grey-rollneck-pullover-white-extra-small-size'),(10980,132,0,824,'0'),(10981,133,0,824,'/2/2/22w2w1w2s2ss.jpg'),(10982,206,0,824,'50% merino, 50% acrylic'),(10987,73,0,825,'Lawrence Grey Rollneck Pullover-white-Small size'),(10988,84,0,825,'Lawrence Grey Rollneck Pullover'),(10989,86,0,825,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(10990,87,0,825,'/2/2/22w2w1w2s2ss_1.jpg'),(10991,88,0,825,'/2/2/22w2w1w2s2ss_1.jpg'),(10992,89,0,825,'/2/2/22w2w1w2s2ss_1.jpg'),(10993,106,0,825,'container2'),(10994,121,0,825,'lawrence-grey-rollneck-pullover-white-small-size'),(10995,132,0,825,'0'),(10996,133,0,825,'/2/2/22w2w1w2s2ss_1.jpg'),(10997,206,0,825,'50% merino, 50% acrylic'),(11002,73,0,826,'Lawrence Grey Rollneck Pullover-white-Medium size'),(11003,84,0,826,'Lawrence Grey Rollneck Pullover'),(11004,86,0,826,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11005,87,0,826,'/2/2/22w2w1w2s2ss_2.jpg'),(11006,88,0,826,'/2/2/22w2w1w2s2ss_2.jpg'),(11007,89,0,826,'/2/2/22w2w1w2s2ss_2.jpg'),(11008,106,0,826,'container2'),(11009,121,0,826,'lawrence-grey-rollneck-pullover-white-medium-size'),(11010,132,0,826,'0'),(11011,133,0,826,'/2/2/22w2w1w2s2ss_2.jpg'),(11012,206,0,826,'50% merino, 50% acrylic'),(11017,73,0,827,'Lawrence Grey Rollneck Pullover-white-Large size'),(11018,84,0,827,'Lawrence Grey Rollneck Pullover'),(11019,86,0,827,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11020,87,0,827,'/2/2/22w2w1w2s2ss_3.jpg'),(11021,88,0,827,'/2/2/22w2w1w2s2ss_3.jpg'),(11022,89,0,827,'/2/2/22w2w1w2s2ss_3.jpg'),(11023,106,0,827,'container2'),(11024,121,0,827,'lawrence-grey-rollneck-pullover-white-large-size'),(11025,132,0,827,'0'),(11026,133,0,827,'/2/2/22w2w1w2s2ss_3.jpg'),(11027,206,0,827,'50% merino, 50% acrylic'),(11032,73,0,828,'Lawrence Grey Rollneck Pullover-black-Extra small size'),(11033,84,0,828,'Lawrence Grey Rollneck Pullover'),(11034,86,0,828,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11035,87,0,828,'/4/f/4f45444r4r.jpg'),(11036,88,0,828,'/4/f/4f45444r4r.jpg'),(11037,89,0,828,'/4/f/4f45444r4r.jpg'),(11038,106,0,828,'container2'),(11039,121,0,828,'lawrence-grey-rollneck-pullover-black-extra-small-size'),(11040,132,0,828,'0'),(11041,133,0,828,'/4/f/4f45444r4r.jpg'),(11042,206,0,828,'50% merino, 50% acrylic'),(11047,73,0,829,'Lawrence Grey Rollneck Pullover-black-Small size'),(11048,84,0,829,'Lawrence Grey Rollneck Pullover'),(11049,86,0,829,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11050,87,0,829,'/4/f/4f45444r4r_1.jpg'),(11051,88,0,829,'/4/f/4f45444r4r_1.jpg'),(11052,89,0,829,'/4/f/4f45444r4r_1.jpg'),(11053,106,0,829,'container2'),(11054,121,0,829,'lawrence-grey-rollneck-pullover-black-small-size'),(11055,132,0,829,'0'),(11056,133,0,829,'/4/f/4f45444r4r_1.jpg'),(11057,206,0,829,'50% merino, 50% acrylic'),(11062,73,0,830,'Lawrence Grey Rollneck Pullover-black-Medium size'),(11063,84,0,830,'Lawrence Grey Rollneck Pullover'),(11064,86,0,830,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11065,87,0,830,'/4/f/4f45444r4r_2.jpg'),(11066,88,0,830,'/4/f/4f45444r4r_2.jpg'),(11067,89,0,830,'/4/f/4f45444r4r_2.jpg'),(11068,106,0,830,'container2'),(11069,121,0,830,'lawrence-grey-rollneck-pullover-black-medium-size'),(11070,132,0,830,'0'),(11071,133,0,830,'/4/f/4f45444r4r_2.jpg'),(11072,206,0,830,'50% merino, 50% acrylic'),(11077,73,0,831,'Lawrence Grey Rollneck Pullover-black-Large size'),(11078,84,0,831,'Lawrence Grey Rollneck Pullover'),(11079,86,0,831,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11080,87,0,831,'/4/f/4f45444r4r_3.jpg'),(11081,88,0,831,'/4/f/4f45444r4r_3.jpg'),(11082,89,0,831,'/4/f/4f45444r4r_3.jpg'),(11083,106,0,831,'container2'),(11084,121,0,831,'lawrence-grey-rollneck-pullover-black-large-size'),(11085,132,0,831,'0'),(11086,133,0,831,'/4/f/4f45444r4r_3.jpg'),(11087,206,0,831,'50% merino, 50% acrylic'),(11092,73,0,832,'Lawrence Grey Rollneck Pullover-grey-Extra small size'),(11093,84,0,832,'Lawrence Grey Rollneck Pullover'),(11094,86,0,832,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11095,87,0,832,'/3/d/3d2d2s3d4d4.jpg'),(11096,88,0,832,'/3/d/3d2d2s3d4d4.jpg'),(11097,89,0,832,'/3/d/3d2d2s3d4d4.jpg'),(11098,106,0,832,'container2'),(11099,121,0,832,'lawrence-grey-rollneck-pullover-grey-extra-small-size'),(11100,132,0,832,'0'),(11101,133,0,832,'/3/d/3d2d2s3d4d4.jpg'),(11102,206,0,832,'50% merino, 50% acrylic'),(11107,73,0,833,'Lawrence Grey Rollneck Pullover-grey-Small size'),(11108,84,0,833,'Lawrence Grey Rollneck Pullover'),(11109,86,0,833,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11110,87,0,833,'/3/d/3d2d2s3d4d4_1.jpg'),(11111,88,0,833,'/3/d/3d2d2s3d4d4_1.jpg'),(11112,89,0,833,'/3/d/3d2d2s3d4d4_1.jpg'),(11113,106,0,833,'container2'),(11114,121,0,833,'lawrence-grey-rollneck-pullover-grey-small-size'),(11115,132,0,833,'0'),(11116,133,0,833,'/3/d/3d2d2s3d4d4_1.jpg'),(11117,206,0,833,'50% merino, 50% acrylic'),(11122,73,0,834,'Lawrence Grey Rollneck Pullover-grey-Medium size'),(11123,84,0,834,'Lawrence Grey Rollneck Pullover'),(11124,86,0,834,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11125,87,0,834,'/3/d/3d2d2s3d4d4_2.jpg'),(11126,88,0,834,'/3/d/3d2d2s3d4d4_2.jpg'),(11127,89,0,834,'/3/d/3d2d2s3d4d4_2.jpg'),(11128,106,0,834,'container2'),(11129,121,0,834,'lawrence-grey-rollneck-pullover-grey-medium-size'),(11130,132,0,834,'0'),(11131,133,0,834,'/3/d/3d2d2s3d4d4_2.jpg'),(11132,206,0,834,'50% merino, 50% acrylic'),(11137,73,0,835,'Lawrence Grey Rollneck Pullover-grey-Large size'),(11138,84,0,835,'Lawrence Grey Rollneck Pullover'),(11139,86,0,835,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11140,87,0,835,'/3/d/3d2d2s3d4d4_3.jpg'),(11141,88,0,835,'/3/d/3d2d2s3d4d4_3.jpg'),(11142,89,0,835,'/3/d/3d2d2s3d4d4_3.jpg'),(11143,106,0,835,'container2'),(11144,121,0,835,'lawrence-grey-rollneck-pullover-grey-large-size'),(11145,132,0,835,'0'),(11146,133,0,835,'/3/d/3d2d2s3d4d4_3.jpg'),(11147,206,0,835,'50% merino, 50% acrylic'),(11152,73,0,836,'Lawrence Grey Rollneck Pullover-blue-Extra small size'),(11153,84,0,836,'Lawrence Grey Rollneck Pullover'),(11154,86,0,836,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11155,87,0,836,'/8/j/8jh6f4d4tgg.jpg'),(11156,88,0,836,'/8/j/8jh6f4d4tgg.jpg'),(11157,89,0,836,'/8/j/8jh6f4d4tgg.jpg'),(11158,106,0,836,'container2'),(11159,121,0,836,'lawrence-grey-rollneck-pullover-blue-extra-small-size'),(11160,132,0,836,'0'),(11161,133,0,836,'/8/j/8jh6f4d4tgg.jpg'),(11162,206,0,836,'50% merino, 50% acrylic'),(11167,73,0,837,'Lawrence Grey Rollneck Pullover-blue-Small size'),(11168,84,0,837,'Lawrence Grey Rollneck Pullover'),(11169,86,0,837,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11170,87,0,837,'/8/j/8jh6f4d4tgg_1.jpg'),(11171,88,0,837,'/8/j/8jh6f4d4tgg_1.jpg'),(11172,89,0,837,'/8/j/8jh6f4d4tgg_1.jpg'),(11173,106,0,837,'container2'),(11174,121,0,837,'lawrence-grey-rollneck-pullover-blue-small-size'),(11175,132,0,837,'0'),(11176,133,0,837,'/8/j/8jh6f4d4tgg_1.jpg'),(11177,206,0,837,'50% merino, 50% acrylic'),(11182,73,0,838,'Lawrence Grey Rollneck Pullover-blue-Medium size'),(11183,84,0,838,'Lawrence Grey Rollneck Pullover'),(11184,86,0,838,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11185,87,0,838,'/8/j/8jh6f4d4tgg_2.jpg'),(11186,88,0,838,'/8/j/8jh6f4d4tgg_2.jpg'),(11187,89,0,838,'/8/j/8jh6f4d4tgg_2.jpg'),(11188,106,0,838,'container2'),(11189,121,0,838,'lawrence-grey-rollneck-pullover-blue-medium-size'),(11190,132,0,838,'0'),(11191,133,0,838,'/8/j/8jh6f4d4tgg_2.jpg'),(11192,206,0,838,'50% merino, 50% acrylic'),(11197,73,0,839,'Lawrence Grey Rollneck Pullover-blue-Large size'),(11198,84,0,839,'Lawrence Grey Rollneck Pullover'),(11199,86,0,839,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11200,87,0,839,'/8/j/8jh6f4d4tgg_3.jpg'),(11201,88,0,839,'/8/j/8jh6f4d4tgg_3.jpg'),(11202,89,0,839,'/8/j/8jh6f4d4tgg_3.jpg'),(11203,106,0,839,'container2'),(11204,121,0,839,'lawrence-grey-rollneck-pullover-blue-large-size'),(11205,132,0,839,'0'),(11206,133,0,839,'/8/j/8jh6f4d4tgg_3.jpg'),(11207,206,0,839,'50% merino, 50% acrylic'),(11212,73,0,840,'Lawrence Grey Rollneck Pullover-red-Extra small size'),(11213,84,0,840,'Lawrence Grey Rollneck Pullover'),(11214,86,0,840,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11215,87,0,840,'/3/3/33d4f4f3f_1.jpg'),(11216,88,0,840,'/3/3/33d4f4f3f_1.jpg'),(11217,89,0,840,'/3/3/33d4f4f3f_1.jpg'),(11218,106,0,840,'container2'),(11219,121,0,840,'lawrence-grey-rollneck-pullover-red-extra-small-size'),(11220,132,0,840,'0'),(11221,133,0,840,'/3/3/33d4f4f3f_1.jpg'),(11222,206,0,840,'50% merino, 50% acrylic'),(11227,73,0,841,'Lawrence Grey Rollneck Pullover-red-Small size'),(11228,84,0,841,'Lawrence Grey Rollneck Pullover'),(11229,86,0,841,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11230,87,0,841,'/3/3/33d4f4f3f_1_1.jpg'),(11231,88,0,841,'/3/3/33d4f4f3f_1_1.jpg'),(11232,89,0,841,'/3/3/33d4f4f3f_1_1.jpg'),(11233,106,0,841,'container2'),(11234,121,0,841,'lawrence-grey-rollneck-pullover-red-small-size'),(11235,132,0,841,'0'),(11236,133,0,841,'/3/3/33d4f4f3f_1_1.jpg'),(11237,206,0,841,'50% merino, 50% acrylic'),(11242,73,0,842,'Lawrence Grey Rollneck Pullover-red-Medium size'),(11243,84,0,842,'Lawrence Grey Rollneck Pullover'),(11244,86,0,842,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11245,87,0,842,'/3/3/33d4f4f3f_1_2.jpg'),(11246,88,0,842,'/3/3/33d4f4f3f_1_2.jpg'),(11247,89,0,842,'/3/3/33d4f4f3f_1_2.jpg'),(11248,106,0,842,'container2'),(11249,121,0,842,'lawrence-grey-rollneck-pullover-red-medium-size'),(11250,132,0,842,'0'),(11251,133,0,842,'/3/3/33d4f4f3f_1_2.jpg'),(11252,206,0,842,'50% merino, 50% acrylic'),(11257,73,0,843,'Lawrence Grey Rollneck Pullover-red-Large size'),(11258,84,0,843,'Lawrence Grey Rollneck Pullover'),(11259,86,0,843,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(11260,87,0,843,'/3/3/33d4f4f3f_1_3.jpg'),(11261,88,0,843,'/3/3/33d4f4f3f_1_3.jpg'),(11262,89,0,843,'/3/3/33d4f4f3f_1_3.jpg'),(11263,106,0,843,'container2'),(11264,121,0,843,'lawrence-grey-rollneck-pullover-red-large-size'),(11265,132,0,843,'0'),(11266,133,0,843,'/3/3/33d4f4f3f_1_3.jpg'),(11267,206,0,843,'50% merino, 50% acrylic'),(11280,73,0,844,'Navy Chino-brown-Small size'),(11281,84,0,844,'Navy Chino'),(11282,86,0,844,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11283,87,0,844,'/3/g/3g6h765ff.jpg'),(11284,88,0,844,'/3/g/3g6h765ff.jpg'),(11285,89,0,844,'/3/g/3g6h765ff.jpg'),(11286,106,0,844,'container2'),(11287,121,0,844,'navy-chino-brown-small-size'),(11288,132,0,844,'0'),(11289,133,0,844,'/3/g/3g6h765ff.jpg'),(11290,206,0,844,'98% cotton, 2% elastane'),(11295,73,0,845,'Navy Chino-brown-Medium size'),(11296,84,0,845,'Navy Chino'),(11297,86,0,845,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11298,87,0,845,'/3/g/3g6h765ff_1.jpg'),(11299,88,0,845,'/3/g/3g6h765ff_1.jpg'),(11300,89,0,845,'/3/g/3g6h765ff_1.jpg'),(11301,106,0,845,'container2'),(11302,121,0,845,'navy-chino-brown-medium-size'),(11303,132,0,845,'0'),(11304,133,0,845,'/3/g/3g6h765ff_1.jpg'),(11305,206,0,845,'98% cotton, 2% elastane'),(11310,73,0,846,'Navy Chino-brown-Large size'),(11311,84,0,846,'Navy Chino'),(11312,86,0,846,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11313,87,0,846,'/3/g/3g6h765ff_2.jpg'),(11314,88,0,846,'/3/g/3g6h765ff_2.jpg'),(11315,89,0,846,'/3/g/3g6h765ff_2.jpg'),(11316,106,0,846,'container2'),(11317,121,0,846,'navy-chino-brown-large-size'),(11318,132,0,846,'0'),(11319,133,0,846,'/3/g/3g6h765ff_2.jpg'),(11320,206,0,846,'98% cotton, 2% elastane'),(11325,73,0,847,'Navy Chino-brown-Extra large size'),(11326,84,0,847,'Navy Chino'),(11327,86,0,847,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11328,87,0,847,'/3/g/3g6h765ff_3.jpg'),(11329,88,0,847,'/3/g/3g6h765ff_3.jpg'),(11330,89,0,847,'/3/g/3g6h765ff_3.jpg'),(11331,106,0,847,'container2'),(11332,121,0,847,'navy-chino-brown-extra-large-size'),(11333,132,0,847,'0'),(11334,133,0,847,'/3/g/3g6h765ff_3.jpg'),(11335,206,0,847,'98% cotton, 2% elastane'),(11340,73,0,848,'Navy Chino-white-Small size'),(11341,84,0,848,'Navy Chino'),(11342,86,0,848,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11343,87,0,848,'/3/f/3f4f33d3d3d.jpg'),(11344,88,0,848,'/3/f/3f4f33d3d3d.jpg'),(11345,89,0,848,'/3/f/3f4f33d3d3d.jpg'),(11346,106,0,848,'container2'),(11347,121,0,848,'navy-chino-white-small-size'),(11348,132,0,848,'0'),(11349,133,0,848,'/3/f/3f4f33d3d3d.jpg'),(11350,206,0,848,'98% cotton, 2% elastane'),(11355,73,0,849,'Navy Chino-white-Medium size'),(11356,84,0,849,'Navy Chino'),(11357,86,0,849,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11358,87,0,849,'/3/f/3f4f33d3d3d_1.jpg'),(11359,88,0,849,'/3/f/3f4f33d3d3d_1.jpg'),(11360,89,0,849,'/3/f/3f4f33d3d3d_1.jpg'),(11361,106,0,849,'container2'),(11362,121,0,849,'navy-chino-white-medium-size'),(11363,132,0,849,'0'),(11364,133,0,849,'/3/f/3f4f33d3d3d_1.jpg'),(11365,206,0,849,'98% cotton, 2% elastane'),(11370,73,0,850,'Navy Chino-white-Large size'),(11371,84,0,850,'Navy Chino'),(11372,86,0,850,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11373,87,0,850,'/3/f/3f4f33d3d3d_2.jpg'),(11374,88,0,850,'/3/f/3f4f33d3d3d_2.jpg'),(11375,89,0,850,'/3/f/3f4f33d3d3d_2.jpg'),(11376,106,0,850,'container2'),(11377,121,0,850,'navy-chino-white-large-size'),(11378,132,0,850,'0'),(11379,133,0,850,'/3/f/3f4f33d3d3d_2.jpg'),(11380,206,0,850,'98% cotton, 2% elastane'),(11385,73,0,851,'Navy Chino-white-Extra large size'),(11386,84,0,851,'Navy Chino'),(11387,86,0,851,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11388,87,0,851,'/3/f/3f4f33d3d3d_3.jpg'),(11389,88,0,851,'/3/f/3f4f33d3d3d_3.jpg'),(11390,89,0,851,'/3/f/3f4f33d3d3d_3.jpg'),(11391,106,0,851,'container2'),(11392,121,0,851,'navy-chino-white-extra-large-size'),(11393,132,0,851,'0'),(11394,133,0,851,'/3/f/3f4f33d3d3d_3.jpg'),(11395,206,0,851,'98% cotton, 2% elastane'),(11400,73,0,852,'Navy Chino-grey-Small size'),(11401,84,0,852,'Navy Chino'),(11402,86,0,852,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11403,87,0,852,'/3/f/3f5g3d3d.jpg'),(11404,88,0,852,'/3/f/3f5g3d3d.jpg'),(11405,89,0,852,'/3/f/3f5g3d3d.jpg'),(11406,106,0,852,'container2'),(11407,121,0,852,'navy-chino-grey-small-size'),(11408,132,0,852,'0'),(11409,133,0,852,'/3/f/3f5g3d3d.jpg'),(11410,206,0,852,'98% cotton, 2% elastane'),(11415,73,0,853,'Navy Chino-grey-Medium size'),(11416,84,0,853,'Navy Chino'),(11417,86,0,853,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11418,87,0,853,'/3/f/3f5g3d3d_1.jpg'),(11419,88,0,853,'/3/f/3f5g3d3d_1.jpg'),(11420,89,0,853,'/3/f/3f5g3d3d_1.jpg'),(11421,106,0,853,'container2'),(11422,121,0,853,'navy-chino-grey-medium-size'),(11423,132,0,853,'0'),(11424,133,0,853,'/3/f/3f5g3d3d_1.jpg'),(11425,206,0,853,'98% cotton, 2% elastane'),(11430,73,0,854,'Navy Chino-grey-Large size'),(11431,84,0,854,'Navy Chino'),(11432,86,0,854,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11433,87,0,854,'/3/f/3f5g3d3d_2.jpg'),(11434,88,0,854,'/3/f/3f5g3d3d_2.jpg'),(11435,89,0,854,'/3/f/3f5g3d3d_2.jpg'),(11436,106,0,854,'container2'),(11437,121,0,854,'navy-chino-grey-large-size'),(11438,132,0,854,'0'),(11439,133,0,854,'/3/f/3f5g3d3d_2.jpg'),(11440,206,0,854,'98% cotton, 2% elastane'),(11445,73,0,855,'Navy Chino-grey-Extra large size'),(11446,84,0,855,'Navy Chino'),(11447,86,0,855,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11448,87,0,855,'/3/f/3f5g3d3d_3.jpg'),(11449,88,0,855,'/3/f/3f5g3d3d_3.jpg'),(11450,89,0,855,'/3/f/3f5g3d3d_3.jpg'),(11451,106,0,855,'container2'),(11452,121,0,855,'navy-chino-grey-extra-large-size'),(11453,132,0,855,'0'),(11454,133,0,855,'/3/f/3f5g3d3d_3.jpg'),(11455,206,0,855,'98% cotton, 2% elastane'),(11460,73,0,856,'Navy Chino-blue-Small size'),(11461,84,0,856,'Navy Chino'),(11462,86,0,856,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11463,87,0,856,'/4/4/4442dd.jpg'),(11464,88,0,856,'/4/4/4442dd.jpg'),(11465,89,0,856,'/4/4/4442dd.jpg'),(11466,106,0,856,'container2'),(11467,121,0,856,'navy-chino-blue-small-size'),(11468,132,0,856,'0'),(11469,133,0,856,'/4/4/4442dd.jpg'),(11470,206,0,856,'98% cotton, 2% elastane'),(11475,73,0,857,'Navy Chino-blue-Medium size'),(11476,84,0,857,'Navy Chino'),(11477,86,0,857,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11478,87,0,857,'/4/4/4442dd_1.jpg'),(11479,88,0,857,'/4/4/4442dd_1.jpg'),(11480,89,0,857,'/4/4/4442dd_1.jpg'),(11481,106,0,857,'container2'),(11482,121,0,857,'navy-chino-blue-medium-size'),(11483,132,0,857,'0'),(11484,133,0,857,'/4/4/4442dd_1.jpg'),(11485,206,0,857,'98% cotton, 2% elastane'),(11490,73,0,858,'Navy Chino-blue-Large size'),(11491,84,0,858,'Navy Chino'),(11492,86,0,858,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11493,87,0,858,'/4/4/4442dd_2.jpg'),(11494,88,0,858,'/4/4/4442dd_2.jpg'),(11495,89,0,858,'/4/4/4442dd_2.jpg'),(11496,106,0,858,'container2'),(11497,121,0,858,'navy-chino-blue-large-size'),(11498,132,0,858,'0'),(11499,133,0,858,'/4/4/4442dd_2.jpg'),(11500,206,0,858,'98% cotton, 2% elastane'),(11505,73,0,859,'Navy Chino-blue-Extra large size'),(11506,84,0,859,'Navy Chino'),(11507,86,0,859,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11508,87,0,859,'/4/4/4442dd_3.jpg'),(11509,88,0,859,'/4/4/4442dd_3.jpg'),(11510,89,0,859,'/4/4/4442dd_3.jpg'),(11511,106,0,859,'container2'),(11512,121,0,859,'navy-chino-blue-extra-large-size'),(11513,132,0,859,'0'),(11514,133,0,859,'/4/4/4442dd_3.jpg'),(11515,206,0,859,'98% cotton, 2% elastane'),(11520,73,0,860,'Navy Chino-red-Small size'),(11521,84,0,860,'Navy Chino'),(11522,86,0,860,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11523,87,0,860,'/2/4/24t434fdd.jpg'),(11524,88,0,860,'/2/4/24t434fdd.jpg'),(11525,89,0,860,'/2/4/24t434fdd.jpg'),(11526,106,0,860,'container2'),(11527,121,0,860,'navy-chino-red-small-size'),(11528,132,0,860,'0'),(11529,133,0,860,'/2/4/24t434fdd.jpg'),(11530,206,0,860,'98% cotton, 2% elastane'),(11535,73,0,861,'Navy Chino-red-Medium size'),(11536,84,0,861,'Navy Chino'),(11537,86,0,861,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11538,87,0,861,'/2/4/24t434fdd_1.jpg'),(11539,88,0,861,'/2/4/24t434fdd_1.jpg'),(11540,89,0,861,'/2/4/24t434fdd_1.jpg'),(11541,106,0,861,'container2'),(11542,121,0,861,'navy-chino-red-medium-size'),(11543,132,0,861,'0'),(11544,133,0,861,'/2/4/24t434fdd_1.jpg'),(11545,206,0,861,'98% cotton, 2% elastane'),(11550,73,0,862,'Navy Chino-red-Large size'),(11551,84,0,862,'Navy Chino'),(11552,86,0,862,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11553,87,0,862,'/2/4/24t434fdd_2.jpg'),(11554,88,0,862,'/2/4/24t434fdd_2.jpg'),(11555,89,0,862,'/2/4/24t434fdd_2.jpg'),(11556,106,0,862,'container2'),(11557,121,0,862,'navy-chino-red-large-size'),(11558,132,0,862,'0'),(11559,133,0,862,'/2/4/24t434fdd_2.jpg'),(11560,206,0,862,'98% cotton, 2% elastane'),(11565,73,0,863,'Navy Chino-red-Extra large size'),(11566,84,0,863,'Navy Chino'),(11567,86,0,863,'Navy Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped p'),(11568,87,0,863,'/2/4/24t434fdd_3.jpg'),(11569,88,0,863,'/2/4/24t434fdd_3.jpg'),(11570,89,0,863,'/2/4/24t434fdd_3.jpg'),(11571,106,0,863,'container2'),(11572,121,0,863,'navy-chino-red-extra-large-size'),(11573,132,0,863,'0'),(11574,133,0,863,'/2/4/24t434fdd_3.jpg'),(11575,206,0,863,'98% cotton, 2% elastane'),(11584,73,0,864,'Dark Grey Chino-brown-Small size'),(11585,84,0,864,'Dark Grey Chino'),(11586,86,0,864,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(11587,87,0,864,'/4/5/4546gf3d32.jpg'),(11588,88,0,864,'/4/5/4546gf3d32.jpg'),(11589,89,0,864,'/4/5/4546gf3d32.jpg'),(11590,106,0,864,'container2'),(11591,121,0,864,'dark-grey-chino-brown-small-size'),(11592,132,0,864,'0'),(11593,133,0,864,'/4/5/4546gf3d32.jpg'),(11594,206,0,864,'98% cotton, 2% elastane'),(11599,73,0,865,'Dark Grey Chino-brown-Medium size'),(11600,84,0,865,'Dark Grey Chino'),(11601,86,0,865,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(11602,87,0,865,'/4/5/4546gf3d32_1.jpg'),(11603,88,0,865,'/4/5/4546gf3d32_1.jpg'),(11604,89,0,865,'/4/5/4546gf3d32_1.jpg'),(11605,106,0,865,'container2'),(11606,121,0,865,'dark-grey-chino-brown-medium-size'),(11607,132,0,865,'0'),(11608,133,0,865,'/4/5/4546gf3d32_1.jpg'),(11609,206,0,865,'98% cotton, 2% elastane'),(11614,73,0,866,'Dark Grey Chino-brown-Large size'),(11615,84,0,866,'Dark Grey Chino'),(11616,86,0,866,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(11617,87,0,866,'/4/5/4546gf3d32_2.jpg'),(11618,88,0,866,'/4/5/4546gf3d32_2.jpg'),(11619,89,0,866,'/4/5/4546gf3d32_2.jpg'),(11620,106,0,866,'container2'),(11621,121,0,866,'dark-grey-chino-brown-large-size'),(11622,132,0,866,'0'),(11623,133,0,866,'/4/5/4546gf3d32_2.jpg'),(11624,206,0,866,'98% cotton, 2% elastane'),(11629,73,0,867,'Dark Grey Chino-white-Small size'),(11630,84,0,867,'Dark Grey Chino'),(11631,86,0,867,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(11632,87,0,867,'/2/e/2e3d3333.jpg'),(11633,88,0,867,'/2/e/2e3d3333.jpg'),(11634,89,0,867,'/2/e/2e3d3333.jpg'),(11635,106,0,867,'container2'),(11636,121,0,867,'dark-grey-chino-white-small-size'),(11637,132,0,867,'0'),(11638,133,0,867,'/2/e/2e3d3333.jpg'),(11639,206,0,867,'98% cotton, 2% elastane'),(11644,73,0,868,'Dark Grey Chino-white-Medium size'),(11645,84,0,868,'Dark Grey Chino'),(11646,86,0,868,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(11647,87,0,868,'/2/e/2e3d3333_1.jpg'),(11648,88,0,868,'/2/e/2e3d3333_1.jpg'),(11649,89,0,868,'/2/e/2e3d3333_1.jpg'),(11650,106,0,868,'container2'),(11651,121,0,868,'dark-grey-chino-white-medium-size'),(11652,132,0,868,'0'),(11653,133,0,868,'/2/e/2e3d3333_1.jpg'),(11654,206,0,868,'98% cotton, 2% elastane'),(11659,73,0,869,'Dark Grey Chino-white-Large size'),(11660,84,0,869,'Dark Grey Chino'),(11661,86,0,869,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(11662,87,0,869,'/2/e/2e3d3333_2.jpg'),(11663,88,0,869,'/2/e/2e3d3333_2.jpg'),(11664,89,0,869,'/2/e/2e3d3333_2.jpg'),(11665,106,0,869,'container2'),(11666,121,0,869,'dark-grey-chino-white-large-size'),(11667,132,0,869,'0'),(11668,133,0,869,'/2/e/2e3d3333_2.jpg'),(11669,206,0,869,'98% cotton, 2% elastane'),(11674,73,0,870,'Dark Grey Chino-black-Small size'),(11675,84,0,870,'Dark Grey Chino'),(11676,86,0,870,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(11677,87,0,870,'/3/2/3234tfee.jpg'),(11678,88,0,870,'/3/2/3234tfee.jpg'),(11679,89,0,870,'/3/2/3234tfee.jpg'),(11680,106,0,870,'container2'),(11681,121,0,870,'dark-grey-chino-black-small-size'),(11682,132,0,870,'0'),(11683,133,0,870,'/3/2/3234tfee.jpg'),(11684,206,0,870,'98% cotton, 2% elastane'),(11689,73,0,871,'Dark Grey Chino-black-Medium size'),(11690,84,0,871,'Dark Grey Chino'),(11691,86,0,871,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(11692,87,0,871,'/3/2/3234tfee_1.jpg'),(11693,88,0,871,'/3/2/3234tfee_1.jpg'),(11694,89,0,871,'/3/2/3234tfee_1.jpg'),(11695,106,0,871,'container2'),(11696,121,0,871,'dark-grey-chino-black-medium-size'),(11697,132,0,871,'0'),(11698,133,0,871,'/3/2/3234tfee_1.jpg'),(11699,206,0,871,'98% cotton, 2% elastane'),(11704,73,0,872,'Dark Grey Chino-black-Large size'),(11705,84,0,872,'Dark Grey Chino'),(11706,86,0,872,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(11707,87,0,872,'/3/2/3234tfee_2.jpg'),(11708,88,0,872,'/3/2/3234tfee_2.jpg'),(11709,89,0,872,'/3/2/3234tfee_2.jpg'),(11710,106,0,872,'container2'),(11711,121,0,872,'dark-grey-chino-black-large-size'),(11712,132,0,872,'0'),(11713,133,0,872,'/3/2/3234tfee_2.jpg'),(11714,206,0,872,'98% cotton, 2% elastane'),(11719,73,0,873,'Dark Grey Chino-blue-Small size'),(11720,84,0,873,'Dark Grey Chino'),(11721,86,0,873,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(11722,87,0,873,'/2/3/23d34d2dww.jpg'),(11723,88,0,873,'/2/3/23d34d2dww.jpg'),(11724,89,0,873,'/2/3/23d34d2dww.jpg'),(11725,106,0,873,'container2'),(11726,121,0,873,'dark-grey-chino-blue-small-size'),(11727,132,0,873,'0'),(11728,133,0,873,'/2/3/23d34d2dww.jpg'),(11729,206,0,873,'98% cotton, 2% elastane'),(11734,73,0,874,'Dark Grey Chino-blue-Medium size'),(11735,84,0,874,'Dark Grey Chino'),(11736,86,0,874,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(11737,87,0,874,'/2/3/23d34d2dww_1.jpg'),(11738,88,0,874,'/2/3/23d34d2dww_1.jpg'),(11739,89,0,874,'/2/3/23d34d2dww_1.jpg'),(11740,106,0,874,'container2'),(11741,121,0,874,'dark-grey-chino-blue-medium-size'),(11742,132,0,874,'0'),(11743,133,0,874,'/2/3/23d34d2dww_1.jpg'),(11744,206,0,874,'98% cotton, 2% elastane'),(11749,73,0,875,'Dark Grey Chino-blue-Large size'),(11750,84,0,875,'Dark Grey Chino'),(11751,86,0,875,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(11752,87,0,875,'/2/3/23d34d2dww_2.jpg'),(11753,88,0,875,'/2/3/23d34d2dww_2.jpg'),(11754,89,0,875,'/2/3/23d34d2dww_2.jpg'),(11755,106,0,875,'container2'),(11756,121,0,875,'dark-grey-chino-blue-large-size'),(11757,132,0,875,'0'),(11758,133,0,875,'/2/3/23d34d2dww_2.jpg'),(11759,206,0,875,'98% cotton, 2% elastane'),(11764,73,0,876,'Dark Grey Chino-red-Small size'),(11765,84,0,876,'Dark Grey Chino'),(11766,86,0,876,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(11767,87,0,876,'/h/6/h66544.jpg'),(11768,88,0,876,'/h/6/h66544.jpg'),(11769,89,0,876,'/h/6/h66544.jpg'),(11770,106,0,876,'container2'),(11771,121,0,876,'dark-grey-chino-red-small-size'),(11772,132,0,876,'0'),(11773,133,0,876,'/h/6/h66544.jpg'),(11774,206,0,876,'98% cotton, 2% elastane'),(11779,73,0,877,'Dark Grey Chino-red-Medium size'),(11780,84,0,877,'Dark Grey Chino'),(11781,86,0,877,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(11782,87,0,877,'/h/6/h66544_1.jpg'),(11783,88,0,877,'/h/6/h66544_1.jpg'),(11784,89,0,877,'/h/6/h66544_1.jpg'),(11785,106,0,877,'container2'),(11786,121,0,877,'dark-grey-chino-red-medium-size'),(11787,132,0,877,'0'),(11788,133,0,877,'/h/6/h66544_1.jpg'),(11789,206,0,877,'98% cotton, 2% elastane'),(11794,73,0,878,'Dark Grey Chino-red-Large size'),(11795,84,0,878,'Dark Grey Chino'),(11796,86,0,878,'Dark Grey Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned p'),(11797,87,0,878,'/h/6/h66544_2.jpg'),(11798,88,0,878,'/h/6/h66544_2.jpg'),(11799,89,0,878,'/h/6/h66544_2.jpg'),(11800,106,0,878,'container2'),(11801,121,0,878,'dark-grey-chino-red-large-size'),(11802,132,0,878,'0'),(11803,133,0,878,'/h/6/h66544_2.jpg'),(11804,206,0,878,'98% cotton, 2% elastane'),(11813,73,0,879,'Tommy Hilfiger-brown-Extra small size'),(11814,84,0,879,'Tommy Hilfiger'),(11815,86,0,879,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(11816,87,0,879,'/9/8/9876t.jpg'),(11817,88,0,879,'/9/8/9876t.jpg'),(11818,89,0,879,'/9/8/9876t.jpg'),(11819,106,0,879,'container2'),(11820,121,0,879,'tommy-hilfiger-brown-extra-small-size'),(11821,132,0,879,'0'),(11822,133,0,879,'/9/8/9876t.jpg'),(11823,206,0,879,'98% cotton, 2% elastane'),(11828,73,0,880,'Tommy Hilfiger-brown-Small size'),(11829,84,0,880,'Tommy Hilfiger'),(11830,86,0,880,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(11831,87,0,880,'/9/8/9876t_1.jpg'),(11832,88,0,880,'/9/8/9876t_1.jpg'),(11833,89,0,880,'/9/8/9876t_1.jpg'),(11834,106,0,880,'container2'),(11835,121,0,880,'tommy-hilfiger-brown-small-size'),(11836,132,0,880,'0'),(11837,133,0,880,'/9/8/9876t_1.jpg'),(11838,206,0,880,'98% cotton, 2% elastane'),(11843,73,0,881,'Tommy Hilfiger-brown-Medium size'),(11844,84,0,881,'Tommy Hilfiger'),(11845,86,0,881,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(11846,87,0,881,'/9/8/9876t_2.jpg'),(11847,88,0,881,'/9/8/9876t_2.jpg'),(11848,89,0,881,'/9/8/9876t_2.jpg'),(11849,106,0,881,'container2'),(11850,121,0,881,'tommy-hilfiger-brown-medium-size'),(11851,132,0,881,'0'),(11852,133,0,881,'/9/8/9876t_2.jpg'),(11853,206,0,881,'98% cotton, 2% elastane'),(11858,73,0,882,'Tommy Hilfiger-brown-Large size'),(11859,84,0,882,'Tommy Hilfiger'),(11860,86,0,882,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(11861,87,0,882,'/9/8/9876t_3.jpg'),(11862,88,0,882,'/9/8/9876t_3.jpg'),(11863,89,0,882,'/9/8/9876t_3.jpg'),(11864,106,0,882,'container2'),(11865,121,0,882,'tommy-hilfiger-brown-large-size'),(11866,132,0,882,'0'),(11867,133,0,882,'/9/8/9876t_3.jpg'),(11868,206,0,882,'98% cotton, 2% elastane'),(11873,73,0,883,'Tommy Hilfiger-brown-Extra large size'),(11874,84,0,883,'Tommy Hilfiger'),(11875,86,0,883,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(11876,87,0,883,'/9/8/9876t_4.jpg'),(11877,88,0,883,'/9/8/9876t_4.jpg'),(11878,89,0,883,'/9/8/9876t_4.jpg'),(11879,106,0,883,'container2'),(11880,121,0,883,'tommy-hilfiger-brown-extra-large-size'),(11881,132,0,883,'0'),(11882,133,0,883,'/9/8/9876t_4.jpg'),(11883,206,0,883,'98% cotton, 2% elastane'),(11888,73,0,884,'Tommy Hilfiger-white-Extra small size'),(11889,84,0,884,'Tommy Hilfiger'),(11890,86,0,884,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(11891,87,0,884,'/7/h/7h66ggg.jpg'),(11892,88,0,884,'/7/h/7h66ggg.jpg'),(11893,89,0,884,'/7/h/7h66ggg.jpg'),(11894,106,0,884,'container2'),(11895,121,0,884,'tommy-hilfiger-white-extra-small-size'),(11896,132,0,884,'0'),(11897,133,0,884,'/7/h/7h66ggg.jpg'),(11898,206,0,884,'98% cotton, 2% elastane'),(11903,73,0,885,'Tommy Hilfiger-white-Small size'),(11904,84,0,885,'Tommy Hilfiger'),(11905,86,0,885,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(11906,87,0,885,'/7/h/7h66ggg_1.jpg'),(11907,88,0,885,'/7/h/7h66ggg_1.jpg'),(11908,89,0,885,'/7/h/7h66ggg_1.jpg'),(11909,106,0,885,'container2'),(11910,121,0,885,'tommy-hilfiger-white-small-size'),(11911,132,0,885,'0'),(11912,133,0,885,'/7/h/7h66ggg_1.jpg'),(11913,206,0,885,'98% cotton, 2% elastane'),(11918,73,0,886,'Tommy Hilfiger-white-Medium size'),(11919,84,0,886,'Tommy Hilfiger'),(11920,86,0,886,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(11921,87,0,886,'/7/h/7h66ggg_2.jpg'),(11922,88,0,886,'/7/h/7h66ggg_2.jpg'),(11923,89,0,886,'/7/h/7h66ggg_2.jpg'),(11924,106,0,886,'container2'),(11925,121,0,886,'tommy-hilfiger-white-medium-size'),(11926,132,0,886,'0'),(11927,133,0,886,'/7/h/7h66ggg_2.jpg'),(11928,206,0,886,'98% cotton, 2% elastane'),(11933,73,0,887,'Tommy Hilfiger-white-Large size'),(11934,84,0,887,'Tommy Hilfiger'),(11935,86,0,887,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(11936,87,0,887,'/7/h/7h66ggg_3.jpg'),(11937,88,0,887,'/7/h/7h66ggg_3.jpg'),(11938,89,0,887,'/7/h/7h66ggg_3.jpg'),(11939,106,0,887,'container2'),(11940,121,0,887,'tommy-hilfiger-white-large-size'),(11941,132,0,887,'0'),(11942,133,0,887,'/7/h/7h66ggg_3.jpg'),(11943,206,0,887,'98% cotton, 2% elastane'),(11948,73,0,888,'Tommy Hilfiger-white-Extra large size'),(11949,84,0,888,'Tommy Hilfiger'),(11950,86,0,888,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(11951,87,0,888,'/7/h/7h66ggg_4.jpg'),(11952,88,0,888,'/7/h/7h66ggg_4.jpg'),(11953,89,0,888,'/7/h/7h66ggg_4.jpg'),(11954,106,0,888,'container2'),(11955,121,0,888,'tommy-hilfiger-white-extra-large-size'),(11956,132,0,888,'0'),(11957,133,0,888,'/7/h/7h66ggg_4.jpg'),(11958,206,0,888,'98% cotton, 2% elastane'),(11963,73,0,889,'Tommy Hilfiger-grey-Extra small size'),(11964,84,0,889,'Tommy Hilfiger'),(11965,86,0,889,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(11966,87,0,889,'/4/5/45f222.jpg'),(11967,88,0,889,'/4/5/45f222.jpg'),(11968,89,0,889,'/4/5/45f222.jpg'),(11969,106,0,889,'container2'),(11970,121,0,889,'tommy-hilfiger-grey-extra-small-size'),(11971,132,0,889,'0'),(11972,133,0,889,'/4/5/45f222.jpg'),(11973,206,0,889,'98% cotton, 2% elastane'),(11978,73,0,890,'Tommy Hilfiger-grey-Small size'),(11979,84,0,890,'Tommy Hilfiger'),(11980,86,0,890,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(11981,87,0,890,'/4/5/45f222_1.jpg'),(11982,88,0,890,'/4/5/45f222_1.jpg'),(11983,89,0,890,'/4/5/45f222_1.jpg'),(11984,106,0,890,'container2'),(11985,121,0,890,'tommy-hilfiger-grey-small-size'),(11986,132,0,890,'0'),(11987,133,0,890,'/4/5/45f222_1.jpg'),(11988,206,0,890,'98% cotton, 2% elastane'),(11993,73,0,891,'Tommy Hilfiger-grey-Medium size'),(11994,84,0,891,'Tommy Hilfiger'),(11995,86,0,891,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(11996,87,0,891,'/4/5/45f222_2.jpg'),(11997,88,0,891,'/4/5/45f222_2.jpg'),(11998,89,0,891,'/4/5/45f222_2.jpg'),(11999,106,0,891,'container2'),(12000,121,0,891,'tommy-hilfiger-grey-medium-size'),(12001,132,0,891,'0'),(12002,133,0,891,'/4/5/45f222_2.jpg'),(12003,206,0,891,'98% cotton, 2% elastane'),(12008,73,0,892,'Tommy Hilfiger-grey-Large size'),(12009,84,0,892,'Tommy Hilfiger'),(12010,86,0,892,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(12011,87,0,892,'/4/5/45f222_3.jpg'),(12012,88,0,892,'/4/5/45f222_3.jpg'),(12013,89,0,892,'/4/5/45f222_3.jpg'),(12014,106,0,892,'container2'),(12015,121,0,892,'tommy-hilfiger-grey-large-size'),(12016,132,0,892,'0'),(12017,133,0,892,'/4/5/45f222_3.jpg'),(12018,206,0,892,'98% cotton, 2% elastane'),(12023,73,0,893,'Tommy Hilfiger-grey-Extra large size'),(12024,84,0,893,'Tommy Hilfiger'),(12025,86,0,893,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(12026,87,0,893,'/4/5/45f222_4.jpg'),(12027,88,0,893,'/4/5/45f222_4.jpg'),(12028,89,0,893,'/4/5/45f222_4.jpg'),(12029,106,0,893,'container2'),(12030,121,0,893,'tommy-hilfiger-grey-extra-large-size'),(12031,132,0,893,'0'),(12032,133,0,893,'/4/5/45f222_4.jpg'),(12033,206,0,893,'98% cotton, 2% elastane'),(12038,73,0,894,'Tommy Hilfiger-blue-Extra small size'),(12039,84,0,894,'Tommy Hilfiger'),(12040,86,0,894,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(12041,87,0,894,'/7/2/72qw21.jpg'),(12042,88,0,894,'/7/2/72qw21.jpg'),(12043,89,0,894,'/7/2/72qw21.jpg'),(12044,106,0,894,'container2'),(12045,121,0,894,'tommy-hilfiger-blue-extra-small-size'),(12046,132,0,894,'0'),(12047,133,0,894,'/7/2/72qw21.jpg'),(12048,206,0,894,'98% cotton, 2% elastane'),(12053,73,0,895,'Tommy Hilfiger-blue-Small size'),(12054,84,0,895,'Tommy Hilfiger'),(12055,86,0,895,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(12056,87,0,895,'/7/2/72qw21_1.jpg'),(12057,88,0,895,'/7/2/72qw21_1.jpg'),(12058,89,0,895,'/7/2/72qw21_1.jpg'),(12059,106,0,895,'container2'),(12060,121,0,895,'tommy-hilfiger-blue-small-size'),(12061,132,0,895,'0'),(12062,133,0,895,'/7/2/72qw21_1.jpg'),(12063,206,0,895,'98% cotton, 2% elastane'),(12068,73,0,896,'Tommy Hilfiger-blue-Medium size'),(12069,84,0,896,'Tommy Hilfiger'),(12070,86,0,896,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(12071,87,0,896,'/7/2/72qw21_2.jpg'),(12072,88,0,896,'/7/2/72qw21_2.jpg'),(12073,89,0,896,'/7/2/72qw21_2.jpg'),(12074,106,0,896,'container2'),(12075,121,0,896,'tommy-hilfiger-blue-medium-size'),(12076,132,0,896,'0'),(12077,133,0,896,'/7/2/72qw21_2.jpg'),(12078,206,0,896,'98% cotton, 2% elastane'),(12083,73,0,897,'Tommy Hilfiger-blue-Large size'),(12084,84,0,897,'Tommy Hilfiger'),(12085,86,0,897,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(12086,87,0,897,'/7/2/72qw21_3.jpg'),(12087,88,0,897,'/7/2/72qw21_3.jpg'),(12088,89,0,897,'/7/2/72qw21_3.jpg'),(12089,106,0,897,'container2'),(12090,121,0,897,'tommy-hilfiger-blue-large-size'),(12091,132,0,897,'0'),(12092,133,0,897,'/7/2/72qw21_3.jpg'),(12093,206,0,897,'98% cotton, 2% elastane'),(12098,73,0,898,'Tommy Hilfiger-blue-Extra large size'),(12099,84,0,898,'Tommy Hilfiger'),(12100,86,0,898,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(12101,87,0,898,'/7/2/72qw21_4.jpg'),(12102,88,0,898,'/7/2/72qw21_4.jpg'),(12103,89,0,898,'/7/2/72qw21_4.jpg'),(12104,106,0,898,'container2'),(12105,121,0,898,'tommy-hilfiger-blue-extra-large-size'),(12106,132,0,898,'0'),(12107,133,0,898,'/7/2/72qw21_4.jpg'),(12108,206,0,898,'98% cotton, 2% elastane'),(12113,73,0,899,'Tommy Hilfiger-red-Extra small size'),(12114,84,0,899,'Tommy Hilfiger'),(12115,86,0,899,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(12116,87,0,899,'/2/w/2w32q1_1.jpg'),(12117,88,0,899,'/2/w/2w32q1_1.jpg'),(12118,89,0,899,'/2/w/2w32q1_1.jpg'),(12119,106,0,899,'container2'),(12120,121,0,899,'tommy-hilfiger-red-extra-small-size'),(12121,132,0,899,'0'),(12122,133,0,899,'/2/w/2w32q1_1.jpg'),(12123,206,0,899,'98% cotton, 2% elastane'),(12128,73,0,900,'Tommy Hilfiger-red-Small size'),(12129,84,0,900,'Tommy Hilfiger'),(12130,86,0,900,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(12131,87,0,900,'/2/w/2w32q1_1_1.jpg'),(12132,88,0,900,'/2/w/2w32q1_1_1.jpg'),(12133,89,0,900,'/2/w/2w32q1_1_1.jpg'),(12134,106,0,900,'container2'),(12135,121,0,900,'tommy-hilfiger-red-small-size'),(12136,132,0,900,'0'),(12137,133,0,900,'/2/w/2w32q1_1_1.jpg'),(12138,206,0,900,'98% cotton, 2% elastane'),(12143,73,0,901,'Tommy Hilfiger-red-Medium size'),(12144,84,0,901,'Tommy Hilfiger'),(12145,86,0,901,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(12146,87,0,901,'/2/w/2w32q1_1_2.jpg'),(12147,88,0,901,'/2/w/2w32q1_1_2.jpg'),(12148,89,0,901,'/2/w/2w32q1_1_2.jpg'),(12149,106,0,901,'container2'),(12150,121,0,901,'tommy-hilfiger-red-medium-size'),(12151,132,0,901,'0'),(12152,133,0,901,'/2/w/2w32q1_1_2.jpg'),(12153,206,0,901,'98% cotton, 2% elastane'),(12158,73,0,902,'Tommy Hilfiger-red-Large size'),(12159,84,0,902,'Tommy Hilfiger'),(12160,86,0,902,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(12161,87,0,902,'/2/w/2w32q1_1_3.jpg'),(12162,88,0,902,'/2/w/2w32q1_1_3.jpg'),(12163,89,0,902,'/2/w/2w32q1_1_3.jpg'),(12164,106,0,902,'container2'),(12165,121,0,902,'tommy-hilfiger-red-large-size'),(12166,132,0,902,'0'),(12167,133,0,902,'/2/w/2w32q1_1_3.jpg'),(12168,206,0,902,'98% cotton, 2% elastane'),(12173,73,0,903,'Tommy Hilfiger-red-Extra large size'),(12174,84,0,903,'Tommy Hilfiger'),(12175,86,0,903,'Tommy Hilfiger Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial:'),(12176,87,0,903,'/2/w/2w32q1_1_4.jpg'),(12177,88,0,903,'/2/w/2w32q1_1_4.jpg'),(12178,89,0,903,'/2/w/2w32q1_1_4.jpg'),(12179,106,0,903,'container2'),(12180,121,0,903,'tommy-hilfiger-red-extra-large-size'),(12181,132,0,903,'0'),(12182,133,0,903,'/2/w/2w32q1_1_4.jpg'),(12183,206,0,903,'98% cotton, 2% elastane'),(12196,73,0,904,'Gabba Long-sleeved Jumper-brown-Extra small size'),(12197,84,0,904,'Lawrence Grey Rollneck Pullover'),(12198,86,0,904,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(12199,87,0,904,'/e/4/e43ee.jpg'),(12200,88,0,904,'/e/4/e43ee.jpg'),(12201,89,0,904,'/e/4/e43ee.jpg'),(12202,106,0,904,'container2'),(12203,121,0,904,'gabba-long-sleeved-jumper-brown-extra-small-size'),(12204,132,0,904,'0'),(12205,133,0,904,'/e/4/e43ee.jpg'),(12206,206,0,904,'70% cotton, 30% linen'),(12211,73,0,905,'Gabba Long-sleeved Jumper-brown-Small size'),(12212,84,0,905,'Lawrence Grey Rollneck Pullover'),(12213,86,0,905,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(12214,87,0,905,'/e/4/e43ee_1.jpg'),(12215,88,0,905,'/e/4/e43ee_1.jpg'),(12216,89,0,905,'/e/4/e43ee_1.jpg'),(12217,106,0,905,'container2'),(12218,121,0,905,'gabba-long-sleeved-jumper-brown-small-size'),(12219,132,0,905,'0'),(12220,133,0,905,'/e/4/e43ee_1.jpg'),(12221,206,0,905,'70% cotton, 30% linen'),(12226,73,0,906,'Gabba Long-sleeved Jumper-brown-Medium size'),(12227,84,0,906,'Lawrence Grey Rollneck Pullover'),(12228,86,0,906,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(12229,87,0,906,'/e/4/e43ee_2.jpg'),(12230,88,0,906,'/e/4/e43ee_2.jpg'),(12231,89,0,906,'/e/4/e43ee_2.jpg'),(12232,106,0,906,'container2'),(12233,121,0,906,'gabba-long-sleeved-jumper-brown-medium-size'),(12234,132,0,906,'0'),(12235,133,0,906,'/e/4/e43ee_2.jpg'),(12236,206,0,906,'70% cotton, 30% linen'),(12241,73,0,907,'Gabba Long-sleeved Jumper-brown-Large size'),(12242,84,0,907,'Lawrence Grey Rollneck Pullover'),(12243,86,0,907,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(12244,87,0,907,'/e/4/e43ee_3.jpg'),(12245,88,0,907,'/e/4/e43ee_3.jpg'),(12246,89,0,907,'/e/4/e43ee_3.jpg'),(12247,106,0,907,'container2'),(12248,121,0,907,'gabba-long-sleeved-jumper-brown-large-size'),(12249,132,0,907,'0'),(12250,133,0,907,'/e/4/e43ee_3.jpg'),(12251,206,0,907,'70% cotton, 30% linen'),(12256,73,0,908,'Gabba Long-sleeved Jumper-black-Extra small size'),(12257,84,0,908,'Lawrence Grey Rollneck Pullover'),(12258,86,0,908,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(12259,87,0,908,'/b/l/blac.jpg'),(12260,88,0,908,'/b/l/blac.jpg'),(12261,89,0,908,'/b/l/blac.jpg'),(12262,106,0,908,'container2'),(12263,121,0,908,'gabba-long-sleeved-jumper-black-extra-small-size'),(12264,132,0,908,'0'),(12265,133,0,908,'/b/l/blac.jpg'),(12266,206,0,908,'70% cotton, 30% linen'),(12271,73,0,909,'Gabba Long-sleeved Jumper-black-Small size'),(12272,84,0,909,'Lawrence Grey Rollneck Pullover'),(12273,86,0,909,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(12274,87,0,909,'/b/l/blac_1.jpg'),(12275,88,0,909,'/b/l/blac_1.jpg'),(12276,89,0,909,'/b/l/blac_1.jpg'),(12277,106,0,909,'container2'),(12278,121,0,909,'gabba-long-sleeved-jumper-black-small-size'),(12279,132,0,909,'0'),(12280,133,0,909,'/b/l/blac_1.jpg'),(12281,206,0,909,'70% cotton, 30% linen'),(12286,73,0,910,'Gabba Long-sleeved Jumper-black-Medium size'),(12287,84,0,910,'Lawrence Grey Rollneck Pullover'),(12288,86,0,910,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(12289,87,0,910,'/b/l/blac_2.jpg'),(12290,88,0,910,'/b/l/blac_2.jpg'),(12291,89,0,910,'/b/l/blac_2.jpg'),(12292,106,0,910,'container2'),(12293,121,0,910,'gabba-long-sleeved-jumper-black-medium-size'),(12294,132,0,910,'0'),(12295,133,0,910,'/b/l/blac_2.jpg'),(12296,206,0,910,'70% cotton, 30% linen'),(12301,73,0,911,'Gabba Long-sleeved Jumper-black-Large size'),(12302,84,0,911,'Lawrence Grey Rollneck Pullover'),(12303,86,0,911,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(12304,87,0,911,'/b/l/blac_3.jpg'),(12305,88,0,911,'/b/l/blac_3.jpg'),(12306,89,0,911,'/b/l/blac_3.jpg'),(12307,106,0,911,'container2'),(12308,121,0,911,'gabba-long-sleeved-jumper-black-large-size'),(12309,132,0,911,'0'),(12310,133,0,911,'/b/l/blac_3.jpg'),(12311,206,0,911,'70% cotton, 30% linen'),(12316,73,0,912,'Gabba Long-sleeved Jumper-grey-Extra small size'),(12317,84,0,912,'Lawrence Grey Rollneck Pullover'),(12318,86,0,912,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(12319,87,0,912,'/5/t/5tr433.jpg'),(12320,88,0,912,'/5/t/5tr433.jpg'),(12321,89,0,912,'/5/t/5tr433.jpg'),(12322,106,0,912,'container2'),(12323,121,0,912,'gabba-long-sleeved-jumper-grey-extra-small-size'),(12324,132,0,912,'0'),(12325,133,0,912,'/5/t/5tr433.jpg'),(12326,206,0,912,'70% cotton, 30% linen'),(12331,73,0,913,'Gabba Long-sleeved Jumper-grey-Small size'),(12332,84,0,913,'Lawrence Grey Rollneck Pullover'),(12333,86,0,913,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(12334,87,0,913,'/5/t/5tr433_1.jpg'),(12335,88,0,913,'/5/t/5tr433_1.jpg'),(12336,89,0,913,'/5/t/5tr433_1.jpg'),(12337,106,0,913,'container2'),(12338,121,0,913,'gabba-long-sleeved-jumper-grey-small-size'),(12339,132,0,913,'0'),(12340,133,0,913,'/5/t/5tr433_1.jpg'),(12341,206,0,913,'70% cotton, 30% linen'),(12346,73,0,914,'Gabba Long-sleeved Jumper-grey-Medium size'),(12347,84,0,914,'Lawrence Grey Rollneck Pullover'),(12348,86,0,914,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(12349,87,0,914,'/5/t/5tr433_2.jpg'),(12350,88,0,914,'/5/t/5tr433_2.jpg'),(12351,89,0,914,'/5/t/5tr433_2.jpg'),(12352,106,0,914,'container2'),(12353,121,0,914,'gabba-long-sleeved-jumper-grey-medium-size'),(12354,132,0,914,'0'),(12355,133,0,914,'/5/t/5tr433_2.jpg'),(12356,206,0,914,'70% cotton, 30% linen'),(12361,73,0,915,'Gabba Long-sleeved Jumper-grey-Large size'),(12362,84,0,915,'Lawrence Grey Rollneck Pullover'),(12363,86,0,915,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(12364,87,0,915,'/5/t/5tr433_3.jpg'),(12365,88,0,915,'/5/t/5tr433_3.jpg'),(12366,89,0,915,'/5/t/5tr433_3.jpg'),(12367,106,0,915,'container2'),(12368,121,0,915,'gabba-long-sleeved-jumper-grey-large-size'),(12369,132,0,915,'0'),(12370,133,0,915,'/5/t/5tr433_3.jpg'),(12371,206,0,915,'70% cotton, 30% linen'),(12508,73,0,924,'Navy John 16511-grey-Small size'),(12509,84,0,924,'Navy John 16511'),(12510,86,0,924,'Navy John 16511 Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with s'),(12511,87,0,924,'/3/3/33e3d.jpg'),(12512,88,0,924,'/3/3/33e3d.jpg'),(12513,89,0,924,'/3/3/33e3d.jpg'),(12514,106,0,924,'container2'),(12515,121,0,924,'navy-john-16511-grey-small-size'),(12516,132,0,924,'0'),(12517,133,0,924,'/3/3/33e3d.jpg'),(12518,206,0,924,'97% cotton, 3% elastane'),(12523,73,0,925,'Navy John 16511-grey-Medium size'),(12524,84,0,925,'Navy John 16511'),(12525,86,0,925,'Navy John 16511 Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with s'),(12526,87,0,925,'/3/3/33e3d_1.jpg'),(12527,88,0,925,'/3/3/33e3d_1.jpg'),(12528,89,0,925,'/3/3/33e3d_1.jpg'),(12529,106,0,925,'container2'),(12530,121,0,925,'navy-john-16511-grey-medium-size'),(12531,132,0,925,'0'),(12532,133,0,925,'/3/3/33e3d_1.jpg'),(12533,206,0,925,'97% cotton, 3% elastane'),(12538,73,0,926,'Navy John 16511-grey-Large size'),(12539,84,0,926,'Navy John 16511'),(12540,86,0,926,'Navy John 16511 Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with s'),(12541,87,0,926,'/3/3/33e3d_2.jpg'),(12542,88,0,926,'/3/3/33e3d_2.jpg'),(12543,89,0,926,'/3/3/33e3d_2.jpg'),(12544,106,0,926,'container2'),(12545,121,0,926,'navy-john-16511-grey-large-size'),(12546,132,0,926,'0'),(12547,133,0,926,'/3/3/33e3d_2.jpg'),(12548,206,0,926,'97% cotton, 3% elastane'),(12553,73,0,927,'Navy John 16511-blue-Small size'),(12554,84,0,927,'Navy John 16511'),(12555,86,0,927,'Navy John 16511 Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with s'),(12556,87,0,927,'/i/m/image_31168244_36_620x757_3_1.jpg'),(12557,88,0,927,'/i/m/image_31168244_36_620x757_3_1.jpg'),(12558,89,0,927,'/i/m/image_31168244_36_620x757_3_1.jpg'),(12559,106,0,927,'container2'),(12560,121,0,927,'navy-john-16511-blue-small-size'),(12561,132,0,927,'0'),(12562,133,0,927,'/i/m/image_31168244_36_620x757_3_1.jpg'),(12563,206,0,927,'97% cotton, 3% elastane'),(12568,73,0,928,'Navy John 16511-blue-Medium size'),(12569,84,0,928,'Navy John 16511'),(12570,86,0,928,'Navy John 16511 Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with s'),(12571,87,0,928,'/i/m/image_31168244_36_620x757_3_1_1.jpg'),(12572,88,0,928,'/i/m/image_31168244_36_620x757_3_1_1.jpg'),(12573,89,0,928,'/i/m/image_31168244_36_620x757_3_1_1.jpg'),(12574,106,0,928,'container2'),(12575,121,0,928,'navy-john-16511-blue-medium-size'),(12576,132,0,928,'0'),(12577,133,0,928,'/i/m/image_31168244_36_620x757_3_1_1.jpg'),(12578,206,0,928,'97% cotton, 3% elastane'),(12583,73,0,929,'Navy John 16511-blue-Large size'),(12584,84,0,929,'Navy John 16511'),(12585,86,0,929,'Navy John 16511 Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with s'),(12586,87,0,929,'/i/m/image_31168244_36_620x757_3_2.jpg'),(12587,88,0,929,'/i/m/image_31168244_36_620x757_3_2.jpg'),(12588,89,0,929,'/i/m/image_31168244_36_620x757_3_2.jpg'),(12589,106,0,929,'container2'),(12590,121,0,929,'navy-john-16511-blue-large-size'),(12591,132,0,929,'0'),(12592,133,0,929,'/i/m/image_31168244_36_620x757_3_2.jpg'),(12593,206,0,929,'97% cotton, 3% elastane'),(12594,73,0,930,'Navy John 16511-black-Small size'),(12595,84,0,930,'Navy John 16511'),(12596,86,0,930,'Navy John 16511 Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with s'),(12597,87,0,930,'/3/e/3e3r4r3e2ww_1.jpg'),(12598,88,0,930,'/3/e/3e3r4r3e2ww_1.jpg'),(12599,89,0,930,'/3/e/3e3r4r3e2ww_1.jpg'),(12600,106,0,930,'container2'),(12601,121,0,930,'navy-john-16511-black-small-size'),(12602,132,0,930,'0'),(12603,133,0,930,'/3/e/3e3r4r3e2ww_1.jpg'),(12604,206,0,930,'97% cotton, 3% elastane'),(12609,73,0,931,'Navy John 16511-black-Medium size'),(12610,84,0,931,'Navy John 16511'),(12611,86,0,931,'Navy John 16511 Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with s'),(12612,87,0,931,'/3/e/3e3r4r3e2ww_1_1.jpg'),(12613,88,0,931,'/3/e/3e3r4r3e2ww_1_1.jpg'),(12614,89,0,931,'/3/e/3e3r4r3e2ww_1_1.jpg'),(12615,106,0,931,'container2'),(12616,121,0,931,'navy-john-16511-black-medium-size'),(12617,132,0,931,'0'),(12618,133,0,931,'/3/e/3e3r4r3e2ww_1_1.jpg'),(12619,206,0,931,'97% cotton, 3% elastane'),(12624,73,0,932,'Navy John 16511-black-Large size'),(12625,84,0,932,'Navy John 16511'),(12626,86,0,932,'Navy John 16511 Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with s'),(12627,87,0,932,'/3/e/3e3r4r3e2ww_2.jpg'),(12628,88,0,932,'/3/e/3e3r4r3e2ww_2.jpg'),(12629,89,0,932,'/3/e/3e3r4r3e2ww_2.jpg'),(12630,106,0,932,'container2'),(12631,121,0,932,'navy-john-16511-black-large-size'),(12632,132,0,932,'0'),(12633,133,0,932,'/3/e/3e3r4r3e2ww_2.jpg'),(12634,206,0,932,'97% cotton, 3% elastane'),(12643,73,0,933,'Dark Blue Julyen-grey-Small size'),(12644,84,0,933,'Dark Blue Julyen'),(12645,86,0,933,'Dark Blue Julyen Model: JulyenManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPocke'),(12646,87,0,933,'/2/2/22w2w33e.jpg'),(12647,88,0,933,'/2/2/22w2w33e.jpg'),(12648,89,0,933,'/2/2/22w2w33e.jpg'),(12649,106,0,933,'container2'),(12650,121,0,933,'dark-blue-julyen-grey-small-size'),(12651,132,0,933,'0'),(12652,133,0,933,'/2/2/22w2w33e.jpg'),(12653,206,0,933,'98% cotton, 2% elastane'),(12658,73,0,934,'Dark Blue Julyen-grey-Medium size'),(12659,84,0,934,'Dark Blue Julyen'),(12660,86,0,934,'Dark Blue Julyen Model: JulyenManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPocke'),(12661,87,0,934,'/2/2/22w2w33e_1.jpg'),(12662,88,0,934,'/2/2/22w2w33e_1.jpg'),(12663,89,0,934,'/2/2/22w2w33e_1.jpg'),(12664,106,0,934,'container2'),(12665,121,0,934,'dark-blue-julyen-grey-medium-size'),(12666,132,0,934,'0'),(12667,133,0,934,'/2/2/22w2w33e_1.jpg'),(12668,206,0,934,'98% cotton, 2% elastane'),(12673,73,0,935,'Dark Blue Julyen-grey-Large size'),(12674,84,0,935,'Dark Blue Julyen'),(12675,86,0,935,'Dark Blue Julyen Model: JulyenManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPocke'),(12676,87,0,935,'/2/2/22w2w33e_2.jpg'),(12677,88,0,935,'/2/2/22w2w33e_2.jpg'),(12678,89,0,935,'/2/2/22w2w33e_2.jpg'),(12679,106,0,935,'container2'),(12680,121,0,935,'dark-blue-julyen-grey-large-size'),(12681,132,0,935,'0'),(12682,133,0,935,'/2/2/22w2w33e_2.jpg'),(12683,206,0,935,'98% cotton, 2% elastane'),(12688,73,0,936,'Dark Blue Julyen-black-Small size'),(12689,84,0,936,'Dark Blue Julyen'),(12690,86,0,936,'Dark Blue Julyen Model: JulyenManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPocke'),(12691,87,0,936,'/2/e/2e3d3d3d.jpg'),(12692,88,0,936,'/2/e/2e3d3d3d.jpg'),(12693,89,0,936,'/2/e/2e3d3d3d.jpg'),(12694,106,0,936,'container2'),(12695,121,0,936,'dark-blue-julyen-black-small-size'),(12696,132,0,936,'0'),(12697,133,0,936,'/2/e/2e3d3d3d.jpg'),(12698,206,0,936,'98% cotton, 2% elastane'),(12703,73,0,937,'Dark Blue Julyen-black-Medium size'),(12704,84,0,937,'Dark Blue Julyen'),(12705,86,0,937,'Dark Blue Julyen Model: JulyenManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPocke'),(12706,87,0,937,'/2/e/2e3d3d3d_1.jpg'),(12707,88,0,937,'/2/e/2e3d3d3d_1.jpg'),(12708,89,0,937,'/2/e/2e3d3d3d_1.jpg'),(12709,106,0,937,'container2'),(12710,121,0,937,'dark-blue-julyen-black-medium-size'),(12711,132,0,937,'0'),(12712,133,0,937,'/2/e/2e3d3d3d_1.jpg'),(12713,206,0,937,'98% cotton, 2% elastane'),(12718,73,0,938,'Dark Blue Julyen-black-Large size'),(12719,84,0,938,'Dark Blue Julyen'),(12720,86,0,938,'Dark Blue Julyen Model: JulyenManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPocke'),(12721,87,0,938,'/2/e/2e3d3d3d_2.jpg'),(12722,88,0,938,'/2/e/2e3d3d3d_2.jpg'),(12723,89,0,938,'/2/e/2e3d3d3d_2.jpg'),(12724,106,0,938,'container2'),(12725,121,0,938,'dark-blue-julyen-black-large-size'),(12726,132,0,938,'0'),(12727,133,0,938,'/2/e/2e3d3d3d_2.jpg'),(12728,206,0,938,'98% cotton, 2% elastane'),(12737,73,0,939,'Dark Blue Julyen-blue-Small size'),(12738,84,0,939,'Dark Blue Julyen'),(12739,86,0,939,'Dark Blue Julyen Model: JulyenManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPocke'),(12740,87,0,939,'/i/m/image_31322142_31_620x757_3_1.jpg'),(12741,88,0,939,'/i/m/image_31322142_31_620x757_3_1.jpg'),(12742,89,0,939,'/i/m/image_31322142_31_620x757_3_1.jpg'),(12743,106,0,939,'container2'),(12744,121,0,939,'dark-blue-julyen-blue-small-size'),(12745,132,0,939,'0'),(12746,133,0,939,'/i/m/image_31322142_31_620x757_3_1.jpg'),(12747,206,0,939,'98% cotton, 2% elastane'),(12752,73,0,940,'Dark Blue Julyen-blue-Medium size'),(12753,84,0,940,'Dark Blue Julyen'),(12754,86,0,940,'Dark Blue Julyen Model: JulyenManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPocke'),(12755,87,0,940,'/i/m/image_31322142_31_620x757_3_1_1.jpg'),(12756,88,0,940,'/i/m/image_31322142_31_620x757_3_1_1.jpg'),(12757,89,0,940,'/i/m/image_31322142_31_620x757_3_1_1.jpg'),(12758,106,0,940,'container2'),(12759,121,0,940,'dark-blue-julyen-blue-medium-size'),(12760,132,0,940,'0'),(12761,133,0,940,'/i/m/image_31322142_31_620x757_3_1_1.jpg'),(12762,206,0,940,'98% cotton, 2% elastane'),(12767,73,0,941,'Dark Blue Julyen-blue-Large size'),(12768,84,0,941,'Dark Blue Julyen'),(12769,86,0,941,'Dark Blue Julyen Model: JulyenManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPocke'),(12770,87,0,941,'/i/m/image_31322142_31_620x757_3_2.jpg'),(12771,88,0,941,'/i/m/image_31322142_31_620x757_3_2.jpg'),(12772,89,0,941,'/i/m/image_31322142_31_620x757_3_2.jpg'),(12773,106,0,941,'container2'),(12774,121,0,941,'dark-blue-julyen-blue-large-size'),(12775,132,0,941,'0'),(12776,133,0,941,'/i/m/image_31322142_31_620x757_3_2.jpg'),(12777,206,0,941,'98% cotton, 2% elastane'),(12786,73,0,942,'Long-sleeved Jumper-blue-Small size'),(12787,84,0,942,'Long-sleeved Jumper'),(12788,86,0,942,'Long-sleeved Jumper '),(12789,87,0,942,'/5/t/5t4t4t5t5.jpg'),(12790,88,0,942,'/5/t/5t4t4t5t5.jpg'),(12791,89,0,942,'/5/t/5t4t4t5t5.jpg'),(12792,106,0,942,'container2'),(12793,121,0,942,'long-sleeved-jumper-blue-small-size'),(12794,132,0,942,'0'),(12795,133,0,942,'/5/t/5t4t4t5t5.jpg'),(12796,206,0,942,' 100% cotton'),(12801,73,0,943,'Long-sleeved Jumper-blue-Medium size'),(12802,84,0,943,'Long-sleeved Jumper'),(12803,86,0,943,'Long-sleeved Jumper '),(12804,87,0,943,'/5/t/5t4t4t5t5_1.jpg'),(12805,88,0,943,'/5/t/5t4t4t5t5_1.jpg'),(12806,89,0,943,'/5/t/5t4t4t5t5_1.jpg'),(12807,106,0,943,'container2'),(12808,121,0,943,'long-sleeved-jumper-blue-medium-size'),(12809,132,0,943,'0'),(12810,133,0,943,'/5/t/5t4t4t5t5_1.jpg'),(12811,206,0,943,' 100% cotton'),(12816,73,0,944,'Long-sleeved Jumper-blue-Large size'),(12817,84,0,944,'Long-sleeved Jumper'),(12818,86,0,944,'Long-sleeved Jumper '),(12819,87,0,944,'/5/t/5t4t4t5t5_2.jpg'),(12820,88,0,944,'/5/t/5t4t4t5t5_2.jpg'),(12821,89,0,944,'/5/t/5t4t4t5t5_2.jpg'),(12822,106,0,944,'container2'),(12823,121,0,944,'long-sleeved-jumper-blue-large-size'),(12824,132,0,944,'0'),(12825,133,0,944,'/5/t/5t4t4t5t5_2.jpg'),(12826,206,0,944,' 100% cotton'),(12831,73,0,945,'Long-sleeved Jumper-red-Small size'),(12832,84,0,945,'Long-sleeved Jumper'),(12833,86,0,945,'Long-sleeved Jumper '),(12834,87,0,945,'/2/3/23er4r4r.jpg'),(12835,88,0,945,'/2/3/23er4r4r.jpg'),(12836,89,0,945,'/2/3/23er4r4r.jpg'),(12837,106,0,945,'container2'),(12838,121,0,945,'long-sleeved-jumper-red-small-size'),(12839,132,0,945,'0'),(12840,133,0,945,'/2/3/23er4r4r.jpg'),(12841,206,0,945,' 100% cotton'),(12846,73,0,946,'Long-sleeved Jumper-red-Medium size'),(12847,84,0,946,'Long-sleeved Jumper'),(12848,86,0,946,'Long-sleeved Jumper '),(12849,87,0,946,'/2/3/23er4r4r_1.jpg'),(12850,88,0,946,'/2/3/23er4r4r_1.jpg'),(12851,89,0,946,'/2/3/23er4r4r_1.jpg'),(12852,106,0,946,'container2'),(12853,121,0,946,'long-sleeved-jumper-red-medium-size'),(12854,132,0,946,'0'),(12855,133,0,946,'/2/3/23er4r4r_1.jpg'),(12856,206,0,946,' 100% cotton'),(12861,73,0,947,'Long-sleeved Jumper-red-Large size'),(12862,84,0,947,'Long-sleeved Jumper'),(12863,86,0,947,'Long-sleeved Jumper '),(12864,87,0,947,'/2/3/23er4r4r_2.jpg'),(12865,88,0,947,'/2/3/23er4r4r_2.jpg'),(12866,89,0,947,'/2/3/23er4r4r_2.jpg'),(12867,106,0,947,'container2'),(12868,121,0,947,'long-sleeved-jumper-red-large-size'),(12869,132,0,947,'0'),(12870,133,0,947,'/2/3/23er4r4r_2.jpg'),(12871,206,0,947,' 100% cotton'),(12880,73,0,948,'Camper Lace-ups-blue-EU 40'),(12881,84,0,948,'Camper Lace-ups'),(12882,86,0,948,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(12883,87,0,948,'/3/e/3e3e3dcrc.jpg'),(12884,88,0,948,'/3/e/3e3e3dcrc.jpg'),(12885,89,0,948,'/3/e/3e3e3dcrc.jpg'),(12886,106,0,948,'container2'),(12887,121,0,948,'camper-lace-ups-blue-eu-40'),(12888,132,0,948,'0'),(12889,133,0,948,'/3/e/3e3e3dcrc.jpg'),(12890,206,0,948,'Leather'),(12895,73,0,949,'Camper Lace-ups-blue-EU 41'),(12896,84,0,949,'Camper Lace-ups'),(12897,86,0,949,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(12898,87,0,949,'/3/e/3e3e3dcrc_1.jpg'),(12899,88,0,949,'/3/e/3e3e3dcrc_1.jpg'),(12900,89,0,949,'/3/e/3e3e3dcrc_1.jpg'),(12901,106,0,949,'container2'),(12902,121,0,949,'camper-lace-ups-blue-eu-41'),(12903,132,0,949,'0'),(12904,133,0,949,'/3/e/3e3e3dcrc_1.jpg'),(12905,206,0,949,'Leather'),(12910,73,0,950,'Camper Lace-ups-blue-EU 42'),(12911,84,0,950,'Camper Lace-ups'),(12912,86,0,950,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(12913,87,0,950,'/3/e/3e3e3dcrc_2.jpg'),(12914,88,0,950,'/3/e/3e3e3dcrc_2.jpg'),(12915,89,0,950,'/3/e/3e3e3dcrc_2.jpg'),(12916,106,0,950,'container2'),(12917,121,0,950,'camper-lace-ups-blue-eu-42'),(12918,132,0,950,'0'),(12919,133,0,950,'/3/e/3e3e3dcrc_2.jpg'),(12920,206,0,950,'Leather'),(12925,73,0,951,'Camper Lace-ups-blue-EU 43'),(12926,84,0,951,'Camper Lace-ups'),(12927,86,0,951,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(12928,87,0,951,'/3/e/3e3e3dcrc_3.jpg'),(12929,88,0,951,'/3/e/3e3e3dcrc_3.jpg'),(12930,89,0,951,'/3/e/3e3e3dcrc_3.jpg'),(12931,106,0,951,'container2'),(12932,121,0,951,'camper-lace-ups-blue-eu-43'),(12933,132,0,951,'0'),(12934,133,0,951,'/3/e/3e3e3dcrc_3.jpg'),(12935,206,0,951,'Leather'),(12940,73,0,952,'Camper Lace-ups-blue-EU 44'),(12941,84,0,952,'Camper Lace-ups'),(12942,86,0,952,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(12943,87,0,952,'/3/e/3e3e3dcrc_4.jpg'),(12944,88,0,952,'/3/e/3e3e3dcrc_4.jpg'),(12945,89,0,952,'/3/e/3e3e3dcrc_4.jpg'),(12946,106,0,952,'container2'),(12947,121,0,952,'camper-lace-ups-blue-eu-44'),(12948,132,0,952,'0'),(12949,133,0,952,'/3/e/3e3e3dcrc_4.jpg'),(12950,206,0,952,'Leather'),(12955,73,0,953,'Camper Lace-ups-brown-EU 40'),(12956,84,0,953,'Camper Lace-ups'),(12957,86,0,953,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(12958,87,0,953,'/5/t/5t5t5rr4r4.jpg'),(12959,88,0,953,'/5/t/5t5t5rr4r4.jpg'),(12960,89,0,953,'/5/t/5t5t5rr4r4.jpg'),(12961,106,0,953,'container2'),(12962,121,0,953,'camper-lace-ups-brown-eu-40'),(12963,132,0,953,'0'),(12964,133,0,953,'/5/t/5t5t5rr4r4.jpg'),(12965,206,0,953,'Leather'),(12970,73,0,954,'Camper Lace-ups-brown-EU 41'),(12971,84,0,954,'Camper Lace-ups'),(12972,86,0,954,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(12973,87,0,954,'/5/t/5t5t5rr4r4_1.jpg'),(12974,88,0,954,'/5/t/5t5t5rr4r4_1.jpg'),(12975,89,0,954,'/5/t/5t5t5rr4r4_1.jpg'),(12976,106,0,954,'container2'),(12977,121,0,954,'camper-lace-ups-brown-eu-41'),(12978,132,0,954,'0'),(12979,133,0,954,'/5/t/5t5t5rr4r4_1.jpg'),(12980,206,0,954,'Leather'),(12985,73,0,955,'Camper Lace-ups-brown-EU 42'),(12986,84,0,955,'Camper Lace-ups'),(12987,86,0,955,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(12988,87,0,955,'/5/t/5t5t5rr4r4_2.jpg'),(12989,88,0,955,'/5/t/5t5t5rr4r4_2.jpg'),(12990,89,0,955,'/5/t/5t5t5rr4r4_2.jpg'),(12991,106,0,955,'container2'),(12992,121,0,955,'camper-lace-ups-brown-eu-42'),(12993,132,0,955,'0'),(12994,133,0,955,'/5/t/5t5t5rr4r4_2.jpg'),(12995,206,0,955,'Leather'),(13000,73,0,956,'Camper Lace-ups-brown-EU 43'),(13001,84,0,956,'Camper Lace-ups'),(13002,86,0,956,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(13003,87,0,956,'/5/t/5t5t5rr4r4_3.jpg'),(13004,88,0,956,'/5/t/5t5t5rr4r4_3.jpg'),(13005,89,0,956,'/5/t/5t5t5rr4r4_3.jpg'),(13006,106,0,956,'container2'),(13007,121,0,956,'camper-lace-ups-brown-eu-43'),(13008,132,0,956,'0'),(13009,133,0,956,'/5/t/5t5t5rr4r4_3.jpg'),(13010,206,0,956,'Leather'),(13015,73,0,957,'Camper Lace-ups-brown-EU 44'),(13016,84,0,957,'Camper Lace-ups'),(13017,86,0,957,'Camper Lace-ups Camper lace-up shoes combine an extra smart look and sporty elements to put an original twist on everyday style.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synt'),(13018,87,0,957,'/5/t/5t5t5rr4r4_4.jpg'),(13019,88,0,957,'/5/t/5t5t5rr4r4_4.jpg'),(13020,89,0,957,'/5/t/5t5t5rr4r4_4.jpg'),(13021,106,0,957,'container2'),(13022,121,0,957,'camper-lace-ups-brown-eu-44'),(13023,132,0,957,'0'),(13024,133,0,957,'/5/t/5t5t5rr4r4_4.jpg'),(13025,206,0,957,'Leather'),(13030,87,0,267,'/i/m/image_30947478_80_970x1182_0_1_.jpg'),(13031,88,0,267,'/i/m/image_30947478_80_970x1182_0_1_.jpg'),(13032,89,0,267,'/i/m/image_30947478_80_970x1182_0_1_.jpg'),(13033,133,0,267,'/i/m/image_30947478_80_970x1182_0_1_.jpg'),(13038,87,0,265,'/i/m/image_30947478_80_970x1182_0_1__1.jpg'),(13039,88,0,265,'/i/m/image_30947478_80_970x1182_0_1__1.jpg'),(13040,89,0,265,'/i/m/image_30947478_80_970x1182_0_1__1.jpg'),(13041,133,0,265,'/i/m/image_30947478_80_970x1182_0_1__1.jpg'),(13046,87,0,266,'/i/m/image_30947478_80_970x1182_0_1__2.jpg'),(13047,88,0,266,'/i/m/image_30947478_80_970x1182_0_1__2.jpg'),(13048,89,0,266,'/i/m/image_30947478_80_970x1182_0_1__2.jpg'),(13049,133,0,266,'/i/m/image_30947478_80_970x1182_0_1__2.jpg'),(13054,87,0,269,'/i/m/image_30947478_80_970x1182_0_1__3.jpg'),(13055,88,0,269,'/i/m/image_30947478_80_970x1182_0_1__3.jpg'),(13056,89,0,269,'/i/m/image_30947478_80_970x1182_0_1__3.jpg'),(13057,133,0,269,'/i/m/image_30947478_80_970x1182_0_1__3.jpg'),(13062,87,0,268,'/i/m/image_30947478_80_970x1182_0_1__4.jpg'),(13063,88,0,268,'/i/m/image_30947478_80_970x1182_0_1__4.jpg'),(13064,89,0,268,'/i/m/image_30947478_80_970x1182_0_1__4.jpg'),(13065,133,0,268,'/i/m/image_30947478_80_970x1182_0_1__4.jpg'),(13074,73,0,958,'Adidas Originals PW Tennis Hu-red-EU 40'),(13075,84,0,958,'Adidas Originals PW Tennis Hu'),(13076,86,0,958,'Adidas Originals PW Tennis Hu Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper,'),(13077,87,0,958,'/3/3/3343rr44.jpg'),(13078,88,0,958,'/3/3/3343rr44.jpg'),(13079,89,0,958,'/3/3/3343rr44.jpg'),(13080,106,0,958,'container2'),(13081,121,0,958,'adidas-originals-pw-tennis-hu-red-eu-40'),(13082,132,0,958,'0'),(13083,133,0,958,'/3/3/3343rr44.jpg'),(13084,206,0,958,'textile, synthetic'),(13089,73,0,959,'Adidas Originals PW Tennis Hu-red-EU 41'),(13090,84,0,959,'Adidas Originals PW Tennis Hu'),(13091,86,0,959,'Adidas Originals PW Tennis Hu Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper,'),(13092,87,0,959,'/3/3/3343rr44_1.jpg'),(13093,88,0,959,'/3/3/3343rr44_1.jpg'),(13094,89,0,959,'/3/3/3343rr44_1.jpg'),(13095,106,0,959,'container2'),(13096,121,0,959,'adidas-originals-pw-tennis-hu-red-eu-41'),(13097,132,0,959,'0'),(13098,133,0,959,'/3/3/3343rr44_1.jpg'),(13099,206,0,959,'textile, synthetic'),(13292,73,0,972,'Lloyd Half Boots-red-EU 39'),(13293,84,0,972,'Lloyd Half Boots'),(13294,86,0,972,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(13295,87,0,972,'/3/4/34r4r4r4_6.jpg'),(13296,88,0,972,'/3/4/34r4r4r4_6.jpg'),(13297,89,0,972,'/3/4/34r4r4r4_6.jpg'),(13298,106,0,972,'container2'),(13299,121,0,972,'lloyd-half-boots-red-eu-39'),(13300,132,0,972,'0'),(13301,133,0,972,'/3/4/34r4r4r4_6.jpg'),(13302,206,0,972,' leather'),(13307,73,0,973,'Lloyd Half Boots-red-EU 40'),(13308,84,0,973,'Lloyd Half Boots'),(13309,86,0,973,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(13310,87,0,973,'/3/4/34r4r4r4_1_1.jpg'),(13311,88,0,973,'/3/4/34r4r4r4_1_1.jpg'),(13312,89,0,973,'/3/4/34r4r4r4_1_1.jpg'),(13313,106,0,973,'container2'),(13314,121,0,973,'lloyd-half-boots-red-eu-40'),(13315,132,0,973,'0'),(13316,133,0,973,'/3/4/34r4r4r4_1_1.jpg'),(13317,206,0,973,' leather'),(13322,73,0,974,'Lloyd Half Boots-red-EU 41'),(13323,84,0,974,'Lloyd Half Boots'),(13324,86,0,974,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(13325,87,0,974,'/3/4/34r4r4r4_2_1.jpg'),(13326,88,0,974,'/3/4/34r4r4r4_2_1.jpg'),(13327,89,0,974,'/3/4/34r4r4r4_2_1.jpg'),(13328,106,0,974,'container2'),(13329,121,0,974,'lloyd-half-boots-red-eu-41'),(13330,132,0,974,'0'),(13331,133,0,974,'/3/4/34r4r4r4_2_1.jpg'),(13332,206,0,974,' leather'),(13337,73,0,975,'Lloyd Half Boots-red-EU 42'),(13338,84,0,975,'Lloyd Half Boots'),(13339,86,0,975,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(13340,87,0,975,'/3/4/34r4r4r4_3_1.jpg'),(13341,88,0,975,'/3/4/34r4r4r4_3_1.jpg'),(13342,89,0,975,'/3/4/34r4r4r4_3_1.jpg'),(13343,106,0,975,'container2'),(13344,121,0,975,'lloyd-half-boots-red-eu-42'),(13345,132,0,975,'0'),(13346,133,0,975,'/3/4/34r4r4r4_3_1.jpg'),(13347,206,0,975,' leather'),(13352,73,0,976,'Lloyd Half Boots-red-EU 43'),(13353,84,0,976,'Lloyd Half Boots'),(13354,86,0,976,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(13355,87,0,976,'/3/4/34r4r4r4_4_1.jpg'),(13356,88,0,976,'/3/4/34r4r4r4_4_1.jpg'),(13357,89,0,976,'/3/4/34r4r4r4_4_1.jpg'),(13358,106,0,976,'container2'),(13359,121,0,976,'lloyd-half-boots-red-eu-43'),(13360,132,0,976,'0'),(13361,133,0,976,'/3/4/34r4r4r4_4_1.jpg'),(13362,206,0,976,' leather'),(13367,73,0,977,'Lloyd Half Boots-red-EU 44'),(13368,84,0,977,'Lloyd Half Boots'),(13369,86,0,977,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(13370,87,0,977,'/3/4/34r4r4r4_5_1.jpg'),(13371,88,0,977,'/3/4/34r4r4r4_5_1.jpg'),(13372,89,0,977,'/3/4/34r4r4r4_5_1.jpg'),(13373,106,0,977,'container2'),(13374,121,0,977,'lloyd-half-boots-red-eu-44'),(13375,132,0,977,'0'),(13376,133,0,977,'/3/4/34r4r4r4_5_1.jpg'),(13377,206,0,977,' leather'),(13382,73,0,978,'Lloyd Half Boots-red-EU 45'),(13383,84,0,978,'Lloyd Half Boots'),(13384,86,0,978,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(13385,87,0,978,'/3/4/34r4r4r4_6_1.jpg'),(13386,88,0,978,'/3/4/34r4r4r4_6_1.jpg'),(13387,89,0,978,'/3/4/34r4r4r4_6_1.jpg'),(13388,106,0,978,'container2'),(13389,121,0,978,'lloyd-half-boots-red-eu-45'),(13390,132,0,978,'0'),(13391,133,0,978,'/3/4/34r4r4r4_6_1.jpg'),(13392,206,0,978,' leather'),(13397,73,0,979,'Lloyd Half Boots-grey-EU 39'),(13398,84,0,979,'Lloyd Half Boots'),(13399,86,0,979,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(13400,87,0,979,'/2/4/2454654fff_6.jpg'),(13401,88,0,979,'/2/4/2454654fff_6.jpg'),(13402,89,0,979,'/2/4/2454654fff_6.jpg'),(13403,106,0,979,'container2'),(13404,121,0,979,'lloyd-half-boots-grey-eu-39'),(13405,132,0,979,'0'),(13406,133,0,979,'/2/4/2454654fff_6.jpg'),(13407,206,0,979,' leather'),(13412,73,0,980,'Lloyd Half Boots-grey-EU 40'),(13413,84,0,980,'Lloyd Half Boots'),(13414,86,0,980,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(13415,87,0,980,'/2/4/2454654fff_1_1.jpg'),(13416,88,0,980,'/2/4/2454654fff_1_1.jpg'),(13417,89,0,980,'/2/4/2454654fff_1_1.jpg'),(13418,106,0,980,'container2'),(13419,121,0,980,'lloyd-half-boots-grey-eu-40'),(13420,132,0,980,'0'),(13421,133,0,980,'/2/4/2454654fff_1_1.jpg'),(13422,206,0,980,' leather'),(13427,73,0,981,'Lloyd Half Boots-grey-EU 41'),(13428,84,0,981,'Lloyd Half Boots'),(13429,86,0,981,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(13430,87,0,981,'/2/4/2454654fff_2_1.jpg'),(13431,88,0,981,'/2/4/2454654fff_2_1.jpg'),(13432,89,0,981,'/2/4/2454654fff_2_1.jpg'),(13433,106,0,981,'container2'),(13434,121,0,981,'lloyd-half-boots-grey-eu-41'),(13435,132,0,981,'0'),(13436,133,0,981,'/2/4/2454654fff_2_1.jpg'),(13437,206,0,981,' leather'),(13442,73,0,982,'Lloyd Half Boots-grey-EU 42'),(13443,84,0,982,'Lloyd Half Boots'),(13444,86,0,982,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(13445,87,0,982,'/2/4/2454654fff_3_1.jpg'),(13446,88,0,982,'/2/4/2454654fff_3_1.jpg'),(13447,89,0,982,'/2/4/2454654fff_3_1.jpg'),(13448,106,0,982,'container2'),(13449,121,0,982,'lloyd-half-boots-grey-eu-42'),(13450,132,0,982,'0'),(13451,133,0,982,'/2/4/2454654fff_3_1.jpg'),(13452,206,0,982,' leather'),(13457,73,0,983,'Lloyd Half Boots-grey-EU 43'),(13458,84,0,983,'Lloyd Half Boots'),(13459,86,0,983,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(13460,87,0,983,'/2/4/2454654fff_4_1.jpg'),(13461,88,0,983,'/2/4/2454654fff_4_1.jpg'),(13462,89,0,983,'/2/4/2454654fff_4_1.jpg'),(13463,106,0,983,'container2'),(13464,121,0,983,'lloyd-half-boots-grey-eu-43'),(13465,132,0,983,'0'),(13466,133,0,983,'/2/4/2454654fff_4_1.jpg'),(13467,206,0,983,' leather'),(13472,73,0,984,'Lloyd Half Boots-grey-EU 44'),(13473,84,0,984,'Lloyd Half Boots'),(13474,86,0,984,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(13475,87,0,984,'/2/4/2454654fff_5_1.jpg'),(13476,88,0,984,'/2/4/2454654fff_5_1.jpg'),(13477,89,0,984,'/2/4/2454654fff_5_1.jpg'),(13478,106,0,984,'container2'),(13479,121,0,984,'lloyd-half-boots-grey-eu-44'),(13480,132,0,984,'0'),(13481,133,0,984,'/2/4/2454654fff_5_1.jpg'),(13482,206,0,984,' leather'),(13487,73,0,985,'Lloyd Half Boots-grey-EU 45'),(13488,84,0,985,'Lloyd Half Boots'),(13489,86,0,985,'Lloyd Half Boots Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nu'),(13490,87,0,985,'/2/4/2454654fff_6_1.jpg'),(13491,88,0,985,'/2/4/2454654fff_6_1.jpg'),(13492,89,0,985,'/2/4/2454654fff_6_1.jpg'),(13493,106,0,985,'container2'),(13494,121,0,985,'lloyd-half-boots-grey-eu-45'),(13495,132,0,985,'0'),(13496,133,0,985,'/2/4/2454654fff_6_1.jpg'),(13497,206,0,985,' leather'),(13506,73,0,986,'Gant Marvel-brown-EU 39'),(13507,84,0,986,'Gant Marvel'),(13508,86,0,986,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13509,87,0,986,'/i/m/image_31085465_74_620x757_0_1_1.jpg'),(13510,88,0,986,'/i/m/image_31085465_74_620x757_0_1_1.jpg'),(13511,89,0,986,'/i/m/image_31085465_74_620x757_0_1_1.jpg'),(13512,106,0,986,'container2'),(13513,121,0,986,'gant-marvel-brown-eu-39'),(13514,132,0,986,'0'),(13515,133,0,986,'/i/m/image_31085465_74_620x757_0_1_1.jpg'),(13516,206,0,986,'leather'),(13521,73,0,987,'Gant Marvel-brown-EU 40'),(13522,84,0,987,'Gant Marvel'),(13523,86,0,987,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13524,87,0,987,'/i/m/image_31085465_74_620x757_0_1_1_1.jpg'),(13525,88,0,987,'/i/m/image_31085465_74_620x757_0_1_1_1.jpg'),(13526,89,0,987,'/i/m/image_31085465_74_620x757_0_1_1_1.jpg'),(13527,106,0,987,'container2'),(13528,121,0,987,'gant-marvel-brown-eu-40'),(13529,132,0,987,'0'),(13530,133,0,987,'/i/m/image_31085465_74_620x757_0_1_1_1.jpg'),(13531,206,0,987,'leather'),(13536,73,0,988,'Gant Marvel-brown-EU 41'),(13537,84,0,988,'Gant Marvel'),(13538,86,0,988,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13539,87,0,988,'/i/m/image_31085465_74_620x757_0_1_2.jpg'),(13540,88,0,988,'/i/m/image_31085465_74_620x757_0_1_2.jpg'),(13541,89,0,988,'/i/m/image_31085465_74_620x757_0_1_2.jpg'),(13542,106,0,988,'container2'),(13543,121,0,988,'gant-marvel-brown-eu-41'),(13544,132,0,988,'0'),(13545,133,0,988,'/i/m/image_31085465_74_620x757_0_1_2.jpg'),(13546,206,0,988,'leather'),(13551,73,0,989,'Gant Marvel-brown-EU 42'),(13552,84,0,989,'Gant Marvel'),(13553,86,0,989,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13554,87,0,989,'/i/m/image_31085465_74_620x757_0_1_3.jpg'),(13555,88,0,989,'/i/m/image_31085465_74_620x757_0_1_3.jpg'),(13556,89,0,989,'/i/m/image_31085465_74_620x757_0_1_3.jpg'),(13557,106,0,989,'container2'),(13558,121,0,989,'gant-marvel-brown-eu-42'),(13559,132,0,989,'0'),(13560,133,0,989,'/i/m/image_31085465_74_620x757_0_1_3.jpg'),(13561,206,0,989,'leather'),(13566,73,0,990,'Gant Marvel-brown-EU 43'),(13567,84,0,990,'Gant Marvel'),(13568,86,0,990,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13569,87,0,990,'/i/m/image_31085465_74_620x757_0_1_4.jpg'),(13570,88,0,990,'/i/m/image_31085465_74_620x757_0_1_4.jpg'),(13571,89,0,990,'/i/m/image_31085465_74_620x757_0_1_4.jpg'),(13572,106,0,990,'container2'),(13573,121,0,990,'gant-marvel-brown-eu-43'),(13574,132,0,990,'0'),(13575,133,0,990,'/i/m/image_31085465_74_620x757_0_1_4.jpg'),(13576,206,0,990,'leather'),(13581,73,0,991,'Gant Marvel-brown-EU 44'),(13582,84,0,991,'Gant Marvel'),(13583,86,0,991,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13584,87,0,991,'/i/m/image_31085465_74_620x757_0_1_5.jpg'),(13585,88,0,991,'/i/m/image_31085465_74_620x757_0_1_5.jpg'),(13586,89,0,991,'/i/m/image_31085465_74_620x757_0_1_5.jpg'),(13587,106,0,991,'container2'),(13588,121,0,991,'gant-marvel-brown-eu-44'),(13589,132,0,991,'0'),(13590,133,0,991,'/i/m/image_31085465_74_620x757_0_1_5.jpg'),(13591,206,0,991,'leather'),(13596,73,0,992,'Gant Marvel-grey-EU 39'),(13597,84,0,992,'Gant Marvel'),(13598,86,0,992,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13599,87,0,992,'/1/2/12ws33d4e4.jpg'),(13600,88,0,992,'/1/2/12ws33d4e4.jpg'),(13601,89,0,992,'/1/2/12ws33d4e4.jpg'),(13602,106,0,992,'container2'),(13603,121,0,992,'gant-marvel-grey-eu-39'),(13604,132,0,992,'0'),(13605,133,0,992,'/1/2/12ws33d4e4.jpg'),(13606,206,0,992,'leather'),(13611,73,0,993,'Gant Marvel-grey-EU 40'),(13612,84,0,993,'Gant Marvel'),(13613,86,0,993,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13614,87,0,993,'/1/2/12ws33d4e4_1.jpg'),(13615,88,0,993,'/1/2/12ws33d4e4_1.jpg'),(13616,89,0,993,'/1/2/12ws33d4e4_1.jpg'),(13617,106,0,993,'container2'),(13618,121,0,993,'gant-marvel-grey-eu-40'),(13619,132,0,993,'0'),(13620,133,0,993,'/1/2/12ws33d4e4_1.jpg'),(13621,206,0,993,'leather'),(13626,73,0,994,'Gant Marvel-grey-EU 41'),(13627,84,0,994,'Gant Marvel'),(13628,86,0,994,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13629,87,0,994,'/1/2/12ws33d4e4_2.jpg'),(13630,88,0,994,'/1/2/12ws33d4e4_2.jpg'),(13631,89,0,994,'/1/2/12ws33d4e4_2.jpg'),(13632,106,0,994,'container2'),(13633,121,0,994,'gant-marvel-grey-eu-41'),(13634,132,0,994,'0'),(13635,133,0,994,'/1/2/12ws33d4e4_2.jpg'),(13636,206,0,994,'leather'),(13641,73,0,995,'Gant Marvel-grey-EU 42'),(13642,84,0,995,'Gant Marvel'),(13643,86,0,995,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13644,87,0,995,'/1/2/12ws33d4e4_3.jpg'),(13645,88,0,995,'/1/2/12ws33d4e4_3.jpg'),(13646,89,0,995,'/1/2/12ws33d4e4_3.jpg'),(13647,106,0,995,'container2'),(13648,121,0,995,'gant-marvel-grey-eu-42'),(13649,132,0,995,'0'),(13650,133,0,995,'/1/2/12ws33d4e4_3.jpg'),(13651,206,0,995,'leather'),(13656,73,0,996,'Gant Marvel-grey-EU 43'),(13657,84,0,996,'Gant Marvel'),(13658,86,0,996,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13659,87,0,996,'/1/2/12ws33d4e4_4.jpg'),(13660,88,0,996,'/1/2/12ws33d4e4_4.jpg'),(13661,89,0,996,'/1/2/12ws33d4e4_4.jpg'),(13662,106,0,996,'container2'),(13663,121,0,996,'gant-marvel-grey-eu-43'),(13664,132,0,996,'0'),(13665,133,0,996,'/1/2/12ws33d4e4_4.jpg'),(13666,206,0,996,'leather'),(13671,73,0,997,'Gant Marvel-grey-EU 44'),(13672,84,0,997,'Gant Marvel'),(13673,86,0,997,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13674,87,0,997,'/1/2/12ws33d4e4_5.jpg'),(13675,88,0,997,'/1/2/12ws33d4e4_5.jpg'),(13676,89,0,997,'/1/2/12ws33d4e4_5.jpg'),(13677,106,0,997,'container2'),(13678,121,0,997,'gant-marvel-grey-eu-44'),(13679,132,0,997,'0'),(13680,133,0,997,'/1/2/12ws33d4e4_5.jpg'),(13681,206,0,997,'leather'),(13686,73,0,998,'Gant Marvel-black-EU 39'),(13687,84,0,998,'Gant Marvel'),(13688,86,0,998,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13689,87,0,998,'/3/5/356ggt6t.jpg'),(13690,88,0,998,'/3/5/356ggt6t.jpg'),(13691,89,0,998,'/3/5/356ggt6t.jpg'),(13692,106,0,998,'container2'),(13693,121,0,998,'gant-marvel-black-eu-39'),(13694,132,0,998,'0'),(13695,133,0,998,'/3/5/356ggt6t.jpg'),(13696,206,0,998,'leather'),(13701,73,0,999,'Gant Marvel-black-EU 40'),(13702,84,0,999,'Gant Marvel'),(13703,86,0,999,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13704,87,0,999,'/3/5/356ggt6t_1.jpg'),(13705,88,0,999,'/3/5/356ggt6t_1.jpg'),(13706,89,0,999,'/3/5/356ggt6t_1.jpg'),(13707,106,0,999,'container2'),(13708,121,0,999,'gant-marvel-black-eu-40'),(13709,132,0,999,'0'),(13710,133,0,999,'/3/5/356ggt6t_1.jpg'),(13711,206,0,999,'leather'),(13716,73,0,1000,'Gant Marvel-black-EU 41'),(13717,84,0,1000,'Gant Marvel'),(13718,86,0,1000,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13719,87,0,1000,'/3/5/356ggt6t_2.jpg'),(13720,88,0,1000,'/3/5/356ggt6t_2.jpg'),(13721,89,0,1000,'/3/5/356ggt6t_2.jpg'),(13722,106,0,1000,'container2'),(13723,121,0,1000,'gant-marvel-black-eu-41'),(13724,132,0,1000,'0'),(13725,133,0,1000,'/3/5/356ggt6t_2.jpg'),(13726,206,0,1000,'leather'),(13731,73,0,1001,'Gant Marvel-black-EU 42'),(13732,84,0,1001,'Gant Marvel'),(13733,86,0,1001,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13734,87,0,1001,'/3/5/356ggt6t_3.jpg'),(13735,88,0,1001,'/3/5/356ggt6t_3.jpg'),(13736,89,0,1001,'/3/5/356ggt6t_3.jpg'),(13737,106,0,1001,'container2'),(13738,121,0,1001,'gant-marvel-black-eu-42'),(13739,132,0,1001,'0'),(13740,133,0,1001,'/3/5/356ggt6t_3.jpg'),(13741,206,0,1001,'leather'),(13746,73,0,1002,'Gant Marvel-black-EU 43'),(13747,84,0,1002,'Gant Marvel'),(13748,86,0,1002,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13749,87,0,1002,'/3/5/356ggt6t_4.jpg'),(13750,88,0,1002,'/3/5/356ggt6t_4.jpg'),(13751,89,0,1002,'/3/5/356ggt6t_4.jpg'),(13752,106,0,1002,'container2'),(13753,121,0,1002,'gant-marvel-black-eu-43'),(13754,132,0,1002,'0'),(13755,133,0,1002,'/3/5/356ggt6t_4.jpg'),(13756,206,0,1002,'leather'),(13761,73,0,1003,'Gant Marvel-black-EU 44'),(13762,84,0,1003,'Gant Marvel'),(13763,86,0,1003,'Gant Marvel Suede taupe colour Gant Marvel half boots'),(13764,87,0,1003,'/3/5/356ggt6t_5.jpg'),(13765,88,0,1003,'/3/5/356ggt6t_5.jpg'),(13766,89,0,1003,'/3/5/356ggt6t_5.jpg'),(13767,106,0,1003,'container2'),(13768,121,0,1003,'gant-marvel-black-eu-44'),(13769,132,0,1003,'0'),(13770,133,0,1003,'/3/5/356ggt6t_5.jpg'),(13771,206,0,1003,'leather'),(13780,73,0,1004,'Boxfresh-EU 39-blue'),(13781,84,0,1004,'Boxfresh'),(13782,86,0,1004,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(13783,87,0,1004,'/3/4/3445tr4e.jpg'),(13784,88,0,1004,'/3/4/3445tr4e.jpg'),(13785,89,0,1004,'/3/4/3445tr4e.jpg'),(13786,106,0,1004,'container2'),(13787,121,0,1004,'boxfresh-eu-39-blue'),(13788,132,0,1004,'0'),(13789,133,0,1004,'/3/4/3445tr4e.jpg'),(13790,206,0,1004,' leather'),(13795,73,0,1005,'Boxfresh-EU 39-black'),(13796,84,0,1005,'Boxfresh'),(13797,86,0,1005,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(13798,87,0,1005,'/3/4/34eeddd.jpg'),(13799,88,0,1005,'/3/4/34eeddd.jpg'),(13800,89,0,1005,'/3/4/34eeddd.jpg'),(13801,106,0,1005,'container2'),(13802,121,0,1005,'boxfresh-eu-39-black'),(13803,132,0,1005,'0'),(13804,133,0,1005,'/3/4/34eeddd.jpg'),(13805,206,0,1005,' leather'),(13810,73,0,1006,'Boxfresh-EU 40-blue'),(13811,84,0,1006,'Boxfresh'),(13812,86,0,1006,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(13813,87,0,1006,'/3/4/3445tr4e_1.jpg'),(13814,88,0,1006,'/3/4/3445tr4e_1.jpg'),(13815,89,0,1006,'/3/4/3445tr4e_1.jpg'),(13816,106,0,1006,'container2'),(13817,121,0,1006,'boxfresh-eu-40-blue'),(13818,132,0,1006,'0'),(13819,133,0,1006,'/3/4/3445tr4e_1.jpg'),(13820,206,0,1006,' leather'),(13825,73,0,1007,'Boxfresh-EU 40-black'),(13826,84,0,1007,'Boxfresh'),(13827,86,0,1007,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(13828,87,0,1007,'/3/4/34eeddd_1.jpg'),(13829,88,0,1007,'/3/4/34eeddd_1.jpg'),(13830,89,0,1007,'/3/4/34eeddd_1.jpg'),(13831,106,0,1007,'container2'),(13832,121,0,1007,'boxfresh-eu-40-black'),(13833,132,0,1007,'0'),(13834,133,0,1007,'/3/4/34eeddd_1.jpg'),(13835,206,0,1007,' leather'),(13840,73,0,1008,'Boxfresh-EU 41-blue'),(13841,84,0,1008,'Boxfresh'),(13842,86,0,1008,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(13843,87,0,1008,'/3/4/3445tr4e_2.jpg'),(13844,88,0,1008,'/3/4/3445tr4e_2.jpg'),(13845,89,0,1008,'/3/4/3445tr4e_2.jpg'),(13846,106,0,1008,'container2'),(13847,121,0,1008,'boxfresh-eu-41-blue'),(13848,132,0,1008,'0'),(13849,133,0,1008,'/3/4/3445tr4e_2.jpg'),(13850,206,0,1008,' leather'),(13855,73,0,1009,'Boxfresh-EU 41-black'),(13856,84,0,1009,'Boxfresh'),(13857,86,0,1009,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(13858,87,0,1009,'/3/4/34eeddd_2.jpg'),(13859,88,0,1009,'/3/4/34eeddd_2.jpg'),(13860,89,0,1009,'/3/4/34eeddd_2.jpg'),(13861,106,0,1009,'container2'),(13862,121,0,1009,'boxfresh-eu-41-black'),(13863,132,0,1009,'0'),(13864,133,0,1009,'/3/4/34eeddd_2.jpg'),(13865,206,0,1009,' leather'),(13870,73,0,1010,'Boxfresh-EU 42-blue'),(13871,84,0,1010,'Boxfresh'),(13872,86,0,1010,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(13873,87,0,1010,'/3/4/3445tr4e_3.jpg'),(13874,88,0,1010,'/3/4/3445tr4e_3.jpg'),(13875,89,0,1010,'/3/4/3445tr4e_3.jpg'),(13876,106,0,1010,'container2'),(13877,121,0,1010,'boxfresh-eu-42-blue'),(13878,132,0,1010,'0'),(13879,133,0,1010,'/3/4/3445tr4e_3.jpg'),(13880,206,0,1010,' leather'),(13885,73,0,1011,'Boxfresh-EU 42-black'),(13886,84,0,1011,'Boxfresh'),(13887,86,0,1011,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(13888,87,0,1011,'/3/4/34eeddd_3.jpg'),(13889,88,0,1011,'/3/4/34eeddd_3.jpg'),(13890,89,0,1011,'/3/4/34eeddd_3.jpg'),(13891,106,0,1011,'container2'),(13892,121,0,1011,'boxfresh-eu-42-black'),(13893,132,0,1011,'0'),(13894,133,0,1011,'/3/4/34eeddd_3.jpg'),(13895,206,0,1011,' leather'),(13900,73,0,1012,'Boxfresh-EU 43-blue'),(13901,84,0,1012,'Boxfresh'),(13902,86,0,1012,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(13903,87,0,1012,'/3/4/3445tr4e_4.jpg'),(13904,88,0,1012,'/3/4/3445tr4e_4.jpg'),(13905,89,0,1012,'/3/4/3445tr4e_4.jpg'),(13906,106,0,1012,'container2'),(13907,121,0,1012,'boxfresh-eu-43-blue'),(13908,132,0,1012,'0'),(13909,133,0,1012,'/3/4/3445tr4e_4.jpg'),(13910,206,0,1012,' leather'),(13915,73,0,1013,'Boxfresh-EU 43-black'),(13916,84,0,1013,'Boxfresh'),(13917,86,0,1013,'Boxfresh \r\nMeasurements for size EU 42: heel approx. X high 2,2 cm (1″)\r\nExtras: patent leather, suede leather detailing, logo appliqué(s), strap(s) on the bootlegs, Ortholite inner soles\r\nOuter material: leather\r\nInner material: textile\r\nOutsole: synthet'),(13918,87,0,1013,'/3/4/34eeddd_4.jpg'),(13919,88,0,1013,'/3/4/34eeddd_4.jpg'),(13920,89,0,1013,'/3/4/34eeddd_4.jpg'),(13921,106,0,1013,'container2'),(13922,121,0,1013,'boxfresh-eu-43-black'),(13923,132,0,1013,'0'),(13924,133,0,1013,'/3/4/34eeddd_4.jpg'),(13925,206,0,1013,' leather'),(13934,73,0,1014,'Hooded Sweater-grey-Small size'),(13935,84,0,1014,'Hooded Sweater'),(13936,86,0,1014,'Hooded Sweater '),(13937,87,0,1014,'/i/m/image_31305746_81_620x757_0_2_.jpg'),(13938,88,0,1014,'/i/m/image_31305746_81_620x757_0_2_.jpg'),(13939,89,0,1014,'/i/m/image_31305746_81_620x757_0_2_.jpg'),(13940,106,0,1014,'container2'),(13941,121,0,1014,'hooded-sweater-grey-small-size'),(13942,132,0,1014,'0'),(13943,133,0,1014,'/i/m/image_31305746_81_620x757_0_2_.jpg'),(13944,206,0,1014,'80% cotton, 20% polyester'),(13949,73,0,1015,'Hooded Sweater-grey-Medium size'),(13950,84,0,1015,'Hooded Sweater'),(13951,86,0,1015,'Hooded Sweater '),(13952,87,0,1015,'/i/m/image_31305746_81_620x757_0_2__1.jpg'),(13953,88,0,1015,'/i/m/image_31305746_81_620x757_0_2__1.jpg'),(13954,89,0,1015,'/i/m/image_31305746_81_620x757_0_2__1.jpg'),(13955,106,0,1015,'container2'),(13956,121,0,1015,'hooded-sweater-grey-medium-size'),(13957,132,0,1015,'0'),(13958,133,0,1015,'/i/m/image_31305746_81_620x757_0_2__1.jpg'),(13959,206,0,1015,'80% cotton, 20% polyester'),(13964,73,0,1016,'Hooded Sweater-grey-Large size'),(13965,84,0,1016,'Hooded Sweater'),(13966,86,0,1016,'Hooded Sweater '),(13967,87,0,1016,'/i/m/image_31305746_81_620x757_0_2__2.jpg'),(13968,88,0,1016,'/i/m/image_31305746_81_620x757_0_2__2.jpg'),(13969,89,0,1016,'/i/m/image_31305746_81_620x757_0_2__2.jpg'),(13970,106,0,1016,'container2'),(13971,121,0,1016,'hooded-sweater-grey-large-size'),(13972,132,0,1016,'0'),(13973,133,0,1016,'/i/m/image_31305746_81_620x757_0_2__2.jpg'),(13974,206,0,1016,'80% cotton, 20% polyester'),(13979,73,0,1017,'Hooded Sweater-red-Small size'),(13980,84,0,1017,'Hooded Sweater'),(13981,86,0,1017,'Hooded Sweater '),(13982,87,0,1017,'/6/t/6t6vttghh7h.jpg'),(13983,88,0,1017,'/6/t/6t6vttghh7h.jpg'),(13984,89,0,1017,'/6/t/6t6vttghh7h.jpg'),(13985,106,0,1017,'container2'),(13986,121,0,1017,'hooded-sweater-red-small-size'),(13987,132,0,1017,'0'),(13988,133,0,1017,'/6/t/6t6vttghh7h.jpg'),(13989,206,0,1017,'80% cotton, 20% polyester'),(13994,73,0,1018,'Hooded Sweater-red-Medium size'),(13995,84,0,1018,'Hooded Sweater'),(13996,86,0,1018,'Hooded Sweater '),(13997,87,0,1018,'/6/t/6t6vttghh7h_1.jpg'),(13998,88,0,1018,'/6/t/6t6vttghh7h_1.jpg'),(13999,89,0,1018,'/6/t/6t6vttghh7h_1.jpg'),(14000,106,0,1018,'container2'),(14001,121,0,1018,'hooded-sweater-red-medium-size'),(14002,132,0,1018,'0'),(14003,133,0,1018,'/6/t/6t6vttghh7h_1.jpg'),(14004,206,0,1018,'80% cotton, 20% polyester'),(14009,73,0,1019,'Hooded Sweater-red-Large size'),(14010,84,0,1019,'Hooded Sweater'),(14011,86,0,1019,'Hooded Sweater '),(14012,87,0,1019,'/6/t/6t6vttghh7h_2.jpg'),(14013,88,0,1019,'/6/t/6t6vttghh7h_2.jpg'),(14014,89,0,1019,'/6/t/6t6vttghh7h_2.jpg'),(14015,106,0,1019,'container2'),(14016,121,0,1019,'hooded-sweater-red-large-size'),(14017,132,0,1019,'0'),(14018,133,0,1019,'/6/t/6t6vttghh7h_2.jpg'),(14019,206,0,1019,'80% cotton, 20% polyester'),(14024,73,0,1020,'Hooded Sweater-black-Small size'),(14025,84,0,1020,'Hooded Sweater'),(14026,86,0,1020,'Hooded Sweater '),(14027,87,0,1020,'/2/e/2e555r4r4r.jpg'),(14028,88,0,1020,'/2/e/2e555r4r4r.jpg'),(14029,89,0,1020,'/2/e/2e555r4r4r.jpg'),(14030,106,0,1020,'container2'),(14031,121,0,1020,'hooded-sweater-black-small-size'),(14032,132,0,1020,'0'),(14033,133,0,1020,'/2/e/2e555r4r4r.jpg'),(14034,206,0,1020,'80% cotton, 20% polyester'),(14039,73,0,1021,'Hooded Sweater-black-Medium size'),(14040,84,0,1021,'Hooded Sweater'),(14041,86,0,1021,'Hooded Sweater '),(14042,87,0,1021,'/2/e/2e555r4r4r_1.jpg'),(14043,88,0,1021,'/2/e/2e555r4r4r_1.jpg'),(14044,89,0,1021,'/2/e/2e555r4r4r_1.jpg'),(14045,106,0,1021,'container2'),(14046,121,0,1021,'hooded-sweater-black-medium-size'),(14047,132,0,1021,'0'),(14048,133,0,1021,'/2/e/2e555r4r4r_1.jpg'),(14049,206,0,1021,'80% cotton, 20% polyester'),(14054,73,0,1022,'Hooded Sweater-black-Large size'),(14055,84,0,1022,'Hooded Sweater'),(14056,86,0,1022,'Hooded Sweater '),(14057,87,0,1022,'/2/e/2e555r4r4r_2.jpg'),(14058,88,0,1022,'/2/e/2e555r4r4r_2.jpg'),(14059,89,0,1022,'/2/e/2e555r4r4r_2.jpg'),(14060,106,0,1022,'container2'),(14061,121,0,1022,'hooded-sweater-black-large-size'),(14062,132,0,1022,'0'),(14063,133,0,1022,'/2/e/2e555r4r4r_2.jpg'),(14064,206,0,1022,'80% cotton, 20% polyester'),(14073,73,0,1023,'Black Standard Jeans-Small size-grey'),(14074,84,0,1023,'Black Standard Jeans'),(14075,86,0,1023,'Black Standard Jeans Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMa'),(14076,87,0,1023,'/3/4/345454t56y6.jpg'),(14077,88,0,1023,'/3/4/345454t56y6.jpg'),(14078,89,0,1023,'/3/4/345454t56y6.jpg'),(14079,106,0,1023,'container2'),(14080,121,0,1023,'black-standard-jeans-small-size-grey'),(14081,132,0,1023,'0'),(14082,133,0,1023,'/3/4/345454t56y6.jpg'),(14083,206,0,1023,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(14088,73,0,1024,'Black Standard Jeans-Small size-brown'),(14089,84,0,1024,'Black Standard Jeans'),(14090,86,0,1024,'Black Standard Jeans Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMa'),(14091,87,0,1024,'/8/7/87yygyg6g.jpg'),(14092,88,0,1024,'/8/7/87yygyg6g.jpg'),(14093,89,0,1024,'/8/7/87yygyg6g.jpg'),(14094,106,0,1024,'container2'),(14095,121,0,1024,'black-standard-jeans-small-size-brown'),(14096,132,0,1024,'0'),(14097,133,0,1024,'/8/7/87yygyg6g.jpg'),(14098,206,0,1024,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(14103,73,0,1025,'Black Standard Jeans-Medium size-grey'),(14104,84,0,1025,'Black Standard Jeans'),(14105,86,0,1025,'Black Standard Jeans Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMa'),(14106,87,0,1025,'/3/4/345454t56y6_1.jpg'),(14107,88,0,1025,'/3/4/345454t56y6_1.jpg'),(14108,89,0,1025,'/3/4/345454t56y6_1.jpg'),(14109,106,0,1025,'container2'),(14110,121,0,1025,'black-standard-jeans-medium-size-grey'),(14111,132,0,1025,'0'),(14112,133,0,1025,'/3/4/345454t56y6_1.jpg'),(14113,206,0,1025,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(14118,73,0,1026,'Black Standard Jeans-Medium size-brown'),(14119,84,0,1026,'Black Standard Jeans'),(14120,86,0,1026,'Black Standard Jeans Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMa'),(14121,87,0,1026,'/8/7/87yygyg6g_1.jpg'),(14122,88,0,1026,'/8/7/87yygyg6g_1.jpg'),(14123,89,0,1026,'/8/7/87yygyg6g_1.jpg'),(14124,106,0,1026,'container2'),(14125,121,0,1026,'black-standard-jeans-medium-size-brown'),(14126,132,0,1026,'0'),(14127,133,0,1026,'/8/7/87yygyg6g_1.jpg'),(14128,206,0,1026,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(14133,73,0,1027,'Black Standard Jeans-Large size-grey'),(14134,84,0,1027,'Black Standard Jeans'),(14135,86,0,1027,'Black Standard Jeans Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMa'),(14136,87,0,1027,'/3/4/345454t56y6_2.jpg'),(14137,88,0,1027,'/3/4/345454t56y6_2.jpg'),(14138,89,0,1027,'/3/4/345454t56y6_2.jpg'),(14139,106,0,1027,'container2'),(14140,121,0,1027,'black-standard-jeans-large-size-grey'),(14141,132,0,1027,'0'),(14142,133,0,1027,'/3/4/345454t56y6_2.jpg'),(14143,206,0,1027,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(14148,73,0,1028,'Black Standard Jeans-Large size-brown'),(14149,84,0,1028,'Black Standard Jeans'),(14150,86,0,1028,'Black Standard Jeans Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMa'),(14151,87,0,1028,'/8/7/87yygyg6g_2.jpg'),(14152,88,0,1028,'/8/7/87yygyg6g_2.jpg'),(14153,89,0,1028,'/8/7/87yygyg6g_2.jpg'),(14154,106,0,1028,'container2'),(14155,121,0,1028,'black-standard-jeans-large-size-brown'),(14156,132,0,1028,'0'),(14157,133,0,1028,'/8/7/87yygyg6g_2.jpg'),(14158,206,0,1028,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(14167,73,0,1029,'Black Sweat Pants-red-Extra small size'),(14168,84,0,1029,'Black Sweat Pants'),(14169,86,0,1029,'Black Sweat Pants Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care ins'),(14170,87,0,1029,'/3/r/3rr44.jpg'),(14171,88,0,1029,'/3/r/3rr44.jpg'),(14172,89,0,1029,'/3/r/3rr44.jpg'),(14173,106,0,1029,'container2'),(14174,121,0,1029,'black-sweat-pants-red-extra-small-size'),(14175,132,0,1029,'0'),(14176,133,0,1029,'/3/r/3rr44.jpg'),(14177,206,0,1029,'80% cotton, 20% polyester'),(14182,73,0,1030,'Black Sweat Pants-red-Small size'),(14183,84,0,1030,'Black Sweat Pants'),(14184,86,0,1030,'Black Sweat Pants Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care ins'),(14185,87,0,1030,'/3/r/3rr44_1.jpg'),(14186,88,0,1030,'/3/r/3rr44_1.jpg'),(14187,89,0,1030,'/3/r/3rr44_1.jpg'),(14188,106,0,1030,'container2'),(14189,121,0,1030,'black-sweat-pants-red-small-size'),(14190,132,0,1030,'0'),(14191,133,0,1030,'/3/r/3rr44_1.jpg'),(14192,206,0,1030,'80% cotton, 20% polyester'),(14197,73,0,1031,'Black Sweat Pants-red-Medium size'),(14198,84,0,1031,'Black Sweat Pants'),(14199,86,0,1031,'Black Sweat Pants Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care ins'),(14200,87,0,1031,'/3/r/3rr44_2.jpg'),(14201,88,0,1031,'/3/r/3rr44_2.jpg'),(14202,89,0,1031,'/3/r/3rr44_2.jpg'),(14203,106,0,1031,'container2'),(14204,121,0,1031,'black-sweat-pants-red-medium-size'),(14205,132,0,1031,'0'),(14206,133,0,1031,'/3/r/3rr44_2.jpg'),(14207,206,0,1031,'80% cotton, 20% polyester'),(14212,73,0,1032,'Black Sweat Pants-blue-Extra small size'),(14213,84,0,1032,'Black Sweat Pants'),(14214,86,0,1032,'Black Sweat Pants Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care ins'),(14215,87,0,1032,'/1/2/12w222.jpg'),(14216,88,0,1032,'/1/2/12w222.jpg'),(14217,89,0,1032,'/1/2/12w222.jpg'),(14218,106,0,1032,'container2'),(14219,121,0,1032,'black-sweat-pants-blue-extra-small-size'),(14220,132,0,1032,'0'),(14221,133,0,1032,'/1/2/12w222.jpg'),(14222,206,0,1032,'80% cotton, 20% polyester'),(14227,73,0,1033,'Black Sweat Pants-blue-Small size'),(14228,84,0,1033,'Black Sweat Pants'),(14229,86,0,1033,'Black Sweat Pants Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care ins'),(14230,87,0,1033,'/1/2/12w222_1.jpg'),(14231,88,0,1033,'/1/2/12w222_1.jpg'),(14232,89,0,1033,'/1/2/12w222_1.jpg'),(14233,106,0,1033,'container2'),(14234,121,0,1033,'black-sweat-pants-blue-small-size'),(14235,132,0,1033,'0'),(14236,133,0,1033,'/1/2/12w222_1.jpg'),(14237,206,0,1033,'80% cotton, 20% polyester'),(14242,73,0,1034,'Black Sweat Pants-blue-Medium size'),(14243,84,0,1034,'Black Sweat Pants'),(14244,86,0,1034,'Black Sweat Pants Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care ins'),(14245,87,0,1034,'/1/2/12w222_2.jpg'),(14246,88,0,1034,'/1/2/12w222_2.jpg'),(14247,89,0,1034,'/1/2/12w222_2.jpg'),(14248,106,0,1034,'container2'),(14249,121,0,1034,'black-sweat-pants-blue-medium-size'),(14250,132,0,1034,'0'),(14251,133,0,1034,'/1/2/12w222_2.jpg'),(14252,206,0,1034,'80% cotton, 20% polyester'),(14261,73,0,1035,'Blue Slim Fit Jeans-grey-Small size'),(14262,84,0,1035,'Blue Slim Fit Jeans'),(14263,86,0,1035,'Blue Slim Fit Jeans Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the'),(14264,87,0,1035,'/4/5/45465tggg.jpg'),(14265,88,0,1035,'/4/5/45465tggg.jpg'),(14266,89,0,1035,'/4/5/45465tggg.jpg'),(14267,106,0,1035,'container2'),(14268,121,0,1035,'blue-slim-fit-jeans-grey-small-size'),(14269,132,0,1035,'0'),(14270,133,0,1035,'/4/5/45465tggg.jpg'),(14271,206,0,1035,'99% cotton, 1% elastane'),(14276,73,0,1036,'Blue Slim Fit Jeans-grey-Medium size'),(14277,84,0,1036,'Blue Slim Fit Jeans'),(14278,86,0,1036,'Blue Slim Fit Jeans Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the'),(14279,87,0,1036,'/4/5/45465tggg_1.jpg'),(14280,88,0,1036,'/4/5/45465tggg_1.jpg'),(14281,89,0,1036,'/4/5/45465tggg_1.jpg'),(14282,106,0,1036,'container2'),(14283,121,0,1036,'blue-slim-fit-jeans-grey-medium-size'),(14284,132,0,1036,'0'),(14285,133,0,1036,'/4/5/45465tggg_1.jpg'),(14286,206,0,1036,'99% cotton, 1% elastane'),(14291,73,0,1037,'Blue Slim Fit Jeans-grey-Large size'),(14292,84,0,1037,'Blue Slim Fit Jeans'),(14293,86,0,1037,'Blue Slim Fit Jeans Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the'),(14294,87,0,1037,'/4/5/45465tggg_2.jpg'),(14295,88,0,1037,'/4/5/45465tggg_2.jpg'),(14296,89,0,1037,'/4/5/45465tggg_2.jpg'),(14297,106,0,1037,'container2'),(14298,121,0,1037,'blue-slim-fit-jeans-grey-large-size'),(14299,132,0,1037,'0'),(14300,133,0,1037,'/4/5/45465tggg_2.jpg'),(14301,206,0,1037,'99% cotton, 1% elastane'),(14306,73,0,1038,'Blue Slim Fit Jeans-grey-Extra large size'),(14307,84,0,1038,'Blue Slim Fit Jeans'),(14308,86,0,1038,'Blue Slim Fit Jeans Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the'),(14309,87,0,1038,'/4/5/45465tggg_3.jpg'),(14310,88,0,1038,'/4/5/45465tggg_3.jpg'),(14311,89,0,1038,'/4/5/45465tggg_3.jpg'),(14312,106,0,1038,'container2'),(14313,121,0,1038,'blue-slim-fit-jeans-grey-extra-large-size'),(14314,132,0,1038,'0'),(14315,133,0,1038,'/4/5/45465tggg_3.jpg'),(14316,206,0,1038,'99% cotton, 1% elastane'),(14321,73,0,1039,'Blue Slim Fit Jeans-black-Small size'),(14322,84,0,1039,'Blue Slim Fit Jeans'),(14323,86,0,1039,'Blue Slim Fit Jeans Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the'),(14324,87,0,1039,'/2/1/21245tt45t.jpg'),(14325,88,0,1039,'/2/1/21245tt45t.jpg'),(14326,89,0,1039,'/2/1/21245tt45t.jpg'),(14327,106,0,1039,'container2'),(14328,121,0,1039,'blue-slim-fit-jeans-black-small-size'),(14329,132,0,1039,'0'),(14330,133,0,1039,'/2/1/21245tt45t.jpg'),(14331,206,0,1039,'99% cotton, 1% elastane'),(14336,73,0,1040,'Blue Slim Fit Jeans-black-Medium size'),(14337,84,0,1040,'Blue Slim Fit Jeans'),(14338,86,0,1040,'Blue Slim Fit Jeans Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the'),(14339,87,0,1040,'/2/1/21245tt45t_1.jpg'),(14340,88,0,1040,'/2/1/21245tt45t_1.jpg'),(14341,89,0,1040,'/2/1/21245tt45t_1.jpg'),(14342,106,0,1040,'container2'),(14343,121,0,1040,'blue-slim-fit-jeans-black-medium-size'),(14344,132,0,1040,'0'),(14345,133,0,1040,'/2/1/21245tt45t_1.jpg'),(14346,206,0,1040,'99% cotton, 1% elastane'),(14351,73,0,1041,'Blue Slim Fit Jeans-black-Large size'),(14352,84,0,1041,'Blue Slim Fit Jeans'),(14353,86,0,1041,'Blue Slim Fit Jeans Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the'),(14354,87,0,1041,'/2/1/21245tt45t_2.jpg'),(14355,88,0,1041,'/2/1/21245tt45t_2.jpg'),(14356,89,0,1041,'/2/1/21245tt45t_2.jpg'),(14357,106,0,1041,'container2'),(14358,121,0,1041,'blue-slim-fit-jeans-black-large-size'),(14359,132,0,1041,'0'),(14360,133,0,1041,'/2/1/21245tt45t_2.jpg'),(14361,206,0,1041,'99% cotton, 1% elastane'),(14366,73,0,1042,'Blue Slim Fit Jeans-black-Extra large size'),(14367,84,0,1042,'Blue Slim Fit Jeans'),(14368,86,0,1042,'Blue Slim Fit Jeans Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the'),(14369,87,0,1042,'/2/1/21245tt45t_3.jpg'),(14370,88,0,1042,'/2/1/21245tt45t_3.jpg'),(14371,89,0,1042,'/2/1/21245tt45t_3.jpg'),(14372,106,0,1042,'container2'),(14373,121,0,1042,'blue-slim-fit-jeans-black-extra-large-size'),(14374,132,0,1042,'0'),(14375,133,0,1042,'/2/1/21245tt45t_3.jpg'),(14376,206,0,1042,'99% cotton, 1% elastane'),(14393,73,0,1043,'Blue Slim Fit Jeans – Cliff-black-Small size'),(14394,84,0,1043,'Medium Blue Slim Fit Jeans – Cliff'),(14395,86,0,1043,'Medium Blue Slim Fit Jeans – Cliff Model: CliffManufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)'),(14396,87,0,1043,'/1/w/1w1w1w1w.jpg'),(14397,88,0,1043,'/1/w/1w1w1w1w.jpg'),(14398,89,0,1043,'/1/w/1w1w1w1w.jpg'),(14399,106,0,1043,'container2'),(14400,121,0,1043,'blue-slim-fit-jeans-cliff-black-small-size'),(14401,132,0,1043,'0'),(14402,133,0,1043,'/1/w/1w1w1w1w.jpg'),(14403,206,0,1043,'98% cotton, 2% elastane'),(14408,73,0,1044,'Blue Slim Fit Jeans – Cliff-black-Medium size'),(14409,84,0,1044,'Medium Blue Slim Fit Jeans – Cliff'),(14410,86,0,1044,'Medium Blue Slim Fit Jeans – Cliff Model: CliffManufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)'),(14411,87,0,1044,'/1/w/1w1w1w1w_1.jpg'),(14412,88,0,1044,'/1/w/1w1w1w1w_1.jpg'),(14413,89,0,1044,'/1/w/1w1w1w1w_1.jpg'),(14414,106,0,1044,'container2'),(14415,121,0,1044,'blue-slim-fit-jeans-cliff-black-medium-size'),(14416,132,0,1044,'0'),(14417,133,0,1044,'/1/w/1w1w1w1w_1.jpg'),(14418,206,0,1044,'98% cotton, 2% elastane'),(14423,73,0,1045,'Blue Slim Fit Jeans – Cliff-black-Large size'),(14424,84,0,1045,'Medium Blue Slim Fit Jeans – Cliff'),(14425,86,0,1045,'Medium Blue Slim Fit Jeans – Cliff Model: CliffManufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)'),(14426,87,0,1045,'/1/w/1w1w1w1w_2.jpg'),(14427,88,0,1045,'/1/w/1w1w1w1w_2.jpg'),(14428,89,0,1045,'/1/w/1w1w1w1w_2.jpg'),(14429,106,0,1045,'container2'),(14430,121,0,1045,'blue-slim-fit-jeans-cliff-black-large-size'),(14431,132,0,1045,'0'),(14432,133,0,1045,'/1/w/1w1w1w1w_2.jpg'),(14433,206,0,1045,'98% cotton, 2% elastane'),(14438,73,0,1046,'Blue Slim Fit Jeans – Cliff-grey-Small size'),(14439,84,0,1046,'Medium Blue Slim Fit Jeans – Cliff'),(14440,86,0,1046,'Medium Blue Slim Fit Jeans – Cliff Model: CliffManufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)'),(14441,87,0,1046,'/9/8/98kkjj_1.jpg'),(14442,88,0,1046,'/9/8/98kkjj_1.jpg'),(14443,89,0,1046,'/9/8/98kkjj_1.jpg'),(14444,106,0,1046,'container2'),(14445,121,0,1046,'blue-slim-fit-jeans-cliff-grey-small-size'),(14446,132,0,1046,'0'),(14447,133,0,1046,'/9/8/98kkjj_1.jpg'),(14448,206,0,1046,'98% cotton, 2% elastane'),(14453,73,0,1047,'Blue Slim Fit Jeans – Cliff-grey-Medium size'),(14454,84,0,1047,'Medium Blue Slim Fit Jeans – Cliff'),(14455,86,0,1047,'Medium Blue Slim Fit Jeans – Cliff Model: CliffManufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)'),(14456,87,0,1047,'/9/8/98kkjj_1_1.jpg'),(14457,88,0,1047,'/9/8/98kkjj_1_1.jpg'),(14458,89,0,1047,'/9/8/98kkjj_1_1.jpg'),(14459,106,0,1047,'container2'),(14460,121,0,1047,'blue-slim-fit-jeans-cliff-grey-medium-size'),(14461,132,0,1047,'0'),(14462,133,0,1047,'/9/8/98kkjj_1_1.jpg'),(14463,206,0,1047,'98% cotton, 2% elastane'),(14468,73,0,1048,'Blue Slim Fit Jeans – Cliff-grey-Large size'),(14469,84,0,1048,'Medium Blue Slim Fit Jeans – Cliff'),(14470,86,0,1048,'Medium Blue Slim Fit Jeans – Cliff Model: CliffManufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)'),(14471,87,0,1048,'/9/8/98kkjj_1_2.jpg'),(14472,88,0,1048,'/9/8/98kkjj_1_2.jpg'),(14473,89,0,1048,'/9/8/98kkjj_1_2.jpg'),(14474,106,0,1048,'container2'),(14475,121,0,1048,'blue-slim-fit-jeans-cliff-grey-large-size'),(14476,132,0,1048,'0'),(14477,133,0,1048,'/9/8/98kkjj_1_2.jpg'),(14478,206,0,1048,'98% cotton, 2% elastane'),(14487,73,0,1049,'Blue Straight Leg Jeans-grey-Extra small size'),(14488,84,0,1049,'Blue Straight Leg Jeans'),(14489,86,0,1049,'Blue Straight Leg Jeans Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial'),(14490,87,0,1049,'/3/e/3e3e3e.jpg'),(14491,88,0,1049,'/3/e/3e3e3e.jpg'),(14492,89,0,1049,'/3/e/3e3e3e.jpg'),(14493,106,0,1049,'container2'),(14494,121,0,1049,'blue-straight-leg-jeans-grey-extra-small-size'),(14495,132,0,1049,'0'),(14496,133,0,1049,'/3/e/3e3e3e.jpg'),(14497,206,0,1049,'81% cotton, 17% Elastomultiester, 2% elastane'),(14502,73,0,1050,'Blue Straight Leg Jeans-grey-Small size'),(14503,84,0,1050,'Blue Straight Leg Jeans'),(14504,86,0,1050,'Blue Straight Leg Jeans Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial'),(14505,87,0,1050,'/3/e/3e3e3e_1.jpg'),(14506,88,0,1050,'/3/e/3e3e3e_1.jpg'),(14507,89,0,1050,'/3/e/3e3e3e_1.jpg'),(14508,106,0,1050,'container2'),(14509,121,0,1050,'blue-straight-leg-jeans-grey-small-size'),(14510,132,0,1050,'0'),(14511,133,0,1050,'/3/e/3e3e3e_1.jpg'),(14512,206,0,1050,'81% cotton, 17% Elastomultiester, 2% elastane'),(14517,73,0,1051,'Blue Straight Leg Jeans-grey-Medium size'),(14518,84,0,1051,'Blue Straight Leg Jeans'),(14519,86,0,1051,'Blue Straight Leg Jeans Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial'),(14520,87,0,1051,'/3/e/3e3e3e_2.jpg'),(14521,88,0,1051,'/3/e/3e3e3e_2.jpg'),(14522,89,0,1051,'/3/e/3e3e3e_2.jpg'),(14523,106,0,1051,'container2'),(14524,121,0,1051,'blue-straight-leg-jeans-grey-medium-size'),(14525,132,0,1051,'0'),(14526,133,0,1051,'/3/e/3e3e3e_2.jpg'),(14527,206,0,1051,'81% cotton, 17% Elastomultiester, 2% elastane'),(14532,73,0,1052,'Blue Straight Leg Jeans-grey-Large size'),(14533,84,0,1052,'Blue Straight Leg Jeans'),(14534,86,0,1052,'Blue Straight Leg Jeans Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial'),(14535,87,0,1052,'/3/e/3e3e3e_3.jpg'),(14536,88,0,1052,'/3/e/3e3e3e_3.jpg'),(14537,89,0,1052,'/3/e/3e3e3e_3.jpg'),(14538,106,0,1052,'container2'),(14539,121,0,1052,'blue-straight-leg-jeans-grey-large-size'),(14540,132,0,1052,'0'),(14541,133,0,1052,'/3/e/3e3e3e_3.jpg'),(14542,206,0,1052,'81% cotton, 17% Elastomultiester, 2% elastane'),(14547,73,0,1053,'Blue Straight Leg Jeans-brown-Extra small size'),(14548,84,0,1053,'Blue Straight Leg Jeans'),(14549,86,0,1053,'Blue Straight Leg Jeans Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial'),(14550,87,0,1053,'/2/e/2e2ewwwww.jpg'),(14551,88,0,1053,'/2/e/2e2ewwwww.jpg'),(14552,89,0,1053,'/2/e/2e2ewwwww.jpg'),(14553,106,0,1053,'container2'),(14554,121,0,1053,'blue-straight-leg-jeans-brown-extra-small-size'),(14555,132,0,1053,'0'),(14556,133,0,1053,'/2/e/2e2ewwwww.jpg'),(14557,206,0,1053,'81% cotton, 17% Elastomultiester, 2% elastane'),(14562,73,0,1054,'Blue Straight Leg Jeans-brown-Small size'),(14563,84,0,1054,'Blue Straight Leg Jeans'),(14564,86,0,1054,'Blue Straight Leg Jeans Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial'),(14565,87,0,1054,'/2/e/2e2ewwwww_1.jpg'),(14566,88,0,1054,'/2/e/2e2ewwwww_1.jpg'),(14567,89,0,1054,'/2/e/2e2ewwwww_1.jpg'),(14568,106,0,1054,'container2'),(14569,121,0,1054,'blue-straight-leg-jeans-brown-small-size'),(14570,132,0,1054,'0'),(14571,133,0,1054,'/2/e/2e2ewwwww_1.jpg'),(14572,206,0,1054,'81% cotton, 17% Elastomultiester, 2% elastane'),(14577,73,0,1055,'Blue Straight Leg Jeans-brown-Medium size'),(14578,84,0,1055,'Blue Straight Leg Jeans'),(14579,86,0,1055,'Blue Straight Leg Jeans Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial'),(14580,87,0,1055,'/2/e/2e2ewwwww_2.jpg'),(14581,88,0,1055,'/2/e/2e2ewwwww_2.jpg'),(14582,89,0,1055,'/2/e/2e2ewwwww_2.jpg'),(14583,106,0,1055,'container2'),(14584,121,0,1055,'blue-straight-leg-jeans-brown-medium-size'),(14585,132,0,1055,'0'),(14586,133,0,1055,'/2/e/2e2ewwwww_2.jpg'),(14587,206,0,1055,'81% cotton, 17% Elastomultiester, 2% elastane'),(14592,73,0,1056,'Blue Straight Leg Jeans-brown-Large size'),(14593,84,0,1056,'Blue Straight Leg Jeans'),(14594,86,0,1056,'Blue Straight Leg Jeans Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial'),(14595,87,0,1056,'/2/e/2e2ewwwww_3.jpg'),(14596,88,0,1056,'/2/e/2e2ewwwww_3.jpg'),(14597,89,0,1056,'/2/e/2e2ewwwww_3.jpg'),(14598,106,0,1056,'container2'),(14599,121,0,1056,'blue-straight-leg-jeans-brown-large-size'),(14600,132,0,1056,'0'),(14601,133,0,1056,'/2/e/2e2ewwwww_3.jpg'),(14602,206,0,1056,'81% cotton, 17% Elastomultiester, 2% elastane'),(14611,73,0,1057,'Blue Straight Leg Jeans – Rob-black-Small size'),(14612,84,0,1057,'Medium Blue Straight Leg Jeans – Rob'),(14613,86,0,1057,'Medium Blue Straight Leg Jeans – Rob Model: RobManufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: bel'),(14614,87,0,1057,'/2/w/2w2w2wss_3.jpg'),(14615,88,0,1057,'/2/w/2w2w2wss_3.jpg'),(14616,89,0,1057,'/2/w/2w2w2wss_3.jpg'),(14617,106,0,1057,'container2'),(14618,121,0,1057,'blue-straight-leg-jeans-rob-black-small-size'),(14619,132,0,1057,'0'),(14620,133,0,1057,'/2/w/2w2w2wss_3.jpg'),(14621,206,0,1057,'99% cotton, 1% elastane'),(14626,73,0,1058,'Blue Straight Leg Jeans – Rob-black-Medium size'),(14627,84,0,1058,'Medium Blue Straight Leg Jeans – Rob'),(14628,86,0,1058,'Medium Blue Straight Leg Jeans – Rob Model: RobManufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: bel'),(14629,87,0,1058,'/2/w/2w2w2wss_1_1.jpg'),(14630,88,0,1058,'/2/w/2w2w2wss_1_1.jpg'),(14631,89,0,1058,'/2/w/2w2w2wss_1_1.jpg'),(14632,106,0,1058,'container2'),(14633,121,0,1058,'blue-straight-leg-jeans-rob-black-medium-size'),(14634,132,0,1058,'0'),(14635,133,0,1058,'/2/w/2w2w2wss_1_1.jpg'),(14636,206,0,1058,'99% cotton, 1% elastane'),(14641,73,0,1059,'Blue Straight Leg Jeans – Rob-black-Large size'),(14642,84,0,1059,'Medium Blue Straight Leg Jeans – Rob'),(14643,86,0,1059,'Medium Blue Straight Leg Jeans – Rob Model: RobManufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: bel'),(14644,87,0,1059,'/2/w/2w2w2wss_2_1.jpg'),(14645,88,0,1059,'/2/w/2w2w2wss_2_1.jpg'),(14646,89,0,1059,'/2/w/2w2w2wss_2_1.jpg'),(14647,106,0,1059,'container2'),(14648,121,0,1059,'blue-straight-leg-jeans-rob-black-large-size'),(14649,132,0,1059,'0'),(14650,133,0,1059,'/2/w/2w2w2wss_2_1.jpg'),(14651,206,0,1059,'99% cotton, 1% elastane'),(14656,73,0,1060,'Blue Straight Leg Jeans – Rob-grey-Small size'),(14657,84,0,1060,'Medium Blue Straight Leg Jeans – Rob'),(14658,86,0,1060,'Medium Blue Straight Leg Jeans – Rob Model: RobManufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: bel'),(14659,87,0,1060,'/3/3/33e3222_3.jpg'),(14660,88,0,1060,'/3/3/33e3222_3.jpg'),(14661,89,0,1060,'/3/3/33e3222_3.jpg'),(14662,106,0,1060,'container2'),(14663,121,0,1060,'blue-straight-leg-jeans-rob-grey-small-size'),(14664,132,0,1060,'0'),(14665,133,0,1060,'/3/3/33e3222_3.jpg'),(14666,206,0,1060,'99% cotton, 1% elastane'),(14671,73,0,1061,'Blue Straight Leg Jeans – Rob-grey-Medium size'),(14672,84,0,1061,'Medium Blue Straight Leg Jeans – Rob'),(14673,86,0,1061,'Medium Blue Straight Leg Jeans – Rob Model: RobManufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: bel'),(14674,87,0,1061,'/3/3/33e3222_1_1.jpg'),(14675,88,0,1061,'/3/3/33e3222_1_1.jpg'),(14676,89,0,1061,'/3/3/33e3222_1_1.jpg'),(14677,106,0,1061,'container2'),(14678,121,0,1061,'blue-straight-leg-jeans-rob-grey-medium-size'),(14679,132,0,1061,'0'),(14680,133,0,1061,'/3/3/33e3222_1_1.jpg'),(14681,206,0,1061,'99% cotton, 1% elastane'),(14686,73,0,1062,'Blue Straight Leg Jeans – Rob-grey-Large size'),(14687,84,0,1062,'Medium Blue Straight Leg Jeans – Rob'),(14688,86,0,1062,'Medium Blue Straight Leg Jeans – Rob Model: RobManufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: bel'),(14689,87,0,1062,'/3/3/33e3222_2_1.jpg'),(14690,88,0,1062,'/3/3/33e3222_2_1.jpg'),(14691,89,0,1062,'/3/3/33e3222_2_1.jpg'),(14692,106,0,1062,'container2'),(14693,121,0,1062,'blue-straight-leg-jeans-rob-grey-large-size'),(14694,132,0,1062,'0'),(14695,133,0,1062,'/3/3/33e3222_2_1.jpg'),(14696,206,0,1062,'99% cotton, 1% elastane'),(14697,73,0,1063,'Boss Denim Jacket-blue-Small size'),(14698,84,0,1063,'Seventy Transitional Jacket'),(14699,86,0,1063,'Seventy Transitional Jacket '),(14700,87,0,1063,'/5/6/567yhthyh_3.jpg'),(14701,88,0,1063,'/5/6/567yhthyh_3.jpg'),(14702,89,0,1063,'/5/6/567yhthyh_3.jpg'),(14703,106,0,1063,'container2'),(14704,121,0,1063,'boss-denim-jacket-blue-small-size'),(14705,132,0,1063,'0'),(14706,133,0,1063,'/5/6/567yhthyh_3.jpg'),(14707,206,0,1063,'98% cotton, 2% elastane'),(14712,73,0,1064,'Boss Denim Jacket-blue-Medium size'),(14713,84,0,1064,'Seventy Transitional Jacket'),(14714,86,0,1064,'Seventy Transitional Jacket '),(14715,87,0,1064,'/5/6/567yhthyh_1_1.jpg'),(14716,88,0,1064,'/5/6/567yhthyh_1_1.jpg'),(14717,89,0,1064,'/5/6/567yhthyh_1_1.jpg'),(14718,106,0,1064,'container2'),(14719,121,0,1064,'boss-denim-jacket-blue-medium-size'),(14720,132,0,1064,'0'),(14721,133,0,1064,'/5/6/567yhthyh_1_1.jpg'),(14722,206,0,1064,'98% cotton, 2% elastane'),(14727,73,0,1065,'Boss Denim Jacket-blue-Extra large size'),(14728,84,0,1065,'Seventy Transitional Jacket'),(14729,86,0,1065,'Seventy Transitional Jacket '),(14730,87,0,1065,'/5/6/567yhthyh_2_1.jpg'),(14731,88,0,1065,'/5/6/567yhthyh_2_1.jpg'),(14732,89,0,1065,'/5/6/567yhthyh_2_1.jpg'),(14733,106,0,1065,'container2'),(14734,121,0,1065,'boss-denim-jacket-blue-extra-large-size'),(14735,132,0,1065,'0'),(14736,133,0,1065,'/5/6/567yhthyh_2_1.jpg'),(14737,206,0,1065,'98% cotton, 2% elastane'),(14742,73,0,1066,'Boss Denim Jacket-black-Small size'),(14743,84,0,1066,'Seventy Transitional Jacket'),(14744,86,0,1066,'Seventy Transitional Jacket '),(14745,87,0,1066,'/3/2/32e2e2e2e2e_3.jpg'),(14746,88,0,1066,'/3/2/32e2e2e2e2e_3.jpg'),(14747,89,0,1066,'/3/2/32e2e2e2e2e_3.jpg'),(14748,106,0,1066,'container2'),(14749,121,0,1066,'boss-denim-jacket-black-small-size'),(14750,132,0,1066,'0'),(14751,133,0,1066,'/3/2/32e2e2e2e2e_3.jpg'),(14752,206,0,1066,'98% cotton, 2% elastane'),(14757,73,0,1067,'Boss Denim Jacket-black-Medium size'),(14758,84,0,1067,'Seventy Transitional Jacket'),(14759,86,0,1067,'Seventy Transitional Jacket '),(14760,87,0,1067,'/3/2/32e2e2e2e2e_1_1.jpg'),(14761,88,0,1067,'/3/2/32e2e2e2e2e_1_1.jpg'),(14762,89,0,1067,'/3/2/32e2e2e2e2e_1_1.jpg'),(14763,106,0,1067,'container2'),(14764,121,0,1067,'boss-denim-jacket-black-medium-size'),(14765,132,0,1067,'0'),(14766,133,0,1067,'/3/2/32e2e2e2e2e_1_1.jpg'),(14767,206,0,1067,'98% cotton, 2% elastane'),(14772,73,0,1068,'Boss Denim Jacket-black-Extra large size'),(14773,84,0,1068,'Seventy Transitional Jacket'),(14774,86,0,1068,'Seventy Transitional Jacket '),(14775,87,0,1068,'/3/2/32e2e2e2e2e_2_1.jpg'),(14776,88,0,1068,'/3/2/32e2e2e2e2e_2_1.jpg'),(14777,89,0,1068,'/3/2/32e2e2e2e2e_2_1.jpg'),(14778,106,0,1068,'container2'),(14779,121,0,1068,'boss-denim-jacket-black-extra-large-size'),(14780,132,0,1068,'0'),(14781,133,0,1068,'/3/2/32e2e2e2e2e_2_1.jpg'),(14782,206,0,1068,'98% cotton, 2% elastane'),(14795,73,0,1069,'Calvin Klein Wool Jumper-black-Extra small size'),(14796,84,0,1069,'Lawrence Grey Rollneck Pullover'),(14797,86,0,1069,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(14798,87,0,1069,'/2/3/232323333_1_1.jpg'),(14799,88,0,1069,'/2/3/232323333_1_1.jpg'),(14800,89,0,1069,'/2/3/232323333_1_1.jpg'),(14801,106,0,1069,'container2'),(14802,121,0,1069,'calvin-klein-wool-jumper-black-extra-small-size'),(14803,132,0,1069,'0'),(14804,133,0,1069,'/2/3/232323333_1_1.jpg'),(14805,206,0,1069,'100% wool'),(14810,73,0,1070,'Calvin Klein Wool Jumper-black-Small size'),(14811,84,0,1070,'Lawrence Grey Rollneck Pullover'),(14812,86,0,1070,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(14813,87,0,1070,'/2/3/232323333_1_1_1.jpg'),(14814,88,0,1070,'/2/3/232323333_1_1_1.jpg'),(14815,89,0,1070,'/2/3/232323333_1_1_1.jpg'),(14816,106,0,1070,'container2'),(14817,121,0,1070,'calvin-klein-wool-jumper-black-small-size'),(14818,132,0,1070,'0'),(14819,133,0,1070,'/2/3/232323333_1_1_1.jpg'),(14820,206,0,1070,'100% wool'),(14825,73,0,1071,'Calvin Klein Wool Jumper-black-Large size'),(14826,84,0,1071,'Lawrence Grey Rollneck Pullover'),(14827,86,0,1071,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(14828,87,0,1071,'/2/3/232323333_1_2.jpg'),(14829,88,0,1071,'/2/3/232323333_1_2.jpg'),(14830,89,0,1071,'/2/3/232323333_1_2.jpg'),(14831,106,0,1071,'container2'),(14832,121,0,1071,'calvin-klein-wool-jumper-black-large-size'),(14833,132,0,1071,'0'),(14834,133,0,1071,'/2/3/232323333_1_2.jpg'),(14835,206,0,1071,'100% wool'),(14840,73,0,1072,'Calvin Klein Wool Jumper-red-Extra small size'),(14841,84,0,1072,'Lawrence Grey Rollneck Pullover'),(14842,86,0,1072,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(14843,87,0,1072,'/2/5/255tt4r4r_1_1.jpg'),(14844,88,0,1072,'/2/5/255tt4r4r_1_1.jpg'),(14845,89,0,1072,'/2/5/255tt4r4r_1_1.jpg'),(14846,106,0,1072,'container2'),(14847,121,0,1072,'calvin-klein-wool-jumper-red-extra-small-size'),(14848,132,0,1072,'0'),(14849,133,0,1072,'/2/5/255tt4r4r_1_1.jpg'),(14850,206,0,1072,'100% wool'),(14855,73,0,1073,'Calvin Klein Wool Jumper-red-Small size'),(14856,84,0,1073,'Lawrence Grey Rollneck Pullover'),(14857,86,0,1073,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(14858,87,0,1073,'/2/5/255tt4r4r_1_1_1.jpg'),(14859,88,0,1073,'/2/5/255tt4r4r_1_1_1.jpg'),(14860,89,0,1073,'/2/5/255tt4r4r_1_1_1.jpg'),(14861,106,0,1073,'container2'),(14862,121,0,1073,'calvin-klein-wool-jumper-red-small-size'),(14863,132,0,1073,'0'),(14864,133,0,1073,'/2/5/255tt4r4r_1_1_1.jpg'),(14865,206,0,1073,'100% wool'),(14870,73,0,1074,'Calvin Klein Wool Jumper-red-Large size'),(14871,84,0,1074,'Lawrence Grey Rollneck Pullover'),(14872,86,0,1074,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(14873,87,0,1074,'/2/5/255tt4r4r_1_2.jpg'),(14874,88,0,1074,'/2/5/255tt4r4r_1_2.jpg'),(14875,89,0,1074,'/2/5/255tt4r4r_1_2.jpg'),(14876,106,0,1074,'container2'),(14877,121,0,1074,'calvin-klein-wool-jumper-red-large-size'),(14878,132,0,1074,'0'),(14879,133,0,1074,'/2/5/255tt4r4r_1_2.jpg'),(14880,206,0,1074,'100% wool'),(14881,73,0,1075,'Cipo & Baxx Jacket-grey-Small size'),(14882,84,0,1075,'Seventy Transitional Jacket'),(14883,86,0,1075,'Seventy Transitional Jacket '),(14884,87,0,1075,'/4/3/43r3e3e3e_4.jpg'),(14885,88,0,1075,'/4/3/43r3e3e3e_4.jpg'),(14886,89,0,1075,'/4/3/43r3e3e3e_4.jpg'),(14887,106,0,1075,'container2'),(14888,121,0,1075,'cipo-baxx-jacket-grey-small-size'),(14889,132,0,1075,'0'),(14890,133,0,1075,'/4/3/43r3e3e3e_4.jpg'),(14891,206,0,1075,'100% cotton'),(14896,73,0,1076,'Cipo & Baxx Jacket-grey-Medium size'),(14897,84,0,1076,'Seventy Transitional Jacket'),(14898,86,0,1076,'Seventy Transitional Jacket '),(14899,87,0,1076,'/4/3/43r3e3e3e_1_1.jpg'),(14900,88,0,1076,'/4/3/43r3e3e3e_1_1.jpg'),(14901,89,0,1076,'/4/3/43r3e3e3e_1_1.jpg'),(14902,106,0,1076,'container2'),(14903,121,0,1076,'cipo-baxx-jacket-grey-medium-size'),(14904,132,0,1076,'0'),(14905,133,0,1076,'/4/3/43r3e3e3e_1_1.jpg'),(14906,206,0,1076,'100% cotton'),(14911,73,0,1077,'Cipo & Baxx Jacket-grey-Large size'),(14912,84,0,1077,'Seventy Transitional Jacket'),(14913,86,0,1077,'Seventy Transitional Jacket '),(14914,87,0,1077,'/4/3/43r3e3e3e_2_1.jpg'),(14915,88,0,1077,'/4/3/43r3e3e3e_2_1.jpg'),(14916,89,0,1077,'/4/3/43r3e3e3e_2_1.jpg'),(14917,106,0,1077,'container2'),(14918,121,0,1077,'cipo-baxx-jacket-grey-large-size'),(14919,132,0,1077,'0'),(14920,133,0,1077,'/4/3/43r3e3e3e_2_1.jpg'),(14921,206,0,1077,'100% cotton'),(14926,73,0,1078,'Cipo & Baxx Jacket-grey-Extra large size'),(14927,84,0,1078,'Seventy Transitional Jacket'),(14928,86,0,1078,'Seventy Transitional Jacket '),(14929,87,0,1078,'/4/3/43r3e3e3e_3_1.jpg'),(14930,88,0,1078,'/4/3/43r3e3e3e_3_1.jpg'),(14931,89,0,1078,'/4/3/43r3e3e3e_3_1.jpg'),(14932,106,0,1078,'container2'),(14933,121,0,1078,'cipo-baxx-jacket-grey-extra-large-size'),(14934,132,0,1078,'0'),(14935,133,0,1078,'/4/3/43r3e3e3e_3_1.jpg'),(14936,206,0,1078,'100% cotton'),(14941,73,0,1079,'Cipo & Baxx Jacket-blue-Small size'),(14942,84,0,1079,'Seventy Transitional Jacket'),(14943,86,0,1079,'Seventy Transitional Jacket '),(14944,87,0,1079,'/6/5/6565g5g5g5g_4.jpg'),(14945,88,0,1079,'/6/5/6565g5g5g5g_4.jpg'),(14946,89,0,1079,'/6/5/6565g5g5g5g_4.jpg'),(14947,106,0,1079,'container2'),(14948,121,0,1079,'cipo-baxx-jacket-blue-small-size'),(14949,132,0,1079,'0'),(14950,133,0,1079,'/6/5/6565g5g5g5g_4.jpg'),(14951,206,0,1079,'100% cotton'),(14956,73,0,1080,'Cipo & Baxx Jacket-blue-Medium size'),(14957,84,0,1080,'Seventy Transitional Jacket'),(14958,86,0,1080,'Seventy Transitional Jacket '),(14959,87,0,1080,'/6/5/6565g5g5g5g_1_1.jpg'),(14960,88,0,1080,'/6/5/6565g5g5g5g_1_1.jpg'),(14961,89,0,1080,'/6/5/6565g5g5g5g_1_1.jpg'),(14962,106,0,1080,'container2'),(14963,121,0,1080,'cipo-baxx-jacket-blue-medium-size'),(14964,132,0,1080,'0'),(14965,133,0,1080,'/6/5/6565g5g5g5g_1_1.jpg'),(14966,206,0,1080,'100% cotton'),(14971,73,0,1081,'Cipo & Baxx Jacket-blue-Large size'),(14972,84,0,1081,'Seventy Transitional Jacket'),(14973,86,0,1081,'Seventy Transitional Jacket '),(14974,87,0,1081,'/6/5/6565g5g5g5g_2_1.jpg'),(14975,88,0,1081,'/6/5/6565g5g5g5g_2_1.jpg'),(14976,89,0,1081,'/6/5/6565g5g5g5g_2_1.jpg'),(14977,106,0,1081,'container2'),(14978,121,0,1081,'cipo-baxx-jacket-blue-large-size'),(14979,132,0,1081,'0'),(14980,133,0,1081,'/6/5/6565g5g5g5g_2_1.jpg'),(14981,206,0,1081,'100% cotton'),(14986,73,0,1082,'Cipo & Baxx Jacket-blue-Extra large size'),(14987,84,0,1082,'Seventy Transitional Jacket'),(14988,86,0,1082,'Seventy Transitional Jacket '),(14989,87,0,1082,'/6/5/6565g5g5g5g_3_1.jpg'),(14990,88,0,1082,'/6/5/6565g5g5g5g_3_1.jpg'),(14991,89,0,1082,'/6/5/6565g5g5g5g_3_1.jpg'),(14992,106,0,1082,'container2'),(14993,121,0,1082,'cipo-baxx-jacket-blue-extra-large-size'),(14994,132,0,1082,'0'),(14995,133,0,1082,'/6/5/6565g5g5g5g_3_1.jpg'),(14996,206,0,1082,'100% cotton'),(14997,73,0,1083,'Dark Blue Slim Fit Jeans-black-Extra small size'),(14998,84,0,1083,'Dark Blue Slim Fit Jeans'),(14999,86,0,1083,'Dark Blue Slim Fit Jeans Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt lo'),(15000,87,0,1083,'/4/5/4545t666.jpg'),(15001,88,0,1083,'/4/5/4545t666.jpg'),(15002,89,0,1083,'/4/5/4545t666.jpg'),(15003,106,0,1083,'container2'),(15004,121,0,1083,'dark-blue-slim-fit-jeans-black-extra-small-size'),(15005,132,0,1083,'0'),(15006,133,0,1083,'/4/5/4545t666.jpg'),(15007,206,0,1083,'100% cotton'),(15012,73,0,1084,'Dark Blue Slim Fit Jeans-black-Small size'),(15013,84,0,1084,'Dark Blue Slim Fit Jeans'),(15014,86,0,1084,'Dark Blue Slim Fit Jeans Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt lo'),(15015,87,0,1084,'/4/5/4545t666_1.jpg'),(15016,88,0,1084,'/4/5/4545t666_1.jpg'),(15017,89,0,1084,'/4/5/4545t666_1.jpg'),(15018,106,0,1084,'container2'),(15019,121,0,1084,'dark-blue-slim-fit-jeans-black-small-size'),(15020,132,0,1084,'0'),(15021,133,0,1084,'/4/5/4545t666_1.jpg'),(15022,206,0,1084,'100% cotton'),(15027,73,0,1085,'Dark Blue Slim Fit Jeans-black-Medium size'),(15028,84,0,1085,'Dark Blue Slim Fit Jeans'),(15029,86,0,1085,'Dark Blue Slim Fit Jeans Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt lo'),(15030,87,0,1085,'/4/5/4545t666_2.jpg'),(15031,88,0,1085,'/4/5/4545t666_2.jpg'),(15032,89,0,1085,'/4/5/4545t666_2.jpg'),(15033,106,0,1085,'container2'),(15034,121,0,1085,'dark-blue-slim-fit-jeans-black-medium-size'),(15035,132,0,1085,'0'),(15036,133,0,1085,'/4/5/4545t666_2.jpg'),(15037,206,0,1085,'100% cotton'),(15042,73,0,1086,'Dark Blue Slim Fit Jeans-black-Large size'),(15043,84,0,1086,'Dark Blue Slim Fit Jeans'),(15044,86,0,1086,'Dark Blue Slim Fit Jeans Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt lo'),(15045,87,0,1086,'/4/5/4545t666_3.jpg'),(15046,88,0,1086,'/4/5/4545t666_3.jpg'),(15047,89,0,1086,'/4/5/4545t666_3.jpg'),(15048,106,0,1086,'container2'),(15049,121,0,1086,'dark-blue-slim-fit-jeans-black-large-size'),(15050,132,0,1086,'0'),(15051,133,0,1086,'/4/5/4545t666_3.jpg'),(15052,206,0,1086,'100% cotton'),(15057,73,0,1087,'Dark Blue Slim Fit Jeans-black-Extra large size'),(15058,84,0,1087,'Dark Blue Slim Fit Jeans'),(15059,86,0,1087,'Dark Blue Slim Fit Jeans Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt lo'),(15060,87,0,1087,'/4/5/4545t666_4.jpg'),(15061,88,0,1087,'/4/5/4545t666_4.jpg'),(15062,89,0,1087,'/4/5/4545t666_4.jpg'),(15063,106,0,1087,'container2'),(15064,121,0,1087,'dark-blue-slim-fit-jeans-black-extra-large-size'),(15065,132,0,1087,'0'),(15066,133,0,1087,'/4/5/4545t666_4.jpg'),(15067,206,0,1087,'100% cotton'),(15072,87,0,341,'/i/m/image_31265248_31_970x1182_3_1.jpg'),(15073,88,0,341,'/i/m/image_31265248_31_970x1182_3_1.jpg'),(15074,89,0,341,'/i/m/image_31265248_31_970x1182_3_1.jpg'),(15075,133,0,341,'/i/m/image_31265248_31_970x1182_3_1.jpg'),(15080,87,0,342,'/i/m/image_31265248_31_970x1182_3_1_1.jpg'),(15081,88,0,342,'/i/m/image_31265248_31_970x1182_3_1_1.jpg'),(15082,89,0,342,'/i/m/image_31265248_31_970x1182_3_1_1.jpg'),(15083,133,0,342,'/i/m/image_31265248_31_970x1182_3_1_1.jpg'),(15088,87,0,343,'/i/m/image_31265248_31_970x1182_3_2.jpg'),(15089,88,0,343,'/i/m/image_31265248_31_970x1182_3_2.jpg'),(15090,89,0,343,'/i/m/image_31265248_31_970x1182_3_2.jpg'),(15091,133,0,343,'/i/m/image_31265248_31_970x1182_3_2.jpg'),(15096,87,0,344,'/i/m/image_31265248_31_970x1182_3_3.jpg'),(15097,88,0,344,'/i/m/image_31265248_31_970x1182_3_3.jpg'),(15098,89,0,344,'/i/m/image_31265248_31_970x1182_3_3.jpg'),(15099,133,0,344,'/i/m/image_31265248_31_970x1182_3_3.jpg'),(15104,87,0,345,'/i/m/image_31265248_31_970x1182_3_4.jpg'),(15105,88,0,345,'/i/m/image_31265248_31_970x1182_3_4.jpg'),(15106,89,0,345,'/i/m/image_31265248_31_970x1182_3_4.jpg'),(15107,133,0,345,'/i/m/image_31265248_31_970x1182_3_4.jpg'),(15116,73,0,1088,'Dark Blue Straight Leg Jeans-grey-Small size'),(15117,84,0,1088,'Dark Blue Straight Leg Jeans – 700'),(15118,86,0,1088,'Dark Blue Straight Leg Jeans – 700 Model: 700Manufacturers product information: regular fitCut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)Waistband: belt lo'),(15119,87,0,1088,'/3/4/3434t5t5t.jpg'),(15120,88,0,1088,'/3/4/3434t5t5t.jpg'),(15121,89,0,1088,'/3/4/3434t5t5t.jpg'),(15122,106,0,1088,'container2'),(15123,121,0,1088,'dark-blue-straight-leg-jeans-grey-small-size'),(15124,132,0,1088,'0'),(15125,133,0,1088,'/3/4/3434t5t5t.jpg'),(15126,206,0,1088,'98% cotton, 2% elastane'),(15131,73,0,1089,'Dark Blue Straight Leg Jeans-grey-Medium size'),(15132,84,0,1089,'Dark Blue Straight Leg Jeans – 700'),(15133,86,0,1089,'Dark Blue Straight Leg Jeans – 700 Model: 700Manufacturers product information: regular fitCut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)Waistband: belt lo'),(15134,87,0,1089,'/3/4/3434t5t5t_1.jpg'),(15135,88,0,1089,'/3/4/3434t5t5t_1.jpg'),(15136,89,0,1089,'/3/4/3434t5t5t_1.jpg'),(15137,106,0,1089,'container2'),(15138,121,0,1089,'dark-blue-straight-leg-jeans-grey-medium-size'),(15139,132,0,1089,'0'),(15140,133,0,1089,'/3/4/3434t5t5t_1.jpg'),(15141,206,0,1089,'98% cotton, 2% elastane'),(15146,73,0,1090,'Dark Blue Straight Leg Jeans-grey-Large size'),(15147,84,0,1090,'Dark Blue Straight Leg Jeans – 700'),(15148,86,0,1090,'Dark Blue Straight Leg Jeans – 700 Model: 700Manufacturers product information: regular fitCut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)Waistband: belt lo'),(15149,87,0,1090,'/3/4/3434t5t5t_2.jpg'),(15150,88,0,1090,'/3/4/3434t5t5t_2.jpg'),(15151,89,0,1090,'/3/4/3434t5t5t_2.jpg'),(15152,106,0,1090,'container2'),(15153,121,0,1090,'dark-blue-straight-leg-jeans-grey-large-size'),(15154,132,0,1090,'0'),(15155,133,0,1090,'/3/4/3434t5t5t_2.jpg'),(15156,206,0,1090,'98% cotton, 2% elastane'),(15161,87,0,440,'/i/m/image_31203254_31_620x757_3_1.jpg'),(15162,88,0,440,'/i/m/image_31203254_31_620x757_3_1.jpg'),(15163,89,0,440,'/i/m/image_31203254_31_620x757_3_1.jpg'),(15164,133,0,440,'/i/m/image_31203254_31_620x757_3_1.jpg'),(15169,87,0,441,'/i/m/image_31203254_31_620x757_3_1_1.jpg'),(15170,88,0,441,'/i/m/image_31203254_31_620x757_3_1_1.jpg'),(15171,89,0,441,'/i/m/image_31203254_31_620x757_3_1_1.jpg'),(15172,133,0,441,'/i/m/image_31203254_31_620x757_3_1_1.jpg'),(15177,87,0,442,'/i/m/image_31203254_31_620x757_3_2.jpg'),(15178,88,0,442,'/i/m/image_31203254_31_620x757_3_2.jpg'),(15179,89,0,442,'/i/m/image_31203254_31_620x757_3_2.jpg'),(15180,133,0,442,'/i/m/image_31203254_31_620x757_3_2.jpg'),(15189,73,0,1091,'Cipo & Baxx Jacket-white-Small size'),(15190,84,0,1091,'Seventy Transitional Jacket'),(15191,86,0,1091,'Seventy Transitional Jacket '),(15192,87,0,1091,'/i/m/image_30988045_20_970x1182_0_1_1.jpg'),(15193,88,0,1091,'/i/m/image_30988045_20_970x1182_0_1_1.jpg'),(15194,89,0,1091,'/i/m/image_30988045_20_970x1182_0_1_1.jpg'),(15195,106,0,1091,'container2'),(15196,121,0,1091,'cipo-baxx-jacket-white-small-size'),(15197,132,0,1091,'0'),(15198,133,0,1091,'/i/m/image_30988045_20_970x1182_0_1_1.jpg'),(15199,206,0,1091,'100% cotton'),(15204,73,0,1092,'Cipo & Baxx Jacket-white-Medium size'),(15205,84,0,1092,'Seventy Transitional Jacket'),(15206,86,0,1092,'Seventy Transitional Jacket '),(15207,87,0,1092,'/i/m/image_30988045_20_970x1182_0_1_1_1.jpg'),(15208,88,0,1092,'/i/m/image_30988045_20_970x1182_0_1_1_1.jpg'),(15209,89,0,1092,'/i/m/image_30988045_20_970x1182_0_1_1_1.jpg'),(15210,106,0,1092,'container2'),(15211,121,0,1092,'cipo-baxx-jacket-white-medium-size'),(15212,132,0,1092,'0'),(15213,133,0,1092,'/i/m/image_30988045_20_970x1182_0_1_1_1.jpg'),(15214,206,0,1092,'100% cotton'),(15219,73,0,1093,'Cipo & Baxx Jacket-white-Large size'),(15220,84,0,1093,'Seventy Transitional Jacket'),(15221,86,0,1093,'Seventy Transitional Jacket '),(15222,87,0,1093,'/i/m/image_30988045_20_970x1182_0_1_2.jpg'),(15223,88,0,1093,'/i/m/image_30988045_20_970x1182_0_1_2.jpg'),(15224,89,0,1093,'/i/m/image_30988045_20_970x1182_0_1_2.jpg'),(15225,106,0,1093,'container2'),(15226,121,0,1093,'cipo-baxx-jacket-white-large-size'),(15227,132,0,1093,'0'),(15228,133,0,1093,'/i/m/image_30988045_20_970x1182_0_1_2.jpg'),(15229,206,0,1093,'100% cotton'),(15234,73,0,1094,'Cipo & Baxx Jacket-white-Extra large size'),(15235,84,0,1094,'Seventy Transitional Jacket'),(15236,86,0,1094,'Seventy Transitional Jacket '),(15237,87,0,1094,'/i/m/image_30988045_20_970x1182_0_1_3.jpg'),(15238,88,0,1094,'/i/m/image_30988045_20_970x1182_0_1_3.jpg'),(15239,89,0,1094,'/i/m/image_30988045_20_970x1182_0_1_3.jpg'),(15240,106,0,1094,'container2'),(15241,121,0,1094,'cipo-baxx-jacket-white-extra-large-size'),(15242,132,0,1094,'0'),(15243,133,0,1094,'/i/m/image_30988045_20_970x1182_0_1_3.jpg'),(15244,206,0,1094,'100% cotton'),(15285,73,0,1095,'Calvin Klein Wool Jumper-white-Extra small size'),(15286,84,0,1095,'Lawrence Grey Rollneck Pullover'),(15287,86,0,1095,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(15288,87,0,1095,'/i/m/image_31226241_25_970x1182_0_1.jpg'),(15289,88,0,1095,'/i/m/image_31226241_25_970x1182_0_1.jpg'),(15290,89,0,1095,'/i/m/image_31226241_25_970x1182_0_1.jpg'),(15291,106,0,1095,'container2'),(15292,121,0,1095,'calvin-klein-wool-jumper-white-extra-small-size'),(15293,132,0,1095,'0'),(15294,133,0,1095,'/i/m/image_31226241_25_970x1182_0_1.jpg'),(15295,206,0,1095,'100% wool'),(15300,73,0,1096,'Calvin Klein Wool Jumper-white-Small size'),(15301,84,0,1096,'Lawrence Grey Rollneck Pullover'),(15302,86,0,1096,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(15303,87,0,1096,'/i/m/image_31226241_25_970x1182_0_1_1.jpg'),(15304,88,0,1096,'/i/m/image_31226241_25_970x1182_0_1_1.jpg'),(15305,89,0,1096,'/i/m/image_31226241_25_970x1182_0_1_1.jpg'),(15306,106,0,1096,'container2'),(15307,121,0,1096,'calvin-klein-wool-jumper-white-small-size'),(15308,132,0,1096,'0'),(15309,133,0,1096,'/i/m/image_31226241_25_970x1182_0_1_1.jpg'),(15310,206,0,1096,'100% wool'),(15315,73,0,1097,'Calvin Klein Wool Jumper-white-Large size'),(15316,84,0,1097,'Lawrence Grey Rollneck Pullover'),(15317,86,0,1097,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(15318,87,0,1097,'/i/m/image_31226241_25_970x1182_0_2.jpg'),(15319,88,0,1097,'/i/m/image_31226241_25_970x1182_0_2.jpg'),(15320,89,0,1097,'/i/m/image_31226241_25_970x1182_0_2.jpg'),(15321,106,0,1097,'container2'),(15322,121,0,1097,'calvin-klein-wool-jumper-white-large-size'),(15323,132,0,1097,'0'),(15324,133,0,1097,'/i/m/image_31226241_25_970x1182_0_2.jpg'),(15325,206,0,1097,'100% wool'),(15358,73,0,1098,'Boss Denim Jacket-white-Small size'),(15359,84,0,1098,'Seventy Transitional Jacket'),(15360,86,0,1098,'Seventy Transitional Jacket '),(15361,87,0,1098,'/i/m/image_31250794_20_970x1182_0_1.jpg'),(15362,88,0,1098,'/i/m/image_31250794_20_970x1182_0_1.jpg'),(15363,89,0,1098,'/i/m/image_31250794_20_970x1182_0_1.jpg'),(15364,106,0,1098,'container2'),(15365,121,0,1098,'boss-denim-jacket-white-small-size'),(15366,132,0,1098,'0'),(15367,133,0,1098,'/i/m/image_31250794_20_970x1182_0_1.jpg'),(15368,206,0,1098,'98% cotton, 2% elastane'),(15373,73,0,1099,'Boss Denim Jacket-white-Medium size'),(15374,84,0,1099,'Seventy Transitional Jacket'),(15375,86,0,1099,'Seventy Transitional Jacket '),(15376,87,0,1099,'/i/m/image_31250794_20_970x1182_0_1_1.jpg'),(15377,88,0,1099,'/i/m/image_31250794_20_970x1182_0_1_1.jpg'),(15378,89,0,1099,'/i/m/image_31250794_20_970x1182_0_1_1.jpg'),(15379,106,0,1099,'container2'),(15380,121,0,1099,'boss-denim-jacket-white-medium-size'),(15381,132,0,1099,'0'),(15382,133,0,1099,'/i/m/image_31250794_20_970x1182_0_1_1.jpg'),(15383,206,0,1099,'98% cotton, 2% elastane'),(15388,73,0,1100,'Boss Denim Jacket-white-Extra large size'),(15389,84,0,1100,'Seventy Transitional Jacket'),(15390,86,0,1100,'Seventy Transitional Jacket '),(15391,87,0,1100,'/i/m/image_31250794_20_970x1182_0_2.jpg'),(15392,88,0,1100,'/i/m/image_31250794_20_970x1182_0_2.jpg'),(15393,89,0,1100,'/i/m/image_31250794_20_970x1182_0_2.jpg'),(15394,106,0,1100,'container2'),(15395,121,0,1100,'boss-denim-jacket-white-extra-large-size'),(15396,132,0,1100,'0'),(15397,133,0,1100,'/i/m/image_31250794_20_970x1182_0_2.jpg'),(15398,206,0,1100,'98% cotton, 2% elastane'),(15431,73,0,1101,'Blue Straight Leg Jeans – Rob-blue-Small size'),(15432,84,0,1101,'Medium Blue Straight Leg Jeans – Rob'),(15433,86,0,1101,'Medium Blue Straight Leg Jeans – Rob Model: RobManufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: bel'),(15434,87,0,1101,'/m/a/main_5_3_1.jpg'),(15435,88,0,1101,'/m/a/main_5_3_1.jpg'),(15436,89,0,1101,'/m/a/main_5_3_1.jpg'),(15437,106,0,1101,'container2'),(15438,121,0,1101,'blue-straight-leg-jeans-rob-blue-small-size'),(15439,132,0,1101,'0'),(15440,133,0,1101,'/m/a/main_5_3_1.jpg'),(15441,206,0,1101,'99% cotton, 1% elastane'),(15446,73,0,1102,'Blue Straight Leg Jeans – Rob-blue-Medium size'),(15447,84,0,1102,'Medium Blue Straight Leg Jeans – Rob'),(15448,86,0,1102,'Medium Blue Straight Leg Jeans – Rob Model: RobManufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: bel'),(15449,87,0,1102,'/m/a/main_5_3_1_1.jpg'),(15450,88,0,1102,'/m/a/main_5_3_1_1.jpg'),(15451,89,0,1102,'/m/a/main_5_3_1_1.jpg'),(15452,106,0,1102,'container2'),(15453,121,0,1102,'blue-straight-leg-jeans-rob-blue-medium-size'),(15454,132,0,1102,'0'),(15455,133,0,1102,'/m/a/main_5_3_1_1.jpg'),(15456,206,0,1102,'99% cotton, 1% elastane'),(15461,73,0,1103,'Blue Straight Leg Jeans – Rob-blue-Large size'),(15462,84,0,1103,'Medium Blue Straight Leg Jeans – Rob'),(15463,86,0,1103,'Medium Blue Straight Leg Jeans – Rob Model: RobManufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: bel'),(15464,87,0,1103,'/m/a/main_5_3_2.jpg'),(15465,88,0,1103,'/m/a/main_5_3_2.jpg'),(15466,89,0,1103,'/m/a/main_5_3_2.jpg'),(15467,106,0,1103,'container2'),(15468,121,0,1103,'blue-straight-leg-jeans-rob-blue-large-size'),(15469,132,0,1103,'0'),(15470,133,0,1103,'/m/a/main_5_3_2.jpg'),(15471,206,0,1103,'99% cotton, 1% elastane'),(15472,73,0,1104,'Diesel Jacket-grey-Small size'),(15473,84,0,1104,'Seventy Transitional Jacket'),(15474,86,0,1104,'Seventy Transitional Jacket '),(15475,87,0,1104,'/5/t/5t4rr4r3r.jpg'),(15476,88,0,1104,'/5/t/5t4rr4r3r.jpg'),(15477,89,0,1104,'/5/t/5t4rr4r3r.jpg'),(15478,106,0,1104,'container2'),(15479,121,0,1104,'diesel-jacket-grey-small-size'),(15480,132,0,1104,'0'),(15481,133,0,1104,'/5/t/5t4rr4r3r.jpg'),(15482,206,0,1104,'83% polyester, 17% cotton'),(15487,73,0,1105,'Diesel Jacket-grey-Medium size'),(15488,84,0,1105,'Seventy Transitional Jacket'),(15489,86,0,1105,'Seventy Transitional Jacket '),(15490,87,0,1105,'/5/t/5t4rr4r3r_1.jpg'),(15491,88,0,1105,'/5/t/5t4rr4r3r_1.jpg'),(15492,89,0,1105,'/5/t/5t4rr4r3r_1.jpg'),(15493,106,0,1105,'container2'),(15494,121,0,1105,'diesel-jacket-grey-medium-size'),(15495,132,0,1105,'0'),(15496,133,0,1105,'/5/t/5t4rr4r3r_1.jpg'),(15497,206,0,1105,'83% polyester, 17% cotton'),(15502,73,0,1106,'Diesel Jacket-grey-Large size'),(15503,84,0,1106,'Seventy Transitional Jacket'),(15504,86,0,1106,'Seventy Transitional Jacket '),(15505,87,0,1106,'/5/t/5t4rr4r3r_2.jpg'),(15506,88,0,1106,'/5/t/5t4rr4r3r_2.jpg'),(15507,89,0,1106,'/5/t/5t4rr4r3r_2.jpg'),(15508,106,0,1106,'container2'),(15509,121,0,1106,'diesel-jacket-grey-large-size'),(15510,132,0,1106,'0'),(15511,133,0,1106,'/5/t/5t4rr4r3r_2.jpg'),(15512,206,0,1106,'83% polyester, 17% cotton'),(15517,87,0,437,'/i/m/image_31302817_21_970x1182_0-3_1.jpg'),(15518,88,0,437,'/i/m/image_31302817_21_970x1182_0-3_1.jpg'),(15519,89,0,437,'/i/m/image_31302817_21_970x1182_0-3_1.jpg'),(15520,133,0,437,'/i/m/image_31302817_21_970x1182_0-3_1.jpg'),(15525,87,0,439,'/i/m/image_31302817_21_970x1182_0-3_1_1.jpg'),(15526,88,0,439,'/i/m/image_31302817_21_970x1182_0-3_1_1.jpg'),(15527,89,0,439,'/i/m/image_31302817_21_970x1182_0-3_1_1.jpg'),(15528,133,0,439,'/i/m/image_31302817_21_970x1182_0-3_1_1.jpg'),(15533,87,0,438,'/i/m/image_31302817_21_970x1182_0-3_2.jpg'),(15534,88,0,438,'/i/m/image_31302817_21_970x1182_0-3_2.jpg'),(15535,89,0,438,'/i/m/image_31302817_21_970x1182_0-3_2.jpg'),(15536,133,0,438,'/i/m/image_31302817_21_970x1182_0-3_2.jpg'),(15545,73,0,1107,'Tommy Hilfiger Long-sleeved Jumper-blue-Extra small size'),(15546,84,0,1107,'Lawrence Grey Rollneck Pullover'),(15547,86,0,1107,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(15548,87,0,1107,'/3/4/34rew23.jpg'),(15549,88,0,1107,'/3/4/34rew23.jpg'),(15550,89,0,1107,'/3/4/34rew23.jpg'),(15551,106,0,1107,'container2'),(15552,121,0,1107,'tommy-hilfiger-long-sleeved-jumper-blue-extra-small-size'),(15553,132,0,1107,'0'),(15554,133,0,1107,'/3/4/34rew23.jpg'),(15555,206,0,1107,'63% cotton, 27% polyamide, 10% wool'),(15560,73,0,1108,'Tommy Hilfiger Long-sleeved Jumper-blue-Small size'),(15561,84,0,1108,'Lawrence Grey Rollneck Pullover'),(15562,86,0,1108,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(15563,87,0,1108,'/3/4/34rew23_1.jpg'),(15564,88,0,1108,'/3/4/34rew23_1.jpg'),(15565,89,0,1108,'/3/4/34rew23_1.jpg'),(15566,106,0,1108,'container2'),(15567,121,0,1108,'tommy-hilfiger-long-sleeved-jumper-blue-small-size'),(15568,132,0,1108,'0'),(15569,133,0,1108,'/3/4/34rew23_1.jpg'),(15570,206,0,1108,'63% cotton, 27% polyamide, 10% wool'),(15575,73,0,1109,'Tommy Hilfiger Long-sleeved Jumper-blue-Medium size'),(15576,84,0,1109,'Lawrence Grey Rollneck Pullover'),(15577,86,0,1109,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(15578,87,0,1109,'/3/4/34rew23_2.jpg'),(15579,88,0,1109,'/3/4/34rew23_2.jpg'),(15580,89,0,1109,'/3/4/34rew23_2.jpg'),(15581,106,0,1109,'container2'),(15582,121,0,1109,'tommy-hilfiger-long-sleeved-jumper-blue-medium-size'),(15583,132,0,1109,'0'),(15584,133,0,1109,'/3/4/34rew23_2.jpg'),(15585,206,0,1109,'63% cotton, 27% polyamide, 10% wool'),(15590,87,0,488,'/i/m/image_31231309_25_970x1182_0_1.jpg'),(15591,88,0,488,'/i/m/image_31231309_25_970x1182_0_1.jpg'),(15592,89,0,488,'/i/m/image_31231309_25_970x1182_0_1.jpg'),(15593,133,0,488,'/i/m/image_31231309_25_970x1182_0_1.jpg'),(15598,87,0,489,'/i/m/image_31231309_25_970x1182_0_1_1.jpg'),(15599,88,0,489,'/i/m/image_31231309_25_970x1182_0_1_1.jpg'),(15600,89,0,489,'/i/m/image_31231309_25_970x1182_0_1_1.jpg'),(15601,133,0,489,'/i/m/image_31231309_25_970x1182_0_1_1.jpg'),(15606,87,0,490,'/i/m/image_31231309_25_970x1182_0_2.jpg'),(15607,88,0,490,'/i/m/image_31231309_25_970x1182_0_2.jpg'),(15608,89,0,490,'/i/m/image_31231309_25_970x1182_0_2.jpg'),(15609,133,0,490,'/i/m/image_31231309_25_970x1182_0_2.jpg'),(15610,73,0,1110,'Steinbock Transitional Jacket-white-Extra small size'),(15611,84,0,1110,'Seventy Transitional Jacket'),(15612,86,0,1110,'Seventy Transitional Jacket '),(15613,87,0,1110,'/w/3/w3e3e2w2w2w.jpg'),(15614,88,0,1110,'/w/3/w3e3e2w2w2w.jpg'),(15615,89,0,1110,'/w/3/w3e3e2w2w2w.jpg'),(15616,106,0,1110,'container2'),(15617,121,0,1110,'steinbock-transitional-jacket-white-extra-small-size'),(15618,132,0,1110,'0'),(15619,133,0,1110,'/w/3/w3e3e2w2w2w.jpg'),(15620,206,0,1110,'100% polyamide'),(15625,73,0,1111,'Steinbock Transitional Jacket-white-Small size'),(15626,84,0,1111,'Seventy Transitional Jacket'),(15627,86,0,1111,'Seventy Transitional Jacket '),(15628,87,0,1111,'/w/3/w3e3e2w2w2w_1.jpg'),(15629,88,0,1111,'/w/3/w3e3e2w2w2w_1.jpg'),(15630,89,0,1111,'/w/3/w3e3e2w2w2w_1.jpg'),(15631,106,0,1111,'container2'),(15632,121,0,1111,'steinbock-transitional-jacket-white-small-size'),(15633,132,0,1111,'0'),(15634,133,0,1111,'/w/3/w3e3e2w2w2w_1.jpg'),(15635,206,0,1111,'100% polyamide'),(15640,73,0,1112,'Steinbock Transitional Jacket-white-Medium size'),(15641,84,0,1112,'Seventy Transitional Jacket'),(15642,86,0,1112,'Seventy Transitional Jacket '),(15643,87,0,1112,'/w/3/w3e3e2w2w2w_2.jpg'),(15644,88,0,1112,'/w/3/w3e3e2w2w2w_2.jpg'),(15645,89,0,1112,'/w/3/w3e3e2w2w2w_2.jpg'),(15646,106,0,1112,'container2'),(15647,121,0,1112,'steinbock-transitional-jacket-white-medium-size'),(15648,132,0,1112,'0'),(15649,133,0,1112,'/w/3/w3e3e2w2w2w_2.jpg'),(15650,206,0,1112,'100% polyamide'),(15655,73,0,1113,'Steinbock Transitional Jacket-white-Extra large size'),(15656,84,0,1113,'Seventy Transitional Jacket'),(15657,86,0,1113,'Seventy Transitional Jacket '),(15658,87,0,1113,'/w/3/w3e3e2w2w2w_3.jpg'),(15659,88,0,1113,'/w/3/w3e3e2w2w2w_3.jpg'),(15660,89,0,1113,'/w/3/w3e3e2w2w2w_3.jpg'),(15661,106,0,1113,'container2'),(15662,121,0,1113,'steinbock-transitional-jacket-white-extra-large-size'),(15663,132,0,1113,'0'),(15664,133,0,1113,'/w/3/w3e3e2w2w2w_3.jpg'),(15665,206,0,1113,'100% polyamide'),(15670,87,0,471,'/i/m/image_31176055_22_970x1182_0_1.jpg'),(15671,88,0,471,'/i/m/image_31176055_22_970x1182_0_1.jpg'),(15672,89,0,471,'/i/m/image_31176055_22_970x1182_0_1.jpg'),(15673,133,0,471,'/i/m/image_31176055_22_970x1182_0_1.jpg'),(15678,87,0,473,'/i/m/image_31176055_22_970x1182_0_1_1.jpg'),(15679,88,0,473,'/i/m/image_31176055_22_970x1182_0_1_1.jpg'),(15680,89,0,473,'/i/m/image_31176055_22_970x1182_0_1_1.jpg'),(15681,133,0,473,'/i/m/image_31176055_22_970x1182_0_1_1.jpg'),(15686,87,0,474,'/i/m/image_31176055_22_970x1182_0_2.jpg'),(15687,88,0,474,'/i/m/image_31176055_22_970x1182_0_2.jpg'),(15688,89,0,474,'/i/m/image_31176055_22_970x1182_0_2.jpg'),(15689,133,0,474,'/i/m/image_31176055_22_970x1182_0_2.jpg'),(15694,87,0,472,'/i/m/image_31176055_22_970x1182_0_3.jpg'),(15695,88,0,472,'/i/m/image_31176055_22_970x1182_0_3.jpg'),(15696,89,0,472,'/i/m/image_31176055_22_970x1182_0_3.jpg'),(15697,133,0,472,'/i/m/image_31176055_22_970x1182_0_3.jpg'),(15706,73,0,1114,'Puma Transitional Jacket-blue-Small size'),(15707,84,0,1114,'Seventy Transitional Jacket'),(15708,86,0,1114,'Seventy Transitional Jacket '),(15709,87,0,1114,'/2/w/2w3e4rrr.jpg'),(15710,88,0,1114,'/2/w/2w3e4rrr.jpg'),(15711,89,0,1114,'/2/w/2w3e4rrr.jpg'),(15712,106,0,1114,'container2'),(15713,121,0,1114,'puma-transitional-jacket-blue-small-size'),(15714,132,0,1114,'0'),(15715,133,0,1114,'/2/w/2w3e4rrr.jpg'),(15716,206,0,1114,'100% polyester'),(15721,73,0,1115,'Puma Transitional Jacket-blue-Medium size'),(15722,84,0,1115,'Seventy Transitional Jacket'),(15723,86,0,1115,'Seventy Transitional Jacket '),(15724,87,0,1115,'/2/w/2w3e4rrr_1.jpg'),(15725,88,0,1115,'/2/w/2w3e4rrr_1.jpg'),(15726,89,0,1115,'/2/w/2w3e4rrr_1.jpg'),(15727,106,0,1115,'container2'),(15728,121,0,1115,'puma-transitional-jacket-blue-medium-size'),(15729,132,0,1115,'0'),(15730,133,0,1115,'/2/w/2w3e4rrr_1.jpg'),(15731,206,0,1115,'100% polyester'),(15736,73,0,1116,'Puma Transitional Jacket-blue-Large size'),(15737,84,0,1116,'Seventy Transitional Jacket'),(15738,86,0,1116,'Seventy Transitional Jacket '),(15739,87,0,1116,'/2/w/2w3e4rrr_2.jpg'),(15740,88,0,1116,'/2/w/2w3e4rrr_2.jpg'),(15741,89,0,1116,'/2/w/2w3e4rrr_2.jpg'),(15742,106,0,1116,'container2'),(15743,121,0,1116,'puma-transitional-jacket-blue-large-size'),(15744,132,0,1116,'0'),(15745,133,0,1116,'/2/w/2w3e4rrr_2.jpg'),(15746,206,0,1116,'100% polyester'),(15751,73,0,1117,'Puma Transitional Jacket-blue-Extra large size'),(15752,84,0,1117,'Seventy Transitional Jacket'),(15753,86,0,1117,'Seventy Transitional Jacket '),(15754,87,0,1117,'/2/w/2w3e4rrr_3.jpg'),(15755,88,0,1117,'/2/w/2w3e4rrr_3.jpg'),(15756,89,0,1117,'/2/w/2w3e4rrr_3.jpg'),(15757,106,0,1117,'container2'),(15758,121,0,1117,'puma-transitional-jacket-blue-extra-large-size'),(15759,132,0,1117,'0'),(15760,133,0,1117,'/2/w/2w3e4rrr_3.jpg'),(15761,206,0,1117,'100% polyester'),(15766,87,0,461,'/i/m/image_31219211_25_970x1182_0_1.jpg'),(15767,88,0,461,'/i/m/image_31219211_25_970x1182_0_1.jpg'),(15768,89,0,461,'/i/m/image_31219211_25_970x1182_0_1.jpg'),(15769,133,0,461,'/i/m/image_31219211_25_970x1182_0_1.jpg'),(15774,87,0,462,'/i/m/image_31219211_25_970x1182_0_1_1.jpg'),(15775,88,0,462,'/i/m/image_31219211_25_970x1182_0_1_1.jpg'),(15776,89,0,462,'/i/m/image_31219211_25_970x1182_0_1_1.jpg'),(15777,133,0,462,'/i/m/image_31219211_25_970x1182_0_1_1.jpg'),(15782,87,0,464,'/i/m/image_31219211_25_970x1182_0_2.jpg'),(15783,88,0,464,'/i/m/image_31219211_25_970x1182_0_2.jpg'),(15784,89,0,464,'/i/m/image_31219211_25_970x1182_0_2.jpg'),(15785,133,0,464,'/i/m/image_31219211_25_970x1182_0_2.jpg'),(15790,87,0,463,'/i/m/image_31219211_25_970x1182_0_3.jpg'),(15791,88,0,463,'/i/m/image_31219211_25_970x1182_0_3.jpg'),(15792,89,0,463,'/i/m/image_31219211_25_970x1182_0_3.jpg'),(15793,133,0,463,'/i/m/image_31219211_25_970x1182_0_3.jpg'),(15802,73,0,1118,'People of Shibuya Transitional Jacket-red-Extra small size'),(15803,84,0,1118,'Seventy Transitional Jacket'),(15804,86,0,1118,'Seventy Transitional Jacket '),(15805,87,0,1118,'/e/r/er54t666.jpg'),(15806,88,0,1118,'/e/r/er54t666.jpg'),(15807,89,0,1118,'/e/r/er54t666.jpg'),(15808,106,0,1118,'container2'),(15809,121,0,1118,'people-of-shibuya-transitional-jacket-red-extra-small-size'),(15810,132,0,1118,'0'),(15811,133,0,1118,'/e/r/er54t666.jpg'),(15812,206,0,1118,'89% polyester, 11% elastane'),(15817,73,0,1119,'People of Shibuya Transitional Jacket-red-Small size'),(15818,84,0,1119,'Seventy Transitional Jacket'),(15819,86,0,1119,'Seventy Transitional Jacket '),(15820,87,0,1119,'/e/r/er54t666_1.jpg'),(15821,88,0,1119,'/e/r/er54t666_1.jpg'),(15822,89,0,1119,'/e/r/er54t666_1.jpg'),(15823,106,0,1119,'container2'),(15824,121,0,1119,'people-of-shibuya-transitional-jacket-red-small-size'),(15825,132,0,1119,'0'),(15826,133,0,1119,'/e/r/er54t666_1.jpg'),(15827,206,0,1119,'89% polyester, 11% elastane'),(15832,73,0,1120,'People of Shibuya Transitional Jacket-red-Medium size'),(15833,84,0,1120,'Seventy Transitional Jacket'),(15834,86,0,1120,'Seventy Transitional Jacket '),(15835,87,0,1120,'/e/r/er54t666_2.jpg'),(15836,88,0,1120,'/e/r/er54t666_2.jpg'),(15837,89,0,1120,'/e/r/er54t666_2.jpg'),(15838,106,0,1120,'container2'),(15839,121,0,1120,'people-of-shibuya-transitional-jacket-red-medium-size'),(15840,132,0,1120,'0'),(15841,133,0,1120,'/e/r/er54t666_2.jpg'),(15842,206,0,1120,'89% polyester, 11% elastane'),(15847,87,0,455,'/i/m/image_31091479_21_970x1182_0_1.jpg'),(15848,88,0,455,'/i/m/image_31091479_21_970x1182_0_1.jpg'),(15849,89,0,455,'/i/m/image_31091479_21_970x1182_0_1.jpg'),(15850,133,0,455,'/i/m/image_31091479_21_970x1182_0_1.jpg'),(15855,87,0,456,'/i/m/image_31091479_21_970x1182_0_1_1.jpg'),(15856,88,0,456,'/i/m/image_31091479_21_970x1182_0_1_1.jpg'),(15857,89,0,456,'/i/m/image_31091479_21_970x1182_0_1_1.jpg'),(15858,133,0,456,'/i/m/image_31091479_21_970x1182_0_1_1.jpg'),(15863,87,0,457,'/i/m/image_31091479_21_970x1182_0_2.jpg'),(15864,88,0,457,'/i/m/image_31091479_21_970x1182_0_2.jpg'),(15865,89,0,457,'/i/m/image_31091479_21_970x1182_0_2.jpg'),(15866,133,0,457,'/i/m/image_31091479_21_970x1182_0_2.jpg'),(15879,73,0,1121,'Jack & Jones Transitional Jacket-blue-Small size'),(15880,84,0,1121,'Seventy Transitional Jacket'),(15881,86,0,1121,'Seventy Transitional Jacket '),(15882,87,0,1121,'/2/w/2we4r5tt.jpg'),(15883,88,0,1121,'/2/w/2we4r5tt.jpg'),(15884,89,0,1121,'/2/w/2we4r5tt.jpg'),(15885,106,0,1121,'container2'),(15886,121,0,1121,'jack-jones-transitional-jacket-blue-small-size'),(15887,132,0,1121,'0'),(15888,133,0,1121,'/2/w/2we4r5tt.jpg'),(15889,206,0,1121,'100% polyamide'),(15894,73,0,1122,'Jack & Jones Transitional Jacket-blue-Large size'),(15895,84,0,1122,'Seventy Transitional Jacket'),(15896,86,0,1122,'Seventy Transitional Jacket '),(15897,87,0,1122,'/2/w/2we4r5tt_1.jpg'),(15898,88,0,1122,'/2/w/2we4r5tt_1.jpg'),(15899,89,0,1122,'/2/w/2we4r5tt_1.jpg'),(15900,106,0,1122,'container2'),(15901,121,0,1122,'jack-jones-transitional-jacket-blue-large-size'),(15902,132,0,1122,'0'),(15903,133,0,1122,'/2/w/2we4r5tt_1.jpg'),(15904,206,0,1122,'100% polyamide'),(15909,73,0,1123,'Jack & Jones Transitional Jacket-blue-Extra large size'),(15910,84,0,1123,'Seventy Transitional Jacket'),(15911,86,0,1123,'Seventy Transitional Jacket '),(15912,87,0,1123,'/2/w/2we4r5tt_2.jpg'),(15913,88,0,1123,'/2/w/2we4r5tt_2.jpg'),(15914,89,0,1123,'/2/w/2we4r5tt_2.jpg'),(15915,106,0,1123,'container2'),(15916,121,0,1123,'jack-jones-transitional-jacket-blue-extra-large-size'),(15917,132,0,1123,'0'),(15918,133,0,1123,'/2/w/2we4r5tt_2.jpg'),(15919,206,0,1123,'100% polyamide'),(15924,87,0,478,'/i/m/image_31207365_20_970x1182_0_1.jpg'),(15925,88,0,478,'/i/m/image_31207365_20_970x1182_0_1.jpg'),(15926,89,0,478,'/i/m/image_31207365_20_970x1182_0_1.jpg'),(15927,133,0,478,'/i/m/image_31207365_20_970x1182_0_1.jpg'),(15932,87,0,479,'/i/m/image_31207365_20_970x1182_0_1_1.jpg'),(15933,88,0,479,'/i/m/image_31207365_20_970x1182_0_1_1.jpg'),(15934,89,0,479,'/i/m/image_31207365_20_970x1182_0_1_1.jpg'),(15935,133,0,479,'/i/m/image_31207365_20_970x1182_0_1_1.jpg'),(15940,87,0,480,'/i/m/image_31207365_20_970x1182_0_2.jpg'),(15941,88,0,480,'/i/m/image_31207365_20_970x1182_0_2.jpg'),(15942,89,0,480,'/i/m/image_31207365_20_970x1182_0_2.jpg'),(15943,133,0,480,'/i/m/image_31207365_20_970x1182_0_2.jpg'),(15952,73,0,1124,'Hilfiger Denim Transitional Jacket-red-Small size'),(15953,84,0,1124,'Seventy Transitional Jacket'),(15954,86,0,1124,'Seventy Transitional Jacket '),(15955,87,0,1124,'/8/u/8u87hbhhhhb.jpg'),(15956,88,0,1124,'/8/u/8u87hbhhhhb.jpg'),(15957,89,0,1124,'/8/u/8u87hbhhhhb.jpg'),(15958,106,0,1124,'container2'),(15959,121,0,1124,'hilfiger-denim-transitional-jacket-red-small-size'),(15960,132,0,1124,'0'),(15961,133,0,1124,'/8/u/8u87hbhhhhb.jpg'),(15962,206,0,1124,'100% polyamide'),(15967,73,0,1125,'Hilfiger Denim Transitional Jacket-red-Medium size'),(15968,84,0,1125,'Seventy Transitional Jacket'),(15969,86,0,1125,'Seventy Transitional Jacket '),(15970,87,0,1125,'/8/u/8u87hbhhhhb_1.jpg'),(15971,88,0,1125,'/8/u/8u87hbhhhhb_1.jpg'),(15972,89,0,1125,'/8/u/8u87hbhhhhb_1.jpg'),(15973,106,0,1125,'container2'),(15974,121,0,1125,'hilfiger-denim-transitional-jacket-red-medium-size'),(15975,132,0,1125,'0'),(15976,133,0,1125,'/8/u/8u87hbhhhhb_1.jpg'),(15977,206,0,1125,'100% polyamide'),(15982,73,0,1126,'Hilfiger Denim Transitional Jacket-red-Large size'),(15983,84,0,1126,'Seventy Transitional Jacket'),(15984,86,0,1126,'Seventy Transitional Jacket '),(15985,87,0,1126,'/8/u/8u87hbhhhhb_2.jpg'),(15986,88,0,1126,'/8/u/8u87hbhhhhb_2.jpg'),(15987,89,0,1126,'/8/u/8u87hbhhhhb_2.jpg'),(15988,106,0,1126,'container2'),(15989,121,0,1126,'hilfiger-denim-transitional-jacket-red-large-size'),(15990,132,0,1126,'0'),(15991,133,0,1126,'/8/u/8u87hbhhhhb_2.jpg'),(15992,206,0,1126,'100% polyamide'),(15997,87,0,465,'/i/m/image_31166144_20_970x1182_0_1.jpg'),(15998,88,0,465,'/i/m/image_31166144_20_970x1182_0_1.jpg'),(15999,89,0,465,'/i/m/image_31166144_20_970x1182_0_1.jpg'),(16000,133,0,465,'/i/m/image_31166144_20_970x1182_0_1.jpg'),(16005,87,0,466,'/i/m/image_31166144_20_970x1182_0_1_1.jpg'),(16006,88,0,466,'/i/m/image_31166144_20_970x1182_0_1_1.jpg'),(16007,89,0,466,'/i/m/image_31166144_20_970x1182_0_1_1.jpg'),(16008,133,0,466,'/i/m/image_31166144_20_970x1182_0_1_1.jpg'),(16013,87,0,467,'/i/m/image_31166144_20_970x1182_0_2.jpg'),(16014,88,0,467,'/i/m/image_31166144_20_970x1182_0_2.jpg'),(16015,89,0,467,'/i/m/image_31166144_20_970x1182_0_2.jpg'),(16016,133,0,467,'/i/m/image_31166144_20_970x1182_0_2.jpg'),(16025,73,0,1127,'Grey Slim Fit Jeans Cirrus-black-Small size'),(16026,84,0,1127,'Grey Slim Fit Jeans Cirrus'),(16027,86,0,1127,'Grey Slim Fit Jeans Cirrus Manufacturers product information: skinnyCut: slim, tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)Waistband: belt loop and zip with snaps on '),(16028,87,0,1127,'/e/d/eded3.jpg'),(16029,88,0,1127,'/e/d/eded3.jpg'),(16030,89,0,1127,'/e/d/eded3.jpg'),(16031,106,0,1127,'container2'),(16032,121,0,1127,'grey-slim-fit-jeans-cirrus-black-small-size'),(16033,132,0,1127,'0'),(16034,133,0,1127,'/e/d/eded3.jpg'),(16035,206,0,1127,'98% cotton, 2% elastane'),(16040,73,0,1128,'Grey Slim Fit Jeans Cirrus-black-Medium size'),(16041,84,0,1128,'Grey Slim Fit Jeans Cirrus'),(16042,86,0,1128,'Grey Slim Fit Jeans Cirrus Manufacturers product information: skinnyCut: slim, tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)Waistband: belt loop and zip with snaps on '),(16043,87,0,1128,'/e/d/eded3_1.jpg'),(16044,88,0,1128,'/e/d/eded3_1.jpg'),(16045,89,0,1128,'/e/d/eded3_1.jpg'),(16046,106,0,1128,'container2'),(16047,121,0,1128,'grey-slim-fit-jeans-cirrus-black-medium-size'),(16048,132,0,1128,'0'),(16049,133,0,1128,'/e/d/eded3_1.jpg'),(16050,206,0,1128,'98% cotton, 2% elastane'),(16055,73,0,1129,'Grey Slim Fit Jeans Cirrus-black-Large size'),(16056,84,0,1129,'Grey Slim Fit Jeans Cirrus'),(16057,86,0,1129,'Grey Slim Fit Jeans Cirrus Manufacturers product information: skinnyCut: slim, tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″)Waistband: belt loop and zip with snaps on '),(16058,87,0,1129,'/e/d/eded3_2.jpg'),(16059,88,0,1129,'/e/d/eded3_2.jpg'),(16060,89,0,1129,'/e/d/eded3_2.jpg'),(16061,106,0,1129,'container2'),(16062,121,0,1129,'grey-slim-fit-jeans-cirrus-black-large-size'),(16063,132,0,1129,'0'),(16064,133,0,1129,'/e/d/eded3_2.jpg'),(16065,206,0,1129,'98% cotton, 2% elastane'),(16070,87,0,386,'/i/m/image_31304863_80_970x1182_0_1.jpg'),(16071,88,0,386,'/i/m/image_31304863_80_970x1182_0_1.jpg'),(16072,89,0,386,'/i/m/image_31304863_80_970x1182_0_1.jpg'),(16073,133,0,386,'/i/m/image_31304863_80_970x1182_0_1.jpg'),(16078,87,0,385,'/i/m/image_31304863_80_970x1182_0_1_1.jpg'),(16079,88,0,385,'/i/m/image_31304863_80_970x1182_0_1_1.jpg'),(16080,89,0,385,'/i/m/image_31304863_80_970x1182_0_1_1.jpg'),(16081,133,0,385,'/i/m/image_31304863_80_970x1182_0_1_1.jpg'),(16086,87,0,387,'/i/m/image_31304863_80_970x1182_0_2.jpg'),(16087,88,0,387,'/i/m/image_31304863_80_970x1182_0_2.jpg'),(16088,89,0,387,'/i/m/image_31304863_80_970x1182_0_2.jpg'),(16089,133,0,387,'/i/m/image_31304863_80_970x1182_0_2.jpg'),(16098,73,0,1130,'Khaki Straight Leg Jeans Cadiz-blue-Small size'),(16099,84,0,1130,'Khaki Straight Leg Jeans Cadiz'),(16100,86,0,1130,'Khaki Straight Leg Jeans Cadiz Cut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern:'),(16101,87,0,1130,'/8/u/8u7yhuhu_3.jpg'),(16102,88,0,1130,'/8/u/8u7yhuhu_3.jpg'),(16103,89,0,1130,'/8/u/8u7yhuhu_3.jpg'),(16104,106,0,1130,'container2'),(16105,121,0,1130,'khaki-straight-leg-jeans-cadiz-blue-small-size'),(16106,132,0,1130,'0'),(16107,133,0,1130,'/8/u/8u7yhuhu_3.jpg'),(16108,206,0,1130,'67% cotton, 30% polyester, 3% elastane'),(16113,73,0,1131,'Khaki Straight Leg Jeans Cadiz-blue-Medium size'),(16114,84,0,1131,'Khaki Straight Leg Jeans Cadiz'),(16115,86,0,1131,'Khaki Straight Leg Jeans Cadiz Cut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern:'),(16116,87,0,1131,'/8/u/8u7yhuhu_1_1.jpg'),(16117,88,0,1131,'/8/u/8u7yhuhu_1_1.jpg'),(16118,89,0,1131,'/8/u/8u7yhuhu_1_1.jpg'),(16119,106,0,1131,'container2'),(16120,121,0,1131,'khaki-straight-leg-jeans-cadiz-blue-medium-size'),(16121,132,0,1131,'0'),(16122,133,0,1131,'/8/u/8u7yhuhu_1_1.jpg'),(16123,206,0,1131,'67% cotton, 30% polyester, 3% elastane'),(16128,73,0,1132,'Khaki Straight Leg Jeans Cadiz-blue-Large size'),(16129,84,0,1132,'Khaki Straight Leg Jeans Cadiz'),(16130,86,0,1132,'Khaki Straight Leg Jeans Cadiz Cut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern:'),(16131,87,0,1132,'/8/u/8u7yhuhu_2_1.jpg'),(16132,88,0,1132,'/8/u/8u7yhuhu_2_1.jpg'),(16133,89,0,1132,'/8/u/8u7yhuhu_2_1.jpg'),(16134,106,0,1132,'container2'),(16135,121,0,1132,'khaki-straight-leg-jeans-cadiz-blue-large-size'),(16136,132,0,1132,'0'),(16137,133,0,1132,'/8/u/8u7yhuhu_2_1.jpg'),(16138,206,0,1132,'67% cotton, 30% polyester, 3% elastane'),(16143,87,0,358,'/i/m/image_31204067_55_970x1182_0_3.jpg'),(16144,88,0,358,'/i/m/image_31204067_55_970x1182_0_3.jpg'),(16145,89,0,358,'/i/m/image_31204067_55_970x1182_0_3.jpg'),(16146,133,0,358,'/i/m/image_31204067_55_970x1182_0_3.jpg'),(16151,87,0,359,'/i/m/image_31204067_55_970x1182_0_1.jpg'),(16152,88,0,359,'/i/m/image_31204067_55_970x1182_0_1.jpg'),(16153,89,0,359,'/i/m/image_31204067_55_970x1182_0_1.jpg'),(16154,133,0,359,'/i/m/image_31204067_55_970x1182_0_1.jpg'),(16159,87,0,360,'/i/m/image_31204067_55_970x1182_0_2_1.jpg'),(16160,88,0,360,'/i/m/image_31204067_55_970x1182_0_2_1.jpg'),(16161,89,0,360,'/i/m/image_31204067_55_970x1182_0_2_1.jpg'),(16162,133,0,360,'/i/m/image_31204067_55_970x1182_0_2_1.jpg'),(16171,73,0,1133,'Moss Cargo Pants-grey-Medium size'),(16172,84,0,1133,'Moss Cargo Pants'),(16173,86,0,1133,'Moss Cargo Pants Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets, '),(16174,87,0,1133,'/6/y/6y6y6y.jpg'),(16175,88,0,1133,'/6/y/6y6y6y.jpg'),(16176,89,0,1133,'/6/y/6y6y6y.jpg'),(16177,106,0,1133,'container2'),(16178,121,0,1133,'moss-cargo-pants-grey-medium-size'),(16179,132,0,1133,'0'),(16180,133,0,1133,'/6/y/6y6y6y.jpg'),(16181,206,0,1133,'98% cotton, 2% elastane'),(16186,73,0,1134,'Moss Cargo Pants-grey-Large size'),(16187,84,0,1134,'Moss Cargo Pants'),(16188,86,0,1134,'Moss Cargo Pants Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets, '),(16189,87,0,1134,'/6/y/6y6y6y_1.jpg'),(16190,88,0,1134,'/6/y/6y6y6y_1.jpg'),(16191,89,0,1134,'/6/y/6y6y6y_1.jpg'),(16192,106,0,1134,'container2'),(16193,121,0,1134,'moss-cargo-pants-grey-large-size'),(16194,132,0,1134,'0'),(16195,133,0,1134,'/6/y/6y6y6y_1.jpg'),(16196,206,0,1134,'98% cotton, 2% elastane'),(16201,87,0,131,'/m/a/main_3_3_1.jpg'),(16202,88,0,131,'/m/a/main_3_3_1.jpg'),(16203,89,0,131,'/m/a/main_3_3_1.jpg'),(16204,133,0,131,'/m/a/main_3_3_1.jpg'),(16209,87,0,130,'/m/a/main_3_3_1_1.jpg'),(16210,88,0,130,'/m/a/main_3_3_1_1.jpg'),(16211,89,0,130,'/m/a/main_3_3_1_1.jpg'),(16212,133,0,130,'/m/a/main_3_3_1_1.jpg'),(16221,73,0,1135,'Khaki Straight Leg Jeans Cadiz-black-Small size'),(16222,84,0,1135,'Khaki Straight Leg Jeans Cadiz'),(16223,86,0,1135,'Khaki Straight Leg Jeans Cadiz Cut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern:'),(16224,87,0,1135,'/4/r/4r4f4f4.jpg'),(16225,88,0,1135,'/4/r/4r4f4f4.jpg'),(16226,89,0,1135,'/4/r/4r4f4f4.jpg'),(16227,106,0,1135,'container2'),(16228,121,0,1135,'khaki-straight-leg-jeans-cadiz-black-small-size'),(16229,132,0,1135,'0'),(16230,133,0,1135,'/4/r/4r4f4f4.jpg'),(16231,206,0,1135,'67% cotton, 30% polyester, 3% elastane'),(16236,73,0,1136,'Khaki Straight Leg Jeans Cadiz-black-Medium size'),(16237,84,0,1136,'Khaki Straight Leg Jeans Cadiz'),(16238,86,0,1136,'Khaki Straight Leg Jeans Cadiz Cut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern:'),(16239,87,0,1136,'/4/r/4r4f4f4_1.jpg'),(16240,88,0,1136,'/4/r/4r4f4f4_1.jpg'),(16241,89,0,1136,'/4/r/4r4f4f4_1.jpg'),(16242,106,0,1136,'container2'),(16243,121,0,1136,'khaki-straight-leg-jeans-cadiz-black-medium-size'),(16244,132,0,1136,'0'),(16245,133,0,1136,'/4/r/4r4f4f4_1.jpg'),(16246,206,0,1136,'67% cotton, 30% polyester, 3% elastane'),(16251,73,0,1137,'Khaki Straight Leg Jeans Cadiz-black-Large size'),(16252,84,0,1137,'Khaki Straight Leg Jeans Cadiz'),(16253,86,0,1137,'Khaki Straight Leg Jeans Cadiz Cut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern:'),(16254,87,0,1137,'/4/r/4r4f4f4_2.jpg'),(16255,88,0,1137,'/4/r/4r4f4f4_2.jpg'),(16256,89,0,1137,'/4/r/4r4f4f4_2.jpg'),(16257,106,0,1137,'container2'),(16258,121,0,1137,'khaki-straight-leg-jeans-cadiz-black-large-size'),(16259,132,0,1137,'0'),(16260,133,0,1137,'/4/r/4r4f4f4_2.jpg'),(16261,206,0,1137,'67% cotton, 30% polyester, 3% elastane'),(16262,73,0,1138,'81 Hours Cashmere Pullover-Extra small size-black'),(16263,84,0,1138,'Lawrence Grey Rollneck Pullover'),(16264,86,0,1138,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(16265,87,0,1138,'/4/5/45t6y7uu.jpg'),(16266,88,0,1138,'/4/5/45t6y7uu.jpg'),(16267,89,0,1138,'/4/5/45t6y7uu.jpg'),(16268,106,0,1138,'container2'),(16269,121,0,1138,'81-hours-cashmere-pullover-extra-small-size-black'),(16270,132,0,1138,'0'),(16271,133,0,1138,'/4/5/45t6y7uu.jpg'),(16272,206,0,1138,' 100% cashmere'),(16277,73,0,1139,'81 Hours Cashmere Pullover-Small size-black'),(16278,84,0,1139,'Lawrence Grey Rollneck Pullover'),(16279,86,0,1139,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(16280,87,0,1139,'/4/5/45t6y7uu_1.jpg'),(16281,88,0,1139,'/4/5/45t6y7uu_1.jpg'),(16282,89,0,1139,'/4/5/45t6y7uu_1.jpg'),(16283,106,0,1139,'container2'),(16284,121,0,1139,'81-hours-cashmere-pullover-small-size-black'),(16285,132,0,1139,'0'),(16286,133,0,1139,'/4/5/45t6y7uu_1.jpg'),(16287,206,0,1139,' 100% cashmere'),(16292,73,0,1140,'81 Hours Cashmere Pullover-Medium size-black'),(16293,84,0,1140,'Lawrence Grey Rollneck Pullover'),(16294,86,0,1140,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(16295,87,0,1140,'/4/5/45t6y7uu_2.jpg'),(16296,88,0,1140,'/4/5/45t6y7uu_2.jpg'),(16297,89,0,1140,'/4/5/45t6y7uu_2.jpg'),(16298,106,0,1140,'container2'),(16299,121,0,1140,'81-hours-cashmere-pullover-medium-size-black'),(16300,132,0,1140,'0'),(16301,133,0,1140,'/4/5/45t6y7uu_2.jpg'),(16302,206,0,1140,' 100% cashmere'),(16307,87,0,502,'/i/m/image_31028523_81_970x1182_0_1_1.jpg'),(16308,88,0,502,'/i/m/image_31028523_81_970x1182_0_1_1.jpg'),(16309,89,0,502,'/i/m/image_31028523_81_970x1182_0_1_1.jpg'),(16310,133,0,502,'/i/m/image_31028523_81_970x1182_0_1_1.jpg'),(16315,87,0,501,'/i/m/image_31028523_81_970x1182_0_1_1_1.jpg'),(16316,88,0,501,'/i/m/image_31028523_81_970x1182_0_1_1_1.jpg'),(16317,89,0,501,'/i/m/image_31028523_81_970x1182_0_1_1_1.jpg'),(16318,133,0,501,'/i/m/image_31028523_81_970x1182_0_1_1_1.jpg'),(16323,87,0,503,'/i/m/image_31028523_81_970x1182_0_1_2.jpg'),(16324,88,0,503,'/i/m/image_31028523_81_970x1182_0_1_2.jpg'),(16325,89,0,503,'/i/m/image_31028523_81_970x1182_0_1_2.jpg'),(16326,133,0,503,'/i/m/image_31028523_81_970x1182_0_1_2.jpg'),(16335,73,0,1141,'Boyfriend Jeans-red-Extra small size'),(16336,84,0,1141,'Boyfriend Jeans'),(16337,86,0,1141,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qual'),(16338,87,0,1141,'/4/r/4r5t5t3e2w.jpg'),(16339,88,0,1141,'/4/r/4r5t5t3e2w.jpg'),(16340,89,0,1141,'/4/r/4r5t5t3e2w.jpg'),(16341,106,0,1141,'container2'),(16342,121,0,1141,'boyfriend-jeans-red-extra-small-size'),(16343,132,0,1141,'0'),(16344,133,0,1141,'/4/r/4r5t5t3e2w.jpg'),(16349,73,0,1142,'Boyfriend Jeans-red-Small size'),(16350,84,0,1142,'Boyfriend Jeans'),(16351,86,0,1142,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qual'),(16352,87,0,1142,'/4/r/4r5t5t3e2w_1.jpg'),(16353,88,0,1142,'/4/r/4r5t5t3e2w_1.jpg'),(16354,89,0,1142,'/4/r/4r5t5t3e2w_1.jpg'),(16355,106,0,1142,'container2'),(16356,121,0,1142,'boyfriend-jeans-red-small-size'),(16357,132,0,1142,'0'),(16358,133,0,1142,'/4/r/4r5t5t3e2w_1.jpg'),(16363,73,0,1143,'Boyfriend Jeans-red-Medium size'),(16364,84,0,1143,'Boyfriend Jeans'),(16365,86,0,1143,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qual'),(16366,87,0,1143,'/4/r/4r5t5t3e2w_2.jpg'),(16367,88,0,1143,'/4/r/4r5t5t3e2w_2.jpg'),(16368,89,0,1143,'/4/r/4r5t5t3e2w_2.jpg'),(16369,106,0,1143,'container2'),(16370,121,0,1143,'boyfriend-jeans-red-medium-size'),(16371,132,0,1143,'0'),(16372,133,0,1143,'/4/r/4r5t5t3e2w_2.jpg'),(16377,73,0,1144,'Boyfriend Jeans-red-Large size'),(16378,84,0,1144,'Boyfriend Jeans'),(16379,86,0,1144,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qual'),(16380,87,0,1144,'/4/r/4r5t5t3e2w_3.jpg'),(16381,88,0,1144,'/4/r/4r5t5t3e2w_3.jpg'),(16382,89,0,1144,'/4/r/4r5t5t3e2w_3.jpg'),(16383,106,0,1144,'container2'),(16384,121,0,1144,'boyfriend-jeans-red-large-size'),(16385,132,0,1144,'0'),(16386,133,0,1144,'/4/r/4r5t5t3e2w_3.jpg'),(16391,87,0,237,'/i/m/image_31202680_34_970x1182_0_1.jpg'),(16392,88,0,237,'/i/m/image_31202680_34_970x1182_0_1.jpg'),(16393,89,0,237,'/i/m/image_31202680_34_970x1182_0_1.jpg'),(16394,133,0,237,'/i/m/image_31202680_34_970x1182_0_1.jpg'),(16399,87,0,235,'/i/m/image_31202680_34_970x1182_0_1_1.jpg'),(16400,88,0,235,'/i/m/image_31202680_34_970x1182_0_1_1.jpg'),(16401,89,0,235,'/i/m/image_31202680_34_970x1182_0_1_1.jpg'),(16402,133,0,235,'/i/m/image_31202680_34_970x1182_0_1_1.jpg'),(16407,87,0,236,'/i/m/image_31202680_34_970x1182_0_2.jpg'),(16408,88,0,236,'/i/m/image_31202680_34_970x1182_0_2.jpg'),(16409,89,0,236,'/i/m/image_31202680_34_970x1182_0_2.jpg'),(16410,133,0,236,'/i/m/image_31202680_34_970x1182_0_2.jpg'),(16415,87,0,238,'/i/m/image_31202680_34_970x1182_0_3.jpg'),(16416,88,0,238,'/i/m/image_31202680_34_970x1182_0_3.jpg'),(16417,89,0,238,'/i/m/image_31202680_34_970x1182_0_3.jpg'),(16418,133,0,238,'/i/m/image_31202680_34_970x1182_0_3.jpg'),(16427,73,0,1145,'Brax Chuck Slim Fit-red-Extra small size'),(16428,84,0,1145,'Brax Chuck Slim Fit'),(16429,86,0,1145,'Brax Chuck Slim Fit '),(16430,87,0,1145,'/5/t/5ty77yuuu_3.jpg'),(16431,88,0,1145,'/5/t/5ty77yuuu_3.jpg'),(16432,89,0,1145,'/5/t/5ty77yuuu_3.jpg'),(16433,106,0,1145,'container2'),(16434,121,0,1145,'brax-chuck-slim-fit-red-extra-small-size'),(16435,132,0,1145,'0'),(16436,133,0,1145,'/5/t/5ty77yuuu_3.jpg'),(16437,206,0,1145,'Cotton'),(16442,73,0,1146,'Brax Chuck Slim Fit-red-Small size'),(16443,84,0,1146,'Brax Chuck Slim Fit'),(16444,86,0,1146,'Brax Chuck Slim Fit '),(16445,87,0,1146,'/5/t/5ty77yuuu_1_1.jpg'),(16446,88,0,1146,'/5/t/5ty77yuuu_1_1.jpg'),(16447,89,0,1146,'/5/t/5ty77yuuu_1_1.jpg'),(16448,106,0,1146,'container2'),(16449,121,0,1146,'brax-chuck-slim-fit-red-small-size'),(16450,132,0,1146,'0'),(16451,133,0,1146,'/5/t/5ty77yuuu_1_1.jpg'),(16452,206,0,1146,'Cotton'),(16457,73,0,1147,'Brax Chuck Slim Fit-red-Medium size'),(16458,84,0,1147,'Brax Chuck Slim Fit'),(16459,86,0,1147,'Brax Chuck Slim Fit '),(16460,87,0,1147,'/5/t/5ty77yuuu_2_1.jpg'),(16461,88,0,1147,'/5/t/5ty77yuuu_2_1.jpg'),(16462,89,0,1147,'/5/t/5ty77yuuu_2_1.jpg'),(16463,106,0,1147,'container2'),(16464,121,0,1147,'brax-chuck-slim-fit-red-medium-size'),(16465,132,0,1147,'0'),(16466,133,0,1147,'/5/t/5ty77yuuu_2_1.jpg'),(16467,206,0,1147,'Cotton'),(16472,87,0,158,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back_3.jpg'),(16473,88,0,158,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back_3.jpg'),(16474,89,0,158,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back_3.jpg'),(16475,133,0,158,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back_3.jpg'),(16480,87,0,157,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back_1.jpg'),(16481,88,0,157,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back_1.jpg'),(16482,89,0,157,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back_1.jpg'),(16483,133,0,157,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back_1.jpg'),(16488,87,0,159,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back_2_1.jpg'),(16489,88,0,159,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back_2_1.jpg'),(16490,89,0,159,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back_2_1.jpg'),(16491,133,0,159,'/b/r/brax_chuck_slim_fit_ice_cotton_jeans_in_cream_88-1257_back_2_1.jpg'),(16500,73,0,1148,'Business Trousers-brown-Extra small size'),(16501,84,0,1148,'Business Trousers'),(16502,86,0,1148,'Business Trousers '),(16503,87,0,1148,'/5/t/5t6ttt.jpg'),(16504,88,0,1148,'/5/t/5t6ttt.jpg'),(16505,89,0,1148,'/5/t/5t6ttt.jpg'),(16506,106,0,1148,'container2'),(16507,121,0,1148,'business-trousers-brown-extra-small-size'),(16508,132,0,1148,'0'),(16509,133,0,1148,'/5/t/5t6ttt.jpg'),(16510,206,0,1148,'96% virgin wool, 4% polyamide'),(16515,73,0,1149,'Business Trousers-brown-Small size'),(16516,84,0,1149,'Business Trousers'),(16517,86,0,1149,'Business Trousers '),(16518,87,0,1149,'/5/t/5t6ttt_1.jpg'),(16519,88,0,1149,'/5/t/5t6ttt_1.jpg'),(16520,89,0,1149,'/5/t/5t6ttt_1.jpg'),(16521,106,0,1149,'container2'),(16522,121,0,1149,'business-trousers-brown-small-size'),(16523,132,0,1149,'0'),(16524,133,0,1149,'/5/t/5t6ttt_1.jpg'),(16525,206,0,1149,'96% virgin wool, 4% polyamide'),(16530,73,0,1150,'Business Trousers-brown-Medium size'),(16531,84,0,1150,'Business Trousers'),(16532,86,0,1150,'Business Trousers '),(16533,87,0,1150,'/5/t/5t6ttt_2.jpg'),(16534,88,0,1150,'/5/t/5t6ttt_2.jpg'),(16535,89,0,1150,'/5/t/5t6ttt_2.jpg'),(16536,106,0,1150,'container2'),(16537,121,0,1150,'business-trousers-brown-medium-size'),(16538,132,0,1150,'0'),(16539,133,0,1150,'/5/t/5t6ttt_2.jpg'),(16540,206,0,1150,'96% virgin wool, 4% polyamide'),(16545,73,0,1151,'Business Trousers-brown-Large size'),(16546,84,0,1151,'Business Trousers'),(16547,86,0,1151,'Business Trousers '),(16548,87,0,1151,'/5/t/5t6ttt_3.jpg'),(16549,88,0,1151,'/5/t/5t6ttt_3.jpg'),(16550,89,0,1151,'/5/t/5t6ttt_3.jpg'),(16551,106,0,1151,'container2'),(16552,121,0,1151,'business-trousers-brown-large-size'),(16553,132,0,1151,'0'),(16554,133,0,1151,'/5/t/5t6ttt_3.jpg'),(16555,206,0,1151,'96% virgin wool, 4% polyamide'),(16560,87,0,167,'/i/m/image_30977108_10_970x1182_0_1_.jpg'),(16561,88,0,167,'/i/m/image_30977108_10_970x1182_0_1_.jpg'),(16562,89,0,167,'/i/m/image_30977108_10_970x1182_0_1_.jpg'),(16563,133,0,167,'/i/m/image_30977108_10_970x1182_0_1_.jpg'),(16568,87,0,168,'/i/m/image_30977108_10_970x1182_0_1__1.jpg'),(16569,88,0,168,'/i/m/image_30977108_10_970x1182_0_1__1.jpg'),(16570,89,0,168,'/i/m/image_30977108_10_970x1182_0_1__1.jpg'),(16571,133,0,168,'/i/m/image_30977108_10_970x1182_0_1__1.jpg'),(16576,87,0,169,'/i/m/image_30977108_10_970x1182_0_1__2.jpg'),(16577,88,0,169,'/i/m/image_30977108_10_970x1182_0_1__2.jpg'),(16578,89,0,169,'/i/m/image_30977108_10_970x1182_0_1__2.jpg'),(16579,133,0,169,'/i/m/image_30977108_10_970x1182_0_1__2.jpg'),(16584,87,0,166,'/i/m/image_30977108_10_970x1182_0_1__3.jpg'),(16585,88,0,166,'/i/m/image_30977108_10_970x1182_0_1__3.jpg'),(16586,89,0,166,'/i/m/image_30977108_10_970x1182_0_1__3.jpg'),(16587,133,0,166,'/i/m/image_30977108_10_970x1182_0_1__3.jpg'),(16596,73,0,1152,'Calvin Klein Jeans Down Jacket-black-Extra small size'),(16597,84,0,1152,'Seventy Transitional Jacket'),(16598,86,0,1152,'Seventy Transitional Jacket '),(16599,87,0,1152,'/6/y/6y6y7y7u7u7u.jpg'),(16600,88,0,1152,'/6/y/6y6y7y7u7u7u.jpg'),(16601,89,0,1152,'/6/y/6y6y7y7u7u7u.jpg'),(16602,106,0,1152,'container2'),(16603,121,0,1152,'calvin-klein-jeans-down-jacket-black-extra-small-size'),(16604,132,0,1152,'0'),(16605,133,0,1152,'/6/y/6y6y7y7u7u7u.jpg'),(16606,206,0,1152,'100% polyamide'),(16611,73,0,1153,'Calvin Klein Jeans Down Jacket-black-Small size'),(16612,84,0,1153,'Seventy Transitional Jacket'),(16613,86,0,1153,'Seventy Transitional Jacket '),(16614,87,0,1153,'/6/y/6y6y7y7u7u7u_1.jpg'),(16615,88,0,1153,'/6/y/6y6y7y7u7u7u_1.jpg'),(16616,89,0,1153,'/6/y/6y6y7y7u7u7u_1.jpg'),(16617,106,0,1153,'container2'),(16618,121,0,1153,'calvin-klein-jeans-down-jacket-black-small-size'),(16619,132,0,1153,'0'),(16620,133,0,1153,'/6/y/6y6y7y7u7u7u_1.jpg'),(16621,206,0,1153,'100% polyamide'),(16626,73,0,1154,'Calvin Klein Jeans Down Jacket-black-Medium size'),(16627,84,0,1154,'Seventy Transitional Jacket'),(16628,86,0,1154,'Seventy Transitional Jacket '),(16629,87,0,1154,'/6/y/6y6y7y7u7u7u_2.jpg'),(16630,88,0,1154,'/6/y/6y6y7y7u7u7u_2.jpg'),(16631,89,0,1154,'/6/y/6y6y7y7u7u7u_2.jpg'),(16632,106,0,1154,'container2'),(16633,121,0,1154,'calvin-klein-jeans-down-jacket-black-medium-size'),(16634,132,0,1154,'0'),(16635,133,0,1154,'/6/y/6y6y7y7u7u7u_2.jpg'),(16636,206,0,1154,'100% polyamide'),(16641,73,0,1155,'Calvin Klein Jeans Down Jacket-black-Large size'),(16642,84,0,1155,'Seventy Transitional Jacket'),(16643,86,0,1155,'Seventy Transitional Jacket '),(16644,87,0,1155,'/6/y/6y6y7y7u7u7u_3.jpg'),(16645,88,0,1155,'/6/y/6y6y7y7u7u7u_3.jpg'),(16646,89,0,1155,'/6/y/6y6y7y7u7u7u_3.jpg'),(16647,106,0,1155,'container2'),(16648,121,0,1155,'calvin-klein-jeans-down-jacket-black-large-size'),(16649,132,0,1155,'0'),(16650,133,0,1155,'/6/y/6y6y7y7u7u7u_3.jpg'),(16651,206,0,1155,'100% polyamide'),(16656,87,0,355,'/i/m/image_31291013_25_970x1182_0_1.jpg'),(16657,88,0,355,'/i/m/image_31291013_25_970x1182_0_1.jpg'),(16658,89,0,355,'/i/m/image_31291013_25_970x1182_0_1.jpg'),(16659,133,0,355,'/i/m/image_31291013_25_970x1182_0_1.jpg'),(16664,87,0,354,'/i/m/image_31291013_25_970x1182_0_1_1.jpg'),(16665,88,0,354,'/i/m/image_31291013_25_970x1182_0_1_1.jpg'),(16666,89,0,354,'/i/m/image_31291013_25_970x1182_0_1_1.jpg'),(16667,133,0,354,'/i/m/image_31291013_25_970x1182_0_1_1.jpg'),(16672,87,0,357,'/i/m/image_31291013_25_970x1182_0_2.jpg'),(16673,88,0,357,'/i/m/image_31291013_25_970x1182_0_2.jpg'),(16674,89,0,357,'/i/m/image_31291013_25_970x1182_0_2.jpg'),(16675,133,0,357,'/i/m/image_31291013_25_970x1182_0_2.jpg'),(16680,87,0,356,'/i/m/image_31291013_25_970x1182_0_3.jpg'),(16681,88,0,356,'/i/m/image_31291013_25_970x1182_0_3.jpg'),(16682,89,0,356,'/i/m/image_31291013_25_970x1182_0_3.jpg'),(16683,133,0,356,'/i/m/image_31291013_25_970x1182_0_3.jpg'),(16692,73,0,1156,'Casual Trousers-blue-Extra small size'),(16693,84,0,1156,'Casual Trousers'),(16694,86,0,1156,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool'),(16695,87,0,1156,'/4/5/456tyu.jpg'),(16696,88,0,1156,'/4/5/456tyu.jpg'),(16697,89,0,1156,'/4/5/456tyu.jpg'),(16698,106,0,1156,'container2'),(16699,121,0,1156,'casual-trousers-blue-extra-small-size'),(16700,132,0,1156,'0'),(16701,133,0,1156,'/4/5/456tyu.jpg'),(16702,206,0,1156,'65% polyester, 32% viscose, 3% elastane'),(16707,73,0,1157,'Casual Trousers-blue-Small size'),(16708,84,0,1157,'Casual Trousers'),(16709,86,0,1157,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool'),(16710,87,0,1157,'/4/5/456tyu_1.jpg'),(16711,88,0,1157,'/4/5/456tyu_1.jpg'),(16712,89,0,1157,'/4/5/456tyu_1.jpg'),(16713,106,0,1157,'container2'),(16714,121,0,1157,'casual-trousers-blue-small-size'),(16715,132,0,1157,'0'),(16716,133,0,1157,'/4/5/456tyu_1.jpg'),(16717,206,0,1157,'65% polyester, 32% viscose, 3% elastane'),(16722,73,0,1158,'Casual Trousers-blue-Medium size'),(16723,84,0,1158,'Casual Trousers'),(16724,86,0,1158,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool'),(16725,87,0,1158,'/4/5/456tyu_2.jpg'),(16726,88,0,1158,'/4/5/456tyu_2.jpg'),(16727,89,0,1158,'/4/5/456tyu_2.jpg'),(16728,106,0,1158,'container2'),(16729,121,0,1158,'casual-trousers-blue-medium-size'),(16730,132,0,1158,'0'),(16731,133,0,1158,'/4/5/456tyu_2.jpg'),(16732,206,0,1158,'65% polyester, 32% viscose, 3% elastane'),(16737,73,0,1159,'Casual Trousers-blue-Large size'),(16738,84,0,1159,'Casual Trousers'),(16739,86,0,1159,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool'),(16740,87,0,1159,'/4/5/456tyu_3.jpg'),(16741,88,0,1159,'/4/5/456tyu_3.jpg'),(16742,89,0,1159,'/4/5/456tyu_3.jpg'),(16743,106,0,1159,'container2'),(16744,121,0,1159,'casual-trousers-blue-large-size'),(16745,132,0,1159,'0'),(16746,133,0,1159,'/4/5/456tyu_3.jpg'),(16747,206,0,1159,'65% polyester, 32% viscose, 3% elastane'),(16752,87,0,186,'/i/m/image_31340162_80_970x1182_0_1.jpg'),(16753,88,0,186,'/i/m/image_31340162_80_970x1182_0_1.jpg'),(16754,89,0,186,'/i/m/image_31340162_80_970x1182_0_1.jpg'),(16755,133,0,186,'/i/m/image_31340162_80_970x1182_0_1.jpg'),(16760,87,0,187,'/i/m/image_31340162_80_970x1182_0_1_1.jpg'),(16761,88,0,187,'/i/m/image_31340162_80_970x1182_0_1_1.jpg'),(16762,89,0,187,'/i/m/image_31340162_80_970x1182_0_1_1.jpg'),(16763,133,0,187,'/i/m/image_31340162_80_970x1182_0_1_1.jpg'),(16768,87,0,188,'/i/m/image_31340162_80_970x1182_0_2.jpg'),(16769,88,0,188,'/i/m/image_31340162_80_970x1182_0_2.jpg'),(16770,89,0,188,'/i/m/image_31340162_80_970x1182_0_2.jpg'),(16771,133,0,188,'/i/m/image_31340162_80_970x1182_0_2.jpg'),(16776,87,0,189,'/i/m/image_31340162_80_970x1182_0_3.jpg'),(16777,88,0,189,'/i/m/image_31340162_80_970x1182_0_3.jpg'),(16778,89,0,189,'/i/m/image_31340162_80_970x1182_0_3.jpg'),(16779,133,0,189,'/i/m/image_31340162_80_970x1182_0_3.jpg'),(16788,73,0,1160,'Chiffon Dress -brown-Small size'),(16789,84,0,1160,'Sequin Dress'),(16790,86,0,1160,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(16791,87,0,1160,'/2/w/2w3e4rrr_4.jpg'),(16792,88,0,1160,'/2/w/2w3e4rrr_4.jpg'),(16793,89,0,1160,'/2/w/2w3e4rrr_4.jpg'),(16794,106,0,1160,'container2'),(16795,121,0,1160,'chiffon-dress-brown-small-size'),(16796,132,0,1160,'0'),(16797,133,0,1160,'/2/w/2w3e4rrr_4.jpg'),(16798,206,0,1160,'60% cotton, 40% polyamide'),(16803,73,0,1161,'Chiffon Dress -brown-Medium size'),(16804,84,0,1161,'Sequin Dress'),(16805,86,0,1161,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(16806,87,0,1161,'/2/w/2w3e4rrr_1_1.jpg'),(16807,88,0,1161,'/2/w/2w3e4rrr_1_1.jpg'),(16808,89,0,1161,'/2/w/2w3e4rrr_1_1.jpg'),(16809,106,0,1161,'container2'),(16810,121,0,1161,'chiffon-dress-brown-medium-size'),(16811,132,0,1161,'0'),(16812,133,0,1161,'/2/w/2w3e4rrr_1_1.jpg'),(16813,206,0,1161,'60% cotton, 40% polyamide'),(16818,87,0,542,'/i/m/image_31305260_80_620x757_0_1.jpg'),(16819,88,0,542,'/i/m/image_31305260_80_620x757_0_1.jpg'),(16820,89,0,542,'/i/m/image_31305260_80_620x757_0_1.jpg'),(16821,133,0,542,'/i/m/image_31305260_80_620x757_0_1.jpg'),(16826,87,0,543,'/i/m/image_31305260_80_620x757_0_1_1.jpg'),(16827,88,0,543,'/i/m/image_31305260_80_620x757_0_1_1.jpg'),(16828,89,0,543,'/i/m/image_31305260_80_620x757_0_1_1.jpg'),(16829,133,0,543,'/i/m/image_31305260_80_620x757_0_1_1.jpg'),(16838,73,0,1162,'Chino-grey-Extra small size'),(16839,84,0,1162,'Chino'),(16840,86,0,1162,'Chino '),(16841,87,0,1162,'/4/r/4r5ew2333.jpg'),(16842,88,0,1162,'/4/r/4r5ew2333.jpg'),(16843,89,0,1162,'/4/r/4r5ew2333.jpg'),(16844,106,0,1162,'container2'),(16845,121,0,1162,'chino-grey-extra-small-size'),(16846,132,0,1162,'0'),(16847,133,0,1162,'/4/r/4r5ew2333.jpg'),(16848,206,0,1162,'100% cotton'),(16853,73,0,1163,'Chino-grey-Small size'),(16854,84,0,1163,'Chino'),(16855,86,0,1163,'Chino '),(16856,87,0,1163,'/4/r/4r5ew2333_1.jpg'),(16857,88,0,1163,'/4/r/4r5ew2333_1.jpg'),(16858,89,0,1163,'/4/r/4r5ew2333_1.jpg'),(16859,106,0,1163,'container2'),(16860,121,0,1163,'chino-grey-small-size'),(16861,132,0,1163,'0'),(16862,133,0,1163,'/4/r/4r5ew2333_1.jpg'),(16863,206,0,1163,'100% cotton'),(16868,87,0,170,'/i/m/image_31240220_10_970x1182_0_1.jpg'),(16869,88,0,170,'/i/m/image_31240220_10_970x1182_0_1.jpg'),(16870,89,0,170,'/i/m/image_31240220_10_970x1182_0_1.jpg'),(16871,133,0,170,'/i/m/image_31240220_10_970x1182_0_1.jpg'),(16876,87,0,171,'/i/m/image_31240220_10_970x1182_0_1_1.jpg'),(16877,88,0,171,'/i/m/image_31240220_10_970x1182_0_1_1.jpg'),(16878,89,0,171,'/i/m/image_31240220_10_970x1182_0_1_1.jpg'),(16879,133,0,171,'/i/m/image_31240220_10_970x1182_0_1_1.jpg'),(16888,73,0,1164,'Cocktail Dress-red-Extra small size'),(16889,84,0,1164,'Sequin Dress'),(16890,86,0,1164,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(16891,87,0,1164,'/1/2/123344e.jpg'),(16892,88,0,1164,'/1/2/123344e.jpg'),(16893,89,0,1164,'/1/2/123344e.jpg'),(16894,106,0,1164,'container2'),(16895,121,0,1164,'cocktail-dress-red-extra-small-size'),(16896,132,0,1164,'0'),(16897,133,0,1164,'/1/2/123344e.jpg'),(16898,206,0,1164,' 100% polyeste'),(16903,73,0,1165,'Cocktail Dress-red-Small size'),(16904,84,0,1165,'Sequin Dress'),(16905,86,0,1165,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(16906,87,0,1165,'/1/2/123344e_1.jpg'),(16907,88,0,1165,'/1/2/123344e_1.jpg'),(16908,89,0,1165,'/1/2/123344e_1.jpg'),(16909,106,0,1165,'container2'),(16910,121,0,1165,'cocktail-dress-red-small-size'),(16911,132,0,1165,'0'),(16912,133,0,1165,'/1/2/123344e_1.jpg'),(16913,206,0,1165,' 100% polyeste'),(16918,73,0,1166,'Cocktail Dress-red-Medium size'),(16919,84,0,1166,'Sequin Dress'),(16920,86,0,1166,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(16921,87,0,1166,'/1/2/123344e_2.jpg'),(16922,88,0,1166,'/1/2/123344e_2.jpg'),(16923,89,0,1166,'/1/2/123344e_2.jpg'),(16924,106,0,1166,'container2'),(16925,121,0,1166,'cocktail-dress-red-medium-size'),(16926,132,0,1166,'0'),(16927,133,0,1166,'/1/2/123344e_2.jpg'),(16928,206,0,1166,' 100% polyeste'),(16933,87,0,535,'/i/m/image_31350783_66_620x757_0_1_1.jpg'),(16934,88,0,535,'/i/m/image_31350783_66_620x757_0_1_1.jpg'),(16935,89,0,535,'/i/m/image_31350783_66_620x757_0_1_1.jpg'),(16936,133,0,535,'/i/m/image_31350783_66_620x757_0_1_1.jpg'),(16941,87,0,536,'/i/m/image_31350783_66_620x757_0_1_1_1.jpg'),(16942,88,0,536,'/i/m/image_31350783_66_620x757_0_1_1_1.jpg'),(16943,89,0,536,'/i/m/image_31350783_66_620x757_0_1_1_1.jpg'),(16944,133,0,536,'/i/m/image_31350783_66_620x757_0_1_1_1.jpg'),(16949,87,0,537,'/i/m/image_31350783_66_620x757_0_1_2.jpg'),(16950,88,0,537,'/i/m/image_31350783_66_620x757_0_1_2.jpg'),(16951,89,0,537,'/i/m/image_31350783_66_620x757_0_1_2.jpg'),(16952,133,0,537,'/i/m/image_31350783_66_620x757_0_1_2.jpg'),(16961,73,0,1167,'Colmar Soft Down Jacket-blue-Extra small size'),(16962,84,0,1167,'Seventy Transitional Jacket'),(16963,86,0,1167,'Seventy Transitional Jacket '),(16964,87,0,1167,'/q/w/qw3333.jpg'),(16965,88,0,1167,'/q/w/qw3333.jpg'),(16966,89,0,1167,'/q/w/qw3333.jpg'),(16967,106,0,1167,'container2'),(16968,121,0,1167,'colmar-soft-down-jacket-blue-extra-small-size'),(16969,132,0,1167,'0'),(16970,133,0,1167,'/q/w/qw3333.jpg'),(16971,206,0,1167,'100% polyamide'),(16976,73,0,1168,'Colmar Soft Down Jacket-blue-Small size'),(16977,84,0,1168,'Seventy Transitional Jacket'),(16978,86,0,1168,'Seventy Transitional Jacket '),(16979,87,0,1168,'/q/w/qw3333_1.jpg'),(16980,88,0,1168,'/q/w/qw3333_1.jpg'),(16981,89,0,1168,'/q/w/qw3333_1.jpg'),(16982,106,0,1168,'container2'),(16983,121,0,1168,'colmar-soft-down-jacket-blue-small-size'),(16984,132,0,1168,'0'),(16985,133,0,1168,'/q/w/qw3333_1.jpg'),(16986,206,0,1168,'100% polyamide'),(16991,73,0,1169,'Colmar Soft Down Jacket-blue-Medium size'),(16992,84,0,1169,'Seventy Transitional Jacket'),(16993,86,0,1169,'Seventy Transitional Jacket '),(16994,87,0,1169,'/q/w/qw3333_2.jpg'),(16995,88,0,1169,'/q/w/qw3333_2.jpg'),(16996,89,0,1169,'/q/w/qw3333_2.jpg'),(16997,106,0,1169,'container2'),(16998,121,0,1169,'colmar-soft-down-jacket-blue-medium-size'),(16999,132,0,1169,'0'),(17000,133,0,1169,'/q/w/qw3333_2.jpg'),(17001,206,0,1169,'100% polyamide'),(17006,73,0,1170,'Colmar Soft Down Jacket-blue-Large size'),(17007,84,0,1170,'Seventy Transitional Jacket'),(17008,86,0,1170,'Seventy Transitional Jacket '),(17009,87,0,1170,'/q/w/qw3333_3.jpg'),(17010,88,0,1170,'/q/w/qw3333_3.jpg'),(17011,89,0,1170,'/q/w/qw3333_3.jpg'),(17012,106,0,1170,'container2'),(17013,121,0,1170,'colmar-soft-down-jacket-blue-large-size'),(17014,132,0,1170,'0'),(17015,133,0,1170,'/q/w/qw3333_3.jpg'),(17016,206,0,1170,'100% polyamide'),(17021,87,0,366,'/i/m/image_31319864_25_970x1182_0_1.jpg'),(17022,88,0,366,'/i/m/image_31319864_25_970x1182_0_1.jpg'),(17023,89,0,366,'/i/m/image_31319864_25_970x1182_0_1.jpg'),(17024,133,0,366,'/i/m/image_31319864_25_970x1182_0_1.jpg'),(17029,87,0,364,'/i/m/image_31319864_25_970x1182_0_1_1.jpg'),(17030,88,0,364,'/i/m/image_31319864_25_970x1182_0_1_1.jpg'),(17031,89,0,364,'/i/m/image_31319864_25_970x1182_0_1_1.jpg'),(17032,133,0,364,'/i/m/image_31319864_25_970x1182_0_1_1.jpg'),(17037,87,0,365,'/i/m/image_31319864_25_970x1182_0_2.jpg'),(17038,88,0,365,'/i/m/image_31319864_25_970x1182_0_2.jpg'),(17039,89,0,365,'/i/m/image_31319864_25_970x1182_0_2.jpg'),(17040,133,0,365,'/i/m/image_31319864_25_970x1182_0_2.jpg'),(17045,87,0,367,'/i/m/image_31319864_25_970x1182_0_3.jpg'),(17046,88,0,367,'/i/m/image_31319864_25_970x1182_0_3.jpg'),(17047,89,0,367,'/i/m/image_31319864_25_970x1182_0_3.jpg'),(17048,133,0,367,'/i/m/image_31319864_25_970x1182_0_3.jpg'),(17057,73,0,1171,'Comma Casual Identity Quilted Jacket-white-Extra small size'),(17058,84,0,1171,'Seventy Transitional Jacket'),(17059,86,0,1171,'Seventy Transitional Jacket '),(17060,87,0,1171,'/2/3/2343e4e4e.jpg'),(17061,88,0,1171,'/2/3/2343e4e4e.jpg'),(17062,89,0,1171,'/2/3/2343e4e4e.jpg'),(17063,106,0,1171,'container2'),(17064,121,0,1171,'comma-casual-identity-quilted-jacket-white-extra-small-size'),(17065,132,0,1171,'0'),(17066,133,0,1171,'/2/3/2343e4e4e.jpg'),(17067,206,0,1171,' 68% cotton, 32% polyamide'),(17072,73,0,1172,'Comma Casual Identity Quilted Jacket-white-Small size'),(17073,84,0,1172,'Seventy Transitional Jacket'),(17074,86,0,1172,'Seventy Transitional Jacket '),(17075,87,0,1172,'/2/3/2343e4e4e_1.jpg'),(17076,88,0,1172,'/2/3/2343e4e4e_1.jpg'),(17077,89,0,1172,'/2/3/2343e4e4e_1.jpg'),(17078,106,0,1172,'container2'),(17079,121,0,1172,'comma-casual-identity-quilted-jacket-white-small-size'),(17080,132,0,1172,'0'),(17081,133,0,1172,'/2/3/2343e4e4e_1.jpg'),(17082,206,0,1172,' 68% cotton, 32% polyamide'),(17087,73,0,1173,'Comma Casual Identity Quilted Jacket-white-Medium size'),(17088,84,0,1173,'Seventy Transitional Jacket'),(17089,86,0,1173,'Seventy Transitional Jacket '),(17090,87,0,1173,'/2/3/2343e4e4e_2.jpg'),(17091,88,0,1173,'/2/3/2343e4e4e_2.jpg'),(17092,89,0,1173,'/2/3/2343e4e4e_2.jpg'),(17093,106,0,1173,'container2'),(17094,121,0,1173,'comma-casual-identity-quilted-jacket-white-medium-size'),(17095,132,0,1173,'0'),(17096,133,0,1173,'/2/3/2343e4e4e_2.jpg'),(17097,206,0,1173,' 68% cotton, 32% polyamide'),(17102,73,0,1174,'Comma Casual Identity Quilted Jacket-white-Extra large size'),(17103,84,0,1174,'Seventy Transitional Jacket'),(17104,86,0,1174,'Seventy Transitional Jacket '),(17105,87,0,1174,'/2/3/2343e4e4e_3.jpg'),(17106,88,0,1174,'/2/3/2343e4e4e_3.jpg'),(17107,89,0,1174,'/2/3/2343e4e4e_3.jpg'),(17108,106,0,1174,'container2'),(17109,121,0,1174,'comma-casual-identity-quilted-jacket-white-extra-large-size'),(17110,132,0,1174,'0'),(17111,133,0,1174,'/2/3/2343e4e4e_3.jpg'),(17112,206,0,1174,' 68% cotton, 32% polyamide'),(17117,87,0,398,'/i/m/image_31239294_22_970x1182_0_1.jpg'),(17118,88,0,398,'/i/m/image_31239294_22_970x1182_0_1.jpg'),(17119,89,0,398,'/i/m/image_31239294_22_970x1182_0_1.jpg'),(17120,133,0,398,'/i/m/image_31239294_22_970x1182_0_1.jpg'),(17125,87,0,397,'/i/m/image_31239294_22_970x1182_0_1_1.jpg'),(17126,88,0,397,'/i/m/image_31239294_22_970x1182_0_1_1.jpg'),(17127,89,0,397,'/i/m/image_31239294_22_970x1182_0_1_1.jpg'),(17128,133,0,397,'/i/m/image_31239294_22_970x1182_0_1_1.jpg'),(17133,87,0,400,'/i/m/image_31239294_22_970x1182_0_2.jpg'),(17134,88,0,400,'/i/m/image_31239294_22_970x1182_0_2.jpg'),(17135,89,0,400,'/i/m/image_31239294_22_970x1182_0_2.jpg'),(17136,133,0,400,'/i/m/image_31239294_22_970x1182_0_2.jpg'),(17141,87,0,399,'/i/m/image_31239294_22_970x1182_0_3.jpg'),(17142,88,0,399,'/i/m/image_31239294_22_970x1182_0_3.jpg'),(17143,89,0,399,'/i/m/image_31239294_22_970x1182_0_3.jpg'),(17144,133,0,399,'/i/m/image_31239294_22_970x1182_0_3.jpg'),(17153,73,0,1175,'Cotton-Stretch Tapered Pants-blue-Extra small size'),(17154,84,0,1175,'Cotton-Stretch Tapered Pants'),(17155,86,0,1175,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sEx'),(17156,87,0,1175,'/5/4/54rr5.jpg'),(17157,88,0,1175,'/5/4/54rr5.jpg'),(17158,89,0,1175,'/5/4/54rr5.jpg'),(17159,106,0,1175,'container2'),(17160,121,0,1175,'cotton-stretch-tapered-pants-blue-extra-small-size'),(17161,132,0,1175,'0'),(17162,133,0,1175,'/5/4/54rr5.jpg'),(17163,206,0,1175,'98% cotton, 2% elastane'),(17168,73,0,1176,'Cotton-Stretch Tapered Pants-blue-Small size'),(17169,84,0,1176,'Cotton-Stretch Tapered Pants'),(17170,86,0,1176,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sEx'),(17171,87,0,1176,'/5/4/54rr5_1.jpg'),(17172,88,0,1176,'/5/4/54rr5_1.jpg'),(17173,89,0,1176,'/5/4/54rr5_1.jpg'),(17174,106,0,1176,'container2'),(17175,121,0,1176,'cotton-stretch-tapered-pants-blue-small-size'),(17176,132,0,1176,'0'),(17177,133,0,1176,'/5/4/54rr5_1.jpg'),(17178,206,0,1176,'98% cotton, 2% elastane'),(17183,73,0,1177,'Cotton-Stretch Tapered Pants-blue-Medium size'),(17184,84,0,1177,'Cotton-Stretch Tapered Pants'),(17185,86,0,1177,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sEx'),(17186,87,0,1177,'/5/4/54rr5_2.jpg'),(17187,88,0,1177,'/5/4/54rr5_2.jpg'),(17188,89,0,1177,'/5/4/54rr5_2.jpg'),(17189,106,0,1177,'container2'),(17190,121,0,1177,'cotton-stretch-tapered-pants-blue-medium-size'),(17191,132,0,1177,'0'),(17192,133,0,1177,'/5/4/54rr5_2.jpg'),(17193,206,0,1177,'98% cotton, 2% elastane'),(17198,73,0,1178,'Cotton-Stretch Tapered Pants-blue-Large size'),(17199,84,0,1178,'Cotton-Stretch Tapered Pants'),(17200,86,0,1178,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sEx'),(17201,87,0,1178,'/5/4/54rr5_3.jpg'),(17202,88,0,1178,'/5/4/54rr5_3.jpg'),(17203,89,0,1178,'/5/4/54rr5_3.jpg'),(17204,106,0,1178,'container2'),(17205,121,0,1178,'cotton-stretch-tapered-pants-blue-large-size'),(17206,132,0,1178,'0'),(17207,133,0,1178,'/5/4/54rr5_3.jpg'),(17208,206,0,1178,'98% cotton, 2% elastane'),(17213,73,0,1179,'Cotton-Stretch Tapered Pants-blue-Extra large size'),(17214,84,0,1179,'Cotton-Stretch Tapered Pants'),(17215,86,0,1179,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sEx'),(17216,87,0,1179,'/5/4/54rr5_4.jpg'),(17217,88,0,1179,'/5/4/54rr5_4.jpg'),(17218,89,0,1179,'/5/4/54rr5_4.jpg'),(17219,106,0,1179,'container2'),(17220,121,0,1179,'cotton-stretch-tapered-pants-blue-extra-large-size'),(17221,132,0,1179,'0'),(17222,133,0,1179,'/5/4/54rr5_4.jpg'),(17223,206,0,1179,'98% cotton, 2% elastane'),(17228,87,0,218,'/i/m/image_30977037_25_970x1182_0_1_.jpg'),(17229,88,0,218,'/i/m/image_30977037_25_970x1182_0_1_.jpg'),(17230,89,0,218,'/i/m/image_30977037_25_970x1182_0_1_.jpg'),(17231,133,0,218,'/i/m/image_30977037_25_970x1182_0_1_.jpg'),(17236,87,0,219,'/i/m/image_30977037_25_970x1182_0_1__1.jpg'),(17237,88,0,219,'/i/m/image_30977037_25_970x1182_0_1__1.jpg'),(17238,89,0,219,'/i/m/image_30977037_25_970x1182_0_1__1.jpg'),(17239,133,0,219,'/i/m/image_30977037_25_970x1182_0_1__1.jpg'),(17244,87,0,220,'/i/m/image_30977037_25_970x1182_0_1__2.jpg'),(17245,88,0,220,'/i/m/image_30977037_25_970x1182_0_1__2.jpg'),(17246,89,0,220,'/i/m/image_30977037_25_970x1182_0_1__2.jpg'),(17247,133,0,220,'/i/m/image_30977037_25_970x1182_0_1__2.jpg'),(17252,87,0,217,'/i/m/image_30977037_25_970x1182_0_1__3.jpg'),(17253,88,0,217,'/i/m/image_30977037_25_970x1182_0_1__3.jpg'),(17254,89,0,217,'/i/m/image_30977037_25_970x1182_0_1__3.jpg'),(17255,133,0,217,'/i/m/image_30977037_25_970x1182_0_1__3.jpg'),(17260,87,0,221,'/i/m/image_30977037_25_970x1182_0_1__4.jpg'),(17261,88,0,221,'/i/m/image_30977037_25_970x1182_0_1__4.jpg'),(17262,89,0,221,'/i/m/image_30977037_25_970x1182_0_1__4.jpg'),(17263,133,0,221,'/i/m/image_30977037_25_970x1182_0_1__4.jpg'),(17264,87,0,504,'/i/m/image_31218012_21_970x1182_0_1.jpg'),(17265,88,0,504,'/i/m/image_31218012_21_970x1182_0_1.jpg'),(17266,89,0,504,'/i/m/image_31218012_21_970x1182_0_1.jpg'),(17267,133,0,504,'/i/m/image_31218012_21_970x1182_0_1.jpg'),(17272,87,0,505,'/i/m/image_31218012_21_970x1182_0_1_1.jpg'),(17273,88,0,505,'/i/m/image_31218012_21_970x1182_0_1_1.jpg'),(17274,89,0,505,'/i/m/image_31218012_21_970x1182_0_1_1.jpg'),(17275,133,0,505,'/i/m/image_31218012_21_970x1182_0_1_1.jpg'),(17280,87,0,506,'/i/m/image_31218012_21_970x1182_0_2.jpg'),(17281,88,0,506,'/i/m/image_31218012_21_970x1182_0_2.jpg'),(17282,89,0,506,'/i/m/image_31218012_21_970x1182_0_2.jpg'),(17283,133,0,506,'/i/m/image_31218012_21_970x1182_0_2.jpg'),(17288,87,0,507,'/4/5/454r5t5t.jpg'),(17289,88,0,507,'/4/5/454r5t5t.jpg'),(17290,89,0,507,'/4/5/454r5t5t.jpg'),(17291,133,0,507,'/4/5/454r5t5t.jpg'),(17296,87,0,508,'/4/5/454r5t5t_1.jpg'),(17297,88,0,508,'/4/5/454r5t5t_1.jpg'),(17298,89,0,508,'/4/5/454r5t5t_1.jpg'),(17299,133,0,508,'/4/5/454r5t5t_1.jpg'),(17304,87,0,509,'/4/5/454r5t5t_2.jpg'),(17305,88,0,509,'/4/5/454r5t5t_2.jpg'),(17306,89,0,509,'/4/5/454r5t5t_2.jpg'),(17307,133,0,509,'/4/5/454r5t5t_2.jpg'),(17316,73,0,1180,'Dolomite Quilted Jacket-blue-Extra small size'),(17317,84,0,1180,'Seventy Transitional Jacket'),(17318,86,0,1180,'Seventy Transitional Jacket '),(17319,87,0,1180,'/4/3/43e555rtr.jpg'),(17320,88,0,1180,'/4/3/43e555rtr.jpg'),(17321,89,0,1180,'/4/3/43e555rtr.jpg'),(17322,106,0,1180,'container2'),(17323,121,0,1180,'dolomite-quilted-jacket-blue-extra-small-size'),(17324,132,0,1180,'0'),(17325,133,0,1180,'/4/3/43e555rtr.jpg'),(17326,206,0,1180,'100% polyamide'),(17331,73,0,1181,'Dolomite Quilted Jacket-blue-Small size'),(17332,84,0,1181,'Seventy Transitional Jacket'),(17333,86,0,1181,'Seventy Transitional Jacket '),(17334,87,0,1181,'/4/3/43e555rtr_1.jpg'),(17335,88,0,1181,'/4/3/43e555rtr_1.jpg'),(17336,89,0,1181,'/4/3/43e555rtr_1.jpg'),(17337,106,0,1181,'container2'),(17338,121,0,1181,'dolomite-quilted-jacket-blue-small-size'),(17339,132,0,1181,'0'),(17340,133,0,1181,'/4/3/43e555rtr_1.jpg'),(17341,206,0,1181,'100% polyamide'),(17346,73,0,1182,'Dolomite Quilted Jacket-blue-Medium size'),(17347,84,0,1182,'Seventy Transitional Jacket'),(17348,86,0,1182,'Seventy Transitional Jacket '),(17349,87,0,1182,'/4/3/43e555rtr_2.jpg'),(17350,88,0,1182,'/4/3/43e555rtr_2.jpg'),(17351,89,0,1182,'/4/3/43e555rtr_2.jpg'),(17352,106,0,1182,'container2'),(17353,121,0,1182,'dolomite-quilted-jacket-blue-medium-size'),(17354,132,0,1182,'0'),(17355,133,0,1182,'/4/3/43e555rtr_2.jpg'),(17356,206,0,1182,'100% polyamide'),(17361,73,0,1183,'Dolomite Quilted Jacket-blue-Large size'),(17362,84,0,1183,'Seventy Transitional Jacket'),(17363,86,0,1183,'Seventy Transitional Jacket '),(17364,87,0,1183,'/4/3/43e555rtr_3.jpg'),(17365,88,0,1183,'/4/3/43e555rtr_3.jpg'),(17366,89,0,1183,'/4/3/43e555rtr_3.jpg'),(17367,106,0,1183,'container2'),(17368,121,0,1183,'dolomite-quilted-jacket-blue-large-size'),(17369,132,0,1183,'0'),(17370,133,0,1183,'/4/3/43e555rtr_3.jpg'),(17371,206,0,1183,'100% polyamide'),(17376,87,0,334,'/i/m/image_31266871_25_970x1182_0_1.jpg'),(17377,88,0,334,'/i/m/image_31266871_25_970x1182_0_1.jpg'),(17378,89,0,334,'/i/m/image_31266871_25_970x1182_0_1.jpg'),(17379,133,0,334,'/i/m/image_31266871_25_970x1182_0_1.jpg'),(17384,87,0,335,'/i/m/image_31266871_25_970x1182_0_1_1.jpg'),(17385,88,0,335,'/i/m/image_31266871_25_970x1182_0_1_1.jpg'),(17386,89,0,335,'/i/m/image_31266871_25_970x1182_0_1_1.jpg'),(17387,133,0,335,'/i/m/image_31266871_25_970x1182_0_1_1.jpg'),(17392,87,0,336,'/i/m/image_31266871_25_970x1182_0_2.jpg'),(17393,88,0,336,'/i/m/image_31266871_25_970x1182_0_2.jpg'),(17394,89,0,336,'/i/m/image_31266871_25_970x1182_0_2.jpg'),(17395,133,0,336,'/i/m/image_31266871_25_970x1182_0_2.jpg'),(17400,87,0,337,'/i/m/image_31266871_25_970x1182_0_3.jpg'),(17401,88,0,337,'/i/m/image_31266871_25_970x1182_0_3.jpg'),(17402,89,0,337,'/i/m/image_31266871_25_970x1182_0_3.jpg'),(17403,133,0,337,'/i/m/image_31266871_25_970x1182_0_3.jpg'),(17412,73,0,1184,'Dress Trousers-red-Small size'),(17413,84,0,1184,'Dress Trousers'),(17414,86,0,1184,'Dress Trousers Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, cr'),(17415,87,0,1184,'/2/3/2345454.jpg'),(17416,88,0,1184,'/2/3/2345454.jpg'),(17417,89,0,1184,'/2/3/2345454.jpg'),(17418,106,0,1184,'container2'),(17419,121,0,1184,'dress-trousers-red-small-size'),(17420,132,0,1184,'0'),(17421,133,0,1184,'/2/3/2345454.jpg'),(17422,206,0,1184,'53% cotton, 44% polyester, 3% elastane'),(17427,73,0,1185,'Dress Trousers-red-Medium size'),(17428,84,0,1185,'Dress Trousers'),(17429,86,0,1185,'Dress Trousers Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, cr'),(17430,87,0,1185,'/2/3/2345454_1.jpg'),(17431,88,0,1185,'/2/3/2345454_1.jpg'),(17432,89,0,1185,'/2/3/2345454_1.jpg'),(17433,106,0,1185,'container2'),(17434,121,0,1185,'dress-trousers-red-medium-size'),(17435,132,0,1185,'0'),(17436,133,0,1185,'/2/3/2345454_1.jpg'),(17437,206,0,1185,'53% cotton, 44% polyester, 3% elastane'),(17442,73,0,1186,'Dress Trousers-red-Large size'),(17443,84,0,1186,'Dress Trousers'),(17444,86,0,1186,'Dress Trousers Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, cr'),(17445,87,0,1186,'/2/3/2345454_2.jpg'),(17446,88,0,1186,'/2/3/2345454_2.jpg'),(17447,89,0,1186,'/2/3/2345454_2.jpg'),(17448,106,0,1186,'container2'),(17449,121,0,1186,'dress-trousers-red-large-size'),(17450,132,0,1186,'0'),(17451,133,0,1186,'/2/3/2345454_2.jpg'),(17452,206,0,1186,'53% cotton, 44% polyester, 3% elastane'),(17457,87,0,173,'/i/m/image_31331004_36_970x1182_0_1.jpg'),(17458,88,0,173,'/i/m/image_31331004_36_970x1182_0_1.jpg'),(17459,89,0,173,'/i/m/image_31331004_36_970x1182_0_1.jpg'),(17460,133,0,173,'/i/m/image_31331004_36_970x1182_0_1.jpg'),(17465,87,0,174,'/i/m/image_31331004_36_970x1182_0_1_1.jpg'),(17466,88,0,174,'/i/m/image_31331004_36_970x1182_0_1_1.jpg'),(17467,89,0,174,'/i/m/image_31331004_36_970x1182_0_1_1.jpg'),(17468,133,0,174,'/i/m/image_31331004_36_970x1182_0_1_1.jpg'),(17473,87,0,172,'/i/m/image_31331004_36_970x1182_0_2.jpg'),(17474,88,0,172,'/i/m/image_31331004_36_970x1182_0_2.jpg'),(17475,89,0,172,'/i/m/image_31331004_36_970x1182_0_2.jpg'),(17476,133,0,172,'/i/m/image_31331004_36_970x1182_0_2.jpg'),(17485,73,0,1187,'Escada Gilet-black-Extra small size'),(17486,84,0,1187,'Seventy Transitional Jacket'),(17487,86,0,1187,'Seventy Transitional Jacket '),(17488,87,0,1187,'/4/5/45t6y7y7y7y7.jpg'),(17489,88,0,1187,'/4/5/45t6y7y7y7y7.jpg'),(17490,89,0,1187,'/4/5/45t6y7y7y7y7.jpg'),(17491,106,0,1187,'container2'),(17492,121,0,1187,'escada-gilet-black-extra-small-size'),(17493,132,0,1187,'0'),(17494,133,0,1187,'/4/5/45t6y7y7y7y7.jpg'),(17495,206,0,1187,'100% virgin wool'),(17500,73,0,1188,'Escada Gilet-black-Small size'),(17501,84,0,1188,'Seventy Transitional Jacket'),(17502,86,0,1188,'Seventy Transitional Jacket '),(17503,87,0,1188,'/4/5/45t6y7y7y7y7_1.jpg'),(17504,88,0,1188,'/4/5/45t6y7y7y7y7_1.jpg'),(17505,89,0,1188,'/4/5/45t6y7y7y7y7_1.jpg'),(17506,106,0,1188,'container2'),(17507,121,0,1188,'escada-gilet-black-small-size'),(17508,132,0,1188,'0'),(17509,133,0,1188,'/4/5/45t6y7y7y7y7_1.jpg'),(17510,206,0,1188,'100% virgin wool'),(17515,73,0,1189,'Escada Gilet-black-Medium size'),(17516,84,0,1189,'Seventy Transitional Jacket'),(17517,86,0,1189,'Seventy Transitional Jacket '),(17518,87,0,1189,'/4/5/45t6y7y7y7y7_2.jpg'),(17519,88,0,1189,'/4/5/45t6y7y7y7y7_2.jpg'),(17520,89,0,1189,'/4/5/45t6y7y7y7y7_2.jpg'),(17521,106,0,1189,'container2'),(17522,121,0,1189,'escada-gilet-black-medium-size'),(17523,132,0,1189,'0'),(17524,133,0,1189,'/4/5/45t6y7y7y7y7_2.jpg'),(17525,206,0,1189,'100% virgin wool'),(17530,73,0,1190,'Escada Gilet-black-Large size'),(17531,84,0,1190,'Seventy Transitional Jacket'),(17532,86,0,1190,'Seventy Transitional Jacket '),(17533,87,0,1190,'/4/5/45t6y7y7y7y7_3.jpg'),(17534,88,0,1190,'/4/5/45t6y7y7y7y7_3.jpg'),(17535,89,0,1190,'/4/5/45t6y7y7y7y7_3.jpg'),(17536,106,0,1190,'container2'),(17537,121,0,1190,'escada-gilet-black-large-size'),(17538,132,0,1190,'0'),(17539,133,0,1190,'/4/5/45t6y7y7y7y7_3.jpg'),(17540,206,0,1190,'100% virgin wool'),(17545,87,0,320,'/i/m/image_30838511_25_970x1182_0_1.jpg'),(17546,88,0,320,'/i/m/image_30838511_25_970x1182_0_1.jpg'),(17547,89,0,320,'/i/m/image_30838511_25_970x1182_0_1.jpg'),(17548,133,0,320,'/i/m/image_30838511_25_970x1182_0_1.jpg'),(17553,87,0,318,'/i/m/image_30838511_25_970x1182_0_1_1.jpg'),(17554,88,0,318,'/i/m/image_30838511_25_970x1182_0_1_1.jpg'),(17555,89,0,318,'/i/m/image_30838511_25_970x1182_0_1_1.jpg'),(17556,133,0,318,'/i/m/image_30838511_25_970x1182_0_1_1.jpg'),(17561,87,0,319,'/i/m/image_30838511_25_970x1182_0_2.jpg'),(17562,88,0,319,'/i/m/image_30838511_25_970x1182_0_2.jpg'),(17563,89,0,319,'/i/m/image_30838511_25_970x1182_0_2.jpg'),(17564,133,0,319,'/i/m/image_30838511_25_970x1182_0_2.jpg'),(17569,87,0,321,'/i/m/image_30838511_25_970x1182_0_3.jpg'),(17570,88,0,321,'/i/m/image_30838511_25_970x1182_0_3.jpg'),(17571,89,0,321,'/i/m/image_30838511_25_970x1182_0_3.jpg'),(17572,133,0,321,'/i/m/image_30838511_25_970x1182_0_3.jpg'),(17581,73,0,1191,'Heeled Sandals-EU 37-blue'),(17582,84,0,1191,'Black Chino'),(17583,86,0,1191,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(17584,87,0,1191,'/3/e/3e4f4r5r5.jpg'),(17585,88,0,1191,'/3/e/3e4f4r5r5.jpg'),(17586,89,0,1191,'/3/e/3e4f4r5r5.jpg'),(17587,106,0,1191,'container2'),(17588,121,0,1191,'heeled-sandals-eu-37-blue'),(17589,132,0,1191,'0'),(17590,133,0,1191,'/3/e/3e4f4r5r5.jpg'),(17591,206,0,1191,'Synthetic'),(17596,73,0,1192,'Heeled Sandals-EU 38-blue'),(17597,84,0,1192,'Black Chino'),(17598,86,0,1192,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(17599,87,0,1192,'/3/e/3e4f4r5r5_1.jpg'),(17600,88,0,1192,'/3/e/3e4f4r5r5_1.jpg'),(17601,89,0,1192,'/3/e/3e4f4r5r5_1.jpg'),(17602,106,0,1192,'container2'),(17603,121,0,1192,'heeled-sandals-eu-38-blue'),(17604,132,0,1192,'0'),(17605,133,0,1192,'/3/e/3e4f4r5r5_1.jpg'),(17606,206,0,1192,'Synthetic'),(17611,73,0,1193,'Heeled Sandals-EU 39-blue'),(17612,84,0,1193,'Black Chino'),(17613,86,0,1193,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(17614,87,0,1193,'/3/e/3e4f4r5r5_2.jpg'),(17615,88,0,1193,'/3/e/3e4f4r5r5_2.jpg'),(17616,89,0,1193,'/3/e/3e4f4r5r5_2.jpg'),(17617,106,0,1193,'container2'),(17618,121,0,1193,'heeled-sandals-eu-39-blue'),(17619,132,0,1193,'0'),(17620,133,0,1193,'/3/e/3e4f4r5r5_2.jpg'),(17621,206,0,1193,'Synthetic'),(17626,73,0,1194,'Heeled Sandals-EU 40-blue'),(17627,84,0,1194,'Black Chino'),(17628,86,0,1194,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(17629,87,0,1194,'/3/e/3e4f4r5r5_3.jpg'),(17630,88,0,1194,'/3/e/3e4f4r5r5_3.jpg'),(17631,89,0,1194,'/3/e/3e4f4r5r5_3.jpg'),(17632,106,0,1194,'container2'),(17633,121,0,1194,'heeled-sandals-eu-40-blue'),(17634,132,0,1194,'0'),(17635,133,0,1194,'/3/e/3e4f4r5r5_3.jpg'),(17636,206,0,1194,'Synthetic'),(17641,73,0,1195,'Heeled Sandals-EU 41-blue'),(17642,84,0,1195,'Black Chino'),(17643,86,0,1195,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(17644,87,0,1195,'/3/e/3e4f4r5r5_4.jpg'),(17645,88,0,1195,'/3/e/3e4f4r5r5_4.jpg'),(17646,89,0,1195,'/3/e/3e4f4r5r5_4.jpg'),(17647,106,0,1195,'container2'),(17648,121,0,1195,'heeled-sandals-eu-41-blue'),(17649,132,0,1195,'0'),(17650,133,0,1195,'/3/e/3e4f4r5r5_4.jpg'),(17651,206,0,1195,'Synthetic'),(17656,87,0,407,'/i/m/image_31197648_45_620x757_0_1.jpg'),(17657,88,0,407,'/i/m/image_31197648_45_620x757_0_1.jpg'),(17658,89,0,407,'/i/m/image_31197648_45_620x757_0_1.jpg'),(17659,133,0,407,'/i/m/image_31197648_45_620x757_0_1.jpg'),(17664,87,0,408,'/i/m/image_31197648_45_620x757_0_1_1.jpg'),(17665,88,0,408,'/i/m/image_31197648_45_620x757_0_1_1.jpg'),(17666,89,0,408,'/i/m/image_31197648_45_620x757_0_1_1.jpg'),(17667,133,0,408,'/i/m/image_31197648_45_620x757_0_1_1.jpg'),(17672,87,0,409,'/i/m/image_31197648_45_620x757_0_2.jpg'),(17673,88,0,409,'/i/m/image_31197648_45_620x757_0_2.jpg'),(17674,89,0,409,'/i/m/image_31197648_45_620x757_0_2.jpg'),(17675,133,0,409,'/i/m/image_31197648_45_620x757_0_2.jpg'),(17680,87,0,410,'/i/m/image_31197648_45_620x757_0_3.jpg'),(17681,88,0,410,'/i/m/image_31197648_45_620x757_0_3.jpg'),(17682,89,0,410,'/i/m/image_31197648_45_620x757_0_3.jpg'),(17683,133,0,410,'/i/m/image_31197648_45_620x757_0_3.jpg'),(17688,87,0,411,'/i/m/image_31197648_45_620x757_0_4.jpg'),(17689,88,0,411,'/i/m/image_31197648_45_620x757_0_4.jpg'),(17690,89,0,411,'/i/m/image_31197648_45_620x757_0_4.jpg'),(17691,133,0,411,'/i/m/image_31197648_45_620x757_0_4.jpg'),(17700,73,0,1196,'Just me Casual Dress-red-Extra small size'),(17701,84,0,1196,'UNQ Linen Dress'),(17702,86,0,1196,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(17703,87,0,1196,'/3/4/3434r55r.jpg'),(17704,88,0,1196,'/3/4/3434r55r.jpg'),(17705,89,0,1196,'/3/4/3434r55r.jpg'),(17706,106,0,1196,'container2'),(17707,121,0,1196,'just-me-casual-dress-red-extra-small-size'),(17708,132,0,1196,'0'),(17709,133,0,1196,'/3/4/3434r55r.jpg'),(17710,206,0,1196,'100% polyester'),(17715,73,0,1197,'Just me Casual Dress-red-Small size'),(17716,84,0,1197,'UNQ Linen Dress'),(17717,86,0,1197,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(17718,87,0,1197,'/3/4/3434r55r_1.jpg'),(17719,88,0,1197,'/3/4/3434r55r_1.jpg'),(17720,89,0,1197,'/3/4/3434r55r_1.jpg'),(17721,106,0,1197,'container2'),(17722,121,0,1197,'just-me-casual-dress-red-small-size'),(17723,132,0,1197,'0'),(17724,133,0,1197,'/3/4/3434r55r_1.jpg'),(17725,206,0,1197,'100% polyester'),(17730,73,0,1198,'Just me Casual Dress-red-Medium size'),(17731,84,0,1198,'UNQ Linen Dress'),(17732,86,0,1198,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(17733,87,0,1198,'/3/4/3434r55r_2.jpg'),(17734,88,0,1198,'/3/4/3434r55r_2.jpg'),(17735,89,0,1198,'/3/4/3434r55r_2.jpg'),(17736,106,0,1198,'container2'),(17737,121,0,1198,'just-me-casual-dress-red-medium-size'),(17738,132,0,1198,'0'),(17739,133,0,1198,'/3/4/3434r55r_2.jpg'),(17740,206,0,1198,'100% polyester'),(17745,87,0,524,'/i/m/image_31292070_22_970x1182_0_1.jpg'),(17746,88,0,524,'/i/m/image_31292070_22_970x1182_0_1.jpg'),(17747,89,0,524,'/i/m/image_31292070_22_970x1182_0_1.jpg'),(17748,133,0,524,'/i/m/image_31292070_22_970x1182_0_1.jpg'),(17753,87,0,525,'/i/m/image_31292070_22_970x1182_0_1_1.jpg'),(17754,88,0,525,'/i/m/image_31292070_22_970x1182_0_1_1.jpg'),(17755,89,0,525,'/i/m/image_31292070_22_970x1182_0_1_1.jpg'),(17756,133,0,525,'/i/m/image_31292070_22_970x1182_0_1_1.jpg'),(17761,87,0,526,'/i/m/image_31292070_22_970x1182_0_2.jpg'),(17762,88,0,526,'/i/m/image_31292070_22_970x1182_0_2.jpg'),(17763,89,0,526,'/i/m/image_31292070_22_970x1182_0_2.jpg'),(17764,133,0,526,'/i/m/image_31292070_22_970x1182_0_2.jpg'),(17773,73,0,1199,'Lace Dress-red-Extra small size'),(17774,84,0,1199,'Sequin Dress'),(17775,86,0,1199,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(17776,87,0,1199,'/4/r/4r4e3e23434.jpg'),(17777,88,0,1199,'/4/r/4r4e3e23434.jpg'),(17778,89,0,1199,'/4/r/4r4e3e23434.jpg'),(17779,106,0,1199,'container2'),(17780,121,0,1199,'lace-dress-red-extra-small-size'),(17781,132,0,1199,'0'),(17782,133,0,1199,'/4/r/4r4e3e23434.jpg'),(17783,206,0,1199,'60% cotton, 40% polyamide'),(17788,73,0,1200,'Lace Dress-red-Small size'),(17789,84,0,1200,'Sequin Dress'),(17790,86,0,1200,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(17791,87,0,1200,'/4/r/4r4e3e23434_1.jpg'),(17792,88,0,1200,'/4/r/4r4e3e23434_1.jpg'),(17793,89,0,1200,'/4/r/4r4e3e23434_1.jpg'),(17794,106,0,1200,'container2'),(17795,121,0,1200,'lace-dress-red-small-size'),(17796,132,0,1200,'0'),(17797,133,0,1200,'/4/r/4r4e3e23434_1.jpg'),(17798,206,0,1200,'60% cotton, 40% polyamide'),(17803,73,0,1201,'Lace Dress-red-Medium size'),(17804,84,0,1201,'Sequin Dress'),(17805,86,0,1201,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(17806,87,0,1201,'/4/r/4r4e3e23434_2.jpg'),(17807,88,0,1201,'/4/r/4r4e3e23434_2.jpg'),(17808,89,0,1201,'/4/r/4r4e3e23434_2.jpg'),(17809,106,0,1201,'container2'),(17810,121,0,1201,'lace-dress-red-medium-size'),(17811,132,0,1201,'0'),(17812,133,0,1201,'/4/r/4r4e3e23434_2.jpg'),(17813,206,0,1201,'60% cotton, 40% polyamide'),(17818,87,0,538,'/i/m/image_31292042_34_620x757_0_1.jpg'),(17819,88,0,538,'/i/m/image_31292042_34_620x757_0_1.jpg'),(17820,89,0,538,'/i/m/image_31292042_34_620x757_0_1.jpg'),(17821,133,0,538,'/i/m/image_31292042_34_620x757_0_1.jpg'),(17826,87,0,539,'/i/m/image_31292042_34_620x757_0_1_1.jpg'),(17827,88,0,539,'/i/m/image_31292042_34_620x757_0_1_1.jpg'),(17828,89,0,539,'/i/m/image_31292042_34_620x757_0_1_1.jpg'),(17829,133,0,539,'/i/m/image_31292042_34_620x757_0_1_1.jpg'),(17834,87,0,540,'/i/m/image_31292042_34_620x757_0_2.jpg'),(17835,88,0,540,'/i/m/image_31292042_34_620x757_0_2.jpg'),(17836,89,0,540,'/i/m/image_31292042_34_620x757_0_2.jpg'),(17837,133,0,540,'/i/m/image_31292042_34_620x757_0_2.jpg'),(17846,73,0,1202,'Lawrence Grey Cashmere Pullover-grey-Extra small size'),(17847,84,0,1202,'Lawrence Grey Rollneck Pullover'),(17848,86,0,1202,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(17849,87,0,1202,'/4/5/454r4r43e3e.jpg'),(17850,88,0,1202,'/4/5/454r4r43e3e.jpg'),(17851,89,0,1202,'/4/5/454r4r43e3e.jpg'),(17852,106,0,1202,'container2'),(17853,121,0,1202,'lawrence-grey-cashmere-pullover-grey-extra-small-size'),(17854,132,0,1202,'0'),(17855,133,0,1202,'/4/5/454r4r43e3e.jpg'),(17856,206,0,1202,' 100% cashmere'),(17861,73,0,1203,'Lawrence Grey Cashmere Pullover-grey-Small size'),(17862,84,0,1203,'Lawrence Grey Rollneck Pullover'),(17863,86,0,1203,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(17864,87,0,1203,'/4/5/454r4r43e3e_1.jpg'),(17865,88,0,1203,'/4/5/454r4r43e3e_1.jpg'),(17866,89,0,1203,'/4/5/454r4r43e3e_1.jpg'),(17867,106,0,1203,'container2'),(17868,121,0,1203,'lawrence-grey-cashmere-pullover-grey-small-size'),(17869,132,0,1203,'0'),(17870,133,0,1203,'/4/5/454r4r43e3e_1.jpg'),(17871,206,0,1203,' 100% cashmere'),(17876,73,0,1204,'Lawrence Grey Cashmere Pullover-grey-Medium size'),(17877,84,0,1204,'Lawrence Grey Rollneck Pullover'),(17878,86,0,1204,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(17879,87,0,1204,'/4/5/454r4r43e3e_2.jpg'),(17880,88,0,1204,'/4/5/454r4r43e3e_2.jpg'),(17881,89,0,1204,'/4/5/454r4r43e3e_2.jpg'),(17882,106,0,1204,'container2'),(17883,121,0,1204,'lawrence-grey-cashmere-pullover-grey-medium-size'),(17884,132,0,1204,'0'),(17885,133,0,1204,'/4/5/454r4r43e3e_2.jpg'),(17886,206,0,1204,' 100% cashmere'),(17891,87,0,499,'/i/m/image_31145394_21_970x1182_0_1.jpg'),(17892,88,0,499,'/i/m/image_31145394_21_970x1182_0_1.jpg'),(17893,89,0,499,'/i/m/image_31145394_21_970x1182_0_1.jpg'),(17894,133,0,499,'/i/m/image_31145394_21_970x1182_0_1.jpg'),(17899,87,0,498,'/i/m/image_31145394_21_970x1182_0_1_1.jpg'),(17900,88,0,498,'/i/m/image_31145394_21_970x1182_0_1_1.jpg'),(17901,89,0,498,'/i/m/image_31145394_21_970x1182_0_1_1.jpg'),(17902,133,0,498,'/i/m/image_31145394_21_970x1182_0_1_1.jpg'),(17907,87,0,500,'/i/m/image_31145394_21_970x1182_0_2.jpg'),(17908,88,0,500,'/i/m/image_31145394_21_970x1182_0_2.jpg'),(17909,89,0,500,'/i/m/image_31145394_21_970x1182_0_2.jpg'),(17910,133,0,500,'/i/m/image_31145394_21_970x1182_0_2.jpg'),(17919,73,0,1205,'Lawrence Grey Knit Dress-blue-Extra small size'),(17920,84,0,1205,'UNQ Linen Dress'),(17921,86,0,1205,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(17922,87,0,1205,'/3/4/34r4r4r4r.jpg'),(17923,88,0,1205,'/3/4/34r4r4r4r.jpg'),(17924,89,0,1205,'/3/4/34r4r4r4r.jpg'),(17925,106,0,1205,'container2'),(17926,121,0,1205,'lawrence-grey-knit-dress-blue-extra-small-size'),(17927,132,0,1205,'0'),(17928,133,0,1205,'/3/4/34r4r4r4r.jpg'),(17929,206,0,1205,'100% merino'),(17934,73,0,1206,'Lawrence Grey Knit Dress-blue-Small size'),(17935,84,0,1206,'UNQ Linen Dress'),(17936,86,0,1206,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(17937,87,0,1206,'/3/4/34r4r4r4r_1.jpg'),(17938,88,0,1206,'/3/4/34r4r4r4r_1.jpg'),(17939,89,0,1206,'/3/4/34r4r4r4r_1.jpg'),(17940,106,0,1206,'container2'),(17941,121,0,1206,'lawrence-grey-knit-dress-blue-small-size'),(17942,132,0,1206,'0'),(17943,133,0,1206,'/3/4/34r4r4r4r_1.jpg'),(17944,206,0,1206,'100% merino'),(17949,73,0,1207,'Lawrence Grey Knit Dress-blue-Medium size'),(17950,84,0,1207,'UNQ Linen Dress'),(17951,86,0,1207,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(17952,87,0,1207,'/3/4/34r4r4r4r_2.jpg'),(17953,88,0,1207,'/3/4/34r4r4r4r_2.jpg'),(17954,89,0,1207,'/3/4/34r4r4r4r_2.jpg'),(17955,106,0,1207,'container2'),(17956,121,0,1207,'lawrence-grey-knit-dress-blue-medium-size'),(17957,132,0,1207,'0'),(17958,133,0,1207,'/3/4/34r4r4r4r_2.jpg'),(17959,206,0,1207,'100% merino'),(17964,87,0,528,'/i/m/image_31167816_22_970x1182_0_1.jpg'),(17965,88,0,528,'/i/m/image_31167816_22_970x1182_0_1.jpg'),(17966,89,0,528,'/i/m/image_31167816_22_970x1182_0_1.jpg'),(17967,133,0,528,'/i/m/image_31167816_22_970x1182_0_1.jpg'),(17972,87,0,529,'/i/m/image_31167816_22_970x1182_0_1_1.jpg'),(17973,88,0,529,'/i/m/image_31167816_22_970x1182_0_1_1.jpg'),(17974,89,0,529,'/i/m/image_31167816_22_970x1182_0_1_1.jpg'),(17975,133,0,529,'/i/m/image_31167816_22_970x1182_0_1_1.jpg'),(17980,87,0,530,'/i/m/image_31167816_22_970x1182_0_2.jpg'),(17981,88,0,530,'/i/m/image_31167816_22_970x1182_0_2.jpg'),(17982,89,0,530,'/i/m/image_31167816_22_970x1182_0_2.jpg'),(17983,133,0,530,'/i/m/image_31167816_22_970x1182_0_2.jpg'),(17992,73,0,1208,'Max & Co. Mini Dress-black-Extra small size'),(17993,84,0,1208,'UNQ Linen Dress'),(17994,86,0,1208,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(17995,87,0,1208,'/3/4/34r34r4r.jpg'),(17996,88,0,1208,'/3/4/34r34r4r.jpg'),(17997,89,0,1208,'/3/4/34r34r4r.jpg'),(17998,106,0,1208,'container2'),(17999,121,0,1208,'max-co-mini-dress-black-extra-small-size'),(18000,132,0,1208,'0'),(18001,133,0,1208,'/3/4/34r34r4r.jpg'),(18002,206,0,1208,'59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre'),(18007,73,0,1209,'Max & Co. Mini Dress-black-Small size'),(18008,84,0,1209,'UNQ Linen Dress'),(18009,86,0,1209,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(18010,87,0,1209,'/3/4/34r34r4r_1.jpg'),(18011,88,0,1209,'/3/4/34r34r4r_1.jpg'),(18012,89,0,1209,'/3/4/34r34r4r_1.jpg'),(18013,106,0,1209,'container2'),(18014,121,0,1209,'max-co-mini-dress-black-small-size'),(18015,132,0,1209,'0'),(18016,133,0,1209,'/3/4/34r34r4r_1.jpg'),(18017,206,0,1209,'59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre'),(18022,73,0,1210,'Max & Co. Mini Dress-black-Large size'),(18023,84,0,1210,'UNQ Linen Dress'),(18024,86,0,1210,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(18025,87,0,1210,'/3/4/34r34r4r_2.jpg'),(18026,88,0,1210,'/3/4/34r34r4r_2.jpg'),(18027,89,0,1210,'/3/4/34r34r4r_2.jpg'),(18028,106,0,1210,'container2'),(18029,121,0,1210,'max-co-mini-dress-black-large-size'),(18030,132,0,1210,'0'),(18031,133,0,1210,'/3/4/34r34r4r_2.jpg'),(18032,206,0,1210,'59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre'),(18037,87,0,520,'/i/m/image_31280337_45_970x1182_0_1.jpg'),(18038,88,0,520,'/i/m/image_31280337_45_970x1182_0_1.jpg'),(18039,89,0,520,'/i/m/image_31280337_45_970x1182_0_1.jpg'),(18040,133,0,520,'/i/m/image_31280337_45_970x1182_0_1.jpg'),(18045,87,0,521,'/i/m/image_31280337_45_970x1182_0_1_1.jpg'),(18046,88,0,521,'/i/m/image_31280337_45_970x1182_0_1_1.jpg'),(18047,89,0,521,'/i/m/image_31280337_45_970x1182_0_1_1.jpg'),(18048,133,0,521,'/i/m/image_31280337_45_970x1182_0_1_1.jpg'),(18053,87,0,522,'/i/m/image_31280337_45_970x1182_0_2.jpg'),(18054,88,0,522,'/i/m/image_31280337_45_970x1182_0_2.jpg'),(18055,89,0,522,'/i/m/image_31280337_45_970x1182_0_2.jpg'),(18056,133,0,522,'/i/m/image_31280337_45_970x1182_0_2.jpg'),(18065,73,0,1211,'Max Tonso Cashmere Pullover-red-Extra small size'),(18066,84,0,1211,'Lawrence Grey Rollneck Pullover'),(18067,86,0,1211,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(18068,87,0,1211,'/3/4/34r34r4rd.jpg'),(18069,88,0,1211,'/3/4/34r34r4rd.jpg'),(18070,89,0,1211,'/3/4/34r34r4rd.jpg'),(18071,106,0,1211,'container2'),(18072,121,0,1211,'max-tonso-cashmere-pullover-red-extra-small-size'),(18073,132,0,1211,'0'),(18074,133,0,1211,'/3/4/34r34r4rd.jpg'),(18075,206,0,1211,' 100% cashmere'),(18080,73,0,1212,'Max Tonso Cashmere Pullover-red-Small size'),(18081,84,0,1212,'Lawrence Grey Rollneck Pullover'),(18082,86,0,1212,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(18083,87,0,1212,'/3/4/34r34r4rd_1.jpg'),(18084,88,0,1212,'/3/4/34r34r4rd_1.jpg'),(18085,89,0,1212,'/3/4/34r34r4rd_1.jpg'),(18086,106,0,1212,'container2'),(18087,121,0,1212,'max-tonso-cashmere-pullover-red-small-size'),(18088,132,0,1212,'0'),(18089,133,0,1212,'/3/4/34r34r4rd_1.jpg'),(18090,206,0,1212,' 100% cashmere'),(18095,73,0,1213,'Max Tonso Cashmere Pullover-red-Medium size'),(18096,84,0,1213,'Lawrence Grey Rollneck Pullover'),(18097,86,0,1213,'Lawrence Grey Rollneck Pullover Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instru'),(18098,87,0,1213,'/3/4/34r34r4rd_2.jpg'),(18099,88,0,1213,'/3/4/34r34r4rd_2.jpg'),(18100,89,0,1213,'/3/4/34r34r4rd_2.jpg'),(18101,106,0,1213,'container2'),(18102,121,0,1213,'max-tonso-cashmere-pullover-red-medium-size'),(18103,132,0,1213,'0'),(18104,133,0,1213,'/3/4/34r34r4rd_2.jpg'),(18105,206,0,1213,' 100% cashmere'),(18110,87,0,496,'/i/m/image_31343872_25_970x1182_0_1.jpg'),(18111,88,0,496,'/i/m/image_31343872_25_970x1182_0_1.jpg'),(18112,89,0,496,'/i/m/image_31343872_25_970x1182_0_1.jpg'),(18113,133,0,496,'/i/m/image_31343872_25_970x1182_0_1.jpg'),(18118,87,0,495,'/i/m/image_31343872_25_970x1182_0_1_1.jpg'),(18119,88,0,495,'/i/m/image_31343872_25_970x1182_0_1_1.jpg'),(18120,89,0,495,'/i/m/image_31343872_25_970x1182_0_1_1.jpg'),(18121,133,0,495,'/i/m/image_31343872_25_970x1182_0_1_1.jpg'),(18126,87,0,497,'/i/m/image_31343872_25_970x1182_0_2.jpg'),(18127,88,0,497,'/i/m/image_31343872_25_970x1182_0_2.jpg'),(18128,89,0,497,'/i/m/image_31343872_25_970x1182_0_2.jpg'),(18129,133,0,497,'/i/m/image_31343872_25_970x1182_0_2.jpg'),(18138,73,0,1214,'Over The Knee Boots-blue-EU 36'),(18139,84,0,1214,'Black Chino'),(18140,86,0,1214,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(18141,87,0,1214,'/2/4/24r34r4.jpg'),(18142,88,0,1214,'/2/4/24r34r4.jpg'),(18143,89,0,1214,'/2/4/24r34r4.jpg'),(18144,106,0,1214,'container2'),(18145,121,0,1214,'over-the-knee-boots-blue-eu-36'),(18146,132,0,1214,'0'),(18147,133,0,1214,'/2/4/24r34r4.jpg'),(18148,206,0,1214,'Leather'),(18153,73,0,1215,'Over The Knee Boots-blue-EU 38'),(18154,84,0,1215,'Black Chino'),(18155,86,0,1215,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(18156,87,0,1215,'/2/4/24r34r4_1.jpg'),(18157,88,0,1215,'/2/4/24r34r4_1.jpg'),(18158,89,0,1215,'/2/4/24r34r4_1.jpg'),(18159,106,0,1215,'container2'),(18160,121,0,1215,'over-the-knee-boots-blue-eu-38'),(18161,132,0,1215,'0'),(18162,133,0,1215,'/2/4/24r34r4_1.jpg'),(18163,206,0,1215,'Leather'),(18168,73,0,1216,'Over The Knee Boots-blue-EU 39'),(18169,84,0,1216,'Black Chino'),(18170,86,0,1216,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(18171,87,0,1216,'/2/4/24r34r4_2.jpg'),(18172,88,0,1216,'/2/4/24r34r4_2.jpg'),(18173,89,0,1216,'/2/4/24r34r4_2.jpg'),(18174,106,0,1216,'container2'),(18175,121,0,1216,'over-the-knee-boots-blue-eu-39'),(18176,132,0,1216,'0'),(18177,133,0,1216,'/2/4/24r34r4_2.jpg'),(18178,206,0,1216,'Leather'),(18183,73,0,1217,'Over The Knee Boots-blue-EU 40'),(18184,84,0,1217,'Black Chino'),(18185,86,0,1217,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(18186,87,0,1217,'/2/4/24r34r4_3.jpg'),(18187,88,0,1217,'/2/4/24r34r4_3.jpg'),(18188,89,0,1217,'/2/4/24r34r4_3.jpg'),(18189,106,0,1217,'container2'),(18190,121,0,1217,'over-the-knee-boots-blue-eu-40'),(18191,132,0,1217,'0'),(18192,133,0,1217,'/2/4/24r34r4_3.jpg'),(18193,206,0,1217,'Leather'),(18198,73,0,1218,'Over The Knee Boots-blue-EU 41'),(18199,84,0,1218,'Black Chino'),(18200,86,0,1218,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(18201,87,0,1218,'/2/4/24r34r4_4.jpg'),(18202,88,0,1218,'/2/4/24r34r4_4.jpg'),(18203,89,0,1218,'/2/4/24r34r4_4.jpg'),(18204,106,0,1218,'container2'),(18205,121,0,1218,'over-the-knee-boots-blue-eu-41'),(18206,132,0,1218,'0'),(18207,133,0,1218,'/2/4/24r34r4_4.jpg'),(18208,206,0,1218,'Leather'),(18213,87,0,380,'/i/m/image_31196404_83_620x757_0_1.jpg'),(18214,88,0,380,'/i/m/image_31196404_83_620x757_0_1.jpg'),(18215,89,0,380,'/i/m/image_31196404_83_620x757_0_1.jpg'),(18216,133,0,380,'/i/m/image_31196404_83_620x757_0_1.jpg'),(18221,87,0,384,'/i/m/image_31196404_83_620x757_0_1_1.jpg'),(18222,88,0,384,'/i/m/image_31196404_83_620x757_0_1_1.jpg'),(18223,89,0,384,'/i/m/image_31196404_83_620x757_0_1_1.jpg'),(18224,133,0,384,'/i/m/image_31196404_83_620x757_0_1_1.jpg'),(18229,87,0,381,'/i/m/image_31196404_83_620x757_0_2.jpg'),(18230,88,0,381,'/i/m/image_31196404_83_620x757_0_2.jpg'),(18231,89,0,381,'/i/m/image_31196404_83_620x757_0_2.jpg'),(18232,133,0,381,'/i/m/image_31196404_83_620x757_0_2.jpg'),(18237,87,0,382,'/i/m/image_31196404_83_620x757_0_3.jpg'),(18238,88,0,382,'/i/m/image_31196404_83_620x757_0_3.jpg'),(18239,89,0,382,'/i/m/image_31196404_83_620x757_0_3.jpg'),(18240,133,0,382,'/i/m/image_31196404_83_620x757_0_3.jpg'),(18245,87,0,383,'/i/m/image_31196404_83_620x757_0_4.jpg'),(18246,88,0,383,'/i/m/image_31196404_83_620x757_0_4.jpg'),(18247,89,0,383,'/i/m/image_31196404_83_620x757_0_4.jpg'),(18248,133,0,383,'/i/m/image_31196404_83_620x757_0_4.jpg'),(18257,73,0,1219,'Pale Belt Pants -red-Small size'),(18258,84,0,1219,'Pale Belt Pants '),(18259,86,0,1219,'Pale Belt Pants  The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pa'),(18260,87,0,1219,'/8/u/8u7y6t6.jpg'),(18261,88,0,1219,'/8/u/8u7y6t6.jpg'),(18262,89,0,1219,'/8/u/8u7y6t6.jpg'),(18263,106,0,1219,'container2'),(18264,121,0,1219,'pale-belt-pants-red-small-size'),(18265,132,0,1219,'0'),(18266,133,0,1219,'/8/u/8u7y6t6.jpg'),(18267,206,0,1219,'65% Polyester,32% Viscose,3% Elastane'),(18272,73,0,1220,'Pale Belt Pants -red-Medium size'),(18273,84,0,1220,'Pale Belt Pants '),(18274,86,0,1220,'Pale Belt Pants  The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pa'),(18275,87,0,1220,'/8/u/8u7y6t6_1.jpg'),(18276,88,0,1220,'/8/u/8u7y6t6_1.jpg'),(18277,89,0,1220,'/8/u/8u7y6t6_1.jpg'),(18278,106,0,1220,'container2'),(18279,121,0,1220,'pale-belt-pants-red-medium-size'),(18280,132,0,1220,'0'),(18281,133,0,1220,'/8/u/8u7y6t6_1.jpg'),(18282,206,0,1220,'65% Polyester,32% Viscose,3% Elastane'),(18287,73,0,1221,'Pale Belt Pants -red-Extra large size'),(18288,84,0,1221,'Pale Belt Pants '),(18289,86,0,1221,'Pale Belt Pants  The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pa'),(18290,87,0,1221,'/8/u/8u7y6t6_2.jpg'),(18291,88,0,1221,'/8/u/8u7y6t6_2.jpg'),(18292,89,0,1221,'/8/u/8u7y6t6_2.jpg'),(18293,106,0,1221,'container2'),(18294,121,0,1221,'pale-belt-pants-red-extra-large-size'),(18295,132,0,1221,'0'),(18296,133,0,1221,'/8/u/8u7y6t6_2.jpg'),(18297,206,0,1221,'65% Polyester,32% Viscose,3% Elastane'),(18302,87,0,195,'/1/0/10502970_50015_100_1.jpg'),(18303,88,0,195,'/1/0/10502970_50015_100_1.jpg'),(18304,89,0,195,'/1/0/10502970_50015_100_1.jpg'),(18305,133,0,195,'/1/0/10502970_50015_100_1.jpg'),(18310,87,0,196,'/1/0/10502970_50015_100_1_1.jpg'),(18311,88,0,196,'/1/0/10502970_50015_100_1_1.jpg'),(18312,89,0,196,'/1/0/10502970_50015_100_1_1.jpg'),(18313,133,0,196,'/1/0/10502970_50015_100_1_1.jpg'),(18318,87,0,194,'/1/0/10502970_50015_100_2.jpg'),(18319,88,0,194,'/1/0/10502970_50015_100_2.jpg'),(18320,89,0,194,'/1/0/10502970_50015_100_2.jpg'),(18321,133,0,194,'/1/0/10502970_50015_100_2.jpg'),(18330,73,0,1222,'Pumps-black-EU 36'),(18331,84,0,1222,'Pumps'),(18332,86,0,1222,'Pumps Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(18333,87,0,1222,'/8/u/8u87y6t4d4d.jpg'),(18334,88,0,1222,'/8/u/8u87y6t4d4d.jpg'),(18335,89,0,1222,'/8/u/8u87y6t4d4d.jpg'),(18336,106,0,1222,'container2'),(18337,121,0,1222,'pumps-black-eu-36'),(18338,132,0,1222,'0'),(18339,133,0,1222,'/8/u/8u87y6t4d4d.jpg'),(18340,206,0,1222,'Leather'),(18345,73,0,1223,'Pumps-black-EU 37'),(18346,84,0,1223,'Pumps'),(18347,86,0,1223,'Pumps Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(18348,87,0,1223,'/8/u/8u87y6t4d4d_1.jpg'),(18349,88,0,1223,'/8/u/8u87y6t4d4d_1.jpg'),(18350,89,0,1223,'/8/u/8u87y6t4d4d_1.jpg'),(18351,106,0,1223,'container2'),(18352,121,0,1223,'pumps-black-eu-37'),(18353,132,0,1223,'0'),(18354,133,0,1223,'/8/u/8u87y6t4d4d_1.jpg'),(18355,206,0,1223,'Leather'),(18360,73,0,1224,'Pumps-black-EU 38'),(18361,84,0,1224,'Pumps'),(18362,86,0,1224,'Pumps Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(18363,87,0,1224,'/8/u/8u87y6t4d4d_2.jpg'),(18364,88,0,1224,'/8/u/8u87y6t4d4d_2.jpg'),(18365,89,0,1224,'/8/u/8u87y6t4d4d_2.jpg'),(18366,106,0,1224,'container2'),(18367,121,0,1224,'pumps-black-eu-38'),(18368,132,0,1224,'0'),(18369,133,0,1224,'/8/u/8u87y6t4d4d_2.jpg'),(18370,206,0,1224,'Leather'),(18375,73,0,1225,'Pumps-black-EU 39'),(18376,84,0,1225,'Pumps'),(18377,86,0,1225,'Pumps Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(18378,87,0,1225,'/8/u/8u87y6t4d4d_3.jpg'),(18379,88,0,1225,'/8/u/8u87y6t4d4d_3.jpg'),(18380,89,0,1225,'/8/u/8u87y6t4d4d_3.jpg'),(18381,106,0,1225,'container2'),(18382,121,0,1225,'pumps-black-eu-39'),(18383,132,0,1225,'0'),(18384,133,0,1225,'/8/u/8u87y6t4d4d_3.jpg'),(18385,206,0,1225,'Leather'),(18390,73,0,1226,'Pumps-black-EU 40'),(18391,84,0,1226,'Pumps'),(18392,86,0,1226,'Pumps Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(18393,87,0,1226,'/8/u/8u87y6t4d4d_4.jpg'),(18394,88,0,1226,'/8/u/8u87y6t4d4d_4.jpg'),(18395,89,0,1226,'/8/u/8u87y6t4d4d_4.jpg'),(18396,106,0,1226,'container2'),(18397,121,0,1226,'pumps-black-eu-40'),(18398,132,0,1226,'0'),(18399,133,0,1226,'/8/u/8u87y6t4d4d_4.jpg'),(18400,206,0,1226,'Leather'),(18405,73,0,1227,'Pumps-black-EU 41'),(18406,84,0,1227,'Pumps'),(18407,86,0,1227,'Pumps Black leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(18408,87,0,1227,'/8/u/8u87y6t4d4d_5.jpg'),(18409,88,0,1227,'/8/u/8u87y6t4d4d_5.jpg'),(18410,89,0,1227,'/8/u/8u87y6t4d4d_5.jpg'),(18411,106,0,1227,'container2'),(18412,121,0,1227,'pumps-black-eu-41'),(18413,132,0,1227,'0'),(18414,133,0,1227,'/8/u/8u87y6t4d4d_5.jpg'),(18415,206,0,1227,'Leather'),(18420,87,0,302,'/i/m/image_30950832_43_620x757_0_1.jpg'),(18421,88,0,302,'/i/m/image_30950832_43_620x757_0_1.jpg'),(18422,89,0,302,'/i/m/image_30950832_43_620x757_0_1.jpg'),(18423,133,0,302,'/i/m/image_30950832_43_620x757_0_1.jpg'),(18428,87,0,300,'/i/m/image_30950832_43_620x757_0_1_1.jpg'),(18429,88,0,300,'/i/m/image_30950832_43_620x757_0_1_1.jpg'),(18430,89,0,300,'/i/m/image_30950832_43_620x757_0_1_1.jpg'),(18431,133,0,300,'/i/m/image_30950832_43_620x757_0_1_1.jpg'),(18436,87,0,301,'/i/m/image_30950832_43_620x757_0_2.jpg'),(18437,88,0,301,'/i/m/image_30950832_43_620x757_0_2.jpg'),(18438,89,0,301,'/i/m/image_30950832_43_620x757_0_2.jpg'),(18439,133,0,301,'/i/m/image_30950832_43_620x757_0_2.jpg'),(18444,87,0,303,'/i/m/image_30950832_43_620x757_0_3.jpg'),(18445,88,0,303,'/i/m/image_30950832_43_620x757_0_3.jpg'),(18446,89,0,303,'/i/m/image_30950832_43_620x757_0_3.jpg'),(18447,133,0,303,'/i/m/image_30950832_43_620x757_0_3.jpg'),(18452,87,0,304,'/i/m/image_30950832_43_620x757_0_4.jpg'),(18453,88,0,304,'/i/m/image_30950832_43_620x757_0_4.jpg'),(18454,89,0,304,'/i/m/image_30950832_43_620x757_0_4.jpg'),(18455,133,0,304,'/i/m/image_30950832_43_620x757_0_4.jpg'),(18460,87,0,305,'/i/m/image_30950832_43_620x757_0_5.jpg'),(18461,88,0,305,'/i/m/image_30950832_43_620x757_0_5.jpg'),(18462,89,0,305,'/i/m/image_30950832_43_620x757_0_5.jpg'),(18463,133,0,305,'/i/m/image_30950832_43_620x757_0_5.jpg'),(18472,87,0,369,'/i/m/image_31151579_25_970x1182_0_1.jpg'),(18473,88,0,369,'/i/m/image_31151579_25_970x1182_0_1.jpg'),(18474,89,0,369,'/i/m/image_31151579_25_970x1182_0_1.jpg'),(18475,133,0,369,'/i/m/image_31151579_25_970x1182_0_1.jpg'),(18480,87,0,368,'/i/m/image_31151579_25_970x1182_0_1_1.jpg'),(18481,88,0,368,'/i/m/image_31151579_25_970x1182_0_1_1.jpg'),(18482,89,0,368,'/i/m/image_31151579_25_970x1182_0_1_1.jpg'),(18483,133,0,368,'/i/m/image_31151579_25_970x1182_0_1_1.jpg'),(18488,87,0,370,'/i/m/image_31151579_25_970x1182_0_2.jpg'),(18489,88,0,370,'/i/m/image_31151579_25_970x1182_0_2.jpg'),(18490,89,0,370,'/i/m/image_31151579_25_970x1182_0_2.jpg'),(18491,133,0,370,'/i/m/image_31151579_25_970x1182_0_2.jpg'),(18496,87,0,371,'/i/m/image_31151579_25_970x1182_0_3.jpg'),(18497,88,0,371,'/i/m/image_31151579_25_970x1182_0_3.jpg'),(18498,89,0,371,'/i/m/image_31151579_25_970x1182_0_3.jpg'),(18499,133,0,371,'/i/m/image_31151579_25_970x1182_0_3.jpg'),(18504,87,0,373,'/4/5/45t54tf.jpg'),(18505,88,0,373,'/4/5/45t54tf.jpg'),(18506,89,0,373,'/4/5/45t54tf.jpg'),(18507,133,0,373,'/4/5/45t54tf.jpg'),(18512,87,0,372,'/4/5/45t54tf_1.jpg'),(18513,88,0,372,'/4/5/45t54tf_1.jpg'),(18514,89,0,372,'/4/5/45t54tf_1.jpg'),(18515,133,0,372,'/4/5/45t54tf_1.jpg'),(18520,87,0,374,'/4/5/45t54tf_2.jpg'),(18521,88,0,374,'/4/5/45t54tf_2.jpg'),(18522,89,0,374,'/4/5/45t54tf_2.jpg'),(18523,133,0,374,'/4/5/45t54tf_2.jpg'),(18528,87,0,375,'/4/5/45t54tf_3.jpg'),(18529,88,0,375,'/4/5/45t54tf_3.jpg'),(18530,89,0,375,'/4/5/45t54tf_3.jpg'),(18531,133,0,375,'/4/5/45t54tf_3.jpg'),(18540,73,0,1228,'Rino & Pelle Quilted Jacket-blue-Extra small size'),(18541,84,0,1228,'Seventy Transitional Jacket'),(18542,86,0,1228,'Seventy Transitional Jacket '),(18543,87,0,1228,'/3/4/343454r4r.jpg'),(18544,88,0,1228,'/3/4/343454r4r.jpg'),(18545,89,0,1228,'/3/4/343454r4r.jpg'),(18546,106,0,1228,'container2'),(18547,121,0,1228,'rino-pelle-quilted-jacket-blue-extra-small-size'),(18548,132,0,1228,'0'),(18549,133,0,1228,'/3/4/343454r4r.jpg'),(18550,206,0,1228,'100% polyamide'),(18555,73,0,1229,'Rino & Pelle Quilted Jacket-blue-Small size'),(18556,84,0,1229,'Seventy Transitional Jacket'),(18557,86,0,1229,'Seventy Transitional Jacket '),(18558,87,0,1229,'/3/4/343454r4r_1.jpg'),(18559,88,0,1229,'/3/4/343454r4r_1.jpg'),(18560,89,0,1229,'/3/4/343454r4r_1.jpg'),(18561,106,0,1229,'container2'),(18562,121,0,1229,'rino-pelle-quilted-jacket-blue-small-size'),(18563,132,0,1229,'0'),(18564,133,0,1229,'/3/4/343454r4r_1.jpg'),(18565,206,0,1229,'100% polyamide'),(18570,73,0,1230,'Rino & Pelle Quilted Jacket-blue-Medium size'),(18571,84,0,1230,'Seventy Transitional Jacket'),(18572,86,0,1230,'Seventy Transitional Jacket '),(18573,87,0,1230,'/3/4/343454r4r_2.jpg'),(18574,88,0,1230,'/3/4/343454r4r_2.jpg'),(18575,89,0,1230,'/3/4/343454r4r_2.jpg'),(18576,106,0,1230,'container2'),(18577,121,0,1230,'rino-pelle-quilted-jacket-blue-medium-size'),(18578,132,0,1230,'0'),(18579,133,0,1230,'/3/4/343454r4r_2.jpg'),(18580,206,0,1230,'100% polyamide'),(18585,87,0,290,'/i/m/image_31220278_21_970x1182_0_4.jpg'),(18586,88,0,290,'/i/m/image_31220278_21_970x1182_0_4.jpg'),(18587,89,0,290,'/i/m/image_31220278_21_970x1182_0_4.jpg'),(18588,133,0,290,'/i/m/image_31220278_21_970x1182_0_4.jpg'),(18593,87,0,291,'/i/m/image_31220278_21_970x1182_0_1_1.jpg'),(18594,88,0,291,'/i/m/image_31220278_21_970x1182_0_1_1.jpg'),(18595,89,0,291,'/i/m/image_31220278_21_970x1182_0_1_1.jpg'),(18596,133,0,291,'/i/m/image_31220278_21_970x1182_0_1_1.jpg'),(18601,87,0,292,'/i/m/image_31220278_21_970x1182_0_2_1.jpg'),(18602,88,0,292,'/i/m/image_31220278_21_970x1182_0_2_1.jpg'),(18603,89,0,292,'/i/m/image_31220278_21_970x1182_0_2_1.jpg'),(18604,133,0,292,'/i/m/image_31220278_21_970x1182_0_2_1.jpg'),(18613,73,0,1231,'Sequin Dress-brown-Extra small size'),(18614,84,0,1231,'Sequin Dress'),(18615,86,0,1231,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(18616,87,0,1231,'/4/5/4565tt.jpg'),(18617,88,0,1231,'/4/5/4565tt.jpg'),(18618,89,0,1231,'/4/5/4565tt.jpg'),(18619,106,0,1231,'container2'),(18620,121,0,1231,'sequin-dress-brown-extra-small-size'),(18621,132,0,1231,'0'),(18622,133,0,1231,'/4/5/4565tt.jpg'),(18623,206,0,1231,' 100% polyeste'),(18628,73,0,1232,'Sequin Dress-brown-Small size'),(18629,84,0,1232,'Sequin Dress'),(18630,86,0,1232,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(18631,87,0,1232,'/4/5/4565tt_1.jpg'),(18632,88,0,1232,'/4/5/4565tt_1.jpg'),(18633,89,0,1232,'/4/5/4565tt_1.jpg'),(18634,106,0,1232,'container2'),(18635,121,0,1232,'sequin-dress-brown-small-size'),(18636,132,0,1232,'0'),(18637,133,0,1232,'/4/5/4565tt_1.jpg'),(18638,206,0,1232,' 100% polyeste'),(18643,73,0,1233,'Sequin Dress-brown-Medium size'),(18644,84,0,1233,'Sequin Dress'),(18645,86,0,1233,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light, t'),(18646,87,0,1233,'/4/5/4565tt_2.jpg'),(18647,88,0,1233,'/4/5/4565tt_2.jpg'),(18648,89,0,1233,'/4/5/4565tt_2.jpg'),(18649,106,0,1233,'container2'),(18650,121,0,1233,'sequin-dress-brown-medium-size'),(18651,132,0,1233,'0'),(18652,133,0,1233,'/4/5/4565tt_2.jpg'),(18653,206,0,1233,' 100% polyeste'),(18658,87,0,532,'/i/m/image_31350778_10_620x757_0_1.jpg'),(18659,88,0,532,'/i/m/image_31350778_10_620x757_0_1.jpg'),(18660,89,0,532,'/i/m/image_31350778_10_620x757_0_1.jpg'),(18661,133,0,532,'/i/m/image_31350778_10_620x757_0_1.jpg'),(18666,87,0,533,'/i/m/image_31350778_10_620x757_0_1_1.jpg'),(18667,88,0,533,'/i/m/image_31350778_10_620x757_0_1_1.jpg'),(18668,89,0,533,'/i/m/image_31350778_10_620x757_0_1_1.jpg'),(18669,133,0,533,'/i/m/image_31350778_10_620x757_0_1_1.jpg'),(18674,87,0,534,'/i/m/image_31350778_10_620x757_0_2.jpg'),(18675,88,0,534,'/i/m/image_31350778_10_620x757_0_2.jpg'),(18676,89,0,534,'/i/m/image_31350778_10_620x757_0_2.jpg'),(18677,133,0,534,'/i/m/image_31350778_10_620x757_0_2.jpg'),(18686,73,0,1234,'Seventy Transitional Jacket-blue-Extra small size'),(18687,84,0,1234,'Seventy Transitional Jacket'),(18688,86,0,1234,'Seventy Transitional Jacket '),(18689,87,0,1234,'/1/2/123w2w2w2.jpg'),(18690,88,0,1234,'/1/2/123w2w2w2.jpg'),(18691,89,0,1234,'/1/2/123w2w2w2.jpg'),(18692,106,0,1234,'container2'),(18693,121,0,1234,'seventy-transitional-jacket-blue-extra-small-size'),(18694,132,0,1234,'0'),(18695,133,0,1234,'/1/2/123w2w2w2.jpg'),(18696,206,0,1234,'Viscose'),(18701,73,0,1235,'Seventy Transitional Jacket-blue-Small size'),(18702,84,0,1235,'Seventy Transitional Jacket'),(18703,86,0,1235,'Seventy Transitional Jacket '),(18704,87,0,1235,'/1/2/123w2w2w2_1.jpg'),(18705,88,0,1235,'/1/2/123w2w2w2_1.jpg'),(18706,89,0,1235,'/1/2/123w2w2w2_1.jpg'),(18707,106,0,1235,'container2'),(18708,121,0,1235,'seventy-transitional-jacket-blue-small-size'),(18709,132,0,1235,'0'),(18710,133,0,1235,'/1/2/123w2w2w2_1.jpg'),(18711,206,0,1235,'Viscose'),(18716,73,0,1236,'Seventy Transitional Jacket-blue-Medium size'),(18717,84,0,1236,'Seventy Transitional Jacket'),(18718,86,0,1236,'Seventy Transitional Jacket '),(18719,87,0,1236,'/1/2/123w2w2w2_2.jpg'),(18720,88,0,1236,'/1/2/123w2w2w2_2.jpg'),(18721,89,0,1236,'/1/2/123w2w2w2_2.jpg'),(18722,106,0,1236,'container2'),(18723,121,0,1236,'seventy-transitional-jacket-blue-medium-size'),(18724,132,0,1236,'0'),(18725,133,0,1236,'/1/2/123w2w2w2_2.jpg'),(18726,206,0,1236,'Viscose'),(18731,73,0,1237,'Seventy Transitional Jacket-blue-Large size'),(18732,84,0,1237,'Seventy Transitional Jacket'),(18733,86,0,1237,'Seventy Transitional Jacket '),(18734,87,0,1237,'/1/2/123w2w2w2_3.jpg'),(18735,88,0,1237,'/1/2/123w2w2w2_3.jpg'),(18736,89,0,1237,'/1/2/123w2w2w2_3.jpg'),(18737,106,0,1237,'container2'),(18738,121,0,1237,'seventy-transitional-jacket-blue-large-size'),(18739,132,0,1237,'0'),(18740,133,0,1237,'/1/2/123w2w2w2_3.jpg'),(18741,206,0,1237,'Viscose'),(18746,87,0,259,'/i/m/image_31261586_25_970x1182_0_1.jpg'),(18747,88,0,259,'/i/m/image_31261586_25_970x1182_0_1.jpg'),(18748,89,0,259,'/i/m/image_31261586_25_970x1182_0_1.jpg'),(18749,133,0,259,'/i/m/image_31261586_25_970x1182_0_1.jpg'),(18754,87,0,257,'/i/m/image_31261586_25_970x1182_0_1_1.jpg'),(18755,88,0,257,'/i/m/image_31261586_25_970x1182_0_1_1.jpg'),(18756,89,0,257,'/i/m/image_31261586_25_970x1182_0_1_1.jpg'),(18757,133,0,257,'/i/m/image_31261586_25_970x1182_0_1_1.jpg'),(18762,87,0,258,'/i/m/image_31261586_25_970x1182_0_2.jpg'),(18763,88,0,258,'/i/m/image_31261586_25_970x1182_0_2.jpg'),(18764,89,0,258,'/i/m/image_31261586_25_970x1182_0_2.jpg'),(18765,133,0,258,'/i/m/image_31261586_25_970x1182_0_2.jpg'),(18770,87,0,260,'/i/m/image_31261586_25_970x1182_0_3.jpg'),(18771,88,0,260,'/i/m/image_31261586_25_970x1182_0_3.jpg'),(18772,89,0,260,'/i/m/image_31261586_25_970x1182_0_3.jpg'),(18773,133,0,260,'/i/m/image_31261586_25_970x1182_0_3.jpg'),(18782,73,0,1238,'Slim Fit Jeans-grey-Extra small size'),(18783,84,0,1238,'Slim Fit Jeans'),(18784,86,0,1238,'Slim Fit Jeans '),(18785,87,0,1238,'/3/4/34re34er.jpg'),(18786,88,0,1238,'/3/4/34re34er.jpg'),(18787,89,0,1238,'/3/4/34re34er.jpg'),(18788,106,0,1238,'container2'),(18789,121,0,1238,'slim-fit-jeans-grey-extra-small-size'),(18790,132,0,1238,'0'),(18791,133,0,1238,'/3/4/34re34er.jpg'),(18796,73,0,1239,'Slim Fit Jeans-grey-Small size'),(18797,84,0,1239,'Slim Fit Jeans'),(18798,86,0,1239,'Slim Fit Jeans '),(18799,87,0,1239,'/3/4/34re34er_1.jpg'),(18800,88,0,1239,'/3/4/34re34er_1.jpg'),(18801,89,0,1239,'/3/4/34re34er_1.jpg'),(18802,106,0,1239,'container2'),(18803,121,0,1239,'slim-fit-jeans-grey-small-size'),(18804,132,0,1239,'0'),(18805,133,0,1239,'/3/4/34re34er_1.jpg'),(18810,73,0,1240,'Slim Fit Jeans-grey-Large size'),(18811,84,0,1240,'Slim Fit Jeans'),(18812,86,0,1240,'Slim Fit Jeans '),(18813,87,0,1240,'/3/4/34re34er_2.jpg'),(18814,88,0,1240,'/3/4/34re34er_2.jpg'),(18815,89,0,1240,'/3/4/34re34er_2.jpg'),(18816,106,0,1240,'container2'),(18817,121,0,1240,'slim-fit-jeans-grey-large-size'),(18818,132,0,1240,'0'),(18819,133,0,1240,'/3/4/34re34er_2.jpg'),(18824,73,0,1241,'Slim Fit Jeans-grey-Extra large size'),(18825,84,0,1241,'Slim Fit Jeans'),(18826,86,0,1241,'Slim Fit Jeans '),(18827,87,0,1241,'/3/4/34re34er_3.jpg'),(18828,88,0,1241,'/3/4/34re34er_3.jpg'),(18829,89,0,1241,'/3/4/34re34er_3.jpg'),(18830,106,0,1241,'container2'),(18831,121,0,1241,'slim-fit-jeans-grey-extra-large-size'),(18832,132,0,1241,'0'),(18833,133,0,1241,'/3/4/34re34er_3.jpg'),(18838,87,0,190,'/i/m/image_31125033_85_970x1182_0_1.jpg'),(18839,88,0,190,'/i/m/image_31125033_85_970x1182_0_1.jpg'),(18840,89,0,190,'/i/m/image_31125033_85_970x1182_0_1.jpg'),(18841,133,0,190,'/i/m/image_31125033_85_970x1182_0_1.jpg'),(18846,87,0,192,'/i/m/image_31125033_85_970x1182_0_1_1.jpg'),(18847,88,0,192,'/i/m/image_31125033_85_970x1182_0_1_1.jpg'),(18848,89,0,192,'/i/m/image_31125033_85_970x1182_0_1_1.jpg'),(18849,133,0,192,'/i/m/image_31125033_85_970x1182_0_1_1.jpg'),(18854,87,0,193,'/i/m/image_31125033_85_970x1182_0_2.jpg'),(18855,88,0,193,'/i/m/image_31125033_85_970x1182_0_2.jpg'),(18856,89,0,193,'/i/m/image_31125033_85_970x1182_0_2.jpg'),(18857,133,0,193,'/i/m/image_31125033_85_970x1182_0_2.jpg'),(18862,87,0,191,'/i/m/image_31125033_85_970x1182_0_3.jpg'),(18863,88,0,191,'/i/m/image_31125033_85_970x1182_0_3.jpg'),(18864,89,0,191,'/i/m/image_31125033_85_970x1182_0_3.jpg'),(18865,133,0,191,'/i/m/image_31125033_85_970x1182_0_3.jpg'),(18874,73,0,1242,'Slim Fit Jeans – Eline-Extra small size-grey'),(18875,84,0,1242,'Slim Fit Jeans – Eline'),(18876,86,0,1242,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a'),(18877,87,0,1242,'/3/4/343e3e3e2.jpg'),(18878,88,0,1242,'/3/4/343e3e3e2.jpg'),(18879,89,0,1242,'/3/4/343e3e3e2.jpg'),(18880,106,0,1242,'container2'),(18881,121,0,1242,'slim-fit-jeans-eline-extra-small-size-grey'),(18882,132,0,1242,'0'),(18883,133,0,1242,'/3/4/343e3e3e2.jpg'),(18888,73,0,1243,'Slim Fit Jeans – Eline-Small size-grey'),(18889,84,0,1243,'Slim Fit Jeans – Eline'),(18890,86,0,1243,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a'),(18891,87,0,1243,'/3/4/343e3e3e2_1.jpg'),(18892,88,0,1243,'/3/4/343e3e3e2_1.jpg'),(18893,89,0,1243,'/3/4/343e3e3e2_1.jpg'),(18894,106,0,1243,'container2'),(18895,121,0,1243,'slim-fit-jeans-eline-small-size-grey'),(18896,132,0,1243,'0'),(18897,133,0,1243,'/3/4/343e3e3e2_1.jpg'),(18902,73,0,1244,'Slim Fit Jeans – Eline-Medium size-grey'),(18903,84,0,1244,'Slim Fit Jeans – Eline'),(18904,86,0,1244,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a'),(18905,87,0,1244,'/3/4/343e3e3e2_2.jpg'),(18906,88,0,1244,'/3/4/343e3e3e2_2.jpg'),(18907,89,0,1244,'/3/4/343e3e3e2_2.jpg'),(18908,106,0,1244,'container2'),(18909,121,0,1244,'slim-fit-jeans-eline-medium-size-grey'),(18910,132,0,1244,'0'),(18911,133,0,1244,'/3/4/343e3e3e2_2.jpg'),(18916,73,0,1245,'Slim Fit Jeans – Eline-Large size-grey'),(18917,84,0,1245,'Slim Fit Jeans – Eline'),(18918,86,0,1245,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a'),(18919,87,0,1245,'/3/4/343e3e3e2_3.jpg'),(18920,88,0,1245,'/3/4/343e3e3e2_3.jpg'),(18921,89,0,1245,'/3/4/343e3e3e2_3.jpg'),(18922,106,0,1245,'container2'),(18923,121,0,1245,'slim-fit-jeans-eline-large-size-grey'),(18924,132,0,1245,'0'),(18925,133,0,1245,'/3/4/343e3e3e2_3.jpg'),(18930,73,0,1246,'Slim Fit Jeans – Eline-Extra large size-grey'),(18931,84,0,1246,'Slim Fit Jeans – Eline'),(18932,86,0,1246,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a'),(18933,87,0,1246,'/3/4/343e3e3e2_4.jpg'),(18934,88,0,1246,'/3/4/343e3e3e2_4.jpg'),(18935,89,0,1246,'/3/4/343e3e3e2_4.jpg'),(18936,106,0,1246,'container2'),(18937,121,0,1246,'slim-fit-jeans-eline-extra-large-size-grey'),(18938,132,0,1246,'0'),(18939,133,0,1246,'/3/4/343e3e3e2_4.jpg'),(18944,87,0,274,'/i/m/image_31233103_34_970x1182_0_1.jpg'),(18945,88,0,274,'/i/m/image_31233103_34_970x1182_0_1.jpg'),(18946,89,0,274,'/i/m/image_31233103_34_970x1182_0_1.jpg'),(18947,133,0,274,'/i/m/image_31233103_34_970x1182_0_1.jpg'),(18952,87,0,272,'/i/m/image_31233103_34_970x1182_0_1_1.jpg'),(18953,88,0,272,'/i/m/image_31233103_34_970x1182_0_1_1.jpg'),(18954,89,0,272,'/i/m/image_31233103_34_970x1182_0_1_1.jpg'),(18955,133,0,272,'/i/m/image_31233103_34_970x1182_0_1_1.jpg'),(18960,87,0,273,'/i/m/image_31233103_34_970x1182_0_2.jpg'),(18961,88,0,273,'/i/m/image_31233103_34_970x1182_0_2.jpg'),(18962,89,0,273,'/i/m/image_31233103_34_970x1182_0_2.jpg'),(18963,133,0,273,'/i/m/image_31233103_34_970x1182_0_2.jpg'),(18968,87,0,275,'/i/m/image_31233103_34_970x1182_0_3.jpg'),(18969,88,0,275,'/i/m/image_31233103_34_970x1182_0_3.jpg'),(18970,89,0,275,'/i/m/image_31233103_34_970x1182_0_3.jpg'),(18971,133,0,275,'/i/m/image_31233103_34_970x1182_0_3.jpg'),(18976,87,0,276,'/i/m/image_31233103_34_970x1182_0_4.jpg'),(18977,88,0,276,'/i/m/image_31233103_34_970x1182_0_4.jpg'),(18978,89,0,276,'/i/m/image_31233103_34_970x1182_0_4.jpg'),(18979,133,0,276,'/i/m/image_31233103_34_970x1182_0_4.jpg'),(18980,73,0,1247,'Silk Pumps-blue-EU 36'),(18981,84,0,1247,'Black Chino'),(18982,86,0,1247,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(18983,87,0,1247,'/2/3/232e2e2e2e2e.jpg'),(18984,88,0,1247,'/2/3/232e2e2e2e2e.jpg'),(18985,89,0,1247,'/2/3/232e2e2e2e2e.jpg'),(18986,106,0,1247,'container2'),(18987,121,0,1247,'silk-pumps-blue-eu-36'),(18988,132,0,1247,'0'),(18989,133,0,1247,'/2/3/232e2e2e2e2e.jpg'),(18990,206,0,1247,'Synthetic'),(18995,73,0,1248,'Silk Pumps-blue-EU 37'),(18996,84,0,1248,'Black Chino'),(18997,86,0,1248,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(18998,87,0,1248,'/2/3/232e2e2e2e2e_1.jpg'),(18999,88,0,1248,'/2/3/232e2e2e2e2e_1.jpg'),(19000,89,0,1248,'/2/3/232e2e2e2e2e_1.jpg'),(19001,106,0,1248,'container2'),(19002,121,0,1248,'silk-pumps-blue-eu-37'),(19003,132,0,1248,'0'),(19004,133,0,1248,'/2/3/232e2e2e2e2e_1.jpg'),(19005,206,0,1248,'Synthetic'),(19010,73,0,1249,'Silk Pumps-blue-EU 38'),(19011,84,0,1249,'Black Chino'),(19012,86,0,1249,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19013,87,0,1249,'/2/3/232e2e2e2e2e_2.jpg'),(19014,88,0,1249,'/2/3/232e2e2e2e2e_2.jpg'),(19015,89,0,1249,'/2/3/232e2e2e2e2e_2.jpg'),(19016,106,0,1249,'container2'),(19017,121,0,1249,'silk-pumps-blue-eu-38'),(19018,132,0,1249,'0'),(19019,133,0,1249,'/2/3/232e2e2e2e2e_2.jpg'),(19020,206,0,1249,'Synthetic'),(19025,73,0,1250,'Silk Pumps-blue-EU 40'),(19026,84,0,1250,'Black Chino'),(19027,86,0,1250,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19028,87,0,1250,'/2/3/232e2e2e2e2e_3.jpg'),(19029,88,0,1250,'/2/3/232e2e2e2e2e_3.jpg'),(19030,89,0,1250,'/2/3/232e2e2e2e2e_3.jpg'),(19031,106,0,1250,'container2'),(19032,121,0,1250,'silk-pumps-blue-eu-40'),(19033,132,0,1250,'0'),(19034,133,0,1250,'/2/3/232e2e2e2e2e_3.jpg'),(19035,206,0,1250,'Synthetic'),(19040,87,0,351,'/i/m/image_31103364_21_620x757_0_2.jpg'),(19041,88,0,351,'/i/m/image_31103364_21_620x757_0_2.jpg'),(19042,89,0,351,'/i/m/image_31103364_21_620x757_0_2.jpg'),(19043,133,0,351,'/i/m/image_31103364_21_620x757_0_2.jpg'),(19048,87,0,350,'/i/m/image_31103364_21_620x757_0_1_1.jpg'),(19049,88,0,350,'/i/m/image_31103364_21_620x757_0_1_1.jpg'),(19050,89,0,350,'/i/m/image_31103364_21_620x757_0_1_1.jpg'),(19051,133,0,350,'/i/m/image_31103364_21_620x757_0_1_1.jpg'),(19056,87,0,352,'/i/m/image_31103364_21_620x757_0_2_1.jpg'),(19057,88,0,352,'/i/m/image_31103364_21_620x757_0_2_1.jpg'),(19058,89,0,352,'/i/m/image_31103364_21_620x757_0_2_1.jpg'),(19059,133,0,352,'/i/m/image_31103364_21_620x757_0_2_1.jpg'),(19064,87,0,353,'/i/m/image_31103364_21_620x757_0_3.jpg'),(19065,88,0,353,'/i/m/image_31103364_21_620x757_0_3.jpg'),(19066,89,0,353,'/i/m/image_31103364_21_620x757_0_3.jpg'),(19067,133,0,353,'/i/m/image_31103364_21_620x757_0_3.jpg'),(19076,73,0,1251,'Silver Pumps-red-EU 36'),(19077,84,0,1251,'Black Chino'),(19078,86,0,1251,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19079,87,0,1251,'/2/3/2323r23r.jpg'),(19080,88,0,1251,'/2/3/2323r23r.jpg'),(19081,89,0,1251,'/2/3/2323r23r.jpg'),(19082,106,0,1251,'container2'),(19083,121,0,1251,'silver-pumps-red-eu-36'),(19084,132,0,1251,'0'),(19085,133,0,1251,'/2/3/2323r23r.jpg'),(19086,206,0,1251,'Leather'),(19091,73,0,1252,'Silver Pumps-red-EU 37'),(19092,84,0,1252,'Black Chino'),(19093,86,0,1252,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19094,87,0,1252,'/2/3/2323r23r_1.jpg'),(19095,88,0,1252,'/2/3/2323r23r_1.jpg'),(19096,89,0,1252,'/2/3/2323r23r_1.jpg'),(19097,106,0,1252,'container2'),(19098,121,0,1252,'silver-pumps-red-eu-37'),(19099,132,0,1252,'0'),(19100,133,0,1252,'/2/3/2323r23r_1.jpg'),(19101,206,0,1252,'Leather'),(19106,73,0,1253,'Silver Pumps-red-EU 38'),(19107,84,0,1253,'Black Chino'),(19108,86,0,1253,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19109,87,0,1253,'/2/3/2323r23r_2.jpg'),(19110,88,0,1253,'/2/3/2323r23r_2.jpg'),(19111,89,0,1253,'/2/3/2323r23r_2.jpg'),(19112,106,0,1253,'container2'),(19113,121,0,1253,'silver-pumps-red-eu-38'),(19114,132,0,1253,'0'),(19115,133,0,1253,'/2/3/2323r23r_2.jpg'),(19116,206,0,1253,'Leather'),(19121,73,0,1254,'Silver Pumps-red-EU 39'),(19122,84,0,1254,'Black Chino'),(19123,86,0,1254,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19124,87,0,1254,'/2/3/2323r23r_3.jpg'),(19125,88,0,1254,'/2/3/2323r23r_3.jpg'),(19126,89,0,1254,'/2/3/2323r23r_3.jpg'),(19127,106,0,1254,'container2'),(19128,121,0,1254,'silver-pumps-red-eu-39'),(19129,132,0,1254,'0'),(19130,133,0,1254,'/2/3/2323r23r_3.jpg'),(19131,206,0,1254,'Leather'),(19136,73,0,1255,'Silver Pumps-red-EU 40'),(19137,84,0,1255,'Black Chino'),(19138,86,0,1255,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19139,87,0,1255,'/2/3/2323r23r_4.jpg'),(19140,88,0,1255,'/2/3/2323r23r_4.jpg'),(19141,89,0,1255,'/2/3/2323r23r_4.jpg'),(19142,106,0,1255,'container2'),(19143,121,0,1255,'silver-pumps-red-eu-40'),(19144,132,0,1255,'0'),(19145,133,0,1255,'/2/3/2323r23r_4.jpg'),(19146,206,0,1255,'Leather'),(19151,73,0,1256,'Silver Pumps-red-EU 41'),(19152,84,0,1256,'Black Chino'),(19153,86,0,1256,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19154,87,0,1256,'/2/3/2323r23r_5.jpg'),(19155,88,0,1256,'/2/3/2323r23r_5.jpg'),(19156,89,0,1256,'/2/3/2323r23r_5.jpg'),(19157,106,0,1256,'container2'),(19158,121,0,1256,'silver-pumps-red-eu-41'),(19159,132,0,1256,'0'),(19160,133,0,1256,'/2/3/2323r23r_5.jpg'),(19161,206,0,1256,'Leather'),(19166,87,0,322,'/i/m/image_31074190_83_620x757_0_1.jpg'),(19167,88,0,322,'/i/m/image_31074190_83_620x757_0_1.jpg'),(19168,89,0,322,'/i/m/image_31074190_83_620x757_0_1.jpg'),(19169,133,0,322,'/i/m/image_31074190_83_620x757_0_1.jpg'),(19174,87,0,323,'/i/m/image_31074190_83_620x757_0_1_1.jpg'),(19175,88,0,323,'/i/m/image_31074190_83_620x757_0_1_1.jpg'),(19176,89,0,323,'/i/m/image_31074190_83_620x757_0_1_1.jpg'),(19177,133,0,323,'/i/m/image_31074190_83_620x757_0_1_1.jpg'),(19182,87,0,324,'/i/m/image_31074190_83_620x757_0_2.jpg'),(19183,88,0,324,'/i/m/image_31074190_83_620x757_0_2.jpg'),(19184,89,0,324,'/i/m/image_31074190_83_620x757_0_2.jpg'),(19185,133,0,324,'/i/m/image_31074190_83_620x757_0_2.jpg'),(19190,87,0,325,'/i/m/image_31074190_83_620x757_0_3.jpg'),(19191,88,0,325,'/i/m/image_31074190_83_620x757_0_3.jpg'),(19192,89,0,325,'/i/m/image_31074190_83_620x757_0_3.jpg'),(19193,133,0,325,'/i/m/image_31074190_83_620x757_0_3.jpg'),(19198,87,0,326,'/i/m/image_31074190_83_620x757_0_4.jpg'),(19199,88,0,326,'/i/m/image_31074190_83_620x757_0_4.jpg'),(19200,89,0,326,'/i/m/image_31074190_83_620x757_0_4.jpg'),(19201,133,0,326,'/i/m/image_31074190_83_620x757_0_4.jpg'),(19206,87,0,327,'/i/m/image_31074190_83_620x757_0_5.jpg'),(19207,88,0,327,'/i/m/image_31074190_83_620x757_0_5.jpg'),(19208,89,0,327,'/i/m/image_31074190_83_620x757_0_5.jpg'),(19209,133,0,327,'/i/m/image_31074190_83_620x757_0_5.jpg'),(19218,73,0,1257,'Slim Fit Jeans – Jane-Extra small size-grey'),(19219,84,0,1257,'Slim Fit Jeans – Jane'),(19220,86,0,1257,'Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPo'),(19221,87,0,1257,'/2/1/211w1w1w2.jpg'),(19222,88,0,1257,'/2/1/211w1w1w2.jpg'),(19223,89,0,1257,'/2/1/211w1w1w2.jpg'),(19224,106,0,1257,'container2'),(19225,121,0,1257,'slim-fit-jeans-jane-extra-small-size-grey'),(19226,132,0,1257,'0'),(19227,133,0,1257,'/2/1/211w1w1w2.jpg'),(19232,73,0,1258,'Slim Fit Jeans – Jane-Small size-grey'),(19233,84,0,1258,'Slim Fit Jeans – Jane'),(19234,86,0,1258,'Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPo'),(19235,87,0,1258,'/2/1/211w1w1w2_1.jpg'),(19236,88,0,1258,'/2/1/211w1w1w2_1.jpg'),(19237,89,0,1258,'/2/1/211w1w1w2_1.jpg'),(19238,106,0,1258,'container2'),(19239,121,0,1258,'slim-fit-jeans-jane-small-size-grey'),(19240,132,0,1258,'0'),(19241,133,0,1258,'/2/1/211w1w1w2_1.jpg'),(19246,73,0,1259,'Slim Fit Jeans – Jane-Medium size-grey'),(19247,84,0,1259,'Slim Fit Jeans – Jane'),(19248,86,0,1259,'Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPo'),(19249,87,0,1259,'/2/1/211w1w1w2_2.jpg'),(19250,88,0,1259,'/2/1/211w1w1w2_2.jpg'),(19251,89,0,1259,'/2/1/211w1w1w2_2.jpg'),(19252,106,0,1259,'container2'),(19253,121,0,1259,'slim-fit-jeans-jane-medium-size-grey'),(19254,132,0,1259,'0'),(19255,133,0,1259,'/2/1/211w1w1w2_2.jpg'),(19260,73,0,1260,'Slim Fit Jeans – Jane-Large size-grey'),(19261,84,0,1260,'Slim Fit Jeans – Jane'),(19262,86,0,1260,'Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPo'),(19263,87,0,1260,'/2/1/211w1w1w2_3.jpg'),(19264,88,0,1260,'/2/1/211w1w1w2_3.jpg'),(19265,89,0,1260,'/2/1/211w1w1w2_3.jpg'),(19266,106,0,1260,'container2'),(19267,121,0,1260,'slim-fit-jeans-jane-large-size-grey'),(19268,132,0,1260,'0'),(19269,133,0,1260,'/2/1/211w1w1w2_3.jpg'),(19274,87,0,315,'/i/m/image_30930729_37_970x1182_0_1.jpg'),(19275,88,0,315,'/i/m/image_30930729_37_970x1182_0_1.jpg'),(19276,89,0,315,'/i/m/image_30930729_37_970x1182_0_1.jpg'),(19277,133,0,315,'/i/m/image_30930729_37_970x1182_0_1.jpg'),(19282,87,0,314,'/i/m/image_30930729_37_970x1182_0_1_1.jpg'),(19283,88,0,314,'/i/m/image_30930729_37_970x1182_0_1_1.jpg'),(19284,89,0,314,'/i/m/image_30930729_37_970x1182_0_1_1.jpg'),(19285,133,0,314,'/i/m/image_30930729_37_970x1182_0_1_1.jpg'),(19290,87,0,312,'/i/m/image_30930729_37_970x1182_0_2.jpg'),(19291,88,0,312,'/i/m/image_30930729_37_970x1182_0_2.jpg'),(19292,89,0,312,'/i/m/image_30930729_37_970x1182_0_2.jpg'),(19293,133,0,312,'/i/m/image_30930729_37_970x1182_0_2.jpg'),(19298,87,0,313,'/i/m/image_30930729_37_970x1182_0_3.jpg'),(19299,88,0,313,'/i/m/image_30930729_37_970x1182_0_3.jpg'),(19300,89,0,313,'/i/m/image_30930729_37_970x1182_0_3.jpg'),(19301,133,0,313,'/i/m/image_30930729_37_970x1182_0_3.jpg'),(19310,73,0,1261,'Sneakers-blue-EU 37'),(19311,84,0,1261,'Black Chino'),(19312,86,0,1261,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19313,87,0,1261,'/2/3/2342ee3e3.jpg'),(19314,88,0,1261,'/2/3/2342ee3e3.jpg'),(19315,89,0,1261,'/2/3/2342ee3e3.jpg'),(19316,106,0,1261,'container2'),(19317,121,0,1261,'sneakers-blue-eu-37'),(19318,132,0,1261,'0'),(19319,133,0,1261,'/2/3/2342ee3e3.jpg'),(19320,206,0,1261,'Synthetic'),(19325,73,0,1262,'Sneakers-blue-EU 38'),(19326,84,0,1262,'Black Chino'),(19327,86,0,1262,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19328,87,0,1262,'/2/3/2342ee3e3_1.jpg'),(19329,88,0,1262,'/2/3/2342ee3e3_1.jpg'),(19330,89,0,1262,'/2/3/2342ee3e3_1.jpg'),(19331,106,0,1262,'container2'),(19332,121,0,1262,'sneakers-blue-eu-38'),(19333,132,0,1262,'0'),(19334,133,0,1262,'/2/3/2342ee3e3_1.jpg'),(19335,206,0,1262,'Synthetic'),(19340,73,0,1263,'Sneakers-blue-EU 39'),(19341,84,0,1263,'Black Chino'),(19342,86,0,1263,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19343,87,0,1263,'/2/3/2342ee3e3_2.jpg'),(19344,88,0,1263,'/2/3/2342ee3e3_2.jpg'),(19345,89,0,1263,'/2/3/2342ee3e3_2.jpg'),(19346,106,0,1263,'container2'),(19347,121,0,1263,'sneakers-blue-eu-39'),(19348,132,0,1263,'0'),(19349,133,0,1263,'/2/3/2342ee3e3_2.jpg'),(19350,206,0,1263,'Synthetic'),(19355,73,0,1264,'Sneakers-blue-EU 40'),(19356,84,0,1264,'Black Chino'),(19357,86,0,1264,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19358,87,0,1264,'/2/3/2342ee3e3_3.jpg'),(19359,88,0,1264,'/2/3/2342ee3e3_3.jpg'),(19360,89,0,1264,'/2/3/2342ee3e3_3.jpg'),(19361,106,0,1264,'container2'),(19362,121,0,1264,'sneakers-blue-eu-40'),(19363,132,0,1264,'0'),(19364,133,0,1264,'/2/3/2342ee3e3_3.jpg'),(19365,206,0,1264,'Synthetic'),(19370,73,0,1265,'Sneakers-blue-EU 41'),(19371,84,0,1265,'Black Chino'),(19372,86,0,1265,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19373,87,0,1265,'/2/3/2342ee3e3_4.jpg'),(19374,88,0,1265,'/2/3/2342ee3e3_4.jpg'),(19375,89,0,1265,'/2/3/2342ee3e3_4.jpg'),(19376,106,0,1265,'container2'),(19377,121,0,1265,'sneakers-blue-eu-41'),(19378,132,0,1265,'0'),(19379,133,0,1265,'/2/3/2342ee3e3_4.jpg'),(19380,206,0,1265,'Synthetic'),(19385,87,0,416,'/i/m/image_31093629_20_620x757_0_1.jpg'),(19386,88,0,416,'/i/m/image_31093629_20_620x757_0_1.jpg'),(19387,89,0,416,'/i/m/image_31093629_20_620x757_0_1.jpg'),(19388,133,0,416,'/i/m/image_31093629_20_620x757_0_1.jpg'),(19393,87,0,417,'/i/m/image_31093629_20_620x757_0_1_1.jpg'),(19394,88,0,417,'/i/m/image_31093629_20_620x757_0_1_1.jpg'),(19395,89,0,417,'/i/m/image_31093629_20_620x757_0_1_1.jpg'),(19396,133,0,417,'/i/m/image_31093629_20_620x757_0_1_1.jpg'),(19401,87,0,418,'/i/m/image_31093629_20_620x757_0_2.jpg'),(19402,88,0,418,'/i/m/image_31093629_20_620x757_0_2.jpg'),(19403,89,0,418,'/i/m/image_31093629_20_620x757_0_2.jpg'),(19404,133,0,418,'/i/m/image_31093629_20_620x757_0_2.jpg'),(19409,87,0,420,'/i/m/image_31093629_20_620x757_0_3.jpg'),(19410,88,0,420,'/i/m/image_31093629_20_620x757_0_3.jpg'),(19411,89,0,420,'/i/m/image_31093629_20_620x757_0_3.jpg'),(19412,133,0,420,'/i/m/image_31093629_20_620x757_0_3.jpg'),(19417,87,0,419,'/i/m/image_31093629_20_620x757_0_4.jpg'),(19418,88,0,419,'/i/m/image_31093629_20_620x757_0_4.jpg'),(19419,89,0,419,'/i/m/image_31093629_20_620x757_0_4.jpg'),(19420,133,0,419,'/i/m/image_31093629_20_620x757_0_4.jpg'),(19425,87,0,421,'/2/3/23423433.jpg'),(19426,88,0,421,'/2/3/23423433.jpg'),(19427,89,0,421,'/2/3/23423433.jpg'),(19428,133,0,421,'/2/3/23423433.jpg'),(19433,87,0,422,'/2/3/23423433_1.jpg'),(19434,88,0,422,'/2/3/23423433_1.jpg'),(19435,89,0,422,'/2/3/23423433_1.jpg'),(19436,133,0,422,'/2/3/23423433_1.jpg'),(19441,87,0,423,'/2/3/23423433_2.jpg'),(19442,88,0,423,'/2/3/23423433_2.jpg'),(19443,89,0,423,'/2/3/23423433_2.jpg'),(19444,133,0,423,'/2/3/23423433_2.jpg'),(19449,87,0,425,'/2/3/23423433_3.jpg'),(19450,88,0,425,'/2/3/23423433_3.jpg'),(19451,89,0,425,'/2/3/23423433_3.jpg'),(19452,133,0,425,'/2/3/23423433_3.jpg'),(19457,87,0,424,'/2/3/23423433_4.jpg'),(19458,88,0,424,'/2/3/23423433_4.jpg'),(19459,89,0,424,'/2/3/23423433_4.jpg'),(19460,133,0,424,'/2/3/23423433_4.jpg'),(19469,73,0,1266,'Sneakers-black-EU 36'),(19470,84,0,1266,'Black Chino'),(19471,86,0,1266,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19472,87,0,1266,'/4/3/43454r4r4r.jpg'),(19473,88,0,1266,'/4/3/43454r4r4r.jpg'),(19474,89,0,1266,'/4/3/43454r4r4r.jpg'),(19475,106,0,1266,'container2'),(19476,121,0,1266,'sneakers-black-eu-36'),(19477,132,0,1266,'0'),(19478,133,0,1266,'/4/3/43454r4r4r.jpg'),(19479,206,0,1266,'Synthetic'),(19484,73,0,1267,'Sneakers-black-EU 38'),(19485,84,0,1267,'Black Chino'),(19486,86,0,1267,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19487,87,0,1267,'/4/3/43454r4r4r_1.jpg'),(19488,88,0,1267,'/4/3/43454r4r4r_1.jpg'),(19489,89,0,1267,'/4/3/43454r4r4r_1.jpg'),(19490,106,0,1267,'container2'),(19491,121,0,1267,'sneakers-black-eu-38'),(19492,132,0,1267,'0'),(19493,133,0,1267,'/4/3/43454r4r4r_1.jpg'),(19494,206,0,1267,'Synthetic'),(19499,73,0,1268,'Sneakers-black-EU 39'),(19500,84,0,1268,'Black Chino'),(19501,86,0,1268,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19502,87,0,1268,'/4/3/43454r4r4r_2.jpg'),(19503,88,0,1268,'/4/3/43454r4r4r_2.jpg'),(19504,89,0,1268,'/4/3/43454r4r4r_2.jpg'),(19505,106,0,1268,'container2'),(19506,121,0,1268,'sneakers-black-eu-39'),(19507,132,0,1268,'0'),(19508,133,0,1268,'/4/3/43454r4r4r_2.jpg'),(19509,206,0,1268,'Synthetic'),(19514,73,0,1269,'Sneakers-black-EU 40'),(19515,84,0,1269,'Black Chino'),(19516,86,0,1269,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19517,87,0,1269,'/4/3/43454r4r4r_3.jpg'),(19518,88,0,1269,'/4/3/43454r4r4r_3.jpg'),(19519,89,0,1269,'/4/3/43454r4r4r_3.jpg'),(19520,106,0,1269,'container2'),(19521,121,0,1269,'sneakers-black-eu-40'),(19522,132,0,1269,'0'),(19523,133,0,1269,'/4/3/43454r4r4r_3.jpg'),(19524,206,0,1269,'Synthetic'),(19529,73,0,1270,'Sneakers-black-EU 41'),(19530,84,0,1270,'Black Chino'),(19531,86,0,1270,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19532,87,0,1270,'/4/3/43454r4r4r_4.jpg'),(19533,88,0,1270,'/4/3/43454r4r4r_4.jpg'),(19534,89,0,1270,'/4/3/43454r4r4r_4.jpg'),(19535,106,0,1270,'container2'),(19536,121,0,1270,'sneakers-black-eu-41'),(19537,132,0,1270,'0'),(19538,133,0,1270,'/4/3/43454r4r4r_4.jpg'),(19539,206,0,1270,'Synthetic'),(19544,73,0,1271,'Sneakers-black-EU 43'),(19545,84,0,1271,'Black Chino'),(19546,86,0,1271,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19547,87,0,1271,'/4/3/43454r4r4r_5.jpg'),(19548,88,0,1271,'/4/3/43454r4r4r_5.jpg'),(19549,89,0,1271,'/4/3/43454r4r4r_5.jpg'),(19550,106,0,1271,'container2'),(19551,121,0,1271,'sneakers-black-eu-43'),(19552,132,0,1271,'0'),(19553,133,0,1271,'/4/3/43454r4r4r_5.jpg'),(19554,206,0,1271,'Synthetic'),(19559,87,0,449,'/i/m/image_30945868_82_620x757_0_1.jpg'),(19560,88,0,449,'/i/m/image_30945868_82_620x757_0_1.jpg'),(19561,89,0,449,'/i/m/image_30945868_82_620x757_0_1.jpg'),(19562,133,0,449,'/i/m/image_30945868_82_620x757_0_1.jpg'),(19567,87,0,450,'/i/m/image_30945868_82_620x757_0_1_1.jpg'),(19568,88,0,450,'/i/m/image_30945868_82_620x757_0_1_1.jpg'),(19569,89,0,450,'/i/m/image_30945868_82_620x757_0_1_1.jpg'),(19570,133,0,450,'/i/m/image_30945868_82_620x757_0_1_1.jpg'),(19575,87,0,451,'/i/m/image_30945868_82_620x757_0_2.jpg'),(19576,88,0,451,'/i/m/image_30945868_82_620x757_0_2.jpg'),(19577,89,0,451,'/i/m/image_30945868_82_620x757_0_2.jpg'),(19578,133,0,451,'/i/m/image_30945868_82_620x757_0_2.jpg'),(19583,87,0,453,'/i/m/image_30945868_82_620x757_0_3.jpg'),(19584,88,0,453,'/i/m/image_30945868_82_620x757_0_3.jpg'),(19585,89,0,453,'/i/m/image_30945868_82_620x757_0_3.jpg'),(19586,133,0,453,'/i/m/image_30945868_82_620x757_0_3.jpg'),(19591,87,0,452,'/i/m/image_30945868_82_620x757_0_4.jpg'),(19592,88,0,452,'/i/m/image_30945868_82_620x757_0_4.jpg'),(19593,89,0,452,'/i/m/image_30945868_82_620x757_0_4.jpg'),(19594,133,0,452,'/i/m/image_30945868_82_620x757_0_4.jpg'),(19599,87,0,454,'/i/m/image_30945868_82_620x757_0_5.jpg'),(19600,88,0,454,'/i/m/image_30945868_82_620x757_0_5.jpg'),(19601,89,0,454,'/i/m/image_30945868_82_620x757_0_5.jpg'),(19602,133,0,454,'/i/m/image_30945868_82_620x757_0_5.jpg'),(19611,73,0,1272,'Sneakers-EU 36-blue'),(19612,84,0,1272,'Black Chino'),(19613,86,0,1272,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19614,87,0,1272,'/2/3/235423r4f4r.jpg'),(19615,88,0,1272,'/2/3/235423r4f4r.jpg'),(19616,89,0,1272,'/2/3/235423r4f4r.jpg'),(19617,106,0,1272,'container2'),(19618,121,0,1272,'sneakers-eu-36-blue'),(19619,132,0,1272,'0'),(19620,133,0,1272,'/2/3/235423r4f4r.jpg'),(19621,206,0,1272,'Synthetic'),(19626,73,0,1273,'Sneakers-EU 36-red'),(19627,84,0,1273,'Black Chino'),(19628,86,0,1273,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19629,87,0,1273,'/i/m/image_31333018_65_620x757_0_1.jpg'),(19630,88,0,1273,'/i/m/image_31333018_65_620x757_0_1.jpg'),(19631,89,0,1273,'/i/m/image_31333018_65_620x757_0_1.jpg'),(19632,106,0,1273,'container2'),(19633,121,0,1273,'sneakers-eu-36-red'),(19634,132,0,1273,'0'),(19635,133,0,1273,'/i/m/image_31333018_65_620x757_0_1.jpg'),(19636,206,0,1273,'Synthetic'),(19641,73,0,1274,'Sneakers-EU 37-blue'),(19642,84,0,1274,'Black Chino'),(19643,86,0,1274,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19644,87,0,1274,'/2/3/235423r4f4r_1.jpg'),(19645,88,0,1274,'/2/3/235423r4f4r_1.jpg'),(19646,89,0,1274,'/2/3/235423r4f4r_1.jpg'),(19647,106,0,1274,'container2'),(19648,121,0,1274,'sneakers-eu-37-blue'),(19649,132,0,1274,'0'),(19650,133,0,1274,'/2/3/235423r4f4r_1.jpg'),(19651,206,0,1274,'Synthetic'),(19656,73,0,1275,'Sneakers-EU 37-red'),(19657,84,0,1275,'Black Chino'),(19658,86,0,1275,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19659,87,0,1275,'/i/m/image_31333018_65_620x757_0_1_1.jpg'),(19660,88,0,1275,'/i/m/image_31333018_65_620x757_0_1_1.jpg'),(19661,89,0,1275,'/i/m/image_31333018_65_620x757_0_1_1.jpg'),(19662,106,0,1275,'container2'),(19663,121,0,1275,'sneakers-eu-37-red'),(19664,132,0,1275,'0'),(19665,133,0,1275,'/i/m/image_31333018_65_620x757_0_1_1.jpg'),(19666,206,0,1275,'Synthetic'),(19671,73,0,1276,'Sneakers-EU 38-blue'),(19672,84,0,1276,'Black Chino'),(19673,86,0,1276,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19674,87,0,1276,'/2/3/235423r4f4r_2.jpg'),(19675,88,0,1276,'/2/3/235423r4f4r_2.jpg'),(19676,89,0,1276,'/2/3/235423r4f4r_2.jpg'),(19677,106,0,1276,'container2'),(19678,121,0,1276,'sneakers-eu-38-blue'),(19679,132,0,1276,'0'),(19680,133,0,1276,'/2/3/235423r4f4r_2.jpg'),(19681,206,0,1276,'Synthetic'),(19686,73,0,1277,'Sneakers-EU 38-red'),(19687,84,0,1277,'Black Chino'),(19688,86,0,1277,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19689,87,0,1277,'/i/m/image_31333018_65_620x757_0_2.jpg'),(19690,88,0,1277,'/i/m/image_31333018_65_620x757_0_2.jpg'),(19691,89,0,1277,'/i/m/image_31333018_65_620x757_0_2.jpg'),(19692,106,0,1277,'container2'),(19693,121,0,1277,'sneakers-eu-38-red'),(19694,132,0,1277,'0'),(19695,133,0,1277,'/i/m/image_31333018_65_620x757_0_2.jpg'),(19696,206,0,1277,'Synthetic'),(19701,73,0,1278,'Sneakers-EU 40-blue'),(19702,84,0,1278,'Black Chino'),(19703,86,0,1278,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19704,87,0,1278,'/2/3/235423r4f4r_3.jpg'),(19705,88,0,1278,'/2/3/235423r4f4r_3.jpg'),(19706,89,0,1278,'/2/3/235423r4f4r_3.jpg'),(19707,106,0,1278,'container2'),(19708,121,0,1278,'sneakers-eu-40-blue'),(19709,132,0,1278,'0'),(19710,133,0,1278,'/2/3/235423r4f4r_3.jpg'),(19711,206,0,1278,'Synthetic'),(19716,73,0,1279,'Sneakers-EU 40-red'),(19717,84,0,1279,'Black Chino'),(19718,86,0,1279,'Black Chino Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped'),(19719,87,0,1279,'/i/m/image_31333018_65_620x757_0_3.jpg'),(19720,88,0,1279,'/i/m/image_31333018_65_620x757_0_3.jpg'),(19721,89,0,1279,'/i/m/image_31333018_65_620x757_0_3.jpg'),(19722,106,0,1279,'container2'),(19723,121,0,1279,'sneakers-eu-40-red'),(19724,132,0,1279,'0'),(19725,133,0,1279,'/i/m/image_31333018_65_620x757_0_3.jpg'),(19726,206,0,1279,'Synthetic'),(19735,73,0,1280,'Straight Leg Jeans-Extra small size-grey'),(19736,84,0,1280,'Straight Leg Jeans'),(19737,86,0,1280,'Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on'),(19738,87,0,1280,'/2/3/2323e2e2e.jpg'),(19739,88,0,1280,'/2/3/2323e2e2e.jpg'),(19740,89,0,1280,'/2/3/2323e2e2e.jpg'),(19741,106,0,1280,'container2'),(19742,121,0,1280,'straight-leg-jeans-extra-small-size-grey'),(19743,132,0,1280,'0'),(19744,133,0,1280,'/2/3/2323e2e2e.jpg'),(19749,73,0,1281,'Straight Leg Jeans-Small size-grey'),(19750,84,0,1281,'Straight Leg Jeans'),(19751,86,0,1281,'Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on'),(19752,87,0,1281,'/2/3/2323e2e2e_1.jpg'),(19753,88,0,1281,'/2/3/2323e2e2e_1.jpg'),(19754,89,0,1281,'/2/3/2323e2e2e_1.jpg'),(19755,106,0,1281,'container2'),(19756,121,0,1281,'straight-leg-jeans-small-size-grey'),(19757,132,0,1281,'0'),(19758,133,0,1281,'/2/3/2323e2e2e_1.jpg'),(19763,73,0,1282,'Straight Leg Jeans-Large size-grey'),(19764,84,0,1282,'Straight Leg Jeans'),(19765,86,0,1282,'Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on'),(19766,87,0,1282,'/2/3/2323e2e2e_2.jpg'),(19767,88,0,1282,'/2/3/2323e2e2e_2.jpg'),(19768,89,0,1282,'/2/3/2323e2e2e_2.jpg'),(19769,106,0,1282,'container2'),(19770,121,0,1282,'straight-leg-jeans-large-size-grey'),(19771,132,0,1282,'0'),(19772,133,0,1282,'/2/3/2323e2e2e_2.jpg'),(19777,73,0,1283,'Straight Leg Jeans-Extra large size-grey'),(19778,84,0,1283,'Straight Leg Jeans'),(19779,86,0,1283,'Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on'),(19780,87,0,1283,'/2/3/2323e2e2e_3.jpg'),(19781,88,0,1283,'/2/3/2323e2e2e_3.jpg'),(19782,89,0,1283,'/2/3/2323e2e2e_3.jpg'),(19783,106,0,1283,'container2'),(19784,121,0,1283,'straight-leg-jeans-extra-large-size-grey'),(19785,132,0,1283,'0'),(19786,133,0,1283,'/2/3/2323e2e2e_3.jpg'),(19791,87,0,204,'/i/m/image_31237526_30_970x1182_0_1.jpg'),(19792,88,0,204,'/i/m/image_31237526_30_970x1182_0_1.jpg'),(19793,89,0,204,'/i/m/image_31237526_30_970x1182_0_1.jpg'),(19794,133,0,204,'/i/m/image_31237526_30_970x1182_0_1.jpg'),(19799,87,0,203,'/i/m/image_31237526_30_970x1182_0_1_1.jpg'),(19800,88,0,203,'/i/m/image_31237526_30_970x1182_0_1_1.jpg'),(19801,89,0,203,'/i/m/image_31237526_30_970x1182_0_1_1.jpg'),(19802,133,0,203,'/i/m/image_31237526_30_970x1182_0_1_1.jpg'),(19807,87,0,205,'/i/m/image_31237526_30_970x1182_0_2.jpg'),(19808,88,0,205,'/i/m/image_31237526_30_970x1182_0_2.jpg'),(19809,89,0,205,'/i/m/image_31237526_30_970x1182_0_2.jpg'),(19810,133,0,205,'/i/m/image_31237526_30_970x1182_0_2.jpg'),(19815,87,0,206,'/i/m/image_31237526_30_970x1182_0_3.jpg'),(19816,88,0,206,'/i/m/image_31237526_30_970x1182_0_3.jpg'),(19817,89,0,206,'/i/m/image_31237526_30_970x1182_0_3.jpg'),(19818,133,0,206,'/i/m/image_31237526_30_970x1182_0_3.jpg'),(19827,73,0,1284,'Strenesse Elegant Jacket-blue-Extra small size'),(19828,84,0,1284,'Seventy Transitional Jacket'),(19829,86,0,1284,'Seventy Transitional Jacket '),(19830,87,0,1284,'/2/2/22e33r.jpg'),(19831,88,0,1284,'/2/2/22e33r.jpg'),(19832,89,0,1284,'/2/2/22e33r.jpg'),(19833,106,0,1284,'container2'),(19834,121,0,1284,'strenesse-elegant-jacket-blue-extra-small-size'),(19835,132,0,1284,'0'),(19836,133,0,1284,'/2/2/22e33r.jpg'),(19837,206,0,1284,'77% viscose, 19% polyamide'),(19842,73,0,1285,'Strenesse Elegant Jacket-blue-Small size'),(19843,84,0,1285,'Seventy Transitional Jacket'),(19844,86,0,1285,'Seventy Transitional Jacket '),(19845,87,0,1285,'/2/2/22e33r_1.jpg'),(19846,88,0,1285,'/2/2/22e33r_1.jpg'),(19847,89,0,1285,'/2/2/22e33r_1.jpg'),(19848,106,0,1285,'container2'),(19849,121,0,1285,'strenesse-elegant-jacket-blue-small-size'),(19850,132,0,1285,'0'),(19851,133,0,1285,'/2/2/22e33r_1.jpg'),(19852,206,0,1285,'77% viscose, 19% polyamide'),(19857,73,0,1286,'Strenesse Elegant Jacket-blue-Medium size'),(19858,84,0,1286,'Seventy Transitional Jacket'),(19859,86,0,1286,'Seventy Transitional Jacket '),(19860,87,0,1286,'/2/2/22e33r_2.jpg'),(19861,88,0,1286,'/2/2/22e33r_2.jpg'),(19862,89,0,1286,'/2/2/22e33r_2.jpg'),(19863,106,0,1286,'container2'),(19864,121,0,1286,'strenesse-elegant-jacket-blue-medium-size'),(19865,132,0,1286,'0'),(19866,133,0,1286,'/2/2/22e33r_2.jpg'),(19867,206,0,1286,'77% viscose, 19% polyamide'),(19872,87,0,309,'/i/m/image_30811612_22_970x1182_0_1.jpg'),(19873,88,0,309,'/i/m/image_30811612_22_970x1182_0_1.jpg'),(19874,89,0,309,'/i/m/image_30811612_22_970x1182_0_1.jpg'),(19875,133,0,309,'/i/m/image_30811612_22_970x1182_0_1.jpg'),(19880,87,0,310,'/i/m/image_30811612_22_970x1182_0_1_1.jpg'),(19881,88,0,310,'/i/m/image_30811612_22_970x1182_0_1_1.jpg'),(19882,89,0,310,'/i/m/image_30811612_22_970x1182_0_1_1.jpg'),(19883,133,0,310,'/i/m/image_30811612_22_970x1182_0_1_1.jpg'),(19888,87,0,311,'/i/m/image_30811612_22_970x1182_0_2.jpg'),(19889,88,0,311,'/i/m/image_30811612_22_970x1182_0_2.jpg'),(19890,89,0,311,'/i/m/image_30811612_22_970x1182_0_2.jpg'),(19891,133,0,311,'/i/m/image_30811612_22_970x1182_0_2.jpg'),(19900,73,0,1287,'Swan Transitional Jacket-grey-Extra small size'),(19901,84,0,1287,'Seventy Transitional Jacket'),(19902,86,0,1287,'Seventy Transitional Jacket '),(19903,87,0,1287,'/2/w/2w2w2w111.jpg'),(19904,88,0,1287,'/2/w/2w2w2w111.jpg'),(19905,89,0,1287,'/2/w/2w2w2w111.jpg'),(19906,106,0,1287,'container2'),(19907,121,0,1287,'swan-transitional-jacket-grey-extra-small-size'),(19908,132,0,1287,'0'),(19909,133,0,1287,'/2/w/2w2w2w111.jpg'),(19910,206,0,1287,'100% polyester'),(19915,73,0,1288,'Swan Transitional Jacket-grey-Small size'),(19916,84,0,1288,'Seventy Transitional Jacket'),(19917,86,0,1288,'Seventy Transitional Jacket '),(19918,87,0,1288,'/2/w/2w2w2w111_1.jpg'),(19919,88,0,1288,'/2/w/2w2w2w111_1.jpg'),(19920,89,0,1288,'/2/w/2w2w2w111_1.jpg'),(19921,106,0,1288,'container2'),(19922,121,0,1288,'swan-transitional-jacket-grey-small-size'),(19923,132,0,1288,'0'),(19924,133,0,1288,'/2/w/2w2w2w111_1.jpg'),(19925,206,0,1288,'100% polyester'),(19930,73,0,1289,'Swan Transitional Jacket-grey-Medium size'),(19931,84,0,1289,'Seventy Transitional Jacket'),(19932,86,0,1289,'Seventy Transitional Jacket '),(19933,87,0,1289,'/2/w/2w2w2w111_2.jpg'),(19934,88,0,1289,'/2/w/2w2w2w111_2.jpg'),(19935,89,0,1289,'/2/w/2w2w2w111_2.jpg'),(19936,106,0,1289,'container2'),(19937,121,0,1289,'swan-transitional-jacket-grey-medium-size'),(19938,132,0,1289,'0'),(19939,133,0,1289,'/2/w/2w2w2w111_2.jpg'),(19940,206,0,1289,'100% polyester'),(19945,87,0,389,'/i/m/image_31292416_21_970x1182_0_1.jpg'),(19946,88,0,389,'/i/m/image_31292416_21_970x1182_0_1.jpg'),(19947,89,0,389,'/i/m/image_31292416_21_970x1182_0_1.jpg'),(19948,133,0,389,'/i/m/image_31292416_21_970x1182_0_1.jpg'),(19953,87,0,388,'/i/m/image_31292416_21_970x1182_0_1_1.jpg'),(19954,88,0,388,'/i/m/image_31292416_21_970x1182_0_1_1.jpg'),(19955,89,0,388,'/i/m/image_31292416_21_970x1182_0_1_1.jpg'),(19956,133,0,388,'/i/m/image_31292416_21_970x1182_0_1_1.jpg'),(19961,87,0,390,'/i/m/image_31292416_21_970x1182_0_2.jpg'),(19962,88,0,390,'/i/m/image_31292416_21_970x1182_0_2.jpg'),(19963,89,0,390,'/i/m/image_31292416_21_970x1182_0_2.jpg'),(19964,133,0,390,'/i/m/image_31292416_21_970x1182_0_2.jpg'),(19973,73,0,1290,'Sweat Pants-red-Extra small size'),(19974,84,0,1290,'Sweat Pants'),(19975,86,0,1290,'Sweat Pants '),(19976,87,0,1290,'/2/3/232w1w1.jpg'),(19977,88,0,1290,'/2/3/232w1w1.jpg'),(19978,89,0,1290,'/2/3/232w1w1.jpg'),(19979,106,0,1290,'container2'),(19980,121,0,1290,'sweat-pants-red-extra-small-size'),(19981,132,0,1290,'0'),(19982,133,0,1290,'/2/3/232w1w1.jpg'),(19983,206,0,1290,'48% polyester, 22% cotton, 15% wool, 15% polyacrylic'),(19988,73,0,1291,'Sweat Pants-red-Small size'),(19989,84,0,1291,'Sweat Pants'),(19990,86,0,1291,'Sweat Pants '),(19991,87,0,1291,'/2/3/232w1w1_1.jpg'),(19992,88,0,1291,'/2/3/232w1w1_1.jpg'),(19993,89,0,1291,'/2/3/232w1w1_1.jpg'),(19994,106,0,1291,'container2'),(19995,121,0,1291,'sweat-pants-red-small-size'),(19996,132,0,1291,'0'),(19997,133,0,1291,'/2/3/232w1w1_1.jpg'),(19998,206,0,1291,'48% polyester, 22% cotton, 15% wool, 15% polyacrylic'),(20003,73,0,1292,'Sweat Pants-red-Large size'),(20004,84,0,1292,'Sweat Pants'),(20005,86,0,1292,'Sweat Pants '),(20006,87,0,1292,'/2/3/232w1w1_2.jpg'),(20007,88,0,1292,'/2/3/232w1w1_2.jpg'),(20008,89,0,1292,'/2/3/232w1w1_2.jpg'),(20009,106,0,1292,'container2'),(20010,121,0,1292,'sweat-pants-red-large-size'),(20011,132,0,1292,'0'),(20012,133,0,1292,'/2/3/232w1w1_2.jpg'),(20013,206,0,1292,'48% polyester, 22% cotton, 15% wool, 15% polyacrylic'),(20018,87,0,164,'/i/m/image_31241601_81_620x757_0_1.jpg'),(20019,88,0,164,'/i/m/image_31241601_81_620x757_0_1.jpg'),(20020,89,0,164,'/i/m/image_31241601_81_620x757_0_1.jpg'),(20021,133,0,164,'/i/m/image_31241601_81_620x757_0_1.jpg'),(20026,87,0,163,'/i/m/image_31241601_81_620x757_0_1_1.jpg'),(20027,88,0,163,'/i/m/image_31241601_81_620x757_0_1_1.jpg'),(20028,89,0,163,'/i/m/image_31241601_81_620x757_0_1_1.jpg'),(20029,133,0,163,'/i/m/image_31241601_81_620x757_0_1_1.jpg'),(20034,87,0,165,'/i/m/image_31241601_81_620x757_0_2.jpg'),(20035,88,0,165,'/i/m/image_31241601_81_620x757_0_2.jpg'),(20036,89,0,165,'/i/m/image_31241601_81_620x757_0_2.jpg'),(20037,133,0,165,'/i/m/image_31241601_81_620x757_0_2.jpg'),(20046,73,0,1293,'The Skinny Crop-blue-Extra small size'),(20047,84,0,1293,'The Skinny Crop'),(20048,86,0,1293,'The Skinny Crop Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manufact'),(20049,87,0,1293,'/2/4/2432e2e2e2.jpg'),(20050,88,0,1293,'/2/4/2432e2e2e2.jpg'),(20051,89,0,1293,'/2/4/2432e2e2e2.jpg'),(20052,106,0,1293,'container2'),(20053,121,0,1293,'the-skinny-crop-blue-extra-small-size'),(20054,132,0,1293,'0'),(20055,133,0,1293,'/2/4/2432e2e2e2.jpg'),(20060,73,0,1294,'The Skinny Crop-blue-Small size'),(20061,84,0,1294,'The Skinny Crop'),(20062,86,0,1294,'The Skinny Crop Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manufact'),(20063,87,0,1294,'/2/4/2432e2e2e2_1.jpg'),(20064,88,0,1294,'/2/4/2432e2e2e2_1.jpg'),(20065,89,0,1294,'/2/4/2432e2e2e2_1.jpg'),(20066,106,0,1294,'container2'),(20067,121,0,1294,'the-skinny-crop-blue-small-size'),(20068,132,0,1294,'0'),(20069,133,0,1294,'/2/4/2432e2e2e2_1.jpg'),(20074,73,0,1295,'The Skinny Crop-blue-Medium size'),(20075,84,0,1295,'The Skinny Crop'),(20076,86,0,1295,'The Skinny Crop Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manufact'),(20077,87,0,1295,'/2/4/2432e2e2e2_2.jpg'),(20078,88,0,1295,'/2/4/2432e2e2e2_2.jpg'),(20079,89,0,1295,'/2/4/2432e2e2e2_2.jpg'),(20080,106,0,1295,'container2'),(20081,121,0,1295,'the-skinny-crop-blue-medium-size'),(20082,132,0,1295,'0'),(20083,133,0,1295,'/2/4/2432e2e2e2_2.jpg'),(20088,87,0,229,'/i/m/image_31332644_47_970x1182_0_1.jpg'),(20089,88,0,229,'/i/m/image_31332644_47_970x1182_0_1.jpg'),(20090,89,0,229,'/i/m/image_31332644_47_970x1182_0_1.jpg'),(20091,133,0,229,'/i/m/image_31332644_47_970x1182_0_1.jpg'),(20096,87,0,228,'/i/m/image_31332644_47_970x1182_0_1_1.jpg'),(20097,88,0,228,'/i/m/image_31332644_47_970x1182_0_1_1.jpg'),(20098,89,0,228,'/i/m/image_31332644_47_970x1182_0_1_1.jpg'),(20099,133,0,228,'/i/m/image_31332644_47_970x1182_0_1_1.jpg'),(20104,87,0,230,'/i/m/image_31332644_47_970x1182_0_2.jpg'),(20105,88,0,230,'/i/m/image_31332644_47_970x1182_0_2.jpg'),(20106,89,0,230,'/i/m/image_31332644_47_970x1182_0_2.jpg'),(20107,133,0,230,'/i/m/image_31332644_47_970x1182_0_2.jpg'),(20116,73,0,1296,'United Colors of Benetton  Knit Dress-brown-Extra small size'),(20117,84,0,1296,'UNQ Linen Dress'),(20118,86,0,1296,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(20119,87,0,1296,'/2/3/232e2e.jpg'),(20120,88,0,1296,'/2/3/232e2e.jpg'),(20121,89,0,1296,'/2/3/232e2e.jpg'),(20122,106,0,1296,'container2'),(20123,121,0,1296,'united-colors-of-benetton-knit-dress-brown-extra-small-size'),(20124,132,0,1296,'0'),(20125,133,0,1296,'/2/3/232e2e.jpg'),(20126,206,0,1296,'50% cotton, 50% polyacrylic'),(20131,73,0,1297,'United Colors of Benetton  Knit Dress-brown-Small size'),(20132,84,0,1297,'UNQ Linen Dress'),(20133,86,0,1297,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(20134,87,0,1297,'/2/3/232e2e_1.jpg'),(20135,88,0,1297,'/2/3/232e2e_1.jpg'),(20136,89,0,1297,'/2/3/232e2e_1.jpg'),(20137,106,0,1297,'container2'),(20138,121,0,1297,'united-colors-of-benetton-knit-dress-brown-small-size'),(20139,132,0,1297,'0'),(20140,133,0,1297,'/2/3/232e2e_1.jpg'),(20141,206,0,1297,'50% cotton, 50% polyacrylic'),(20146,73,0,1298,'United Colors of Benetton  Knit Dress-brown-Medium size'),(20147,84,0,1298,'UNQ Linen Dress'),(20148,86,0,1298,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(20149,87,0,1298,'/2/3/232e2e_2.jpg'),(20150,88,0,1298,'/2/3/232e2e_2.jpg'),(20151,89,0,1298,'/2/3/232e2e_2.jpg'),(20152,106,0,1298,'container2'),(20153,121,0,1298,'united-colors-of-benetton-knit-dress-brown-medium-size'),(20154,132,0,1298,'0'),(20155,133,0,1298,'/2/3/232e2e_2.jpg'),(20156,206,0,1298,'50% cotton, 50% polyacrylic'),(20161,87,0,513,'/i/m/image_31104994_83_970x1182_0_1.jpg'),(20162,88,0,513,'/i/m/image_31104994_83_970x1182_0_1.jpg'),(20163,89,0,513,'/i/m/image_31104994_83_970x1182_0_1.jpg'),(20164,133,0,513,'/i/m/image_31104994_83_970x1182_0_1.jpg'),(20169,87,0,514,'/i/m/image_31104994_83_970x1182_0_1_1.jpg'),(20170,88,0,514,'/i/m/image_31104994_83_970x1182_0_1_1.jpg'),(20171,89,0,514,'/i/m/image_31104994_83_970x1182_0_1_1.jpg'),(20172,133,0,514,'/i/m/image_31104994_83_970x1182_0_1_1.jpg'),(20177,87,0,515,'/i/m/image_31104994_83_970x1182_0_2.jpg'),(20178,88,0,515,'/i/m/image_31104994_83_970x1182_0_2.jpg'),(20179,89,0,515,'/i/m/image_31104994_83_970x1182_0_2.jpg'),(20180,133,0,515,'/i/m/image_31104994_83_970x1182_0_2.jpg'),(20189,73,0,1299,'UNQ Linen Dress-grey-Extra small size'),(20190,84,0,1299,'UNQ Linen Dress'),(20191,86,0,1299,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(20192,87,0,1299,'/3/4/343e2e2e3.jpg'),(20193,88,0,1299,'/3/4/343e2e2e3.jpg'),(20194,89,0,1299,'/3/4/343e2e2e3.jpg'),(20195,106,0,1299,'container2'),(20196,121,0,1299,'unq-linen-dress-grey-extra-small-size'),(20197,132,0,1299,'0'),(20198,133,0,1299,'/3/4/343e2e2e3.jpg'),(20199,206,0,1299,'54% linen, 29% polyester, 15% viscose, 2% elastane'),(20204,73,0,1300,'UNQ Linen Dress-grey-Small size'),(20205,84,0,1300,'UNQ Linen Dress'),(20206,86,0,1300,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(20207,87,0,1300,'/3/4/343e2e2e3_1.jpg'),(20208,88,0,1300,'/3/4/343e2e2e3_1.jpg'),(20209,89,0,1300,'/3/4/343e2e2e3_1.jpg'),(20210,106,0,1300,'container2'),(20211,121,0,1300,'unq-linen-dress-grey-small-size'),(20212,132,0,1300,'0'),(20213,133,0,1300,'/3/4/343e2e2e3_1.jpg'),(20214,206,0,1300,'54% linen, 29% polyester, 15% viscose, 2% elastane'),(20219,73,0,1301,'UNQ Linen Dress-grey-Medium size'),(20220,84,0,1301,'UNQ Linen Dress'),(20221,86,0,1301,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(20222,87,0,1301,'/3/4/343e2e2e3_2.jpg'),(20223,88,0,1301,'/3/4/343e2e2e3_2.jpg'),(20224,89,0,1301,'/3/4/343e2e2e3_2.jpg'),(20225,106,0,1301,'container2'),(20226,121,0,1301,'unq-linen-dress-grey-medium-size'),(20227,132,0,1301,'0'),(20228,133,0,1301,'/3/4/343e2e2e3_2.jpg'),(20229,206,0,1301,'54% linen, 29% polyester, 15% viscose, 2% elastane'),(20234,87,0,510,'/i/m/image_31262293_21_970x1182_0_2.jpg'),(20235,88,0,510,'/i/m/image_31262293_21_970x1182_0_2.jpg'),(20236,89,0,510,'/i/m/image_31262293_21_970x1182_0_2.jpg'),(20237,133,0,510,'/i/m/image_31262293_21_970x1182_0_2.jpg'),(20242,87,0,511,'/i/m/image_31262293_21_970x1182_0_1_1.jpg'),(20243,88,0,511,'/i/m/image_31262293_21_970x1182_0_1_1.jpg'),(20244,89,0,511,'/i/m/image_31262293_21_970x1182_0_1_1.jpg'),(20245,133,0,511,'/i/m/image_31262293_21_970x1182_0_1_1.jpg'),(20250,87,0,512,'/i/m/image_31262293_21_970x1182_0_2_1.jpg'),(20251,88,0,512,'/i/m/image_31262293_21_970x1182_0_2_1.jpg'),(20252,89,0,512,'/i/m/image_31262293_21_970x1182_0_2_1.jpg'),(20253,133,0,512,'/i/m/image_31262293_21_970x1182_0_2_1.jpg'),(20262,73,0,1302,'Weise Midi Dress-blue-Extra small size'),(20263,84,0,1302,'UNQ Linen Dress'),(20264,86,0,1302,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(20265,87,0,1302,'/2/4/24334r4r3r.jpg'),(20266,88,0,1302,'/2/4/24334r4r3r.jpg'),(20267,89,0,1302,'/2/4/24334r4r3r.jpg'),(20268,106,0,1302,'container2'),(20269,121,0,1302,'weise-midi-dress-blue-extra-small-size'),(20270,132,0,1302,'0'),(20271,133,0,1302,'/2/4/24334r4r3r.jpg'),(20272,206,0,1302,'37% polyacrylic, 28% viscose, 19% polyester, 16% wool'),(20277,73,0,1303,'Weise Midi Dress-blue-Small size'),(20278,84,0,1303,'UNQ Linen Dress'),(20279,86,0,1303,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(20280,87,0,1303,'/2/4/24334r4r3r_1.jpg'),(20281,88,0,1303,'/2/4/24334r4r3r_1.jpg'),(20282,89,0,1303,'/2/4/24334r4r3r_1.jpg'),(20283,106,0,1303,'container2'),(20284,121,0,1303,'weise-midi-dress-blue-small-size'),(20285,132,0,1303,'0'),(20286,133,0,1303,'/2/4/24334r4r3r_1.jpg'),(20287,206,0,1303,'37% polyacrylic, 28% viscose, 19% polyester, 16% wool'),(20292,73,0,1304,'Weise Midi Dress-blue-Medium size'),(20293,84,0,1304,'UNQ Linen Dress'),(20294,86,0,1304,'UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras:'),(20295,87,0,1304,'/2/4/24334r4r3r_2.jpg'),(20296,88,0,1304,'/2/4/24334r4r3r_2.jpg'),(20297,89,0,1304,'/2/4/24334r4r3r_2.jpg'),(20298,106,0,1304,'container2'),(20299,121,0,1304,'weise-midi-dress-blue-medium-size'),(20300,132,0,1304,'0'),(20301,133,0,1304,'/2/4/24334r4r3r_2.jpg'),(20302,206,0,1304,'37% polyacrylic, 28% viscose, 19% polyester, 16% wool'),(20307,87,0,517,'/i/m/image_31268637_45_970x1182_0_1.jpg'),(20308,88,0,517,'/i/m/image_31268637_45_970x1182_0_1.jpg'),(20309,89,0,517,'/i/m/image_31268637_45_970x1182_0_1.jpg'),(20310,133,0,517,'/i/m/image_31268637_45_970x1182_0_1.jpg'),(20315,87,0,518,'/i/m/image_31268637_45_970x1182_0_1_1.jpg'),(20316,88,0,518,'/i/m/image_31268637_45_970x1182_0_1_1.jpg'),(20317,89,0,518,'/i/m/image_31268637_45_970x1182_0_1_1.jpg'),(20318,133,0,518,'/i/m/image_31268637_45_970x1182_0_1_1.jpg'),(20323,87,0,519,'/i/m/image_31268637_45_970x1182_0_2.jpg'),(20324,88,0,519,'/i/m/image_31268637_45_970x1182_0_2.jpg'),(20325,89,0,519,'/i/m/image_31268637_45_970x1182_0_2.jpg'),(20326,133,0,519,'/i/m/image_31268637_45_970x1182_0_2.jpg'),(20335,73,0,1305,'Wool jersey trousers-red-Extra small size'),(20336,84,0,1305,'Wool jersey trousers'),(20337,86,0,1305,'Wool jersey trousers Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle.'),(20338,87,0,1305,'/2/3/23r4r4r4_1.jpg'),(20339,88,0,1305,'/2/3/23r4r4r4_1.jpg'),(20340,89,0,1305,'/2/3/23r4r4r4_1.jpg'),(20341,106,0,1305,'container2'),(20342,121,0,1305,'wool-jersey-trousers-red-extra-small-size'),(20343,132,0,1305,'0'),(20344,133,0,1305,'/2/3/23r4r4r4_1.jpg'),(20345,206,0,1305,'100% virgin wool'),(20350,73,0,1306,'Wool jersey trousers-red-Small size'),(20351,84,0,1306,'Wool jersey trousers'),(20352,86,0,1306,'Wool jersey trousers Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle.'),(20353,87,0,1306,'/2/3/23r4r4r4_1_1.jpg'),(20354,88,0,1306,'/2/3/23r4r4r4_1_1.jpg'),(20355,89,0,1306,'/2/3/23r4r4r4_1_1.jpg'),(20356,106,0,1306,'container2'),(20357,121,0,1306,'wool-jersey-trousers-red-small-size'),(20358,132,0,1306,'0'),(20359,133,0,1306,'/2/3/23r4r4r4_1_1.jpg'),(20360,206,0,1306,'100% virgin wool'),(20365,73,0,1307,'Wool jersey trousers-red-Extra large size'),(20366,84,0,1307,'Wool jersey trousers'),(20367,86,0,1307,'Wool jersey trousers Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle.'),(20368,87,0,1307,'/2/3/23r4r4r4_1_2.jpg'),(20369,88,0,1307,'/2/3/23r4r4r4_1_2.jpg'),(20370,89,0,1307,'/2/3/23r4r4r4_1_2.jpg'),(20371,106,0,1307,'container2'),(20372,121,0,1307,'wool-jersey-trousers-red-extra-large-size'),(20373,132,0,1307,'0'),(20374,133,0,1307,'/2/3/23r4r4r4_1_2.jpg'),(20375,206,0,1307,'100% virgin wool'),(20380,87,0,209,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_1.jpg'),(20381,88,0,209,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_1.jpg'),(20382,89,0,209,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_1.jpg'),(20383,133,0,209,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_1.jpg'),(20388,87,0,207,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_1_1.jpg'),(20389,88,0,207,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_1_1.jpg'),(20390,89,0,207,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_1_1.jpg'),(20391,133,0,207,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_1_1.jpg'),(20396,87,0,208,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_2.jpg'),(20397,88,0,208,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_2.jpg'),(20398,89,0,208,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_2.jpg'),(20399,133,0,208,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_2.jpg'),(20408,73,0,1308,'Beige Leather Belt-grey-Medium size'),(20409,84,0,1308,'Beige Leather Belt'),(20410,86,0,1308,'Beige Leather Belt Measurements for size EU 85: width approx. 3,4 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: embossed logo\r\nMaterial: leather'),(20411,87,0,1308,'/2/2/22w2w2w_1.jpg'),(20412,88,0,1308,'/2/2/22w2w2w_1.jpg'),(20413,89,0,1308,'/2/2/22w2w2w_1.jpg'),(20414,106,0,1308,'container2'),(20415,121,0,1308,'beige-leather-belt-grey-medium-size'),(20416,132,0,1308,'0'),(20417,133,0,1308,'/2/2/22w2w2w_1.jpg'),(20418,206,0,1308,'leather'),(20423,87,0,523,'/m/a/main_7_1_1.jpg'),(20424,88,0,523,'/m/a/main_7_1_1.jpg'),(20425,89,0,523,'/m/a/main_7_1_1.jpg'),(20426,133,0,523,'/m/a/main_7_1_1.jpg'),(20435,73,0,1309,'Black sunglasses-blue-Small size'),(20436,84,0,1309,'Black sunglasses'),(20437,86,0,1309,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(20438,87,0,1309,'/2/3/234e3e.jpg'),(20439,88,0,1309,'/2/3/234e3e.jpg'),(20440,89,0,1309,'/2/3/234e3e.jpg'),(20441,106,0,1309,'container2'),(20442,121,0,1309,'black-sunglasses-blue-small-size'),(20443,132,0,1309,'0'),(20444,133,0,1309,'/2/3/234e3e.jpg'),(20445,206,0,1309,'Plastic'),(20450,73,0,1310,'Black sunglasses-blue-Medium size'),(20451,84,0,1310,'Black sunglasses'),(20452,86,0,1310,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(20453,87,0,1310,'/2/3/234e3e_1.jpg'),(20454,88,0,1310,'/2/3/234e3e_1.jpg'),(20455,89,0,1310,'/2/3/234e3e_1.jpg'),(20456,106,0,1310,'container2'),(20457,121,0,1310,'black-sunglasses-blue-medium-size'),(20458,132,0,1310,'0'),(20459,133,0,1310,'/2/3/234e3e_1.jpg'),(20460,206,0,1310,'Plastic'),(20465,87,0,316,'/i/m/image_31045897_10_620x757_1_1.jpg'),(20466,88,0,316,'/i/m/image_31045897_10_620x757_1_1.jpg'),(20467,89,0,316,'/i/m/image_31045897_10_620x757_1_1.jpg'),(20468,133,0,316,'/i/m/image_31045897_10_620x757_1_1.jpg'),(20473,87,0,317,'/i/m/image_31045897_10_620x757_1_1_1.jpg'),(20474,88,0,317,'/i/m/image_31045897_10_620x757_1_1_1.jpg'),(20475,89,0,317,'/i/m/image_31045897_10_620x757_1_1_1.jpg'),(20476,133,0,317,'/i/m/image_31045897_10_620x757_1_1_1.jpg'),(20485,73,0,1311,'Blue handbag-red'),(20486,84,0,1311,'Medium blue handbag'),(20487,86,0,1311,'Medium blue handbag Smart tote bag. It has two detachable shoulder straps so that it can be worn as a backpack or carried as a tote. There is an outside compartment for storing the shoulder straps.'),(20488,87,0,1311,'/2/3/2312w2w2w_1.jpg'),(20489,88,0,1311,'/2/3/2312w2w2w_1.jpg'),(20490,89,0,1311,'/2/3/2312w2w2w_1.jpg'),(20491,106,0,1311,'container2'),(20492,121,0,1311,'blue-handbag-red'),(20493,132,0,1311,'0'),(20494,133,0,1311,'/2/3/2312w2w2w_1.jpg'),(20495,206,0,1311,'Leather'),(20500,87,0,548,'/m/a/main_15_2_1.jpg'),(20501,88,0,548,'/m/a/main_15_2_1.jpg'),(20502,89,0,548,'/m/a/main_15_2_1.jpg'),(20503,133,0,548,'/m/a/main_15_2_1.jpg'),(20512,73,0,1312,'Bottega Veneta-Small size-black'),(20513,84,0,1312,'Bottega Veneta'),(20514,86,0,1312,'Bottega Veneta Reference number: BV0111S\r\nMeasurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: titanium, plastic\r\nPlease not'),(20515,87,0,1312,'/2/3/232e2e2e2e.jpg'),(20516,88,0,1312,'/2/3/232e2e2e2e.jpg'),(20517,89,0,1312,'/2/3/232e2e2e2e.jpg'),(20518,106,0,1312,'container2'),(20519,121,0,1312,'bottega-veneta-small-size-black'),(20520,132,0,1312,'0'),(20521,133,0,1312,'/2/3/232e2e2e2e.jpg'),(20522,206,0,1312,'titanium, plastic'),(20527,73,0,1313,'Bottega Veneta-Medium size-black'),(20528,84,0,1313,'Bottega Veneta'),(20529,86,0,1313,'Bottega Veneta Reference number: BV0111S\r\nMeasurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: titanium, plastic\r\nPlease not'),(20530,87,0,1313,'/2/3/232e2e2e2e_1.jpg'),(20531,88,0,1313,'/2/3/232e2e2e2e_1.jpg'),(20532,89,0,1313,'/2/3/232e2e2e2e_1.jpg'),(20533,106,0,1313,'container2'),(20534,121,0,1313,'bottega-veneta-medium-size-black'),(20535,132,0,1313,'0'),(20536,133,0,1313,'/2/3/232e2e2e2e_1.jpg'),(20537,206,0,1313,'titanium, plastic'),(20542,87,0,231,'/i/m/image_31289374_75_620x757_1_1.jpg'),(20543,88,0,231,'/i/m/image_31289374_75_620x757_1_1.jpg'),(20544,89,0,231,'/i/m/image_31289374_75_620x757_1_1.jpg'),(20545,133,0,231,'/i/m/image_31289374_75_620x757_1_1.jpg'),(20550,87,0,232,'/i/m/image_31289374_75_620x757_1_1_1.jpg'),(20551,88,0,232,'/i/m/image_31289374_75_620x757_1_1_1.jpg'),(20552,89,0,232,'/i/m/image_31289374_75_620x757_1_1_1.jpg'),(20553,133,0,232,'/i/m/image_31289374_75_620x757_1_1_1.jpg'),(20562,73,0,1314,'Cognac Handbag-grey'),(20563,84,0,1314,'Cognac Handbag'),(20564,86,0,1314,'Cognac Handbag '),(20565,87,0,1314,'/2/3/232e2e2e2e_1_1.jpg'),(20566,88,0,1314,'/2/3/232e2e2e2e_1_1.jpg'),(20567,89,0,1314,'/2/3/232e2e2e2e_1_1.jpg'),(20568,106,0,1314,'container2'),(20569,121,0,1314,'cognac-handbag-grey'),(20570,132,0,1314,'0'),(20571,133,0,1314,'/2/3/232e2e2e2e_1_1.jpg'),(20572,206,0,1314,'leather'),(20577,87,0,547,'/i/m/image_31175794_72_620x757_1_2_1.jpg'),(20578,88,0,547,'/i/m/image_31175794_72_620x757_1_2_1.jpg'),(20579,89,0,547,'/i/m/image_31175794_72_620x757_1_2_1.jpg'),(20580,133,0,547,'/i/m/image_31175794_72_620x757_1_2_1.jpg'),(20589,73,0,1315,'Green sunglasses-red-Small size'),(20590,84,0,1315,'Green sunglasses'),(20591,86,0,1315,'Green sunglasses Reference number: MB 657S\r\nMeasurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3\r\nExtras: logo appliqué(s), case included\r\nMaterial: tita'),(20592,87,0,1315,'/2/3/232w21212.jpg'),(20593,88,0,1315,'/2/3/232w21212.jpg'),(20594,89,0,1315,'/2/3/232w21212.jpg'),(20595,106,0,1315,'container2'),(20596,121,0,1315,'green-sunglasses-red-small-size'),(20597,132,0,1315,'0'),(20598,133,0,1315,'/2/3/232w21212.jpg'),(20599,206,0,1315,'Titanium'),(20604,73,0,1316,'Green sunglasses-red-Medium size'),(20605,84,0,1316,'Green sunglasses'),(20606,86,0,1316,'Green sunglasses Reference number: MB 657S\r\nMeasurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3\r\nExtras: logo appliqué(s), case included\r\nMaterial: tita'),(20607,87,0,1316,'/2/3/232w21212_1.jpg'),(20608,88,0,1316,'/2/3/232w21212_1.jpg'),(20609,89,0,1316,'/2/3/232w21212_1.jpg'),(20610,106,0,1316,'container2'),(20611,121,0,1316,'green-sunglasses-red-medium-size'),(20612,132,0,1316,'0'),(20613,133,0,1316,'/2/3/232w21212_1.jpg'),(20614,206,0,1316,'Titanium'),(20619,87,0,285,'/i/m/image_31258335_50_620x757_1_1.jpg'),(20620,88,0,285,'/i/m/image_31258335_50_620x757_1_1.jpg'),(20621,89,0,285,'/i/m/image_31258335_50_620x757_1_1.jpg'),(20622,133,0,285,'/i/m/image_31258335_50_620x757_1_1.jpg'),(20627,87,0,286,'/i/m/image_31258335_50_620x757_1_1_1.jpg'),(20628,88,0,286,'/i/m/image_31258335_50_620x757_1_1_1.jpg'),(20629,89,0,286,'/i/m/image_31258335_50_620x757_1_1_1.jpg'),(20630,133,0,286,'/i/m/image_31258335_50_620x757_1_1_1.jpg'),(20639,73,0,1317,'Handbag-red'),(20640,84,0,1317,'Handbag'),(20641,86,0,1317,'Handbag Reference number: E1 BD1 18 03 01\r\nMeasurements for one size: height 28 cm (11″), length 36 cm (14″), depth 13 cm (5″)\r\nFastening: overlapping flap with clasp closure\r\nLining material: lined Exterior pockets: slit pocket(s)\r\nInterior pockets: plug'),(20642,87,0,1317,'/2/3/231212322e_1.jpg'),(20643,88,0,1317,'/2/3/231212322e_1.jpg'),(20644,89,0,1317,'/2/3/231212322e_1.jpg'),(20645,106,0,1317,'container2'),(20646,121,0,1317,'handbag-red'),(20647,132,0,1317,'0'),(20648,133,0,1317,'/2/3/231212322e_1.jpg'),(20649,206,0,1317,'Leather'),(20654,87,0,546,'/m/a/main_12_1_1.jpg'),(20655,88,0,546,'/m/a/main_12_1_1.jpg'),(20656,89,0,546,'/m/a/main_12_1_1.jpg'),(20657,133,0,546,'/m/a/main_12_1_1.jpg'),(20666,73,0,1318,'Leather Backpack-grey'),(20667,84,0,1318,'Leather Backpack'),(20668,86,0,1318,'Leather Backpack Measurements for one size: height 43 cm (17″), length 30 cm (12″), depth 15 cm (6″)\r\nFastening: two-way zip (open from right and left)\r\nLining material: lined\r\nExterior pockets: patch zip pocket / s, zip pocket(s) Interior pockets: plug-i'),(20669,87,0,1318,'/2/3/2323e2e2e_1_1.jpg'),(20670,88,0,1318,'/2/3/2323e2e2e_1_1.jpg'),(20671,89,0,1318,'/2/3/2323e2e2e_1_1.jpg'),(20672,106,0,1318,'container2'),(20673,121,0,1318,'leather-backpack-grey'),(20674,132,0,1318,'0'),(20675,133,0,1318,'/2/3/2323e2e2e_1_1.jpg'),(20676,206,0,1318,'leather'),(20681,87,0,545,'/m/a/main_11_1_1.jpg'),(20682,88,0,545,'/m/a/main_11_1_1.jpg'),(20683,89,0,545,'/m/a/main_11_1_1.jpg'),(20684,133,0,545,'/m/a/main_11_1_1.jpg'),(20693,73,0,1319,'Leather Business Bag-black'),(20694,84,0,1319,'Leather Business Bag'),(20695,86,0,1319,'Leather Business Bag '),(20696,87,0,1319,'/2/3/232e3e3e_1.jpg'),(20697,88,0,1319,'/2/3/232e3e3e_1.jpg'),(20698,89,0,1319,'/2/3/232e3e3e_1.jpg'),(20699,106,0,1319,'container2'),(20700,121,0,1319,'leather-business-bag-black'),(20701,132,0,1319,'0'),(20702,133,0,1319,'/2/3/232e3e3e_1.jpg'),(20703,206,0,1319,'leather'),(20708,87,0,544,'/m/a/main_10_1_1.jpg'),(20709,88,0,544,'/m/a/main_10_1_1.jpg'),(20710,89,0,544,'/m/a/main_10_1_1.jpg'),(20711,133,0,544,'/m/a/main_10_1_1.jpg'),(20720,73,0,1320,'Light blue Leather Belt-red-Small size'),(20721,84,0,1320,'Light blue Leather Belt'),(20722,86,0,1320,'Light blue Leather Belt Measurements for size EU S: width approx. 1,8 cm (0.5″)\r\nFastening: pin buckle\r\nExtras: patent leather\r\nMaterial: leather'),(20723,87,0,1320,'/2/3/232e3e2e2_1.jpg'),(20724,88,0,1320,'/2/3/232e3e2e2_1.jpg'),(20725,89,0,1320,'/2/3/232e3e2e2_1.jpg'),(20726,106,0,1320,'container2'),(20727,121,0,1320,'light-blue-leather-belt-red-small-size'),(20728,132,0,1320,'0'),(20729,133,0,1320,'/2/3/232e3e2e2_1.jpg'),(20730,206,0,1320,'Leather'),(20735,87,0,541,'/m/a/main_10_2_1.jpg'),(20736,88,0,541,'/m/a/main_10_2_1.jpg'),(20737,89,0,541,'/m/a/main_10_2_1.jpg'),(20738,133,0,541,'/m/a/main_10_2_1.jpg'),(20747,73,0,1321,'Light grey Leather Belt-blue-Small size'),(20748,84,0,1321,'Light grey Leather Belt'),(20749,86,0,1321,'Light grey Leather Belt '),(20750,87,0,1321,'/3/4/3423r434534_1.jpg'),(20751,88,0,1321,'/3/4/3423r434534_1.jpg'),(20752,89,0,1321,'/3/4/3423r434534_1.jpg'),(20753,106,0,1321,'container2'),(20754,121,0,1321,'light-grey-leather-belt-blue-small-size'),(20755,132,0,1321,'0'),(20756,133,0,1321,'/3/4/3423r434534_1.jpg'),(20757,206,0,1321,'Leather'),(20762,87,0,531,'/3/4/343e3r4r4_1.jpg'),(20763,88,0,531,'/3/4/343e3r4r4_1.jpg'),(20764,89,0,531,'/3/4/343e3r4r4_1.jpg'),(20765,133,0,531,'/3/4/343e3r4r4_1.jpg'),(20774,73,0,1322,'Nude sunglasses-red-Extra small size'),(20775,84,0,1322,'Black sunglasses'),(20776,86,0,1322,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(20777,87,0,1322,'/2/3/23e2132312.jpg'),(20778,88,0,1322,'/2/3/23e2132312.jpg'),(20779,89,0,1322,'/2/3/23e2132312.jpg'),(20780,106,0,1322,'container2'),(20781,121,0,1322,'nude-sunglasses-red-extra-small-size'),(20782,132,0,1322,'0'),(20783,133,0,1322,'/2/3/23e2132312.jpg'),(20784,206,0,1322,'Plastic'),(20789,73,0,1323,'Nude sunglasses-red-Small size'),(20790,84,0,1323,'Black sunglasses'),(20791,86,0,1323,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(20792,87,0,1323,'/2/3/23e2132312_1.jpg'),(20793,88,0,1323,'/2/3/23e2132312_1.jpg'),(20794,89,0,1323,'/2/3/23e2132312_1.jpg'),(20795,106,0,1323,'container2'),(20796,121,0,1323,'nude-sunglasses-red-small-size'),(20797,132,0,1323,'0'),(20798,133,0,1323,'/2/3/23e2132312_1.jpg'),(20799,206,0,1323,'Plastic'),(20804,73,0,1324,'Nude sunglasses-red-Medium size'),(20805,84,0,1324,'Black sunglasses'),(20806,86,0,1324,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(20807,87,0,1324,'/2/3/23e2132312_2.jpg'),(20808,88,0,1324,'/2/3/23e2132312_2.jpg'),(20809,89,0,1324,'/2/3/23e2132312_2.jpg'),(20810,106,0,1324,'container2'),(20811,121,0,1324,'nude-sunglasses-red-medium-size'),(20812,132,0,1324,'0'),(20813,133,0,1324,'/2/3/23e2132312_2.jpg'),(20814,206,0,1324,'Plastic'),(20819,87,0,339,'/2/3/2323244442.jpg'),(20820,88,0,339,'/2/3/2323244442.jpg'),(20821,89,0,339,'/2/3/2323244442.jpg'),(20822,133,0,339,'/2/3/2323244442.jpg'),(20827,87,0,338,'/2/3/2323244442_1.jpg'),(20828,88,0,338,'/2/3/2323244442_1.jpg'),(20829,89,0,338,'/2/3/2323244442_1.jpg'),(20830,133,0,338,'/2/3/2323244442_1.jpg'),(20835,87,0,340,'/2/3/2323244442_2.jpg'),(20836,88,0,340,'/2/3/2323244442_2.jpg'),(20837,89,0,340,'/2/3/2323244442_2.jpg'),(20838,133,0,340,'/2/3/2323244442_2.jpg'),(20847,73,0,1325,'Rose gold diorsorealrise-blue-Small size'),(20848,84,0,1325,'Rose gold diorsorealrise'),(20849,86,0,1325,'Rose gold diorsorealrise Model: Diorsorealrise\r\nMeasurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3\r\nExtras: patterned bow, patterned border, logo engra'),(20850,87,0,1325,'/2/4/243r3r3e3e.jpg'),(20851,88,0,1325,'/2/4/243r3r3e3e.jpg'),(20852,89,0,1325,'/2/4/243r3r3e3e.jpg'),(20853,106,0,1325,'container2'),(20854,121,0,1325,'rose-gold-diorsorealrise-blue-small-size'),(20855,132,0,1325,'0'),(20856,133,0,1325,'/2/4/243r3r3e3e.jpg'),(20857,206,0,1325,'plastic, metal'),(20862,73,0,1326,'Rose gold diorsorealrise-blue-Medium size'),(20863,84,0,1326,'Rose gold diorsorealrise'),(20864,86,0,1326,'Rose gold diorsorealrise Model: Diorsorealrise\r\nMeasurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3\r\nExtras: patterned bow, patterned border, logo engra'),(20865,87,0,1326,'/2/4/243r3r3e3e_1.jpg'),(20866,88,0,1326,'/2/4/243r3r3e3e_1.jpg'),(20867,89,0,1326,'/2/4/243r3r3e3e_1.jpg'),(20868,106,0,1326,'container2'),(20869,121,0,1326,'rose-gold-diorsorealrise-blue-medium-size'),(20870,132,0,1326,'0'),(20871,133,0,1326,'/2/4/243r3r3e3e_1.jpg'),(20872,206,0,1326,'plastic, metal'),(20877,87,0,378,'/i/m/image_31160298_16_620x757_1_1.jpg'),(20878,88,0,378,'/i/m/image_31160298_16_620x757_1_1.jpg'),(20879,89,0,378,'/i/m/image_31160298_16_620x757_1_1.jpg'),(20880,133,0,378,'/i/m/image_31160298_16_620x757_1_1.jpg'),(20885,87,0,379,'/i/m/image_31160298_16_620x757_1_1_1.jpg'),(20886,88,0,379,'/i/m/image_31160298_16_620x757_1_1_1.jpg'),(20887,89,0,379,'/i/m/image_31160298_16_620x757_1_1_1.jpg'),(20888,133,0,379,'/i/m/image_31160298_16_620x757_1_1_1.jpg'),(20897,73,0,1327,'Sunglasses-red-Small size'),(20898,84,0,1327,'Sunglasses'),(20899,86,0,1327,'Sunglasses Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3 Extras: logo on both temples, case included, gift-box\r\nMaterial: plastic\r\nPlease note: May '),(20900,87,0,1327,'/2/3/23434r4r4.jpg'),(20901,88,0,1327,'/2/3/23434r4r4.jpg'),(20902,89,0,1327,'/2/3/23434r4r4.jpg'),(20903,106,0,1327,'container2'),(20904,121,0,1327,'sunglasses-red-small-size'),(20905,132,0,1327,'0'),(20906,133,0,1327,'/2/3/23434r4r4.jpg'),(20907,206,0,1327,'Plastic'),(20912,73,0,1328,'Sunglasses-red-Medium size'),(20913,84,0,1328,'Sunglasses'),(20914,86,0,1328,'Sunglasses Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3 Extras: logo on both temples, case included, gift-box\r\nMaterial: plastic\r\nPlease note: May '),(20915,87,0,1328,'/2/3/23434r4r4_1.jpg'),(20916,88,0,1328,'/2/3/23434r4r4_1.jpg'),(20917,89,0,1328,'/2/3/23434r4r4_1.jpg'),(20918,106,0,1328,'container2'),(20919,121,0,1328,'sunglasses-red-medium-size'),(20920,132,0,1328,'0'),(20921,133,0,1328,'/2/3/23434r4r4_1.jpg'),(20922,206,0,1328,'Plastic'),(20927,87,0,233,'/i/m/image_31160332_10_620x757_0_1.jpg'),(20928,88,0,233,'/i/m/image_31160332_10_620x757_0_1.jpg'),(20929,89,0,233,'/i/m/image_31160332_10_620x757_0_1.jpg'),(20930,133,0,233,'/i/m/image_31160332_10_620x757_0_1.jpg'),(20935,87,0,234,'/i/m/image_31160332_10_620x757_0_1_1.jpg'),(20936,88,0,234,'/i/m/image_31160332_10_620x757_0_1_1.jpg'),(20937,89,0,234,'/i/m/image_31160332_10_620x757_0_1_1.jpg'),(20938,133,0,234,'/i/m/image_31160332_10_620x757_0_1_1.jpg'),(20947,73,0,1329,'Violet sunglasses-red-Small size'),(20948,84,0,1329,'Black sunglasses'),(20949,86,0,1329,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(20950,87,0,1329,'/2/3/232312e3e3e.jpg'),(20951,88,0,1329,'/2/3/232312e3e3e.jpg'),(20952,89,0,1329,'/2/3/232312e3e3e.jpg'),(20953,106,0,1329,'container2'),(20954,121,0,1329,'violet-sunglasses-red-small-size'),(20955,132,0,1329,'0'),(20956,133,0,1329,'/2/3/232312e3e3e.jpg'),(20957,206,0,1329,'Plastic'),(20962,73,0,1330,'Violet sunglasses-red-Medium size'),(20963,84,0,1330,'Black sunglasses'),(20964,86,0,1330,'Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included\r\nMa'),(20965,87,0,1330,'/2/3/232312e3e3e_1.jpg'),(20966,88,0,1330,'/2/3/232312e3e3e_1.jpg'),(20967,89,0,1330,'/2/3/232312e3e3e_1.jpg'),(20968,106,0,1330,'container2'),(20969,121,0,1330,'violet-sunglasses-red-medium-size'),(20970,132,0,1330,'0'),(20971,133,0,1330,'/2/3/232312e3e3e_1.jpg'),(20972,206,0,1330,'Plastic'),(20977,87,0,328,'/m/a/main_4_2_1.jpg'),(20978,88,0,328,'/m/a/main_4_2_1.jpg'),(20979,89,0,328,'/m/a/main_4_2_1.jpg'),(20980,133,0,328,'/m/a/main_4_2_1.jpg'),(20985,87,0,329,'/m/a/main_4_2_1_1.jpg'),(20986,88,0,329,'/m/a/main_4_2_1_1.jpg'),(20987,89,0,329,'/m/a/main_4_2_1_1.jpg'),(20988,133,0,329,'/m/a/main_4_2_1_1.jpg'),(20997,73,0,1331,'Taupe Leather Belt-blue-Small size'),(20998,84,0,1331,'Taupe Leather Belt'),(20999,86,0,1331,'Taupe Leather Belt Measurements for size EU 95: width approx. 3,3 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: suede\r\nMaterial: leather'),(21000,87,0,1331,'/3/4/343e3r4r4_1_1.jpg'),(21001,88,0,1331,'/3/4/343e3r4r4_1_1.jpg'),(21002,89,0,1331,'/3/4/343e3r4r4_1_1.jpg'),(21003,106,0,1331,'container2'),(21004,121,0,1331,'taupe-leather-belt-blue-small-size'),(21005,132,0,1331,'0'),(21006,133,0,1331,'/3/4/343e3r4r4_1_1.jpg'),(21007,206,0,1331,'leather'),(21012,87,0,516,'/m/a/main_6_1_1.jpg'),(21013,88,0,516,'/m/a/main_6_1_1.jpg'),(21014,89,0,516,'/m/a/main_6_1_1.jpg'),(21015,133,0,516,'/m/a/main_6_1_1.jpg'),(21024,73,0,1332,'Blue Leather Belt-brown-Small size'),(21025,84,0,1332,'Medium blue Leather Belt'),(21026,86,0,1332,'Medium blue Leather Belt Measurements for size EU 90: width approx. 3,5 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: Nubuck leather, partially textured surface\r\nMaterial: leather'),(21027,87,0,1332,'/2/3/23223x23_1.jpg'),(21028,88,0,1332,'/2/3/23223x23_1.jpg'),(21029,89,0,1332,'/2/3/23223x23_1.jpg'),(21030,106,0,1332,'container2'),(21031,121,0,1332,'blue-leather-belt-brown-small-size'),(21032,132,0,1332,'0'),(21033,133,0,1332,'/2/3/23223x23_1.jpg'),(21034,206,0,1332,'Leather'),(21039,87,0,527,'/m/a/main_8_1_1.jpg'),(21040,88,0,527,'/m/a/main_8_1_1.jpg'),(21041,89,0,527,'/m/a/main_8_1_1.jpg'),(21042,133,0,527,'/m/a/main_8_1_1.jpg'),(21051,73,0,1333,'Hooded Sweater-black-Medium size'),(21052,84,0,1333,'Hooded Sweater'),(21053,86,0,1333,'Hooded Sweater '),(21054,87,0,1333,'/b/l/black.jpg'),(21055,88,0,1333,'/b/l/black.jpg'),(21056,89,0,1333,'/b/l/black.jpg'),(21057,106,0,1333,'container2'),(21058,121,0,1333,'hooded-sweater-black-medium-size'),(21059,132,0,1333,'0'),(21060,133,0,1333,'/b/l/black.jpg'),(21065,73,0,1334,'Hooded Sweater-black-Small size'),(21066,84,0,1334,'Hooded Sweater'),(21067,86,0,1334,'Hooded Sweater '),(21068,87,0,1334,'/b/l/black_1.jpg'),(21069,88,0,1334,'/b/l/black_1.jpg'),(21070,89,0,1334,'/b/l/black_1.jpg'),(21071,106,0,1334,'container2'),(21072,121,0,1334,'hooded-sweater-black-small-size'),(21073,132,0,1334,'0'),(21074,133,0,1334,'/b/l/black_1.jpg'),(21079,73,0,1335,'Hooded Sweater-black-Large size'),(21080,84,0,1335,'Hooded Sweater'),(21081,86,0,1335,'Hooded Sweater '),(21082,87,0,1335,'/b/l/black_2.jpg'),(21083,88,0,1335,'/b/l/black_2.jpg'),(21084,89,0,1335,'/b/l/black_2.jpg'),(21085,106,0,1335,'container2'),(21086,121,0,1335,'hooded-sweater-black-large-size'),(21087,132,0,1335,'0'),(21088,133,0,1335,'/b/l/black_2.jpg'),(21093,73,0,1336,'Hooded Sweater-red-Medium size'),(21094,84,0,1336,'Hooded Sweater'),(21095,86,0,1336,'Hooded Sweater '),(21096,87,0,1336,'/r/e/red.jpg'),(21097,88,0,1336,'/r/e/red.jpg'),(21098,89,0,1336,'/r/e/red.jpg'),(21099,106,0,1336,'container2'),(21100,121,0,1336,'hooded-sweater-red-medium-size'),(21101,132,0,1336,'0'),(21102,133,0,1336,'/r/e/red.jpg'),(21107,73,0,1337,'Hooded Sweater-red-Small size'),(21108,84,0,1337,'Hooded Sweater'),(21109,86,0,1337,'Hooded Sweater '),(21110,87,0,1337,'/r/e/red_1.jpg'),(21111,88,0,1337,'/r/e/red_1.jpg'),(21112,89,0,1337,'/r/e/red_1.jpg'),(21113,106,0,1337,'container2'),(21114,121,0,1337,'hooded-sweater-red-small-size'),(21115,132,0,1337,'0'),(21116,133,0,1337,'/r/e/red_1.jpg'),(21121,73,0,1338,'Hooded Sweater-red-Large size'),(21122,84,0,1338,'Hooded Sweater'),(21123,86,0,1338,'Hooded Sweater '),(21124,87,0,1338,'/r/e/red_2.jpg'),(21125,88,0,1338,'/r/e/red_2.jpg'),(21126,89,0,1338,'/r/e/red_2.jpg'),(21127,106,0,1338,'container2'),(21128,121,0,1338,'hooded-sweater-red-large-size'),(21129,132,0,1338,'0'),(21130,133,0,1338,'/r/e/red_2.jpg'),(21135,73,0,1339,'Hooded Sweater-grey-Medium size'),(21136,84,0,1339,'Hooded Sweater'),(21137,86,0,1339,'Hooded Sweater '),(21138,87,0,1339,'/g/r/grey.jpg'),(21139,88,0,1339,'/g/r/grey.jpg'),(21140,89,0,1339,'/g/r/grey.jpg'),(21141,106,0,1339,'container2'),(21142,121,0,1339,'hooded-sweater-grey-medium-size'),(21143,132,0,1339,'0'),(21144,133,0,1339,'/g/r/grey.jpg'),(21149,73,0,1340,'Hooded Sweater-grey-Small size'),(21150,84,0,1340,'Hooded Sweater'),(21151,86,0,1340,'Hooded Sweater '),(21152,87,0,1340,'/g/r/grey_1.jpg'),(21153,88,0,1340,'/g/r/grey_1.jpg'),(21154,89,0,1340,'/g/r/grey_1.jpg'),(21155,106,0,1340,'container2'),(21156,121,0,1340,'hooded-sweater-grey-small-size'),(21157,132,0,1340,'0'),(21158,133,0,1340,'/g/r/grey_1.jpg'),(21163,73,0,1341,'Hooded Sweater-grey-Large size'),(21164,84,0,1341,'Hooded Sweater'),(21165,86,0,1341,'Hooded Sweater '),(21166,87,0,1341,'/g/r/grey_2.jpg'),(21167,88,0,1341,'/g/r/grey_2.jpg'),(21168,89,0,1341,'/g/r/grey_2.jpg'),(21169,106,0,1341,'container2'),(21170,121,0,1341,'hooded-sweater-grey-large-size'),(21171,132,0,1341,'0'),(21172,133,0,1341,'/g/r/grey_2.jpg'),(21211,73,0,1343,'Dark blue sunglasses-Medium size-red'),(21212,84,0,1343,'Sunglasses'),(21213,86,0,1343,'Sunglasses Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: plastic\r\nPlease note: May only be returne'),(21214,106,0,1343,'container2'),(21215,121,0,1343,'dark-blue-sunglasses-medium-size-red'),(21216,132,0,1343,'0'),(21217,206,0,1343,'Plastic'),(21218,73,0,1344,'Dark blue sunglasses-Large size-red'),(21219,84,0,1344,'Sunglasses'),(21220,86,0,1344,'Sunglasses Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: plastic\r\nPlease note: May only be returne'),(21221,106,0,1344,'container2'),(21222,121,0,1344,'dark-blue-sunglasses-large-size-red'),(21223,132,0,1344,'0'),(21224,206,0,1344,'Plastic'),(21225,87,0,270,'/i/m/image_31178507_75_620x757_1_1_1.jpg'),(21226,88,0,270,'/i/m/image_31178507_75_620x757_1_1_1.jpg'),(21227,89,0,270,'/i/m/image_31178507_75_620x757_1_1_1.jpg'),(21228,133,0,270,'/i/m/image_31178507_75_620x757_1_1_1.jpg'),(21233,87,0,271,'/i/m/image_31178507_75_620x757_1_1_1_1.jpg'),(21234,88,0,271,'/i/m/image_31178507_75_620x757_1_1_1_1.jpg'),(21235,89,0,271,'/i/m/image_31178507_75_620x757_1_1_1_1.jpg'),(21236,133,0,271,'/i/m/image_31178507_75_620x757_1_1_1_1.jpg'),(21249,73,0,1345,'People of Shibuya Transitional Jacket-brown-Extra small size'),(21250,84,0,1345,'People of Shibuya Transitional Jacket'),(21251,86,0,1345,'People of Shibuya Transitional Jacket '),(21252,87,0,1345,'/i/m/image_31091479_21_970x1182_1_2_1.jpg'),(21253,88,0,1345,'/i/m/image_31091479_21_970x1182_1_2_1.jpg'),(21254,89,0,1345,'/i/m/image_31091479_21_970x1182_1_2_1.jpg'),(21255,106,0,1345,'container2'),(21256,121,0,1345,'people-of-shibuya-transitional-jacket-brown-extra-small-size'),(21257,132,0,1345,'0'),(21258,133,0,1345,'/i/m/image_31091479_21_970x1182_1_2_1.jpg'),(21263,73,0,1346,'People of Shibuya Transitional Jacket-brown-Small size'),(21264,84,0,1346,'People of Shibuya Transitional Jacket'),(21265,86,0,1346,'People of Shibuya Transitional Jacket '),(21266,87,0,1346,'/i/m/image_31091479_21_970x1182_1_2_1_1.jpg'),(21267,88,0,1346,'/i/m/image_31091479_21_970x1182_1_2_1_1.jpg'),(21268,89,0,1346,'/i/m/image_31091479_21_970x1182_1_2_1_1.jpg'),(21269,106,0,1346,'container2'),(21270,121,0,1346,'people-of-shibuya-transitional-jacket-brown-small-size'),(21271,132,0,1346,'0'),(21272,133,0,1346,'/i/m/image_31091479_21_970x1182_1_2_1_1.jpg'),(21277,73,0,1347,'People of Shibuya Transitional Jacket-brown-Medium size'),(21278,84,0,1347,'People of Shibuya Transitional Jacket'),(21279,86,0,1347,'People of Shibuya Transitional Jacket '),(21280,87,0,1347,'/i/m/image_31091479_21_970x1182_1_2_2.jpg'),(21281,88,0,1347,'/i/m/image_31091479_21_970x1182_1_2_2.jpg'),(21282,89,0,1347,'/i/m/image_31091479_21_970x1182_1_2_2.jpg'),(21283,106,0,1347,'container2'),(21284,121,0,1347,'people-of-shibuya-transitional-jacket-brown-medium-size'),(21285,132,0,1347,'0'),(21286,133,0,1347,'/i/m/image_31091479_21_970x1182_1_2_2.jpg'),(21291,73,0,1348,'People of Shibuya Transitional Jacket-red-Extra small size'),(21292,84,0,1348,'People of Shibuya Transitional Jacket'),(21293,86,0,1348,'People of Shibuya Transitional Jacket '),(21294,87,0,1348,'/8/u/8u8u8u8u6yy_3.jpg'),(21295,88,0,1348,'/8/u/8u8u8u8u6yy_3.jpg'),(21296,89,0,1348,'/8/u/8u8u8u8u6yy_3.jpg'),(21297,106,0,1348,'container2'),(21298,121,0,1348,'people-of-shibuya-transitional-jacket-red-extra-small-size'),(21299,132,0,1348,'0'),(21300,133,0,1348,'/8/u/8u8u8u8u6yy_3.jpg'),(21305,73,0,1349,'People of Shibuya Transitional Jacket-red-Small size'),(21306,84,0,1349,'People of Shibuya Transitional Jacket'),(21307,86,0,1349,'People of Shibuya Transitional Jacket '),(21308,87,0,1349,'/8/u/8u8u8u8u6yy_1_1.jpg'),(21309,88,0,1349,'/8/u/8u8u8u8u6yy_1_1.jpg'),(21310,89,0,1349,'/8/u/8u8u8u8u6yy_1_1.jpg'),(21311,106,0,1349,'container2'),(21312,121,0,1349,'people-of-shibuya-transitional-jacket-red-small-size'),(21313,132,0,1349,'0'),(21314,133,0,1349,'/8/u/8u8u8u8u6yy_1_1.jpg'),(21319,73,0,1350,'People of Shibuya Transitional Jacket-red-Medium size'),(21320,84,0,1350,'People of Shibuya Transitional Jacket'),(21321,86,0,1350,'People of Shibuya Transitional Jacket '),(21322,87,0,1350,'/8/u/8u8u8u8u6yy_2_1.jpg'),(21323,88,0,1350,'/8/u/8u8u8u8u6yy_2_1.jpg'),(21324,89,0,1350,'/8/u/8u8u8u8u6yy_2_1.jpg'),(21325,106,0,1350,'container2'),(21326,121,0,1350,'people-of-shibuya-transitional-jacket-red-medium-size'),(21327,132,0,1350,'0'),(21328,133,0,1350,'/8/u/8u8u8u8u6yy_2_1.jpg'),(21333,73,0,1351,'People of Shibuya Transitional Jacket'),(21334,84,0,1351,'Seventy Transitional Jacket'),(21335,86,0,1351,'Seventy Transitional Jacket'),(21336,106,0,1351,'container2'),(21337,121,0,1351,'n-seventy-transitional-jacket-13'),(21338,132,0,1351,'2'),(21339,73,0,1352,'I Maschi Lace-up Boots-white-EU 39'),(21340,84,0,1352,'I Maschi Lace-up Boots'),(21341,86,0,1352,'I Maschi Lace-up Boots '),(21342,87,0,1352,'/w/h/white.jpg'),(21343,88,0,1352,'/w/h/white.jpg'),(21344,89,0,1352,'/w/h/white.jpg'),(21345,106,0,1352,'container2'),(21346,121,0,1352,'i-maschi-lace-up-boots-white-eu-39'),(21347,132,0,1352,'0'),(21348,133,0,1352,'/w/h/white.jpg'),(21353,73,0,1353,'I Maschi Lace-up Boots-white-EU 42'),(21354,84,0,1353,'I Maschi Lace-up Boots'),(21355,86,0,1353,'I Maschi Lace-up Boots '),(21356,87,0,1353,'/w/h/white_1.jpg'),(21357,88,0,1353,'/w/h/white_1.jpg'),(21358,89,0,1353,'/w/h/white_1.jpg'),(21359,106,0,1353,'container2'),(21360,121,0,1353,'i-maschi-lace-up-boots-white-eu-42'),(21361,132,0,1353,'0'),(21362,133,0,1353,'/w/h/white_1.jpg'),(21367,73,0,1354,'I Maschi Lace-up Boots-white-EU 40'),(21368,84,0,1354,'I Maschi Lace-up Boots'),(21369,86,0,1354,'I Maschi Lace-up Boots '),(21370,87,0,1354,'/w/h/white_2.jpg'),(21371,88,0,1354,'/w/h/white_2.jpg'),(21372,89,0,1354,'/w/h/white_2.jpg'),(21373,106,0,1354,'container2'),(21374,121,0,1354,'i-maschi-lace-up-boots-white-eu-40'),(21375,132,0,1354,'0'),(21376,133,0,1354,'/w/h/white_2.jpg'),(21381,73,0,1355,'I Maschi Lace-up Boots-white-EU 43'),(21382,84,0,1355,'I Maschi Lace-up Boots'),(21383,86,0,1355,'I Maschi Lace-up Boots '),(21384,87,0,1355,'/w/h/white_3.jpg'),(21385,88,0,1355,'/w/h/white_3.jpg'),(21386,89,0,1355,'/w/h/white_3.jpg'),(21387,106,0,1355,'container2'),(21388,121,0,1355,'i-maschi-lace-up-boots-white-eu-43'),(21389,132,0,1355,'0'),(21390,133,0,1355,'/w/h/white_3.jpg'),(21395,73,0,1356,'I Maschi Lace-up Boots-white-EU 41'),(21396,84,0,1356,'I Maschi Lace-up Boots'),(21397,86,0,1356,'I Maschi Lace-up Boots '),(21398,87,0,1356,'/w/h/white_4.jpg'),(21399,88,0,1356,'/w/h/white_4.jpg'),(21400,89,0,1356,'/w/h/white_4.jpg'),(21401,106,0,1356,'container2'),(21402,121,0,1356,'i-maschi-lace-up-boots-white-eu-41'),(21403,132,0,1356,'0'),(21404,133,0,1356,'/w/h/white_4.jpg'),(21409,73,0,1357,'I Maschi Lace-up Boots-white-EU 44'),(21410,84,0,1357,'I Maschi Lace-up Boots'),(21411,86,0,1357,'I Maschi Lace-up Boots '),(21412,87,0,1357,'/w/h/white_5.jpg'),(21413,88,0,1357,'/w/h/white_5.jpg'),(21414,89,0,1357,'/w/h/white_5.jpg'),(21415,106,0,1357,'container2'),(21416,121,0,1357,'i-maschi-lace-up-boots-white-eu-44'),(21417,132,0,1357,'0'),(21418,133,0,1357,'/w/h/white_5.jpg'),(21423,73,0,1358,'I Maschi Lace-up Boots-grey-EU 39'),(21424,84,0,1358,'I Maschi Lace-up Boots'),(21425,86,0,1358,'I Maschi Lace-up Boots '),(21426,87,0,1358,'/g/r/grey_1_1.jpg'),(21427,88,0,1358,'/g/r/grey_1_1.jpg'),(21428,89,0,1358,'/g/r/grey_1_1.jpg'),(21429,106,0,1358,'container2'),(21430,121,0,1358,'i-maschi-lace-up-boots-grey-eu-39'),(21431,132,0,1358,'0'),(21432,133,0,1358,'/g/r/grey_1_1.jpg'),(21437,73,0,1359,'I Maschi Lace-up Boots-grey-EU 42'),(21438,84,0,1359,'I Maschi Lace-up Boots'),(21439,86,0,1359,'I Maschi Lace-up Boots '),(21440,87,0,1359,'/g/r/grey_1_1_1.jpg'),(21441,88,0,1359,'/g/r/grey_1_1_1.jpg'),(21442,89,0,1359,'/g/r/grey_1_1_1.jpg'),(21443,106,0,1359,'container2'),(21444,121,0,1359,'i-maschi-lace-up-boots-grey-eu-42'),(21445,132,0,1359,'0'),(21446,133,0,1359,'/g/r/grey_1_1_1.jpg'),(21451,73,0,1360,'I Maschi Lace-up Boots-grey-EU 40'),(21452,84,0,1360,'I Maschi Lace-up Boots'),(21453,86,0,1360,'I Maschi Lace-up Boots '),(21454,87,0,1360,'/g/r/grey_1_2.jpg'),(21455,88,0,1360,'/g/r/grey_1_2.jpg'),(21456,89,0,1360,'/g/r/grey_1_2.jpg'),(21457,106,0,1360,'container2'),(21458,121,0,1360,'i-maschi-lace-up-boots-grey-eu-40'),(21459,132,0,1360,'0'),(21460,133,0,1360,'/g/r/grey_1_2.jpg'),(21465,73,0,1361,'I Maschi Lace-up Boots-grey-EU 43'),(21466,84,0,1361,'I Maschi Lace-up Boots'),(21467,86,0,1361,'I Maschi Lace-up Boots '),(21468,87,0,1361,'/g/r/grey_1_3.jpg'),(21469,88,0,1361,'/g/r/grey_1_3.jpg'),(21470,89,0,1361,'/g/r/grey_1_3.jpg'),(21471,106,0,1361,'container2'),(21472,121,0,1361,'i-maschi-lace-up-boots-grey-eu-43'),(21473,132,0,1361,'0'),(21474,133,0,1361,'/g/r/grey_1_3.jpg'),(21479,73,0,1362,'I Maschi Lace-up Boots-grey-EU 41'),(21480,84,0,1362,'I Maschi Lace-up Boots'),(21481,86,0,1362,'I Maschi Lace-up Boots '),(21482,87,0,1362,'/g/r/grey_1_4.jpg'),(21483,88,0,1362,'/g/r/grey_1_4.jpg'),(21484,89,0,1362,'/g/r/grey_1_4.jpg'),(21485,106,0,1362,'container2'),(21486,121,0,1362,'i-maschi-lace-up-boots-grey-eu-41'),(21487,132,0,1362,'0'),(21488,133,0,1362,'/g/r/grey_1_4.jpg'),(21493,73,0,1363,'I Maschi Lace-up Boots-grey-EU 44'),(21494,84,0,1363,'I Maschi Lace-up Boots'),(21495,86,0,1363,'I Maschi Lace-up Boots '),(21496,87,0,1363,'/g/r/grey_1_5.jpg'),(21497,88,0,1363,'/g/r/grey_1_5.jpg'),(21498,89,0,1363,'/g/r/grey_1_5.jpg'),(21499,106,0,1363,'container2'),(21500,121,0,1363,'i-maschi-lace-up-boots-grey-eu-44'),(21501,132,0,1363,'0'),(21502,133,0,1363,'/g/r/grey_1_5.jpg'),(21507,73,0,1364,'I Maschi Lace-up Boots-black-EU 39'),(21508,84,0,1364,'I Maschi Lace-up Boots'),(21509,86,0,1364,'I Maschi Lace-up Boots '),(21510,87,0,1364,'/b/l/black_1_1.jpg'),(21511,88,0,1364,'/b/l/black_1_1.jpg'),(21512,89,0,1364,'/b/l/black_1_1.jpg'),(21513,106,0,1364,'container2'),(21514,121,0,1364,'i-maschi-lace-up-boots-black-eu-39'),(21515,132,0,1364,'0'),(21516,133,0,1364,'/b/l/black_1_1.jpg'),(21521,73,0,1365,'I Maschi Lace-up Boots-black-EU 42'),(21522,84,0,1365,'I Maschi Lace-up Boots'),(21523,86,0,1365,'I Maschi Lace-up Boots '),(21524,87,0,1365,'/b/l/black_1_1_1.jpg'),(21525,88,0,1365,'/b/l/black_1_1_1.jpg'),(21526,89,0,1365,'/b/l/black_1_1_1.jpg'),(21527,106,0,1365,'container2'),(21528,121,0,1365,'i-maschi-lace-up-boots-black-eu-42'),(21529,132,0,1365,'0'),(21530,133,0,1365,'/b/l/black_1_1_1.jpg'),(21535,73,0,1366,'I Maschi Lace-up Boots-black-EU 40'),(21536,84,0,1366,'I Maschi Lace-up Boots'),(21537,86,0,1366,'I Maschi Lace-up Boots '),(21538,87,0,1366,'/b/l/black_1_2.jpg'),(21539,88,0,1366,'/b/l/black_1_2.jpg'),(21540,89,0,1366,'/b/l/black_1_2.jpg'),(21541,106,0,1366,'container2'),(21542,121,0,1366,'i-maschi-lace-up-boots-black-eu-40'),(21543,132,0,1366,'0'),(21544,133,0,1366,'/b/l/black_1_2.jpg'),(21549,73,0,1367,'I Maschi Lace-up Boots-black-EU 43'),(21550,84,0,1367,'I Maschi Lace-up Boots'),(21551,86,0,1367,'I Maschi Lace-up Boots '),(21552,87,0,1367,'/b/l/black_1_3.jpg'),(21553,88,0,1367,'/b/l/black_1_3.jpg'),(21554,89,0,1367,'/b/l/black_1_3.jpg'),(21555,106,0,1367,'container2'),(21556,121,0,1367,'i-maschi-lace-up-boots-black-eu-43'),(21557,132,0,1367,'0'),(21558,133,0,1367,'/b/l/black_1_3.jpg'),(21563,73,0,1368,'I Maschi Lace-up Boots-black-EU 41'),(21564,84,0,1368,'I Maschi Lace-up Boots'),(21565,86,0,1368,'I Maschi Lace-up Boots '),(21566,87,0,1368,'/b/l/black_1_4.jpg'),(21567,88,0,1368,'/b/l/black_1_4.jpg'),(21568,89,0,1368,'/b/l/black_1_4.jpg'),(21569,106,0,1368,'container2'),(21570,121,0,1368,'i-maschi-lace-up-boots-black-eu-41'),(21571,132,0,1368,'0'),(21572,133,0,1368,'/b/l/black_1_4.jpg'),(21577,73,0,1369,'I Maschi Lace-up Boots-black-EU 44'),(21578,84,0,1369,'I Maschi Lace-up Boots'),(21579,86,0,1369,'I Maschi Lace-up Boots '),(21580,87,0,1369,'/b/l/black_1_5.jpg'),(21581,88,0,1369,'/b/l/black_1_5.jpg'),(21582,89,0,1369,'/b/l/black_1_5.jpg'),(21583,106,0,1369,'container2'),(21584,121,0,1369,'i-maschi-lace-up-boots-black-eu-44'),(21585,132,0,1369,'0'),(21586,133,0,1369,'/b/l/black_1_5.jpg'),(21591,73,0,1370,'I Maschi Lace-up Boots-red-EU 39'),(21592,84,0,1370,'I Maschi Lace-up Boots'),(21593,86,0,1370,'I Maschi Lace-up Boots '),(21594,87,0,1370,'/r/e/red_1_1.jpg'),(21595,88,0,1370,'/r/e/red_1_1.jpg'),(21596,89,0,1370,'/r/e/red_1_1.jpg'),(21597,106,0,1370,'container2'),(21598,121,0,1370,'i-maschi-lace-up-boots-red-eu-39'),(21599,132,0,1370,'0'),(21600,133,0,1370,'/r/e/red_1_1.jpg'),(21605,73,0,1371,'I Maschi Lace-up Boots-red-EU 42'),(21606,84,0,1371,'I Maschi Lace-up Boots'),(21607,86,0,1371,'I Maschi Lace-up Boots '),(21608,87,0,1371,'/r/e/red_1_1_1.jpg'),(21609,88,0,1371,'/r/e/red_1_1_1.jpg'),(21610,89,0,1371,'/r/e/red_1_1_1.jpg'),(21611,106,0,1371,'container2'),(21612,121,0,1371,'i-maschi-lace-up-boots-red-eu-42'),(21613,132,0,1371,'0'),(21614,133,0,1371,'/r/e/red_1_1_1.jpg'),(21619,73,0,1372,'I Maschi Lace-up Boots-red-EU 40'),(21620,84,0,1372,'I Maschi Lace-up Boots'),(21621,86,0,1372,'I Maschi Lace-up Boots '),(21622,87,0,1372,'/r/e/red_1_2.jpg'),(21623,88,0,1372,'/r/e/red_1_2.jpg'),(21624,89,0,1372,'/r/e/red_1_2.jpg'),(21625,106,0,1372,'container2'),(21626,121,0,1372,'i-maschi-lace-up-boots-red-eu-40'),(21627,132,0,1372,'0'),(21628,133,0,1372,'/r/e/red_1_2.jpg'),(21633,73,0,1373,'I Maschi Lace-up Boots-red-EU 43'),(21634,84,0,1373,'I Maschi Lace-up Boots'),(21635,86,0,1373,'I Maschi Lace-up Boots '),(21636,87,0,1373,'/r/e/red_1_3.jpg'),(21637,88,0,1373,'/r/e/red_1_3.jpg'),(21638,89,0,1373,'/r/e/red_1_3.jpg'),(21639,106,0,1373,'container2'),(21640,121,0,1373,'i-maschi-lace-up-boots-red-eu-43'),(21641,132,0,1373,'0'),(21642,133,0,1373,'/r/e/red_1_3.jpg'),(21647,73,0,1374,'I Maschi Lace-up Boots-red-EU 41'),(21648,84,0,1374,'I Maschi Lace-up Boots'),(21649,86,0,1374,'I Maschi Lace-up Boots '),(21650,87,0,1374,'/r/e/red_1_4.jpg'),(21651,88,0,1374,'/r/e/red_1_4.jpg'),(21652,89,0,1374,'/r/e/red_1_4.jpg'),(21653,106,0,1374,'container2'),(21654,121,0,1374,'i-maschi-lace-up-boots-red-eu-41'),(21655,132,0,1374,'0'),(21656,133,0,1374,'/r/e/red_1_4.jpg'),(21661,73,0,1375,'I Maschi Lace-up Boots-red-EU 44'),(21662,84,0,1375,'I Maschi Lace-up Boots'),(21663,86,0,1375,'I Maschi Lace-up Boots '),(21664,87,0,1375,'/r/e/red_1_5.jpg'),(21665,88,0,1375,'/r/e/red_1_5.jpg'),(21666,89,0,1375,'/r/e/red_1_5.jpg'),(21667,106,0,1375,'container2'),(21668,121,0,1375,'i-maschi-lace-up-boots-red-eu-44'),(21669,132,0,1375,'0'),(21670,133,0,1375,'/r/e/red_1_5.jpg'),(21675,73,0,1376,'I Maschi Lace-up Boots-blue-EU 39'),(21676,84,0,1376,'I Maschi Lace-up Boots'),(21677,86,0,1376,'I Maschi Lace-up Boots '),(21678,87,0,1376,'/b/l/blue.jpg'),(21679,88,0,1376,'/b/l/blue.jpg'),(21680,89,0,1376,'/b/l/blue.jpg'),(21681,106,0,1376,'container2'),(21682,121,0,1376,'i-maschi-lace-up-boots-blue-eu-39'),(21683,132,0,1376,'0'),(21684,133,0,1376,'/b/l/blue.jpg'),(21689,73,0,1377,'I Maschi Lace-up Boots-blue-EU 42'),(21690,84,0,1377,'I Maschi Lace-up Boots'),(21691,86,0,1377,'I Maschi Lace-up Boots '),(21692,87,0,1377,'/b/l/blue_1.jpg'),(21693,88,0,1377,'/b/l/blue_1.jpg'),(21694,89,0,1377,'/b/l/blue_1.jpg'),(21695,106,0,1377,'container2'),(21696,121,0,1377,'i-maschi-lace-up-boots-blue-eu-42'),(21697,132,0,1377,'0'),(21698,133,0,1377,'/b/l/blue_1.jpg'),(21703,73,0,1378,'I Maschi Lace-up Boots-blue-EU 40'),(21704,84,0,1378,'I Maschi Lace-up Boots'),(21705,86,0,1378,'I Maschi Lace-up Boots '),(21706,87,0,1378,'/b/l/blue_2.jpg'),(21707,88,0,1378,'/b/l/blue_2.jpg'),(21708,89,0,1378,'/b/l/blue_2.jpg'),(21709,106,0,1378,'container2'),(21710,121,0,1378,'i-maschi-lace-up-boots-blue-eu-40'),(21711,132,0,1378,'0'),(21712,133,0,1378,'/b/l/blue_2.jpg'),(21717,73,0,1379,'I Maschi Lace-up Boots-blue-EU 43'),(21718,84,0,1379,'I Maschi Lace-up Boots'),(21719,86,0,1379,'I Maschi Lace-up Boots '),(21720,87,0,1379,'/b/l/blue_3.jpg'),(21721,88,0,1379,'/b/l/blue_3.jpg'),(21722,89,0,1379,'/b/l/blue_3.jpg'),(21723,106,0,1379,'container2'),(21724,121,0,1379,'i-maschi-lace-up-boots-blue-eu-43'),(21725,132,0,1379,'0'),(21726,133,0,1379,'/b/l/blue_3.jpg'),(21731,73,0,1380,'I Maschi Lace-up Boots-blue-EU 41'),(21732,84,0,1380,'I Maschi Lace-up Boots'),(21733,86,0,1380,'I Maschi Lace-up Boots '),(21734,87,0,1380,'/b/l/blue_4.jpg'),(21735,88,0,1380,'/b/l/blue_4.jpg'),(21736,89,0,1380,'/b/l/blue_4.jpg'),(21737,106,0,1380,'container2'),(21738,121,0,1380,'i-maschi-lace-up-boots-blue-eu-41'),(21739,132,0,1380,'0'),(21740,133,0,1380,'/b/l/blue_4.jpg'),(21745,73,0,1381,'I Maschi Lace-up Boots-blue-EU 44'),(21746,84,0,1381,'I Maschi Lace-up Boots'),(21747,86,0,1381,'I Maschi Lace-up Boots '),(21748,87,0,1381,'/b/l/blue_5.jpg'),(21749,88,0,1381,'/b/l/blue_5.jpg'),(21750,89,0,1381,'/b/l/blue_5.jpg'),(21751,106,0,1381,'container2'),(21752,121,0,1381,'i-maschi-lace-up-boots-blue-eu-44'),(21753,132,0,1381,'0'),(21754,133,0,1381,'/b/l/blue_5.jpg'),(21773,87,0,1351,'/i/m/image_31091479_21_970x1182_0_3.jpg'),(21774,88,0,1351,'/i/m/image_31091479_21_970x1182_0_3.jpg'),(21775,89,0,1351,'/i/m/image_31091479_21_970x1182_0_3.jpg'),(21785,73,0,1383,'I Maschi Lace-up Boots-grey-EU 41'),(21786,84,0,1383,'I Maschi Lace-up Boots'),(21787,86,0,1383,'I Maschi Lace-up Boots '),(21788,87,0,1383,'/g/r/grey_1_6.jpg'),(21789,88,0,1383,'/g/r/grey_1_6.jpg'),(21790,89,0,1383,'/g/r/grey_1_6.jpg'),(21791,106,0,1383,'container2'),(21792,121,0,1383,'n-i-maschi-lace-up-boots-grey-eu-41'),(21793,132,0,1383,'0'),(21794,133,0,1383,'/g/r/grey_1_6.jpg'),(21795,206,0,1383,'leather'),(21800,73,0,1384,'I Maschi Lace-up Boots-grey-EU 44'),(21801,84,0,1384,'I Maschi Lace-up Boots'),(21802,86,0,1384,'I Maschi Lace-up Boots '),(21803,87,0,1384,'/g/r/grey_1_1_2.jpg'),(21804,88,0,1384,'/g/r/grey_1_1_2.jpg'),(21805,89,0,1384,'/g/r/grey_1_1_2.jpg'),(21806,106,0,1384,'container2'),(21807,121,0,1384,'n-i-maschi-lace-up-boots-grey-eu-44'),(21808,132,0,1384,'0'),(21809,133,0,1384,'/g/r/grey_1_1_2.jpg'),(21810,206,0,1384,'leather'),(21815,73,0,1385,'I Maschi Lace-up Boots-grey-EU 40'),(21816,84,0,1385,'I Maschi Lace-up Boots'),(21817,86,0,1385,'I Maschi Lace-up Boots '),(21818,87,0,1385,'/g/r/grey_1_2_1.jpg'),(21819,88,0,1385,'/g/r/grey_1_2_1.jpg'),(21820,89,0,1385,'/g/r/grey_1_2_1.jpg'),(21821,106,0,1385,'container2'),(21822,121,0,1385,'n-i-maschi-lace-up-boots-grey-eu-40'),(21823,132,0,1385,'0'),(21824,133,0,1385,'/g/r/grey_1_2_1.jpg'),(21825,206,0,1385,'leather'),(21830,73,0,1386,'I Maschi Lace-up Boots-grey-EU 43'),(21831,84,0,1386,'I Maschi Lace-up Boots'),(21832,86,0,1386,'I Maschi Lace-up Boots '),(21833,87,0,1386,'/g/r/grey_1_3_1.jpg'),(21834,88,0,1386,'/g/r/grey_1_3_1.jpg'),(21835,89,0,1386,'/g/r/grey_1_3_1.jpg'),(21836,106,0,1386,'container2'),(21837,121,0,1386,'n-i-maschi-lace-up-boots-grey-eu-43'),(21838,132,0,1386,'0'),(21839,133,0,1386,'/g/r/grey_1_3_1.jpg'),(21840,206,0,1386,'leather'),(21845,73,0,1387,'I Maschi Lace-up Boots-grey-EU 39'),(21846,84,0,1387,'I Maschi Lace-up Boots'),(21847,86,0,1387,'I Maschi Lace-up Boots '),(21848,87,0,1387,'/g/r/grey_1_4_1.jpg'),(21849,88,0,1387,'/g/r/grey_1_4_1.jpg'),(21850,89,0,1387,'/g/r/grey_1_4_1.jpg'),(21851,106,0,1387,'container2'),(21852,121,0,1387,'n-i-maschi-lace-up-boots-grey-eu-39'),(21853,132,0,1387,'0'),(21854,133,0,1387,'/g/r/grey_1_4_1.jpg'),(21855,206,0,1387,'leather'),(21860,73,0,1388,'I Maschi Lace-up Boots-grey-EU 42'),(21861,84,0,1388,'I Maschi Lace-up Boots'),(21862,86,0,1388,'I Maschi Lace-up Boots '),(21863,87,0,1388,'/g/r/grey_1_5_1.jpg'),(21864,88,0,1388,'/g/r/grey_1_5_1.jpg'),(21865,89,0,1388,'/g/r/grey_1_5_1.jpg'),(21866,106,0,1388,'container2'),(21867,121,0,1388,'n-i-maschi-lace-up-boots-grey-eu-42'),(21868,132,0,1388,'0'),(21869,133,0,1388,'/g/r/grey_1_5_1.jpg'),(21870,206,0,1388,'leather'),(21875,73,0,1389,'I Maschi Lace-up Boots-blue-EU 41'),(21876,84,0,1389,'I Maschi Lace-up Boots'),(21877,86,0,1389,'I Maschi Lace-up Boots '),(21878,87,0,1389,'/b/l/blue_6.jpg'),(21879,88,0,1389,'/b/l/blue_6.jpg'),(21880,89,0,1389,'/b/l/blue_6.jpg'),(21881,106,0,1389,'container2'),(21882,121,0,1389,'n-i-maschi-lace-up-boots-blue-eu-41'),(21883,132,0,1389,'0'),(21884,133,0,1389,'/b/l/blue_6.jpg'),(21885,206,0,1389,'leather'),(21890,73,0,1390,'I Maschi Lace-up Boots-blue-EU 44'),(21891,84,0,1390,'I Maschi Lace-up Boots'),(21892,86,0,1390,'I Maschi Lace-up Boots '),(21893,87,0,1390,'/b/l/blue_1_1.jpg'),(21894,88,0,1390,'/b/l/blue_1_1.jpg'),(21895,89,0,1390,'/b/l/blue_1_1.jpg'),(21896,106,0,1390,'container2'),(21897,121,0,1390,'n-i-maschi-lace-up-boots-blue-eu-44'),(21898,132,0,1390,'0'),(21899,133,0,1390,'/b/l/blue_1_1.jpg'),(21900,206,0,1390,'leather'),(21905,73,0,1391,'I Maschi Lace-up Boots-blue-EU 40'),(21906,84,0,1391,'I Maschi Lace-up Boots'),(21907,86,0,1391,'I Maschi Lace-up Boots '),(21908,87,0,1391,'/b/l/blue_2_1.jpg'),(21909,88,0,1391,'/b/l/blue_2_1.jpg'),(21910,89,0,1391,'/b/l/blue_2_1.jpg'),(21911,106,0,1391,'container2'),(21912,121,0,1391,'n-i-maschi-lace-up-boots-blue-eu-40'),(21913,132,0,1391,'0'),(21914,133,0,1391,'/b/l/blue_2_1.jpg'),(21915,206,0,1391,'leather'),(21920,73,0,1392,'I Maschi Lace-up Boots-blue-EU 43'),(21921,84,0,1392,'I Maschi Lace-up Boots'),(21922,86,0,1392,'I Maschi Lace-up Boots '),(21923,87,0,1392,'/b/l/blue_3_1.jpg'),(21924,88,0,1392,'/b/l/blue_3_1.jpg'),(21925,89,0,1392,'/b/l/blue_3_1.jpg'),(21926,106,0,1392,'container2'),(21927,121,0,1392,'n-i-maschi-lace-up-boots-blue-eu-43'),(21928,132,0,1392,'0'),(21929,133,0,1392,'/b/l/blue_3_1.jpg'),(21930,206,0,1392,'leather'),(21935,73,0,1393,'I Maschi Lace-up Boots-blue-EU 39'),(21936,84,0,1393,'I Maschi Lace-up Boots'),(21937,86,0,1393,'I Maschi Lace-up Boots '),(21938,87,0,1393,'/b/l/blue_4_1.jpg'),(21939,88,0,1393,'/b/l/blue_4_1.jpg'),(21940,89,0,1393,'/b/l/blue_4_1.jpg'),(21941,106,0,1393,'container2'),(21942,121,0,1393,'n-i-maschi-lace-up-boots-blue-eu-39'),(21943,132,0,1393,'0'),(21944,133,0,1393,'/b/l/blue_4_1.jpg'),(21945,206,0,1393,'leather'),(21950,73,0,1394,'I Maschi Lace-up Boots-blue-EU 42'),(21951,84,0,1394,'I Maschi Lace-up Boots'),(21952,86,0,1394,'I Maschi Lace-up Boots '),(21953,87,0,1394,'/b/l/blue_5_1.jpg'),(21954,88,0,1394,'/b/l/blue_5_1.jpg'),(21955,89,0,1394,'/b/l/blue_5_1.jpg'),(21956,106,0,1394,'container2'),(21957,121,0,1394,'n-i-maschi-lace-up-boots-blue-eu-42'),(21958,132,0,1394,'0'),(21959,133,0,1394,'/b/l/blue_5_1.jpg'),(21960,206,0,1394,'leather'),(21965,73,0,1395,'I Maschi Lace-up Boots-white-EU 41'),(21966,84,0,1395,'I Maschi Lace-up Boots'),(21967,86,0,1395,'I Maschi Lace-up Boots '),(21968,87,0,1395,'/w/h/white_6.jpg'),(21969,88,0,1395,'/w/h/white_6.jpg'),(21970,89,0,1395,'/w/h/white_6.jpg'),(21971,106,0,1395,'container2'),(21972,121,0,1395,'n-i-maschi-lace-up-boots-white-eu-41'),(21973,132,0,1395,'0'),(21974,133,0,1395,'/w/h/white_6.jpg'),(21975,206,0,1395,'leather'),(21980,73,0,1396,'I Maschi Lace-up Boots-white-EU 44'),(21981,84,0,1396,'I Maschi Lace-up Boots'),(21982,86,0,1396,'I Maschi Lace-up Boots '),(21983,87,0,1396,'/w/h/white_1_1.jpg'),(21984,88,0,1396,'/w/h/white_1_1.jpg'),(21985,89,0,1396,'/w/h/white_1_1.jpg'),(21986,106,0,1396,'container2'),(21987,121,0,1396,'n-i-maschi-lace-up-boots-white-eu-44'),(21988,132,0,1396,'0'),(21989,133,0,1396,'/w/h/white_1_1.jpg'),(21990,206,0,1396,'leather'),(21995,73,0,1397,'I Maschi Lace-up Boots-white-EU 40'),(21996,84,0,1397,'I Maschi Lace-up Boots'),(21997,86,0,1397,'I Maschi Lace-up Boots '),(21998,87,0,1397,'/w/h/white_2_1.jpg'),(21999,88,0,1397,'/w/h/white_2_1.jpg'),(22000,89,0,1397,'/w/h/white_2_1.jpg'),(22001,106,0,1397,'container2'),(22002,121,0,1397,'n-i-maschi-lace-up-boots-white-eu-40'),(22003,132,0,1397,'0'),(22004,133,0,1397,'/w/h/white_2_1.jpg'),(22005,206,0,1397,'leather'),(22010,73,0,1398,'I Maschi Lace-up Boots-white-EU 43'),(22011,84,0,1398,'I Maschi Lace-up Boots'),(22012,86,0,1398,'I Maschi Lace-up Boots '),(22013,87,0,1398,'/w/h/white_3_1.jpg'),(22014,88,0,1398,'/w/h/white_3_1.jpg'),(22015,89,0,1398,'/w/h/white_3_1.jpg'),(22016,106,0,1398,'container2'),(22017,121,0,1398,'n-i-maschi-lace-up-boots-white-eu-43'),(22018,132,0,1398,'0'),(22019,133,0,1398,'/w/h/white_3_1.jpg'),(22020,206,0,1398,'leather'),(22025,73,0,1399,'I Maschi Lace-up Boots-white-EU 39'),(22026,84,0,1399,'I Maschi Lace-up Boots'),(22027,86,0,1399,'I Maschi Lace-up Boots '),(22028,87,0,1399,'/w/h/white_4_1.jpg'),(22029,88,0,1399,'/w/h/white_4_1.jpg'),(22030,89,0,1399,'/w/h/white_4_1.jpg'),(22031,106,0,1399,'container2'),(22032,121,0,1399,'n-i-maschi-lace-up-boots-white-eu-39'),(22033,132,0,1399,'0'),(22034,133,0,1399,'/w/h/white_4_1.jpg'),(22035,206,0,1399,'leather'),(22040,73,0,1400,'I Maschi Lace-up Boots-white-EU 42'),(22041,84,0,1400,'I Maschi Lace-up Boots'),(22042,86,0,1400,'I Maschi Lace-up Boots '),(22043,87,0,1400,'/w/h/white_5_1.jpg'),(22044,88,0,1400,'/w/h/white_5_1.jpg'),(22045,89,0,1400,'/w/h/white_5_1.jpg'),(22046,106,0,1400,'container2'),(22047,121,0,1400,'n-i-maschi-lace-up-boots-white-eu-42'),(22048,132,0,1400,'0'),(22049,133,0,1400,'/w/h/white_5_1.jpg'),(22050,206,0,1400,'leather'),(22055,73,0,1401,'I Maschi Lace-up Boots-black-EU 41'),(22056,84,0,1401,'I Maschi Lace-up Boots'),(22057,86,0,1401,'I Maschi Lace-up Boots '),(22058,87,0,1401,'/b/l/black_1_6.jpg'),(22059,88,0,1401,'/b/l/black_1_6.jpg'),(22060,89,0,1401,'/b/l/black_1_6.jpg'),(22061,106,0,1401,'container2'),(22062,121,0,1401,'n-i-maschi-lace-up-boots-black-eu-41'),(22063,132,0,1401,'0'),(22064,133,0,1401,'/b/l/black_1_6.jpg'),(22065,206,0,1401,'leather'),(22070,73,0,1402,'I Maschi Lace-up Boots-black-EU 44'),(22071,84,0,1402,'I Maschi Lace-up Boots'),(22072,86,0,1402,'I Maschi Lace-up Boots '),(22073,87,0,1402,'/b/l/black_1_1_2.jpg'),(22074,88,0,1402,'/b/l/black_1_1_2.jpg'),(22075,89,0,1402,'/b/l/black_1_1_2.jpg'),(22076,106,0,1402,'container2'),(22077,121,0,1402,'n-i-maschi-lace-up-boots-black-eu-44'),(22078,132,0,1402,'0'),(22079,133,0,1402,'/b/l/black_1_1_2.jpg'),(22080,206,0,1402,'leather'),(22085,73,0,1403,'I Maschi Lace-up Boots-black-EU 40'),(22086,84,0,1403,'I Maschi Lace-up Boots'),(22087,86,0,1403,'I Maschi Lace-up Boots '),(22088,87,0,1403,'/b/l/black_1_2_1.jpg'),(22089,88,0,1403,'/b/l/black_1_2_1.jpg'),(22090,89,0,1403,'/b/l/black_1_2_1.jpg'),(22091,106,0,1403,'container2'),(22092,121,0,1403,'n-i-maschi-lace-up-boots-black-eu-40'),(22093,132,0,1403,'0'),(22094,133,0,1403,'/b/l/black_1_2_1.jpg'),(22095,206,0,1403,'leather'),(22100,73,0,1404,'I Maschi Lace-up Boots-black-EU 43'),(22101,84,0,1404,'I Maschi Lace-up Boots'),(22102,86,0,1404,'I Maschi Lace-up Boots '),(22103,87,0,1404,'/b/l/black_1_3_1.jpg'),(22104,88,0,1404,'/b/l/black_1_3_1.jpg'),(22105,89,0,1404,'/b/l/black_1_3_1.jpg'),(22106,106,0,1404,'container2'),(22107,121,0,1404,'n-i-maschi-lace-up-boots-black-eu-43'),(22108,132,0,1404,'0'),(22109,133,0,1404,'/b/l/black_1_3_1.jpg'),(22110,206,0,1404,'leather'),(22115,73,0,1405,'I Maschi Lace-up Boots-black-EU 39'),(22116,84,0,1405,'I Maschi Lace-up Boots'),(22117,86,0,1405,'I Maschi Lace-up Boots '),(22118,87,0,1405,'/b/l/black_1_4_1.jpg'),(22119,88,0,1405,'/b/l/black_1_4_1.jpg'),(22120,89,0,1405,'/b/l/black_1_4_1.jpg'),(22121,106,0,1405,'container2'),(22122,121,0,1405,'n-i-maschi-lace-up-boots-black-eu-39'),(22123,132,0,1405,'0'),(22124,133,0,1405,'/b/l/black_1_4_1.jpg'),(22125,206,0,1405,'leather'),(22130,73,0,1406,'I Maschi Lace-up Boots-black-EU 42'),(22131,84,0,1406,'I Maschi Lace-up Boots'),(22132,86,0,1406,'I Maschi Lace-up Boots '),(22133,87,0,1406,'/b/l/black_1_5_1.jpg'),(22134,88,0,1406,'/b/l/black_1_5_1.jpg'),(22135,89,0,1406,'/b/l/black_1_5_1.jpg'),(22136,106,0,1406,'container2'),(22137,121,0,1406,'n-i-maschi-lace-up-boots-black-eu-42'),(22138,132,0,1406,'0'),(22139,133,0,1406,'/b/l/black_1_5_1.jpg'),(22140,206,0,1406,'leather'),(22145,73,0,1407,'I Maschi Lace-up Boots-red-EU 41'),(22146,84,0,1407,'I Maschi Lace-up Boots'),(22147,86,0,1407,'I Maschi Lace-up Boots '),(22148,87,0,1407,'/r/e/red_1_6.jpg'),(22149,88,0,1407,'/r/e/red_1_6.jpg'),(22150,89,0,1407,'/r/e/red_1_6.jpg'),(22151,106,0,1407,'container2'),(22152,121,0,1407,'n-i-maschi-lace-up-boots-red-eu-41'),(22153,132,0,1407,'0'),(22154,133,0,1407,'/r/e/red_1_6.jpg'),(22155,206,0,1407,'leather'),(22160,73,0,1408,'I Maschi Lace-up Boots-red-EU 44'),(22161,84,0,1408,'I Maschi Lace-up Boots'),(22162,86,0,1408,'I Maschi Lace-up Boots '),(22163,87,0,1408,'/r/e/red_1_1_2.jpg'),(22164,88,0,1408,'/r/e/red_1_1_2.jpg'),(22165,89,0,1408,'/r/e/red_1_1_2.jpg'),(22166,106,0,1408,'container2'),(22167,121,0,1408,'n-i-maschi-lace-up-boots-red-eu-44'),(22168,132,0,1408,'0'),(22169,133,0,1408,'/r/e/red_1_1_2.jpg'),(22170,206,0,1408,'leather'),(22175,73,0,1409,'I Maschi Lace-up Boots-red-EU 40'),(22176,84,0,1409,'I Maschi Lace-up Boots'),(22177,86,0,1409,'I Maschi Lace-up Boots '),(22178,87,0,1409,'/r/e/red_1_2_1.jpg'),(22179,88,0,1409,'/r/e/red_1_2_1.jpg'),(22180,89,0,1409,'/r/e/red_1_2_1.jpg'),(22181,106,0,1409,'container2'),(22182,121,0,1409,'n-i-maschi-lace-up-boots-red-eu-40'),(22183,132,0,1409,'0'),(22184,133,0,1409,'/r/e/red_1_2_1.jpg'),(22185,206,0,1409,'leather'),(22190,73,0,1410,'I Maschi Lace-up Boots-red-EU 43'),(22191,84,0,1410,'I Maschi Lace-up Boots'),(22192,86,0,1410,'I Maschi Lace-up Boots '),(22193,87,0,1410,'/r/e/red_1_3_1.jpg'),(22194,88,0,1410,'/r/e/red_1_3_1.jpg'),(22195,89,0,1410,'/r/e/red_1_3_1.jpg'),(22196,106,0,1410,'container2'),(22197,121,0,1410,'n-i-maschi-lace-up-boots-red-eu-43'),(22198,132,0,1410,'0'),(22199,133,0,1410,'/r/e/red_1_3_1.jpg'),(22200,206,0,1410,'leather'),(22205,73,0,1411,'I Maschi Lace-up Boots-red-EU 39'),(22206,84,0,1411,'I Maschi Lace-up Boots'),(22207,86,0,1411,'I Maschi Lace-up Boots '),(22208,87,0,1411,'/r/e/red_1_4_1.jpg'),(22209,88,0,1411,'/r/e/red_1_4_1.jpg'),(22210,89,0,1411,'/r/e/red_1_4_1.jpg'),(22211,106,0,1411,'container2'),(22212,121,0,1411,'n-i-maschi-lace-up-boots-red-eu-39'),(22213,132,0,1411,'0'),(22214,133,0,1411,'/r/e/red_1_4_1.jpg'),(22215,206,0,1411,'leather'),(22220,73,0,1412,'I Maschi Lace-up Boots-red-EU 42'),(22221,84,0,1412,'I Maschi Lace-up Boots'),(22222,86,0,1412,'I Maschi Lace-up Boots '),(22223,87,0,1412,'/r/e/red_1_5_1.jpg'),(22224,88,0,1412,'/r/e/red_1_5_1.jpg'),(22225,89,0,1412,'/r/e/red_1_5_1.jpg'),(22226,106,0,1412,'container2'),(22227,121,0,1412,'n-i-maschi-lace-up-boots-red-eu-42'),(22228,132,0,1412,'0'),(22229,133,0,1412,'/r/e/red_1_5_1.jpg'),(22230,206,0,1412,'leather'),(22235,73,0,1413,'Maschi Lace-up Boots'),(22236,84,0,1413,'I Maschi Lace-up Boots'),(22237,86,0,1413,'I Maschi Lace-up Boots '),(22238,106,0,1413,'container2'),(22239,121,0,1413,'n-i-maschi-lace-up-boots'),(22240,132,0,1413,'2'),(22241,206,0,1413,'leather'),(22276,73,0,1414,'People of Shibuya Transitional Jacket-brown-Extra small size'),(22277,84,0,1414,'Seventy Transitional Jacket'),(22278,86,0,1414,'Seventy Transitional Jacket'),(22279,87,0,1414,'/i/m/image_31091479_21_970x1182_0_5.jpg'),(22280,88,0,1414,'/i/m/image_31091479_21_970x1182_0_5.jpg'),(22281,89,0,1414,'/i/m/image_31091479_21_970x1182_0_5.jpg'),(22282,106,0,1414,'container2'),(22283,121,0,1414,'people-of-shibuya-transitional-jacket-brown-extra-small-size'),(22284,132,0,1414,'0'),(22285,133,0,1414,'/i/m/image_31091479_21_970x1182_0_5.jpg'),(22290,73,0,1415,'People of Shibuya Transitional Jacket-brown-Small size'),(22291,84,0,1415,'Seventy Transitional Jacket'),(22292,86,0,1415,'Seventy Transitional Jacket'),(22293,87,0,1415,'/i/m/image_31091479_21_970x1182_0_1_3.jpg'),(22294,88,0,1415,'/i/m/image_31091479_21_970x1182_0_1_3.jpg'),(22295,89,0,1415,'/i/m/image_31091479_21_970x1182_0_1_3.jpg'),(22296,106,0,1415,'container2'),(22297,121,0,1415,'people-of-shibuya-transitional-jacket-brown-small-size'),(22298,132,0,1415,'0'),(22299,133,0,1415,'/i/m/image_31091479_21_970x1182_0_1_3.jpg'),(22304,73,0,1416,'People of Shibuya Transitional Jacket-brown-Medium size'),(22305,84,0,1416,'Seventy Transitional Jacket'),(22306,86,0,1416,'Seventy Transitional Jacket'),(22307,87,0,1416,'/i/m/image_31091479_21_970x1182_0_2_2.jpg'),(22308,88,0,1416,'/i/m/image_31091479_21_970x1182_0_2_2.jpg'),(22309,89,0,1416,'/i/m/image_31091479_21_970x1182_0_2_2.jpg'),(22310,106,0,1416,'container2'),(22311,121,0,1416,'people-of-shibuya-transitional-jacket-brown-medium-size'),(22312,132,0,1416,'0'),(22313,133,0,1416,'/i/m/image_31091479_21_970x1182_0_2_2.jpg'),(22318,73,0,1417,'People of Shibuya Transitional Jacket-red-Extra small size'),(22319,84,0,1417,'Seventy Transitional Jacket'),(22320,86,0,1417,'Seventy Transitional Jacket'),(22321,87,0,1417,'/e/r/er54t666_3.jpg'),(22322,88,0,1417,'/e/r/er54t666_3.jpg'),(22323,89,0,1417,'/e/r/er54t666_3.jpg'),(22324,106,0,1417,'container2'),(22325,121,0,1417,'people-of-shibuya-transitional-jacket-red-extra-small-size'),(22326,132,0,1417,'0'),(22327,133,0,1417,'/e/r/er54t666_3.jpg'),(22332,73,0,1418,'People of Shibuya Transitional Jacket-red-Small size'),(22333,84,0,1418,'Seventy Transitional Jacket'),(22334,86,0,1418,'Seventy Transitional Jacket'),(22335,87,0,1418,'/e/r/er54t666_1_1.jpg'),(22336,88,0,1418,'/e/r/er54t666_1_1.jpg'),(22337,89,0,1418,'/e/r/er54t666_1_1.jpg'),(22338,106,0,1418,'container2'),(22339,121,0,1418,'people-of-shibuya-transitional-jacket-red-small-size'),(22340,132,0,1418,'0'),(22341,133,0,1418,'/e/r/er54t666_1_1.jpg'),(22346,73,0,1419,'People of Shibuya Transitional Jacket-red-Medium size'),(22347,84,0,1419,'Seventy Transitional Jacket'),(22348,86,0,1419,'Seventy Transitional Jacket'),(22349,87,0,1419,'/e/r/er54t666_2_1.jpg'),(22350,88,0,1419,'/e/r/er54t666_2_1.jpg'),(22351,89,0,1419,'/e/r/er54t666_2_1.jpg'),(22352,106,0,1419,'container2'),(22353,121,0,1419,'people-of-shibuya-transitional-jacket-red-medium-size'),(22354,132,0,1419,'0'),(22355,133,0,1419,'/e/r/er54t666_2_1.jpg'),(22363,73,0,1420,'Grey Sneakers-red-EU 45'),(22364,84,0,1420,'Grey Sneakers'),(22365,86,0,1420,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22366,87,0,1420,'/r/1/r1_1.jpg'),(22367,88,0,1420,'/r/1/r1_1.jpg'),(22368,89,0,1420,'/r/1/r1_1.jpg'),(22369,106,0,1420,'container2'),(22370,121,0,1420,'n-grey-sneakers-red-eu-45'),(22371,132,0,1420,'0'),(22372,133,0,1420,'/r/1/r1_1.jpg'),(22373,206,0,1420,'leather, textile'),(22378,73,0,1421,'Grey Sneakers-red-EU 43'),(22379,84,0,1421,'Grey Sneakers'),(22380,86,0,1421,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22381,87,0,1421,'/r/1/r1_1_1.jpg'),(22382,88,0,1421,'/r/1/r1_1_1.jpg'),(22383,89,0,1421,'/r/1/r1_1_1.jpg'),(22384,106,0,1421,'container2'),(22385,121,0,1421,'n-grey-sneakers-red-eu-43'),(22386,132,0,1421,'0'),(22387,133,0,1421,'/r/1/r1_1_1.jpg'),(22388,206,0,1421,'leather, textile'),(22393,73,0,1422,'Grey Sneakers-red-EU 42'),(22394,84,0,1422,'Grey Sneakers'),(22395,86,0,1422,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22396,87,0,1422,'/r/1/r1_1_2.jpg'),(22397,88,0,1422,'/r/1/r1_1_2.jpg'),(22398,89,0,1422,'/r/1/r1_1_2.jpg'),(22399,106,0,1422,'container2'),(22400,121,0,1422,'n-grey-sneakers-red-eu-42'),(22401,132,0,1422,'0'),(22402,133,0,1422,'/r/1/r1_1_2.jpg'),(22403,206,0,1422,'leather, textile'),(22408,73,0,1423,'Grey Sneakers-red-EU 41'),(22409,84,0,1423,'Grey Sneakers'),(22410,86,0,1423,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22411,87,0,1423,'/r/1/r1_1_3.jpg'),(22412,88,0,1423,'/r/1/r1_1_3.jpg'),(22413,89,0,1423,'/r/1/r1_1_3.jpg'),(22414,106,0,1423,'container2'),(22415,121,0,1423,'n-grey-sneakers-red-eu-41'),(22416,132,0,1423,'0'),(22417,133,0,1423,'/r/1/r1_1_3.jpg'),(22418,206,0,1423,'leather, textile'),(22423,73,0,1424,'Grey Sneakers-red-EU 40'),(22424,84,0,1424,'Grey Sneakers'),(22425,86,0,1424,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22426,87,0,1424,'/r/1/r1_1_4.jpg'),(22427,88,0,1424,'/r/1/r1_1_4.jpg'),(22428,89,0,1424,'/r/1/r1_1_4.jpg'),(22429,106,0,1424,'container2'),(22430,121,0,1424,'n-grey-sneakers-red-eu-40'),(22431,132,0,1424,'0'),(22432,133,0,1424,'/r/1/r1_1_4.jpg'),(22433,206,0,1424,'leather, textile'),(22438,73,0,1425,'Grey Sneakers-red-EU 38'),(22439,84,0,1425,'Grey Sneakers'),(22440,86,0,1425,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22441,87,0,1425,'/r/1/r1_1_5.jpg'),(22442,88,0,1425,'/r/1/r1_1_5.jpg'),(22443,89,0,1425,'/r/1/r1_1_5.jpg'),(22444,106,0,1425,'container2'),(22445,121,0,1425,'n-grey-sneakers-red-eu-38'),(22446,132,0,1425,'0'),(22447,133,0,1425,'/r/1/r1_1_5.jpg'),(22448,206,0,1425,'leather, textile'),(22453,73,0,1426,'Grey Sneakers-red-EU 37'),(22454,84,0,1426,'Grey Sneakers'),(22455,86,0,1426,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22456,87,0,1426,'/r/1/r1_1_6.jpg'),(22457,88,0,1426,'/r/1/r1_1_6.jpg'),(22458,89,0,1426,'/r/1/r1_1_6.jpg'),(22459,106,0,1426,'container2'),(22460,121,0,1426,'n-grey-sneakers-red-eu-37'),(22461,132,0,1426,'0'),(22462,133,0,1426,'/r/1/r1_1_6.jpg'),(22463,206,0,1426,'leather, textile'),(22468,73,0,1427,'Grey Sneakers-blue-EU 45'),(22469,84,0,1427,'Grey Sneakers'),(22470,86,0,1427,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22471,87,0,1427,'/1/_/1_1.jpg'),(22472,88,0,1427,'/1/_/1_1.jpg'),(22473,89,0,1427,'/1/_/1_1.jpg'),(22474,106,0,1427,'container2'),(22475,121,0,1427,'n-grey-sneakers-blue-eu-45'),(22476,132,0,1427,'0'),(22477,133,0,1427,'/1/_/1_1.jpg'),(22478,206,0,1427,'leather, textile'),(22483,73,0,1428,'Grey Sneakers-blue-EU 43'),(22484,84,0,1428,'Grey Sneakers'),(22485,86,0,1428,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22486,87,0,1428,'/1/_/1_1_1.jpg'),(22487,88,0,1428,'/1/_/1_1_1.jpg'),(22488,89,0,1428,'/1/_/1_1_1.jpg'),(22489,106,0,1428,'container2'),(22490,121,0,1428,'n-grey-sneakers-blue-eu-43'),(22491,132,0,1428,'0'),(22492,133,0,1428,'/1/_/1_1_1.jpg'),(22493,206,0,1428,'leather, textile'),(22498,73,0,1429,'Grey Sneakers-blue-EU 42'),(22499,84,0,1429,'Grey Sneakers'),(22500,86,0,1429,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22501,87,0,1429,'/1/_/1_1_2.jpg'),(22502,88,0,1429,'/1/_/1_1_2.jpg'),(22503,89,0,1429,'/1/_/1_1_2.jpg'),(22504,106,0,1429,'container2'),(22505,121,0,1429,'n-grey-sneakers-blue-eu-42'),(22506,132,0,1429,'0'),(22507,133,0,1429,'/1/_/1_1_2.jpg'),(22508,206,0,1429,'leather, textile'),(22513,73,0,1430,'Grey Sneakers-blue-EU 41'),(22514,84,0,1430,'Grey Sneakers'),(22515,86,0,1430,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22516,87,0,1430,'/1/_/1_1_3.jpg'),(22517,88,0,1430,'/1/_/1_1_3.jpg'),(22518,89,0,1430,'/1/_/1_1_3.jpg'),(22519,106,0,1430,'container2'),(22520,121,0,1430,'n-grey-sneakers-blue-eu-41'),(22521,132,0,1430,'0'),(22522,133,0,1430,'/1/_/1_1_3.jpg'),(22523,206,0,1430,'leather, textile'),(22528,73,0,1431,'Grey Sneakers-blue-EU 40'),(22529,84,0,1431,'Grey Sneakers'),(22530,86,0,1431,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22531,87,0,1431,'/1/_/1_1_4.jpg'),(22532,88,0,1431,'/1/_/1_1_4.jpg'),(22533,89,0,1431,'/1/_/1_1_4.jpg'),(22534,106,0,1431,'container2'),(22535,121,0,1431,'n-grey-sneakers-blue-eu-40'),(22536,132,0,1431,'0'),(22537,133,0,1431,'/1/_/1_1_4.jpg'),(22538,206,0,1431,'leather, textile'),(22543,73,0,1432,'Grey Sneakers-blue-EU 38'),(22544,84,0,1432,'Grey Sneakers'),(22545,86,0,1432,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22546,87,0,1432,'/1/_/1_1_5.jpg'),(22547,88,0,1432,'/1/_/1_1_5.jpg'),(22548,89,0,1432,'/1/_/1_1_5.jpg'),(22549,106,0,1432,'container2'),(22550,121,0,1432,'n-grey-sneakers-blue-eu-38'),(22551,132,0,1432,'0'),(22552,133,0,1432,'/1/_/1_1_5.jpg'),(22553,206,0,1432,'leather, textile'),(22558,73,0,1433,'Grey Sneakers-blue-EU 37'),(22559,84,0,1433,'Grey Sneakers'),(22560,86,0,1433,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22561,87,0,1433,'/1/_/1_1_6.jpg'),(22562,88,0,1433,'/1/_/1_1_6.jpg'),(22563,89,0,1433,'/1/_/1_1_6.jpg'),(22564,106,0,1433,'container2'),(22565,121,0,1433,'n-grey-sneakers-blue-eu-37'),(22566,132,0,1433,'0'),(22567,133,0,1433,'/1/_/1_1_6.jpg'),(22568,206,0,1433,'leather, textile'),(22573,73,0,1434,'Grey Sneakers-white-EU 45'),(22574,84,0,1434,'Grey Sneakers'),(22575,86,0,1434,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22576,87,0,1434,'/w/1/w1.jpg'),(22577,88,0,1434,'/w/1/w1.jpg'),(22578,89,0,1434,'/w/1/w1.jpg'),(22579,106,0,1434,'container2'),(22580,121,0,1434,'n-grey-sneakers-white-eu-45'),(22581,132,0,1434,'0'),(22582,133,0,1434,'/w/1/w1.jpg'),(22583,206,0,1434,'leather, textile'),(22588,73,0,1435,'Grey Sneakers-white-EU 43'),(22589,84,0,1435,'Grey Sneakers'),(22590,86,0,1435,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22591,87,0,1435,'/w/1/w1_1.jpg'),(22592,88,0,1435,'/w/1/w1_1.jpg'),(22593,89,0,1435,'/w/1/w1_1.jpg'),(22594,106,0,1435,'container2'),(22595,121,0,1435,'n-grey-sneakers-white-eu-43'),(22596,132,0,1435,'0'),(22597,133,0,1435,'/w/1/w1_1.jpg'),(22598,206,0,1435,'leather, textile'),(22603,73,0,1436,'Grey Sneakers-white-EU 42'),(22604,84,0,1436,'Grey Sneakers'),(22605,86,0,1436,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22606,87,0,1436,'/w/1/w1_2.jpg'),(22607,88,0,1436,'/w/1/w1_2.jpg'),(22608,89,0,1436,'/w/1/w1_2.jpg'),(22609,106,0,1436,'container2'),(22610,121,0,1436,'n-grey-sneakers-white-eu-42'),(22611,132,0,1436,'0'),(22612,133,0,1436,'/w/1/w1_2.jpg'),(22613,206,0,1436,'leather, textile'),(22618,73,0,1437,'Grey Sneakers-white-EU 41'),(22619,84,0,1437,'Grey Sneakers'),(22620,86,0,1437,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22621,87,0,1437,'/w/1/w1_3.jpg'),(22622,88,0,1437,'/w/1/w1_3.jpg'),(22623,89,0,1437,'/w/1/w1_3.jpg'),(22624,106,0,1437,'container2'),(22625,121,0,1437,'n-grey-sneakers-white-eu-41'),(22626,132,0,1437,'0'),(22627,133,0,1437,'/w/1/w1_3.jpg'),(22628,206,0,1437,'leather, textile'),(22633,73,0,1438,'Grey Sneakers-white-EU 40'),(22634,84,0,1438,'Grey Sneakers'),(22635,86,0,1438,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22636,87,0,1438,'/w/1/w1_4.jpg'),(22637,88,0,1438,'/w/1/w1_4.jpg'),(22638,89,0,1438,'/w/1/w1_4.jpg'),(22639,106,0,1438,'container2'),(22640,121,0,1438,'n-grey-sneakers-white-eu-40'),(22641,132,0,1438,'0'),(22642,133,0,1438,'/w/1/w1_4.jpg'),(22643,206,0,1438,'leather, textile'),(22648,73,0,1439,'Grey Sneakers-white-EU 38'),(22649,84,0,1439,'Grey Sneakers'),(22650,86,0,1439,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22651,87,0,1439,'/w/1/w1_5.jpg'),(22652,88,0,1439,'/w/1/w1_5.jpg'),(22653,89,0,1439,'/w/1/w1_5.jpg'),(22654,106,0,1439,'container2'),(22655,121,0,1439,'n-grey-sneakers-white-eu-38'),(22656,132,0,1439,'0'),(22657,133,0,1439,'/w/1/w1_5.jpg'),(22658,206,0,1439,'leather, textile'),(22663,73,0,1440,'Grey Sneakers-white-EU 37'),(22664,84,0,1440,'Grey Sneakers'),(22665,86,0,1440,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22666,87,0,1440,'/w/1/w1_6.jpg'),(22667,88,0,1440,'/w/1/w1_6.jpg'),(22668,89,0,1440,'/w/1/w1_6.jpg'),(22669,106,0,1440,'container2'),(22670,121,0,1440,'n-grey-sneakers-white-eu-37'),(22671,132,0,1440,'0'),(22672,133,0,1440,'/w/1/w1_6.jpg'),(22673,206,0,1440,'leather, textile'),(22678,73,0,1441,'Grey Sneakers-brown-EU 45'),(22679,84,0,1441,'Grey Sneakers'),(22680,86,0,1441,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22681,87,0,1441,'/b/1/b1_1.jpg'),(22682,88,0,1441,'/b/1/b1_1.jpg'),(22683,89,0,1441,'/b/1/b1_1.jpg'),(22684,106,0,1441,'container2'),(22685,121,0,1441,'n-grey-sneakers-brown-eu-45'),(22686,132,0,1441,'0'),(22687,133,0,1441,'/b/1/b1_1.jpg'),(22688,206,0,1441,'leather, textile'),(22693,73,0,1442,'Grey Sneakers-brown-EU 43'),(22694,84,0,1442,'Grey Sneakers'),(22695,86,0,1442,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22696,87,0,1442,'/b/1/b1_1_1.jpg'),(22697,88,0,1442,'/b/1/b1_1_1.jpg'),(22698,89,0,1442,'/b/1/b1_1_1.jpg'),(22699,106,0,1442,'container2'),(22700,121,0,1442,'n-grey-sneakers-brown-eu-43'),(22701,132,0,1442,'0'),(22702,133,0,1442,'/b/1/b1_1_1.jpg'),(22703,206,0,1442,'leather, textile'),(22708,73,0,1443,'Grey Sneakers-brown-EU 42'),(22709,84,0,1443,'Grey Sneakers'),(22710,86,0,1443,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22711,87,0,1443,'/b/1/b1_1_2.jpg'),(22712,88,0,1443,'/b/1/b1_1_2.jpg'),(22713,89,0,1443,'/b/1/b1_1_2.jpg'),(22714,106,0,1443,'container2'),(22715,121,0,1443,'n-grey-sneakers-brown-eu-42'),(22716,132,0,1443,'0'),(22717,133,0,1443,'/b/1/b1_1_2.jpg'),(22718,206,0,1443,'leather, textile'),(22723,73,0,1444,'Grey Sneakers-brown-EU 41'),(22724,84,0,1444,'Grey Sneakers'),(22725,86,0,1444,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22726,87,0,1444,'/b/1/b1_1_3.jpg'),(22727,88,0,1444,'/b/1/b1_1_3.jpg'),(22728,89,0,1444,'/b/1/b1_1_3.jpg'),(22729,106,0,1444,'container2'),(22730,121,0,1444,'n-grey-sneakers-brown-eu-41'),(22731,132,0,1444,'0'),(22732,133,0,1444,'/b/1/b1_1_3.jpg'),(22733,206,0,1444,'leather, textile'),(22738,73,0,1445,'Grey Sneakers-brown-EU 40'),(22739,84,0,1445,'Grey Sneakers'),(22740,86,0,1445,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22741,87,0,1445,'/b/1/b1_1_4.jpg'),(22742,88,0,1445,'/b/1/b1_1_4.jpg'),(22743,89,0,1445,'/b/1/b1_1_4.jpg'),(22744,106,0,1445,'container2'),(22745,121,0,1445,'n-grey-sneakers-brown-eu-40'),(22746,132,0,1445,'0'),(22747,133,0,1445,'/b/1/b1_1_4.jpg'),(22748,206,0,1445,'leather, textile'),(22753,73,0,1446,'Grey Sneakers-brown-EU 38'),(22754,84,0,1446,'Grey Sneakers'),(22755,86,0,1446,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22756,87,0,1446,'/b/1/b1_1_5.jpg'),(22757,88,0,1446,'/b/1/b1_1_5.jpg'),(22758,89,0,1446,'/b/1/b1_1_5.jpg'),(22759,106,0,1446,'container2'),(22760,121,0,1446,'n-grey-sneakers-brown-eu-38'),(22761,132,0,1446,'0'),(22762,133,0,1446,'/b/1/b1_1_5.jpg'),(22763,206,0,1446,'leather, textile'),(22768,73,0,1447,'Grey Sneakers-brown-EU 37'),(22769,84,0,1447,'Grey Sneakers'),(22770,86,0,1447,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22771,87,0,1447,'/b/1/b1_1_6.jpg'),(22772,88,0,1447,'/b/1/b1_1_6.jpg'),(22773,89,0,1447,'/b/1/b1_1_6.jpg'),(22774,106,0,1447,'container2'),(22775,121,0,1447,'n-grey-sneakers-brown-eu-37'),(22776,132,0,1447,'0'),(22777,133,0,1447,'/b/1/b1_1_6.jpg'),(22778,206,0,1447,'leather, textile'),(22783,73,0,1448,'Grey Sneakers-black-EU 45'),(22784,84,0,1448,'Grey Sneakers'),(22785,86,0,1448,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22786,87,0,1448,'/d/1/d1.jpg'),(22787,88,0,1448,'/d/1/d1.jpg'),(22788,89,0,1448,'/d/1/d1.jpg'),(22789,106,0,1448,'container2'),(22790,121,0,1448,'n-grey-sneakers-black-eu-45'),(22791,132,0,1448,'0'),(22792,133,0,1448,'/d/1/d1.jpg'),(22793,206,0,1448,'leather, textile'),(22798,73,0,1449,'Grey Sneakers-black-EU 43'),(22799,84,0,1449,'Grey Sneakers'),(22800,86,0,1449,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22801,87,0,1449,'/d/1/d1_1.jpg'),(22802,88,0,1449,'/d/1/d1_1.jpg'),(22803,89,0,1449,'/d/1/d1_1.jpg'),(22804,106,0,1449,'container2'),(22805,121,0,1449,'n-grey-sneakers-black-eu-43'),(22806,132,0,1449,'0'),(22807,133,0,1449,'/d/1/d1_1.jpg'),(22808,206,0,1449,'leather, textile'),(22813,73,0,1450,'Grey Sneakers-black-EU 42'),(22814,84,0,1450,'Grey Sneakers'),(22815,86,0,1450,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22816,87,0,1450,'/d/1/d1_2.jpg'),(22817,88,0,1450,'/d/1/d1_2.jpg'),(22818,89,0,1450,'/d/1/d1_2.jpg'),(22819,106,0,1450,'container2'),(22820,121,0,1450,'n-grey-sneakers-black-eu-42'),(22821,132,0,1450,'0'),(22822,133,0,1450,'/d/1/d1_2.jpg'),(22823,206,0,1450,'leather, textile'),(22828,73,0,1451,'Grey Sneakers-black-EU 41'),(22829,84,0,1451,'Grey Sneakers'),(22830,86,0,1451,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22831,87,0,1451,'/d/1/d1_3.jpg'),(22832,88,0,1451,'/d/1/d1_3.jpg'),(22833,89,0,1451,'/d/1/d1_3.jpg'),(22834,106,0,1451,'container2'),(22835,121,0,1451,'n-grey-sneakers-black-eu-41'),(22836,132,0,1451,'0'),(22837,133,0,1451,'/d/1/d1_3.jpg'),(22838,206,0,1451,'leather, textile'),(22843,73,0,1452,'Grey Sneakers-black-EU 40'),(22844,84,0,1452,'Grey Sneakers'),(22845,86,0,1452,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22846,87,0,1452,'/d/1/d1_4.jpg'),(22847,88,0,1452,'/d/1/d1_4.jpg'),(22848,89,0,1452,'/d/1/d1_4.jpg'),(22849,106,0,1452,'container2'),(22850,121,0,1452,'n-grey-sneakers-black-eu-40'),(22851,132,0,1452,'0'),(22852,133,0,1452,'/d/1/d1_4.jpg'),(22853,206,0,1452,'leather, textile'),(22858,73,0,1453,'Grey Sneakers-black-EU 38'),(22859,84,0,1453,'Grey Sneakers'),(22860,86,0,1453,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22861,87,0,1453,'/d/1/d1_5.jpg'),(22862,88,0,1453,'/d/1/d1_5.jpg'),(22863,89,0,1453,'/d/1/d1_5.jpg'),(22864,106,0,1453,'container2'),(22865,121,0,1453,'n-grey-sneakers-black-eu-38'),(22866,132,0,1453,'0'),(22867,133,0,1453,'/d/1/d1_5.jpg'),(22868,206,0,1453,'leather, textile'),(22873,73,0,1454,'Grey Sneakers-black-EU 37'),(22874,84,0,1454,'Grey Sneakers'),(22875,86,0,1454,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22876,87,0,1454,'/d/1/d1_6.jpg'),(22877,88,0,1454,'/d/1/d1_6.jpg'),(22878,89,0,1454,'/d/1/d1_6.jpg'),(22879,106,0,1454,'container2'),(22880,121,0,1454,'n-grey-sneakers-black-eu-37'),(22881,132,0,1454,'0'),(22882,133,0,1454,'/d/1/d1_6.jpg'),(22883,206,0,1454,'leather, textile'),(22888,73,0,1455,'Grey Sneakers'),(22889,84,0,1455,'Grey Sneakers'),(22890,86,0,1455,'Grey Sneakers A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining.'),(22891,106,0,1455,'container2'),(22892,121,0,1455,'n-grey-sneakers'),(22893,132,0,1455,'2'),(22894,206,0,1455,'leather, textile'),(22895,87,0,394,'no_selection'),(22896,88,0,394,'no_selection'),(22897,89,0,394,'no_selection'),(22898,133,0,394,'no_selection'),(22903,73,0,1456,'Puma Transitional Jacket-white-Small size'),(22904,84,0,1456,'Puma Transitional Jacket'),(22905,86,0,1456,'Puma Transitional Jacket BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and '),(22906,87,0,1456,'/i/m/image_31219211_25_970x1182_0_1_2.jpg'),(22907,88,0,1456,'/i/m/image_31219211_25_970x1182_0_1_2.jpg'),(22908,89,0,1456,'/i/m/image_31219211_25_970x1182_0_1_2.jpg'),(22909,106,0,1456,'container2'),(22910,121,0,1456,'puma-transitional-jacket-white-small-size'),(22911,132,0,1456,'0'),(22912,133,0,1456,'/i/m/image_31219211_25_970x1182_0_1_2.jpg'),(22917,73,0,1457,'Puma Transitional Jacket-white-Medium size'),(22918,84,0,1457,'Puma Transitional Jacket'),(22919,86,0,1457,'Puma Transitional Jacket BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and '),(22920,87,0,1457,'/i/m/image_31219211_25_970x1182_0_1_1_1.jpg'),(22921,88,0,1457,'/i/m/image_31219211_25_970x1182_0_1_1_1.jpg'),(22922,89,0,1457,'/i/m/image_31219211_25_970x1182_0_1_1_1.jpg'),(22923,106,0,1457,'container2'),(22924,121,0,1457,'puma-transitional-jacket-white-medium-size'),(22925,132,0,1457,'0'),(22926,133,0,1457,'/i/m/image_31219211_25_970x1182_0_1_1_1.jpg'),(22931,73,0,1458,'Puma Transitional Jacket-white-Large size'),(22932,84,0,1458,'Puma Transitional Jacket'),(22933,86,0,1458,'Puma Transitional Jacket BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and '),(22934,87,0,1458,'/i/m/image_31219211_25_970x1182_0_1_2_1.jpg'),(22935,88,0,1458,'/i/m/image_31219211_25_970x1182_0_1_2_1.jpg'),(22936,89,0,1458,'/i/m/image_31219211_25_970x1182_0_1_2_1.jpg'),(22937,106,0,1458,'container2'),(22938,121,0,1458,'puma-transitional-jacket-white-large-size'),(22939,132,0,1458,'0'),(22940,133,0,1458,'/i/m/image_31219211_25_970x1182_0_1_2_1.jpg'),(22945,73,0,1459,'Puma Transitional Jacket-white-Extra large size'),(22946,84,0,1459,'Puma Transitional Jacket'),(22947,86,0,1459,'Puma Transitional Jacket BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and '),(22948,87,0,1459,'/i/m/image_31219211_25_970x1182_0_1_3.jpg'),(22949,88,0,1459,'/i/m/image_31219211_25_970x1182_0_1_3.jpg'),(22950,89,0,1459,'/i/m/image_31219211_25_970x1182_0_1_3.jpg'),(22951,106,0,1459,'container2'),(22952,121,0,1459,'puma-transitional-jacket-white-extra-large-size'),(22953,132,0,1459,'0'),(22954,133,0,1459,'/i/m/image_31219211_25_970x1182_0_1_3.jpg'),(22959,73,0,1460,'Puma Transitional Jacket-blue-Small size'),(22960,84,0,1460,'Puma Transitional Jacket'),(22961,86,0,1460,'Puma Transitional Jacket BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and '),(22962,87,0,1460,'/2/w/2w3e4rrr_5.jpg'),(22963,88,0,1460,'/2/w/2w3e4rrr_5.jpg'),(22964,89,0,1460,'/2/w/2w3e4rrr_5.jpg'),(22965,106,0,1460,'container2'),(22966,121,0,1460,'puma-transitional-jacket-blue-small-size'),(22967,132,0,1460,'0'),(22968,133,0,1460,'/2/w/2w3e4rrr_5.jpg'),(22973,73,0,1461,'Puma Transitional Jacket-blue-Medium size'),(22974,84,0,1461,'Puma Transitional Jacket'),(22975,86,0,1461,'Puma Transitional Jacket BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and '),(22976,87,0,1461,'/2/w/2w3e4rrr_1_2.jpg'),(22977,88,0,1461,'/2/w/2w3e4rrr_1_2.jpg'),(22978,89,0,1461,'/2/w/2w3e4rrr_1_2.jpg'),(22979,106,0,1461,'container2'),(22980,121,0,1461,'puma-transitional-jacket-blue-medium-size'),(22981,132,0,1461,'0'),(22982,133,0,1461,'/2/w/2w3e4rrr_1_2.jpg'),(22987,73,0,1462,'Puma Transitional Jacket-blue-Large size'),(22988,84,0,1462,'Puma Transitional Jacket'),(22989,86,0,1462,'Puma Transitional Jacket BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and '),(22990,87,0,1462,'/2/w/2w3e4rrr_2_1.jpg'),(22991,88,0,1462,'/2/w/2w3e4rrr_2_1.jpg'),(22992,89,0,1462,'/2/w/2w3e4rrr_2_1.jpg'),(22993,106,0,1462,'container2'),(22994,121,0,1462,'puma-transitional-jacket-blue-large-size'),(22995,132,0,1462,'0'),(22996,133,0,1462,'/2/w/2w3e4rrr_2_1.jpg'),(23001,73,0,1463,'Puma Transitional Jacket-blue-Extra large size'),(23002,84,0,1463,'Puma Transitional Jacket'),(23003,86,0,1463,'Puma Transitional Jacket BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and '),(23004,87,0,1463,'/2/w/2w3e4rrr_3_1.jpg'),(23005,88,0,1463,'/2/w/2w3e4rrr_3_1.jpg'),(23006,89,0,1463,'/2/w/2w3e4rrr_3_1.jpg'),(23007,106,0,1463,'container2'),(23008,121,0,1463,'puma-transitional-jacket-blue-extra-large-size'),(23009,132,0,1463,'0'),(23010,133,0,1463,'/2/w/2w3e4rrr_3_1.jpg'),(23015,73,0,1464,'Puma Transitional Jacket'),(23016,84,0,1464,'Puma Transitional Jacket'),(23017,86,0,1464,'Puma Transitional Jacket BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and '),(23018,106,0,1464,'container2'),(23019,121,0,1464,'n-seventy-transitional-jacket-15'),(23020,132,0,1464,'2'),(23033,87,0,1464,'/i/m/image_31219211_25_970x1182_0_1_4.jpg'),(23034,88,0,1464,'/i/m/image_31219211_25_970x1182_0_1_4.jpg'),(23035,89,0,1464,'/i/m/image_31219211_25_970x1182_0_1_4.jpg'),(23039,73,0,1465,'Timberland Lace-ups-grey-EU 44'),(23040,84,0,1465,'Timberland Lace-ups'),(23041,86,0,1465,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23042,87,0,1465,'/g/1/g1.jpg'),(23043,88,0,1465,'/g/1/g1.jpg'),(23044,89,0,1465,'/g/1/g1.jpg'),(23045,106,0,1465,'container2'),(23046,121,0,1465,'n-timberland-lace-ups-grey-eu-44'),(23047,132,0,1465,'0'),(23048,133,0,1465,'/g/1/g1.jpg'),(23049,206,0,1465,'Textile'),(23054,73,0,1466,'Timberland Lace-ups-grey-EU 40'),(23055,84,0,1466,'Timberland Lace-ups'),(23056,86,0,1466,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23057,87,0,1466,'/g/1/g1_1.jpg'),(23058,88,0,1466,'/g/1/g1_1.jpg'),(23059,89,0,1466,'/g/1/g1_1.jpg'),(23060,106,0,1466,'container2'),(23061,121,0,1466,'n-timberland-lace-ups-grey-eu-40'),(23062,132,0,1466,'0'),(23063,133,0,1466,'/g/1/g1_1.jpg'),(23064,206,0,1466,'Textile'),(23069,73,0,1467,'Timberland Lace-ups-grey-EU 39'),(23070,84,0,1467,'Timberland Lace-ups'),(23071,86,0,1467,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23072,87,0,1467,'/g/1/g1_2.jpg'),(23073,88,0,1467,'/g/1/g1_2.jpg'),(23074,89,0,1467,'/g/1/g1_2.jpg'),(23075,106,0,1467,'container2'),(23076,121,0,1467,'n-timberland-lace-ups-grey-eu-39'),(23077,132,0,1467,'0'),(23078,133,0,1467,'/g/1/g1_2.jpg'),(23079,206,0,1467,'Textile'),(23084,73,0,1468,'Timberland Lace-ups-grey-EU 42'),(23085,84,0,1468,'Timberland Lace-ups'),(23086,86,0,1468,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23087,87,0,1468,'/g/1/g1_3.jpg'),(23088,88,0,1468,'/g/1/g1_3.jpg'),(23089,89,0,1468,'/g/1/g1_3.jpg'),(23090,106,0,1468,'container2'),(23091,121,0,1468,'n-timberland-lace-ups-grey-eu-42'),(23092,132,0,1468,'0'),(23093,133,0,1468,'/g/1/g1_3.jpg'),(23094,206,0,1468,'Textile'),(23099,73,0,1469,'Timberland Lace-ups-grey-EU 45'),(23100,84,0,1469,'Timberland Lace-ups'),(23101,86,0,1469,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23102,87,0,1469,'/g/1/g1_4.jpg'),(23103,88,0,1469,'/g/1/g1_4.jpg'),(23104,89,0,1469,'/g/1/g1_4.jpg'),(23105,106,0,1469,'container2'),(23106,121,0,1469,'n-timberland-lace-ups-grey-eu-45'),(23107,132,0,1469,'0'),(23108,133,0,1469,'/g/1/g1_4.jpg'),(23109,206,0,1469,'Textile'),(23114,73,0,1470,'Timberland Lace-ups-grey-EU 43'),(23115,84,0,1470,'Timberland Lace-ups'),(23116,86,0,1470,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23117,87,0,1470,'/g/1/g1_5.jpg'),(23118,88,0,1470,'/g/1/g1_5.jpg'),(23119,89,0,1470,'/g/1/g1_5.jpg'),(23120,106,0,1470,'container2'),(23121,121,0,1470,'n-timberland-lace-ups-grey-eu-43'),(23122,132,0,1470,'0'),(23123,133,0,1470,'/g/1/g1_5.jpg'),(23124,206,0,1470,'Textile'),(23129,73,0,1471,'Timberland Lace-ups-blue-EU 44'),(23130,84,0,1471,'Timberland Lace-ups'),(23131,86,0,1471,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23132,87,0,1471,'/b/1/b1_2.jpg'),(23133,88,0,1471,'/b/1/b1_2.jpg'),(23134,89,0,1471,'/b/1/b1_2.jpg'),(23135,106,0,1471,'container2'),(23136,121,0,1471,'n-timberland-lace-ups-blue-eu-44'),(23137,132,0,1471,'0'),(23138,133,0,1471,'/b/1/b1_2.jpg'),(23139,206,0,1471,'Textile'),(23144,73,0,1472,'Timberland Lace-ups-blue-EU 40'),(23145,84,0,1472,'Timberland Lace-ups'),(23146,86,0,1472,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23147,87,0,1472,'/b/1/b1_2_1.jpg'),(23148,88,0,1472,'/b/1/b1_2_1.jpg'),(23149,89,0,1472,'/b/1/b1_2_1.jpg'),(23150,106,0,1472,'container2'),(23151,121,0,1472,'n-timberland-lace-ups-blue-eu-40'),(23152,132,0,1472,'0'),(23153,133,0,1472,'/b/1/b1_2_1.jpg'),(23154,206,0,1472,'Textile'),(23159,73,0,1473,'Timberland Lace-ups-blue-EU 39'),(23160,84,0,1473,'Timberland Lace-ups'),(23161,86,0,1473,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23162,87,0,1473,'/b/1/b1_2_2.jpg'),(23163,88,0,1473,'/b/1/b1_2_2.jpg'),(23164,89,0,1473,'/b/1/b1_2_2.jpg'),(23165,106,0,1473,'container2'),(23166,121,0,1473,'n-timberland-lace-ups-blue-eu-39'),(23167,132,0,1473,'0'),(23168,133,0,1473,'/b/1/b1_2_2.jpg'),(23169,206,0,1473,'Textile'),(23174,73,0,1474,'Timberland Lace-ups-blue-EU 42'),(23175,84,0,1474,'Timberland Lace-ups'),(23176,86,0,1474,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23177,87,0,1474,'/b/1/b1_2_3.jpg'),(23178,88,0,1474,'/b/1/b1_2_3.jpg'),(23179,89,0,1474,'/b/1/b1_2_3.jpg'),(23180,106,0,1474,'container2'),(23181,121,0,1474,'n-timberland-lace-ups-blue-eu-42'),(23182,132,0,1474,'0'),(23183,133,0,1474,'/b/1/b1_2_3.jpg'),(23184,206,0,1474,'Textile'),(23189,73,0,1475,'Timberland Lace-ups-blue-EU 45'),(23190,84,0,1475,'Timberland Lace-ups'),(23191,86,0,1475,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23192,87,0,1475,'/b/1/b1_2_4.jpg'),(23193,88,0,1475,'/b/1/b1_2_4.jpg'),(23194,89,0,1475,'/b/1/b1_2_4.jpg'),(23195,106,0,1475,'container2'),(23196,121,0,1475,'n-timberland-lace-ups-blue-eu-45'),(23197,132,0,1475,'0'),(23198,133,0,1475,'/b/1/b1_2_4.jpg'),(23199,206,0,1475,'Textile'),(23204,73,0,1476,'Timberland Lace-ups-blue-EU 43'),(23205,84,0,1476,'Timberland Lace-ups'),(23206,86,0,1476,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23207,87,0,1476,'/b/1/b1_2_5.jpg'),(23208,88,0,1476,'/b/1/b1_2_5.jpg'),(23209,89,0,1476,'/b/1/b1_2_5.jpg'),(23210,106,0,1476,'container2'),(23211,121,0,1476,'n-timberland-lace-ups-blue-eu-43'),(23212,132,0,1476,'0'),(23213,133,0,1476,'/b/1/b1_2_5.jpg'),(23214,206,0,1476,'Textile'),(23219,73,0,1477,'Timberland Lace-ups-white-EU 44'),(23220,84,0,1477,'Timberland Lace-ups'),(23221,86,0,1477,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23222,87,0,1477,'/w/1/w1_7.jpg'),(23223,88,0,1477,'/w/1/w1_7.jpg'),(23224,89,0,1477,'/w/1/w1_7.jpg'),(23225,106,0,1477,'container2'),(23226,121,0,1477,'n-timberland-lace-ups-white-eu-44'),(23227,132,0,1477,'0'),(23228,133,0,1477,'/w/1/w1_7.jpg'),(23229,206,0,1477,'Textile'),(23234,73,0,1478,'Timberland Lace-ups-white-EU 40'),(23235,84,0,1478,'Timberland Lace-ups'),(23236,86,0,1478,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23237,87,0,1478,'/w/1/w1_1_1.jpg'),(23238,88,0,1478,'/w/1/w1_1_1.jpg'),(23239,89,0,1478,'/w/1/w1_1_1.jpg'),(23240,106,0,1478,'container2'),(23241,121,0,1478,'n-timberland-lace-ups-white-eu-40'),(23242,132,0,1478,'0'),(23243,133,0,1478,'/w/1/w1_1_1.jpg'),(23244,206,0,1478,'Textile'),(23249,73,0,1479,'Timberland Lace-ups-white-EU 39'),(23250,84,0,1479,'Timberland Lace-ups'),(23251,86,0,1479,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23252,87,0,1479,'/w/1/w1_2_1.jpg'),(23253,88,0,1479,'/w/1/w1_2_1.jpg'),(23254,89,0,1479,'/w/1/w1_2_1.jpg'),(23255,106,0,1479,'container2'),(23256,121,0,1479,'n-timberland-lace-ups-white-eu-39'),(23257,132,0,1479,'0'),(23258,133,0,1479,'/w/1/w1_2_1.jpg'),(23259,206,0,1479,'Textile'),(23264,73,0,1480,'Timberland Lace-ups-white-EU 42'),(23265,84,0,1480,'Timberland Lace-ups'),(23266,86,0,1480,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23267,87,0,1480,'/w/1/w1_3_1.jpg'),(23268,88,0,1480,'/w/1/w1_3_1.jpg'),(23269,89,0,1480,'/w/1/w1_3_1.jpg'),(23270,106,0,1480,'container2'),(23271,121,0,1480,'n-timberland-lace-ups-white-eu-42'),(23272,132,0,1480,'0'),(23273,133,0,1480,'/w/1/w1_3_1.jpg'),(23274,206,0,1480,'Textile'),(23279,73,0,1481,'Timberland Lace-ups-white-EU 45'),(23280,84,0,1481,'Timberland Lace-ups'),(23281,86,0,1481,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23282,87,0,1481,'/w/1/w1_4_1.jpg'),(23283,88,0,1481,'/w/1/w1_4_1.jpg'),(23284,89,0,1481,'/w/1/w1_4_1.jpg'),(23285,106,0,1481,'container2'),(23286,121,0,1481,'n-timberland-lace-ups-white-eu-45'),(23287,132,0,1481,'0'),(23288,133,0,1481,'/w/1/w1_4_1.jpg'),(23289,206,0,1481,'Textile'),(23294,73,0,1482,'Timberland Lace-ups-white-EU 43'),(23295,84,0,1482,'Timberland Lace-ups'),(23296,86,0,1482,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23297,87,0,1482,'/w/1/w1_5_1.jpg'),(23298,88,0,1482,'/w/1/w1_5_1.jpg'),(23299,89,0,1482,'/w/1/w1_5_1.jpg'),(23300,106,0,1482,'container2'),(23301,121,0,1482,'n-timberland-lace-ups-white-eu-43'),(23302,132,0,1482,'0'),(23303,133,0,1482,'/w/1/w1_5_1.jpg'),(23304,206,0,1482,'Textile'),(23309,73,0,1483,'Timberland Lace-ups-black-EU 44'),(23310,84,0,1483,'Timberland Lace-ups'),(23311,86,0,1483,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23312,87,0,1483,'/d/1/d1_7.jpg'),(23313,88,0,1483,'/d/1/d1_7.jpg'),(23314,89,0,1483,'/d/1/d1_7.jpg'),(23315,106,0,1483,'container2'),(23316,121,0,1483,'n-timberland-lace-ups-black-eu-44'),(23317,132,0,1483,'0'),(23318,133,0,1483,'/d/1/d1_7.jpg'),(23319,206,0,1483,'Textile'),(23324,73,0,1484,'Timberland Lace-ups-black-EU 40'),(23325,84,0,1484,'Timberland Lace-ups'),(23326,86,0,1484,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23327,87,0,1484,'/d/1/d1_1_1.jpg'),(23328,88,0,1484,'/d/1/d1_1_1.jpg'),(23329,89,0,1484,'/d/1/d1_1_1.jpg'),(23330,106,0,1484,'container2'),(23331,121,0,1484,'n-timberland-lace-ups-black-eu-40'),(23332,132,0,1484,'0'),(23333,133,0,1484,'/d/1/d1_1_1.jpg'),(23334,206,0,1484,'Textile'),(23339,73,0,1485,'Timberland Lace-ups-black-EU 39'),(23340,84,0,1485,'Timberland Lace-ups'),(23341,86,0,1485,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23342,87,0,1485,'/d/1/d1_2_1.jpg'),(23343,88,0,1485,'/d/1/d1_2_1.jpg'),(23344,89,0,1485,'/d/1/d1_2_1.jpg'),(23345,106,0,1485,'container2'),(23346,121,0,1485,'n-timberland-lace-ups-black-eu-39'),(23347,132,0,1485,'0'),(23348,133,0,1485,'/d/1/d1_2_1.jpg'),(23349,206,0,1485,'Textile'),(23354,73,0,1486,'Timberland Lace-ups-black-EU 42'),(23355,84,0,1486,'Timberland Lace-ups'),(23356,86,0,1486,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23357,87,0,1486,'/d/1/d1_3_1.jpg'),(23358,88,0,1486,'/d/1/d1_3_1.jpg'),(23359,89,0,1486,'/d/1/d1_3_1.jpg'),(23360,106,0,1486,'container2'),(23361,121,0,1486,'n-timberland-lace-ups-black-eu-42'),(23362,132,0,1486,'0'),(23363,133,0,1486,'/d/1/d1_3_1.jpg'),(23364,206,0,1486,'Textile'),(23369,73,0,1487,'Timberland Lace-ups-black-EU 45'),(23370,84,0,1487,'Timberland Lace-ups'),(23371,86,0,1487,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23372,87,0,1487,'/d/1/d1_4_1.jpg'),(23373,88,0,1487,'/d/1/d1_4_1.jpg'),(23374,89,0,1487,'/d/1/d1_4_1.jpg'),(23375,106,0,1487,'container2'),(23376,121,0,1487,'n-timberland-lace-ups-black-eu-45'),(23377,132,0,1487,'0'),(23378,133,0,1487,'/d/1/d1_4_1.jpg'),(23379,206,0,1487,'Textile'),(23384,73,0,1488,'Timberland Lace-ups-black-EU 43'),(23385,84,0,1488,'Timberland Lace-ups'),(23386,86,0,1488,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23387,87,0,1488,'/d/1/d1_5_1.jpg'),(23388,88,0,1488,'/d/1/d1_5_1.jpg'),(23389,89,0,1488,'/d/1/d1_5_1.jpg'),(23390,106,0,1488,'container2'),(23391,121,0,1488,'n-timberland-lace-ups-black-eu-43'),(23392,132,0,1488,'0'),(23393,133,0,1488,'/d/1/d1_5_1.jpg'),(23394,206,0,1488,'Textile'),(23399,73,0,1489,'Timberland Lace-ups-red-EU 44'),(23400,84,0,1489,'Timberland Lace-ups'),(23401,86,0,1489,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23402,87,0,1489,'/r/1/r1_1_7.jpg'),(23403,88,0,1489,'/r/1/r1_1_7.jpg'),(23404,89,0,1489,'/r/1/r1_1_7.jpg'),(23405,106,0,1489,'container2'),(23406,121,0,1489,'n-timberland-lace-ups-red-eu-44'),(23407,132,0,1489,'0'),(23408,133,0,1489,'/r/1/r1_1_7.jpg'),(23409,206,0,1489,'Textile'),(23414,73,0,1490,'Timberland Lace-ups-red-EU 40'),(23415,84,0,1490,'Timberland Lace-ups'),(23416,86,0,1490,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23417,87,0,1490,'/r/1/r1_1_1_1.jpg'),(23418,88,0,1490,'/r/1/r1_1_1_1.jpg'),(23419,89,0,1490,'/r/1/r1_1_1_1.jpg'),(23420,106,0,1490,'container2'),(23421,121,0,1490,'n-timberland-lace-ups-red-eu-40'),(23422,132,0,1490,'0'),(23423,133,0,1490,'/r/1/r1_1_1_1.jpg'),(23424,206,0,1490,'Textile'),(23429,73,0,1491,'Timberland Lace-ups-red-EU 39'),(23430,84,0,1491,'Timberland Lace-ups'),(23431,86,0,1491,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23432,87,0,1491,'/r/1/r1_1_2_1.jpg'),(23433,88,0,1491,'/r/1/r1_1_2_1.jpg'),(23434,89,0,1491,'/r/1/r1_1_2_1.jpg'),(23435,106,0,1491,'container2'),(23436,121,0,1491,'n-timberland-lace-ups-red-eu-39'),(23437,132,0,1491,'0'),(23438,133,0,1491,'/r/1/r1_1_2_1.jpg'),(23439,206,0,1491,'Textile'),(23444,73,0,1492,'Timberland Lace-ups-red-EU 42'),(23445,84,0,1492,'Timberland Lace-ups'),(23446,86,0,1492,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23447,87,0,1492,'/r/1/r1_1_3_1.jpg'),(23448,88,0,1492,'/r/1/r1_1_3_1.jpg'),(23449,89,0,1492,'/r/1/r1_1_3_1.jpg'),(23450,106,0,1492,'container2'),(23451,121,0,1492,'n-timberland-lace-ups-red-eu-42'),(23452,132,0,1492,'0'),(23453,133,0,1492,'/r/1/r1_1_3_1.jpg'),(23454,206,0,1492,'Textile'),(23459,73,0,1493,'Timberland Lace-ups-red-EU 45'),(23460,84,0,1493,'Timberland Lace-ups'),(23461,86,0,1493,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23462,87,0,1493,'/r/1/r1_1_4_1.jpg'),(23463,88,0,1493,'/r/1/r1_1_4_1.jpg'),(23464,89,0,1493,'/r/1/r1_1_4_1.jpg'),(23465,106,0,1493,'container2'),(23466,121,0,1493,'n-timberland-lace-ups-red-eu-45'),(23467,132,0,1493,'0'),(23468,133,0,1493,'/r/1/r1_1_4_1.jpg'),(23469,206,0,1493,'Textile'),(23474,73,0,1494,'Timberland Lace-ups-red-EU 43'),(23475,84,0,1494,'Timberland Lace-ups'),(23476,86,0,1494,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23477,87,0,1494,'/r/1/r1_1_5_1.jpg'),(23478,88,0,1494,'/r/1/r1_1_5_1.jpg'),(23479,89,0,1494,'/r/1/r1_1_5_1.jpg'),(23480,106,0,1494,'container2'),(23481,121,0,1494,'n-timberland-lace-ups-red-eu-43'),(23482,132,0,1494,'0'),(23483,133,0,1494,'/r/1/r1_1_5_1.jpg'),(23484,206,0,1494,'Textile'),(23489,73,0,1495,'Timberland Lace-ups'),(23490,84,0,1495,'Timberland Lace-ups'),(23491,86,0,1495,'Timberland Lace-ups Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(23492,106,0,1495,'container2'),(23493,121,0,1495,'n-timberland-lace-ups'),(23494,132,0,1495,'2'),(23495,206,0,1495,'Textile'),(23523,73,0,1496,'Cat Lace-up Boots-black-EU 36'),(23524,84,0,1496,'Cat Lace-up Boots'),(23525,86,0,1496,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23526,87,0,1496,'/d/1/d1_1_2.jpg'),(23527,88,0,1496,'/d/1/d1_1_2.jpg'),(23528,89,0,1496,'/d/1/d1_1_2.jpg'),(23529,106,0,1496,'container2'),(23530,121,0,1496,'n-cat-lace-up-boots-black-eu-36'),(23531,132,0,1496,'0'),(23532,133,0,1496,'/d/1/d1_1_2.jpg'),(23533,206,0,1496,'leather'),(23538,73,0,1497,'Cat Lace-up Boots-black-EU 39'),(23539,84,0,1497,'Cat Lace-up Boots'),(23540,86,0,1497,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23541,87,0,1497,'/d/1/d1_1_1_1.jpg'),(23542,88,0,1497,'/d/1/d1_1_1_1.jpg'),(23543,89,0,1497,'/d/1/d1_1_1_1.jpg'),(23544,106,0,1497,'container2'),(23545,121,0,1497,'n-cat-lace-up-boots-black-eu-39'),(23546,132,0,1497,'0'),(23547,133,0,1497,'/d/1/d1_1_1_1.jpg'),(23548,206,0,1497,'leather'),(23553,73,0,1498,'Cat Lace-up Boots-black-EU 37'),(23554,84,0,1498,'Cat Lace-up Boots'),(23555,86,0,1498,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23556,87,0,1498,'/d/1/d1_1_2_1.jpg'),(23557,88,0,1498,'/d/1/d1_1_2_1.jpg'),(23558,89,0,1498,'/d/1/d1_1_2_1.jpg'),(23559,106,0,1498,'container2'),(23560,121,0,1498,'n-cat-lace-up-boots-black-eu-37'),(23561,132,0,1498,'0'),(23562,133,0,1498,'/d/1/d1_1_2_1.jpg'),(23563,206,0,1498,'leather'),(23568,73,0,1499,'Cat Lace-up Boots-black-EU 40'),(23569,84,0,1499,'Cat Lace-up Boots'),(23570,86,0,1499,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23571,87,0,1499,'/d/1/d1_1_3.jpg'),(23572,88,0,1499,'/d/1/d1_1_3.jpg'),(23573,89,0,1499,'/d/1/d1_1_3.jpg'),(23574,106,0,1499,'container2'),(23575,121,0,1499,'n-cat-lace-up-boots-black-eu-40'),(23576,132,0,1499,'0'),(23577,133,0,1499,'/d/1/d1_1_3.jpg'),(23578,206,0,1499,'leather'),(23583,73,0,1500,'Cat Lace-up Boots-black-EU 38'),(23584,84,0,1500,'Cat Lace-up Boots'),(23585,86,0,1500,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23586,87,0,1500,'/d/1/d1_1_4.jpg'),(23587,88,0,1500,'/d/1/d1_1_4.jpg'),(23588,89,0,1500,'/d/1/d1_1_4.jpg'),(23589,106,0,1500,'container2'),(23590,121,0,1500,'n-cat-lace-up-boots-black-eu-38'),(23591,132,0,1500,'0'),(23592,133,0,1500,'/d/1/d1_1_4.jpg'),(23593,206,0,1500,'leather'),(23598,73,0,1501,'Cat Lace-up Boots-black-EU 41'),(23599,84,0,1501,'Cat Lace-up Boots'),(23600,86,0,1501,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23601,87,0,1501,'/d/1/d1_1_5.jpg'),(23602,88,0,1501,'/d/1/d1_1_5.jpg'),(23603,89,0,1501,'/d/1/d1_1_5.jpg'),(23604,106,0,1501,'container2'),(23605,121,0,1501,'n-cat-lace-up-boots-black-eu-41'),(23606,132,0,1501,'0'),(23607,133,0,1501,'/d/1/d1_1_5.jpg'),(23608,206,0,1501,'leather'),(23613,73,0,1502,'Cat Lace-up Boots-white-EU 36'),(23614,84,0,1502,'Cat Lace-up Boots'),(23615,86,0,1502,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23616,87,0,1502,'/w/1/w1_8.jpg'),(23617,88,0,1502,'/w/1/w1_8.jpg'),(23618,89,0,1502,'/w/1/w1_8.jpg'),(23619,106,0,1502,'container2'),(23620,121,0,1502,'n-cat-lace-up-boots-white-eu-36'),(23621,132,0,1502,'0'),(23622,133,0,1502,'/w/1/w1_8.jpg'),(23623,206,0,1502,'leather'),(23628,73,0,1503,'Cat Lace-up Boots-white-EU 39'),(23629,84,0,1503,'Cat Lace-up Boots'),(23630,86,0,1503,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23631,87,0,1503,'/w/1/w1_1_2.jpg'),(23632,88,0,1503,'/w/1/w1_1_2.jpg'),(23633,89,0,1503,'/w/1/w1_1_2.jpg'),(23634,106,0,1503,'container2'),(23635,121,0,1503,'n-cat-lace-up-boots-white-eu-39'),(23636,132,0,1503,'0'),(23637,133,0,1503,'/w/1/w1_1_2.jpg'),(23638,206,0,1503,'leather'),(23643,73,0,1504,'Cat Lace-up Boots-white-EU 37'),(23644,84,0,1504,'Cat Lace-up Boots'),(23645,86,0,1504,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23646,87,0,1504,'/w/1/w1_2_2.jpg'),(23647,88,0,1504,'/w/1/w1_2_2.jpg'),(23648,89,0,1504,'/w/1/w1_2_2.jpg'),(23649,106,0,1504,'container2'),(23650,121,0,1504,'n-cat-lace-up-boots-white-eu-37'),(23651,132,0,1504,'0'),(23652,133,0,1504,'/w/1/w1_2_2.jpg'),(23653,206,0,1504,'leather'),(23658,73,0,1505,'Cat Lace-up Boots-white-EU 40'),(23659,84,0,1505,'Cat Lace-up Boots'),(23660,86,0,1505,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23661,87,0,1505,'/w/1/w1_3_2.jpg'),(23662,88,0,1505,'/w/1/w1_3_2.jpg'),(23663,89,0,1505,'/w/1/w1_3_2.jpg'),(23664,106,0,1505,'container2'),(23665,121,0,1505,'n-cat-lace-up-boots-white-eu-40'),(23666,132,0,1505,'0'),(23667,133,0,1505,'/w/1/w1_3_2.jpg'),(23668,206,0,1505,'leather'),(23673,73,0,1506,'Cat Lace-up Boots-white-EU 38'),(23674,84,0,1506,'Cat Lace-up Boots'),(23675,86,0,1506,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23676,87,0,1506,'/w/1/w1_4_2.jpg'),(23677,88,0,1506,'/w/1/w1_4_2.jpg'),(23678,89,0,1506,'/w/1/w1_4_2.jpg'),(23679,106,0,1506,'container2'),(23680,121,0,1506,'n-cat-lace-up-boots-white-eu-38'),(23681,132,0,1506,'0'),(23682,133,0,1506,'/w/1/w1_4_2.jpg'),(23683,206,0,1506,'leather'),(23688,73,0,1507,'Cat Lace-up Boots-white-EU 41'),(23689,84,0,1507,'Cat Lace-up Boots'),(23690,86,0,1507,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23691,87,0,1507,'/w/1/w1_5_2.jpg'),(23692,88,0,1507,'/w/1/w1_5_2.jpg'),(23693,89,0,1507,'/w/1/w1_5_2.jpg'),(23694,106,0,1507,'container2'),(23695,121,0,1507,'n-cat-lace-up-boots-white-eu-41'),(23696,132,0,1507,'0'),(23697,133,0,1507,'/w/1/w1_5_2.jpg'),(23698,206,0,1507,'leather'),(23703,73,0,1508,'Cat Lace-up Boots-blue-EU 36'),(23704,84,0,1508,'Cat Lace-up Boots'),(23705,86,0,1508,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23706,87,0,1508,'/1/_/1_1_7.jpg'),(23707,88,0,1508,'/1/_/1_1_7.jpg'),(23708,89,0,1508,'/1/_/1_1_7.jpg'),(23709,106,0,1508,'container2'),(23710,121,0,1508,'n-cat-lace-up-boots-blue-eu-36'),(23711,132,0,1508,'0'),(23712,133,0,1508,'/1/_/1_1_7.jpg'),(23713,206,0,1508,'leather'),(23718,73,0,1509,'Cat Lace-up Boots-blue-EU 39'),(23719,84,0,1509,'Cat Lace-up Boots'),(23720,86,0,1509,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23721,87,0,1509,'/1/_/1_1_1_1.jpg'),(23722,88,0,1509,'/1/_/1_1_1_1.jpg'),(23723,89,0,1509,'/1/_/1_1_1_1.jpg'),(23724,106,0,1509,'container2'),(23725,121,0,1509,'n-cat-lace-up-boots-blue-eu-39'),(23726,132,0,1509,'0'),(23727,133,0,1509,'/1/_/1_1_1_1.jpg'),(23728,206,0,1509,'leather'),(23733,73,0,1510,'Cat Lace-up Boots-blue-EU 37'),(23734,84,0,1510,'Cat Lace-up Boots'),(23735,86,0,1510,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23736,87,0,1510,'/1/_/1_1_2_1.jpg'),(23737,88,0,1510,'/1/_/1_1_2_1.jpg'),(23738,89,0,1510,'/1/_/1_1_2_1.jpg'),(23739,106,0,1510,'container2'),(23740,121,0,1510,'n-cat-lace-up-boots-blue-eu-37'),(23741,132,0,1510,'0'),(23742,133,0,1510,'/1/_/1_1_2_1.jpg'),(23743,206,0,1510,'leather'),(23748,73,0,1511,'Cat Lace-up Boots-blue-EU 40'),(23749,84,0,1511,'Cat Lace-up Boots'),(23750,86,0,1511,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23751,87,0,1511,'/1/_/1_1_3_1.jpg'),(23752,88,0,1511,'/1/_/1_1_3_1.jpg'),(23753,89,0,1511,'/1/_/1_1_3_1.jpg'),(23754,106,0,1511,'container2'),(23755,121,0,1511,'n-cat-lace-up-boots-blue-eu-40'),(23756,132,0,1511,'0'),(23757,133,0,1511,'/1/_/1_1_3_1.jpg'),(23758,206,0,1511,'leather'),(23763,73,0,1512,'Cat Lace-up Boots-blue-EU 38'),(23764,84,0,1512,'Cat Lace-up Boots'),(23765,86,0,1512,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23766,87,0,1512,'/1/_/1_1_4_1.jpg'),(23767,88,0,1512,'/1/_/1_1_4_1.jpg'),(23768,89,0,1512,'/1/_/1_1_4_1.jpg'),(23769,106,0,1512,'container2'),(23770,121,0,1512,'n-cat-lace-up-boots-blue-eu-38'),(23771,132,0,1512,'0'),(23772,133,0,1512,'/1/_/1_1_4_1.jpg'),(23773,206,0,1512,'leather'),(23778,73,0,1513,'Cat Lace-up Boots-blue-EU 41'),(23779,84,0,1513,'Cat Lace-up Boots'),(23780,86,0,1513,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23781,87,0,1513,'/1/_/1_1_5_1.jpg'),(23782,88,0,1513,'/1/_/1_1_5_1.jpg'),(23783,89,0,1513,'/1/_/1_1_5_1.jpg'),(23784,106,0,1513,'container2'),(23785,121,0,1513,'n-cat-lace-up-boots-blue-eu-41'),(23786,132,0,1513,'0'),(23787,133,0,1513,'/1/_/1_1_5_1.jpg'),(23788,206,0,1513,'leather'),(23793,73,0,1514,'Cat Lace-up Boots-red-EU 36'),(23794,84,0,1514,'Cat Lace-up Boots'),(23795,86,0,1514,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23796,87,0,1514,'/r/1/r1_1_8.jpg'),(23797,88,0,1514,'/r/1/r1_1_8.jpg'),(23798,89,0,1514,'/r/1/r1_1_8.jpg'),(23799,106,0,1514,'container2'),(23800,121,0,1514,'n-cat-lace-up-boots-red-eu-36'),(23801,132,0,1514,'0'),(23802,133,0,1514,'/r/1/r1_1_8.jpg'),(23803,206,0,1514,'leather'),(23808,73,0,1515,'Cat Lace-up Boots-red-EU 39'),(23809,84,0,1515,'Cat Lace-up Boots'),(23810,86,0,1515,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23811,87,0,1515,'/r/1/r1_1_1_2.jpg'),(23812,88,0,1515,'/r/1/r1_1_1_2.jpg'),(23813,89,0,1515,'/r/1/r1_1_1_2.jpg'),(23814,106,0,1515,'container2'),(23815,121,0,1515,'n-cat-lace-up-boots-red-eu-39'),(23816,132,0,1515,'0'),(23817,133,0,1515,'/r/1/r1_1_1_2.jpg'),(23818,206,0,1515,'leather'),(23823,73,0,1516,'Cat Lace-up Boots-red-EU 37'),(23824,84,0,1516,'Cat Lace-up Boots'),(23825,86,0,1516,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23826,87,0,1516,'/r/1/r1_1_2_2.jpg'),(23827,88,0,1516,'/r/1/r1_1_2_2.jpg'),(23828,89,0,1516,'/r/1/r1_1_2_2.jpg'),(23829,106,0,1516,'container2'),(23830,121,0,1516,'n-cat-lace-up-boots-red-eu-37'),(23831,132,0,1516,'0'),(23832,133,0,1516,'/r/1/r1_1_2_2.jpg'),(23833,206,0,1516,'leather'),(23838,73,0,1517,'Cat Lace-up Boots-red-EU 40'),(23839,84,0,1517,'Cat Lace-up Boots'),(23840,86,0,1517,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23841,87,0,1517,'/r/1/r1_1_3_2.jpg'),(23842,88,0,1517,'/r/1/r1_1_3_2.jpg'),(23843,89,0,1517,'/r/1/r1_1_3_2.jpg'),(23844,106,0,1517,'container2'),(23845,121,0,1517,'n-cat-lace-up-boots-red-eu-40'),(23846,132,0,1517,'0'),(23847,133,0,1517,'/r/1/r1_1_3_2.jpg'),(23848,206,0,1517,'leather'),(23853,73,0,1518,'Cat Lace-up Boots-red-EU 38'),(23854,84,0,1518,'Cat Lace-up Boots'),(23855,86,0,1518,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23856,87,0,1518,'/r/1/r1_1_4_2.jpg'),(23857,88,0,1518,'/r/1/r1_1_4_2.jpg'),(23858,89,0,1518,'/r/1/r1_1_4_2.jpg'),(23859,106,0,1518,'container2'),(23860,121,0,1518,'n-cat-lace-up-boots-red-eu-38'),(23861,132,0,1518,'0'),(23862,133,0,1518,'/r/1/r1_1_4_2.jpg'),(23863,206,0,1518,'leather'),(23868,73,0,1519,'Cat Lace-up Boots-red-EU 41'),(23869,84,0,1519,'Cat Lace-up Boots'),(23870,86,0,1519,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23871,87,0,1519,'/r/1/r1_1_5_2.jpg'),(23872,88,0,1519,'/r/1/r1_1_5_2.jpg'),(23873,89,0,1519,'/r/1/r1_1_5_2.jpg'),(23874,106,0,1519,'container2'),(23875,121,0,1519,'n-cat-lace-up-boots-red-eu-41'),(23876,132,0,1519,'0'),(23877,133,0,1519,'/r/1/r1_1_5_2.jpg'),(23878,206,0,1519,'leather'),(23883,73,0,1520,'Cat Lace-up Boots-brown-EU 36'),(23884,84,0,1520,'Cat Lace-up Boots'),(23885,86,0,1520,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23886,87,0,1520,'/b/1/b1_2_6.jpg'),(23887,88,0,1520,'/b/1/b1_2_6.jpg'),(23888,89,0,1520,'/b/1/b1_2_6.jpg'),(23889,106,0,1520,'container2'),(23890,121,0,1520,'n-cat-lace-up-boots-brown-eu-36'),(23891,132,0,1520,'0'),(23892,133,0,1520,'/b/1/b1_2_6.jpg'),(23893,206,0,1520,'leather'),(23898,73,0,1521,'Cat Lace-up Boots-brown-EU 39'),(23899,84,0,1521,'Cat Lace-up Boots'),(23900,86,0,1521,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23901,87,0,1521,'/b/1/b1_2_1_1.jpg'),(23902,88,0,1521,'/b/1/b1_2_1_1.jpg'),(23903,89,0,1521,'/b/1/b1_2_1_1.jpg'),(23904,106,0,1521,'container2'),(23905,121,0,1521,'n-cat-lace-up-boots-brown-eu-39'),(23906,132,0,1521,'0'),(23907,133,0,1521,'/b/1/b1_2_1_1.jpg'),(23908,206,0,1521,'leather'),(23913,73,0,1522,'Cat Lace-up Boots-brown-EU 37'),(23914,84,0,1522,'Cat Lace-up Boots'),(23915,86,0,1522,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23916,87,0,1522,'/b/1/b1_2_2_1.jpg'),(23917,88,0,1522,'/b/1/b1_2_2_1.jpg'),(23918,89,0,1522,'/b/1/b1_2_2_1.jpg'),(23919,106,0,1522,'container2'),(23920,121,0,1522,'n-cat-lace-up-boots-brown-eu-37'),(23921,132,0,1522,'0'),(23922,133,0,1522,'/b/1/b1_2_2_1.jpg'),(23923,206,0,1522,'leather'),(23928,73,0,1523,'Cat Lace-up Boots-brown-EU 40'),(23929,84,0,1523,'Cat Lace-up Boots'),(23930,86,0,1523,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23931,87,0,1523,'/b/1/b1_2_3_1.jpg'),(23932,88,0,1523,'/b/1/b1_2_3_1.jpg'),(23933,89,0,1523,'/b/1/b1_2_3_1.jpg'),(23934,106,0,1523,'container2'),(23935,121,0,1523,'n-cat-lace-up-boots-brown-eu-40'),(23936,132,0,1523,'0'),(23937,133,0,1523,'/b/1/b1_2_3_1.jpg'),(23938,206,0,1523,'leather'),(23943,73,0,1524,'Cat Lace-up Boots-brown-EU 38'),(23944,84,0,1524,'Cat Lace-up Boots'),(23945,86,0,1524,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23946,87,0,1524,'/b/1/b1_2_4_1.jpg'),(23947,88,0,1524,'/b/1/b1_2_4_1.jpg'),(23948,89,0,1524,'/b/1/b1_2_4_1.jpg'),(23949,106,0,1524,'container2'),(23950,121,0,1524,'n-cat-lace-up-boots-brown-eu-38'),(23951,132,0,1524,'0'),(23952,133,0,1524,'/b/1/b1_2_4_1.jpg'),(23953,206,0,1524,'leather'),(23958,73,0,1525,'Cat Lace-up Boots-brown-EU 41'),(23959,84,0,1525,'Cat Lace-up Boots'),(23960,86,0,1525,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23961,87,0,1525,'/b/1/b1_2_5_1.jpg'),(23962,88,0,1525,'/b/1/b1_2_5_1.jpg'),(23963,89,0,1525,'/b/1/b1_2_5_1.jpg'),(23964,106,0,1525,'container2'),(23965,121,0,1525,'n-cat-lace-up-boots-brown-eu-41'),(23966,132,0,1525,'0'),(23967,133,0,1525,'/b/1/b1_2_5_1.jpg'),(23968,206,0,1525,'leather'),(23973,73,0,1526,'Cat Lace-up Boots'),(23974,84,0,1526,'Cat Lace-up Boots'),(23975,86,0,1526,'Cat Lace-up Boots The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-'),(23976,106,0,1526,'container2'),(23977,121,0,1526,'n-cat-lace-up-boots'),(23978,132,0,1526,'2'),(23979,206,0,1526,'leather'),(23980,73,0,1527,' Steinbock Transitional Jacket-brown-Extra small size'),(23981,84,0,1527,' Steinbock Transitional Jacket'),(23982,86,0,1527,' Steinbock Transitional Jacket Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-clos'),(23983,87,0,1527,'/i/m/image_31176055_22_970x1182_0_1_2.jpg'),(23984,88,0,1527,'/i/m/image_31176055_22_970x1182_0_1_2.jpg'),(23985,89,0,1527,'/i/m/image_31176055_22_970x1182_0_1_2.jpg'),(23986,106,0,1527,'container2'),(23987,121,0,1527,'n-steinbock-transitional-jacket-brown-extra-small-size'),(23988,132,0,1527,'0'),(23989,133,0,1527,'/i/m/image_31176055_22_970x1182_0_1_2.jpg'),(23994,73,0,1528,' Steinbock Transitional Jacket-brown-Small size'),(23995,84,0,1528,' Steinbock Transitional Jacket'),(23996,86,0,1528,' Steinbock Transitional Jacket Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-clos'),(23997,87,0,1528,'/i/m/image_31176055_22_970x1182_0_1_1_1.jpg'),(23998,88,0,1528,'/i/m/image_31176055_22_970x1182_0_1_1_1.jpg'),(23999,89,0,1528,'/i/m/image_31176055_22_970x1182_0_1_1_1.jpg'),(24000,106,0,1528,'container2'),(24001,121,0,1528,'n-steinbock-transitional-jacket-brown-small-size'),(24002,132,0,1528,'0'),(24003,133,0,1528,'/i/m/image_31176055_22_970x1182_0_1_1_1.jpg'),(24008,73,0,1529,' Steinbock Transitional Jacket-brown-Extra large size'),(24009,84,0,1529,' Steinbock Transitional Jacket'),(24010,86,0,1529,' Steinbock Transitional Jacket Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-clos'),(24011,87,0,1529,'/i/m/image_31176055_22_970x1182_0_1_2_1.jpg'),(24012,88,0,1529,'/i/m/image_31176055_22_970x1182_0_1_2_1.jpg'),(24013,89,0,1529,'/i/m/image_31176055_22_970x1182_0_1_2_1.jpg'),(24014,106,0,1529,'container2'),(24015,121,0,1529,'n-steinbock-transitional-jacket-brown-extra-large-size'),(24016,132,0,1529,'0'),(24017,133,0,1529,'/i/m/image_31176055_22_970x1182_0_1_2_1.jpg'),(24022,73,0,1530,' Steinbock Transitional Jacket-brown-Medium size'),(24023,84,0,1530,' Steinbock Transitional Jacket'),(24024,86,0,1530,' Steinbock Transitional Jacket Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-clos'),(24025,87,0,1530,'/i/m/image_31176055_22_970x1182_0_1_3.jpg'),(24026,88,0,1530,'/i/m/image_31176055_22_970x1182_0_1_3.jpg'),(24027,89,0,1530,'/i/m/image_31176055_22_970x1182_0_1_3.jpg'),(24028,106,0,1530,'container2'),(24029,121,0,1530,'n-steinbock-transitional-jacket-brown-medium-size'),(24030,132,0,1530,'0'),(24031,133,0,1530,'/i/m/image_31176055_22_970x1182_0_1_3.jpg'),(24036,73,0,1531,' Steinbock Transitional Jacket-white-Extra small size'),(24037,84,0,1531,' Steinbock Transitional Jacket'),(24038,86,0,1531,' Steinbock Transitional Jacket Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-clos'),(24039,87,0,1531,'/w/3/w3e3e2w2w2w_4.jpg'),(24040,88,0,1531,'/w/3/w3e3e2w2w2w_4.jpg'),(24041,89,0,1531,'/w/3/w3e3e2w2w2w_4.jpg'),(24042,106,0,1531,'container2'),(24043,121,0,1531,'n-steinbock-transitional-jacket-white-extra-small-size'),(24044,132,0,1531,'0'),(24045,133,0,1531,'/w/3/w3e3e2w2w2w_4.jpg'),(24050,73,0,1532,' Steinbock Transitional Jacket-white-Small size'),(24051,84,0,1532,' Steinbock Transitional Jacket'),(24052,86,0,1532,' Steinbock Transitional Jacket Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-clos'),(24053,87,0,1532,'/w/3/w3e3e2w2w2w_1_1.jpg'),(24054,88,0,1532,'/w/3/w3e3e2w2w2w_1_1.jpg'),(24055,89,0,1532,'/w/3/w3e3e2w2w2w_1_1.jpg'),(24056,106,0,1532,'container2'),(24057,121,0,1532,'n-steinbock-transitional-jacket-white-small-size'),(24058,132,0,1532,'0'),(24059,133,0,1532,'/w/3/w3e3e2w2w2w_1_1.jpg'),(24064,73,0,1533,' Steinbock Transitional Jacket-white-Extra large size'),(24065,84,0,1533,' Steinbock Transitional Jacket'),(24066,86,0,1533,' Steinbock Transitional Jacket Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-clos'),(24067,87,0,1533,'/w/3/w3e3e2w2w2w_2_1.jpg'),(24068,88,0,1533,'/w/3/w3e3e2w2w2w_2_1.jpg'),(24069,89,0,1533,'/w/3/w3e3e2w2w2w_2_1.jpg'),(24070,106,0,1533,'container2'),(24071,121,0,1533,'n-steinbock-transitional-jacket-white-extra-large-size'),(24072,132,0,1533,'0'),(24073,133,0,1533,'/w/3/w3e3e2w2w2w_2_1.jpg'),(24078,73,0,1534,' Steinbock Transitional Jacket-white-Medium size'),(24079,84,0,1534,' Steinbock Transitional Jacket'),(24080,86,0,1534,' Steinbock Transitional Jacket Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-clos'),(24081,87,0,1534,'/w/3/w3e3e2w2w2w_3_1.jpg'),(24082,88,0,1534,'/w/3/w3e3e2w2w2w_3_1.jpg'),(24083,89,0,1534,'/w/3/w3e3e2w2w2w_3_1.jpg'),(24084,106,0,1534,'container2'),(24085,121,0,1534,'n-steinbock-transitional-jacket-white-medium-size'),(24086,132,0,1534,'0'),(24087,133,0,1534,'/w/3/w3e3e2w2w2w_3_1.jpg'),(24092,73,0,1535,'Steinbock Transitional Jacket'),(24093,84,0,1535,' Steinbock Transitional Jacket'),(24094,86,0,1535,' Steinbock Transitional Jacket Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-clos'),(24095,106,0,1535,'container2'),(24096,121,0,1535,'n-seventy-transitional-jacket-17'),(24097,132,0,1535,'2'),(24098,87,0,1535,'/i/m/image_31176055_22_970x1182_0_1_4.jpg'),(24099,88,0,1535,'/i/m/image_31176055_22_970x1182_0_1_4.jpg'),(24100,89,0,1535,'/i/m/image_31176055_22_970x1182_0_1_4.jpg'),(24104,73,0,1536,'Half Boots-EU 39-red'),(24105,84,0,1536,'Half Boots'),(24106,86,0,1536,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24107,87,0,1536,'/r/1/r1_2.jpg'),(24108,88,0,1536,'/r/1/r1_2.jpg'),(24109,89,0,1536,'/r/1/r1_2.jpg'),(24110,106,0,1536,'container2'),(24111,121,0,1536,'n-half-boots-eu-39-red'),(24112,132,0,1536,'0'),(24113,133,0,1536,'/r/1/r1_2.jpg'),(24114,206,0,1536,'leather'),(24119,73,0,1537,'Half Boots-EU 39-black'),(24120,84,0,1537,'Half Boots'),(24121,86,0,1537,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24122,87,0,1537,'/d/1/d1_2_2.jpg'),(24123,88,0,1537,'/d/1/d1_2_2.jpg'),(24124,89,0,1537,'/d/1/d1_2_2.jpg'),(24125,106,0,1537,'container2'),(24126,121,0,1537,'n-half-boots-eu-39-black'),(24127,132,0,1537,'0'),(24128,133,0,1537,'/d/1/d1_2_2.jpg'),(24129,206,0,1537,'leather'),(24134,73,0,1538,'Half Boots-EU 39-white'),(24135,84,0,1538,'Half Boots'),(24136,86,0,1538,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24137,87,0,1538,'/w/1/w1_1_3.jpg'),(24138,88,0,1538,'/w/1/w1_1_3.jpg'),(24139,89,0,1538,'/w/1/w1_1_3.jpg'),(24140,106,0,1538,'container2'),(24141,121,0,1538,'n-half-boots-eu-39-white'),(24142,132,0,1538,'0'),(24143,133,0,1538,'/w/1/w1_1_3.jpg'),(24144,206,0,1538,'leather'),(24149,73,0,1539,'Half Boots-EU 39-brown'),(24150,84,0,1539,'Half Boots'),(24151,86,0,1539,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24152,87,0,1539,'/b/1/b1_3.jpg'),(24153,88,0,1539,'/b/1/b1_3.jpg'),(24154,89,0,1539,'/b/1/b1_3.jpg'),(24155,106,0,1539,'container2'),(24156,121,0,1539,'n-half-boots-eu-39-brown'),(24157,132,0,1539,'0'),(24158,133,0,1539,'/b/1/b1_3.jpg'),(24159,206,0,1539,'leather'),(24164,73,0,1540,'Half Boots-EU 39-grey'),(24165,84,0,1540,'Half Boots'),(24166,86,0,1540,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24167,87,0,1540,'/g/1/g1_1_1.jpg'),(24168,88,0,1540,'/g/1/g1_1_1.jpg'),(24169,89,0,1540,'/g/1/g1_1_1.jpg'),(24170,106,0,1540,'container2'),(24171,121,0,1540,'n-half-boots-eu-39-grey'),(24172,132,0,1540,'0'),(24173,133,0,1540,'/g/1/g1_1_1.jpg'),(24174,206,0,1540,'leather'),(24179,73,0,1541,'Half Boots-EU 42-red'),(24180,84,0,1541,'Half Boots'),(24181,86,0,1541,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24182,87,0,1541,'/r/1/r1_2_1.jpg'),(24183,88,0,1541,'/r/1/r1_2_1.jpg'),(24184,89,0,1541,'/r/1/r1_2_1.jpg'),(24185,106,0,1541,'container2'),(24186,121,0,1541,'n-half-boots-eu-42-red'),(24187,132,0,1541,'0'),(24188,133,0,1541,'/r/1/r1_2_1.jpg'),(24189,206,0,1541,'leather'),(24194,73,0,1542,'Half Boots-EU 42-black'),(24195,84,0,1542,'Half Boots'),(24196,86,0,1542,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24197,87,0,1542,'/d/1/d1_2_1_1.jpg'),(24198,88,0,1542,'/d/1/d1_2_1_1.jpg'),(24199,89,0,1542,'/d/1/d1_2_1_1.jpg'),(24200,106,0,1542,'container2'),(24201,121,0,1542,'n-half-boots-eu-42-black'),(24202,132,0,1542,'0'),(24203,133,0,1542,'/d/1/d1_2_1_1.jpg'),(24204,206,0,1542,'leather'),(24209,73,0,1543,'Half Boots-EU 42-white'),(24210,84,0,1543,'Half Boots'),(24211,86,0,1543,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24212,87,0,1543,'/w/1/w1_1_1_1.jpg'),(24213,88,0,1543,'/w/1/w1_1_1_1.jpg'),(24214,89,0,1543,'/w/1/w1_1_1_1.jpg'),(24215,106,0,1543,'container2'),(24216,121,0,1543,'n-half-boots-eu-42-white'),(24217,132,0,1543,'0'),(24218,133,0,1543,'/w/1/w1_1_1_1.jpg'),(24219,206,0,1543,'leather'),(24224,73,0,1544,'Half Boots-EU 42-brown'),(24225,84,0,1544,'Half Boots'),(24226,86,0,1544,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24227,87,0,1544,'/b/1/b1_3_1.jpg'),(24228,88,0,1544,'/b/1/b1_3_1.jpg'),(24229,89,0,1544,'/b/1/b1_3_1.jpg'),(24230,106,0,1544,'container2'),(24231,121,0,1544,'n-half-boots-eu-42-brown'),(24232,132,0,1544,'0'),(24233,133,0,1544,'/b/1/b1_3_1.jpg'),(24234,206,0,1544,'leather'),(24239,73,0,1545,'Half Boots-EU 42-grey'),(24240,84,0,1545,'Half Boots'),(24241,86,0,1545,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24242,87,0,1545,'/g/1/g1_1_1_1.jpg'),(24243,88,0,1545,'/g/1/g1_1_1_1.jpg'),(24244,89,0,1545,'/g/1/g1_1_1_1.jpg'),(24245,106,0,1545,'container2'),(24246,121,0,1545,'n-half-boots-eu-42-grey'),(24247,132,0,1545,'0'),(24248,133,0,1545,'/g/1/g1_1_1_1.jpg'),(24249,206,0,1545,'leather'),(24254,73,0,1546,'Half Boots-EU 40-red'),(24255,84,0,1546,'Half Boots'),(24256,86,0,1546,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24257,87,0,1546,'/r/1/r1_2_2.jpg'),(24258,88,0,1546,'/r/1/r1_2_2.jpg'),(24259,89,0,1546,'/r/1/r1_2_2.jpg'),(24260,106,0,1546,'container2'),(24261,121,0,1546,'n-half-boots-eu-40-red'),(24262,132,0,1546,'0'),(24263,133,0,1546,'/r/1/r1_2_2.jpg'),(24264,206,0,1546,'leather'),(24269,73,0,1547,'Half Boots-EU 40-black'),(24270,84,0,1547,'Half Boots'),(24271,86,0,1547,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24272,87,0,1547,'/d/1/d1_2_2_1.jpg'),(24273,88,0,1547,'/d/1/d1_2_2_1.jpg'),(24274,89,0,1547,'/d/1/d1_2_2_1.jpg'),(24275,106,0,1547,'container2'),(24276,121,0,1547,'n-half-boots-eu-40-black'),(24277,132,0,1547,'0'),(24278,133,0,1547,'/d/1/d1_2_2_1.jpg'),(24279,206,0,1547,'leather'),(24284,73,0,1548,'Half Boots-EU 40-white'),(24285,84,0,1548,'Half Boots'),(24286,86,0,1548,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24287,87,0,1548,'/w/1/w1_1_2_1.jpg'),(24288,88,0,1548,'/w/1/w1_1_2_1.jpg'),(24289,89,0,1548,'/w/1/w1_1_2_1.jpg'),(24290,106,0,1548,'container2'),(24291,121,0,1548,'n-half-boots-eu-40-white'),(24292,132,0,1548,'0'),(24293,133,0,1548,'/w/1/w1_1_2_1.jpg'),(24294,206,0,1548,'leather'),(24299,73,0,1549,'Half Boots-EU 40-brown'),(24300,84,0,1549,'Half Boots'),(24301,86,0,1549,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24302,87,0,1549,'/b/1/b1_3_2.jpg'),(24303,88,0,1549,'/b/1/b1_3_2.jpg'),(24304,89,0,1549,'/b/1/b1_3_2.jpg'),(24305,106,0,1549,'container2'),(24306,121,0,1549,'n-half-boots-eu-40-brown'),(24307,132,0,1549,'0'),(24308,133,0,1549,'/b/1/b1_3_2.jpg'),(24309,206,0,1549,'leather'),(24314,73,0,1550,'Half Boots-EU 40-grey'),(24315,84,0,1550,'Half Boots'),(24316,86,0,1550,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24317,87,0,1550,'/g/1/g1_1_2.jpg'),(24318,88,0,1550,'/g/1/g1_1_2.jpg'),(24319,89,0,1550,'/g/1/g1_1_2.jpg'),(24320,106,0,1550,'container2'),(24321,121,0,1550,'n-half-boots-eu-40-grey'),(24322,132,0,1550,'0'),(24323,133,0,1550,'/g/1/g1_1_2.jpg'),(24324,206,0,1550,'leather'),(24329,73,0,1551,'Half Boots-EU 43-red'),(24330,84,0,1551,'Half Boots'),(24331,86,0,1551,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24332,87,0,1551,'/r/1/r1_2_3.jpg'),(24333,88,0,1551,'/r/1/r1_2_3.jpg'),(24334,89,0,1551,'/r/1/r1_2_3.jpg'),(24335,106,0,1551,'container2'),(24336,121,0,1551,'n-half-boots-eu-43-red'),(24337,132,0,1551,'0'),(24338,133,0,1551,'/r/1/r1_2_3.jpg'),(24339,206,0,1551,'leather'),(24344,73,0,1552,'Half Boots-EU 43-black'),(24345,84,0,1552,'Half Boots'),(24346,86,0,1552,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24347,87,0,1552,'/d/1/d1_2_3.jpg'),(24348,88,0,1552,'/d/1/d1_2_3.jpg'),(24349,89,0,1552,'/d/1/d1_2_3.jpg'),(24350,106,0,1552,'container2'),(24351,121,0,1552,'n-half-boots-eu-43-black'),(24352,132,0,1552,'0'),(24353,133,0,1552,'/d/1/d1_2_3.jpg'),(24354,206,0,1552,'leather'),(24359,73,0,1553,'Half Boots-EU 43-white'),(24360,84,0,1553,'Half Boots'),(24361,86,0,1553,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24362,87,0,1553,'/w/1/w1_1_3_1.jpg'),(24363,88,0,1553,'/w/1/w1_1_3_1.jpg'),(24364,89,0,1553,'/w/1/w1_1_3_1.jpg'),(24365,106,0,1553,'container2'),(24366,121,0,1553,'n-half-boots-eu-43-white'),(24367,132,0,1553,'0'),(24368,133,0,1553,'/w/1/w1_1_3_1.jpg'),(24369,206,0,1553,'leather'),(24374,73,0,1554,'Half Boots-EU 43-brown'),(24375,84,0,1554,'Half Boots'),(24376,86,0,1554,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24377,87,0,1554,'/b/1/b1_3_3.jpg'),(24378,88,0,1554,'/b/1/b1_3_3.jpg'),(24379,89,0,1554,'/b/1/b1_3_3.jpg'),(24380,106,0,1554,'container2'),(24381,121,0,1554,'n-half-boots-eu-43-brown'),(24382,132,0,1554,'0'),(24383,133,0,1554,'/b/1/b1_3_3.jpg'),(24384,206,0,1554,'leather'),(24389,73,0,1555,'Half Boots-EU 43-grey'),(24390,84,0,1555,'Half Boots'),(24391,86,0,1555,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24392,87,0,1555,'/g/1/g1_1_3.jpg'),(24393,88,0,1555,'/g/1/g1_1_3.jpg'),(24394,89,0,1555,'/g/1/g1_1_3.jpg'),(24395,106,0,1555,'container2'),(24396,121,0,1555,'n-half-boots-eu-43-grey'),(24397,132,0,1555,'0'),(24398,133,0,1555,'/g/1/g1_1_3.jpg'),(24399,206,0,1555,'leather'),(24404,73,0,1556,'Half Boots-EU 41-red'),(24405,84,0,1556,'Half Boots'),(24406,86,0,1556,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24407,87,0,1556,'/r/1/r1_2_4.jpg'),(24408,88,0,1556,'/r/1/r1_2_4.jpg'),(24409,89,0,1556,'/r/1/r1_2_4.jpg'),(24410,106,0,1556,'container2'),(24411,121,0,1556,'n-half-boots-eu-41-red'),(24412,132,0,1556,'0'),(24413,133,0,1556,'/r/1/r1_2_4.jpg'),(24414,206,0,1556,'leather'),(24419,73,0,1557,'Half Boots-EU 41-black'),(24420,84,0,1557,'Half Boots'),(24421,86,0,1557,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24422,87,0,1557,'/d/1/d1_2_4.jpg'),(24423,88,0,1557,'/d/1/d1_2_4.jpg'),(24424,89,0,1557,'/d/1/d1_2_4.jpg'),(24425,106,0,1557,'container2'),(24426,121,0,1557,'n-half-boots-eu-41-black'),(24427,132,0,1557,'0'),(24428,133,0,1557,'/d/1/d1_2_4.jpg'),(24429,206,0,1557,'leather'),(24434,73,0,1558,'Half Boots-EU 41-white'),(24435,84,0,1558,'Half Boots'),(24436,86,0,1558,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24437,87,0,1558,'/w/1/w1_1_4.jpg'),(24438,88,0,1558,'/w/1/w1_1_4.jpg'),(24439,89,0,1558,'/w/1/w1_1_4.jpg'),(24440,106,0,1558,'container2'),(24441,121,0,1558,'n-half-boots-eu-41-white'),(24442,132,0,1558,'0'),(24443,133,0,1558,'/w/1/w1_1_4.jpg'),(24444,206,0,1558,'leather'),(24449,73,0,1559,'Half Boots-EU 41-brown'),(24450,84,0,1559,'Half Boots'),(24451,86,0,1559,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24452,87,0,1559,'/b/1/b1_3_4.jpg'),(24453,88,0,1559,'/b/1/b1_3_4.jpg'),(24454,89,0,1559,'/b/1/b1_3_4.jpg'),(24455,106,0,1559,'container2'),(24456,121,0,1559,'n-half-boots-eu-41-brown'),(24457,132,0,1559,'0'),(24458,133,0,1559,'/b/1/b1_3_4.jpg'),(24459,206,0,1559,'leather'),(24464,73,0,1560,'Half Boots-EU 41-grey'),(24465,84,0,1560,'Half Boots'),(24466,86,0,1560,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24467,87,0,1560,'/g/1/g1_1_4.jpg'),(24468,88,0,1560,'/g/1/g1_1_4.jpg'),(24469,89,0,1560,'/g/1/g1_1_4.jpg'),(24470,106,0,1560,'container2'),(24471,121,0,1560,'n-half-boots-eu-41-grey'),(24472,132,0,1560,'0'),(24473,133,0,1560,'/g/1/g1_1_4.jpg'),(24474,206,0,1560,'leather'),(24479,73,0,1561,'Half Boots'),(24480,84,0,1561,'Half Boots'),(24481,86,0,1561,'Half Boots Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh.\r\nProduct colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: s'),(24482,106,0,1561,'container2'),(24483,121,0,1561,'n-half-boots'),(24484,132,0,1561,'2'),(24485,206,0,1561,'leather'),(24486,73,0,1562,' Tommy Hilfiger Long-sleeved Jumper-brown-Extra small size'),(24487,84,0,1562,' Tommy Hilfiger Long-sleeved Jumper'),(24488,86,0,1562,' Tommy Hilfiger Long-sleeved Jumper With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-'),(24489,87,0,1562,'/i/m/image_31231309_25_970x1182_0_1_2.jpg'),(24490,88,0,1562,'/i/m/image_31231309_25_970x1182_0_1_2.jpg'),(24491,89,0,1562,'/i/m/image_31231309_25_970x1182_0_1_2.jpg'),(24492,106,0,1562,'container2'),(24493,121,0,1562,'n-tommy-hilfiger-long-sleeved-jumper-brown-extra-small-size'),(24494,132,0,1562,'0'),(24495,133,0,1562,'/i/m/image_31231309_25_970x1182_0_1_2.jpg'),(24500,73,0,1563,' Tommy Hilfiger Long-sleeved Jumper-brown-Small size'),(24501,84,0,1563,' Tommy Hilfiger Long-sleeved Jumper'),(24502,86,0,1563,' Tommy Hilfiger Long-sleeved Jumper With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-'),(24503,87,0,1563,'/i/m/image_31231309_25_970x1182_0_1_2_1.jpg'),(24504,88,0,1563,'/i/m/image_31231309_25_970x1182_0_1_2_1.jpg'),(24505,89,0,1563,'/i/m/image_31231309_25_970x1182_0_1_2_1.jpg'),(24506,106,0,1563,'container2'),(24507,121,0,1563,'n-tommy-hilfiger-long-sleeved-jumper-brown-small-size'),(24508,132,0,1563,'0'),(24509,133,0,1563,'/i/m/image_31231309_25_970x1182_0_1_2_1.jpg'),(24514,73,0,1564,' Tommy Hilfiger Long-sleeved Jumper-brown-Medium size'),(24515,84,0,1564,' Tommy Hilfiger Long-sleeved Jumper'),(24516,86,0,1564,' Tommy Hilfiger Long-sleeved Jumper With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-'),(24517,87,0,1564,'/i/m/image_31231309_25_970x1182_0_1_3.jpg'),(24518,88,0,1564,'/i/m/image_31231309_25_970x1182_0_1_3.jpg'),(24519,89,0,1564,'/i/m/image_31231309_25_970x1182_0_1_3.jpg'),(24520,106,0,1564,'container2'),(24521,121,0,1564,'n-tommy-hilfiger-long-sleeved-jumper-brown-medium-size'),(24522,132,0,1564,'0'),(24523,133,0,1564,'/i/m/image_31231309_25_970x1182_0_1_3.jpg'),(24528,73,0,1565,' Tommy Hilfiger Long-sleeved Jumper-blue-Extra small size'),(24529,84,0,1565,' Tommy Hilfiger Long-sleeved Jumper'),(24530,86,0,1565,' Tommy Hilfiger Long-sleeved Jumper With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-'),(24531,87,0,1565,'/3/4/34rew23_3.jpg'),(24532,88,0,1565,'/3/4/34rew23_3.jpg'),(24533,89,0,1565,'/3/4/34rew23_3.jpg'),(24534,106,0,1565,'container2'),(24535,121,0,1565,'n-tommy-hilfiger-long-sleeved-jumper-blue-extra-small-size'),(24536,132,0,1565,'0'),(24537,133,0,1565,'/3/4/34rew23_3.jpg'),(24542,73,0,1566,' Tommy Hilfiger Long-sleeved Jumper-blue-Small size'),(24543,84,0,1566,' Tommy Hilfiger Long-sleeved Jumper'),(24544,86,0,1566,' Tommy Hilfiger Long-sleeved Jumper With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-'),(24545,87,0,1566,'/3/4/34rew23_1_1.jpg'),(24546,88,0,1566,'/3/4/34rew23_1_1.jpg'),(24547,89,0,1566,'/3/4/34rew23_1_1.jpg'),(24548,106,0,1566,'container2'),(24549,121,0,1566,'n-tommy-hilfiger-long-sleeved-jumper-blue-small-size'),(24550,132,0,1566,'0'),(24551,133,0,1566,'/3/4/34rew23_1_1.jpg'),(24556,73,0,1567,' Tommy Hilfiger Long-sleeved Jumper-blue-Medium size'),(24557,84,0,1567,' Tommy Hilfiger Long-sleeved Jumper'),(24558,86,0,1567,' Tommy Hilfiger Long-sleeved Jumper With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-'),(24559,87,0,1567,'/3/4/34rew23_2_1.jpg'),(24560,88,0,1567,'/3/4/34rew23_2_1.jpg'),(24561,89,0,1567,'/3/4/34rew23_2_1.jpg'),(24562,106,0,1567,'container2'),(24563,121,0,1567,'n-tommy-hilfiger-long-sleeved-jumper-blue-medium-size'),(24564,132,0,1567,'0'),(24565,133,0,1567,'/3/4/34rew23_2_1.jpg'),(24570,73,0,1568,'Tommy Hilfiger Long-sleeved Jumper'),(24571,84,0,1568,' Tommy Hilfiger Long-sleeved Jumper'),(24572,86,0,1568,' Tommy Hilfiger Long-sleeved Jumper With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-'),(24573,87,0,1568,'/i/m/image_31231309_25_970x1182_0_1_1_1.jpg'),(24574,88,0,1568,'/i/m/image_31231309_25_970x1182_0_1_1_1.jpg'),(24575,89,0,1568,'/i/m/image_31231309_25_970x1182_0_1_1_1.jpg'),(24576,106,0,1568,'container2'),(24577,121,0,1568,'n-lawrence-grey-rollneck-pullover-2'),(24578,132,0,1568,'2'),(24579,133,0,1568,'/i/m/image_31231309_25_970x1182_0_1_1_1.jpg'),(24584,73,0,1569,' Diesel Jacket-brown-Large size'),(24585,84,0,1569,' Diesel Jacket'),(24586,86,0,1569,' Diesel Jacket This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.\r\nCut: slightly tape'),(24587,87,0,1569,'/i/m/image_31302817_21_970x1182_0-3_1_2.jpg'),(24588,88,0,1569,'/i/m/image_31302817_21_970x1182_0-3_1_2.jpg'),(24589,89,0,1569,'/i/m/image_31302817_21_970x1182_0-3_1_2.jpg'),(24590,106,0,1569,'container2'),(24591,121,0,1569,'n-diesel-jacket-brown-large-size'),(24592,132,0,1569,'0'),(24593,133,0,1569,'/i/m/image_31302817_21_970x1182_0-3_1_2.jpg'),(24598,73,0,1570,' Diesel Jacket-brown-Small size'),(24599,84,0,1570,' Diesel Jacket'),(24600,86,0,1570,' Diesel Jacket This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.\r\nCut: slightly tape'),(24601,87,0,1570,'/i/m/image_31302817_21_970x1182_0-3_1_2_1.jpg'),(24602,88,0,1570,'/i/m/image_31302817_21_970x1182_0-3_1_2_1.jpg'),(24603,89,0,1570,'/i/m/image_31302817_21_970x1182_0-3_1_2_1.jpg'),(24604,106,0,1570,'container2'),(24605,121,0,1570,'n-diesel-jacket-brown-small-size'),(24606,132,0,1570,'0'),(24607,133,0,1570,'/i/m/image_31302817_21_970x1182_0-3_1_2_1.jpg'),(24612,73,0,1571,' Diesel Jacket-brown-Medium size'),(24613,84,0,1571,' Diesel Jacket'),(24614,86,0,1571,' Diesel Jacket This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.\r\nCut: slightly tape'),(24615,87,0,1571,'/i/m/image_31302817_21_970x1182_0-3_1_3.jpg'),(24616,88,0,1571,'/i/m/image_31302817_21_970x1182_0-3_1_3.jpg'),(24617,89,0,1571,'/i/m/image_31302817_21_970x1182_0-3_1_3.jpg'),(24618,106,0,1571,'container2'),(24619,121,0,1571,'n-diesel-jacket-brown-medium-size'),(24620,132,0,1571,'0'),(24621,133,0,1571,'/i/m/image_31302817_21_970x1182_0-3_1_3.jpg'),(24626,73,0,1572,' Diesel Jacket-grey-Large size'),(24627,84,0,1572,' Diesel Jacket'),(24628,86,0,1572,' Diesel Jacket This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.\r\nCut: slightly tape'),(24629,87,0,1572,'/5/t/5t4rr4r3r_3.jpg'),(24630,88,0,1572,'/5/t/5t4rr4r3r_3.jpg'),(24631,89,0,1572,'/5/t/5t4rr4r3r_3.jpg'),(24632,106,0,1572,'container2'),(24633,121,0,1572,'n-diesel-jacket-grey-large-size'),(24634,132,0,1572,'0'),(24635,133,0,1572,'/5/t/5t4rr4r3r_3.jpg'),(24640,73,0,1573,'Grey Sweat Pants-red-Extra small size'),(24641,84,0,1573,'Grey Sweat Pants'),(24642,86,0,1573,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24643,87,0,1573,'/r/1/r1_3.jpg'),(24644,88,0,1573,'/r/1/r1_3.jpg'),(24645,89,0,1573,'/r/1/r1_3.jpg'),(24646,106,0,1573,'container2'),(24647,121,0,1573,'grey-sweat-pants-red-extra-small-size'),(24648,132,0,1573,'0'),(24649,133,0,1573,'/r/1/r1_3.jpg'),(24650,206,0,1573,'80% cotton, 17% polyester, 3% elastane'),(24655,73,0,1574,'Grey Sweat Pants-red-Small size'),(24656,84,0,1574,'Grey Sweat Pants'),(24657,86,0,1574,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24658,87,0,1574,'/r/1/r1_3_1.jpg'),(24659,88,0,1574,'/r/1/r1_3_1.jpg'),(24660,89,0,1574,'/r/1/r1_3_1.jpg'),(24661,106,0,1574,'container2'),(24662,121,0,1574,'grey-sweat-pants-red-small-size'),(24663,132,0,1574,'0'),(24664,133,0,1574,'/r/1/r1_3_1.jpg'),(24665,206,0,1574,'80% cotton, 17% polyester, 3% elastane'),(24670,73,0,1575,' Diesel Jacket-grey-Small size'),(24671,84,0,1575,' Diesel Jacket'),(24672,86,0,1575,' Diesel Jacket This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.\r\nCut: slightly tape'),(24673,87,0,1575,'/5/t/5t4rr4r3r_1_1.jpg'),(24674,88,0,1575,'/5/t/5t4rr4r3r_1_1.jpg'),(24675,89,0,1575,'/5/t/5t4rr4r3r_1_1.jpg'),(24676,106,0,1575,'container2'),(24677,121,0,1575,'n-diesel-jacket-grey-small-size'),(24678,132,0,1575,'0'),(24679,133,0,1575,'/5/t/5t4rr4r3r_1_1.jpg'),(24684,73,0,1576,'Grey Sweat Pants-red-Medium size'),(24685,84,0,1576,'Grey Sweat Pants'),(24686,86,0,1576,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24687,87,0,1576,'/r/1/r1_3_2.jpg'),(24688,88,0,1576,'/r/1/r1_3_2.jpg'),(24689,89,0,1576,'/r/1/r1_3_2.jpg'),(24690,106,0,1576,'container2'),(24691,121,0,1576,'grey-sweat-pants-red-medium-size'),(24692,132,0,1576,'0'),(24693,133,0,1576,'/r/1/r1_3_2.jpg'),(24694,206,0,1576,'80% cotton, 17% polyester, 3% elastane'),(24699,73,0,1577,'Grey Sweat Pants-red-Large size'),(24700,84,0,1577,'Grey Sweat Pants'),(24701,86,0,1577,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24702,87,0,1577,'/r/1/r1_3_3.jpg'),(24703,88,0,1577,'/r/1/r1_3_3.jpg'),(24704,89,0,1577,'/r/1/r1_3_3.jpg'),(24705,106,0,1577,'container2'),(24706,121,0,1577,'grey-sweat-pants-red-large-size'),(24707,132,0,1577,'0'),(24708,133,0,1577,'/r/1/r1_3_3.jpg'),(24709,206,0,1577,'80% cotton, 17% polyester, 3% elastane'),(24714,73,0,1578,'Grey Sweat Pants-black-Extra small size'),(24715,84,0,1578,'Grey Sweat Pants'),(24716,86,0,1578,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24717,87,0,1578,'/d/1/d1_3_2.jpg'),(24718,88,0,1578,'/d/1/d1_3_2.jpg'),(24719,89,0,1578,'/d/1/d1_3_2.jpg'),(24720,106,0,1578,'container2'),(24721,121,0,1578,'grey-sweat-pants-black-extra-small-size'),(24722,132,0,1578,'0'),(24723,133,0,1578,'/d/1/d1_3_2.jpg'),(24724,206,0,1578,'80% cotton, 17% polyester, 3% elastane'),(24729,73,0,1579,' Diesel Jacket-grey-Medium size'),(24730,84,0,1579,' Diesel Jacket'),(24731,86,0,1579,' Diesel Jacket This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.\r\nCut: slightly tape'),(24732,87,0,1579,'/5/t/5t4rr4r3r_2_1.jpg'),(24733,88,0,1579,'/5/t/5t4rr4r3r_2_1.jpg'),(24734,89,0,1579,'/5/t/5t4rr4r3r_2_1.jpg'),(24735,106,0,1579,'container2'),(24736,121,0,1579,'n-diesel-jacket-grey-medium-size'),(24737,132,0,1579,'0'),(24738,133,0,1579,'/5/t/5t4rr4r3r_2_1.jpg'),(24743,73,0,1580,'Grey Sweat Pants-black-Small size'),(24744,84,0,1580,'Grey Sweat Pants'),(24745,86,0,1580,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24746,87,0,1580,'/d/1/d1_3_1_1.jpg'),(24747,88,0,1580,'/d/1/d1_3_1_1.jpg'),(24748,89,0,1580,'/d/1/d1_3_1_1.jpg'),(24749,106,0,1580,'container2'),(24750,121,0,1580,'grey-sweat-pants-black-small-size'),(24751,132,0,1580,'0'),(24752,133,0,1580,'/d/1/d1_3_1_1.jpg'),(24753,206,0,1580,'80% cotton, 17% polyester, 3% elastane'),(24758,73,0,1581,'Grey Sweat Pants-black-Medium size'),(24759,84,0,1581,'Grey Sweat Pants'),(24760,86,0,1581,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24761,87,0,1581,'/d/1/d1_3_2_1.jpg'),(24762,88,0,1581,'/d/1/d1_3_2_1.jpg'),(24763,89,0,1581,'/d/1/d1_3_2_1.jpg'),(24764,106,0,1581,'container2'),(24765,121,0,1581,'grey-sweat-pants-black-medium-size'),(24766,132,0,1581,'0'),(24767,133,0,1581,'/d/1/d1_3_2_1.jpg'),(24768,206,0,1581,'80% cotton, 17% polyester, 3% elastane'),(24773,73,0,1582,'Grey Sweat Pants-black-Large size'),(24774,84,0,1582,'Grey Sweat Pants'),(24775,86,0,1582,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24776,87,0,1582,'/d/1/d1_3_3.jpg'),(24777,88,0,1582,'/d/1/d1_3_3.jpg'),(24778,89,0,1582,'/d/1/d1_3_3.jpg'),(24779,106,0,1582,'container2'),(24780,121,0,1582,'grey-sweat-pants-black-large-size'),(24781,132,0,1582,'0'),(24782,133,0,1582,'/d/1/d1_3_3.jpg'),(24783,206,0,1582,'80% cotton, 17% polyester, 3% elastane'),(24788,73,0,1583,'Diesel Jacket'),(24789,84,0,1583,' Diesel Jacket'),(24790,86,0,1583,' Diesel Jacket This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour.\r\nCut: slightly tape'),(24791,87,0,1583,'/i/m/image_31302817_21_970x1182_0-3_1_1_1.jpg'),(24792,88,0,1583,'/i/m/image_31302817_21_970x1182_0-3_1_1_1.jpg'),(24793,89,0,1583,'/i/m/image_31302817_21_970x1182_0-3_1_1_1.jpg'),(24794,106,0,1583,'container2'),(24795,121,0,1583,'n-seventy-transitional-jacket-12'),(24796,132,0,1583,'2'),(24797,133,0,1583,'no_selection'),(24802,73,0,1584,'Grey Sweat Pants-blue-Extra small size'),(24803,84,0,1584,'Grey Sweat Pants'),(24804,86,0,1584,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24805,87,0,1584,'/1/_/1_2.jpg'),(24806,88,0,1584,'/1/_/1_2.jpg'),(24807,89,0,1584,'/1/_/1_2.jpg'),(24808,106,0,1584,'container2'),(24809,121,0,1584,'grey-sweat-pants-blue-extra-small-size'),(24810,132,0,1584,'0'),(24811,133,0,1584,'/1/_/1_2.jpg'),(24812,206,0,1584,'80% cotton, 17% polyester, 3% elastane'),(24817,73,0,1585,'Grey Sweat Pants-blue-Small size'),(24818,84,0,1585,'Grey Sweat Pants'),(24819,86,0,1585,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24820,87,0,1585,'/1/_/1_2_1.jpg'),(24821,88,0,1585,'/1/_/1_2_1.jpg'),(24822,89,0,1585,'/1/_/1_2_1.jpg'),(24823,106,0,1585,'container2'),(24824,121,0,1585,'grey-sweat-pants-blue-small-size'),(24825,132,0,1585,'0'),(24826,133,0,1585,'/1/_/1_2_1.jpg'),(24827,206,0,1585,'80% cotton, 17% polyester, 3% elastane'),(24832,73,0,1586,'Grey Sweat Pants-blue-Medium size'),(24833,84,0,1586,'Grey Sweat Pants'),(24834,86,0,1586,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24835,87,0,1586,'/1/_/1_2_2.jpg'),(24836,88,0,1586,'/1/_/1_2_2.jpg'),(24837,89,0,1586,'/1/_/1_2_2.jpg'),(24838,106,0,1586,'container2'),(24839,121,0,1586,'grey-sweat-pants-blue-medium-size'),(24840,132,0,1586,'0'),(24841,133,0,1586,'/1/_/1_2_2.jpg'),(24842,206,0,1586,'80% cotton, 17% polyester, 3% elastane'),(24847,73,0,1587,'Grey Sweat Pants-blue-Large size'),(24848,84,0,1587,'Grey Sweat Pants'),(24849,86,0,1587,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24850,87,0,1587,'/1/_/1_2_3.jpg'),(24851,88,0,1587,'/1/_/1_2_3.jpg'),(24852,89,0,1587,'/1/_/1_2_3.jpg'),(24853,106,0,1587,'container2'),(24854,121,0,1587,'grey-sweat-pants-blue-large-size'),(24855,132,0,1587,'0'),(24856,133,0,1587,'/1/_/1_2_3.jpg'),(24857,206,0,1587,'80% cotton, 17% polyester, 3% elastane'),(24862,73,0,1588,'Grey Sweat Pants-white-Extra small size'),(24863,84,0,1588,'Grey Sweat Pants'),(24864,86,0,1588,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24865,87,0,1588,'/w/1/w1_2_3.jpg'),(24866,88,0,1588,'/w/1/w1_2_3.jpg'),(24867,89,0,1588,'/w/1/w1_2_3.jpg'),(24868,106,0,1588,'container2'),(24869,121,0,1588,'grey-sweat-pants-white-extra-small-size'),(24870,132,0,1588,'0'),(24871,133,0,1588,'/w/1/w1_2_3.jpg'),(24872,206,0,1588,'80% cotton, 17% polyester, 3% elastane'),(24877,73,0,1589,'Grey Sweat Pants-white-Small size'),(24878,84,0,1589,'Grey Sweat Pants'),(24879,86,0,1589,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24880,87,0,1589,'/w/1/w1_2_1_1.jpg'),(24881,88,0,1589,'/w/1/w1_2_1_1.jpg'),(24882,89,0,1589,'/w/1/w1_2_1_1.jpg'),(24883,106,0,1589,'container2'),(24884,121,0,1589,'grey-sweat-pants-white-small-size'),(24885,132,0,1589,'0'),(24886,133,0,1589,'/w/1/w1_2_1_1.jpg'),(24887,206,0,1589,'80% cotton, 17% polyester, 3% elastane'),(24892,73,0,1590,'Grey Sweat Pants-white-Medium size'),(24893,84,0,1590,'Grey Sweat Pants'),(24894,86,0,1590,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24895,87,0,1590,'/w/1/w1_2_2_1.jpg'),(24896,88,0,1590,'/w/1/w1_2_2_1.jpg'),(24897,89,0,1590,'/w/1/w1_2_2_1.jpg'),(24898,106,0,1590,'container2'),(24899,121,0,1590,'grey-sweat-pants-white-medium-size'),(24900,132,0,1590,'0'),(24901,133,0,1590,'/w/1/w1_2_2_1.jpg'),(24902,206,0,1590,'80% cotton, 17% polyester, 3% elastane'),(24907,73,0,1591,'Grey Sweat Pants-white-Large size'),(24908,84,0,1591,'Grey Sweat Pants'),(24909,86,0,1591,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24910,87,0,1591,'/w/1/w1_2_3_1.jpg'),(24911,88,0,1591,'/w/1/w1_2_3_1.jpg'),(24912,89,0,1591,'/w/1/w1_2_3_1.jpg'),(24913,106,0,1591,'container2'),(24914,121,0,1591,'grey-sweat-pants-white-large-size'),(24915,132,0,1591,'0'),(24916,133,0,1591,'/w/1/w1_2_3_1.jpg'),(24917,206,0,1591,'80% cotton, 17% polyester, 3% elastane'),(24922,73,0,1592,'Grey Sweat Pants-brown-Extra small size'),(24923,84,0,1592,'Grey Sweat Pants'),(24924,86,0,1592,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24925,87,0,1592,'/b/1/b1_5.jpg'),(24926,88,0,1592,'/b/1/b1_5.jpg'),(24927,89,0,1592,'/b/1/b1_5.jpg'),(24928,106,0,1592,'container2'),(24929,121,0,1592,'grey-sweat-pants-brown-extra-small-size'),(24930,132,0,1592,'0'),(24931,133,0,1592,'/b/1/b1_5.jpg'),(24932,206,0,1592,'80% cotton, 17% polyester, 3% elastane'),(24937,73,0,1593,'Grey Sweat Pants-brown-Small size'),(24938,84,0,1593,'Grey Sweat Pants'),(24939,86,0,1593,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24940,87,0,1593,'/b/1/b1_5_1.jpg'),(24941,88,0,1593,'/b/1/b1_5_1.jpg'),(24942,89,0,1593,'/b/1/b1_5_1.jpg'),(24943,106,0,1593,'container2'),(24944,121,0,1593,'grey-sweat-pants-brown-small-size'),(24945,132,0,1593,'0'),(24946,133,0,1593,'/b/1/b1_5_1.jpg'),(24947,206,0,1593,'80% cotton, 17% polyester, 3% elastane'),(24952,73,0,1594,'Grey Sweat Pants-brown-Medium size'),(24953,84,0,1594,'Grey Sweat Pants'),(24954,86,0,1594,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24955,87,0,1594,'/b/1/b1_5_2.jpg'),(24956,88,0,1594,'/b/1/b1_5_2.jpg'),(24957,89,0,1594,'/b/1/b1_5_2.jpg'),(24958,106,0,1594,'container2'),(24959,121,0,1594,'grey-sweat-pants-brown-medium-size'),(24960,132,0,1594,'0'),(24961,133,0,1594,'/b/1/b1_5_2.jpg'),(24962,206,0,1594,'80% cotton, 17% polyester, 3% elastane'),(24967,73,0,1595,'Grey Sweat Pants-brown-Large size'),(24968,84,0,1595,'Grey Sweat Pants'),(24969,86,0,1595,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24970,87,0,1595,'/b/1/b1_5_3.jpg'),(24971,88,0,1595,'/b/1/b1_5_3.jpg'),(24972,89,0,1595,'/b/1/b1_5_3.jpg'),(24973,106,0,1595,'container2'),(24974,121,0,1595,'grey-sweat-pants-brown-large-size'),(24975,132,0,1595,'0'),(24976,133,0,1595,'/b/1/b1_5_3.jpg'),(24977,206,0,1595,'80% cotton, 17% polyester, 3% elastane'),(24982,73,0,1596,'Grey Sweat Pants'),(24983,84,0,1596,'Grey Sweat Pants'),(24984,86,0,1596,'Grey Sweat Pants Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, '),(24985,106,0,1596,'container2'),(24986,121,0,1596,'n-grey-sweat-pants'),(24987,132,0,1596,'2'),(24988,206,0,1596,'80% cotton, 17% polyester, 3% elastane'),(24989,87,0,1596,'/w/1/w1_2_4.jpg'),(24990,88,0,1596,'/w/1/w1_2_4.jpg'),(24991,89,0,1596,'/w/1/w1_2_4.jpg'),(24992,73,0,1597,'J.B by Jean Biani Sneakers'),(24993,84,0,1597,'J.B by Jean Biani Sneakers'),(24994,86,0,1597,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(24995,106,0,1597,'container2'),(24996,121,0,1597,'n-j-b-by-jean-biani-sneakers'),(24997,132,0,1597,'2'),(24998,206,0,1597,'textile, synthetic'),(24999,73,0,1598,'Dark Blue Straight Leg Jeans-grey-Large size'),(25000,84,0,1598,'Dark Blue Straight Leg Jeans'),(25001,86,0,1598,'Dark Blue Straight Leg Jeans The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. R'),(25002,87,0,1598,'/3/4/3434t5t5t_1_1.jpg'),(25003,88,0,1598,'/3/4/3434t5t5t_1_1.jpg'),(25004,89,0,1598,'/3/4/3434t5t5t_1_1.jpg'),(25005,106,0,1598,'container2'),(25006,121,0,1598,'dark-blue-straight-leg-jeans-grey-large-size'),(25007,132,0,1598,'0'),(25008,133,0,1598,'/3/4/3434t5t5t_1_1.jpg'),(25013,73,0,1599,'Dark Blue Straight Leg Jeans-grey-Small size'),(25014,84,0,1599,'Dark Blue Straight Leg Jeans'),(25015,86,0,1599,'Dark Blue Straight Leg Jeans The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. R'),(25016,87,0,1599,'/3/4/3434t5t5t_1_1_1.jpg'),(25017,88,0,1599,'/3/4/3434t5t5t_1_1_1.jpg'),(25018,89,0,1599,'/3/4/3434t5t5t_1_1_1.jpg'),(25019,106,0,1599,'container2'),(25020,121,0,1599,'dark-blue-straight-leg-jeans-grey-small-size'),(25021,132,0,1599,'0'),(25022,133,0,1599,'/3/4/3434t5t5t_1_1_1.jpg'),(25027,73,0,1600,'Dark Blue Straight Leg Jeans-grey-Medium size'),(25028,84,0,1600,'Dark Blue Straight Leg Jeans'),(25029,86,0,1600,'Dark Blue Straight Leg Jeans The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. R'),(25030,87,0,1600,'/3/4/3434t5t5t_1_2.jpg'),(25031,88,0,1600,'/3/4/3434t5t5t_1_2.jpg'),(25032,89,0,1600,'/3/4/3434t5t5t_1_2.jpg'),(25033,106,0,1600,'container2'),(25034,121,0,1600,'dark-blue-straight-leg-jeans-grey-medium-size'),(25035,132,0,1600,'0'),(25036,133,0,1600,'/3/4/3434t5t5t_1_2.jpg'),(25041,73,0,1601,'Dark Blue Straight Leg Jeans-blue-Large size'),(25042,84,0,1601,'Dark Blue Straight Leg Jeans'),(25043,86,0,1601,'Dark Blue Straight Leg Jeans The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. R'),(25044,87,0,1601,'/i/m/image_31203254_31_620x757_3_1_2.jpg'),(25045,88,0,1601,'/i/m/image_31203254_31_620x757_3_1_2.jpg'),(25046,89,0,1601,'/i/m/image_31203254_31_620x757_3_1_2.jpg'),(25047,106,0,1601,'container2'),(25048,121,0,1601,'dark-blue-straight-leg-jeans-blue-large-size'),(25049,132,0,1601,'0'),(25050,133,0,1601,'/i/m/image_31203254_31_620x757_3_1_2.jpg'),(25055,73,0,1602,'Dark Blue Straight Leg Jeans-blue-Small size'),(25056,84,0,1602,'Dark Blue Straight Leg Jeans'),(25057,86,0,1602,'Dark Blue Straight Leg Jeans The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. R'),(25058,87,0,1602,'/i/m/image_31203254_31_620x757_3_1_2_1.jpg'),(25059,88,0,1602,'/i/m/image_31203254_31_620x757_3_1_2_1.jpg'),(25060,89,0,1602,'/i/m/image_31203254_31_620x757_3_1_2_1.jpg'),(25061,106,0,1602,'container2'),(25062,121,0,1602,'dark-blue-straight-leg-jeans-blue-small-size'),(25063,132,0,1602,'0'),(25064,133,0,1602,'/i/m/image_31203254_31_620x757_3_1_2_1.jpg'),(25069,73,0,1603,'Dark Blue Straight Leg Jeans-blue-Medium size'),(25070,84,0,1603,'Dark Blue Straight Leg Jeans'),(25071,86,0,1603,'Dark Blue Straight Leg Jeans The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. R'),(25072,87,0,1603,'/i/m/image_31203254_31_620x757_3_1_2_2.jpg'),(25073,88,0,1603,'/i/m/image_31203254_31_620x757_3_1_2_2.jpg'),(25074,89,0,1603,'/i/m/image_31203254_31_620x757_3_1_2_2.jpg'),(25075,106,0,1603,'container2'),(25076,121,0,1603,'dark-blue-straight-leg-jeans-blue-medium-size'),(25077,132,0,1603,'0'),(25078,133,0,1603,'/i/m/image_31203254_31_620x757_3_1_2_2.jpg'),(25083,73,0,1604,'Dark Blue Straight Leg Jeans'),(25084,84,0,1604,'Dark Blue Straight Leg Jeans'),(25085,86,0,1604,'Dark Blue Straight Leg Jeans The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. R'),(25086,87,0,1604,'/m/a/main_5_5_1_3.jpg'),(25087,88,0,1604,'/m/a/main_5_5_1_3.jpg'),(25088,89,0,1604,'/m/a/main_5_5_1_3.jpg'),(25089,106,0,1604,'container2'),(25090,121,0,1604,'n-dark-blue-straight-leg-jeans-700'),(25091,132,0,1604,'2'),(25092,133,0,1604,'no_selection'),(25097,73,0,1605,'J.B by Jean Biani Sneakers-EU 41-red'),(25098,84,0,1605,'J.B by Jean Biani Sneakers'),(25099,86,0,1605,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(25100,87,0,1605,'/r/1/r1_4.jpg'),(25101,88,0,1605,'/r/1/r1_4.jpg'),(25102,89,0,1605,'/r/1/r1_4.jpg'),(25103,106,0,1605,'container2'),(25104,121,0,1605,'n-j-b-by-jean-biani-sneakers-eu-41-red'),(25105,132,0,1605,'0'),(25106,133,0,1605,'/r/1/r1_4.jpg'),(25107,206,0,1605,'textile, synthetic'),(25112,73,0,1606,'J.B by Jean Biani Sneakers-EU 41-blue'),(25113,84,0,1606,'J.B by Jean Biani Sneakers'),(25114,86,0,1606,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(25115,87,0,1606,'/1/_/1_5.jpg'),(25116,88,0,1606,'/1/_/1_5.jpg'),(25117,89,0,1606,'/1/_/1_5.jpg'),(25118,106,0,1606,'container2'),(25119,121,0,1606,'n-j-b-by-jean-biani-sneakers-eu-41-blue'),(25120,132,0,1606,'0'),(25121,133,0,1606,'/1/_/1_5.jpg'),(25122,206,0,1606,'textile, synthetic'),(25127,73,0,1607,'J.B by Jean Biani Sneakers-EU 41-white'),(25128,84,0,1607,'J.B by Jean Biani Sneakers'),(25129,86,0,1607,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(25130,87,0,1607,'/w/1/w1_3_3.jpg'),(25131,88,0,1607,'/w/1/w1_3_3.jpg'),(25132,89,0,1607,'/w/1/w1_3_3.jpg'),(25133,106,0,1607,'container2'),(25134,121,0,1607,'n-j-b-by-jean-biani-sneakers-eu-41-white'),(25135,132,0,1607,'0'),(25136,133,0,1607,'/w/1/w1_3_3.jpg'),(25137,206,0,1607,'textile, synthetic'),(25142,73,0,1608,'J.B by Jean Biani Sneakers-EU 41-brown'),(25143,84,0,1608,'J.B by Jean Biani Sneakers'),(25144,86,0,1608,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(25145,87,0,1608,'/b/1/b1_7.jpg'),(25146,88,0,1608,'/b/1/b1_7.jpg'),(25147,89,0,1608,'/b/1/b1_7.jpg'),(25148,106,0,1608,'container2'),(25149,121,0,1608,'n-j-b-by-jean-biani-sneakers-eu-41-brown'),(25150,132,0,1608,'0'),(25151,133,0,1608,'/b/1/b1_7.jpg'),(25152,206,0,1608,'textile, synthetic'),(25157,73,0,1609,'J.B by Jean Biani Sneakers-EU 41-grey'),(25158,84,0,1609,'J.B by Jean Biani Sneakers'),(25159,86,0,1609,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(25160,87,0,1609,'/g/1/g1_2_1.jpg'),(25161,88,0,1609,'/g/1/g1_2_1.jpg'),(25162,89,0,1609,'/g/1/g1_2_1.jpg'),(25163,106,0,1609,'container2'),(25164,121,0,1609,'n-j-b-by-jean-biani-sneakers-eu-41-grey'),(25165,132,0,1609,'0'),(25166,133,0,1609,'/g/1/g1_2_1.jpg'),(25167,206,0,1609,'textile, synthetic'),(25172,73,0,1610,'J.B by Jean Biani Sneakers-EU 40-red'),(25173,84,0,1610,'J.B by Jean Biani Sneakers'),(25174,86,0,1610,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(25175,87,0,1610,'/r/1/r1_4_1.jpg'),(25176,88,0,1610,'/r/1/r1_4_1.jpg'),(25177,89,0,1610,'/r/1/r1_4_1.jpg'),(25178,106,0,1610,'container2'),(25179,121,0,1610,'n-j-b-by-jean-biani-sneakers-eu-40-red'),(25180,132,0,1610,'0'),(25181,133,0,1610,'/r/1/r1_4_1.jpg'),(25182,206,0,1610,'textile, synthetic'),(25187,73,0,1611,'J.B by Jean Biani Sneakers-EU 40-blue'),(25188,84,0,1611,'J.B by Jean Biani Sneakers'),(25189,86,0,1611,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(25190,87,0,1611,'/1/_/1_5_1.jpg'),(25191,88,0,1611,'/1/_/1_5_1.jpg'),(25192,89,0,1611,'/1/_/1_5_1.jpg'),(25193,106,0,1611,'container2'),(25194,121,0,1611,'n-j-b-by-jean-biani-sneakers-eu-40-blue'),(25195,132,0,1611,'0'),(25196,133,0,1611,'/1/_/1_5_1.jpg'),(25197,206,0,1611,'textile, synthetic'),(25202,73,0,1612,'J.B by Jean Biani Sneakers-EU 40-white'),(25203,84,0,1612,'J.B by Jean Biani Sneakers'),(25204,86,0,1612,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(25205,87,0,1612,'/w/1/w1_3_1_1.jpg'),(25206,88,0,1612,'/w/1/w1_3_1_1.jpg'),(25207,89,0,1612,'/w/1/w1_3_1_1.jpg'),(25208,106,0,1612,'container2'),(25209,121,0,1612,'n-j-b-by-jean-biani-sneakers-eu-40-white'),(25210,132,0,1612,'0'),(25211,133,0,1612,'/w/1/w1_3_1_1.jpg'),(25212,206,0,1612,'textile, synthetic'),(25217,73,0,1613,'J.B by Jean Biani Sneakers-EU 40-brown'),(25218,84,0,1613,'J.B by Jean Biani Sneakers'),(25219,86,0,1613,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(25220,87,0,1613,'/b/1/b1_7_1.jpg'),(25221,88,0,1613,'/b/1/b1_7_1.jpg'),(25222,89,0,1613,'/b/1/b1_7_1.jpg'),(25223,106,0,1613,'container2'),(25224,121,0,1613,'n-j-b-by-jean-biani-sneakers-eu-40-brown'),(25225,132,0,1613,'0'),(25226,133,0,1613,'/b/1/b1_7_1.jpg'),(25227,206,0,1613,'textile, synthetic'),(25232,73,0,1614,'J.B by Jean Biani Sneakers-EU 40-grey'),(25233,84,0,1614,'J.B by Jean Biani Sneakers'),(25234,86,0,1614,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(25235,87,0,1614,'/g/1/g1_2_1_1.jpg'),(25236,88,0,1614,'/g/1/g1_2_1_1.jpg'),(25237,89,0,1614,'/g/1/g1_2_1_1.jpg'),(25238,106,0,1614,'container2'),(25239,121,0,1614,'n-j-b-by-jean-biani-sneakers-eu-40-grey'),(25240,132,0,1614,'0'),(25241,133,0,1614,'/g/1/g1_2_1_1.jpg'),(25242,206,0,1614,'textile, synthetic'),(25247,73,0,1615,'J.B by Jean Biani Sneakers-EU 42-red'),(25248,84,0,1615,'J.B by Jean Biani Sneakers'),(25249,86,0,1615,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(25250,87,0,1615,'/r/1/r1_4_2.jpg'),(25251,88,0,1615,'/r/1/r1_4_2.jpg'),(25252,89,0,1615,'/r/1/r1_4_2.jpg'),(25253,106,0,1615,'container2'),(25254,121,0,1615,'n-j-b-by-jean-biani-sneakers-eu-42-red'),(25255,132,0,1615,'0'),(25256,133,0,1615,'/r/1/r1_4_2.jpg'),(25257,206,0,1615,'textile, synthetic'),(25262,73,0,1616,'J.B by Jean Biani Sneakers-EU 42-blue'),(25263,84,0,1616,'J.B by Jean Biani Sneakers'),(25264,86,0,1616,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(25265,87,0,1616,'/1/_/1_5_2.jpg'),(25266,88,0,1616,'/1/_/1_5_2.jpg'),(25267,89,0,1616,'/1/_/1_5_2.jpg'),(25268,106,0,1616,'container2'),(25269,121,0,1616,'n-j-b-by-jean-biani-sneakers-eu-42-blue'),(25270,132,0,1616,'0'),(25271,133,0,1616,'/1/_/1_5_2.jpg'),(25272,206,0,1616,'textile, synthetic'),(25277,73,0,1617,'J.B by Jean Biani Sneakers-EU 42-white'),(25278,84,0,1617,'J.B by Jean Biani Sneakers'),(25279,86,0,1617,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(25280,87,0,1617,'/w/1/w1_3_2_1.jpg'),(25281,88,0,1617,'/w/1/w1_3_2_1.jpg'),(25282,89,0,1617,'/w/1/w1_3_2_1.jpg'),(25283,106,0,1617,'container2'),(25284,121,0,1617,'n-j-b-by-jean-biani-sneakers-eu-42-white'),(25285,132,0,1617,'0'),(25286,133,0,1617,'/w/1/w1_3_2_1.jpg'),(25287,206,0,1617,'textile, synthetic'),(25292,73,0,1618,'J.B by Jean Biani Sneakers-EU 42-brown'),(25293,84,0,1618,'J.B by Jean Biani Sneakers'),(25294,86,0,1618,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(25295,87,0,1618,'/b/1/b1_7_2.jpg'),(25296,88,0,1618,'/b/1/b1_7_2.jpg'),(25297,89,0,1618,'/b/1/b1_7_2.jpg'),(25298,106,0,1618,'container2'),(25299,121,0,1618,'n-j-b-by-jean-biani-sneakers-eu-42-brown'),(25300,132,0,1618,'0'),(25301,133,0,1618,'/b/1/b1_7_2.jpg'),(25302,206,0,1618,'textile, synthetic'),(25307,73,0,1619,'J.B by Jean Biani Sneakers-EU 42-grey'),(25308,84,0,1619,'J.B by Jean Biani Sneakers'),(25309,86,0,1619,'J.B by Jean Biani Sneakers Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acq'),(25310,87,0,1619,'/g/1/g1_2_2.jpg'),(25311,88,0,1619,'/g/1/g1_2_2.jpg'),(25312,89,0,1619,'/g/1/g1_2_2.jpg'),(25313,106,0,1619,'container2'),(25314,121,0,1619,'n-j-b-by-jean-biani-sneakers-eu-42-grey'),(25315,132,0,1619,'0'),(25316,133,0,1619,'/g/1/g1_2_2.jpg'),(25317,206,0,1619,'textile, synthetic'),(25322,87,0,1597,'/1/_/1_3.jpg'),(25323,88,0,1597,'/1/_/1_3.jpg'),(25324,89,0,1597,'/1/_/1_3.jpg'),(25325,133,0,1597,'/1/_/1_3.jpg'),(25330,73,0,1620,'Dark Blue Slim Fit Jeans-blue-Extra small size'),(25331,84,0,1620,'Dark Blue Slim Fit Jeans'),(25332,86,0,1620,'Dark Blue Slim Fit Jeans Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.\r\nManufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″),'),(25333,87,0,1620,'/i/m/image_31265248_31_970x1182_3_1_2.jpg'),(25334,88,0,1620,'/i/m/image_31265248_31_970x1182_3_1_2.jpg'),(25335,89,0,1620,'/i/m/image_31265248_31_970x1182_3_1_2.jpg'),(25336,106,0,1620,'container2'),(25337,121,0,1620,'dark-blue-slim-fit-jeans-blue-extra-small-size'),(25338,132,0,1620,'0'),(25339,133,0,1620,'/i/m/image_31265248_31_970x1182_3_1_2.jpg'),(25344,73,0,1621,'Dark Blue Slim Fit Jeans-blue-Large size'),(25345,84,0,1621,'Dark Blue Slim Fit Jeans'),(25346,86,0,1621,'Dark Blue Slim Fit Jeans Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.\r\nManufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″),'),(25347,87,0,1621,'/i/m/image_31265248_31_970x1182_3_1_2_1.jpg'),(25348,88,0,1621,'/i/m/image_31265248_31_970x1182_3_1_2_1.jpg'),(25349,89,0,1621,'/i/m/image_31265248_31_970x1182_3_1_2_1.jpg'),(25350,106,0,1621,'container2'),(25351,121,0,1621,'dark-blue-slim-fit-jeans-blue-large-size'),(25352,132,0,1621,'0'),(25353,133,0,1621,'/i/m/image_31265248_31_970x1182_3_1_2_1.jpg'),(25358,73,0,1622,'Dark Blue Slim Fit Jeans-blue-Extra large size'),(25359,84,0,1622,'Dark Blue Slim Fit Jeans'),(25360,86,0,1622,'Dark Blue Slim Fit Jeans Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.\r\nManufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″),'),(25361,87,0,1622,'/i/m/image_31265248_31_970x1182_3_1_3.jpg'),(25362,88,0,1622,'/i/m/image_31265248_31_970x1182_3_1_3.jpg'),(25363,89,0,1622,'/i/m/image_31265248_31_970x1182_3_1_3.jpg'),(25364,106,0,1622,'container2'),(25365,121,0,1622,'dark-blue-slim-fit-jeans-blue-extra-large-size'),(25366,132,0,1622,'0'),(25367,133,0,1622,'/i/m/image_31265248_31_970x1182_3_1_3.jpg'),(25372,73,0,1623,'Dark Blue Slim Fit Jeans-blue-Small size'),(25373,84,0,1623,'Dark Blue Slim Fit Jeans'),(25374,86,0,1623,'Dark Blue Slim Fit Jeans Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.\r\nManufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″),'),(25375,87,0,1623,'/i/m/image_31265248_31_970x1182_3_1_4.jpg'),(25376,88,0,1623,'/i/m/image_31265248_31_970x1182_3_1_4.jpg'),(25377,89,0,1623,'/i/m/image_31265248_31_970x1182_3_1_4.jpg'),(25378,106,0,1623,'container2'),(25379,121,0,1623,'dark-blue-slim-fit-jeans-blue-small-size'),(25380,132,0,1623,'0'),(25381,133,0,1623,'/i/m/image_31265248_31_970x1182_3_1_4.jpg'),(25386,73,0,1624,'Dark Blue Slim Fit Jeans-blue-Medium size'),(25387,84,0,1624,'Dark Blue Slim Fit Jeans'),(25388,86,0,1624,'Dark Blue Slim Fit Jeans Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.\r\nManufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″),'),(25389,87,0,1624,'/i/m/image_31265248_31_970x1182_3_1_5.jpg'),(25390,88,0,1624,'/i/m/image_31265248_31_970x1182_3_1_5.jpg'),(25391,89,0,1624,'/i/m/image_31265248_31_970x1182_3_1_5.jpg'),(25392,106,0,1624,'container2'),(25393,121,0,1624,'dark-blue-slim-fit-jeans-blue-medium-size'),(25394,132,0,1624,'0'),(25395,133,0,1624,'/i/m/image_31265248_31_970x1182_3_1_5.jpg'),(25400,73,0,1625,'Dark Blue Slim Fit Jeans-black-Extra small size'),(25401,84,0,1625,'Dark Blue Slim Fit Jeans'),(25402,86,0,1625,'Dark Blue Slim Fit Jeans Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.\r\nManufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″),'),(25403,87,0,1625,'/4/5/4545t666_5.jpg'),(25404,88,0,1625,'/4/5/4545t666_5.jpg'),(25405,89,0,1625,'/4/5/4545t666_5.jpg'),(25406,106,0,1625,'container2'),(25407,121,0,1625,'dark-blue-slim-fit-jeans-black-extra-small-size'),(25408,132,0,1625,'0'),(25409,133,0,1625,'/4/5/4545t666_5.jpg'),(25414,73,0,1626,'Dark Blue Slim Fit Jeans-black-Large size'),(25415,84,0,1626,'Dark Blue Slim Fit Jeans'),(25416,86,0,1626,'Dark Blue Slim Fit Jeans Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.\r\nManufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″),'),(25417,87,0,1626,'/4/5/4545t666_1_1.jpg'),(25418,88,0,1626,'/4/5/4545t666_1_1.jpg'),(25419,89,0,1626,'/4/5/4545t666_1_1.jpg'),(25420,106,0,1626,'container2'),(25421,121,0,1626,'dark-blue-slim-fit-jeans-black-large-size'),(25422,132,0,1626,'0'),(25423,133,0,1626,'/4/5/4545t666_1_1.jpg'),(25428,73,0,1627,'Dark Blue Slim Fit Jeans-black-Extra large size'),(25429,84,0,1627,'Dark Blue Slim Fit Jeans'),(25430,86,0,1627,'Dark Blue Slim Fit Jeans Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.\r\nManufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″),'),(25431,87,0,1627,'/4/5/4545t666_2_1.jpg'),(25432,88,0,1627,'/4/5/4545t666_2_1.jpg'),(25433,89,0,1627,'/4/5/4545t666_2_1.jpg'),(25434,106,0,1627,'container2'),(25435,121,0,1627,'dark-blue-slim-fit-jeans-black-extra-large-size'),(25436,132,0,1627,'0'),(25437,133,0,1627,'/4/5/4545t666_2_1.jpg'),(25442,73,0,1628,'Dark Blue Slim Fit Jeans-black-Small size'),(25443,84,0,1628,'Dark Blue Slim Fit Jeans'),(25444,86,0,1628,'Dark Blue Slim Fit Jeans Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.\r\nManufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″),'),(25445,87,0,1628,'/4/5/4545t666_3_1.jpg'),(25446,88,0,1628,'/4/5/4545t666_3_1.jpg'),(25447,89,0,1628,'/4/5/4545t666_3_1.jpg'),(25448,106,0,1628,'container2'),(25449,121,0,1628,'dark-blue-slim-fit-jeans-black-small-size'),(25450,132,0,1628,'0'),(25451,133,0,1628,'/4/5/4545t666_3_1.jpg'),(25456,73,0,1629,'Dark Blue Slim Fit Jeans-black-Medium size'),(25457,84,0,1629,'Dark Blue Slim Fit Jeans'),(25458,86,0,1629,'Dark Blue Slim Fit Jeans Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.\r\nManufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″),'),(25459,87,0,1629,'/4/5/4545t666_4_1.jpg'),(25460,88,0,1629,'/4/5/4545t666_4_1.jpg'),(25461,89,0,1629,'/4/5/4545t666_4_1.jpg'),(25462,106,0,1629,'container2'),(25463,121,0,1629,'dark-blue-slim-fit-jeans-black-medium-size'),(25464,132,0,1629,'0'),(25465,133,0,1629,'/4/5/4545t666_4_1.jpg'),(25470,73,0,1630,'Dark Blue Slim Fit Jeans'),(25471,84,0,1630,'Dark Blue Slim Fit Jeans'),(25472,86,0,1630,'Dark Blue Slim Fit Jeans Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material.\r\nManufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″),'),(25473,87,0,1630,'/i/m/image_31265248_31_970x1182_0_1_1_1.jpg'),(25474,88,0,1630,'/i/m/image_31265248_31_970x1182_0_1_1_1.jpg'),(25475,89,0,1630,'/i/m/image_31265248_31_970x1182_0_1_1_1.jpg'),(25476,106,0,1630,'container2'),(25477,121,0,1630,'n-dark-blue-slim-fit-jeans'),(25478,132,0,1630,'2'),(25479,133,0,1630,'no_selection'),(25488,73,0,1631,'Ugg Freamon Wp-black-EU 42'),(25489,84,0,1631,'Ugg Freamon Wp'),(25490,86,0,1631,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddl'),(25491,87,0,1631,'/b/1/b1_8.jpg'),(25492,88,0,1631,'/b/1/b1_8.jpg'),(25493,89,0,1631,'/b/1/b1_8.jpg'),(25494,106,0,1631,'container2'),(25495,121,0,1631,'n-ugg-freamon-wp-black-eu-42'),(25496,132,0,1631,'0'),(25497,133,0,1631,'/b/1/b1_8.jpg'),(25498,206,0,1631,'leather'),(25503,73,0,1632,'Ugg Freamon Wp-black-EU 43'),(25504,84,0,1632,'Ugg Freamon Wp'),(25505,86,0,1632,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddl'),(25506,87,0,1632,'/b/1/b1_8_1.jpg'),(25507,88,0,1632,'/b/1/b1_8_1.jpg'),(25508,89,0,1632,'/b/1/b1_8_1.jpg'),(25509,106,0,1632,'container2'),(25510,121,0,1632,'n-ugg-freamon-wp-black-eu-43'),(25511,132,0,1632,'0'),(25512,133,0,1632,'/b/1/b1_8_1.jpg'),(25513,206,0,1632,'leather'),(25518,73,0,1633,'Ugg Freamon Wp-black-EU 44'),(25519,84,0,1633,'Ugg Freamon Wp'),(25520,86,0,1633,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddl'),(25521,87,0,1633,'/b/1/b1_8_2.jpg'),(25522,88,0,1633,'/b/1/b1_8_2.jpg'),(25523,89,0,1633,'/b/1/b1_8_2.jpg'),(25524,106,0,1633,'container2'),(25525,121,0,1633,'n-ugg-freamon-wp-black-eu-44'),(25526,132,0,1633,'0'),(25527,133,0,1633,'/b/1/b1_8_2.jpg'),(25528,206,0,1633,'leather'),(25533,73,0,1634,'Ugg Freamon Wp-red-EU 42'),(25534,84,0,1634,'Ugg Freamon Wp'),(25535,86,0,1634,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddl'),(25536,87,0,1634,'/r/1/r1_5.jpg'),(25537,88,0,1634,'/r/1/r1_5.jpg'),(25538,89,0,1634,'/r/1/r1_5.jpg'),(25539,106,0,1634,'container2'),(25540,121,0,1634,'n-ugg-freamon-wp-red-eu-42'),(25541,132,0,1634,'0'),(25542,133,0,1634,'/r/1/r1_5.jpg'),(25543,206,0,1634,'leather'),(25548,73,0,1635,'Ugg Freamon Wp-red-EU 43'),(25549,84,0,1635,'Ugg Freamon Wp'),(25550,86,0,1635,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddl'),(25551,87,0,1635,'/r/1/r1_5_1.jpg'),(25552,88,0,1635,'/r/1/r1_5_1.jpg'),(25553,89,0,1635,'/r/1/r1_5_1.jpg'),(25554,106,0,1635,'container2'),(25555,121,0,1635,'n-ugg-freamon-wp-red-eu-43'),(25556,132,0,1635,'0'),(25557,133,0,1635,'/r/1/r1_5_1.jpg'),(25558,206,0,1635,'leather'),(25563,73,0,1636,'Ugg Freamon Wp-red-EU 44'),(25564,84,0,1636,'Ugg Freamon Wp'),(25565,86,0,1636,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddl'),(25566,87,0,1636,'/r/1/r1_5_2.jpg'),(25567,88,0,1636,'/r/1/r1_5_2.jpg'),(25568,89,0,1636,'/r/1/r1_5_2.jpg'),(25569,106,0,1636,'container2'),(25570,121,0,1636,'n-ugg-freamon-wp-red-eu-44'),(25571,132,0,1636,'0'),(25572,133,0,1636,'/r/1/r1_5_2.jpg'),(25573,206,0,1636,'leather'),(25578,73,0,1637,'Ugg Freamon Wp-blue-EU 42'),(25579,84,0,1637,'Ugg Freamon Wp'),(25580,86,0,1637,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddl'),(25581,87,0,1637,'/1/_/1_6.jpg'),(25582,88,0,1637,'/1/_/1_6.jpg'),(25583,89,0,1637,'/1/_/1_6.jpg'),(25584,106,0,1637,'container2'),(25585,121,0,1637,'n-ugg-freamon-wp-blue-eu-42'),(25586,132,0,1637,'0'),(25587,133,0,1637,'/1/_/1_6.jpg'),(25588,206,0,1637,'leather'),(25593,73,0,1638,'Ugg Freamon Wp-blue-EU 43'),(25594,84,0,1638,'Ugg Freamon Wp'),(25595,86,0,1638,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddl'),(25596,87,0,1638,'/1/_/1_6_1.jpg'),(25597,88,0,1638,'/1/_/1_6_1.jpg'),(25598,89,0,1638,'/1/_/1_6_1.jpg'),(25599,106,0,1638,'container2'),(25600,121,0,1638,'n-ugg-freamon-wp-blue-eu-43'),(25601,132,0,1638,'0'),(25602,133,0,1638,'/1/_/1_6_1.jpg'),(25603,206,0,1638,'leather'),(25608,73,0,1639,'Ugg Freamon Wp-blue-EU 44'),(25609,84,0,1639,'Ugg Freamon Wp'),(25610,86,0,1639,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddl'),(25611,87,0,1639,'/1/_/1_6_2.jpg'),(25612,88,0,1639,'/1/_/1_6_2.jpg'),(25613,89,0,1639,'/1/_/1_6_2.jpg'),(25614,106,0,1639,'container2'),(25615,121,0,1639,'n-ugg-freamon-wp-blue-eu-44'),(25616,132,0,1639,'0'),(25617,133,0,1639,'/1/_/1_6_2.jpg'),(25618,206,0,1639,'leather'),(25623,73,0,1640,'Ugg Freamon Wp-white-EU 42'),(25624,84,0,1640,'Ugg Freamon Wp'),(25625,86,0,1640,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddl'),(25626,87,0,1640,'/w/1/w1_4_3.jpg'),(25627,88,0,1640,'/w/1/w1_4_3.jpg'),(25628,89,0,1640,'/w/1/w1_4_3.jpg'),(25629,106,0,1640,'container2'),(25630,121,0,1640,'n-ugg-freamon-wp-white-eu-42'),(25631,132,0,1640,'0'),(25632,133,0,1640,'/w/1/w1_4_3.jpg'),(25633,206,0,1640,'leather'),(25638,73,0,1641,'Ugg Freamon Wp-white-EU 43'),(25639,84,0,1641,'Ugg Freamon Wp'),(25640,86,0,1641,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddl'),(25641,87,0,1641,'/w/1/w1_4_1_1.jpg'),(25642,88,0,1641,'/w/1/w1_4_1_1.jpg'),(25643,89,0,1641,'/w/1/w1_4_1_1.jpg'),(25644,106,0,1641,'container2'),(25645,121,0,1641,'n-ugg-freamon-wp-white-eu-43'),(25646,132,0,1641,'0'),(25647,133,0,1641,'/w/1/w1_4_1_1.jpg'),(25648,206,0,1641,'leather'),(25653,73,0,1642,'Ugg Freamon Wp-white-EU 44'),(25654,84,0,1642,'Ugg Freamon Wp'),(25655,86,0,1642,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddl'),(25656,87,0,1642,'/w/1/w1_4_2_1.jpg'),(25657,88,0,1642,'/w/1/w1_4_2_1.jpg'),(25658,89,0,1642,'/w/1/w1_4_2_1.jpg'),(25659,106,0,1642,'container2'),(25660,121,0,1642,'n-ugg-freamon-wp-white-eu-44'),(25661,132,0,1642,'0'),(25662,133,0,1642,'/w/1/w1_4_2_1.jpg'),(25663,206,0,1642,'leather'),(25668,73,0,1643,'Ugg Freamon Wp'),(25669,84,0,1643,'Ugg Freamon Wp'),(25670,86,0,1643,'Ugg Freamon Wp The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddl'),(25671,87,0,1643,'/1/1/11.jpg'),(25672,88,0,1643,'/1/1/11.jpg'),(25673,89,0,1643,'/1/1/11.jpg'),(25674,106,0,1643,'container2'),(25675,121,0,1643,'n-ugg-freamon-wp'),(25676,132,0,1643,'2'),(25677,133,0,1643,'/1/1/11.jpg'),(25678,206,0,1643,'leather'),(25683,73,0,1644,'Cipo & Baxx Jacket-white-Small size'),(25684,84,0,1644,'Cipo & Baxx Jacket'),(25685,86,0,1644,'Cipo & Baxx Jacket Puffer jacket featuring side zip pockets and a zip-up front.\r\nCut: straight, ribbed waistband\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″)\r\nCollar: hood with drawstring\r\nFastening: continuous zip fa'),(25686,87,0,1644,'/i/m/image_30988045_20_970x1182_0_1_1_2.jpg'),(25687,88,0,1644,'/i/m/image_30988045_20_970x1182_0_1_1_2.jpg'),(25688,89,0,1644,'/i/m/image_30988045_20_970x1182_0_1_1_2.jpg'),(25689,106,0,1644,'container2'),(25690,121,0,1644,'cipo-baxx-jacket-white-small-size'),(25691,132,0,1644,'0'),(25692,133,0,1644,'/i/m/image_30988045_20_970x1182_0_1_1_2.jpg'),(25697,73,0,1645,'Cipo & Baxx Jacket-white-Medium size'),(25698,84,0,1645,'Cipo & Baxx Jacket'),(25699,86,0,1645,'Cipo & Baxx Jacket Puffer jacket featuring side zip pockets and a zip-up front.\r\nCut: straight, ribbed waistband\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″)\r\nCollar: hood with drawstring\r\nFastening: continuous zip fa'),(25700,87,0,1645,'/i/m/image_30988045_20_970x1182_0_1_1_2_1.jpg'),(25701,88,0,1645,'/i/m/image_30988045_20_970x1182_0_1_1_2_1.jpg'),(25702,89,0,1645,'/i/m/image_30988045_20_970x1182_0_1_1_2_1.jpg'),(25703,106,0,1645,'container2'),(25704,121,0,1645,'cipo-baxx-jacket-white-medium-size'),(25705,132,0,1645,'0'),(25706,133,0,1645,'/i/m/image_30988045_20_970x1182_0_1_1_2_1.jpg'),(25711,73,0,1646,'Cipo & Baxx Jacket-white-Extra large size'),(25712,84,0,1646,'Cipo & Baxx Jacket'),(25713,86,0,1646,'Cipo & Baxx Jacket Puffer jacket featuring side zip pockets and a zip-up front.\r\nCut: straight, ribbed waistband\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″)\r\nCollar: hood with drawstring\r\nFastening: continuous zip fa'),(25714,87,0,1646,'/i/m/image_30988045_20_970x1182_0_1_1_3.jpg'),(25715,88,0,1646,'/i/m/image_30988045_20_970x1182_0_1_1_3.jpg'),(25716,89,0,1646,'/i/m/image_30988045_20_970x1182_0_1_1_3.jpg'),(25717,106,0,1646,'container2'),(25718,121,0,1646,'cipo-baxx-jacket-white-extra-large-size'),(25719,132,0,1646,'0'),(25720,133,0,1646,'/i/m/image_30988045_20_970x1182_0_1_1_3.jpg'),(25725,73,0,1647,'Cipo & Baxx Jacket-white-Large size'),(25726,84,0,1647,'Cipo & Baxx Jacket'),(25727,86,0,1647,'Cipo & Baxx Jacket Puffer jacket featuring side zip pockets and a zip-up front.\r\nCut: straight, ribbed waistband\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″)\r\nCollar: hood with drawstring\r\nFastening: continuous zip fa'),(25728,87,0,1647,'/i/m/image_30988045_20_970x1182_0_1_1_4.jpg'),(25729,88,0,1647,'/i/m/image_30988045_20_970x1182_0_1_1_4.jpg'),(25730,89,0,1647,'/i/m/image_30988045_20_970x1182_0_1_1_4.jpg'),(25731,106,0,1647,'container2'),(25732,121,0,1647,'cipo-baxx-jacket-white-large-size'),(25733,132,0,1647,'0'),(25734,133,0,1647,'/i/m/image_30988045_20_970x1182_0_1_1_4.jpg'),(25739,73,0,1648,'Cipo & Baxx Jacket-grey-Small size'),(25740,84,0,1648,'Cipo & Baxx Jacket'),(25741,86,0,1648,'Cipo & Baxx Jacket Puffer jacket featuring side zip pockets and a zip-up front.\r\nCut: straight, ribbed waistband\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″)\r\nCollar: hood with drawstring\r\nFastening: continuous zip fa'),(25742,87,0,1648,'/4/3/43r3e3e3e_4_1.jpg'),(25743,88,0,1648,'/4/3/43r3e3e3e_4_1.jpg'),(25744,89,0,1648,'/4/3/43r3e3e3e_4_1.jpg'),(25745,106,0,1648,'container2'),(25746,121,0,1648,'cipo-baxx-jacket-grey-small-size'),(25747,132,0,1648,'0'),(25748,133,0,1648,'/4/3/43r3e3e3e_4_1.jpg'),(25753,73,0,1649,'Cipo & Baxx Jacket-grey-Medium size'),(25754,84,0,1649,'Cipo & Baxx Jacket'),(25755,86,0,1649,'Cipo & Baxx Jacket Puffer jacket featuring side zip pockets and a zip-up front.\r\nCut: straight, ribbed waistband\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″)\r\nCollar: hood with drawstring\r\nFastening: continuous zip fa'),(25756,87,0,1649,'/4/3/43r3e3e3e_4_1_1.jpg'),(25757,88,0,1649,'/4/3/43r3e3e3e_4_1_1.jpg'),(25758,89,0,1649,'/4/3/43r3e3e3e_4_1_1.jpg'),(25759,106,0,1649,'container2'),(25760,121,0,1649,'cipo-baxx-jacket-grey-medium-size'),(25761,132,0,1649,'0'),(25762,133,0,1649,'/4/3/43r3e3e3e_4_1_1.jpg'),(25767,73,0,1650,'Cipo & Baxx Jacket-grey-Extra large size'),(25768,84,0,1650,'Cipo & Baxx Jacket'),(25769,86,0,1650,'Cipo & Baxx Jacket Puffer jacket featuring side zip pockets and a zip-up front.\r\nCut: straight, ribbed waistband\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″)\r\nCollar: hood with drawstring\r\nFastening: continuous zip fa'),(25770,87,0,1650,'/4/3/43r3e3e3e_4_2.jpg'),(25771,88,0,1650,'/4/3/43r3e3e3e_4_2.jpg'),(25772,89,0,1650,'/4/3/43r3e3e3e_4_2.jpg'),(25773,106,0,1650,'container2'),(25774,121,0,1650,'cipo-baxx-jacket-grey-extra-large-size'),(25775,132,0,1650,'0'),(25776,133,0,1650,'/4/3/43r3e3e3e_4_2.jpg'),(25781,73,0,1651,'Cipo & Baxx Jacket-grey-Large size'),(25782,84,0,1651,'Cipo & Baxx Jacket'),(25783,86,0,1651,'Cipo & Baxx Jacket Puffer jacket featuring side zip pockets and a zip-up front.\r\nCut: straight, ribbed waistband\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″)\r\nCollar: hood with drawstring\r\nFastening: continuous zip fa'),(25784,87,0,1651,'/4/3/43r3e3e3e_4_3.jpg'),(25785,88,0,1651,'/4/3/43r3e3e3e_4_3.jpg'),(25786,89,0,1651,'/4/3/43r3e3e3e_4_3.jpg'),(25787,106,0,1651,'container2'),(25788,121,0,1651,'cipo-baxx-jacket-grey-large-size'),(25789,132,0,1651,'0'),(25790,133,0,1651,'/4/3/43r3e3e3e_4_3.jpg'),(25795,73,0,1652,'Cipo & Baxx Jacket-blue-Small size'),(25796,84,0,1652,'Cipo & Baxx Jacket'),(25797,86,0,1652,'Cipo & Baxx Jacket Puffer jacket featuring side zip pockets and a zip-up front.\r\nCut: straight, ribbed waistband\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″)\r\nCollar: hood with drawstring\r\nFastening: continuous zip fa'),(25798,87,0,1652,'/6/5/6565g5g5g5g_4_1.jpg'),(25799,88,0,1652,'/6/5/6565g5g5g5g_4_1.jpg'),(25800,89,0,1652,'/6/5/6565g5g5g5g_4_1.jpg'),(25801,106,0,1652,'container2'),(25802,121,0,1652,'cipo-baxx-jacket-blue-small-size'),(25803,132,0,1652,'0'),(25804,133,0,1652,'/6/5/6565g5g5g5g_4_1.jpg'),(25809,73,0,1653,'Cipo & Baxx Jacket-blue-Medium size'),(25810,84,0,1653,'Cipo & Baxx Jacket'),(25811,86,0,1653,'Cipo & Baxx Jacket Puffer jacket featuring side zip pockets and a zip-up front.\r\nCut: straight, ribbed waistband\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″)\r\nCollar: hood with drawstring\r\nFastening: continuous zip fa'),(25812,87,0,1653,'/6/5/6565g5g5g5g_4_1_1.jpg'),(25813,88,0,1653,'/6/5/6565g5g5g5g_4_1_1.jpg'),(25814,89,0,1653,'/6/5/6565g5g5g5g_4_1_1.jpg'),(25815,106,0,1653,'container2'),(25816,121,0,1653,'cipo-baxx-jacket-blue-medium-size'),(25817,132,0,1653,'0'),(25818,133,0,1653,'/6/5/6565g5g5g5g_4_1_1.jpg'),(25823,73,0,1654,'Cipo & Baxx Jacket-blue-Extra large size'),(25824,84,0,1654,'Cipo & Baxx Jacket'),(25825,86,0,1654,'Cipo & Baxx Jacket Puffer jacket featuring side zip pockets and a zip-up front.\r\nCut: straight, ribbed waistband\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″)\r\nCollar: hood with drawstring\r\nFastening: continuous zip fa'),(25826,87,0,1654,'/6/5/6565g5g5g5g_4_2.jpg'),(25827,88,0,1654,'/6/5/6565g5g5g5g_4_2.jpg'),(25828,89,0,1654,'/6/5/6565g5g5g5g_4_2.jpg'),(25829,106,0,1654,'container2'),(25830,121,0,1654,'cipo-baxx-jacket-blue-extra-large-size'),(25831,132,0,1654,'0'),(25832,133,0,1654,'/6/5/6565g5g5g5g_4_2.jpg'),(25837,73,0,1655,'Cipo & Baxx Jacket-blue-Large size'),(25838,84,0,1655,'Cipo & Baxx Jacket'),(25839,86,0,1655,'Cipo & Baxx Jacket Puffer jacket featuring side zip pockets and a zip-up front.\r\nCut: straight, ribbed waistband\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″)\r\nCollar: hood with drawstring\r\nFastening: continuous zip fa'),(25840,87,0,1655,'/6/5/6565g5g5g5g_4_3.jpg'),(25841,88,0,1655,'/6/5/6565g5g5g5g_4_3.jpg'),(25842,89,0,1655,'/6/5/6565g5g5g5g_4_3.jpg'),(25843,106,0,1655,'container2'),(25844,121,0,1655,'cipo-baxx-jacket-blue-large-size'),(25845,132,0,1655,'0'),(25846,133,0,1655,'/6/5/6565g5g5g5g_4_3.jpg'),(25851,73,0,1656,'Cipo & Baxx Jacket'),(25852,84,0,1656,'Cipo & Baxx Jacket'),(25853,86,0,1656,'Cipo & Baxx Jacket Puffer jacket featuring side zip pockets and a zip-up front.\r\nCut: straight, ribbed waistband\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″)\r\nCollar: hood with drawstring\r\nFastening: continuous zip fa'),(25854,87,0,1656,'/i/m/image_30988045_20_970x1182_0_1_1_1_1.jpg'),(25855,88,0,1656,'/i/m/image_30988045_20_970x1182_0_1_1_1_1.jpg'),(25856,89,0,1656,'/i/m/image_30988045_20_970x1182_0_1_1_1_1.jpg'),(25857,106,0,1656,'container2'),(25858,121,0,1656,'n-seventy-transitional-jacket-11'),(25859,132,0,1656,'2'),(25860,133,0,1656,'no_selection'),(25865,73,0,1657,'Black Knitted Pants-Large size-brown'),(25866,84,0,1657,'Black Knitted Pants'),(25867,86,0,1657,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(25868,87,0,1657,'/b/1/b1_9.jpg'),(25869,88,0,1657,'/b/1/b1_9.jpg'),(25870,89,0,1657,'/b/1/b1_9.jpg'),(25871,106,0,1657,'container2'),(25872,121,0,1657,'n-black-knitted-pants-large-size-brown'),(25873,132,0,1657,'0'),(25874,133,0,1657,'/b/1/b1_9.jpg'),(25875,206,0,1657,'60% cotton, 25% polyamide, 15% wool'),(25880,73,0,1658,'Black Knitted Pants-Large size-grey'),(25881,84,0,1658,'Black Knitted Pants'),(25882,86,0,1658,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(25883,87,0,1658,'/g/1/g1_3_1.jpg'),(25884,88,0,1658,'/g/1/g1_3_1.jpg'),(25885,89,0,1658,'/g/1/g1_3_1.jpg'),(25886,106,0,1658,'container2'),(25887,121,0,1658,'n-black-knitted-pants-large-size-grey'),(25888,132,0,1658,'0'),(25889,133,0,1658,'/g/1/g1_3_1.jpg'),(25890,206,0,1658,'60% cotton, 25% polyamide, 15% wool'),(25895,73,0,1659,'Black Knitted Pants-Large size-white'),(25896,84,0,1659,'Black Knitted Pants'),(25897,86,0,1659,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(25898,87,0,1659,'/w/1/w1_5_3.jpg'),(25899,88,0,1659,'/w/1/w1_5_3.jpg'),(25900,89,0,1659,'/w/1/w1_5_3.jpg'),(25901,106,0,1659,'container2'),(25902,121,0,1659,'n-black-knitted-pants-large-size-white'),(25903,132,0,1659,'0'),(25904,133,0,1659,'/w/1/w1_5_3.jpg'),(25905,206,0,1659,'60% cotton, 25% polyamide, 15% wool'),(25910,73,0,1660,'Black Knitted Pants-Large size-blue'),(25911,84,0,1660,'Black Knitted Pants'),(25912,86,0,1660,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(25913,87,0,1660,'/1/_/1_7.jpg'),(25914,88,0,1660,'/1/_/1_7.jpg'),(25915,89,0,1660,'/1/_/1_7.jpg'),(25916,106,0,1660,'container2'),(25917,121,0,1660,'n-black-knitted-pants-large-size-blue'),(25918,132,0,1660,'0'),(25919,133,0,1660,'/1/_/1_7.jpg'),(25920,206,0,1660,'60% cotton, 25% polyamide, 15% wool'),(25925,73,0,1661,'Black Knitted Pants-Large size-red'),(25926,84,0,1661,'Black Knitted Pants'),(25927,86,0,1661,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(25928,87,0,1661,'/r/1/r1_copy_.jpg'),(25929,88,0,1661,'/r/1/r1_copy_.jpg'),(25930,89,0,1661,'/r/1/r1_copy_.jpg'),(25931,106,0,1661,'container2'),(25932,121,0,1661,'n-black-knitted-pants-large-size-red'),(25933,132,0,1661,'0'),(25934,133,0,1661,'/r/1/r1_copy_.jpg'),(25935,206,0,1661,'60% cotton, 25% polyamide, 15% wool'),(25940,73,0,1662,'Black Knitted Pants-Extra large size-brown'),(25941,84,0,1662,'Black Knitted Pants'),(25942,86,0,1662,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(25943,87,0,1662,'/b/1/b1_9_1.jpg'),(25944,88,0,1662,'/b/1/b1_9_1.jpg'),(25945,89,0,1662,'/b/1/b1_9_1.jpg'),(25946,106,0,1662,'container2'),(25947,121,0,1662,'n-black-knitted-pants-extra-large-size-brown'),(25948,132,0,1662,'0'),(25949,133,0,1662,'/b/1/b1_9_1.jpg'),(25950,206,0,1662,'60% cotton, 25% polyamide, 15% wool'),(25955,73,0,1663,'Black Knitted Pants-Extra large size-grey'),(25956,84,0,1663,'Black Knitted Pants'),(25957,86,0,1663,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(25958,87,0,1663,'/g/1/g1_3_1_1.jpg'),(25959,88,0,1663,'/g/1/g1_3_1_1.jpg'),(25960,89,0,1663,'/g/1/g1_3_1_1.jpg'),(25961,106,0,1663,'container2'),(25962,121,0,1663,'n-black-knitted-pants-extra-large-size-grey'),(25963,132,0,1663,'0'),(25964,133,0,1663,'/g/1/g1_3_1_1.jpg'),(25965,206,0,1663,'60% cotton, 25% polyamide, 15% wool'),(25970,73,0,1664,'Black Knitted Pants-Extra large size-white'),(25971,84,0,1664,'Black Knitted Pants'),(25972,86,0,1664,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(25973,87,0,1664,'/w/1/w1_5_1_1.jpg'),(25974,88,0,1664,'/w/1/w1_5_1_1.jpg'),(25975,89,0,1664,'/w/1/w1_5_1_1.jpg'),(25976,106,0,1664,'container2'),(25977,121,0,1664,'n-black-knitted-pants-extra-large-size-white'),(25978,132,0,1664,'0'),(25979,133,0,1664,'/w/1/w1_5_1_1.jpg'),(25980,206,0,1664,'60% cotton, 25% polyamide, 15% wool'),(25985,73,0,1665,'Black Knitted Pants-Extra large size-blue'),(25986,84,0,1665,'Black Knitted Pants'),(25987,86,0,1665,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(25988,87,0,1665,'/1/_/1_7_1.jpg'),(25989,88,0,1665,'/1/_/1_7_1.jpg'),(25990,89,0,1665,'/1/_/1_7_1.jpg'),(25991,106,0,1665,'container2'),(25992,121,0,1665,'n-black-knitted-pants-extra-large-size-blue'),(25993,132,0,1665,'0'),(25994,133,0,1665,'/1/_/1_7_1.jpg'),(25995,206,0,1665,'60% cotton, 25% polyamide, 15% wool'),(26000,73,0,1666,'Black Knitted Pants-Extra large size-red'),(26001,84,0,1666,'Black Knitted Pants'),(26002,86,0,1666,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(26003,87,0,1666,'/r/1/r1_copy__1.jpg'),(26004,88,0,1666,'/r/1/r1_copy__1.jpg'),(26005,89,0,1666,'/r/1/r1_copy__1.jpg'),(26006,106,0,1666,'container2'),(26007,121,0,1666,'n-black-knitted-pants-extra-large-size-red'),(26008,132,0,1666,'0'),(26009,133,0,1666,'/r/1/r1_copy__1.jpg'),(26010,206,0,1666,'60% cotton, 25% polyamide, 15% wool'),(26015,73,0,1667,'Black Knitted Pants-Small size-brown'),(26016,84,0,1667,'Black Knitted Pants'),(26017,86,0,1667,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(26018,87,0,1667,'/b/1/b1_9_2.jpg'),(26019,88,0,1667,'/b/1/b1_9_2.jpg'),(26020,89,0,1667,'/b/1/b1_9_2.jpg'),(26021,106,0,1667,'container2'),(26022,121,0,1667,'n-black-knitted-pants-small-size-brown'),(26023,132,0,1667,'0'),(26024,133,0,1667,'/b/1/b1_9_2.jpg'),(26025,206,0,1667,'60% cotton, 25% polyamide, 15% wool'),(26030,73,0,1668,'Black Knitted Pants-Small size-grey'),(26031,84,0,1668,'Black Knitted Pants'),(26032,86,0,1668,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(26033,87,0,1668,'/g/1/g1_3_2.jpg'),(26034,88,0,1668,'/g/1/g1_3_2.jpg'),(26035,89,0,1668,'/g/1/g1_3_2.jpg'),(26036,106,0,1668,'container2'),(26037,121,0,1668,'n-black-knitted-pants-small-size-grey'),(26038,132,0,1668,'0'),(26039,133,0,1668,'/g/1/g1_3_2.jpg'),(26040,206,0,1668,'60% cotton, 25% polyamide, 15% wool'),(26045,73,0,1669,'Black Knitted Pants-Small size-white'),(26046,84,0,1669,'Black Knitted Pants'),(26047,86,0,1669,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(26048,87,0,1669,'/w/1/w1_5_2_1.jpg'),(26049,88,0,1669,'/w/1/w1_5_2_1.jpg'),(26050,89,0,1669,'/w/1/w1_5_2_1.jpg'),(26051,106,0,1669,'container2'),(26052,121,0,1669,'n-black-knitted-pants-small-size-white'),(26053,132,0,1669,'0'),(26054,133,0,1669,'/w/1/w1_5_2_1.jpg'),(26055,206,0,1669,'60% cotton, 25% polyamide, 15% wool'),(26060,73,0,1670,'Black Knitted Pants-Small size-blue'),(26061,84,0,1670,'Black Knitted Pants'),(26062,86,0,1670,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(26063,87,0,1670,'/1/_/1_7_2.jpg'),(26064,88,0,1670,'/1/_/1_7_2.jpg'),(26065,89,0,1670,'/1/_/1_7_2.jpg'),(26066,106,0,1670,'container2'),(26067,121,0,1670,'n-black-knitted-pants-small-size-blue'),(26068,132,0,1670,'0'),(26069,133,0,1670,'/1/_/1_7_2.jpg'),(26070,206,0,1670,'60% cotton, 25% polyamide, 15% wool'),(26075,73,0,1671,'Black Knitted Pants-Small size-red'),(26076,84,0,1671,'Black Knitted Pants'),(26077,86,0,1671,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(26078,87,0,1671,'/r/1/r1_copy__2.jpg'),(26079,88,0,1671,'/r/1/r1_copy__2.jpg'),(26080,89,0,1671,'/r/1/r1_copy__2.jpg'),(26081,106,0,1671,'container2'),(26082,121,0,1671,'n-black-knitted-pants-small-size-red'),(26083,132,0,1671,'0'),(26084,133,0,1671,'/r/1/r1_copy__2.jpg'),(26085,206,0,1671,'60% cotton, 25% polyamide, 15% wool'),(26090,73,0,1672,'Black Knitted Pants-Medium size-brown'),(26091,84,0,1672,'Black Knitted Pants'),(26092,86,0,1672,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(26093,87,0,1672,'/b/1/b1_9_3.jpg'),(26094,88,0,1672,'/b/1/b1_9_3.jpg'),(26095,89,0,1672,'/b/1/b1_9_3.jpg'),(26096,106,0,1672,'container2'),(26097,121,0,1672,'n-black-knitted-pants-medium-size-brown'),(26098,132,0,1672,'0'),(26099,133,0,1672,'/b/1/b1_9_3.jpg'),(26100,206,0,1672,'60% cotton, 25% polyamide, 15% wool'),(26105,73,0,1673,'Black Knitted Pants-Medium size-grey'),(26106,84,0,1673,'Black Knitted Pants'),(26107,86,0,1673,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(26108,87,0,1673,'/g/1/g1_3_3.jpg'),(26109,88,0,1673,'/g/1/g1_3_3.jpg'),(26110,89,0,1673,'/g/1/g1_3_3.jpg'),(26111,106,0,1673,'container2'),(26112,121,0,1673,'n-black-knitted-pants-medium-size-grey'),(26113,132,0,1673,'0'),(26114,133,0,1673,'/g/1/g1_3_3.jpg'),(26115,206,0,1673,'60% cotton, 25% polyamide, 15% wool'),(26120,73,0,1674,'Black Knitted Pants-Medium size-white'),(26121,84,0,1674,'Black Knitted Pants'),(26122,86,0,1674,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(26123,87,0,1674,'/w/1/w1_5_3_1.jpg'),(26124,88,0,1674,'/w/1/w1_5_3_1.jpg'),(26125,89,0,1674,'/w/1/w1_5_3_1.jpg'),(26126,106,0,1674,'container2'),(26127,121,0,1674,'n-black-knitted-pants-medium-size-white'),(26128,132,0,1674,'0'),(26129,133,0,1674,'/w/1/w1_5_3_1.jpg'),(26130,206,0,1674,'60% cotton, 25% polyamide, 15% wool'),(26135,73,0,1675,'Black Knitted Pants-Medium size-blue'),(26136,84,0,1675,'Black Knitted Pants'),(26137,86,0,1675,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(26138,87,0,1675,'/1/_/1_7_3.jpg'),(26139,88,0,1675,'/1/_/1_7_3.jpg'),(26140,89,0,1675,'/1/_/1_7_3.jpg'),(26141,106,0,1675,'container2'),(26142,121,0,1675,'n-black-knitted-pants-medium-size-blue'),(26143,132,0,1675,'0'),(26144,133,0,1675,'/1/_/1_7_3.jpg'),(26145,206,0,1675,'60% cotton, 25% polyamide, 15% wool'),(26150,73,0,1676,'Black Knitted Pants-Medium size-red'),(26151,84,0,1676,'Black Knitted Pants'),(26152,86,0,1676,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(26153,87,0,1676,'/r/1/r1_copy__3.jpg'),(26154,88,0,1676,'/r/1/r1_copy__3.jpg'),(26155,89,0,1676,'/r/1/r1_copy__3.jpg'),(26156,106,0,1676,'container2'),(26157,121,0,1676,'n-black-knitted-pants-medium-size-red'),(26158,132,0,1676,'0'),(26159,133,0,1676,'/r/1/r1_copy__3.jpg'),(26160,206,0,1676,'60% cotton, 25% polyamide, 15% wool'),(26165,73,0,1677,'Black Knitted Pants'),(26166,84,0,1677,'Black Knitted Pants'),(26167,86,0,1677,'Black Knitted Pants These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with po'),(26168,87,0,1677,'/1/1/111.jpg'),(26169,88,0,1677,'/1/1/111.jpg'),(26170,89,0,1677,'/1/1/111.jpg'),(26171,106,0,1677,'container2'),(26172,121,0,1677,'n-black-knitted-pants'),(26173,132,0,1677,'2'),(26174,133,0,1677,'/1/1/111.jpg'),(26175,206,0,1677,'60% cotton, 25% polyamide, 15% wool'),(26180,73,0,1678,'Camel Dress Trousers – Glenn-Large size-black'),(26181,84,0,1678,'Camel Dress Trousers – Glenn'),(26182,86,0,1678,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26183,87,0,1678,'/b/1/b1_10.jpg'),(26184,88,0,1678,'/b/1/b1_10.jpg'),(26185,89,0,1678,'/b/1/b1_10.jpg'),(26186,106,0,1678,'container2'),(26187,121,0,1678,'n-camel-dress-trousers-glenn-large-size-black'),(26188,132,0,1678,'0'),(26189,133,0,1678,'/b/1/b1_10.jpg'),(26190,206,0,1678,'98% cotton, 2% elastane'),(26195,73,0,1679,'Camel Dress Trousers – Glenn-Large size-red'),(26196,84,0,1679,'Camel Dress Trousers – Glenn'),(26197,86,0,1679,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26198,87,0,1679,'/r/1/r1_6.jpg'),(26199,88,0,1679,'/r/1/r1_6.jpg'),(26200,89,0,1679,'/r/1/r1_6.jpg'),(26201,106,0,1679,'container2'),(26202,121,0,1679,'n-camel-dress-trousers-glenn-large-size-red'),(26203,132,0,1679,'0'),(26204,133,0,1679,'/r/1/r1_6.jpg'),(26205,206,0,1679,'98% cotton, 2% elastane'),(26210,73,0,1680,'Camel Dress Trousers – Glenn-Large size-white'),(26211,84,0,1680,'Camel Dress Trousers – Glenn'),(26212,86,0,1680,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26213,87,0,1680,'/w/1/w1_6_1.jpg'),(26214,88,0,1680,'/w/1/w1_6_1.jpg'),(26215,89,0,1680,'/w/1/w1_6_1.jpg'),(26216,106,0,1680,'container2'),(26217,121,0,1680,'n-camel-dress-trousers-glenn-large-size-white'),(26218,132,0,1680,'0'),(26219,133,0,1680,'/w/1/w1_6_1.jpg'),(26220,206,0,1680,'98% cotton, 2% elastane'),(26225,73,0,1681,'Camel Dress Trousers – Glenn-Large size-blue'),(26226,84,0,1681,'Camel Dress Trousers – Glenn'),(26227,86,0,1681,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26228,87,0,1681,'/1/_/1_8.jpg'),(26229,88,0,1681,'/1/_/1_8.jpg'),(26230,89,0,1681,'/1/_/1_8.jpg'),(26231,106,0,1681,'container2'),(26232,121,0,1681,'n-camel-dress-trousers-glenn-large-size-blue'),(26233,132,0,1681,'0'),(26234,133,0,1681,'/1/_/1_8.jpg'),(26235,206,0,1681,'98% cotton, 2% elastane'),(26240,73,0,1682,'Camel Dress Trousers – Glenn-Large size-grey'),(26241,84,0,1682,'Camel Dress Trousers – Glenn'),(26242,86,0,1682,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26243,87,0,1682,'/g/1/g1_4_1.jpg'),(26244,88,0,1682,'/g/1/g1_4_1.jpg'),(26245,89,0,1682,'/g/1/g1_4_1.jpg'),(26246,106,0,1682,'container2'),(26247,121,0,1682,'n-camel-dress-trousers-glenn-large-size-grey'),(26248,132,0,1682,'0'),(26249,133,0,1682,'/g/1/g1_4_1.jpg'),(26250,206,0,1682,'98% cotton, 2% elastane'),(26255,73,0,1683,'Camel Dress Trousers – Glenn-Extra small size-black'),(26256,84,0,1683,'Camel Dress Trousers – Glenn'),(26257,86,0,1683,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26258,87,0,1683,'/b/1/b1_10_1.jpg'),(26259,88,0,1683,'/b/1/b1_10_1.jpg'),(26260,89,0,1683,'/b/1/b1_10_1.jpg'),(26261,106,0,1683,'container2'),(26262,121,0,1683,'n-camel-dress-trousers-glenn-extra-small-size-black'),(26263,132,0,1683,'0'),(26264,133,0,1683,'/b/1/b1_10_1.jpg'),(26265,206,0,1683,'98% cotton, 2% elastane'),(26270,73,0,1684,'Camel Dress Trousers – Glenn-Extra small size-red'),(26271,84,0,1684,'Camel Dress Trousers – Glenn'),(26272,86,0,1684,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26273,87,0,1684,'/r/1/r1_6_1.jpg'),(26274,88,0,1684,'/r/1/r1_6_1.jpg'),(26275,89,0,1684,'/r/1/r1_6_1.jpg'),(26276,106,0,1684,'container2'),(26277,121,0,1684,'n-camel-dress-trousers-glenn-extra-small-size-red'),(26278,132,0,1684,'0'),(26279,133,0,1684,'/r/1/r1_6_1.jpg'),(26280,206,0,1684,'98% cotton, 2% elastane'),(26285,73,0,1685,'Camel Dress Trousers – Glenn-Extra small size-white'),(26286,84,0,1685,'Camel Dress Trousers – Glenn'),(26287,86,0,1685,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26288,87,0,1685,'/w/1/w1_6_1_1.jpg'),(26289,88,0,1685,'/w/1/w1_6_1_1.jpg'),(26290,89,0,1685,'/w/1/w1_6_1_1.jpg'),(26291,106,0,1685,'container2'),(26292,121,0,1685,'n-camel-dress-trousers-glenn-extra-small-size-white'),(26293,132,0,1685,'0'),(26294,133,0,1685,'/w/1/w1_6_1_1.jpg'),(26295,206,0,1685,'98% cotton, 2% elastane'),(26300,73,0,1686,'Camel Dress Trousers – Glenn-Extra small size-blue'),(26301,84,0,1686,'Camel Dress Trousers – Glenn'),(26302,86,0,1686,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26303,87,0,1686,'/1/_/1_8_1.jpg'),(26304,88,0,1686,'/1/_/1_8_1.jpg'),(26305,89,0,1686,'/1/_/1_8_1.jpg'),(26306,106,0,1686,'container2'),(26307,121,0,1686,'n-camel-dress-trousers-glenn-extra-small-size-blue'),(26308,132,0,1686,'0'),(26309,133,0,1686,'/1/_/1_8_1.jpg'),(26310,206,0,1686,'98% cotton, 2% elastane'),(26315,73,0,1687,'Camel Dress Trousers – Glenn-Extra small size-grey'),(26316,84,0,1687,'Camel Dress Trousers – Glenn'),(26317,86,0,1687,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26318,87,0,1687,'/g/1/g1_4_1_1.jpg'),(26319,88,0,1687,'/g/1/g1_4_1_1.jpg'),(26320,89,0,1687,'/g/1/g1_4_1_1.jpg'),(26321,106,0,1687,'container2'),(26322,121,0,1687,'n-camel-dress-trousers-glenn-extra-small-size-grey'),(26323,132,0,1687,'0'),(26324,133,0,1687,'/g/1/g1_4_1_1.jpg'),(26325,206,0,1687,'98% cotton, 2% elastane'),(26330,73,0,1688,'Camel Dress Trousers – Glenn-Small size-black'),(26331,84,0,1688,'Camel Dress Trousers – Glenn'),(26332,86,0,1688,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26333,87,0,1688,'/b/1/b1_10_2.jpg'),(26334,88,0,1688,'/b/1/b1_10_2.jpg'),(26335,89,0,1688,'/b/1/b1_10_2.jpg'),(26336,106,0,1688,'container2'),(26337,121,0,1688,'n-camel-dress-trousers-glenn-small-size-black'),(26338,132,0,1688,'0'),(26339,133,0,1688,'/b/1/b1_10_2.jpg'),(26340,206,0,1688,'98% cotton, 2% elastane'),(26345,73,0,1689,'Camel Dress Trousers – Glenn-Small size-red'),(26346,84,0,1689,'Camel Dress Trousers – Glenn'),(26347,86,0,1689,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26348,87,0,1689,'/r/1/r1_6_2.jpg'),(26349,88,0,1689,'/r/1/r1_6_2.jpg'),(26350,89,0,1689,'/r/1/r1_6_2.jpg'),(26351,106,0,1689,'container2'),(26352,121,0,1689,'n-camel-dress-trousers-glenn-small-size-red'),(26353,132,0,1689,'0'),(26354,133,0,1689,'/r/1/r1_6_2.jpg'),(26355,206,0,1689,'98% cotton, 2% elastane'),(26360,73,0,1690,'Camel Dress Trousers – Glenn-Small size-white'),(26361,84,0,1690,'Camel Dress Trousers – Glenn'),(26362,86,0,1690,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26363,87,0,1690,'/w/1/w1_6_2.jpg'),(26364,88,0,1690,'/w/1/w1_6_2.jpg'),(26365,89,0,1690,'/w/1/w1_6_2.jpg'),(26366,106,0,1690,'container2'),(26367,121,0,1690,'n-camel-dress-trousers-glenn-small-size-white'),(26368,132,0,1690,'0'),(26369,133,0,1690,'/w/1/w1_6_2.jpg'),(26370,206,0,1690,'98% cotton, 2% elastane'),(26388,73,0,1692,'Camel Dress Trousers – Glenn-Small size-blue'),(26389,84,0,1692,'Camel Dress Trousers – Glenn'),(26390,86,0,1692,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26391,87,0,1692,'/1/_/1_8_2.jpg'),(26392,88,0,1692,'/1/_/1_8_2.jpg'),(26393,89,0,1692,'/1/_/1_8_2.jpg'),(26394,106,0,1692,'container2'),(26395,121,0,1692,'n-camel-dress-trousers-glenn-small-size-blue'),(26396,132,0,1692,'0'),(26397,133,0,1692,'/1/_/1_8_2.jpg'),(26398,206,0,1692,'98% cotton, 2% elastane'),(26404,73,0,1693,'Camel Dress Trousers – Glenn-Small size-grey'),(26405,84,0,1693,'Camel Dress Trousers – Glenn'),(26406,86,0,1693,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26407,87,0,1693,'/g/1/g1_4_2.jpg'),(26408,88,0,1693,'/g/1/g1_4_2.jpg'),(26409,89,0,1693,'/g/1/g1_4_2.jpg'),(26410,106,0,1693,'container2'),(26411,121,0,1693,'n-camel-dress-trousers-glenn-small-size-grey'),(26412,132,0,1693,'0'),(26413,133,0,1693,'/g/1/g1_4_2.jpg'),(26414,206,0,1693,'98% cotton, 2% elastane'),(26419,73,0,1694,'Camel Dress Trousers – Glenn-Medium size-black'),(26420,84,0,1694,'Camel Dress Trousers – Glenn'),(26421,86,0,1694,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26422,87,0,1694,'/b/1/b1_10_3.jpg'),(26423,88,0,1694,'/b/1/b1_10_3.jpg'),(26424,89,0,1694,'/b/1/b1_10_3.jpg'),(26425,106,0,1694,'container2'),(26426,121,0,1694,'n-camel-dress-trousers-glenn-medium-size-black'),(26427,132,0,1694,'0'),(26428,133,0,1694,'/b/1/b1_10_3.jpg'),(26429,206,0,1694,'98% cotton, 2% elastane'),(26434,73,0,1695,'Camel Dress Trousers – Glenn-Medium size-red'),(26435,84,0,1695,'Camel Dress Trousers – Glenn'),(26436,86,0,1695,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26437,87,0,1695,'/r/1/r1_6_3.jpg'),(26438,88,0,1695,'/r/1/r1_6_3.jpg'),(26439,89,0,1695,'/r/1/r1_6_3.jpg'),(26440,106,0,1695,'container2'),(26441,121,0,1695,'n-camel-dress-trousers-glenn-medium-size-red'),(26442,132,0,1695,'0'),(26443,133,0,1695,'/r/1/r1_6_3.jpg'),(26444,206,0,1695,'98% cotton, 2% elastane'),(26449,73,0,1696,'Camel Dress Trousers – Glenn-Medium size-white'),(26450,84,0,1696,'Camel Dress Trousers – Glenn'),(26451,86,0,1696,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26452,87,0,1696,'/w/1/w1_6_3.jpg'),(26453,88,0,1696,'/w/1/w1_6_3.jpg'),(26454,89,0,1696,'/w/1/w1_6_3.jpg'),(26455,106,0,1696,'container2'),(26456,121,0,1696,'n-camel-dress-trousers-glenn-medium-size-white'),(26457,132,0,1696,'0'),(26458,133,0,1696,'/w/1/w1_6_3.jpg'),(26459,206,0,1696,'98% cotton, 2% elastane'),(26464,73,0,1697,'Camel Dress Trousers – Glenn-Medium size-blue'),(26465,84,0,1697,'Camel Dress Trousers – Glenn'),(26466,86,0,1697,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26467,87,0,1697,'/1/_/1_8_3.jpg'),(26468,88,0,1697,'/1/_/1_8_3.jpg'),(26469,89,0,1697,'/1/_/1_8_3.jpg'),(26470,106,0,1697,'container2'),(26471,121,0,1697,'n-camel-dress-trousers-glenn-medium-size-blue'),(26472,132,0,1697,'0'),(26473,133,0,1697,'/1/_/1_8_3.jpg'),(26474,206,0,1697,'98% cotton, 2% elastane'),(26479,73,0,1698,'Camel Dress Trousers – Glenn-Medium size-grey'),(26480,84,0,1698,'Camel Dress Trousers – Glenn'),(26481,86,0,1698,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26482,87,0,1698,'/g/1/g1_4_3.jpg'),(26483,88,0,1698,'/g/1/g1_4_3.jpg'),(26484,89,0,1698,'/g/1/g1_4_3.jpg'),(26485,106,0,1698,'container2'),(26486,121,0,1698,'n-camel-dress-trousers-glenn-medium-size-grey'),(26487,132,0,1698,'0'),(26488,133,0,1698,'/g/1/g1_4_3.jpg'),(26489,206,0,1698,'98% cotton, 2% elastane'),(26494,73,0,1699,'Camel Dress Trousers – Glenn'),(26495,84,0,1699,'Camel Dress Trousers – Glenn'),(26496,86,0,1699,'Camel Dress Trousers – Glenn They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. \r\nManufacturer\'s product information: slim-fitCut: straight, narrow legsMeas'),(26497,87,0,1699,'/z/1/z1.jpg'),(26498,88,0,1699,'/z/1/z1.jpg'),(26499,89,0,1699,'/z/1/z1.jpg'),(26500,106,0,1699,'container2'),(26501,121,0,1699,'n-camel-dress-trousers-glenn'),(26502,132,0,1699,'2'),(26503,133,0,1699,'/z/1/z1.jpg'),(26504,206,0,1699,'98% cotton, 2% elastane'),(26509,73,0,1700,' Calvin Klein Wool Jumper-white-Extra small size'),(26510,84,0,1700,' Calvin Klein Wool Jumper'),(26511,86,0,1700,' Calvin Klein Wool Jumper Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.\r\nCut: lightly fitted\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″)\r\nNeckline: crew neck\r\nS'),(26512,87,0,1700,'/i/m/image_31226241_25_970x1182_0_1_3.jpg'),(26513,88,0,1700,'/i/m/image_31226241_25_970x1182_0_1_3.jpg'),(26514,89,0,1700,'/i/m/image_31226241_25_970x1182_0_1_3.jpg'),(26515,106,0,1700,'container2'),(26516,121,0,1700,'n-calvin-klein-wool-jumper-white-extra-small-size'),(26517,132,0,1700,'0'),(26518,133,0,1700,'/i/m/image_31226241_25_970x1182_0_1_3.jpg'),(26523,73,0,1701,' Calvin Klein Wool Jumper-white-Small size'),(26524,84,0,1701,' Calvin Klein Wool Jumper'),(26525,86,0,1701,' Calvin Klein Wool Jumper Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.\r\nCut: lightly fitted\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″)\r\nNeckline: crew neck\r\nS'),(26526,87,0,1701,'/i/m/image_31226241_25_970x1182_0_1_5.jpg'),(26527,88,0,1701,'/i/m/image_31226241_25_970x1182_0_1_5.jpg'),(26528,89,0,1701,'/i/m/image_31226241_25_970x1182_0_1_5.jpg'),(26529,106,0,1701,'container2'),(26530,121,0,1701,'n-calvin-klein-wool-jumper-white-small-size'),(26531,132,0,1701,'0'),(26532,133,0,1701,'/i/m/image_31226241_25_970x1182_0_1_5.jpg'),(26537,73,0,1702,' Calvin Klein Wool Jumper-white-Large size'),(26538,84,0,1702,' Calvin Klein Wool Jumper'),(26539,86,0,1702,' Calvin Klein Wool Jumper Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.\r\nCut: lightly fitted\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″)\r\nNeckline: crew neck\r\nS'),(26540,87,0,1702,'/i/m/image_31226241_25_970x1182_0_1_6.jpg'),(26541,88,0,1702,'/i/m/image_31226241_25_970x1182_0_1_6.jpg'),(26542,89,0,1702,'/i/m/image_31226241_25_970x1182_0_1_6.jpg'),(26543,106,0,1702,'container2'),(26544,121,0,1702,'n-calvin-klein-wool-jumper-white-large-size'),(26545,132,0,1702,'0'),(26546,133,0,1702,'/i/m/image_31226241_25_970x1182_0_1_6.jpg'),(26551,73,0,1703,' Calvin Klein Wool Jumper-black-Extra small size'),(26552,84,0,1703,' Calvin Klein Wool Jumper'),(26553,86,0,1703,' Calvin Klein Wool Jumper Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.\r\nCut: lightly fitted\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″)\r\nNeckline: crew neck\r\nS'),(26554,87,0,1703,'/2/3/232323333_1_1_3.jpg'),(26555,88,0,1703,'/2/3/232323333_1_1_3.jpg'),(26556,89,0,1703,'/2/3/232323333_1_1_3.jpg'),(26557,106,0,1703,'container2'),(26558,121,0,1703,'n-calvin-klein-wool-jumper-black-extra-small-size'),(26559,132,0,1703,'0'),(26560,133,0,1703,'/2/3/232323333_1_1_3.jpg'),(26565,73,0,1704,' Calvin Klein Wool Jumper-black-Small size'),(26566,84,0,1704,' Calvin Klein Wool Jumper'),(26567,86,0,1704,' Calvin Klein Wool Jumper Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.\r\nCut: lightly fitted\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″)\r\nNeckline: crew neck\r\nS'),(26568,87,0,1704,'/2/3/232323333_1_1_3_1.jpg'),(26569,88,0,1704,'/2/3/232323333_1_1_3_1.jpg'),(26570,89,0,1704,'/2/3/232323333_1_1_3_1.jpg'),(26571,106,0,1704,'container2'),(26572,121,0,1704,'n-calvin-klein-wool-jumper-black-small-size'),(26573,132,0,1704,'0'),(26574,133,0,1704,'/2/3/232323333_1_1_3_1.jpg'),(26579,73,0,1705,' Calvin Klein Wool Jumper-black-Large size'),(26580,84,0,1705,' Calvin Klein Wool Jumper'),(26581,86,0,1705,' Calvin Klein Wool Jumper Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.\r\nCut: lightly fitted\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″)\r\nNeckline: crew neck\r\nS'),(26582,87,0,1705,'/2/3/232323333_1_1_3_2.jpg'),(26583,88,0,1705,'/2/3/232323333_1_1_3_2.jpg'),(26584,89,0,1705,'/2/3/232323333_1_1_3_2.jpg'),(26585,106,0,1705,'container2'),(26586,121,0,1705,'n-calvin-klein-wool-jumper-black-large-size'),(26587,132,0,1705,'0'),(26588,133,0,1705,'/2/3/232323333_1_1_3_2.jpg'),(26593,73,0,1706,' Calvin Klein Wool Jumper-red-Extra small size'),(26594,84,0,1706,' Calvin Klein Wool Jumper'),(26595,86,0,1706,' Calvin Klein Wool Jumper Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.\r\nCut: lightly fitted\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″)\r\nNeckline: crew neck\r\nS'),(26596,87,0,1706,'/2/5/255tt4r4r_1_1_3.jpg'),(26597,88,0,1706,'/2/5/255tt4r4r_1_1_3.jpg'),(26598,89,0,1706,'/2/5/255tt4r4r_1_1_3.jpg'),(26599,106,0,1706,'container2'),(26600,121,0,1706,'n-calvin-klein-wool-jumper-red-extra-small-size'),(26601,132,0,1706,'0'),(26602,133,0,1706,'/2/5/255tt4r4r_1_1_3.jpg'),(26607,73,0,1707,' Calvin Klein Wool Jumper-red-Small size'),(26608,84,0,1707,' Calvin Klein Wool Jumper'),(26609,86,0,1707,' Calvin Klein Wool Jumper Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.\r\nCut: lightly fitted\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″)\r\nNeckline: crew neck\r\nS'),(26610,87,0,1707,'/2/5/255tt4r4r_1_1_3_1.jpg'),(26611,88,0,1707,'/2/5/255tt4r4r_1_1_3_1.jpg'),(26612,89,0,1707,'/2/5/255tt4r4r_1_1_3_1.jpg'),(26613,106,0,1707,'container2'),(26614,121,0,1707,'n-calvin-klein-wool-jumper-red-small-size'),(26615,132,0,1707,'0'),(26616,133,0,1707,'/2/5/255tt4r4r_1_1_3_1.jpg'),(26621,73,0,1708,' Calvin Klein Wool Jumper-red-Large size'),(26622,84,0,1708,' Calvin Klein Wool Jumper'),(26623,86,0,1708,' Calvin Klein Wool Jumper Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.\r\nCut: lightly fitted\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″)\r\nNeckline: crew neck\r\nS'),(26624,87,0,1708,'/2/5/255tt4r4r_1_1_3_2.jpg'),(26625,88,0,1708,'/2/5/255tt4r4r_1_1_3_2.jpg');
INSERT INTO `catalog_product_entity_varchar` VALUES (26626,89,0,1708,'/2/5/255tt4r4r_1_1_3_2.jpg'),(26627,106,0,1708,'container2'),(26628,121,0,1708,'n-calvin-klein-wool-jumper-red-large-size'),(26629,132,0,1708,'0'),(26630,133,0,1708,'/2/5/255tt4r4r_1_1_3_2.jpg'),(26635,73,0,1709,'Calvin Klein Wool Jumper'),(26636,84,0,1709,' Calvin Klein Wool Jumper'),(26637,86,0,1709,' Calvin Klein Wool Jumper Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.\r\nCut: lightly fitted\r\nMeasurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″)\r\nNeckline: crew neck\r\nS'),(26638,87,0,1709,'/i/m/image_31226241_25_970x1182_0_1_4.jpg'),(26639,88,0,1709,'/i/m/image_31226241_25_970x1182_0_1_4.jpg'),(26640,89,0,1709,'/i/m/image_31226241_25_970x1182_0_1_4.jpg'),(26641,106,0,1709,'container2'),(26642,121,0,1709,'n-lawrence-grey-rollneck-pullover-1'),(26643,132,0,1709,'2'),(26644,133,0,1709,'no_selection'),(26649,73,0,1710,'Tan Corduroy Trousers-black-Large size'),(26650,84,0,1710,'Tan Corduroy Trousers'),(26651,86,0,1710,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26652,87,0,1710,'/d/1/d1_4_2.jpg'),(26653,88,0,1710,'/d/1/d1_4_2.jpg'),(26654,89,0,1710,'/d/1/d1_4_2.jpg'),(26655,106,0,1710,'container2'),(26656,121,0,1710,'n-tan-corduroy-trousers-black-large-size'),(26657,132,0,1710,'0'),(26658,133,0,1710,'/d/1/d1_4_2.jpg'),(26659,206,0,1710,'98% cotton, 2% elastane'),(26664,73,0,1711,'Tan Corduroy Trousers-black-Small size'),(26665,84,0,1711,'Tan Corduroy Trousers'),(26666,86,0,1711,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26667,87,0,1711,'/d/1/d1_4_1_1.jpg'),(26668,88,0,1711,'/d/1/d1_4_1_1.jpg'),(26669,89,0,1711,'/d/1/d1_4_1_1.jpg'),(26670,106,0,1711,'container2'),(26671,121,0,1711,'n-tan-corduroy-trousers-black-small-size'),(26672,132,0,1711,'0'),(26673,133,0,1711,'/d/1/d1_4_1_1.jpg'),(26674,206,0,1711,'98% cotton, 2% elastane'),(26679,73,0,1712,'Tan Corduroy Trousers-black-Medium size'),(26680,84,0,1712,'Tan Corduroy Trousers'),(26681,86,0,1712,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26682,87,0,1712,'/d/1/d1_4_2_1.jpg'),(26683,88,0,1712,'/d/1/d1_4_2_1.jpg'),(26684,89,0,1712,'/d/1/d1_4_2_1.jpg'),(26685,106,0,1712,'container2'),(26686,121,0,1712,'n-tan-corduroy-trousers-black-medium-size'),(26687,132,0,1712,'0'),(26688,133,0,1712,'/d/1/d1_4_2_1.jpg'),(26689,206,0,1712,'98% cotton, 2% elastane'),(26694,73,0,1713,'Tan Corduroy Trousers-red-Large size'),(26695,84,0,1713,'Tan Corduroy Trousers'),(26696,86,0,1713,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26697,87,0,1713,'/r/1/r1_7.jpg'),(26698,88,0,1713,'/r/1/r1_7.jpg'),(26699,89,0,1713,'/r/1/r1_7.jpg'),(26700,106,0,1713,'container2'),(26701,121,0,1713,'n-tan-corduroy-trousers-red-large-size'),(26702,132,0,1713,'0'),(26703,133,0,1713,'/r/1/r1_7.jpg'),(26704,206,0,1713,'98% cotton, 2% elastane'),(26709,73,0,1714,'Tan Corduroy Trousers-red-Small size'),(26710,84,0,1714,'Tan Corduroy Trousers'),(26711,86,0,1714,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26712,87,0,1714,'/r/1/r1_7_1.jpg'),(26713,88,0,1714,'/r/1/r1_7_1.jpg'),(26714,89,0,1714,'/r/1/r1_7_1.jpg'),(26715,106,0,1714,'container2'),(26716,121,0,1714,'n-tan-corduroy-trousers-red-small-size'),(26717,132,0,1714,'0'),(26718,133,0,1714,'/r/1/r1_7_1.jpg'),(26719,206,0,1714,'98% cotton, 2% elastane'),(26724,73,0,1715,'Tan Corduroy Trousers-red-Medium size'),(26725,84,0,1715,'Tan Corduroy Trousers'),(26726,86,0,1715,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26727,87,0,1715,'/r/1/r1_7_2.jpg'),(26728,88,0,1715,'/r/1/r1_7_2.jpg'),(26729,89,0,1715,'/r/1/r1_7_2.jpg'),(26730,106,0,1715,'container2'),(26731,121,0,1715,'n-tan-corduroy-trousers-red-medium-size'),(26732,132,0,1715,'0'),(26733,133,0,1715,'/r/1/r1_7_2.jpg'),(26734,206,0,1715,'98% cotton, 2% elastane'),(26739,73,0,1716,'Tan Corduroy Trousers-white-Large size'),(26740,84,0,1716,'Tan Corduroy Trousers'),(26741,86,0,1716,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26742,87,0,1716,'/w/1/w1_7_1.jpg'),(26743,88,0,1716,'/w/1/w1_7_1.jpg'),(26744,89,0,1716,'/w/1/w1_7_1.jpg'),(26745,106,0,1716,'container2'),(26746,121,0,1716,'n-tan-corduroy-trousers-white-large-size'),(26747,132,0,1716,'0'),(26748,133,0,1716,'/w/1/w1_7_1.jpg'),(26749,206,0,1716,'98% cotton, 2% elastane'),(26754,73,0,1717,'Tan Corduroy Trousers-white-Small size'),(26755,84,0,1717,'Tan Corduroy Trousers'),(26756,86,0,1717,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26757,87,0,1717,'/w/1/w1_7_1_1.jpg'),(26758,88,0,1717,'/w/1/w1_7_1_1.jpg'),(26759,89,0,1717,'/w/1/w1_7_1_1.jpg'),(26760,106,0,1717,'container2'),(26761,121,0,1717,'n-tan-corduroy-trousers-white-small-size'),(26762,132,0,1717,'0'),(26763,133,0,1717,'/w/1/w1_7_1_1.jpg'),(26764,206,0,1717,'98% cotton, 2% elastane'),(26769,73,0,1718,'Tan Corduroy Trousers-white-Medium size'),(26770,84,0,1718,'Tan Corduroy Trousers'),(26771,86,0,1718,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26772,87,0,1718,'/w/1/w1_7_2.jpg'),(26773,88,0,1718,'/w/1/w1_7_2.jpg'),(26774,89,0,1718,'/w/1/w1_7_2.jpg'),(26775,106,0,1718,'container2'),(26776,121,0,1718,'n-tan-corduroy-trousers-white-medium-size'),(26777,132,0,1718,'0'),(26778,133,0,1718,'/w/1/w1_7_2.jpg'),(26779,206,0,1718,'98% cotton, 2% elastane'),(26784,73,0,1719,'Tan Corduroy Trousers-blue-Large size'),(26785,84,0,1719,'Tan Corduroy Trousers'),(26786,86,0,1719,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26787,87,0,1719,'/b/1/b1_11.jpg'),(26788,88,0,1719,'/b/1/b1_11.jpg'),(26789,89,0,1719,'/b/1/b1_11.jpg'),(26790,106,0,1719,'container2'),(26791,121,0,1719,'n-tan-corduroy-trousers-blue-large-size'),(26792,132,0,1719,'0'),(26793,133,0,1719,'/b/1/b1_11.jpg'),(26794,206,0,1719,'98% cotton, 2% elastane'),(26799,73,0,1720,'Tan Corduroy Trousers-blue-Small size'),(26800,84,0,1720,'Tan Corduroy Trousers'),(26801,86,0,1720,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26802,87,0,1720,'/b/1/b1_11_1.jpg'),(26803,88,0,1720,'/b/1/b1_11_1.jpg'),(26804,89,0,1720,'/b/1/b1_11_1.jpg'),(26805,106,0,1720,'container2'),(26806,121,0,1720,'n-tan-corduroy-trousers-blue-small-size'),(26807,132,0,1720,'0'),(26808,133,0,1720,'/b/1/b1_11_1.jpg'),(26809,206,0,1720,'98% cotton, 2% elastane'),(26814,73,0,1721,'Tan Corduroy Trousers-blue-Medium size'),(26815,84,0,1721,'Tan Corduroy Trousers'),(26816,86,0,1721,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26817,87,0,1721,'/b/1/b1_11_2.jpg'),(26818,88,0,1721,'/b/1/b1_11_2.jpg'),(26819,89,0,1721,'/b/1/b1_11_2.jpg'),(26820,106,0,1721,'container2'),(26821,121,0,1721,'n-tan-corduroy-trousers-blue-medium-size'),(26822,132,0,1721,'0'),(26823,133,0,1721,'/b/1/b1_11_2.jpg'),(26824,206,0,1721,'98% cotton, 2% elastane'),(26829,73,0,1722,'Tan Corduroy Trousers-grey-Large size'),(26830,84,0,1722,'Tan Corduroy Trousers'),(26831,86,0,1722,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26832,87,0,1722,'/g/1/g1_5_1.jpg'),(26833,88,0,1722,'/g/1/g1_5_1.jpg'),(26834,89,0,1722,'/g/1/g1_5_1.jpg'),(26835,106,0,1722,'container2'),(26836,121,0,1722,'n-tan-corduroy-trousers-grey-large-size'),(26837,132,0,1722,'0'),(26838,133,0,1722,'/g/1/g1_5_1.jpg'),(26839,206,0,1722,'98% cotton, 2% elastane'),(26844,73,0,1723,'Tan Corduroy Trousers-grey-Small size'),(26845,84,0,1723,'Tan Corduroy Trousers'),(26846,86,0,1723,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26847,87,0,1723,'/g/1/g1_5_1_1.jpg'),(26848,88,0,1723,'/g/1/g1_5_1_1.jpg'),(26849,89,0,1723,'/g/1/g1_5_1_1.jpg'),(26850,106,0,1723,'container2'),(26851,121,0,1723,'n-tan-corduroy-trousers-grey-small-size'),(26852,132,0,1723,'0'),(26853,133,0,1723,'/g/1/g1_5_1_1.jpg'),(26854,206,0,1723,'98% cotton, 2% elastane'),(26859,73,0,1724,'Tan Corduroy Trousers-grey-Medium size'),(26860,84,0,1724,'Tan Corduroy Trousers'),(26861,86,0,1724,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26862,87,0,1724,'/g/1/g1_5_2.jpg'),(26863,88,0,1724,'/g/1/g1_5_2.jpg'),(26864,89,0,1724,'/g/1/g1_5_2.jpg'),(26865,106,0,1724,'container2'),(26866,121,0,1724,'n-tan-corduroy-trousers-grey-medium-size'),(26867,132,0,1724,'0'),(26868,133,0,1724,'/g/1/g1_5_2.jpg'),(26869,206,0,1724,'98% cotton, 2% elastane'),(26874,73,0,1725,'Tan Corduroy Trousers'),(26875,84,0,1725,'Tan Corduroy Trousers'),(26876,86,0,1725,'Tan Corduroy Trousers A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the be'),(26877,87,0,1725,'/b/b/bb1.jpg'),(26878,88,0,1725,'/b/b/bb1.jpg'),(26879,89,0,1725,'/b/b/bb1.jpg'),(26880,106,0,1725,'container2'),(26881,121,0,1725,'n-tan-corduroy-trousers'),(26882,132,0,1725,'2'),(26883,133,0,1725,'/b/b/bb1.jpg'),(26884,206,0,1725,'98% cotton, 2% elastane'),(26889,73,0,1726,' Boss Denim Jacket-white-Extra large size'),(26890,84,0,1726,' Boss Denim Jacket'),(26891,86,0,1726,' Boss Denim Jacket Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.\r\nPerfectly fitting with the'),(26892,87,0,1726,'/i/m/image_31250794_20_970x1182_0_1_2.jpg'),(26893,88,0,1726,'/i/m/image_31250794_20_970x1182_0_1_2.jpg'),(26894,89,0,1726,'/i/m/image_31250794_20_970x1182_0_1_2.jpg'),(26895,106,0,1726,'container2'),(26896,121,0,1726,'n-boss-denim-jacket-white-extra-large-size'),(26897,132,0,1726,'0'),(26898,133,0,1726,'/i/m/image_31250794_20_970x1182_0_1_2.jpg'),(26903,73,0,1727,' Boss Denim Jacket-white-Small size'),(26904,84,0,1727,' Boss Denim Jacket'),(26905,86,0,1727,' Boss Denim Jacket Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.\r\nPerfectly fitting with the'),(26906,87,0,1727,'/i/m/image_31250794_20_970x1182_0_1_2_1.jpg'),(26907,88,0,1727,'/i/m/image_31250794_20_970x1182_0_1_2_1.jpg'),(26908,89,0,1727,'/i/m/image_31250794_20_970x1182_0_1_2_1.jpg'),(26909,106,0,1727,'container2'),(26910,121,0,1727,'n-boss-denim-jacket-white-small-size'),(26911,132,0,1727,'0'),(26912,133,0,1727,'/i/m/image_31250794_20_970x1182_0_1_2_1.jpg'),(26917,73,0,1728,' Boss Denim Jacket-white-Medium size'),(26918,84,0,1728,' Boss Denim Jacket'),(26919,86,0,1728,' Boss Denim Jacket Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.\r\nPerfectly fitting with the'),(26920,87,0,1728,'/i/m/image_31250794_20_970x1182_0_1_3.jpg'),(26921,88,0,1728,'/i/m/image_31250794_20_970x1182_0_1_3.jpg'),(26922,89,0,1728,'/i/m/image_31250794_20_970x1182_0_1_3.jpg'),(26923,106,0,1728,'container2'),(26924,121,0,1728,'n-boss-denim-jacket-white-medium-size'),(26925,132,0,1728,'0'),(26926,133,0,1728,'/i/m/image_31250794_20_970x1182_0_1_3.jpg'),(26931,73,0,1729,' Boss Denim Jacket-blue-Extra large size'),(26932,84,0,1729,' Boss Denim Jacket'),(26933,86,0,1729,' Boss Denim Jacket Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.\r\nPerfectly fitting with the'),(26934,87,0,1729,'/5/6/567yhthyh_3_1.jpg'),(26935,88,0,1729,'/5/6/567yhthyh_3_1.jpg'),(26936,89,0,1729,'/5/6/567yhthyh_3_1.jpg'),(26937,106,0,1729,'container2'),(26938,121,0,1729,'n-boss-denim-jacket-blue-extra-large-size'),(26939,132,0,1729,'0'),(26940,133,0,1729,'/5/6/567yhthyh_3_1.jpg'),(26945,73,0,1730,' Boss Denim Jacket-blue-Small size'),(26946,84,0,1730,' Boss Denim Jacket'),(26947,86,0,1730,' Boss Denim Jacket Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.\r\nPerfectly fitting with the'),(26948,87,0,1730,'/5/6/567yhthyh_3_1_1.jpg'),(26949,88,0,1730,'/5/6/567yhthyh_3_1_1.jpg'),(26950,89,0,1730,'/5/6/567yhthyh_3_1_1.jpg'),(26951,106,0,1730,'container2'),(26952,121,0,1730,'n-boss-denim-jacket-blue-small-size'),(26953,132,0,1730,'0'),(26954,133,0,1730,'/5/6/567yhthyh_3_1_1.jpg'),(26959,73,0,1731,' Boss Denim Jacket-blue-Medium size'),(26960,84,0,1731,' Boss Denim Jacket'),(26961,86,0,1731,' Boss Denim Jacket Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.\r\nPerfectly fitting with the'),(26962,87,0,1731,'/5/6/567yhthyh_3_2.jpg'),(26963,88,0,1731,'/5/6/567yhthyh_3_2.jpg'),(26964,89,0,1731,'/5/6/567yhthyh_3_2.jpg'),(26965,106,0,1731,'container2'),(26966,121,0,1731,'n-boss-denim-jacket-blue-medium-size'),(26967,132,0,1731,'0'),(26968,133,0,1731,'/5/6/567yhthyh_3_2.jpg'),(26973,73,0,1732,' Boss Denim Jacket-black-Extra large size'),(26974,84,0,1732,' Boss Denim Jacket'),(26975,86,0,1732,' Boss Denim Jacket Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.\r\nPerfectly fitting with the'),(26976,87,0,1732,'/3/2/32e2e2e2e2e_3_1.jpg'),(26977,88,0,1732,'/3/2/32e2e2e2e2e_3_1.jpg'),(26978,89,0,1732,'/3/2/32e2e2e2e2e_3_1.jpg'),(26979,106,0,1732,'container2'),(26980,121,0,1732,'n-boss-denim-jacket-black-extra-large-size'),(26981,132,0,1732,'0'),(26982,133,0,1732,'/3/2/32e2e2e2e2e_3_1.jpg'),(26987,73,0,1733,' Boss Denim Jacket-black-Small size'),(26988,84,0,1733,' Boss Denim Jacket'),(26989,86,0,1733,' Boss Denim Jacket Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.\r\nPerfectly fitting with the'),(26990,87,0,1733,'/3/2/32e2e2e2e2e_3_1_1.jpg'),(26991,88,0,1733,'/3/2/32e2e2e2e2e_3_1_1.jpg'),(26992,89,0,1733,'/3/2/32e2e2e2e2e_3_1_1.jpg'),(26993,106,0,1733,'container2'),(26994,121,0,1733,'n-boss-denim-jacket-black-small-size'),(26995,132,0,1733,'0'),(26996,133,0,1733,'/3/2/32e2e2e2e2e_3_1_1.jpg'),(27001,73,0,1734,' Boss Denim Jacket-black-Medium size'),(27002,84,0,1734,' Boss Denim Jacket'),(27003,86,0,1734,' Boss Denim Jacket Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.\r\nPerfectly fitting with the'),(27004,87,0,1734,'/3/2/32e2e2e2e2e_3_2.jpg'),(27005,88,0,1734,'/3/2/32e2e2e2e2e_3_2.jpg'),(27006,89,0,1734,'/3/2/32e2e2e2e2e_3_2.jpg'),(27007,106,0,1734,'container2'),(27008,121,0,1734,'n-boss-denim-jacket-black-medium-size'),(27009,132,0,1734,'0'),(27010,133,0,1734,'/3/2/32e2e2e2e2e_3_2.jpg'),(27015,73,0,1735,'Boss Denim Jacket'),(27016,84,0,1735,' Boss Denim Jacket'),(27017,86,0,1735,' Boss Denim Jacket Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front.\r\nPerfectly fitting with the'),(27018,87,0,1735,'/i/m/image_31250794_20_970x1182_0_1_1_1.jpg'),(27019,88,0,1735,'/i/m/image_31250794_20_970x1182_0_1_1_1.jpg'),(27020,89,0,1735,'/i/m/image_31250794_20_970x1182_0_1_1_1.jpg'),(27021,106,0,1735,'container2'),(27022,121,0,1735,'n-seventy-transitional-jacket-14'),(27023,132,0,1735,'2'),(27024,133,0,1735,'no_selection'),(27029,73,0,1736,'Black Chino-red-Large size'),(27030,84,0,1736,'Black Chino'),(27031,86,0,1736,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27032,87,0,1736,'/r/1/r1_8.jpg'),(27033,88,0,1736,'/r/1/r1_8.jpg'),(27034,89,0,1736,'/r/1/r1_8.jpg'),(27035,106,0,1736,'container2'),(27036,121,0,1736,'n-black-chino-red-large-size'),(27037,132,0,1736,'0'),(27038,133,0,1736,'/r/1/r1_8.jpg'),(27039,206,0,1736,'98% cotton, 2% elastane'),(27044,73,0,1737,'Black Chino-red-Small size'),(27045,84,0,1737,'Black Chino'),(27046,86,0,1737,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27047,87,0,1737,'/r/1/r1_8_1.jpg'),(27048,88,0,1737,'/r/1/r1_8_1.jpg'),(27049,89,0,1737,'/r/1/r1_8_1.jpg'),(27050,106,0,1737,'container2'),(27051,121,0,1737,'n-black-chino-red-small-size'),(27052,132,0,1737,'0'),(27053,133,0,1737,'/r/1/r1_8_1.jpg'),(27054,206,0,1737,'98% cotton, 2% elastane'),(27059,73,0,1738,'Black Chino-red-Extra large size'),(27060,84,0,1738,'Black Chino'),(27061,86,0,1738,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27062,87,0,1738,'/r/1/r1_8_2.jpg'),(27063,88,0,1738,'/r/1/r1_8_2.jpg'),(27064,89,0,1738,'/r/1/r1_8_2.jpg'),(27065,106,0,1738,'container2'),(27066,121,0,1738,'n-black-chino-red-extra-large-size'),(27067,132,0,1738,'0'),(27068,133,0,1738,'/r/1/r1_8_2.jpg'),(27069,206,0,1738,'98% cotton, 2% elastane'),(27074,73,0,1739,'Black Chino-red-Medium size'),(27075,84,0,1739,'Black Chino'),(27076,86,0,1739,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27077,87,0,1739,'/r/1/r1_8_3.jpg'),(27078,88,0,1739,'/r/1/r1_8_3.jpg'),(27079,89,0,1739,'/r/1/r1_8_3.jpg'),(27080,106,0,1739,'container2'),(27081,121,0,1739,'n-black-chino-red-medium-size'),(27082,132,0,1739,'0'),(27083,133,0,1739,'/r/1/r1_8_3.jpg'),(27084,206,0,1739,'98% cotton, 2% elastane'),(27089,73,0,1740,'Black Chino-white-Large size'),(27090,84,0,1740,'Black Chino'),(27091,86,0,1740,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27092,87,0,1740,'/w/1/w1_8_1.jpg'),(27093,88,0,1740,'/w/1/w1_8_1.jpg'),(27094,89,0,1740,'/w/1/w1_8_1.jpg'),(27095,106,0,1740,'container2'),(27096,121,0,1740,'n-black-chino-white-large-size'),(27097,132,0,1740,'0'),(27098,133,0,1740,'/w/1/w1_8_1.jpg'),(27099,206,0,1740,'98% cotton, 2% elastane'),(27104,73,0,1741,'Black Chino-white-Small size'),(27105,84,0,1741,'Black Chino'),(27106,86,0,1741,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27107,87,0,1741,'/w/1/w1_8_1_1.jpg'),(27108,88,0,1741,'/w/1/w1_8_1_1.jpg'),(27109,89,0,1741,'/w/1/w1_8_1_1.jpg'),(27110,106,0,1741,'container2'),(27111,121,0,1741,'n-black-chino-white-small-size'),(27112,132,0,1741,'0'),(27113,133,0,1741,'/w/1/w1_8_1_1.jpg'),(27114,206,0,1741,'98% cotton, 2% elastane'),(27119,73,0,1742,'Black Chino-white-Extra large size'),(27120,84,0,1742,'Black Chino'),(27121,86,0,1742,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27122,87,0,1742,'/w/1/w1_8_2.jpg'),(27123,88,0,1742,'/w/1/w1_8_2.jpg'),(27124,89,0,1742,'/w/1/w1_8_2.jpg'),(27125,106,0,1742,'container2'),(27126,121,0,1742,'n-black-chino-white-extra-large-size'),(27127,132,0,1742,'0'),(27128,133,0,1742,'/w/1/w1_8_2.jpg'),(27129,206,0,1742,'98% cotton, 2% elastane'),(27134,73,0,1743,'Black Chino-white-Medium size'),(27135,84,0,1743,'Black Chino'),(27136,86,0,1743,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27137,87,0,1743,'/w/1/w1_8_3.jpg'),(27138,88,0,1743,'/w/1/w1_8_3.jpg'),(27139,89,0,1743,'/w/1/w1_8_3.jpg'),(27140,106,0,1743,'container2'),(27141,121,0,1743,'n-black-chino-white-medium-size'),(27142,132,0,1743,'0'),(27143,133,0,1743,'/w/1/w1_8_3.jpg'),(27144,206,0,1743,'98% cotton, 2% elastane'),(27149,73,0,1744,'Black Chino-blue-Large size'),(27150,84,0,1744,'Black Chino'),(27151,86,0,1744,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27152,87,0,1744,'/b/1/b1_12.jpg'),(27153,88,0,1744,'/b/1/b1_12.jpg'),(27154,89,0,1744,'/b/1/b1_12.jpg'),(27155,106,0,1744,'container2'),(27156,121,0,1744,'n-black-chino-blue-large-size'),(27157,132,0,1744,'0'),(27158,133,0,1744,'/b/1/b1_12.jpg'),(27159,206,0,1744,'98% cotton, 2% elastane'),(27164,73,0,1745,'Black Chino-blue-Small size'),(27165,84,0,1745,'Black Chino'),(27166,86,0,1745,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27167,87,0,1745,'/b/1/b1_12_1.jpg'),(27168,88,0,1745,'/b/1/b1_12_1.jpg'),(27169,89,0,1745,'/b/1/b1_12_1.jpg'),(27170,106,0,1745,'container2'),(27171,121,0,1745,'n-black-chino-blue-small-size'),(27172,132,0,1745,'0'),(27173,133,0,1745,'/b/1/b1_12_1.jpg'),(27174,206,0,1745,'98% cotton, 2% elastane'),(27179,73,0,1746,'Black Chino-blue-Extra large size'),(27180,84,0,1746,'Black Chino'),(27181,86,0,1746,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27182,87,0,1746,'/b/1/b1_12_2.jpg'),(27183,88,0,1746,'/b/1/b1_12_2.jpg'),(27184,89,0,1746,'/b/1/b1_12_2.jpg'),(27185,106,0,1746,'container2'),(27186,121,0,1746,'n-black-chino-blue-extra-large-size'),(27187,132,0,1746,'0'),(27188,133,0,1746,'/b/1/b1_12_2.jpg'),(27189,206,0,1746,'98% cotton, 2% elastane'),(27194,73,0,1747,'Black Chino-blue-Medium size'),(27195,84,0,1747,'Black Chino'),(27196,86,0,1747,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27197,87,0,1747,'/b/1/b1_12_3.jpg'),(27198,88,0,1747,'/b/1/b1_12_3.jpg'),(27199,89,0,1747,'/b/1/b1_12_3.jpg'),(27200,106,0,1747,'container2'),(27201,121,0,1747,'n-black-chino-blue-medium-size'),(27202,132,0,1747,'0'),(27203,133,0,1747,'/b/1/b1_12_3.jpg'),(27204,206,0,1747,'98% cotton, 2% elastane'),(27209,73,0,1748,'Black Chino-brown-Large size'),(27210,84,0,1748,'Black Chino'),(27211,86,0,1748,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27212,87,0,1748,'/b/b/bb1_1.jpg'),(27213,88,0,1748,'/b/b/bb1_1.jpg'),(27214,89,0,1748,'/b/b/bb1_1.jpg'),(27215,106,0,1748,'container2'),(27216,121,0,1748,'n-black-chino-brown-large-size'),(27217,132,0,1748,'0'),(27218,133,0,1748,'/b/b/bb1_1.jpg'),(27219,206,0,1748,'98% cotton, 2% elastane'),(27224,73,0,1749,'Black Chino-brown-Small size'),(27225,84,0,1749,'Black Chino'),(27226,86,0,1749,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27227,87,0,1749,'/b/b/bb1_1_1.jpg'),(27228,88,0,1749,'/b/b/bb1_1_1.jpg'),(27229,89,0,1749,'/b/b/bb1_1_1.jpg'),(27230,106,0,1749,'container2'),(27231,121,0,1749,'n-black-chino-brown-small-size'),(27232,132,0,1749,'0'),(27233,133,0,1749,'/b/b/bb1_1_1.jpg'),(27234,206,0,1749,'98% cotton, 2% elastane'),(27239,73,0,1750,'Black Chino-brown-Extra large size'),(27240,84,0,1750,'Black Chino'),(27241,86,0,1750,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27242,87,0,1750,'/b/b/bb1_1_2.jpg'),(27243,88,0,1750,'/b/b/bb1_1_2.jpg'),(27244,89,0,1750,'/b/b/bb1_1_2.jpg'),(27245,106,0,1750,'container2'),(27246,121,0,1750,'n-black-chino-brown-extra-large-size'),(27247,132,0,1750,'0'),(27248,133,0,1750,'/b/b/bb1_1_2.jpg'),(27249,206,0,1750,'98% cotton, 2% elastane'),(27254,73,0,1751,'Black Chino-brown-Medium size'),(27255,84,0,1751,'Black Chino'),(27256,86,0,1751,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27257,87,0,1751,'/b/b/bb1_1_3.jpg'),(27258,88,0,1751,'/b/b/bb1_1_3.jpg'),(27259,89,0,1751,'/b/b/bb1_1_3.jpg'),(27260,106,0,1751,'container2'),(27261,121,0,1751,'n-black-chino-brown-medium-size'),(27262,132,0,1751,'0'),(27263,133,0,1751,'/b/b/bb1_1_3.jpg'),(27264,206,0,1751,'98% cotton, 2% elastane'),(27269,73,0,1752,'Black Chino-grey-Large size'),(27270,84,0,1752,'Black Chino'),(27271,86,0,1752,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27272,87,0,1752,'/d/1/d1_5_2.jpg'),(27273,88,0,1752,'/d/1/d1_5_2.jpg'),(27274,89,0,1752,'/d/1/d1_5_2.jpg'),(27275,106,0,1752,'container2'),(27276,121,0,1752,'n-black-chino-grey-large-size'),(27277,132,0,1752,'0'),(27278,133,0,1752,'/d/1/d1_5_2.jpg'),(27279,206,0,1752,'98% cotton, 2% elastane'),(27284,73,0,1753,'Black Chino-grey-Small size'),(27285,84,0,1753,'Black Chino'),(27286,86,0,1753,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27287,87,0,1753,'/d/1/d1_5_1_1.jpg'),(27288,88,0,1753,'/d/1/d1_5_1_1.jpg'),(27289,89,0,1753,'/d/1/d1_5_1_1.jpg'),(27290,106,0,1753,'container2'),(27291,121,0,1753,'n-black-chino-grey-small-size'),(27292,132,0,1753,'0'),(27293,133,0,1753,'/d/1/d1_5_1_1.jpg'),(27294,206,0,1753,'98% cotton, 2% elastane'),(27299,73,0,1754,'Black Chino-grey-Extra large size'),(27300,84,0,1754,'Black Chino'),(27301,86,0,1754,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27302,87,0,1754,'/d/1/d1_5_2_1.jpg'),(27303,88,0,1754,'/d/1/d1_5_2_1.jpg'),(27304,89,0,1754,'/d/1/d1_5_2_1.jpg'),(27305,106,0,1754,'container2'),(27306,121,0,1754,'n-black-chino-grey-extra-large-size'),(27307,132,0,1754,'0'),(27308,133,0,1754,'/d/1/d1_5_2_1.jpg'),(27309,206,0,1754,'98% cotton, 2% elastane'),(27314,73,0,1755,'Black Chino-grey-Medium size'),(27315,84,0,1755,'Black Chino'),(27316,86,0,1755,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27317,87,0,1755,'/d/1/d1_5_3.jpg'),(27318,88,0,1755,'/d/1/d1_5_3.jpg'),(27319,89,0,1755,'/d/1/d1_5_3.jpg'),(27320,106,0,1755,'container2'),(27321,121,0,1755,'n-black-chino-grey-medium-size'),(27322,132,0,1755,'0'),(27323,133,0,1755,'/d/1/d1_5_3.jpg'),(27324,206,0,1755,'98% cotton, 2% elastane'),(27329,73,0,1756,'Black Chino'),(27330,84,0,1756,'Black Chino'),(27331,86,0,1756,'Black Chino Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear.\r\nCut: slightly tapered legMeasurement'),(27332,87,0,1756,'/d/d/dd1.jpg'),(27333,88,0,1756,'/d/d/dd1.jpg'),(27334,89,0,1756,'/d/d/dd1.jpg'),(27335,106,0,1756,'container2'),(27336,121,0,1756,'n-black-chino'),(27337,132,0,1756,'2'),(27338,133,0,1756,'/d/d/dd1.jpg'),(27339,206,0,1756,'98% cotton, 2% elastane'),(27344,73,0,1757,'Lawrence Grey Rollneck Pullover-Medium size-white'),(27345,84,0,1757,'Lawrence Grey Rollneck Pullover'),(27346,86,0,1757,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27347,87,0,1757,'/w/1/w1_9.jpg'),(27348,88,0,1757,'/w/1/w1_9.jpg'),(27349,89,0,1757,'/w/1/w1_9.jpg'),(27350,106,0,1757,'container2'),(27351,121,0,1757,'n-lawrence-grey-rollneck-pullover-medium-size-white'),(27352,132,0,1757,'0'),(27353,133,0,1757,'/w/1/w1_9.jpg'),(27354,206,0,1757,'50% merino, 50% acrylic'),(27359,73,0,1758,'Lawrence Grey Rollneck Pullover-Medium size-red'),(27360,84,0,1758,'Lawrence Grey Rollneck Pullover'),(27361,86,0,1758,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27362,87,0,1758,'/r/1/r1_9.jpg'),(27363,88,0,1758,'/r/1/r1_9.jpg'),(27364,89,0,1758,'/r/1/r1_9.jpg'),(27365,106,0,1758,'container2'),(27366,121,0,1758,'n-lawrence-grey-rollneck-pullover-medium-size-red'),(27367,132,0,1758,'0'),(27368,133,0,1758,'/r/1/r1_9.jpg'),(27369,206,0,1758,'50% merino, 50% acrylic'),(27374,73,0,1759,'Lawrence Grey Rollneck Pullover-Medium size-black'),(27375,84,0,1759,'Lawrence Grey Rollneck Pullover'),(27376,86,0,1759,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27377,87,0,1759,'/d/1/d1_6_1.jpg'),(27378,88,0,1759,'/d/1/d1_6_1.jpg'),(27379,89,0,1759,'/d/1/d1_6_1.jpg'),(27380,106,0,1759,'container2'),(27381,121,0,1759,'n-lawrence-grey-rollneck-pullover-medium-size-black'),(27382,132,0,1759,'0'),(27383,133,0,1759,'/d/1/d1_6_1.jpg'),(27384,206,0,1759,'50% merino, 50% acrylic'),(27389,73,0,1760,'Lawrence Grey Rollneck Pullover-Medium size-blue'),(27390,84,0,1760,'Lawrence Grey Rollneck Pullover'),(27391,86,0,1760,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27392,87,0,1760,'/1/_/1_9.jpg'),(27393,88,0,1760,'/1/_/1_9.jpg'),(27394,89,0,1760,'/1/_/1_9.jpg'),(27395,106,0,1760,'container2'),(27396,121,0,1760,'n-lawrence-grey-rollneck-pullover-medium-size-blue'),(27397,132,0,1760,'0'),(27398,133,0,1760,'/1/_/1_9.jpg'),(27399,206,0,1760,'50% merino, 50% acrylic'),(27404,73,0,1761,'Lawrence Grey Rollneck Pullover-Medium size-grey'),(27405,84,0,1761,'Lawrence Grey Rollneck Pullover'),(27406,86,0,1761,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27407,87,0,1761,'/g/1/g1_6.jpg'),(27408,88,0,1761,'/g/1/g1_6.jpg'),(27409,89,0,1761,'/g/1/g1_6.jpg'),(27410,106,0,1761,'container2'),(27411,121,0,1761,'n-lawrence-grey-rollneck-pullover-medium-size-grey'),(27412,132,0,1761,'0'),(27413,133,0,1761,'/g/1/g1_6.jpg'),(27414,206,0,1761,'50% merino, 50% acrylic'),(27419,73,0,1762,'Lawrence Grey Rollneck Pullover-Small size-white'),(27420,84,0,1762,'Lawrence Grey Rollneck Pullover'),(27421,86,0,1762,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27422,87,0,1762,'/w/1/w1_9_1.jpg'),(27423,88,0,1762,'/w/1/w1_9_1.jpg'),(27424,89,0,1762,'/w/1/w1_9_1.jpg'),(27425,106,0,1762,'container2'),(27426,121,0,1762,'n-lawrence-grey-rollneck-pullover-small-size-white'),(27427,132,0,1762,'0'),(27428,133,0,1762,'/w/1/w1_9_1.jpg'),(27429,206,0,1762,'50% merino, 50% acrylic'),(27434,73,0,1763,'Lawrence Grey Rollneck Pullover-Small size-red'),(27435,84,0,1763,'Lawrence Grey Rollneck Pullover'),(27436,86,0,1763,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27437,87,0,1763,'/r/1/r1_9_1.jpg'),(27438,88,0,1763,'/r/1/r1_9_1.jpg'),(27439,89,0,1763,'/r/1/r1_9_1.jpg'),(27440,106,0,1763,'container2'),(27441,121,0,1763,'n-lawrence-grey-rollneck-pullover-small-size-red'),(27442,132,0,1763,'0'),(27443,133,0,1763,'/r/1/r1_9_1.jpg'),(27444,206,0,1763,'50% merino, 50% acrylic'),(27449,73,0,1764,'Lawrence Grey Rollneck Pullover-Small size-black'),(27450,84,0,1764,'Lawrence Grey Rollneck Pullover'),(27451,86,0,1764,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27452,87,0,1764,'/d/1/d1_6_1_1.jpg'),(27453,88,0,1764,'/d/1/d1_6_1_1.jpg'),(27454,89,0,1764,'/d/1/d1_6_1_1.jpg'),(27455,106,0,1764,'container2'),(27456,121,0,1764,'n-lawrence-grey-rollneck-pullover-small-size-black'),(27457,132,0,1764,'0'),(27458,133,0,1764,'/d/1/d1_6_1_1.jpg'),(27459,206,0,1764,'50% merino, 50% acrylic'),(27464,73,0,1765,'Lawrence Grey Rollneck Pullover-Small size-blue'),(27465,84,0,1765,'Lawrence Grey Rollneck Pullover'),(27466,86,0,1765,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27467,87,0,1765,'/1/_/1_9_1.jpg'),(27468,88,0,1765,'/1/_/1_9_1.jpg'),(27469,89,0,1765,'/1/_/1_9_1.jpg'),(27470,106,0,1765,'container2'),(27471,121,0,1765,'n-lawrence-grey-rollneck-pullover-small-size-blue'),(27472,132,0,1765,'0'),(27473,133,0,1765,'/1/_/1_9_1.jpg'),(27474,206,0,1765,'50% merino, 50% acrylic'),(27479,73,0,1766,'Lawrence Grey Rollneck Pullover-Small size-grey'),(27480,84,0,1766,'Lawrence Grey Rollneck Pullover'),(27481,86,0,1766,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27482,87,0,1766,'/g/1/g1_6_1.jpg'),(27483,88,0,1766,'/g/1/g1_6_1.jpg'),(27484,89,0,1766,'/g/1/g1_6_1.jpg'),(27485,106,0,1766,'container2'),(27486,121,0,1766,'n-lawrence-grey-rollneck-pullover-small-size-grey'),(27487,132,0,1766,'0'),(27488,133,0,1766,'/g/1/g1_6_1.jpg'),(27489,206,0,1766,'50% merino, 50% acrylic'),(27494,73,0,1767,'Lawrence Grey Rollneck Pullover-Extra small size-white'),(27495,84,0,1767,'Lawrence Grey Rollneck Pullover'),(27496,86,0,1767,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27497,87,0,1767,'/w/1/w1_9_2.jpg'),(27498,88,0,1767,'/w/1/w1_9_2.jpg'),(27499,89,0,1767,'/w/1/w1_9_2.jpg'),(27500,106,0,1767,'container2'),(27501,121,0,1767,'n-lawrence-grey-rollneck-pullover-extra-small-size-white'),(27502,132,0,1767,'0'),(27503,133,0,1767,'/w/1/w1_9_2.jpg'),(27504,206,0,1767,'50% merino, 50% acrylic'),(27509,73,0,1768,'Lawrence Grey Rollneck Pullover-Extra small size-red'),(27510,84,0,1768,'Lawrence Grey Rollneck Pullover'),(27511,86,0,1768,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27512,87,0,1768,'/r/1/r1_9_2.jpg'),(27513,88,0,1768,'/r/1/r1_9_2.jpg'),(27514,89,0,1768,'/r/1/r1_9_2.jpg'),(27515,106,0,1768,'container2'),(27516,121,0,1768,'n-lawrence-grey-rollneck-pullover-extra-small-size-red'),(27517,132,0,1768,'0'),(27518,133,0,1768,'/r/1/r1_9_2.jpg'),(27519,206,0,1768,'50% merino, 50% acrylic'),(27524,73,0,1769,'Lawrence Grey Rollneck Pullover-Extra small size-black'),(27525,84,0,1769,'Lawrence Grey Rollneck Pullover'),(27526,86,0,1769,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27527,87,0,1769,'/d/1/d1_6_2.jpg'),(27528,88,0,1769,'/d/1/d1_6_2.jpg'),(27529,89,0,1769,'/d/1/d1_6_2.jpg'),(27530,106,0,1769,'container2'),(27531,121,0,1769,'n-lawrence-grey-rollneck-pullover-extra-small-size-black'),(27532,132,0,1769,'0'),(27533,133,0,1769,'/d/1/d1_6_2.jpg'),(27534,206,0,1769,'50% merino, 50% acrylic'),(27539,73,0,1770,'Lawrence Grey Rollneck Pullover-Extra small size-blue'),(27540,84,0,1770,'Lawrence Grey Rollneck Pullover'),(27541,86,0,1770,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27542,87,0,1770,'/1/_/1_9_2.jpg'),(27543,88,0,1770,'/1/_/1_9_2.jpg'),(27544,89,0,1770,'/1/_/1_9_2.jpg'),(27545,106,0,1770,'container2'),(27546,121,0,1770,'n-lawrence-grey-rollneck-pullover-extra-small-size-blue'),(27547,132,0,1770,'0'),(27548,133,0,1770,'/1/_/1_9_2.jpg'),(27549,206,0,1770,'50% merino, 50% acrylic'),(27554,73,0,1771,'Lawrence Grey Rollneck Pullover-Extra small size-grey'),(27555,84,0,1771,'Lawrence Grey Rollneck Pullover'),(27556,86,0,1771,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27557,87,0,1771,'/g/1/g1_6_2.jpg'),(27558,88,0,1771,'/g/1/g1_6_2.jpg'),(27559,89,0,1771,'/g/1/g1_6_2.jpg'),(27560,106,0,1771,'container2'),(27561,121,0,1771,'n-lawrence-grey-rollneck-pullover-extra-small-size-grey'),(27562,132,0,1771,'0'),(27563,133,0,1771,'/g/1/g1_6_2.jpg'),(27564,206,0,1771,'50% merino, 50% acrylic'),(27569,73,0,1772,'Lawrence Grey Rollneck Pullover-Large size-white'),(27570,84,0,1772,'Lawrence Grey Rollneck Pullover'),(27571,86,0,1772,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27572,87,0,1772,'/w/1/w1_9_3.jpg'),(27573,88,0,1772,'/w/1/w1_9_3.jpg'),(27574,89,0,1772,'/w/1/w1_9_3.jpg'),(27575,106,0,1772,'container2'),(27576,121,0,1772,'n-lawrence-grey-rollneck-pullover-large-size-white'),(27577,132,0,1772,'0'),(27578,133,0,1772,'/w/1/w1_9_3.jpg'),(27579,206,0,1772,'50% merino, 50% acrylic'),(27584,73,0,1773,'Lawrence Grey Rollneck Pullover-Large size-red'),(27585,84,0,1773,'Lawrence Grey Rollneck Pullover'),(27586,86,0,1773,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27587,87,0,1773,'/r/1/r1_9_3.jpg'),(27588,88,0,1773,'/r/1/r1_9_3.jpg'),(27589,89,0,1773,'/r/1/r1_9_3.jpg'),(27590,106,0,1773,'container2'),(27591,121,0,1773,'n-lawrence-grey-rollneck-pullover-large-size-red'),(27592,132,0,1773,'0'),(27593,133,0,1773,'/r/1/r1_9_3.jpg'),(27594,206,0,1773,'50% merino, 50% acrylic'),(27599,73,0,1774,'Lawrence Grey Rollneck Pullover-Large size-black'),(27600,84,0,1774,'Lawrence Grey Rollneck Pullover'),(27601,86,0,1774,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27602,87,0,1774,'/d/1/d1_6_3.jpg'),(27603,88,0,1774,'/d/1/d1_6_3.jpg'),(27604,89,0,1774,'/d/1/d1_6_3.jpg'),(27605,106,0,1774,'container2'),(27606,121,0,1774,'n-lawrence-grey-rollneck-pullover-large-size-black'),(27607,132,0,1774,'0'),(27608,133,0,1774,'/d/1/d1_6_3.jpg'),(27609,206,0,1774,'50% merino, 50% acrylic'),(27614,73,0,1775,'Lawrence Grey Rollneck Pullover-Large size-blue'),(27615,84,0,1775,'Lawrence Grey Rollneck Pullover'),(27616,86,0,1775,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27617,87,0,1775,'/1/_/1_9_3.jpg'),(27618,88,0,1775,'/1/_/1_9_3.jpg'),(27619,89,0,1775,'/1/_/1_9_3.jpg'),(27620,106,0,1775,'container2'),(27621,121,0,1775,'n-lawrence-grey-rollneck-pullover-large-size-blue'),(27622,132,0,1775,'0'),(27623,133,0,1775,'/1/_/1_9_3.jpg'),(27624,206,0,1775,'50% merino, 50% acrylic'),(27629,73,0,1776,'Lawrence Grey Rollneck Pullover-Large size-grey'),(27630,84,0,1776,'Lawrence Grey Rollneck Pullover'),(27631,86,0,1776,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27632,87,0,1776,'/g/1/g1_6_3.jpg'),(27633,88,0,1776,'/g/1/g1_6_3.jpg'),(27634,89,0,1776,'/g/1/g1_6_3.jpg'),(27635,106,0,1776,'container2'),(27636,121,0,1776,'n-lawrence-grey-rollneck-pullover-large-size-grey'),(27637,132,0,1776,'0'),(27638,133,0,1776,'/g/1/g1_6_3.jpg'),(27639,206,0,1776,'50% merino, 50% acrylic'),(27644,73,0,1777,'Lawrence Grey Rollneck Pullover'),(27645,84,0,1777,'Lawrence Grey Rollneck Pullover'),(27646,86,0,1777,'Lawrence Grey Rollneck Pullover We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish.\r\nCut: lightly fitted\r\nMeasurements for size EU'),(27647,87,0,1777,'/b/1/b1_13.jpg'),(27648,88,0,1777,'/b/1/b1_13.jpg'),(27649,89,0,1777,'/b/1/b1_13.jpg'),(27650,106,0,1777,'container2'),(27651,121,0,1777,'n-lawrence-grey-rollneck-pullover'),(27652,132,0,1777,'2'),(27653,133,0,1777,'/b/1/b1_13.jpg'),(27654,206,0,1777,'50% merino, 50% acrylic'),(27659,73,0,1778,' Blue Straight Leg Jeans – Rob-grey-Large size'),(27660,84,0,1778,' Blue Straight Leg Jeans – Rob'),(27661,86,0,1778,' Blue Straight Leg Jeans – Rob Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The strik'),(27662,87,0,1778,'/3/3/33e3222_3_1.jpg'),(27663,88,0,1778,'/3/3/33e3222_3_1.jpg'),(27664,89,0,1778,'/3/3/33e3222_3_1.jpg'),(27665,106,0,1778,'container2'),(27666,121,0,1778,'n-blue-straight-leg-jeans-rob-grey-large-size'),(27667,132,0,1778,'0'),(27668,133,0,1778,'/3/3/33e3222_3_1.jpg'),(27673,73,0,1779,' Blue Straight Leg Jeans – Rob-grey-Small size'),(27674,84,0,1779,' Blue Straight Leg Jeans – Rob'),(27675,86,0,1779,' Blue Straight Leg Jeans – Rob Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The strik'),(27676,87,0,1779,'/3/3/33e3222_3_1_1.jpg'),(27677,88,0,1779,'/3/3/33e3222_3_1_1.jpg'),(27678,89,0,1779,'/3/3/33e3222_3_1_1.jpg'),(27679,106,0,1779,'container2'),(27680,121,0,1779,'n-blue-straight-leg-jeans-rob-grey-small-size'),(27681,132,0,1779,'0'),(27682,133,0,1779,'/3/3/33e3222_3_1_1.jpg'),(27687,73,0,1780,' Blue Straight Leg Jeans – Rob-grey-Medium size'),(27688,84,0,1780,' Blue Straight Leg Jeans – Rob'),(27689,86,0,1780,' Blue Straight Leg Jeans – Rob Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The strik'),(27690,87,0,1780,'/3/3/33e3222_3_2.jpg'),(27691,88,0,1780,'/3/3/33e3222_3_2.jpg'),(27692,89,0,1780,'/3/3/33e3222_3_2.jpg'),(27693,106,0,1780,'container2'),(27694,121,0,1780,'n-blue-straight-leg-jeans-rob-grey-medium-size'),(27695,132,0,1780,'0'),(27696,133,0,1780,'/3/3/33e3222_3_2.jpg'),(27701,73,0,1781,' Blue Straight Leg Jeans – Rob-blue-Large size'),(27702,84,0,1781,' Blue Straight Leg Jeans – Rob'),(27703,86,0,1781,' Blue Straight Leg Jeans – Rob Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The strik'),(27704,87,0,1781,'/m/a/main_5_3_1_2.jpg'),(27705,88,0,1781,'/m/a/main_5_3_1_2.jpg'),(27706,89,0,1781,'/m/a/main_5_3_1_2.jpg'),(27707,106,0,1781,'container2'),(27708,121,0,1781,'n-blue-straight-leg-jeans-rob-blue-large-size'),(27709,132,0,1781,'0'),(27710,133,0,1781,'/m/a/main_5_3_1_2.jpg'),(27715,73,0,1782,' Blue Straight Leg Jeans – Rob-blue-Small size'),(27716,84,0,1782,' Blue Straight Leg Jeans – Rob'),(27717,86,0,1782,' Blue Straight Leg Jeans – Rob Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The strik'),(27718,87,0,1782,'/m/a/main_5_3_1_2_1.jpg'),(27719,88,0,1782,'/m/a/main_5_3_1_2_1.jpg'),(27720,89,0,1782,'/m/a/main_5_3_1_2_1.jpg'),(27721,106,0,1782,'container2'),(27722,121,0,1782,'n-blue-straight-leg-jeans-rob-blue-small-size'),(27723,132,0,1782,'0'),(27724,133,0,1782,'/m/a/main_5_3_1_2_1.jpg'),(27729,73,0,1783,' Blue Straight Leg Jeans – Rob-blue-Medium size'),(27730,84,0,1783,' Blue Straight Leg Jeans – Rob'),(27731,86,0,1783,' Blue Straight Leg Jeans – Rob Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The strik'),(27732,87,0,1783,'/m/a/main_5_3_1_3.jpg'),(27733,88,0,1783,'/m/a/main_5_3_1_3.jpg'),(27734,89,0,1783,'/m/a/main_5_3_1_3.jpg'),(27735,106,0,1783,'container2'),(27736,121,0,1783,'n-blue-straight-leg-jeans-rob-blue-medium-size'),(27737,132,0,1783,'0'),(27738,133,0,1783,'/m/a/main_5_3_1_3.jpg'),(27743,73,0,1784,' Blue Straight Leg Jeans – Rob-black-Large size'),(27744,84,0,1784,' Blue Straight Leg Jeans – Rob'),(27745,86,0,1784,' Blue Straight Leg Jeans – Rob Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The strik'),(27746,87,0,1784,'/2/w/2w2w2wss_3_1.jpg'),(27747,88,0,1784,'/2/w/2w2w2wss_3_1.jpg'),(27748,89,0,1784,'/2/w/2w2w2wss_3_1.jpg'),(27749,106,0,1784,'container2'),(27750,121,0,1784,'n-blue-straight-leg-jeans-rob-black-large-size'),(27751,132,0,1784,'0'),(27752,133,0,1784,'/2/w/2w2w2wss_3_1.jpg'),(27757,73,0,1785,' Blue Straight Leg Jeans – Rob-black-Small size'),(27758,84,0,1785,' Blue Straight Leg Jeans – Rob'),(27759,86,0,1785,' Blue Straight Leg Jeans – Rob Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The strik'),(27760,87,0,1785,'/2/w/2w2w2wss_3_1_1.jpg'),(27761,88,0,1785,'/2/w/2w2w2wss_3_1_1.jpg'),(27762,89,0,1785,'/2/w/2w2w2wss_3_1_1.jpg'),(27763,106,0,1785,'container2'),(27764,121,0,1785,'n-blue-straight-leg-jeans-rob-black-small-size'),(27765,132,0,1785,'0'),(27766,133,0,1785,'/2/w/2w2w2wss_3_1_1.jpg'),(27771,73,0,1786,' Blue Straight Leg Jeans – Rob-black-Medium size'),(27772,84,0,1786,' Blue Straight Leg Jeans – Rob'),(27773,86,0,1786,' Blue Straight Leg Jeans – Rob Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The strik'),(27774,87,0,1786,'/2/w/2w2w2wss_3_2.jpg'),(27775,88,0,1786,'/2/w/2w2w2wss_3_2.jpg'),(27776,89,0,1786,'/2/w/2w2w2wss_3_2.jpg'),(27777,106,0,1786,'container2'),(27778,121,0,1786,'n-blue-straight-leg-jeans-rob-black-medium-size'),(27779,132,0,1786,'0'),(27780,133,0,1786,'/2/w/2w2w2wss_3_2.jpg'),(27785,73,0,1787,'Blue Straight Leg Jeans – Rob'),(27786,84,0,1787,' Blue Straight Leg Jeans – Rob'),(27787,86,0,1787,' Blue Straight Leg Jeans – Rob Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The strik'),(27788,87,0,1787,'/m/a/main_5_3_1_1_1.jpg'),(27789,88,0,1787,'/m/a/main_5_3_1_1_1.jpg'),(27790,89,0,1787,'/m/a/main_5_3_1_1_1.jpg'),(27791,106,0,1787,'container2'),(27792,121,0,1787,'n-medium-blue-straight-leg-jeans-rob'),(27793,132,0,1787,'2'),(27794,133,0,1787,'no_selection'),(27799,73,0,1788,'Navy Chino-red-Large size'),(27800,84,0,1788,'Navy Chino'),(27801,86,0,1788,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(27802,87,0,1788,'/r/1/r1_10.jpg'),(27803,88,0,1788,'/r/1/r1_10.jpg'),(27804,89,0,1788,'/r/1/r1_10.jpg'),(27805,106,0,1788,'container2'),(27806,121,0,1788,'n-navy-chino-red-large-size'),(27807,132,0,1788,'0'),(27808,133,0,1788,'/r/1/r1_10.jpg'),(27809,206,0,1788,'98% cotton, 2% elastane'),(27814,73,0,1789,'Navy Chino-red-Small size'),(27815,84,0,1789,'Navy Chino'),(27816,86,0,1789,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(27817,87,0,1789,'/r/1/r1_10_1.jpg'),(27818,88,0,1789,'/r/1/r1_10_1.jpg'),(27819,89,0,1789,'/r/1/r1_10_1.jpg'),(27820,106,0,1789,'container2'),(27821,121,0,1789,'n-navy-chino-red-small-size'),(27822,132,0,1789,'0'),(27823,133,0,1789,'/r/1/r1_10_1.jpg'),(27824,206,0,1789,'98% cotton, 2% elastane'),(27829,73,0,1790,'Navy Chino-red-Extra large size'),(27830,84,0,1790,'Navy Chino'),(27831,86,0,1790,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(27832,87,0,1790,'/r/1/r1_10_2.jpg'),(27833,88,0,1790,'/r/1/r1_10_2.jpg'),(27834,89,0,1790,'/r/1/r1_10_2.jpg'),(27835,106,0,1790,'container2'),(27836,121,0,1790,'n-navy-chino-red-extra-large-size'),(27837,132,0,1790,'0'),(27838,133,0,1790,'/r/1/r1_10_2.jpg'),(27839,206,0,1790,'98% cotton, 2% elastane'),(27844,73,0,1791,'Navy Chino-red-Medium size'),(27845,84,0,1791,'Navy Chino'),(27846,86,0,1791,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(27847,87,0,1791,'/r/1/r1_10_3.jpg'),(27848,88,0,1791,'/r/1/r1_10_3.jpg'),(27849,89,0,1791,'/r/1/r1_10_3.jpg'),(27850,106,0,1791,'container2'),(27851,121,0,1791,'n-navy-chino-red-medium-size'),(27852,132,0,1791,'0'),(27853,133,0,1791,'/r/1/r1_10_3.jpg'),(27854,206,0,1791,'98% cotton, 2% elastane'),(27859,73,0,1792,'Navy Chino-white-Large size'),(27860,84,0,1792,'Navy Chino'),(27861,86,0,1792,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(27862,87,0,1792,'/w/1/w1_10.jpg'),(27863,88,0,1792,'/w/1/w1_10.jpg'),(27864,89,0,1792,'/w/1/w1_10.jpg'),(27865,106,0,1792,'container2'),(27866,121,0,1792,'n-navy-chino-white-large-size'),(27867,132,0,1792,'0'),(27868,133,0,1792,'/w/1/w1_10.jpg'),(27869,206,0,1792,'98% cotton, 2% elastane'),(27874,73,0,1793,'Navy Chino-white-Small size'),(27875,84,0,1793,'Navy Chino'),(27876,86,0,1793,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(27877,87,0,1793,'/w/1/w1_10_1.jpg'),(27878,88,0,1793,'/w/1/w1_10_1.jpg'),(27879,89,0,1793,'/w/1/w1_10_1.jpg'),(27880,106,0,1793,'container2'),(27881,121,0,1793,'n-navy-chino-white-small-size'),(27882,132,0,1793,'0'),(27883,133,0,1793,'/w/1/w1_10_1.jpg'),(27884,206,0,1793,'98% cotton, 2% elastane'),(27889,73,0,1794,'Navy Chino-white-Extra large size'),(27890,84,0,1794,'Navy Chino'),(27891,86,0,1794,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(27892,87,0,1794,'/w/1/w1_10_2.jpg'),(27893,88,0,1794,'/w/1/w1_10_2.jpg'),(27894,89,0,1794,'/w/1/w1_10_2.jpg'),(27895,106,0,1794,'container2'),(27896,121,0,1794,'n-navy-chino-white-extra-large-size'),(27897,132,0,1794,'0'),(27898,133,0,1794,'/w/1/w1_10_2.jpg'),(27899,206,0,1794,'98% cotton, 2% elastane'),(27904,73,0,1795,'Navy Chino-white-Medium size'),(27905,84,0,1795,'Navy Chino'),(27906,86,0,1795,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(27907,87,0,1795,'/w/1/w1_10_3.jpg'),(27908,88,0,1795,'/w/1/w1_10_3.jpg'),(27909,89,0,1795,'/w/1/w1_10_3.jpg'),(27910,106,0,1795,'container2'),(27911,121,0,1795,'n-navy-chino-white-medium-size'),(27912,132,0,1795,'0'),(27913,133,0,1795,'/w/1/w1_10_3.jpg'),(27914,206,0,1795,'98% cotton, 2% elastane'),(27919,73,0,1796,'Navy Chino-blue-Large size'),(27920,84,0,1796,'Navy Chino'),(27921,86,0,1796,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(27922,87,0,1796,'/1/_/1_10.jpg'),(27923,88,0,1796,'/1/_/1_10.jpg'),(27924,89,0,1796,'/1/_/1_10.jpg'),(27925,106,0,1796,'container2'),(27926,121,0,1796,'n-navy-chino-blue-large-size'),(27927,132,0,1796,'0'),(27928,133,0,1796,'/1/_/1_10.jpg'),(27929,206,0,1796,'98% cotton, 2% elastane'),(27934,73,0,1797,'Navy Chino-blue-Small size'),(27935,84,0,1797,'Navy Chino'),(27936,86,0,1797,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(27937,87,0,1797,'/1/_/1_10_1.jpg'),(27938,88,0,1797,'/1/_/1_10_1.jpg'),(27939,89,0,1797,'/1/_/1_10_1.jpg'),(27940,106,0,1797,'container2'),(27941,121,0,1797,'n-navy-chino-blue-small-size'),(27942,132,0,1797,'0'),(27943,133,0,1797,'/1/_/1_10_1.jpg'),(27944,206,0,1797,'98% cotton, 2% elastane'),(27949,73,0,1798,'Navy Chino-blue-Extra large size'),(27950,84,0,1798,'Navy Chino'),(27951,86,0,1798,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(27952,87,0,1798,'/1/_/1_10_2.jpg'),(27953,88,0,1798,'/1/_/1_10_2.jpg'),(27954,89,0,1798,'/1/_/1_10_2.jpg'),(27955,106,0,1798,'container2'),(27956,121,0,1798,'n-navy-chino-blue-extra-large-size'),(27957,132,0,1798,'0'),(27958,133,0,1798,'/1/_/1_10_2.jpg'),(27959,206,0,1798,'98% cotton, 2% elastane'),(27964,73,0,1799,'Navy Chino-blue-Medium size'),(27965,84,0,1799,'Navy Chino'),(27966,86,0,1799,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(27967,87,0,1799,'/1/_/1_10_3.jpg'),(27968,88,0,1799,'/1/_/1_10_3.jpg'),(27969,89,0,1799,'/1/_/1_10_3.jpg'),(27970,106,0,1799,'container2'),(27971,121,0,1799,'n-navy-chino-blue-medium-size'),(27972,132,0,1799,'0'),(27973,133,0,1799,'/1/_/1_10_3.jpg'),(27974,206,0,1799,'98% cotton, 2% elastane'),(27979,73,0,1800,'Navy Chino-brown-Large size'),(27980,84,0,1800,'Navy Chino'),(27981,86,0,1800,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(27982,87,0,1800,'/b/1/b1_14.jpg'),(27983,88,0,1800,'/b/1/b1_14.jpg'),(27984,89,0,1800,'/b/1/b1_14.jpg'),(27985,106,0,1800,'container2'),(27986,121,0,1800,'n-navy-chino-brown-large-size'),(27987,132,0,1800,'0'),(27988,133,0,1800,'/b/1/b1_14.jpg'),(27989,206,0,1800,'98% cotton, 2% elastane'),(27994,73,0,1801,'Navy Chino-brown-Small size'),(27995,84,0,1801,'Navy Chino'),(27996,86,0,1801,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(27997,87,0,1801,'/b/1/b1_14_1.jpg'),(27998,88,0,1801,'/b/1/b1_14_1.jpg'),(27999,89,0,1801,'/b/1/b1_14_1.jpg'),(28000,106,0,1801,'container2'),(28001,121,0,1801,'n-navy-chino-brown-small-size'),(28002,132,0,1801,'0'),(28003,133,0,1801,'/b/1/b1_14_1.jpg'),(28004,206,0,1801,'98% cotton, 2% elastane'),(28009,73,0,1802,'Navy Chino-brown-Extra large size'),(28010,84,0,1802,'Navy Chino'),(28011,86,0,1802,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(28012,87,0,1802,'/b/1/b1_14_2.jpg'),(28013,88,0,1802,'/b/1/b1_14_2.jpg'),(28014,89,0,1802,'/b/1/b1_14_2.jpg'),(28015,106,0,1802,'container2'),(28016,121,0,1802,'n-navy-chino-brown-extra-large-size'),(28017,132,0,1802,'0'),(28018,133,0,1802,'/b/1/b1_14_2.jpg'),(28019,206,0,1802,'98% cotton, 2% elastane'),(28024,73,0,1803,'Navy Chino-brown-Medium size'),(28025,84,0,1803,'Navy Chino'),(28026,86,0,1803,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(28027,87,0,1803,'/b/1/b1_14_3.jpg'),(28028,88,0,1803,'/b/1/b1_14_3.jpg'),(28029,89,0,1803,'/b/1/b1_14_3.jpg'),(28030,106,0,1803,'container2'),(28031,121,0,1803,'n-navy-chino-brown-medium-size'),(28032,132,0,1803,'0'),(28033,133,0,1803,'/b/1/b1_14_3.jpg'),(28034,206,0,1803,'98% cotton, 2% elastane'),(28039,73,0,1804,'Navy Chino-grey-Large size'),(28040,84,0,1804,'Navy Chino'),(28041,86,0,1804,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(28042,87,0,1804,'/g/1/g1_7.jpg'),(28043,88,0,1804,'/g/1/g1_7.jpg'),(28044,89,0,1804,'/g/1/g1_7.jpg'),(28045,106,0,1804,'container2'),(28046,121,0,1804,'n-navy-chino-grey-large-size'),(28047,132,0,1804,'0'),(28048,133,0,1804,'/g/1/g1_7.jpg'),(28049,206,0,1804,'98% cotton, 2% elastane'),(28054,73,0,1805,'Navy Chino-grey-Small size'),(28055,84,0,1805,'Navy Chino'),(28056,86,0,1805,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(28057,87,0,1805,'/g/1/g1_7_1.jpg'),(28058,88,0,1805,'/g/1/g1_7_1.jpg'),(28059,89,0,1805,'/g/1/g1_7_1.jpg'),(28060,106,0,1805,'container2'),(28061,121,0,1805,'n-navy-chino-grey-small-size'),(28062,132,0,1805,'0'),(28063,133,0,1805,'/g/1/g1_7_1.jpg'),(28064,206,0,1805,'98% cotton, 2% elastane'),(28069,73,0,1806,'Navy Chino-grey-Extra large size'),(28070,84,0,1806,'Navy Chino'),(28071,86,0,1806,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(28072,87,0,1806,'/g/1/g1_7_2.jpg'),(28073,88,0,1806,'/g/1/g1_7_2.jpg'),(28074,89,0,1806,'/g/1/g1_7_2.jpg'),(28075,106,0,1806,'container2'),(28076,121,0,1806,'n-navy-chino-grey-extra-large-size'),(28077,132,0,1806,'0'),(28078,133,0,1806,'/g/1/g1_7_2.jpg'),(28079,206,0,1806,'98% cotton, 2% elastane'),(28084,73,0,1807,'Navy Chino-grey-Medium size'),(28085,84,0,1807,'Navy Chino'),(28086,86,0,1807,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(28087,87,0,1807,'/g/1/g1_7_3.jpg'),(28088,88,0,1807,'/g/1/g1_7_3.jpg'),(28089,89,0,1807,'/g/1/g1_7_3.jpg'),(28090,106,0,1807,'container2'),(28091,121,0,1807,'n-navy-chino-grey-medium-size'),(28092,132,0,1807,'0'),(28093,133,0,1807,'/g/1/g1_7_3.jpg'),(28094,206,0,1807,'98% cotton, 2% elastane'),(28099,73,0,1808,'Navy Chino'),(28100,84,0,1808,'Navy Chino'),(28101,86,0,1808,'Navy Chino For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend '),(28102,106,0,1808,'container2'),(28103,121,0,1808,'n-navy-chino'),(28104,132,0,1808,'2'),(28105,206,0,1808,'98% cotton, 2% elastane'),(28106,73,0,1809,' Blue Straight Leg Jeans-brown-Extra small size'),(28107,84,0,1809,' Blue Straight Leg Jeans'),(28108,86,0,1809,' Blue Straight Leg Jeans Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. \r\nB'),(28109,87,0,1809,'/2/e/2e2ewwwww_4.jpg'),(28110,88,0,1809,'/2/e/2e2ewwwww_4.jpg'),(28111,89,0,1809,'/2/e/2e2ewwwww_4.jpg'),(28112,106,0,1809,'container2'),(28113,121,0,1809,'n-blue-straight-leg-jeans-brown-extra-small-size'),(28114,132,0,1809,'0'),(28115,133,0,1809,'/2/e/2e2ewwwww_4.jpg'),(28120,73,0,1810,' Blue Straight Leg Jeans-brown-Large size'),(28121,84,0,1810,' Blue Straight Leg Jeans'),(28122,86,0,1810,' Blue Straight Leg Jeans Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. \r\nB'),(28123,87,0,1810,'/2/e/2e2ewwwww_1_1.jpg'),(28124,88,0,1810,'/2/e/2e2ewwwww_1_1.jpg'),(28125,89,0,1810,'/2/e/2e2ewwwww_1_1.jpg'),(28126,106,0,1810,'container2'),(28127,121,0,1810,'n-blue-straight-leg-jeans-brown-large-size'),(28128,132,0,1810,'0'),(28129,133,0,1810,'/2/e/2e2ewwwww_1_1.jpg'),(28134,73,0,1811,' Blue Straight Leg Jeans-brown-Small size'),(28135,84,0,1811,' Blue Straight Leg Jeans'),(28136,86,0,1811,' Blue Straight Leg Jeans Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. \r\nB'),(28137,87,0,1811,'/2/e/2e2ewwwww_2_1.jpg'),(28138,88,0,1811,'/2/e/2e2ewwwww_2_1.jpg'),(28139,89,0,1811,'/2/e/2e2ewwwww_2_1.jpg'),(28140,106,0,1811,'container2'),(28141,121,0,1811,'n-blue-straight-leg-jeans-brown-small-size'),(28142,132,0,1811,'0'),(28143,133,0,1811,'/2/e/2e2ewwwww_2_1.jpg'),(28148,73,0,1812,' Blue Straight Leg Jeans-brown-Medium size'),(28149,84,0,1812,' Blue Straight Leg Jeans'),(28150,86,0,1812,' Blue Straight Leg Jeans Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. \r\nB'),(28151,87,0,1812,'/2/e/2e2ewwwww_3_1.jpg'),(28152,88,0,1812,'/2/e/2e2ewwwww_3_1.jpg'),(28153,89,0,1812,'/2/e/2e2ewwwww_3_1.jpg'),(28154,106,0,1812,'container2'),(28155,121,0,1812,'n-blue-straight-leg-jeans-brown-medium-size'),(28156,132,0,1812,'0'),(28157,133,0,1812,'/2/e/2e2ewwwww_3_1.jpg'),(28162,73,0,1813,' Blue Straight Leg Jeans-grey-Extra small size'),(28163,84,0,1813,' Blue Straight Leg Jeans'),(28164,86,0,1813,' Blue Straight Leg Jeans Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. \r\nB'),(28165,87,0,1813,'/9/8/98kkjj_1_3_2.jpg'),(28166,88,0,1813,'/9/8/98kkjj_1_3_2.jpg'),(28167,89,0,1813,'/9/8/98kkjj_1_3_2.jpg'),(28168,106,0,1813,'container2'),(28169,121,0,1813,'n-blue-straight-leg-jeans-grey-extra-small-size'),(28170,132,0,1813,'0'),(28171,133,0,1813,'/9/8/98kkjj_1_3_2.jpg'),(28176,73,0,1814,' Blue Straight Leg Jeans-grey-Large size'),(28177,84,0,1814,' Blue Straight Leg Jeans'),(28178,86,0,1814,' Blue Straight Leg Jeans Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. \r\nB'),(28179,87,0,1814,'/9/8/98kkjj_1_3_2_1.jpg'),(28180,88,0,1814,'/9/8/98kkjj_1_3_2_1.jpg'),(28181,89,0,1814,'/9/8/98kkjj_1_3_2_1.jpg'),(28182,106,0,1814,'container2'),(28183,121,0,1814,'n-blue-straight-leg-jeans-grey-large-size'),(28184,132,0,1814,'0'),(28185,133,0,1814,'/9/8/98kkjj_1_3_2_1.jpg'),(28190,73,0,1815,' Blue Straight Leg Jeans-grey-Small size'),(28191,84,0,1815,' Blue Straight Leg Jeans'),(28192,86,0,1815,' Blue Straight Leg Jeans Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. \r\nB'),(28193,87,0,1815,'/9/8/98kkjj_1_3_3.jpg'),(28194,88,0,1815,'/9/8/98kkjj_1_3_3.jpg'),(28195,89,0,1815,'/9/8/98kkjj_1_3_3.jpg'),(28196,106,0,1815,'container2'),(28197,121,0,1815,'n-blue-straight-leg-jeans-grey-small-size'),(28198,132,0,1815,'0'),(28199,133,0,1815,'/9/8/98kkjj_1_3_3.jpg'),(28204,73,0,1816,' Blue Straight Leg Jeans-grey-Medium size'),(28205,84,0,1816,' Blue Straight Leg Jeans'),(28206,86,0,1816,' Blue Straight Leg Jeans Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. \r\nB'),(28207,87,0,1816,'/9/8/98kkjj_1_3_4.jpg'),(28208,88,0,1816,'/9/8/98kkjj_1_3_4.jpg'),(28209,89,0,1816,'/9/8/98kkjj_1_3_4.jpg'),(28210,106,0,1816,'container2'),(28211,121,0,1816,'n-blue-straight-leg-jeans-grey-medium-size'),(28212,132,0,1816,'0'),(28213,133,0,1816,'/9/8/98kkjj_1_3_4.jpg'),(28218,73,0,1817,'Blue Straight Leg Jeans'),(28219,84,0,1817,' Blue Straight Leg Jeans'),(28220,86,0,1817,' Blue Straight Leg Jeans Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. \r\nB'),(28221,87,0,1817,'/9/8/98kkjj_1_3_1_1.jpg'),(28222,88,0,1817,'/9/8/98kkjj_1_3_1_1.jpg'),(28223,89,0,1817,'/9/8/98kkjj_1_3_1_1.jpg'),(28224,106,0,1817,'container2'),(28225,121,0,1817,'n-blue-straight-leg-jeans'),(28226,132,0,1817,'2'),(28227,133,0,1817,'no_selection'),(28472,73,0,1834,' Blue Slim Fit Jeans – Cliff-black-Large size'),(28473,84,0,1834,' Blue Slim Fit Jeans – Cliff'),(28474,86,0,1834,' Blue Slim Fit Jeans – Cliff The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pocket'),(28475,87,0,1834,'/1/w/1w1w1w1w_3.jpg'),(28476,88,0,1834,'/1/w/1w1w1w1w_3.jpg'),(28477,89,0,1834,'/1/w/1w1w1w1w_3.jpg'),(28478,106,0,1834,'container2'),(28479,121,0,1834,'n-blue-slim-fit-jeans-cliff-black-large-size'),(28480,132,0,1834,'0'),(28481,133,0,1834,'/1/w/1w1w1w1w_3.jpg'),(28486,73,0,1835,' Blue Slim Fit Jeans – Cliff-black-Small size'),(28487,84,0,1835,' Blue Slim Fit Jeans – Cliff'),(28488,86,0,1835,' Blue Slim Fit Jeans – Cliff The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pocket'),(28489,87,0,1835,'/1/w/1w1w1w1w_2_1.jpg'),(28490,88,0,1835,'/1/w/1w1w1w1w_2_1.jpg'),(28491,89,0,1835,'/1/w/1w1w1w1w_2_1.jpg'),(28492,106,0,1835,'container2'),(28493,121,0,1835,'n-blue-slim-fit-jeans-cliff-black-small-size'),(28494,132,0,1835,'0'),(28495,133,0,1835,'/1/w/1w1w1w1w_2_1.jpg'),(28500,73,0,1836,' Blue Slim Fit Jeans – Cliff-black-Medium size'),(28501,84,0,1836,' Blue Slim Fit Jeans – Cliff'),(28502,86,0,1836,' Blue Slim Fit Jeans – Cliff The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pocket'),(28503,87,0,1836,'/1/w/1w1w1w1w_3_1.jpg'),(28504,88,0,1836,'/1/w/1w1w1w1w_3_1.jpg'),(28505,89,0,1836,'/1/w/1w1w1w1w_3_1.jpg'),(28506,106,0,1836,'container2'),(28507,121,0,1836,'n-blue-slim-fit-jeans-cliff-black-medium-size'),(28508,132,0,1836,'0'),(28509,133,0,1836,'/1/w/1w1w1w1w_3_1.jpg'),(28514,73,0,1837,' Blue Slim Fit Jeans – Cliff-grey-Large size'),(28515,84,0,1837,' Blue Slim Fit Jeans – Cliff'),(28516,86,0,1837,' Blue Slim Fit Jeans – Cliff The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pocket'),(28517,87,0,1837,'/9/8/98kkjj_1_4.jpg'),(28518,88,0,1837,'/9/8/98kkjj_1_4.jpg'),(28519,89,0,1837,'/9/8/98kkjj_1_4.jpg'),(28520,106,0,1837,'container2'),(28521,121,0,1837,'n-blue-slim-fit-jeans-cliff-grey-large-size'),(28522,132,0,1837,'0'),(28523,133,0,1837,'/9/8/98kkjj_1_4.jpg'),(28528,73,0,1838,' Blue Slim Fit Jeans – Cliff-grey-Small size'),(28529,84,0,1838,' Blue Slim Fit Jeans – Cliff'),(28530,86,0,1838,' Blue Slim Fit Jeans – Cliff The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pocket'),(28531,87,0,1838,'/9/8/98kkjj_1_1_2.jpg'),(28532,88,0,1838,'/9/8/98kkjj_1_1_2.jpg'),(28533,89,0,1838,'/9/8/98kkjj_1_1_2.jpg'),(28534,106,0,1838,'container2'),(28535,121,0,1838,'n-blue-slim-fit-jeans-cliff-grey-small-size'),(28536,132,0,1838,'0'),(28537,133,0,1838,'/9/8/98kkjj_1_1_2.jpg'),(28542,73,0,1839,' Blue Slim Fit Jeans – Cliff-grey-Medium size'),(28543,84,0,1839,' Blue Slim Fit Jeans – Cliff'),(28544,86,0,1839,' Blue Slim Fit Jeans – Cliff The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pocket'),(28545,87,0,1839,'/9/8/98kkjj_1_2_2.jpg'),(28546,88,0,1839,'/9/8/98kkjj_1_2_2.jpg'),(28547,89,0,1839,'/9/8/98kkjj_1_2_2.jpg'),(28548,106,0,1839,'container2'),(28549,121,0,1839,'n-blue-slim-fit-jeans-cliff-grey-medium-size'),(28550,132,0,1839,'0'),(28551,133,0,1839,'/9/8/98kkjj_1_2_2.jpg'),(28556,73,0,1840,'Blue Slim Fit Jeans – Cliff'),(28557,84,0,1840,' Blue Slim Fit Jeans – Cliff'),(28558,86,0,1840,' Blue Slim Fit Jeans – Cliff The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pocket'),(28559,87,0,1840,'/1/w/1w1w1w1w_1_1.jpg'),(28560,88,0,1840,'/1/w/1w1w1w1w_1_1.jpg'),(28561,89,0,1840,'/1/w/1w1w1w1w_1_1.jpg'),(28562,106,0,1840,'container2'),(28563,121,0,1840,'n-medium-blue-slim-fit-jeans-cliff'),(28564,132,0,1840,'2'),(28565,133,0,1840,'no_selection'),(28570,73,0,1841,'Tommy Hilfiger-brown-Extra small size'),(28571,84,0,1841,'Tommy Hilfiger'),(28572,86,0,1841,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28573,87,0,1841,'/b/1/b1_17.jpg'),(28574,88,0,1841,'/b/1/b1_17.jpg'),(28575,89,0,1841,'/b/1/b1_17.jpg'),(28576,106,0,1841,'container2'),(28577,121,0,1841,'n-tommy-hilfiger-brown-extra-small-size'),(28578,132,0,1841,'0'),(28579,133,0,1841,'/b/1/b1_17.jpg'),(28580,206,0,1841,'98% cotton, 2% elastane'),(28585,73,0,1842,'Tommy Hilfiger-brown-Small size'),(28586,84,0,1842,'Tommy Hilfiger'),(28587,86,0,1842,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28588,87,0,1842,'/b/1/b1_17_1.jpg'),(28589,88,0,1842,'/b/1/b1_17_1.jpg'),(28590,89,0,1842,'/b/1/b1_17_1.jpg'),(28591,106,0,1842,'container2'),(28592,121,0,1842,'n-tommy-hilfiger-brown-small-size'),(28593,132,0,1842,'0'),(28594,133,0,1842,'/b/1/b1_17_1.jpg'),(28595,206,0,1842,'98% cotton, 2% elastane'),(28600,73,0,1843,'Tommy Hilfiger-brown-Medium size'),(28601,84,0,1843,'Tommy Hilfiger'),(28602,86,0,1843,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28603,87,0,1843,'/b/1/b1_17_2.jpg'),(28604,88,0,1843,'/b/1/b1_17_2.jpg'),(28605,89,0,1843,'/b/1/b1_17_2.jpg'),(28606,106,0,1843,'container2'),(28607,121,0,1843,'n-tommy-hilfiger-brown-medium-size'),(28608,132,0,1843,'0'),(28609,133,0,1843,'/b/1/b1_17_2.jpg'),(28610,206,0,1843,'98% cotton, 2% elastane'),(28615,73,0,1844,'Tommy Hilfiger-brown-Large size'),(28616,84,0,1844,'Tommy Hilfiger'),(28617,86,0,1844,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28618,87,0,1844,'/b/1/b1_17_3.jpg'),(28619,88,0,1844,'/b/1/b1_17_3.jpg'),(28620,89,0,1844,'/b/1/b1_17_3.jpg'),(28621,106,0,1844,'container2'),(28622,121,0,1844,'n-tommy-hilfiger-brown-large-size'),(28623,132,0,1844,'0'),(28624,133,0,1844,'/b/1/b1_17_3.jpg'),(28625,206,0,1844,'98% cotton, 2% elastane'),(28630,73,0,1845,'Tommy Hilfiger-brown-Extra large size'),(28631,84,0,1845,'Tommy Hilfiger'),(28632,86,0,1845,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28633,87,0,1845,'/b/1/b1_17_4.jpg'),(28634,88,0,1845,'/b/1/b1_17_4.jpg'),(28635,89,0,1845,'/b/1/b1_17_4.jpg'),(28636,106,0,1845,'container2'),(28637,121,0,1845,'n-tommy-hilfiger-brown-extra-large-size'),(28638,132,0,1845,'0'),(28639,133,0,1845,'/b/1/b1_17_4.jpg'),(28640,206,0,1845,'98% cotton, 2% elastane'),(28645,73,0,1846,'Tommy Hilfiger-white-Extra small size'),(28646,84,0,1846,'Tommy Hilfiger'),(28647,86,0,1846,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28648,87,0,1846,'/w/1/w1_13.jpg'),(28649,88,0,1846,'/w/1/w1_13.jpg'),(28650,89,0,1846,'/w/1/w1_13.jpg'),(28651,106,0,1846,'container2'),(28652,121,0,1846,'n-tommy-hilfiger-white-extra-small-size'),(28653,132,0,1846,'0'),(28654,133,0,1846,'/w/1/w1_13.jpg'),(28655,206,0,1846,'98% cotton, 2% elastane'),(28660,73,0,1847,'Tommy Hilfiger-white-Small size'),(28661,84,0,1847,'Tommy Hilfiger'),(28662,86,0,1847,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28663,87,0,1847,'/w/1/w1_13_1.jpg'),(28664,88,0,1847,'/w/1/w1_13_1.jpg'),(28665,89,0,1847,'/w/1/w1_13_1.jpg'),(28666,106,0,1847,'container2'),(28667,121,0,1847,'n-tommy-hilfiger-white-small-size'),(28668,132,0,1847,'0'),(28669,133,0,1847,'/w/1/w1_13_1.jpg'),(28670,206,0,1847,'98% cotton, 2% elastane'),(28675,73,0,1848,'Tommy Hilfiger-white-Medium size'),(28676,84,0,1848,'Tommy Hilfiger'),(28677,86,0,1848,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28678,87,0,1848,'/w/1/w1_13_2.jpg'),(28679,88,0,1848,'/w/1/w1_13_2.jpg'),(28680,89,0,1848,'/w/1/w1_13_2.jpg'),(28681,106,0,1848,'container2'),(28682,121,0,1848,'n-tommy-hilfiger-white-medium-size'),(28683,132,0,1848,'0'),(28684,133,0,1848,'/w/1/w1_13_2.jpg'),(28685,206,0,1848,'98% cotton, 2% elastane'),(28690,73,0,1849,'Tommy Hilfiger-white-Large size'),(28691,84,0,1849,'Tommy Hilfiger'),(28692,86,0,1849,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28693,87,0,1849,'/w/1/w1_13_3.jpg'),(28694,88,0,1849,'/w/1/w1_13_3.jpg'),(28695,89,0,1849,'/w/1/w1_13_3.jpg'),(28696,106,0,1849,'container2'),(28697,121,0,1849,'n-tommy-hilfiger-white-large-size'),(28698,132,0,1849,'0'),(28699,133,0,1849,'/w/1/w1_13_3.jpg'),(28700,206,0,1849,'98% cotton, 2% elastane'),(28705,73,0,1850,'Tommy Hilfiger-white-Extra large size'),(28706,84,0,1850,'Tommy Hilfiger'),(28707,86,0,1850,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28708,87,0,1850,'/w/1/w1_13_4.jpg'),(28709,88,0,1850,'/w/1/w1_13_4.jpg'),(28710,89,0,1850,'/w/1/w1_13_4.jpg'),(28711,106,0,1850,'container2'),(28712,121,0,1850,'n-tommy-hilfiger-white-extra-large-size'),(28713,132,0,1850,'0'),(28714,133,0,1850,'/w/1/w1_13_4.jpg'),(28715,206,0,1850,'98% cotton, 2% elastane'),(28720,73,0,1851,'Tommy Hilfiger-grey-Extra small size'),(28721,84,0,1851,'Tommy Hilfiger'),(28722,86,0,1851,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28723,87,0,1851,'/g/1/g1_10.jpg'),(28724,88,0,1851,'/g/1/g1_10.jpg'),(28725,89,0,1851,'/g/1/g1_10.jpg'),(28726,106,0,1851,'container2'),(28727,121,0,1851,'n-tommy-hilfiger-grey-extra-small-size'),(28728,132,0,1851,'0'),(28729,133,0,1851,'/g/1/g1_10.jpg'),(28730,206,0,1851,'98% cotton, 2% elastane'),(28735,73,0,1852,'Tommy Hilfiger-grey-Small size'),(28736,84,0,1852,'Tommy Hilfiger'),(28737,86,0,1852,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28738,87,0,1852,'/g/1/g1_10_1.jpg'),(28739,88,0,1852,'/g/1/g1_10_1.jpg'),(28740,89,0,1852,'/g/1/g1_10_1.jpg'),(28741,106,0,1852,'container2'),(28742,121,0,1852,'n-tommy-hilfiger-grey-small-size'),(28743,132,0,1852,'0'),(28744,133,0,1852,'/g/1/g1_10_1.jpg'),(28745,206,0,1852,'98% cotton, 2% elastane'),(28750,73,0,1853,'Tommy Hilfiger-grey-Medium size'),(28751,84,0,1853,'Tommy Hilfiger'),(28752,86,0,1853,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28753,87,0,1853,'/g/1/g1_10_2.jpg'),(28754,88,0,1853,'/g/1/g1_10_2.jpg'),(28755,89,0,1853,'/g/1/g1_10_2.jpg'),(28756,106,0,1853,'container2'),(28757,121,0,1853,'n-tommy-hilfiger-grey-medium-size'),(28758,132,0,1853,'0'),(28759,133,0,1853,'/g/1/g1_10_2.jpg'),(28760,206,0,1853,'98% cotton, 2% elastane'),(28765,73,0,1854,'Tommy Hilfiger-grey-Large size'),(28766,84,0,1854,'Tommy Hilfiger'),(28767,86,0,1854,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28768,87,0,1854,'/g/1/g1_10_3.jpg'),(28769,88,0,1854,'/g/1/g1_10_3.jpg'),(28770,89,0,1854,'/g/1/g1_10_3.jpg'),(28771,106,0,1854,'container2'),(28772,121,0,1854,'n-tommy-hilfiger-grey-large-size'),(28773,132,0,1854,'0'),(28774,133,0,1854,'/g/1/g1_10_3.jpg'),(28775,206,0,1854,'98% cotton, 2% elastane'),(28780,73,0,1855,'Tommy Hilfiger-grey-Extra large size'),(28781,84,0,1855,'Tommy Hilfiger'),(28782,86,0,1855,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28783,87,0,1855,'/g/1/g1_10_4.jpg'),(28784,88,0,1855,'/g/1/g1_10_4.jpg'),(28785,89,0,1855,'/g/1/g1_10_4.jpg'),(28786,106,0,1855,'container2'),(28787,121,0,1855,'n-tommy-hilfiger-grey-extra-large-size'),(28788,132,0,1855,'0'),(28789,133,0,1855,'/g/1/g1_10_4.jpg'),(28790,206,0,1855,'98% cotton, 2% elastane'),(28795,73,0,1856,'Tommy Hilfiger-blue-Extra small size'),(28796,84,0,1856,'Tommy Hilfiger'),(28797,86,0,1856,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28798,87,0,1856,'/1/_/1_13.jpg'),(28799,88,0,1856,'/1/_/1_13.jpg'),(28800,89,0,1856,'/1/_/1_13.jpg'),(28801,106,0,1856,'container2'),(28802,121,0,1856,'n-tommy-hilfiger-blue-extra-small-size'),(28803,132,0,1856,'0'),(28804,133,0,1856,'/1/_/1_13.jpg'),(28805,206,0,1856,'98% cotton, 2% elastane'),(28810,73,0,1857,'Tommy Hilfiger-blue-Small size'),(28811,84,0,1857,'Tommy Hilfiger'),(28812,86,0,1857,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28813,87,0,1857,'/1/_/1_13_1.jpg'),(28814,88,0,1857,'/1/_/1_13_1.jpg'),(28815,89,0,1857,'/1/_/1_13_1.jpg'),(28816,106,0,1857,'container2'),(28817,121,0,1857,'n-tommy-hilfiger-blue-small-size'),(28818,132,0,1857,'0'),(28819,133,0,1857,'/1/_/1_13_1.jpg'),(28820,206,0,1857,'98% cotton, 2% elastane'),(28825,73,0,1858,'Tommy Hilfiger-blue-Medium size'),(28826,84,0,1858,'Tommy Hilfiger'),(28827,86,0,1858,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28828,87,0,1858,'/1/_/1_13_2.jpg'),(28829,88,0,1858,'/1/_/1_13_2.jpg'),(28830,89,0,1858,'/1/_/1_13_2.jpg'),(28831,106,0,1858,'container2'),(28832,121,0,1858,'n-tommy-hilfiger-blue-medium-size'),(28833,132,0,1858,'0'),(28834,133,0,1858,'/1/_/1_13_2.jpg'),(28835,206,0,1858,'98% cotton, 2% elastane'),(28840,73,0,1859,'Tommy Hilfiger-blue-Large size'),(28841,84,0,1859,'Tommy Hilfiger'),(28842,86,0,1859,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28843,87,0,1859,'/1/_/1_13_3.jpg'),(28844,88,0,1859,'/1/_/1_13_3.jpg'),(28845,89,0,1859,'/1/_/1_13_3.jpg'),(28846,106,0,1859,'container2'),(28847,121,0,1859,'n-tommy-hilfiger-blue-large-size'),(28848,132,0,1859,'0'),(28849,133,0,1859,'/1/_/1_13_3.jpg'),(28850,206,0,1859,'98% cotton, 2% elastane'),(28855,73,0,1860,'Tommy Hilfiger-blue-Extra large size'),(28856,84,0,1860,'Tommy Hilfiger'),(28857,86,0,1860,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28858,87,0,1860,'/1/_/1_13_4.jpg'),(28859,88,0,1860,'/1/_/1_13_4.jpg'),(28860,89,0,1860,'/1/_/1_13_4.jpg'),(28861,106,0,1860,'container2'),(28862,121,0,1860,'n-tommy-hilfiger-blue-extra-large-size'),(28863,132,0,1860,'0'),(28864,133,0,1860,'/1/_/1_13_4.jpg'),(28865,206,0,1860,'98% cotton, 2% elastane'),(28870,73,0,1861,'Tommy Hilfiger-red-Extra small size'),(28871,84,0,1861,'Tommy Hilfiger'),(28872,86,0,1861,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28873,87,0,1861,'/r/1/r1_12.jpg'),(28874,88,0,1861,'/r/1/r1_12.jpg'),(28875,89,0,1861,'/r/1/r1_12.jpg'),(28876,106,0,1861,'container2'),(28877,121,0,1861,'n-tommy-hilfiger-red-extra-small-size'),(28878,132,0,1861,'0'),(28879,133,0,1861,'/r/1/r1_12.jpg'),(28880,206,0,1861,'98% cotton, 2% elastane'),(28885,73,0,1862,'Tommy Hilfiger-red-Small size'),(28886,84,0,1862,'Tommy Hilfiger'),(28887,86,0,1862,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28888,87,0,1862,'/r/1/r1_12_1.jpg'),(28889,88,0,1862,'/r/1/r1_12_1.jpg'),(28890,89,0,1862,'/r/1/r1_12_1.jpg'),(28891,106,0,1862,'container2'),(28892,121,0,1862,'n-tommy-hilfiger-red-small-size'),(28893,132,0,1862,'0'),(28894,133,0,1862,'/r/1/r1_12_1.jpg'),(28895,206,0,1862,'98% cotton, 2% elastane'),(28900,73,0,1863,'Tommy Hilfiger-red-Medium size'),(28901,84,0,1863,'Tommy Hilfiger'),(28902,86,0,1863,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28903,87,0,1863,'/r/1/r1_12_2.jpg'),(28904,88,0,1863,'/r/1/r1_12_2.jpg'),(28905,89,0,1863,'/r/1/r1_12_2.jpg'),(28906,106,0,1863,'container2'),(28907,121,0,1863,'n-tommy-hilfiger-red-medium-size'),(28908,132,0,1863,'0'),(28909,133,0,1863,'/r/1/r1_12_2.jpg'),(28910,206,0,1863,'98% cotton, 2% elastane'),(28915,73,0,1864,'Tommy Hilfiger-red-Large size'),(28916,84,0,1864,'Tommy Hilfiger'),(28917,86,0,1864,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28918,87,0,1864,'/r/1/r1_12_3.jpg'),(28919,88,0,1864,'/r/1/r1_12_3.jpg'),(28920,89,0,1864,'/r/1/r1_12_3.jpg'),(28921,106,0,1864,'container2'),(28922,121,0,1864,'n-tommy-hilfiger-red-large-size'),(28923,132,0,1864,'0'),(28924,133,0,1864,'/r/1/r1_12_3.jpg'),(28925,206,0,1864,'98% cotton, 2% elastane'),(28930,73,0,1865,'Tommy Hilfiger-red-Extra large size'),(28931,84,0,1865,'Tommy Hilfiger'),(28932,86,0,1865,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28933,87,0,1865,'/r/1/r1_12_4.jpg'),(28934,88,0,1865,'/r/1/r1_12_4.jpg'),(28935,89,0,1865,'/r/1/r1_12_4.jpg'),(28936,106,0,1865,'container2'),(28937,121,0,1865,'n-tommy-hilfiger-red-extra-large-size'),(28938,132,0,1865,'0'),(28939,133,0,1865,'/r/1/r1_12_4.jpg'),(28940,206,0,1865,'98% cotton, 2% elastane'),(28945,73,0,1866,'Tommy Hilfiger'),(28946,84,0,1866,'Tommy Hilfiger'),(28947,86,0,1866,'Tommy Hilfiger Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outsid'),(28948,87,0,1866,'/r/1/r1_13.jpg'),(28949,88,0,1866,'/r/1/r1_13.jpg'),(28950,89,0,1866,'/r/1/r1_13.jpg'),(28951,106,0,1866,'container2'),(28952,121,0,1866,'n-tommy-hilfiger'),(28953,132,0,1866,'2'),(28954,133,0,1866,'/r/1/r1_13.jpg'),(28955,206,0,1866,'98% cotton, 2% elastane'),(28960,73,0,1867,' Blue Slim Fit Jeans-black-Small size'),(28961,84,0,1867,' Blue Slim Fit Jeans'),(28962,86,0,1867,' Blue Slim Fit Jeans Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five poc'),(28963,87,0,1867,'/2/1/21245tt45t_4.jpg'),(28964,88,0,1867,'/2/1/21245tt45t_4.jpg'),(28965,89,0,1867,'/2/1/21245tt45t_4.jpg'),(28966,106,0,1867,'container2'),(28967,121,0,1867,'n-blue-slim-fit-jeans-black-small-size'),(28968,132,0,1867,'0'),(28969,133,0,1867,'/2/1/21245tt45t_4.jpg'),(28974,73,0,1868,' Blue Slim Fit Jeans-black-Medium size'),(28975,84,0,1868,' Blue Slim Fit Jeans'),(28976,86,0,1868,' Blue Slim Fit Jeans Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five poc'),(28977,87,0,1868,'/2/1/21245tt45t_2_1.jpg'),(28978,88,0,1868,'/2/1/21245tt45t_2_1.jpg'),(28979,89,0,1868,'/2/1/21245tt45t_2_1.jpg'),(28980,106,0,1868,'container2'),(28981,121,0,1868,'n-blue-slim-fit-jeans-black-medium-size'),(28982,132,0,1868,'0'),(28983,133,0,1868,'/2/1/21245tt45t_2_1.jpg'),(28988,73,0,1869,' Blue Slim Fit Jeans-black-Extra large size'),(28989,84,0,1869,' Blue Slim Fit Jeans'),(28990,86,0,1869,' Blue Slim Fit Jeans Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five poc'),(28991,87,0,1869,'/2/1/21245tt45t_3_1.jpg'),(28992,88,0,1869,'/2/1/21245tt45t_3_1.jpg'),(28993,89,0,1869,'/2/1/21245tt45t_3_1.jpg'),(28994,106,0,1869,'container2'),(28995,121,0,1869,'n-blue-slim-fit-jeans-black-extra-large-size'),(28996,132,0,1869,'0'),(28997,133,0,1869,'/2/1/21245tt45t_3_1.jpg'),(29002,73,0,1870,' Blue Slim Fit Jeans-black-Large size'),(29003,84,0,1870,' Blue Slim Fit Jeans'),(29004,86,0,1870,' Blue Slim Fit Jeans Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five poc'),(29005,87,0,1870,'/2/1/21245tt45t_4_1.jpg'),(29006,88,0,1870,'/2/1/21245tt45t_4_1.jpg'),(29007,89,0,1870,'/2/1/21245tt45t_4_1.jpg'),(29008,106,0,1870,'container2'),(29009,121,0,1870,'n-blue-slim-fit-jeans-black-large-size'),(29010,132,0,1870,'0'),(29011,133,0,1870,'/2/1/21245tt45t_4_1.jpg'),(29016,73,0,1871,' Blue Slim Fit Jeans-grey-Small size'),(29017,84,0,1871,' Blue Slim Fit Jeans'),(29018,86,0,1871,' Blue Slim Fit Jeans Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five poc'),(29019,87,0,1871,'/4/5/45465tggg_4.jpg'),(29020,88,0,1871,'/4/5/45465tggg_4.jpg'),(29021,89,0,1871,'/4/5/45465tggg_4.jpg'),(29022,106,0,1871,'container2'),(29023,121,0,1871,'n-blue-slim-fit-jeans-grey-small-size'),(29024,132,0,1871,'0'),(29025,133,0,1871,'/4/5/45465tggg_4.jpg'),(29030,73,0,1872,' Blue Slim Fit Jeans-grey-Medium size'),(29031,84,0,1872,' Blue Slim Fit Jeans'),(29032,86,0,1872,' Blue Slim Fit Jeans Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five poc'),(29033,87,0,1872,'/4/5/45465tggg_1_1.jpg'),(29034,88,0,1872,'/4/5/45465tggg_1_1.jpg'),(29035,89,0,1872,'/4/5/45465tggg_1_1.jpg'),(29036,106,0,1872,'container2'),(29037,121,0,1872,'n-blue-slim-fit-jeans-grey-medium-size'),(29038,132,0,1872,'0'),(29039,133,0,1872,'/4/5/45465tggg_1_1.jpg'),(29044,73,0,1873,' Blue Slim Fit Jeans-grey-Extra large size'),(29045,84,0,1873,' Blue Slim Fit Jeans'),(29046,86,0,1873,' Blue Slim Fit Jeans Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five poc'),(29047,87,0,1873,'/4/5/45465tggg_2_1.jpg'),(29048,88,0,1873,'/4/5/45465tggg_2_1.jpg'),(29049,89,0,1873,'/4/5/45465tggg_2_1.jpg'),(29050,106,0,1873,'container2'),(29051,121,0,1873,'n-blue-slim-fit-jeans-grey-extra-large-size'),(29052,132,0,1873,'0'),(29053,133,0,1873,'/4/5/45465tggg_2_1.jpg'),(29058,73,0,1874,' Blue Slim Fit Jeans-grey-Large size'),(29059,84,0,1874,' Blue Slim Fit Jeans'),(29060,86,0,1874,' Blue Slim Fit Jeans Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five poc'),(29061,87,0,1874,'/4/5/45465tggg_3_1.jpg'),(29062,88,0,1874,'/4/5/45465tggg_3_1.jpg'),(29063,89,0,1874,'/4/5/45465tggg_3_1.jpg'),(29064,106,0,1874,'container2'),(29065,121,0,1874,'n-blue-slim-fit-jeans-grey-large-size'),(29066,132,0,1874,'0'),(29067,133,0,1874,'/4/5/45465tggg_3_1.jpg'),(29072,73,0,1875,'Blue Slim Fit Jeans'),(29073,84,0,1875,' Blue Slim Fit Jeans'),(29074,86,0,1875,' Blue Slim Fit Jeans Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five poc'),(29075,87,0,1875,'/2/1/21245tt45t_1_1.jpg'),(29076,88,0,1875,'/2/1/21245tt45t_1_1.jpg'),(29077,89,0,1875,'/2/1/21245tt45t_1_1.jpg'),(29078,106,0,1875,'container2'),(29079,121,0,1875,'n-blue-slim-fit-jeans'),(29080,132,0,1875,'2'),(29081,133,0,1875,'no_selection'),(29086,73,0,1876,'Gabba Long-sleeved Jumper-Large size-black'),(29087,84,0,1876,'Gabba Long-sleeved Jumper'),(29088,86,0,1876,'Gabba Long-sleeved Jumper Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Str'),(29089,87,0,1876,'/d/1/d1_7_1.jpg'),(29090,88,0,1876,'/d/1/d1_7_1.jpg'),(29091,89,0,1876,'/d/1/d1_7_1.jpg'),(29092,106,0,1876,'container2'),(29093,121,0,1876,'n-gabba-long-sleeved-jumper-large-size-black'),(29094,132,0,1876,'0'),(29095,133,0,1876,'/d/1/d1_7_1.jpg'),(29096,206,0,1876,'70% cotton, 30% linen'),(29101,73,0,1877,'Gabba Long-sleeved Jumper-Large size-brown'),(29102,84,0,1877,'Gabba Long-sleeved Jumper'),(29103,86,0,1877,'Gabba Long-sleeved Jumper Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Str'),(29104,87,0,1877,'/b/1/b1_18.jpg'),(29105,88,0,1877,'/b/1/b1_18.jpg'),(29106,89,0,1877,'/b/1/b1_18.jpg'),(29107,106,0,1877,'container2'),(29108,121,0,1877,'n-gabba-long-sleeved-jumper-large-size-brown'),(29109,132,0,1877,'0'),(29110,133,0,1877,'/b/1/b1_18.jpg'),(29111,206,0,1877,'70% cotton, 30% linen'),(29116,73,0,1878,'Gabba Long-sleeved Jumper-Large size-grey'),(29117,84,0,1878,'Gabba Long-sleeved Jumper'),(29118,86,0,1878,'Gabba Long-sleeved Jumper Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Str'),(29119,87,0,1878,'/g/1/g1_11.jpg'),(29120,88,0,1878,'/g/1/g1_11.jpg'),(29121,89,0,1878,'/g/1/g1_11.jpg'),(29122,106,0,1878,'container2'),(29123,121,0,1878,'n-gabba-long-sleeved-jumper-large-size-grey'),(29124,132,0,1878,'0'),(29125,133,0,1878,'/g/1/g1_11.jpg'),(29126,206,0,1878,'70% cotton, 30% linen'),(29131,73,0,1879,'Gabba Long-sleeved Jumper-Extra small size-black'),(29132,84,0,1879,'Gabba Long-sleeved Jumper'),(29133,86,0,1879,'Gabba Long-sleeved Jumper Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Str'),(29134,87,0,1879,'/d/1/d1_7_1_1.jpg'),(29135,88,0,1879,'/d/1/d1_7_1_1.jpg'),(29136,89,0,1879,'/d/1/d1_7_1_1.jpg'),(29137,106,0,1879,'container2'),(29138,121,0,1879,'n-gabba-long-sleeved-jumper-extra-small-size-black'),(29139,132,0,1879,'0'),(29140,133,0,1879,'/d/1/d1_7_1_1.jpg'),(29141,206,0,1879,'70% cotton, 30% linen'),(29146,73,0,1880,'Gabba Long-sleeved Jumper-Extra small size-brown'),(29147,84,0,1880,'Gabba Long-sleeved Jumper'),(29148,86,0,1880,'Gabba Long-sleeved Jumper Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Str'),(29149,87,0,1880,'/b/1/b1_18_1.jpg'),(29150,88,0,1880,'/b/1/b1_18_1.jpg'),(29151,89,0,1880,'/b/1/b1_18_1.jpg'),(29152,106,0,1880,'container2'),(29153,121,0,1880,'n-gabba-long-sleeved-jumper-extra-small-size-brown'),(29154,132,0,1880,'0'),(29155,133,0,1880,'/b/1/b1_18_1.jpg'),(29156,206,0,1880,'70% cotton, 30% linen'),(29161,73,0,1881,'Gabba Long-sleeved Jumper-Extra small size-grey'),(29162,84,0,1881,'Gabba Long-sleeved Jumper'),(29163,86,0,1881,'Gabba Long-sleeved Jumper Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Str'),(29164,87,0,1881,'/g/1/g1_11_1.jpg'),(29165,88,0,1881,'/g/1/g1_11_1.jpg'),(29166,89,0,1881,'/g/1/g1_11_1.jpg'),(29167,106,0,1881,'container2'),(29168,121,0,1881,'n-gabba-long-sleeved-jumper-extra-small-size-grey'),(29169,132,0,1881,'0'),(29170,133,0,1881,'/g/1/g1_11_1.jpg'),(29171,206,0,1881,'70% cotton, 30% linen'),(29176,73,0,1882,'Gabba Long-sleeved Jumper-Small size-black'),(29177,84,0,1882,'Gabba Long-sleeved Jumper'),(29178,86,0,1882,'Gabba Long-sleeved Jumper Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Str'),(29179,87,0,1882,'/d/1/d1_7_2.jpg'),(29180,88,0,1882,'/d/1/d1_7_2.jpg'),(29181,89,0,1882,'/d/1/d1_7_2.jpg'),(29182,106,0,1882,'container2'),(29183,121,0,1882,'n-gabba-long-sleeved-jumper-small-size-black'),(29184,132,0,1882,'0'),(29185,133,0,1882,'/d/1/d1_7_2.jpg'),(29186,206,0,1882,'70% cotton, 30% linen'),(29191,73,0,1883,'Gabba Long-sleeved Jumper-Small size-brown'),(29192,84,0,1883,'Gabba Long-sleeved Jumper'),(29193,86,0,1883,'Gabba Long-sleeved Jumper Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Str'),(29194,87,0,1883,'/b/1/b1_18_2.jpg'),(29195,88,0,1883,'/b/1/b1_18_2.jpg'),(29196,89,0,1883,'/b/1/b1_18_2.jpg'),(29197,106,0,1883,'container2'),(29198,121,0,1883,'n-gabba-long-sleeved-jumper-small-size-brown'),(29199,132,0,1883,'0'),(29200,133,0,1883,'/b/1/b1_18_2.jpg'),(29201,206,0,1883,'70% cotton, 30% linen'),(29206,73,0,1884,'Gabba Long-sleeved Jumper-Small size-grey'),(29207,84,0,1884,'Gabba Long-sleeved Jumper'),(29208,86,0,1884,'Gabba Long-sleeved Jumper Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Str'),(29209,87,0,1884,'/g/1/g1_11_2.jpg'),(29210,88,0,1884,'/g/1/g1_11_2.jpg'),(29211,89,0,1884,'/g/1/g1_11_2.jpg'),(29212,106,0,1884,'container2'),(29213,121,0,1884,'n-gabba-long-sleeved-jumper-small-size-grey'),(29214,132,0,1884,'0'),(29215,133,0,1884,'/g/1/g1_11_2.jpg'),(29216,206,0,1884,'70% cotton, 30% linen'),(29221,73,0,1885,'Gabba Long-sleeved Jumper-Medium size-black'),(29222,84,0,1885,'Gabba Long-sleeved Jumper'),(29223,86,0,1885,'Gabba Long-sleeved Jumper Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Str'),(29224,87,0,1885,'/d/1/d1_7_3.jpg'),(29225,88,0,1885,'/d/1/d1_7_3.jpg'),(29226,89,0,1885,'/d/1/d1_7_3.jpg'),(29227,106,0,1885,'container2'),(29228,121,0,1885,'n-gabba-long-sleeved-jumper-medium-size-black'),(29229,132,0,1885,'0'),(29230,133,0,1885,'/d/1/d1_7_3.jpg'),(29231,206,0,1885,'70% cotton, 30% linen'),(29236,73,0,1886,'Gabba Long-sleeved Jumper-Medium size-brown'),(29237,84,0,1886,'Gabba Long-sleeved Jumper'),(29238,86,0,1886,'Gabba Long-sleeved Jumper Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Str'),(29239,87,0,1886,'/b/1/b1_18_3.jpg'),(29240,88,0,1886,'/b/1/b1_18_3.jpg'),(29241,89,0,1886,'/b/1/b1_18_3.jpg'),(29242,106,0,1886,'container2'),(29243,121,0,1886,'n-gabba-long-sleeved-jumper-medium-size-brown'),(29244,132,0,1886,'0'),(29245,133,0,1886,'/b/1/b1_18_3.jpg'),(29246,206,0,1886,'70% cotton, 30% linen'),(29251,73,0,1887,'Gabba Long-sleeved Jumper-Medium size-grey'),(29252,84,0,1887,'Gabba Long-sleeved Jumper'),(29253,86,0,1887,'Gabba Long-sleeved Jumper Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Str'),(29254,87,0,1887,'/g/1/g1_11_3.jpg'),(29255,88,0,1887,'/g/1/g1_11_3.jpg'),(29256,89,0,1887,'/g/1/g1_11_3.jpg'),(29257,106,0,1887,'container2'),(29258,121,0,1887,'n-gabba-long-sleeved-jumper-medium-size-grey'),(29259,132,0,1887,'0'),(29260,133,0,1887,'/g/1/g1_11_3.jpg'),(29261,206,0,1887,'70% cotton, 30% linen'),(29266,73,0,1888,'Gabba Long-sleeved Jumper'),(29267,84,0,1888,'Gabba Long-sleeved Jumper'),(29268,86,0,1888,'Gabba Long-sleeved Jumper Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Str'),(29269,87,0,1888,'/w/1/w1_14.jpg'),(29270,88,0,1888,'/w/1/w1_14.jpg'),(29271,89,0,1888,'/w/1/w1_14.jpg'),(29272,106,0,1888,'container2'),(29273,121,0,1888,'n-gabba-long-sleeved-jumper'),(29274,132,0,1888,'2'),(29275,133,0,1888,'/w/1/w1_14.jpg'),(29276,206,0,1888,'70% cotton, 30% linen'),(29281,73,0,1889,'Navy John 16511-Large size-black'),(29282,84,0,1889,'Navy John 16511'),(29283,86,0,1889,'Navy John 16511 Upgrade your essential denim options with the Baldessarini Jack jeans. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket desig'),(29284,87,0,1889,'/1/_/1_14.jpg'),(29285,88,0,1889,'/1/_/1_14.jpg'),(29286,89,0,1889,'/1/_/1_14.jpg'),(29287,106,0,1889,'container2'),(29288,121,0,1889,'n-navy-john-16511-large-size-black'),(29289,132,0,1889,'0'),(29290,133,0,1889,'/1/_/1_14.jpg'),(29291,206,0,1889,'97% cotton, 3% elastane'),(29296,73,0,1890,'Navy John 16511-Small size-black'),(29297,84,0,1890,'Navy John 16511'),(29298,86,0,1890,'Navy John 16511 Upgrade your essential denim options with the Baldessarini Jack jeans. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket desig'),(29299,87,0,1890,'/1/_/1_14_1.jpg'),(29300,88,0,1890,'/1/_/1_14_1.jpg'),(29301,89,0,1890,'/1/_/1_14_1.jpg'),(29302,106,0,1890,'container2'),(29303,121,0,1890,'n-navy-john-16511-small-size-black'),(29304,132,0,1890,'0'),(29305,133,0,1890,'/1/_/1_14_1.jpg'),(29306,206,0,1890,'97% cotton, 3% elastane'),(29311,73,0,1891,'Navy John 16511-Medium size-black'),(29312,84,0,1891,'Navy John 16511'),(29313,86,0,1891,'Navy John 16511 Upgrade your essential denim options with the Baldessarini Jack jeans. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket desig'),(29314,87,0,1891,'/1/_/1_14_2.jpg'),(29315,88,0,1891,'/1/_/1_14_2.jpg'),(29316,89,0,1891,'/1/_/1_14_2.jpg'),(29317,106,0,1891,'container2'),(29318,121,0,1891,'n-navy-john-16511-medium-size-black'),(29319,132,0,1891,'0'),(29320,133,0,1891,'/1/_/1_14_2.jpg'),(29321,206,0,1891,'97% cotton, 3% elastane'),(29326,73,0,1892,'Navy John 16511'),(29327,84,0,1892,'Navy John 16511'),(29328,86,0,1892,'Navy John 16511 Upgrade your essential denim options with the Baldessarini Jack jeans. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket desig'),(29329,87,0,1892,'/1/_/1_15.jpg'),(29330,88,0,1892,'/1/_/1_15.jpg'),(29331,89,0,1892,'/1/_/1_15.jpg'),(29332,106,0,1892,'container2'),(29333,121,0,1892,'n-navy-john-16511'),(29334,132,0,1892,'2'),(29335,133,0,1892,'/1/_/1_15.jpg'),(29336,206,0,1892,'97% cotton, 3% elastane'),(29341,73,0,1893,'Dark Blue Julyen-blue-Small size'),(29342,84,0,1893,'Dark Blue Julyen'),(29343,86,0,1893,'Dark Blue Julyen Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. \r\nManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: w'),(29344,87,0,1893,'/1/_/1_16.jpg'),(29345,88,0,1893,'/1/_/1_16.jpg'),(29346,89,0,1893,'/1/_/1_16.jpg'),(29347,106,0,1893,'container2'),(29348,121,0,1893,'n-dark-blue-julyen-blue-small-size'),(29349,132,0,1893,'0'),(29350,133,0,1893,'/1/_/1_16.jpg'),(29351,206,0,1893,'98% cotton, 2% elastane'),(29356,73,0,1894,'Dark Blue Julyen-blue-Large size'),(29357,84,0,1894,'Dark Blue Julyen'),(29358,86,0,1894,'Dark Blue Julyen Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. \r\nManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: w'),(29359,87,0,1894,'/1/_/1_16_1.jpg'),(29360,88,0,1894,'/1/_/1_16_1.jpg'),(29361,89,0,1894,'/1/_/1_16_1.jpg'),(29362,106,0,1894,'container2'),(29363,121,0,1894,'n-dark-blue-julyen-blue-large-size'),(29364,132,0,1894,'0'),(29365,133,0,1894,'/1/_/1_16_1.jpg'),(29366,206,0,1894,'98% cotton, 2% elastane'),(29371,73,0,1895,'Dark Blue Julyen-blue-Medium size'),(29372,84,0,1895,'Dark Blue Julyen'),(29373,86,0,1895,'Dark Blue Julyen Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. \r\nManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: w'),(29374,87,0,1895,'/1/_/1_16_2.jpg'),(29375,88,0,1895,'/1/_/1_16_2.jpg'),(29376,89,0,1895,'/1/_/1_16_2.jpg'),(29377,106,0,1895,'container2'),(29378,121,0,1895,'n-dark-blue-julyen-blue-medium-size'),(29379,132,0,1895,'0'),(29380,133,0,1895,'/1/_/1_16_2.jpg'),(29381,206,0,1895,'98% cotton, 2% elastane'),(29386,73,0,1896,'Dark Blue Julyen'),(29387,84,0,1896,'Dark Blue Julyen'),(29388,86,0,1896,'Dark Blue Julyen Crosshatch men’s Julyen  5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. \r\nManufacturers product information: regular fitCut: straight legMeasurements for size EU 32: w'),(29389,87,0,1896,'/1/_/1_17.jpg'),(29390,88,0,1896,'/1/_/1_17.jpg'),(29391,89,0,1896,'/1/_/1_17.jpg'),(29392,106,0,1896,'container2'),(29393,121,0,1896,'n-dark-blue-julyen'),(29394,132,0,1896,'2'),(29395,133,0,1896,'/1/_/1_17.jpg'),(29396,206,0,1896,'98% cotton, 2% elastane'),(29401,73,0,1897,' Black Sweat Pants-blue-Extra small size'),(29402,84,0,1897,' Black Sweat Pants'),(29403,86,0,1897,' Black Sweat Pants These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.\r\nCut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: leng'),(29404,87,0,1897,'/1/2/12w222_3.jpg'),(29405,88,0,1897,'/1/2/12w222_3.jpg'),(29406,89,0,1897,'/1/2/12w222_3.jpg'),(29407,106,0,1897,'container2'),(29408,121,0,1897,'n-black-sweat-pants-blue-extra-small-size'),(29409,132,0,1897,'0'),(29410,133,0,1897,'/1/2/12w222_3.jpg'),(29415,73,0,1898,' Black Sweat Pants-blue-Small size'),(29416,84,0,1898,' Black Sweat Pants'),(29417,86,0,1898,' Black Sweat Pants These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.\r\nCut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: leng'),(29418,87,0,1898,'/1/2/12w222_1_1.jpg'),(29419,88,0,1898,'/1/2/12w222_1_1.jpg'),(29420,89,0,1898,'/1/2/12w222_1_1.jpg'),(29421,106,0,1898,'container2'),(29422,121,0,1898,'n-black-sweat-pants-blue-small-size'),(29423,132,0,1898,'0'),(29424,133,0,1898,'/1/2/12w222_1_1.jpg'),(29429,73,0,1899,' Black Sweat Pants-blue-Medium size'),(29430,84,0,1899,' Black Sweat Pants'),(29431,86,0,1899,' Black Sweat Pants These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.\r\nCut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: leng'),(29432,87,0,1899,'/1/2/12w222_2_1.jpg'),(29433,88,0,1899,'/1/2/12w222_2_1.jpg'),(29434,89,0,1899,'/1/2/12w222_2_1.jpg'),(29435,106,0,1899,'container2'),(29436,121,0,1899,'n-black-sweat-pants-blue-medium-size'),(29437,132,0,1899,'0'),(29438,133,0,1899,'/1/2/12w222_2_1.jpg'),(29443,73,0,1900,' Black Sweat Pants-red-Extra small size'),(29444,84,0,1900,' Black Sweat Pants'),(29445,86,0,1900,' Black Sweat Pants These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.\r\nCut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: leng'),(29446,87,0,1900,'/3/r/3rr44_3.jpg'),(29447,88,0,1900,'/3/r/3rr44_3.jpg'),(29448,89,0,1900,'/3/r/3rr44_3.jpg'),(29449,106,0,1900,'container2'),(29450,121,0,1900,'n-black-sweat-pants-red-extra-small-size'),(29451,132,0,1900,'0'),(29452,133,0,1900,'/3/r/3rr44_3.jpg'),(29457,73,0,1901,' Black Sweat Pants-red-Small size'),(29458,84,0,1901,' Black Sweat Pants'),(29459,86,0,1901,' Black Sweat Pants These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.\r\nCut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: leng'),(29460,87,0,1901,'/3/r/3rr44_2_1.jpg'),(29461,88,0,1901,'/3/r/3rr44_2_1.jpg'),(29462,89,0,1901,'/3/r/3rr44_2_1.jpg'),(29463,106,0,1901,'container2'),(29464,121,0,1901,'n-black-sweat-pants-red-small-size'),(29465,132,0,1901,'0'),(29466,133,0,1901,'/3/r/3rr44_2_1.jpg'),(29471,73,0,1902,' Black Sweat Pants-red-Medium size'),(29472,84,0,1902,' Black Sweat Pants'),(29473,86,0,1902,' Black Sweat Pants These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.\r\nCut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: leng'),(29474,87,0,1902,'/3/r/3rr44_3_1.jpg'),(29475,88,0,1902,'/3/r/3rr44_3_1.jpg'),(29476,89,0,1902,'/3/r/3rr44_3_1.jpg'),(29477,106,0,1902,'container2'),(29478,121,0,1902,'n-black-sweat-pants-red-medium-size'),(29479,132,0,1902,'0'),(29480,133,0,1902,'/3/r/3rr44_3_1.jpg'),(29485,73,0,1903,'Black Sweat Pants'),(29486,84,0,1903,' Black Sweat Pants'),(29487,86,0,1903,' Black Sweat Pants These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket.\r\nCut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: leng'),(29488,87,0,1903,'/3/r/3rr44_1_1.jpg'),(29489,88,0,1903,'/3/r/3rr44_1_1.jpg'),(29490,89,0,1903,'/3/r/3rr44_1_1.jpg'),(29491,106,0,1903,'container2'),(29492,121,0,1903,'n-black-sweat-pants'),(29493,132,0,1903,'2'),(29494,133,0,1903,'no_selection'),(29499,73,0,1904,'Long-sleeved Jumper-red-Small size'),(29500,84,0,1904,'Long-sleeved Jumper'),(29501,86,0,1904,'Long-sleeved Jumper Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.\r\n'),(29502,87,0,1904,'/r/1/r1_14.jpg'),(29503,88,0,1904,'/r/1/r1_14.jpg'),(29504,89,0,1904,'/r/1/r1_14.jpg'),(29505,106,0,1904,'container2'),(29506,121,0,1904,'n-long-sleeved-jumper-red-small-size'),(29507,132,0,1904,'0'),(29508,133,0,1904,'/r/1/r1_14.jpg'),(29509,206,0,1904,' 100% cotton'),(29514,73,0,1905,'Long-sleeved Jumper-red-Large size'),(29515,84,0,1905,'Long-sleeved Jumper'),(29516,86,0,1905,'Long-sleeved Jumper Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.\r\n'),(29517,87,0,1905,'/r/1/r1_14_1.jpg'),(29518,88,0,1905,'/r/1/r1_14_1.jpg'),(29519,89,0,1905,'/r/1/r1_14_1.jpg'),(29520,106,0,1905,'container2'),(29521,121,0,1905,'n-long-sleeved-jumper-red-large-size'),(29522,132,0,1905,'0'),(29523,133,0,1905,'/r/1/r1_14_1.jpg'),(29524,206,0,1905,' 100% cotton'),(29529,73,0,1906,'Long-sleeved Jumper-red-Medium size'),(29530,84,0,1906,'Long-sleeved Jumper'),(29531,86,0,1906,'Long-sleeved Jumper Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.\r\n'),(29532,87,0,1906,'/r/1/r1_14_2.jpg'),(29533,88,0,1906,'/r/1/r1_14_2.jpg'),(29534,89,0,1906,'/r/1/r1_14_2.jpg'),(29535,106,0,1906,'container2'),(29536,121,0,1906,'n-long-sleeved-jumper-red-medium-size'),(29537,132,0,1906,'0'),(29538,133,0,1906,'/r/1/r1_14_2.jpg'),(29539,206,0,1906,' 100% cotton'),(29544,73,0,1907,'Long-sleeved Jumper-blue-Small size'),(29545,84,0,1907,'Long-sleeved Jumper'),(29546,86,0,1907,'Long-sleeved Jumper Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.\r\n'),(29547,87,0,1907,'/1/_/1_18.jpg'),(29548,88,0,1907,'/1/_/1_18.jpg'),(29549,89,0,1907,'/1/_/1_18.jpg'),(29550,106,0,1907,'container2'),(29551,121,0,1907,'n-long-sleeved-jumper-blue-small-size'),(29552,132,0,1907,'0'),(29553,133,0,1907,'/1/_/1_18.jpg'),(29554,206,0,1907,' 100% cotton'),(29559,73,0,1908,'Long-sleeved Jumper-blue-Large size'),(29560,84,0,1908,'Long-sleeved Jumper'),(29561,86,0,1908,'Long-sleeved Jumper Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.\r\n'),(29562,87,0,1908,'/1/_/1_18_1.jpg'),(29563,88,0,1908,'/1/_/1_18_1.jpg'),(29564,89,0,1908,'/1/_/1_18_1.jpg'),(29565,106,0,1908,'container2'),(29566,121,0,1908,'n-long-sleeved-jumper-blue-large-size'),(29567,132,0,1908,'0'),(29568,133,0,1908,'/1/_/1_18_1.jpg'),(29569,206,0,1908,' 100% cotton'),(29574,73,0,1909,'Long-sleeved Jumper-blue-Medium size'),(29575,84,0,1909,'Long-sleeved Jumper'),(29576,86,0,1909,'Long-sleeved Jumper Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.\r\n'),(29577,87,0,1909,'/1/_/1_18_2.jpg'),(29578,88,0,1909,'/1/_/1_18_2.jpg'),(29579,89,0,1909,'/1/_/1_18_2.jpg'),(29580,106,0,1909,'container2'),(29581,121,0,1909,'n-long-sleeved-jumper-blue-medium-size'),(29582,132,0,1909,'0'),(29583,133,0,1909,'/1/_/1_18_2.jpg'),(29584,206,0,1909,' 100% cotton'),(29589,73,0,1910,'Long-sleeved Jumper'),(29590,84,0,1910,'Long-sleeved Jumper'),(29591,86,0,1910,'Long-sleeved Jumper Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape.\r\n'),(29592,87,0,1910,'/g/1/g1_12.jpg'),(29593,88,0,1910,'/g/1/g1_12.jpg'),(29594,89,0,1910,'/g/1/g1_12.jpg'),(29595,106,0,1910,'container2'),(29596,121,0,1910,'n-long-sleeved-jumper'),(29597,132,0,1910,'2'),(29598,133,0,1910,'/g/1/g1_12.jpg'),(29599,206,0,1910,' 100% cotton'),(29604,73,0,1911,'Hooded Sweater-black-Medium size'),(29605,84,0,1911,'Hooded Sweater'),(29606,86,0,1911,'Hooded Sweater Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans '),(29607,87,0,1911,'/d/1/d1_8.jpg'),(29608,88,0,1911,'/d/1/d1_8.jpg'),(29609,89,0,1911,'/d/1/d1_8.jpg'),(29610,106,0,1911,'container2'),(29611,121,0,1911,'n-hooded-sweater-black-medium-size'),(29612,132,0,1911,'0'),(29613,133,0,1911,'/d/1/d1_8.jpg'),(29614,206,0,1911,'80% cotton, 20% polyester'),(29619,73,0,1912,'Hooded Sweater-black-Small size'),(29620,84,0,1912,'Hooded Sweater'),(29621,86,0,1912,'Hooded Sweater Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans '),(29622,87,0,1912,'/d/1/d1_8_1.jpg'),(29623,88,0,1912,'/d/1/d1_8_1.jpg'),(29624,89,0,1912,'/d/1/d1_8_1.jpg'),(29625,106,0,1912,'container2'),(29626,121,0,1912,'n-hooded-sweater-black-small-size'),(29627,132,0,1912,'0'),(29628,133,0,1912,'/d/1/d1_8_1.jpg'),(29629,206,0,1912,'80% cotton, 20% polyester'),(29634,73,0,1913,'Hooded Sweater-black-Large size'),(29635,84,0,1913,'Hooded Sweater'),(29636,86,0,1913,'Hooded Sweater Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans '),(29637,87,0,1913,'/d/1/d1_8_2.jpg'),(29638,88,0,1913,'/d/1/d1_8_2.jpg'),(29639,89,0,1913,'/d/1/d1_8_2.jpg'),(29640,106,0,1913,'container2'),(29641,121,0,1913,'n-hooded-sweater-black-large-size'),(29642,132,0,1913,'0'),(29643,133,0,1913,'/d/1/d1_8_2.jpg'),(29644,206,0,1913,'80% cotton, 20% polyester'),(29649,73,0,1914,'Hooded Sweater-red-Medium size'),(29650,84,0,1914,'Hooded Sweater'),(29651,86,0,1914,'Hooded Sweater Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans '),(29652,87,0,1914,'/r/1/r1_15.jpg'),(29653,88,0,1914,'/r/1/r1_15.jpg'),(29654,89,0,1914,'/r/1/r1_15.jpg'),(29655,106,0,1914,'container2'),(29656,121,0,1914,'n-hooded-sweater-red-medium-size'),(29657,132,0,1914,'0'),(29658,133,0,1914,'/r/1/r1_15.jpg'),(29659,206,0,1914,'80% cotton, 20% polyester'),(29664,73,0,1915,'Hooded Sweater-red-Small size'),(29665,84,0,1915,'Hooded Sweater'),(29666,86,0,1915,'Hooded Sweater Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans '),(29667,87,0,1915,'/r/1/r1_15_1.jpg'),(29668,88,0,1915,'/r/1/r1_15_1.jpg'),(29669,89,0,1915,'/r/1/r1_15_1.jpg'),(29670,106,0,1915,'container2'),(29671,121,0,1915,'n-hooded-sweater-red-small-size'),(29672,132,0,1915,'0'),(29673,133,0,1915,'/r/1/r1_15_1.jpg'),(29674,206,0,1915,'80% cotton, 20% polyester'),(29679,73,0,1916,'Hooded Sweater-red-Large size'),(29680,84,0,1916,'Hooded Sweater'),(29681,86,0,1916,'Hooded Sweater Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans '),(29682,87,0,1916,'/r/1/r1_15_2.jpg'),(29683,88,0,1916,'/r/1/r1_15_2.jpg'),(29684,89,0,1916,'/r/1/r1_15_2.jpg'),(29685,106,0,1916,'container2'),(29686,121,0,1916,'n-hooded-sweater-red-large-size'),(29687,132,0,1916,'0'),(29688,133,0,1916,'/r/1/r1_15_2.jpg'),(29689,206,0,1916,'80% cotton, 20% polyester'),(29694,73,0,1917,'Hooded Sweater-grey-Medium size'),(29695,84,0,1917,'Hooded Sweater'),(29696,86,0,1917,'Hooded Sweater Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans '),(29697,87,0,1917,'/g/1/g1_13.jpg'),(29698,88,0,1917,'/g/1/g1_13.jpg'),(29699,89,0,1917,'/g/1/g1_13.jpg'),(29700,106,0,1917,'container2'),(29701,121,0,1917,'n-hooded-sweater-grey-medium-size'),(29702,132,0,1917,'0'),(29703,133,0,1917,'/g/1/g1_13.jpg'),(29704,206,0,1917,'80% cotton, 20% polyester'),(29709,73,0,1918,'Hooded Sweater-grey-Small size'),(29710,84,0,1918,'Hooded Sweater'),(29711,86,0,1918,'Hooded Sweater Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans '),(29712,87,0,1918,'/g/1/g1_13_1.jpg'),(29713,88,0,1918,'/g/1/g1_13_1.jpg'),(29714,89,0,1918,'/g/1/g1_13_1.jpg'),(29715,106,0,1918,'container2'),(29716,121,0,1918,'n-hooded-sweater-grey-small-size'),(29717,132,0,1918,'0'),(29718,133,0,1918,'/g/1/g1_13_1.jpg'),(29719,206,0,1918,'80% cotton, 20% polyester'),(29724,73,0,1919,'Hooded Sweater-grey-Large size'),(29725,84,0,1919,'Hooded Sweater'),(29726,86,0,1919,'Hooded Sweater Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans '),(29727,87,0,1919,'/g/1/g1_13_2.jpg'),(29728,88,0,1919,'/g/1/g1_13_2.jpg'),(29729,89,0,1919,'/g/1/g1_13_2.jpg'),(29730,106,0,1919,'container2'),(29731,121,0,1919,'n-hooded-sweater-grey-large-size'),(29732,132,0,1919,'0'),(29733,133,0,1919,'/g/1/g1_13_2.jpg'),(29734,206,0,1919,'80% cotton, 20% polyester'),(29739,73,0,1920,'Hooded Sweater'),(29740,84,0,1920,'Hooded Sweater'),(29741,86,0,1920,'Hooded Sweater Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans '),(29742,87,0,1920,'/g/1/g1_14.jpg'),(29743,88,0,1920,'/g/1/g1_14.jpg'),(29744,89,0,1920,'/g/1/g1_14.jpg'),(29745,106,0,1920,'container2'),(29746,121,0,1920,'n-hooded-sweater'),(29747,132,0,1920,'2'),(29748,133,0,1920,'/g/1/g1_14.jpg'),(29749,206,0,1920,'80% cotton, 20% polyester'),(29852,73,0,1928,' Camper Lace-ups-EU 42-brown'),(29853,84,0,1928,' Camper Lace-ups'),(29854,86,0,1928,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(29855,87,0,1928,'/5/t/5t5t5rr4r4_1_1.jpg'),(29856,88,0,1928,'/5/t/5t5t5rr4r4_1_1.jpg'),(29857,89,0,1928,'/5/t/5t5t5rr4r4_1_1.jpg'),(29858,106,0,1928,'container2'),(29859,121,0,1928,'n-camper-lace-ups-eu-42-brown'),(29860,132,0,1928,'0'),(29861,133,0,1928,'/5/t/5t5t5rr4r4_1_1.jpg'),(29866,73,0,1929,' Camper Lace-ups-EU 42-blue'),(29867,84,0,1929,' Camper Lace-ups'),(29868,86,0,1929,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(29869,87,0,1929,'/3/e/3e3e3dcrc_1_1.jpg'),(29870,88,0,1929,'/3/e/3e3e3dcrc_1_1.jpg'),(29871,89,0,1929,'/3/e/3e3e3dcrc_1_1.jpg'),(29872,106,0,1929,'container2'),(29873,121,0,1929,'n-camper-lace-ups-eu-42-blue'),(29874,132,0,1929,'0'),(29875,133,0,1929,'/3/e/3e3e3dcrc_1_1.jpg'),(29880,73,0,1930,' Camper Lace-ups-EU 42-black'),(29881,84,0,1930,' Camper Lace-ups'),(29882,86,0,1930,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(29883,87,0,1930,'/i/m/image_30947478_80_970x1182_0_1__1_1.jpg'),(29884,88,0,1930,'/i/m/image_30947478_80_970x1182_0_1__1_1.jpg'),(29885,89,0,1930,'/i/m/image_30947478_80_970x1182_0_1__1_1.jpg'),(29886,106,0,1930,'container2'),(29887,121,0,1930,'n-camper-lace-ups-eu-42-black'),(29888,132,0,1930,'0'),(29889,133,0,1930,'/i/m/image_30947478_80_970x1182_0_1__1_1.jpg'),(29894,73,0,1931,' Camper Lace-ups-EU 40-brown'),(29895,84,0,1931,' Camper Lace-ups'),(29896,86,0,1931,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(29897,87,0,1931,'/5/t/5t5t5rr4r4_1_1_1.jpg'),(29898,88,0,1931,'/5/t/5t5t5rr4r4_1_1_1.jpg'),(29899,89,0,1931,'/5/t/5t5t5rr4r4_1_1_1.jpg'),(29900,106,0,1931,'container2'),(29901,121,0,1931,'n-camper-lace-ups-eu-40-brown'),(29902,132,0,1931,'0'),(29903,133,0,1931,'/5/t/5t5t5rr4r4_1_1_1.jpg'),(29908,73,0,1932,' Camper Lace-ups-EU 40-blue'),(29909,84,0,1932,' Camper Lace-ups'),(29910,86,0,1932,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(29911,87,0,1932,'/3/e/3e3e3dcrc_1_1_1.jpg'),(29912,88,0,1932,'/3/e/3e3e3dcrc_1_1_1.jpg'),(29913,89,0,1932,'/3/e/3e3e3dcrc_1_1_1.jpg'),(29914,106,0,1932,'container2'),(29915,121,0,1932,'n-camper-lace-ups-eu-40-blue'),(29916,132,0,1932,'0'),(29917,133,0,1932,'/3/e/3e3e3dcrc_1_1_1.jpg'),(29922,73,0,1933,' Camper Lace-ups-EU 40-black'),(29923,84,0,1933,' Camper Lace-ups'),(29924,86,0,1933,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(29925,87,0,1933,'/i/m/image_30947478_80_970x1182_0_1__1_2.jpg'),(29926,88,0,1933,'/i/m/image_30947478_80_970x1182_0_1__1_2.jpg'),(29927,89,0,1933,'/i/m/image_30947478_80_970x1182_0_1__1_2.jpg'),(29928,106,0,1933,'container2'),(29929,121,0,1933,'n-camper-lace-ups-eu-40-black'),(29930,132,0,1933,'0'),(29931,133,0,1933,'/i/m/image_30947478_80_970x1182_0_1__1_2.jpg'),(29936,73,0,1934,' Camper Lace-ups-EU 43-brown'),(29937,84,0,1934,' Camper Lace-ups'),(29938,86,0,1934,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(29939,87,0,1934,'/5/t/5t5t5rr4r4_1_2.jpg'),(29940,88,0,1934,'/5/t/5t5t5rr4r4_1_2.jpg'),(29941,89,0,1934,'/5/t/5t5t5rr4r4_1_2.jpg'),(29942,106,0,1934,'container2'),(29943,121,0,1934,'n-camper-lace-ups-eu-43-brown'),(29944,132,0,1934,'0'),(29945,133,0,1934,'/5/t/5t5t5rr4r4_1_2.jpg'),(29950,73,0,1935,' Camper Lace-ups-EU 43-blue'),(29951,84,0,1935,' Camper Lace-ups'),(29952,86,0,1935,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(29953,87,0,1935,'/3/e/3e3e3dcrc_1_2.jpg'),(29954,88,0,1935,'/3/e/3e3e3dcrc_1_2.jpg'),(29955,89,0,1935,'/3/e/3e3e3dcrc_1_2.jpg'),(29956,106,0,1935,'container2'),(29957,121,0,1935,'n-camper-lace-ups-eu-43-blue'),(29958,132,0,1935,'0'),(29959,133,0,1935,'/3/e/3e3e3dcrc_1_2.jpg'),(29964,73,0,1936,' Camper Lace-ups-EU 43-black'),(29965,84,0,1936,' Camper Lace-ups'),(29966,86,0,1936,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(29967,87,0,1936,'/i/m/image_30947478_80_970x1182_0_1__1_3.jpg'),(29968,88,0,1936,'/i/m/image_30947478_80_970x1182_0_1__1_3.jpg'),(29969,89,0,1936,'/i/m/image_30947478_80_970x1182_0_1__1_3.jpg'),(29970,106,0,1936,'container2'),(29971,121,0,1936,'n-camper-lace-ups-eu-43-black'),(29972,132,0,1936,'0'),(29973,133,0,1936,'/i/m/image_30947478_80_970x1182_0_1__1_3.jpg'),(29978,73,0,1937,' Camper Lace-ups-EU 41-brown'),(29979,84,0,1937,' Camper Lace-ups'),(29980,86,0,1937,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(29981,87,0,1937,'/5/t/5t5t5rr4r4_1_3.jpg'),(29982,88,0,1937,'/5/t/5t5t5rr4r4_1_3.jpg'),(29983,89,0,1937,'/5/t/5t5t5rr4r4_1_3.jpg'),(29984,106,0,1937,'container2'),(29985,121,0,1937,'n-camper-lace-ups-eu-41-brown'),(29986,132,0,1937,'0'),(29987,133,0,1937,'/5/t/5t5t5rr4r4_1_3.jpg'),(29992,73,0,1938,' Camper Lace-ups-EU 41-blue'),(29993,84,0,1938,' Camper Lace-ups'),(29994,86,0,1938,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(29995,87,0,1938,'/3/e/3e3e3dcrc_1_3.jpg'),(29996,88,0,1938,'/3/e/3e3e3dcrc_1_3.jpg'),(29997,89,0,1938,'/3/e/3e3e3dcrc_1_3.jpg'),(29998,106,0,1938,'container2'),(29999,121,0,1938,'n-camper-lace-ups-eu-41-blue'),(30000,132,0,1938,'0'),(30001,133,0,1938,'/3/e/3e3e3dcrc_1_3.jpg'),(30006,73,0,1939,' Camper Lace-ups-EU 41-black'),(30007,84,0,1939,' Camper Lace-ups'),(30008,86,0,1939,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(30009,87,0,1939,'/i/m/image_30947478_80_970x1182_0_1__1_4.jpg'),(30010,88,0,1939,'/i/m/image_30947478_80_970x1182_0_1__1_4.jpg'),(30011,89,0,1939,'/i/m/image_30947478_80_970x1182_0_1__1_4.jpg'),(30012,106,0,1939,'container2'),(30013,121,0,1939,'n-camper-lace-ups-eu-41-black'),(30014,132,0,1939,'0'),(30015,133,0,1939,'/i/m/image_30947478_80_970x1182_0_1__1_4.jpg'),(30020,73,0,1940,' Camper Lace-ups-EU 44-brown'),(30021,84,0,1940,' Camper Lace-ups'),(30022,86,0,1940,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(30023,87,0,1940,'/5/t/5t5t5rr4r4_1_4.jpg'),(30024,88,0,1940,'/5/t/5t5t5rr4r4_1_4.jpg'),(30025,89,0,1940,'/5/t/5t5t5rr4r4_1_4.jpg'),(30026,106,0,1940,'container2'),(30027,121,0,1940,'n-camper-lace-ups-eu-44-brown'),(30028,132,0,1940,'0'),(30029,133,0,1940,'/5/t/5t5t5rr4r4_1_4.jpg'),(30034,73,0,1941,' Camper Lace-ups-EU 44-blue'),(30035,84,0,1941,' Camper Lace-ups'),(30036,86,0,1941,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(30037,87,0,1941,'/3/e/3e3e3dcrc_1_4.jpg'),(30038,88,0,1941,'/3/e/3e3e3dcrc_1_4.jpg'),(30039,89,0,1941,'/3/e/3e3e3dcrc_1_4.jpg'),(30040,106,0,1941,'container2'),(30041,121,0,1941,'n-camper-lace-ups-eu-44-blue'),(30042,132,0,1941,'0'),(30043,133,0,1941,'/3/e/3e3e3dcrc_1_4.jpg'),(30048,73,0,1942,' Camper Lace-ups-EU 44-black'),(30049,84,0,1942,' Camper Lace-ups'),(30050,86,0,1942,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(30051,87,0,1942,'/i/m/image_30947478_80_970x1182_0_1__1_5.jpg'),(30052,88,0,1942,'/i/m/image_30947478_80_970x1182_0_1__1_5.jpg'),(30053,89,0,1942,'/i/m/image_30947478_80_970x1182_0_1__1_5.jpg'),(30054,106,0,1942,'container2'),(30055,121,0,1942,'n-camper-lace-ups-eu-44-black'),(30056,132,0,1942,'0'),(30057,133,0,1942,'/i/m/image_30947478_80_970x1182_0_1__1_5.jpg'),(30062,73,0,1943,'Camper Lace-ups'),(30063,84,0,1943,' Camper Lace-ups'),(30064,86,0,1943,' Camper Lace-ups Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole'),(30065,87,0,1943,'/i/m/image_30947478_80_970x1182_0_1__1_1_1.jpg'),(30066,88,0,1943,'/i/m/image_30947478_80_970x1182_0_1__1_1_1.jpg'),(30067,89,0,1943,'/i/m/image_30947478_80_970x1182_0_1__1_1_1.jpg'),(30068,106,0,1943,'container2'),(30069,121,0,1943,'n-camper-lace-ups'),(30070,132,0,1943,'2'),(30071,133,0,1943,'no_selection'),(30076,73,0,1944,' Adidas Originals PW Tennis Hu-red-EU 40'),(30077,84,0,1944,' Adidas Originals PW Tennis Hu'),(30078,86,0,1944,' Adidas Originals PW Tennis Hu Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit up'),(30079,87,0,1944,'/3/3/3343rr44_2.jpg'),(30080,88,0,1944,'/3/3/3343rr44_2.jpg'),(30081,89,0,1944,'/3/3/3343rr44_2.jpg'),(30082,106,0,1944,'container2'),(30083,121,0,1944,'n-adidas-originals-pw-tennis-hu-red-eu-40'),(30084,132,0,1944,'0'),(30085,133,0,1944,'/3/3/3343rr44_2.jpg'),(30090,73,0,1945,' Adidas Originals PW Tennis Hu-red-EU 41'),(30091,84,0,1945,' Adidas Originals PW Tennis Hu'),(30092,86,0,1945,' Adidas Originals PW Tennis Hu Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit up'),(30093,87,0,1945,'/3/3/3343rr44_2_1.jpg'),(30094,88,0,1945,'/3/3/3343rr44_2_1.jpg'),(30095,89,0,1945,'/3/3/3343rr44_2_1.jpg'),(30096,106,0,1945,'container2'),(30097,121,0,1945,'n-adidas-originals-pw-tennis-hu-red-eu-41'),(30098,132,0,1945,'0'),(30099,133,0,1945,'/3/3/3343rr44_2_1.jpg'),(30104,73,0,1946,'Adidas Originals PW Tennis Hu'),(30105,84,0,1946,' Adidas Originals PW Tennis Hu'),(30106,86,0,1946,' Adidas Originals PW Tennis Hu Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit up'),(30107,87,0,1946,'/3/3/3343rr44_1_1.jpg'),(30108,88,0,1946,'/3/3/3343rr44_1_1.jpg'),(30109,89,0,1946,'/3/3/3343rr44_1_1.jpg'),(30110,106,0,1946,'container2'),(30111,121,0,1946,'n-adidas-originals-pw-tennis-hu'),(30112,132,0,1946,'2'),(30113,133,0,1946,'no_selection'),(30118,73,0,1947,' Lloyd Half Boots-red-EU 39'),(30119,84,0,1947,' Lloyd Half Boots'),(30120,86,0,1947,' Lloyd Half Boots Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate'),(30121,87,0,1947,'/3/4/34r4r4r4_6_2.jpg'),(30122,88,0,1947,'/3/4/34r4r4r4_6_2.jpg'),(30123,89,0,1947,'/3/4/34r4r4r4_6_2.jpg'),(30124,106,0,1947,'container2'),(30125,121,0,1947,'n-lloyd-half-boots-red-eu-39'),(30126,132,0,1947,'0'),(30127,133,0,1947,'/3/4/34r4r4r4_6_2.jpg'),(30132,73,0,1948,' Lloyd Half Boots-red-EU 42'),(30133,84,0,1948,' Lloyd Half Boots'),(30134,86,0,1948,' Lloyd Half Boots Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate'),(30135,87,0,1948,'/3/4/34r4r4r4_6_2_1.jpg'),(30136,88,0,1948,'/3/4/34r4r4r4_6_2_1.jpg'),(30137,89,0,1948,'/3/4/34r4r4r4_6_2_1.jpg'),(30138,106,0,1948,'container2'),(30139,121,0,1948,'n-lloyd-half-boots-red-eu-42'),(30140,132,0,1948,'0'),(30141,133,0,1948,'/3/4/34r4r4r4_6_2_1.jpg'),(30146,73,0,1949,' Lloyd Half Boots-red-EU 45'),(30147,84,0,1949,' Lloyd Half Boots'),(30148,86,0,1949,' Lloyd Half Boots Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate'),(30149,87,0,1949,'/3/4/34r4r4r4_6_3.jpg'),(30150,88,0,1949,'/3/4/34r4r4r4_6_3.jpg'),(30151,89,0,1949,'/3/4/34r4r4r4_6_3.jpg'),(30152,106,0,1949,'container2'),(30153,121,0,1949,'n-lloyd-half-boots-red-eu-45'),(30154,132,0,1949,'0'),(30155,133,0,1949,'/3/4/34r4r4r4_6_3.jpg'),(30160,73,0,1950,' Lloyd Half Boots-red-EU 40'),(30161,84,0,1950,' Lloyd Half Boots'),(30162,86,0,1950,' Lloyd Half Boots Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate'),(30163,87,0,1950,'/3/4/34r4r4r4_6_4.jpg'),(30164,88,0,1950,'/3/4/34r4r4r4_6_4.jpg'),(30165,89,0,1950,'/3/4/34r4r4r4_6_4.jpg'),(30166,106,0,1950,'container2'),(30167,121,0,1950,'n-lloyd-half-boots-red-eu-40'),(30168,132,0,1950,'0'),(30169,133,0,1950,'/3/4/34r4r4r4_6_4.jpg'),(30174,73,0,1951,' Lloyd Half Boots-red-EU 43'),(30175,84,0,1951,' Lloyd Half Boots'),(30176,86,0,1951,' Lloyd Half Boots Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate'),(30177,87,0,1951,'/3/4/34r4r4r4_6_5.jpg'),(30178,88,0,1951,'/3/4/34r4r4r4_6_5.jpg'),(30179,89,0,1951,'/3/4/34r4r4r4_6_5.jpg'),(30180,106,0,1951,'container2'),(30181,121,0,1951,'n-lloyd-half-boots-red-eu-43'),(30182,132,0,1951,'0'),(30183,133,0,1951,'/3/4/34r4r4r4_6_5.jpg'),(30188,73,0,1952,' Lloyd Half Boots-red-EU 41'),(30189,84,0,1952,' Lloyd Half Boots'),(30190,86,0,1952,' Lloyd Half Boots Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate'),(30191,87,0,1952,'/3/4/34r4r4r4_6_6.jpg'),(30192,88,0,1952,'/3/4/34r4r4r4_6_6.jpg'),(30193,89,0,1952,'/3/4/34r4r4r4_6_6.jpg'),(30194,106,0,1952,'container2'),(30195,121,0,1952,'n-lloyd-half-boots-red-eu-41'),(30196,132,0,1952,'0'),(30197,133,0,1952,'/3/4/34r4r4r4_6_6.jpg'),(30202,73,0,1953,' Lloyd Half Boots-red-EU 44'),(30203,84,0,1953,' Lloyd Half Boots'),(30204,86,0,1953,' Lloyd Half Boots Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate'),(30205,87,0,1953,'/3/4/34r4r4r4_6_7.jpg'),(30206,88,0,1953,'/3/4/34r4r4r4_6_7.jpg'),(30207,89,0,1953,'/3/4/34r4r4r4_6_7.jpg'),(30208,106,0,1953,'container2'),(30209,121,0,1953,'n-lloyd-half-boots-red-eu-44'),(30210,132,0,1953,'0'),(30211,133,0,1953,'/3/4/34r4r4r4_6_7.jpg'),(30216,73,0,1954,' Lloyd Half Boots-grey-EU 39'),(30217,84,0,1954,' Lloyd Half Boots'),(30218,86,0,1954,' Lloyd Half Boots Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate'),(30219,87,0,1954,'/2/4/2454654fff_6_2.jpg'),(30220,88,0,1954,'/2/4/2454654fff_6_2.jpg'),(30221,89,0,1954,'/2/4/2454654fff_6_2.jpg'),(30222,106,0,1954,'container2'),(30223,121,0,1954,'n-lloyd-half-boots-grey-eu-39'),(30224,132,0,1954,'0'),(30225,133,0,1954,'/2/4/2454654fff_6_2.jpg'),(30230,73,0,1955,' Lloyd Half Boots-grey-EU 42'),(30231,84,0,1955,' Lloyd Half Boots'),(30232,86,0,1955,' Lloyd Half Boots Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate'),(30233,87,0,1955,'/2/4/2454654fff_6_1_1.jpg'),(30234,88,0,1955,'/2/4/2454654fff_6_1_1.jpg'),(30235,89,0,1955,'/2/4/2454654fff_6_1_1.jpg'),(30236,106,0,1955,'container2'),(30237,121,0,1955,'n-lloyd-half-boots-grey-eu-42'),(30238,132,0,1955,'0'),(30239,133,0,1955,'/2/4/2454654fff_6_1_1.jpg'),(30244,73,0,1956,' Lloyd Half Boots-grey-EU 45'),(30245,84,0,1956,' Lloyd Half Boots'),(30246,86,0,1956,' Lloyd Half Boots Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate'),(30247,87,0,1956,'/2/4/2454654fff_6_2_1.jpg'),(30248,88,0,1956,'/2/4/2454654fff_6_2_1.jpg'),(30249,89,0,1956,'/2/4/2454654fff_6_2_1.jpg'),(30250,106,0,1956,'container2'),(30251,121,0,1956,'n-lloyd-half-boots-grey-eu-45'),(30252,132,0,1956,'0'),(30253,133,0,1956,'/2/4/2454654fff_6_2_1.jpg'),(30258,73,0,1957,' Lloyd Half Boots-grey-EU 40'),(30259,84,0,1957,' Lloyd Half Boots'),(30260,86,0,1957,' Lloyd Half Boots Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate'),(30261,87,0,1957,'/2/4/2454654fff_6_3.jpg'),(30262,88,0,1957,'/2/4/2454654fff_6_3.jpg'),(30263,89,0,1957,'/2/4/2454654fff_6_3.jpg'),(30264,106,0,1957,'container2'),(30265,121,0,1957,'n-lloyd-half-boots-grey-eu-40'),(30266,132,0,1957,'0'),(30267,133,0,1957,'/2/4/2454654fff_6_3.jpg'),(30272,73,0,1958,' Lloyd Half Boots-grey-EU 43'),(30273,84,0,1958,' Lloyd Half Boots'),(30274,86,0,1958,' Lloyd Half Boots Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate'),(30275,87,0,1958,'/2/4/2454654fff_6_4.jpg'),(30276,88,0,1958,'/2/4/2454654fff_6_4.jpg'),(30277,89,0,1958,'/2/4/2454654fff_6_4.jpg'),(30278,106,0,1958,'container2'),(30279,121,0,1958,'n-lloyd-half-boots-grey-eu-43'),(30280,132,0,1958,'0'),(30281,133,0,1958,'/2/4/2454654fff_6_4.jpg'),(30286,73,0,1959,' Lloyd Half Boots-grey-EU 41'),(30287,84,0,1959,' Lloyd Half Boots'),(30288,86,0,1959,' Lloyd Half Boots Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate'),(30289,87,0,1959,'/2/4/2454654fff_6_5.jpg'),(30290,88,0,1959,'/2/4/2454654fff_6_5.jpg'),(30291,89,0,1959,'/2/4/2454654fff_6_5.jpg'),(30292,106,0,1959,'container2'),(30293,121,0,1959,'n-lloyd-half-boots-grey-eu-41'),(30294,132,0,1959,'0'),(30295,133,0,1959,'/2/4/2454654fff_6_5.jpg'),(30300,73,0,1960,' Lloyd Half Boots-grey-EU 44'),(30301,84,0,1960,' Lloyd Half Boots'),(30302,86,0,1960,' Lloyd Half Boots Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate'),(30303,87,0,1960,'/2/4/2454654fff_6_6.jpg'),(30304,88,0,1960,'/2/4/2454654fff_6_6.jpg'),(30305,89,0,1960,'/2/4/2454654fff_6_6.jpg'),(30306,106,0,1960,'container2'),(30307,121,0,1960,'n-lloyd-half-boots-grey-eu-44'),(30308,132,0,1960,'0'),(30309,133,0,1960,'/2/4/2454654fff_6_6.jpg'),(30314,73,0,1961,'Lloyd Half Boots'),(30315,84,0,1961,' Lloyd Half Boots'),(30316,86,0,1961,' Lloyd Half Boots Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate'),(30317,87,0,1961,'/3/4/34r4r4r4_6_1_1.jpg'),(30318,88,0,1961,'/3/4/34r4r4r4_6_1_1.jpg'),(30319,89,0,1961,'/3/4/34r4r4r4_6_1_1.jpg'),(30320,106,0,1961,'container2'),(30321,121,0,1961,'n-lloyd-half-boots'),(30322,132,0,1961,'2'),(30323,133,0,1961,'no_selection'),(30328,73,0,1962,' Boxfresh-blue-EU 39'),(30329,84,0,1962,' Boxfresh'),(30330,86,0,1962,' Boxfresh An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber,'),(30331,87,0,1962,'/3/4/3445tr4e_5.jpg'),(30332,88,0,1962,'/3/4/3445tr4e_5.jpg'),(30333,89,0,1962,'/3/4/3445tr4e_5.jpg'),(30334,106,0,1962,'container2'),(30335,121,0,1962,'n-boxfresh-blue-eu-39'),(30336,132,0,1962,'0'),(30337,133,0,1962,'/3/4/3445tr4e_5.jpg'),(30342,73,0,1963,' Boxfresh-blue-EU 42'),(30343,84,0,1963,' Boxfresh'),(30344,86,0,1963,' Boxfresh An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber,'),(30345,87,0,1963,'/3/4/3445tr4e_1_1.jpg'),(30346,88,0,1963,'/3/4/3445tr4e_1_1.jpg'),(30347,89,0,1963,'/3/4/3445tr4e_1_1.jpg'),(30348,106,0,1963,'container2'),(30349,121,0,1963,'n-boxfresh-blue-eu-42'),(30350,132,0,1963,'0'),(30351,133,0,1963,'/3/4/3445tr4e_1_1.jpg'),(30356,73,0,1964,' Boxfresh-blue-EU 40'),(30357,84,0,1964,' Boxfresh'),(30358,86,0,1964,' Boxfresh An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber,'),(30359,87,0,1964,'/3/4/3445tr4e_2_1.jpg'),(30360,88,0,1964,'/3/4/3445tr4e_2_1.jpg'),(30361,89,0,1964,'/3/4/3445tr4e_2_1.jpg'),(30362,106,0,1964,'container2'),(30363,121,0,1964,'n-boxfresh-blue-eu-40'),(30364,132,0,1964,'0'),(30365,133,0,1964,'/3/4/3445tr4e_2_1.jpg'),(30370,73,0,1965,' Boxfresh-blue-EU 43'),(30371,84,0,1965,' Boxfresh'),(30372,86,0,1965,' Boxfresh An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber,'),(30373,87,0,1965,'/3/4/3445tr4e_3_1.jpg'),(30374,88,0,1965,'/3/4/3445tr4e_3_1.jpg'),(30375,89,0,1965,'/3/4/3445tr4e_3_1.jpg'),(30376,106,0,1965,'container2'),(30377,121,0,1965,'n-boxfresh-blue-eu-43'),(30378,132,0,1965,'0'),(30379,133,0,1965,'/3/4/3445tr4e_3_1.jpg'),(30384,73,0,1966,' Boxfresh-blue-EU 41'),(30385,84,0,1966,' Boxfresh'),(30386,86,0,1966,' Boxfresh An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber,'),(30387,87,0,1966,'/3/4/3445tr4e_4_1.jpg'),(30388,88,0,1966,'/3/4/3445tr4e_4_1.jpg'),(30389,89,0,1966,'/3/4/3445tr4e_4_1.jpg'),(30390,106,0,1966,'container2'),(30391,121,0,1966,'n-boxfresh-blue-eu-41'),(30392,132,0,1966,'0'),(30393,133,0,1966,'/3/4/3445tr4e_4_1.jpg'),(30398,73,0,1967,' Boxfresh-black-EU 39'),(30399,84,0,1967,' Boxfresh'),(30400,86,0,1967,' Boxfresh An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber,'),(30401,87,0,1967,'/3/4/34eeddd_5.jpg'),(30402,88,0,1967,'/3/4/34eeddd_5.jpg'),(30403,89,0,1967,'/3/4/34eeddd_5.jpg'),(30404,106,0,1967,'container2'),(30405,121,0,1967,'n-boxfresh-black-eu-39'),(30406,132,0,1967,'0'),(30407,133,0,1967,'/3/4/34eeddd_5.jpg'),(30412,73,0,1968,' Boxfresh-black-EU 42'),(30413,84,0,1968,' Boxfresh'),(30414,86,0,1968,' Boxfresh An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber,'),(30415,87,0,1968,'/3/4/34eeddd_2_1.jpg'),(30416,88,0,1968,'/3/4/34eeddd_2_1.jpg'),(30417,89,0,1968,'/3/4/34eeddd_2_1.jpg'),(30418,106,0,1968,'container2'),(30419,121,0,1968,'n-boxfresh-black-eu-42'),(30420,132,0,1968,'0'),(30421,133,0,1968,'/3/4/34eeddd_2_1.jpg'),(30426,73,0,1969,' Boxfresh-black-EU 40'),(30427,84,0,1969,' Boxfresh'),(30428,86,0,1969,' Boxfresh An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber,'),(30429,87,0,1969,'/3/4/34eeddd_3_1.jpg'),(30430,88,0,1969,'/3/4/34eeddd_3_1.jpg'),(30431,89,0,1969,'/3/4/34eeddd_3_1.jpg'),(30432,106,0,1969,'container2'),(30433,121,0,1969,'n-boxfresh-black-eu-40'),(30434,132,0,1969,'0'),(30435,133,0,1969,'/3/4/34eeddd_3_1.jpg'),(30440,73,0,1970,' Boxfresh-black-EU 43'),(30441,84,0,1970,' Boxfresh'),(30442,86,0,1970,' Boxfresh An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber,'),(30443,87,0,1970,'/3/4/34eeddd_4_1.jpg'),(30444,88,0,1970,'/3/4/34eeddd_4_1.jpg'),(30445,89,0,1970,'/3/4/34eeddd_4_1.jpg'),(30446,106,0,1970,'container2'),(30447,121,0,1970,'n-boxfresh-black-eu-43'),(30448,132,0,1970,'0'),(30449,133,0,1970,'/3/4/34eeddd_4_1.jpg'),(30454,73,0,1971,' Boxfresh-black-EU 41'),(30455,84,0,1971,' Boxfresh'),(30456,86,0,1971,' Boxfresh An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber,'),(30457,87,0,1971,'/3/4/34eeddd_5_1.jpg'),(30458,88,0,1971,'/3/4/34eeddd_5_1.jpg'),(30459,89,0,1971,'/3/4/34eeddd_5_1.jpg'),(30460,106,0,1971,'container2'),(30461,121,0,1971,'n-boxfresh-black-eu-41'),(30462,132,0,1971,'0'),(30463,133,0,1971,'/3/4/34eeddd_5_1.jpg'),(30468,73,0,1972,'Boxfresh'),(30469,84,0,1972,' Boxfresh'),(30470,86,0,1972,' Boxfresh An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber,'),(30471,87,0,1972,'/3/4/34eeddd_1_1.jpg'),(30472,88,0,1972,'/3/4/34eeddd_1_1.jpg'),(30473,89,0,1972,'/3/4/34eeddd_1_1.jpg'),(30474,106,0,1972,'container2'),(30475,121,0,1972,'n-boxfresh'),(30476,132,0,1972,'2'),(30477,133,0,1972,'no_selection'),(30482,73,0,1973,' Gant Marvel-EU 39-brown'),(30483,84,0,1973,' Gant Marvel'),(30484,86,0,1973,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30485,87,0,1973,'/i/m/image_31085465_74_620x757_0_1_1_2.jpg'),(30486,88,0,1973,'/i/m/image_31085465_74_620x757_0_1_1_2.jpg'),(30487,89,0,1973,'/i/m/image_31085465_74_620x757_0_1_1_2.jpg'),(30488,106,0,1973,'container2'),(30489,121,0,1973,'n-gant-marvel-eu-39-brown'),(30490,132,0,1973,'0'),(30491,133,0,1973,'/i/m/image_31085465_74_620x757_0_1_1_2.jpg'),(30496,73,0,1974,' Gant Marvel-EU 39-grey'),(30497,84,0,1974,' Gant Marvel'),(30498,86,0,1974,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30499,87,0,1974,'/1/2/12ws33d4e4_6.jpg'),(30500,88,0,1974,'/1/2/12ws33d4e4_6.jpg'),(30501,89,0,1974,'/1/2/12ws33d4e4_6.jpg'),(30502,106,0,1974,'container2'),(30503,121,0,1974,'n-gant-marvel-eu-39-grey'),(30504,132,0,1974,'0'),(30505,133,0,1974,'/1/2/12ws33d4e4_6.jpg'),(30510,73,0,1975,' Gant Marvel-EU 39-black'),(30511,84,0,1975,' Gant Marvel'),(30512,86,0,1975,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30513,87,0,1975,'/3/5/356ggt6t_6.jpg'),(30514,88,0,1975,'/3/5/356ggt6t_6.jpg'),(30515,89,0,1975,'/3/5/356ggt6t_6.jpg'),(30516,106,0,1975,'container2'),(30517,121,0,1975,'n-gant-marvel-eu-39-black'),(30518,132,0,1975,'0'),(30519,133,0,1975,'/3/5/356ggt6t_6.jpg'),(30524,73,0,1976,' Gant Marvel-EU 42-brown'),(30525,84,0,1976,' Gant Marvel'),(30526,86,0,1976,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30527,87,0,1976,'/i/m/image_31085465_74_620x757_0_1_1_1_1.jpg'),(30528,88,0,1976,'/i/m/image_31085465_74_620x757_0_1_1_1_1.jpg'),(30529,89,0,1976,'/i/m/image_31085465_74_620x757_0_1_1_1_1.jpg'),(30530,106,0,1976,'container2'),(30531,121,0,1976,'n-gant-marvel-eu-42-brown'),(30532,132,0,1976,'0'),(30533,133,0,1976,'/i/m/image_31085465_74_620x757_0_1_1_1_1.jpg'),(30538,73,0,1977,' Gant Marvel-EU 42-grey'),(30539,84,0,1977,' Gant Marvel'),(30540,86,0,1977,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30541,87,0,1977,'/1/2/12ws33d4e4_2_1.jpg'),(30542,88,0,1977,'/1/2/12ws33d4e4_2_1.jpg'),(30543,89,0,1977,'/1/2/12ws33d4e4_2_1.jpg'),(30544,106,0,1977,'container2'),(30545,121,0,1977,'n-gant-marvel-eu-42-grey'),(30546,132,0,1977,'0'),(30547,133,0,1977,'/1/2/12ws33d4e4_2_1.jpg'),(30552,73,0,1978,' Gant Marvel-EU 42-black'),(30553,84,0,1978,' Gant Marvel'),(30554,86,0,1978,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30555,87,0,1978,'/3/5/356ggt6t_1_1.jpg'),(30556,88,0,1978,'/3/5/356ggt6t_1_1.jpg'),(30557,89,0,1978,'/3/5/356ggt6t_1_1.jpg'),(30558,106,0,1978,'container2'),(30559,121,0,1978,'n-gant-marvel-eu-42-black'),(30560,132,0,1978,'0'),(30561,133,0,1978,'/3/5/356ggt6t_1_1.jpg'),(30566,73,0,1979,' Gant Marvel-EU 40-brown'),(30567,84,0,1979,' Gant Marvel'),(30568,86,0,1979,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30569,87,0,1979,'/i/m/image_31085465_74_620x757_0_1_1_2_1.jpg'),(30570,88,0,1979,'/i/m/image_31085465_74_620x757_0_1_1_2_1.jpg'),(30571,89,0,1979,'/i/m/image_31085465_74_620x757_0_1_1_2_1.jpg'),(30572,106,0,1979,'container2'),(30573,121,0,1979,'n-gant-marvel-eu-40-brown'),(30574,132,0,1979,'0'),(30575,133,0,1979,'/i/m/image_31085465_74_620x757_0_1_1_2_1.jpg'),(30580,73,0,1980,' Gant Marvel-EU 40-grey'),(30581,84,0,1980,' Gant Marvel'),(30582,86,0,1980,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30583,87,0,1980,'/1/2/12ws33d4e4_3_1.jpg'),(30584,88,0,1980,'/1/2/12ws33d4e4_3_1.jpg'),(30585,89,0,1980,'/1/2/12ws33d4e4_3_1.jpg'),(30586,106,0,1980,'container2'),(30587,121,0,1980,'n-gant-marvel-eu-40-grey'),(30588,132,0,1980,'0'),(30589,133,0,1980,'/1/2/12ws33d4e4_3_1.jpg'),(30594,73,0,1981,' Gant Marvel-EU 40-black'),(30595,84,0,1981,' Gant Marvel'),(30596,86,0,1981,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30597,87,0,1981,'/3/5/356ggt6t_2_1.jpg'),(30598,88,0,1981,'/3/5/356ggt6t_2_1.jpg'),(30599,89,0,1981,'/3/5/356ggt6t_2_1.jpg'),(30600,106,0,1981,'container2'),(30601,121,0,1981,'n-gant-marvel-eu-40-black'),(30602,132,0,1981,'0'),(30603,133,0,1981,'/3/5/356ggt6t_2_1.jpg'),(30608,73,0,1982,' Gant Marvel-EU 43-brown'),(30609,84,0,1982,' Gant Marvel'),(30610,86,0,1982,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30611,87,0,1982,'/i/m/image_31085465_74_620x757_0_1_1_3.jpg'),(30612,88,0,1982,'/i/m/image_31085465_74_620x757_0_1_1_3.jpg'),(30613,89,0,1982,'/i/m/image_31085465_74_620x757_0_1_1_3.jpg'),(30614,106,0,1982,'container2'),(30615,121,0,1982,'n-gant-marvel-eu-43-brown'),(30616,132,0,1982,'0'),(30617,133,0,1982,'/i/m/image_31085465_74_620x757_0_1_1_3.jpg'),(30622,73,0,1983,' Gant Marvel-EU 43-grey'),(30623,84,0,1983,' Gant Marvel'),(30624,86,0,1983,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30625,87,0,1983,'/1/2/12ws33d4e4_4_1.jpg'),(30626,88,0,1983,'/1/2/12ws33d4e4_4_1.jpg'),(30627,89,0,1983,'/1/2/12ws33d4e4_4_1.jpg'),(30628,106,0,1983,'container2'),(30629,121,0,1983,'n-gant-marvel-eu-43-grey'),(30630,132,0,1983,'0'),(30631,133,0,1983,'/1/2/12ws33d4e4_4_1.jpg'),(30636,73,0,1984,' Gant Marvel-EU 43-black'),(30637,84,0,1984,' Gant Marvel'),(30638,86,0,1984,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30639,87,0,1984,'/3/5/356ggt6t_3_1.jpg'),(30640,88,0,1984,'/3/5/356ggt6t_3_1.jpg'),(30641,89,0,1984,'/3/5/356ggt6t_3_1.jpg'),(30642,106,0,1984,'container2'),(30643,121,0,1984,'n-gant-marvel-eu-43-black'),(30644,132,0,1984,'0'),(30645,133,0,1984,'/3/5/356ggt6t_3_1.jpg'),(30650,73,0,1985,' Gant Marvel-EU 41-brown'),(30651,84,0,1985,' Gant Marvel'),(30652,86,0,1985,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30653,87,0,1985,'/i/m/image_31085465_74_620x757_0_1_1_4.jpg'),(30654,88,0,1985,'/i/m/image_31085465_74_620x757_0_1_1_4.jpg'),(30655,89,0,1985,'/i/m/image_31085465_74_620x757_0_1_1_4.jpg'),(30656,106,0,1985,'container2'),(30657,121,0,1985,'n-gant-marvel-eu-41-brown'),(30658,132,0,1985,'0'),(30659,133,0,1985,'/i/m/image_31085465_74_620x757_0_1_1_4.jpg'),(30664,73,0,1986,' Gant Marvel-EU 41-grey'),(30665,84,0,1986,' Gant Marvel'),(30666,86,0,1986,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30667,87,0,1986,'/1/2/12ws33d4e4_5_1.jpg'),(30668,88,0,1986,'/1/2/12ws33d4e4_5_1.jpg'),(30669,89,0,1986,'/1/2/12ws33d4e4_5_1.jpg'),(30670,106,0,1986,'container2'),(30671,121,0,1986,'n-gant-marvel-eu-41-grey'),(30672,132,0,1986,'0'),(30673,133,0,1986,'/1/2/12ws33d4e4_5_1.jpg'),(30678,73,0,1987,' Gant Marvel-EU 41-black'),(30679,84,0,1987,' Gant Marvel'),(30680,86,0,1987,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30681,87,0,1987,'/3/5/356ggt6t_4_1.jpg'),(30682,88,0,1987,'/3/5/356ggt6t_4_1.jpg'),(30683,89,0,1987,'/3/5/356ggt6t_4_1.jpg'),(30684,106,0,1987,'container2'),(30685,121,0,1987,'n-gant-marvel-eu-41-black'),(30686,132,0,1987,'0'),(30687,133,0,1987,'/3/5/356ggt6t_4_1.jpg'),(30692,73,0,1988,' Gant Marvel-EU 44-brown'),(30693,84,0,1988,' Gant Marvel'),(30694,86,0,1988,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30695,87,0,1988,'/i/m/image_31085465_74_620x757_0_1_1_5.jpg'),(30696,88,0,1988,'/i/m/image_31085465_74_620x757_0_1_1_5.jpg'),(30697,89,0,1988,'/i/m/image_31085465_74_620x757_0_1_1_5.jpg'),(30698,106,0,1988,'container2'),(30699,121,0,1988,'n-gant-marvel-eu-44-brown'),(30700,132,0,1988,'0'),(30701,133,0,1988,'/i/m/image_31085465_74_620x757_0_1_1_5.jpg'),(30706,73,0,1989,' Gant Marvel-EU 44-grey'),(30707,84,0,1989,' Gant Marvel'),(30708,86,0,1989,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30709,87,0,1989,'/1/2/12ws33d4e4_6_1.jpg'),(30710,88,0,1989,'/1/2/12ws33d4e4_6_1.jpg'),(30711,89,0,1989,'/1/2/12ws33d4e4_6_1.jpg'),(30712,106,0,1989,'container2'),(30713,121,0,1989,'n-gant-marvel-eu-44-grey'),(30714,132,0,1989,'0'),(30715,133,0,1989,'/1/2/12ws33d4e4_6_1.jpg'),(30720,73,0,1990,' Gant Marvel-EU 44-black'),(30721,84,0,1990,' Gant Marvel'),(30722,86,0,1990,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30723,87,0,1990,'/3/5/356ggt6t_5_1.jpg'),(30724,88,0,1990,'/3/5/356ggt6t_5_1.jpg'),(30725,89,0,1990,'/3/5/356ggt6t_5_1.jpg'),(30726,106,0,1990,'container2'),(30727,121,0,1990,'n-gant-marvel-eu-44-black'),(30728,132,0,1990,'0'),(30729,133,0,1990,'/3/5/356ggt6t_5_1.jpg'),(30734,73,0,1991,'Gant Marvel'),(30735,84,0,1991,' Gant Marvel'),(30736,86,0,1991,' Gant Marvel The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the comp'),(30737,87,0,1991,'/1/2/12ws33d4e4_1_1.jpg'),(30738,88,0,1991,'/1/2/12ws33d4e4_1_1.jpg'),(30739,89,0,1991,'/1/2/12ws33d4e4_1_1.jpg'),(30740,106,0,1991,'container2'),(30741,121,0,1991,'n-gant-marvel'),(30742,132,0,1991,'2'),(30743,133,0,1991,'no_selection'),(30748,73,0,1992,'Moss Cargo Pants-grey-Medium size'),(30749,84,0,1992,'Moss Cargo Pants'),(30750,86,0,1992,'Moss Cargo Pants Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets'),(30751,87,0,1992,'/g/1/g1_15.jpg'),(30752,88,0,1992,'/g/1/g1_15.jpg'),(30753,89,0,1992,'/g/1/g1_15.jpg'),(30754,106,0,1992,'container2'),(30755,121,0,1992,'n-moss-cargo-pants-grey-medium-size'),(30756,132,0,1992,'0'),(30757,133,0,1992,'/g/1/g1_15.jpg'),(30758,206,0,1992,'98% cotton, 2% elastane'),(30763,73,0,1993,'Moss Cargo Pants-grey-Large size'),(30764,84,0,1993,'Moss Cargo Pants'),(30765,86,0,1993,'Moss Cargo Pants Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets'),(30766,87,0,1993,'/g/1/g1_15_1.jpg'),(30767,88,0,1993,'/g/1/g1_15_1.jpg'),(30768,89,0,1993,'/g/1/g1_15_1.jpg'),(30769,106,0,1993,'container2'),(30770,121,0,1993,'n-moss-cargo-pants-grey-large-size'),(30771,132,0,1993,'0'),(30772,133,0,1993,'/g/1/g1_15_1.jpg'),(30773,206,0,1993,'98% cotton, 2% elastane'),(30778,73,0,1994,'Moss Cargo Pants-brown-Medium size'),(30779,84,0,1994,'Moss Cargo Pants'),(30780,86,0,1994,'Moss Cargo Pants Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets'),(30781,87,0,1994,'/b/1/b1_19.jpg'),(30782,88,0,1994,'/b/1/b1_19.jpg'),(30783,89,0,1994,'/b/1/b1_19.jpg'),(30784,106,0,1994,'container2'),(30785,121,0,1994,'n-moss-cargo-pants-brown-medium-size'),(30786,132,0,1994,'0'),(30787,133,0,1994,'/b/1/b1_19.jpg'),(30788,206,0,1994,'98% cotton, 2% elastane'),(30793,73,0,1995,'Moss Cargo Pants-brown-Large size'),(30794,84,0,1995,'Moss Cargo Pants'),(30795,86,0,1995,'Moss Cargo Pants Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets'),(30796,87,0,1995,'/b/1/b1_19_1.jpg'),(30797,88,0,1995,'/b/1/b1_19_1.jpg'),(30798,89,0,1995,'/b/1/b1_19_1.jpg'),(30799,106,0,1995,'container2'),(30800,121,0,1995,'n-moss-cargo-pants-brown-large-size'),(30801,132,0,1995,'0'),(30802,133,0,1995,'/b/1/b1_19_1.jpg'),(30803,206,0,1995,'98% cotton, 2% elastane'),(30808,73,0,1996,'Moss Cargo Pants'),(30809,84,0,1996,'Moss Cargo Pants'),(30810,86,0,1996,'Moss Cargo Pants Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets'),(30811,87,0,1996,'/b/1/b1_20.jpg'),(30812,88,0,1996,'/b/1/b1_20.jpg'),(30813,89,0,1996,'/b/1/b1_20.jpg'),(30814,106,0,1996,'container2'),(30815,121,0,1996,'n-moss-cargo-pants'),(30816,132,0,1996,'2'),(30817,133,0,1996,'/b/1/b1_20.jpg'),(30818,206,0,1996,'98% cotton, 2% elastane'),(30823,73,0,1997,'Dark blue sunglasses-blue-Large size'),(30824,84,0,1997,'Dark blue sunglasses'),(30825,86,0,1997,'Dark blue sunglasses Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: plastic\r\nPlease note: May only '),(30826,87,0,1997,'/m/a/main_2_1_2.jpg'),(30827,88,0,1997,'/m/a/main_2_1_2.jpg'),(30828,89,0,1997,'/m/a/main_2_1_2.jpg'),(30829,106,0,1997,'container2'),(30830,121,0,1997,'dark-blue-sunglasses-blue-large-size'),(30831,132,0,1997,'0'),(30832,133,0,1997,'/m/a/main_2_1_2.jpg'),(30837,73,0,1998,'Dark blue sunglasses-blue-Medium size'),(30838,84,0,1998,'Dark blue sunglasses'),(30839,86,0,1998,'Dark blue sunglasses Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: plastic\r\nPlease note: May only '),(30840,87,0,1998,'/m/a/main_2_1_1_2.jpg'),(30841,88,0,1998,'/m/a/main_2_1_1_2.jpg'),(30842,89,0,1998,'/m/a/main_2_1_1_2.jpg'),(30843,106,0,1998,'container2'),(30844,121,0,1998,'dark-blue-sunglasses-blue-medium-size'),(30845,132,0,1998,'0'),(30846,133,0,1998,'/m/a/main_2_1_1_2.jpg'),(30851,73,0,1999,'Dark blue sunglasses-red-Large size'),(30852,84,0,1999,'Dark blue sunglasses'),(30853,86,0,1999,'Dark blue sunglasses Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: plastic\r\nPlease note: May only '),(30854,87,0,1999,'/2/3/234e3e3r_1_2.jpg'),(30855,88,0,1999,'/2/3/234e3e3r_1_2.jpg'),(30856,89,0,1999,'/2/3/234e3e3r_1_2.jpg'),(30857,106,0,1999,'container2'),(30858,121,0,1999,'dark-blue-sunglasses-red-large-size'),(30859,132,0,1999,'0'),(30860,133,0,1999,'/2/3/234e3e3r_1_2.jpg'),(30865,73,0,2000,'Dark blue sunglasses-red-Medium size'),(30866,84,0,2000,'Dark blue sunglasses'),(30867,86,0,2000,'Dark blue sunglasses Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: plastic\r\nPlease note: May only '),(30868,87,0,2000,'/2/3/234e3e3r_1_1_1.jpg'),(30869,88,0,2000,'/2/3/234e3e3r_1_1_1.jpg'),(30870,89,0,2000,'/2/3/234e3e3r_1_1_1.jpg'),(30871,106,0,2000,'container2'),(30872,121,0,2000,'dark-blue-sunglasses-red-medium-size'),(30873,132,0,2000,'0'),(30874,133,0,2000,'/2/3/234e3e3r_1_1_1.jpg'),(30879,73,0,2001,'Dark blue sunglasses'),(30880,84,0,2001,'Dark blue sunglasses'),(30881,86,0,2001,'Dark blue sunglasses Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: plastic\r\nPlease note: May only '),(30882,87,0,2001,'/m/a/main_2_2_1.jpg'),(30883,88,0,2001,'/m/a/main_2_2_1.jpg'),(30884,89,0,2001,'/m/a/main_2_2_1.jpg'),(30885,106,0,2001,'container2'),(30886,121,0,2001,'n-dark-blue-sunglasses'),(30887,132,0,2001,'2'),(30888,133,0,2001,'no_selection'),(30897,73,0,2002,'Boyfriend Jeans-red-Extra small size'),(30898,84,0,2002,'Boyfriend Jeans'),(30899,86,0,2002,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qu'),(30900,87,0,2002,'/r/1/r1_17.jpg'),(30901,88,0,2002,'/r/1/r1_17.jpg'),(30902,89,0,2002,'/r/1/r1_17.jpg'),(30903,106,0,2002,'container2'),(30904,121,0,2002,'n-boyfriend-jeans-red-extra-small-size'),(30905,132,0,2002,'0'),(30906,133,0,2002,'/r/1/r1_17.jpg'),(30911,73,0,2003,'Boyfriend Jeans-red-Large size'),(30912,84,0,2003,'Boyfriend Jeans'),(30913,86,0,2003,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qu'),(30914,87,0,2003,'/r/1/r1_17_1.jpg'),(30915,88,0,2003,'/r/1/r1_17_1.jpg'),(30916,89,0,2003,'/r/1/r1_17_1.jpg'),(30917,106,0,2003,'container2'),(30918,121,0,2003,'n-boyfriend-jeans-red-large-size'),(30919,132,0,2003,'0'),(30920,133,0,2003,'/r/1/r1_17_1.jpg'),(30925,73,0,2004,'Boyfriend Jeans-red-Small size'),(30926,84,0,2004,'Boyfriend Jeans'),(30927,86,0,2004,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qu'),(30928,87,0,2004,'/r/1/r1_17_2.jpg'),(30929,88,0,2004,'/r/1/r1_17_2.jpg'),(30930,89,0,2004,'/r/1/r1_17_2.jpg'),(30931,106,0,2004,'container2'),(30932,121,0,2004,'n-boyfriend-jeans-red-small-size'),(30933,132,0,2004,'0'),(30934,133,0,2004,'/r/1/r1_17_2.jpg'),(30939,73,0,2005,'Boyfriend Jeans-red-Medium size'),(30940,84,0,2005,'Boyfriend Jeans'),(30941,86,0,2005,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qu'),(30942,87,0,2005,'/r/1/r1_17_3.jpg'),(30943,88,0,2005,'/r/1/r1_17_3.jpg'),(30944,89,0,2005,'/r/1/r1_17_3.jpg'),(30945,106,0,2005,'container2'),(30946,121,0,2005,'n-boyfriend-jeans-red-medium-size'),(30947,132,0,2005,'0'),(30948,133,0,2005,'/r/1/r1_17_3.jpg'),(30953,73,0,2006,'Boyfriend Jeans-blue-Extra small size'),(30954,84,0,2006,'Boyfriend Jeans'),(30955,86,0,2006,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qu'),(30956,87,0,2006,'/b/1/b1_23.jpg'),(30957,88,0,2006,'/b/1/b1_23.jpg'),(30958,89,0,2006,'/b/1/b1_23.jpg'),(30959,106,0,2006,'container2'),(30960,121,0,2006,'n-boyfriend-jeans-blue-extra-small-size'),(30961,132,0,2006,'0'),(30962,133,0,2006,'/b/1/b1_23.jpg'),(30967,73,0,2007,'Boyfriend Jeans-blue-Large size'),(30968,84,0,2007,'Boyfriend Jeans'),(30969,86,0,2007,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qu'),(30970,87,0,2007,'/b/1/b1_23_1.jpg'),(30971,88,0,2007,'/b/1/b1_23_1.jpg'),(30972,89,0,2007,'/b/1/b1_23_1.jpg'),(30973,106,0,2007,'container2'),(30974,121,0,2007,'n-boyfriend-jeans-blue-large-size'),(30975,132,0,2007,'0'),(30976,133,0,2007,'/b/1/b1_23_1.jpg'),(30981,73,0,2008,'Boyfriend Jeans-blue-Small size'),(30982,84,0,2008,'Boyfriend Jeans'),(30983,86,0,2008,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qu'),(30984,87,0,2008,'/b/1/b1_23_2.jpg'),(30985,88,0,2008,'/b/1/b1_23_2.jpg'),(30986,89,0,2008,'/b/1/b1_23_2.jpg'),(30987,106,0,2008,'container2'),(30988,121,0,2008,'n-boyfriend-jeans-blue-small-size'),(30989,132,0,2008,'0'),(30990,133,0,2008,'/b/1/b1_23_2.jpg'),(30995,73,0,2009,'Boyfriend Jeans-blue-Medium size'),(30996,84,0,2009,'Boyfriend Jeans'),(30997,86,0,2009,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qu'),(30998,87,0,2009,'/b/1/b1_23_3.jpg'),(30999,88,0,2009,'/b/1/b1_23_3.jpg'),(31000,89,0,2009,'/b/1/b1_23_3.jpg'),(31001,106,0,2009,'container2'),(31002,121,0,2009,'n-boyfriend-jeans-blue-medium-size'),(31003,132,0,2009,'0'),(31004,133,0,2009,'/b/1/b1_23_3.jpg'),(31009,73,0,2010,'Boyfriend Jeans'),(31010,84,0,2010,'Boyfriend Jeans'),(31011,86,0,2010,'Boyfriend Jeans Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light qu'),(31012,87,0,2010,'/b/1/b1_24.jpg'),(31013,88,0,2010,'/b/1/b1_24.jpg'),(31014,89,0,2010,'/b/1/b1_24.jpg'),(31015,106,0,2010,'container2'),(31016,121,0,2010,'n-boyfriend-jeans'),(31017,132,0,2010,'2'),(31018,133,0,2010,'/b/1/b1_24.jpg'),(31027,73,0,2011,'Brax Chuck Slim Fit-white-Medium size'),(31028,84,0,2011,'Brax Chuck Slim Fit'),(31029,86,0,2011,'Brax Chuck Slim Fit This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks t'),(31030,87,0,2011,'/w/1/w1_15.jpg'),(31031,88,0,2011,'/w/1/w1_15.jpg'),(31032,89,0,2011,'/w/1/w1_15.jpg'),(31033,106,0,2011,'container2'),(31034,121,0,2011,'n-brax-chuck-slim-fit-white-medium-size'),(31035,132,0,2011,'0'),(31036,133,0,2011,'/w/1/w1_15.jpg'),(31037,206,0,2011,'Cotton'),(31042,73,0,2012,'Brax Chuck Slim Fit-white-Small size'),(31043,84,0,2012,'Brax Chuck Slim Fit'),(31044,86,0,2012,'Brax Chuck Slim Fit This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks t'),(31045,87,0,2012,'/w/1/w1_15_1.jpg'),(31046,88,0,2012,'/w/1/w1_15_1.jpg'),(31047,89,0,2012,'/w/1/w1_15_1.jpg'),(31048,106,0,2012,'container2'),(31049,121,0,2012,'n-brax-chuck-slim-fit-white-small-size'),(31050,132,0,2012,'0'),(31051,133,0,2012,'/w/1/w1_15_1.jpg'),(31052,206,0,2012,'Cotton'),(31057,73,0,2013,'Brax Chuck Slim Fit-white-Extra small size'),(31058,84,0,2013,'Brax Chuck Slim Fit'),(31059,86,0,2013,'Brax Chuck Slim Fit This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks t'),(31060,87,0,2013,'/w/1/w1_15_2.jpg'),(31061,88,0,2013,'/w/1/w1_15_2.jpg'),(31062,89,0,2013,'/w/1/w1_15_2.jpg'),(31063,106,0,2013,'container2'),(31064,121,0,2013,'n-brax-chuck-slim-fit-white-extra-small-size'),(31065,132,0,2013,'0'),(31066,133,0,2013,'/w/1/w1_15_2.jpg'),(31067,206,0,2013,'Cotton'),(31072,73,0,2014,'Brax Chuck Slim Fit-red-Medium size'),(31073,84,0,2014,'Brax Chuck Slim Fit'),(31074,86,0,2014,'Brax Chuck Slim Fit This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks t'),(31075,87,0,2014,'/r/1/r1_18.jpg'),(31076,88,0,2014,'/r/1/r1_18.jpg'),(31077,89,0,2014,'/r/1/r1_18.jpg'),(31078,106,0,2014,'container2'),(31079,121,0,2014,'n-brax-chuck-slim-fit-red-medium-size'),(31080,132,0,2014,'0'),(31081,133,0,2014,'/r/1/r1_18.jpg'),(31082,206,0,2014,'Cotton'),(31087,73,0,2015,'Brax Chuck Slim Fit-red-Small size'),(31088,84,0,2015,'Brax Chuck Slim Fit'),(31089,86,0,2015,'Brax Chuck Slim Fit This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks t'),(31090,87,0,2015,'/r/1/r1_18_1.jpg'),(31091,88,0,2015,'/r/1/r1_18_1.jpg'),(31092,89,0,2015,'/r/1/r1_18_1.jpg'),(31093,106,0,2015,'container2'),(31094,121,0,2015,'n-brax-chuck-slim-fit-red-small-size'),(31095,132,0,2015,'0'),(31096,133,0,2015,'/r/1/r1_18_1.jpg'),(31097,206,0,2015,'Cotton'),(31102,73,0,2016,'Brax Chuck Slim Fit-red-Extra small size'),(31103,84,0,2016,'Brax Chuck Slim Fit'),(31104,86,0,2016,'Brax Chuck Slim Fit This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks t'),(31105,87,0,2016,'/r/1/r1_18_2.jpg'),(31106,88,0,2016,'/r/1/r1_18_2.jpg'),(31107,89,0,2016,'/r/1/r1_18_2.jpg'),(31108,106,0,2016,'container2'),(31109,121,0,2016,'n-brax-chuck-slim-fit-red-extra-small-size'),(31110,132,0,2016,'0'),(31111,133,0,2016,'/r/1/r1_18_2.jpg'),(31112,206,0,2016,'Cotton'),(31117,73,0,2017,'Brax Chuck Slim Fit'),(31118,84,0,2017,'Brax Chuck Slim Fit'),(31119,86,0,2017,'Brax Chuck Slim Fit This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks t'),(31120,106,0,2017,'container2'),(31121,121,0,2017,'n-brax-chuck-slim-fit'),(31122,132,0,2017,'2'),(31123,206,0,2017,'Cotton'),(31124,73,0,2018,' Blue Leather Belt-brown-Small size'),(31125,84,0,2018,' Blue Leather Belt'),(31126,86,0,2018,' Blue Leather Belt Measurements for size EU 90: width approx. 3,5 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: Nubuck leather, partially textured surface\r\nMaterial: leather'),(31127,87,0,2018,'/2/3/23223x23_1_1.jpg'),(31128,88,0,2018,'/2/3/23223x23_1_1.jpg'),(31129,89,0,2018,'/2/3/23223x23_1_1.jpg'),(31130,106,0,2018,'container2'),(31131,121,0,2018,'n-blue-leather-belt-brown-small-size'),(31132,132,0,2018,'0'),(31133,133,0,2018,'/2/3/23223x23_1_1.jpg'),(31138,73,0,2019,' Blue Leather Belt-blue-Small size'),(31139,84,0,2019,' Blue Leather Belt'),(31140,86,0,2019,' Blue Leather Belt Measurements for size EU 90: width approx. 3,5 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: Nubuck leather, partially textured surface\r\nMaterial: leather'),(31141,87,0,2019,'/m/a/main_8_2_1.jpg'),(31142,88,0,2019,'/m/a/main_8_2_1.jpg'),(31143,89,0,2019,'/m/a/main_8_2_1.jpg'),(31144,106,0,2019,'container2'),(31145,121,0,2019,'n-blue-leather-belt-blue-small-size'),(31146,132,0,2019,'0'),(31147,133,0,2019,'/m/a/main_8_2_1.jpg'),(31152,73,0,2020,'Blue Leather Belt'),(31153,84,0,2020,' Blue Leather Belt'),(31154,86,0,2020,' Blue Leather Belt Measurements for size EU 90: width approx. 3,5 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: Nubuck leather, partially textured surface\r\nMaterial: leather'),(31155,87,0,2020,'/m/a/main_8_3.jpg'),(31156,88,0,2020,'/m/a/main_8_3.jpg'),(31157,89,0,2020,'/m/a/main_8_3.jpg'),(31158,106,0,2020,'container2'),(31159,121,0,2020,'n-medium-blue-leather-belt'),(31160,132,0,2020,'2'),(31161,133,0,2020,'no_selection'),(31166,73,0,2021,'Business Trousers-black-Medium size'),(31167,84,0,2021,'Business Trousers'),(31168,86,0,2021,'Business Trousers Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear '),(31169,87,0,2021,'/d/1/d1_9.jpg'),(31170,88,0,2021,'/d/1/d1_9.jpg'),(31171,89,0,2021,'/d/1/d1_9.jpg'),(31172,106,0,2021,'container2'),(31173,121,0,2021,'n-business-trousers-black-medium-size'),(31174,132,0,2021,'0'),(31175,133,0,2021,'/d/1/d1_9.jpg'),(31176,206,0,2021,'96% virgin wool, 4% polyamide'),(31181,73,0,2022,'Business Trousers-black-Small size'),(31182,84,0,2022,'Business Trousers'),(31183,86,0,2022,'Business Trousers Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear '),(31184,87,0,2022,'/d/1/d1_9_1.jpg'),(31185,88,0,2022,'/d/1/d1_9_1.jpg'),(31186,89,0,2022,'/d/1/d1_9_1.jpg'),(31187,106,0,2022,'container2'),(31188,121,0,2022,'n-business-trousers-black-small-size'),(31189,132,0,2022,'0'),(31190,133,0,2022,'/d/1/d1_9_1.jpg'),(31191,206,0,2022,'96% virgin wool, 4% polyamide'),(31196,73,0,2023,'Business Trousers-black-Extra small size'),(31197,84,0,2023,'Business Trousers'),(31198,86,0,2023,'Business Trousers Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear '),(31199,87,0,2023,'/d/1/d1_9_2.jpg'),(31200,88,0,2023,'/d/1/d1_9_2.jpg'),(31201,89,0,2023,'/d/1/d1_9_2.jpg'),(31202,106,0,2023,'container2'),(31203,121,0,2023,'n-business-trousers-black-extra-small-size'),(31204,132,0,2023,'0'),(31205,133,0,2023,'/d/1/d1_9_2.jpg'),(31206,206,0,2023,'96% virgin wool, 4% polyamide'),(31211,73,0,2024,'Business Trousers-black-Large size'),(31212,84,0,2024,'Business Trousers'),(31213,86,0,2024,'Business Trousers Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear '),(31214,87,0,2024,'/d/1/d1_9_3.jpg'),(31215,88,0,2024,'/d/1/d1_9_3.jpg'),(31216,89,0,2024,'/d/1/d1_9_3.jpg'),(31217,106,0,2024,'container2'),(31218,121,0,2024,'n-business-trousers-black-large-size'),(31219,132,0,2024,'0'),(31220,133,0,2024,'/d/1/d1_9_3.jpg'),(31221,206,0,2024,'96% virgin wool, 4% polyamide'),(31226,73,0,2025,'Business Trousers-brown-Medium size'),(31227,84,0,2025,'Business Trousers'),(31228,86,0,2025,'Business Trousers Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear '),(31229,87,0,2025,'/b/1/b1_25.jpg'),(31230,88,0,2025,'/b/1/b1_25.jpg'),(31231,89,0,2025,'/b/1/b1_25.jpg'),(31232,106,0,2025,'container2'),(31233,121,0,2025,'n-business-trousers-brown-medium-size'),(31234,132,0,2025,'0'),(31235,133,0,2025,'/b/1/b1_25.jpg'),(31236,206,0,2025,'96% virgin wool, 4% polyamide'),(31241,73,0,2026,'Business Trousers-brown-Small size'),(31242,84,0,2026,'Business Trousers'),(31243,86,0,2026,'Business Trousers Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear '),(31244,87,0,2026,'/b/1/b1_25_1.jpg'),(31245,88,0,2026,'/b/1/b1_25_1.jpg'),(31246,89,0,2026,'/b/1/b1_25_1.jpg'),(31247,106,0,2026,'container2'),(31248,121,0,2026,'n-business-trousers-brown-small-size'),(31249,132,0,2026,'0'),(31250,133,0,2026,'/b/1/b1_25_1.jpg'),(31251,206,0,2026,'96% virgin wool, 4% polyamide'),(31256,73,0,2027,'Business Trousers-brown-Extra small size'),(31257,84,0,2027,'Business Trousers'),(31258,86,0,2027,'Business Trousers Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear '),(31259,87,0,2027,'/b/1/b1_25_2.jpg'),(31260,88,0,2027,'/b/1/b1_25_2.jpg'),(31261,89,0,2027,'/b/1/b1_25_2.jpg'),(31262,106,0,2027,'container2'),(31263,121,0,2027,'n-business-trousers-brown-extra-small-size'),(31264,132,0,2027,'0'),(31265,133,0,2027,'/b/1/b1_25_2.jpg'),(31266,206,0,2027,'96% virgin wool, 4% polyamide'),(31271,73,0,2028,'Business Trousers-brown-Large size'),(31272,84,0,2028,'Business Trousers'),(31273,86,0,2028,'Business Trousers Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear '),(31274,87,0,2028,'/b/1/b1_25_3.jpg'),(31275,88,0,2028,'/b/1/b1_25_3.jpg'),(31276,89,0,2028,'/b/1/b1_25_3.jpg'),(31277,106,0,2028,'container2'),(31278,121,0,2028,'n-business-trousers-brown-large-size'),(31279,132,0,2028,'0'),(31280,133,0,2028,'/b/1/b1_25_3.jpg'),(31281,206,0,2028,'96% virgin wool, 4% polyamide'),(31286,73,0,2029,'Business Trousers'),(31287,84,0,2029,'Business Trousers'),(31288,86,0,2029,'Business Trousers Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear '),(31289,87,0,2029,'/d/1/d1_10.jpg'),(31290,88,0,2029,'/d/1/d1_10.jpg'),(31291,89,0,2029,'/d/1/d1_10.jpg'),(31292,106,0,2029,'container2'),(31293,121,0,2029,'n-business-trousers'),(31294,132,0,2029,'2'),(31295,133,0,2029,'/d/1/d1_10.jpg'),(31296,206,0,2029,'96% virgin wool, 4% polyamide'),(31301,73,0,2030,' Taupe Leather Belt-brown-Small size'),(31302,84,0,2030,' Taupe Leather Belt'),(31303,86,0,2030,' Taupe Leather Belt Measurements for size EU 95: width approx. 3,3 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: suede\r\nMaterial: leather'),(31304,87,0,2030,'/m/a/main_6_2_1.jpg'),(31305,88,0,2030,'/m/a/main_6_2_1.jpg'),(31306,89,0,2030,'/m/a/main_6_2_1.jpg'),(31307,106,0,2030,'container2'),(31308,121,0,2030,'n-taupe-leather-belt-brown-small-size'),(31309,132,0,2030,'0'),(31310,133,0,2030,'/m/a/main_6_2_1.jpg'),(31315,73,0,2031,' Taupe Leather Belt-blue-Small size'),(31316,84,0,2031,' Taupe Leather Belt'),(31317,86,0,2031,' Taupe Leather Belt Measurements for size EU 95: width approx. 3,3 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: suede\r\nMaterial: leather'),(31318,87,0,2031,'/3/4/343e3r4r4_1_1_1.jpg'),(31319,88,0,2031,'/3/4/343e3r4r4_1_1_1.jpg'),(31320,89,0,2031,'/3/4/343e3r4r4_1_1_1.jpg'),(31321,106,0,2031,'container2'),(31322,121,0,2031,'n-taupe-leather-belt-blue-small-size'),(31323,132,0,2031,'0'),(31324,133,0,2031,'/3/4/343e3r4r4_1_1_1.jpg'),(31329,73,0,2032,'Taupe Leather Belt'),(31330,84,0,2032,' Taupe Leather Belt'),(31331,86,0,2032,' Taupe Leather Belt Measurements for size EU 95: width approx. 3,3 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: suede\r\nMaterial: leather'),(31332,87,0,2032,'/m/a/main_6_3.jpg'),(31333,88,0,2032,'/m/a/main_6_3.jpg'),(31334,89,0,2032,'/m/a/main_6_3.jpg'),(31335,106,0,2032,'container2'),(31336,121,0,2032,'n-taupe-leather-belt'),(31337,132,0,2032,'2'),(31338,133,0,2032,'no_selection'),(31478,73,0,2042,'Casual Trousers-blue-Extra small size'),(31479,84,0,2042,'Casual Trousers'),(31480,86,0,2042,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a co'),(31481,87,0,2042,'/b/1/b1_26.jpg'),(31482,88,0,2042,'/b/1/b1_26.jpg'),(31483,89,0,2042,'/b/1/b1_26.jpg'),(31484,106,0,2042,'container2'),(31485,121,0,2042,'n-casual-trousers-blue-extra-small-size'),(31486,132,0,2042,'0'),(31487,133,0,2042,'/b/1/b1_26.jpg'),(31488,206,0,2042,'65% polyester, 32% viscose, 3% elastane'),(31493,73,0,2043,'Casual Trousers-blue-Large size'),(31494,84,0,2043,'Casual Trousers'),(31495,86,0,2043,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a co'),(31496,87,0,2043,'/b/1/b1_26_1.jpg'),(31497,88,0,2043,'/b/1/b1_26_1.jpg'),(31498,89,0,2043,'/b/1/b1_26_1.jpg'),(31499,106,0,2043,'container2'),(31500,121,0,2043,'n-casual-trousers-blue-large-size'),(31501,132,0,2043,'0'),(31502,133,0,2043,'/b/1/b1_26_1.jpg'),(31503,206,0,2043,'65% polyester, 32% viscose, 3% elastane'),(31508,73,0,2044,'Casual Trousers-blue-Small size'),(31509,84,0,2044,'Casual Trousers'),(31510,86,0,2044,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a co'),(31511,87,0,2044,'/b/1/b1_26_2.jpg'),(31512,88,0,2044,'/b/1/b1_26_2.jpg'),(31513,89,0,2044,'/b/1/b1_26_2.jpg'),(31514,106,0,2044,'container2'),(31515,121,0,2044,'n-casual-trousers-blue-small-size'),(31516,132,0,2044,'0'),(31517,133,0,2044,'/b/1/b1_26_2.jpg'),(31518,206,0,2044,'65% polyester, 32% viscose, 3% elastane'),(31523,73,0,2045,'Casual Trousers-blue-Medium size'),(31524,84,0,2045,'Casual Trousers'),(31525,86,0,2045,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a co'),(31526,87,0,2045,'/b/1/b1_26_3.jpg'),(31527,88,0,2045,'/b/1/b1_26_3.jpg'),(31528,89,0,2045,'/b/1/b1_26_3.jpg'),(31529,106,0,2045,'container2'),(31530,121,0,2045,'n-casual-trousers-blue-medium-size'),(31531,132,0,2045,'0'),(31532,133,0,2045,'/b/1/b1_26_3.jpg'),(31533,206,0,2045,'65% polyester, 32% viscose, 3% elastane'),(31538,73,0,2046,'Casual Trousers-grey-Extra small size'),(31539,84,0,2046,'Casual Trousers'),(31540,86,0,2046,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a co'),(31541,87,0,2046,'/g/1/g1_16.jpg'),(31542,88,0,2046,'/g/1/g1_16.jpg'),(31543,89,0,2046,'/g/1/g1_16.jpg'),(31544,106,0,2046,'container2'),(31545,121,0,2046,'n-casual-trousers-grey-extra-small-size'),(31546,132,0,2046,'0'),(31547,133,0,2046,'/g/1/g1_16.jpg'),(31548,206,0,2046,'65% polyester, 32% viscose, 3% elastane'),(31553,73,0,2047,'Casual Trousers-grey-Large size'),(31554,84,0,2047,'Casual Trousers'),(31555,86,0,2047,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a co'),(31556,87,0,2047,'/g/1/g1_16_1.jpg'),(31557,88,0,2047,'/g/1/g1_16_1.jpg'),(31558,89,0,2047,'/g/1/g1_16_1.jpg'),(31559,106,0,2047,'container2'),(31560,121,0,2047,'n-casual-trousers-grey-large-size'),(31561,132,0,2047,'0'),(31562,133,0,2047,'/g/1/g1_16_1.jpg'),(31563,206,0,2047,'65% polyester, 32% viscose, 3% elastane'),(31568,73,0,2048,'Casual Trousers-grey-Small size'),(31569,84,0,2048,'Casual Trousers'),(31570,86,0,2048,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a co'),(31571,87,0,2048,'/g/1/g1_16_2.jpg'),(31572,88,0,2048,'/g/1/g1_16_2.jpg'),(31573,89,0,2048,'/g/1/g1_16_2.jpg'),(31574,106,0,2048,'container2'),(31575,121,0,2048,'n-casual-trousers-grey-small-size'),(31576,132,0,2048,'0'),(31577,133,0,2048,'/g/1/g1_16_2.jpg'),(31578,206,0,2048,'65% polyester, 32% viscose, 3% elastane'),(31583,73,0,2049,'Casual Trousers-grey-Medium size'),(31584,84,0,2049,'Casual Trousers'),(31585,86,0,2049,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a co'),(31586,87,0,2049,'/g/1/g1_16_3.jpg'),(31587,88,0,2049,'/g/1/g1_16_3.jpg'),(31588,89,0,2049,'/g/1/g1_16_3.jpg'),(31589,106,0,2049,'container2'),(31590,121,0,2049,'n-casual-trousers-grey-medium-size'),(31591,132,0,2049,'0'),(31592,133,0,2049,'/g/1/g1_16_3.jpg'),(31593,206,0,2049,'65% polyester, 32% viscose, 3% elastane'),(31598,73,0,2050,'Casual Trousers'),(31599,84,0,2050,'Casual Trousers'),(31600,86,0,2050,'Casual Trousers The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a co'),(31601,87,0,2050,'/g/1/g1_17.jpg'),(31602,88,0,2050,'/g/1/g1_17.jpg'),(31603,89,0,2050,'/g/1/g1_17.jpg'),(31604,106,0,2050,'container2'),(31605,121,0,2050,'n-casual-trousers'),(31606,132,0,2050,'2'),(31607,133,0,2050,'/g/1/g1_17.jpg'),(31608,206,0,2050,'65% polyester, 32% viscose, 3% elastane'),(31613,73,0,2051,' Violet sunglasses-black-Small size'),(31614,84,0,2051,' Violet sunglasses'),(31615,86,0,2051,' Violet sunglasses Reference number: DL0255\r\nMeasurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3 Extras: logo appliqué(s), case included\r\nMaterial: pla'),(31616,87,0,2051,'/m/a/main_4_2_2.jpg'),(31617,88,0,2051,'/m/a/main_4_2_2.jpg'),(31618,89,0,2051,'/m/a/main_4_2_2.jpg'),(31619,106,0,2051,'container2'),(31620,121,0,2051,'n-violet-sunglasses-black-small-size'),(31621,132,0,2051,'0'),(31622,133,0,2051,'/m/a/main_4_2_2.jpg'),(31627,73,0,2052,' Violet sunglasses-black-Medium size'),(31628,84,0,2052,' Violet sunglasses'),(31629,86,0,2052,' Violet sunglasses Reference number: DL0255\r\nMeasurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3 Extras: logo appliqué(s), case included\r\nMaterial: pla'),(31630,87,0,2052,'/m/a/main_4_2_2_1.jpg'),(31631,88,0,2052,'/m/a/main_4_2_2_1.jpg'),(31632,89,0,2052,'/m/a/main_4_2_2_1.jpg'),(31633,106,0,2052,'container2'),(31634,121,0,2052,'n-violet-sunglasses-black-medium-size'),(31635,132,0,2052,'0'),(31636,133,0,2052,'/m/a/main_4_2_2_1.jpg'),(31641,73,0,2053,' Violet sunglasses-red-Small size'),(31642,84,0,2053,' Violet sunglasses'),(31643,86,0,2053,' Violet sunglasses Reference number: DL0255\r\nMeasurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3 Extras: logo appliqué(s), case included\r\nMaterial: pla'),(31644,87,0,2053,'/2/3/232312e3e3e_2.jpg'),(31645,88,0,2053,'/2/3/232312e3e3e_2.jpg'),(31646,89,0,2053,'/2/3/232312e3e3e_2.jpg'),(31647,106,0,2053,'container2'),(31648,121,0,2053,'n-violet-sunglasses-red-small-size'),(31649,132,0,2053,'0'),(31650,133,0,2053,'/2/3/232312e3e3e_2.jpg'),(31655,73,0,2054,' Violet sunglasses-red-Medium size'),(31656,84,0,2054,' Violet sunglasses'),(31657,86,0,2054,' Violet sunglasses Reference number: DL0255\r\nMeasurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3 Extras: logo appliqué(s), case included\r\nMaterial: pla'),(31658,87,0,2054,'/2/3/232312e3e3e_1_1.jpg'),(31659,88,0,2054,'/2/3/232312e3e3e_1_1.jpg'),(31660,89,0,2054,'/2/3/232312e3e3e_1_1.jpg'),(31661,106,0,2054,'container2'),(31662,121,0,2054,'n-violet-sunglasses-red-medium-size'),(31663,132,0,2054,'0'),(31664,133,0,2054,'/2/3/232312e3e3e_1_1.jpg'),(31669,73,0,2055,'Violet sunglasses'),(31670,84,0,2055,' Violet sunglasses'),(31671,86,0,2055,' Violet sunglasses Reference number: DL0255\r\nMeasurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3 Extras: logo appliqué(s), case included\r\nMaterial: pla'),(31672,87,0,2055,'/m/a/main_4_2_1_2.jpg'),(31673,88,0,2055,'/m/a/main_4_2_1_2.jpg'),(31674,89,0,2055,'/m/a/main_4_2_1_2.jpg'),(31675,106,0,2055,'container2'),(31676,121,0,2055,'n-black-sunglasses-1'),(31677,132,0,2055,'2'),(31678,133,0,2055,'no_selection'),(31683,73,0,2056,'Chiffon Dress -Small size-brown'),(31684,84,0,2056,'Chiffon Dress '),(31685,86,0,2056,'Chiffon Dress  \r\n\r\n\r\n\r\n\r\n\r\nCut: fitted with a slightly tapered skirt, back slit\r\nMeasurements for size EU S: garment length 106 cm (41.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: shortsleeve\r\nLining: lined\r\nPattern: solid-coloured\r\nOuter mate'),(31686,87,0,2056,'/b/1/b1_27.jpg'),(31687,88,0,2056,'/b/1/b1_27.jpg'),(31688,89,0,2056,'/b/1/b1_27.jpg'),(31689,106,0,2056,'container2'),(31690,121,0,2056,'n-chiffon-dress-small-size-brown'),(31691,132,0,2056,'0'),(31692,133,0,2056,'/b/1/b1_27.jpg'),(31693,206,0,2056,'60% cotton, 40% polyamide'),(31698,73,0,2057,'Chiffon Dress -Small size-grey'),(31699,84,0,2057,'Chiffon Dress '),(31700,86,0,2057,'Chiffon Dress  \r\n\r\n\r\n\r\n\r\n\r\nCut: fitted with a slightly tapered skirt, back slit\r\nMeasurements for size EU S: garment length 106 cm (41.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: shortsleeve\r\nLining: lined\r\nPattern: solid-coloured\r\nOuter mate'),(31701,87,0,2057,'/g/1/g1_18.jpg'),(31702,88,0,2057,'/g/1/g1_18.jpg'),(31703,89,0,2057,'/g/1/g1_18.jpg'),(31704,106,0,2057,'container2'),(31705,121,0,2057,'n-chiffon-dress-small-size-grey'),(31706,132,0,2057,'0'),(31707,133,0,2057,'/g/1/g1_18.jpg'),(31708,206,0,2057,'60% cotton, 40% polyamide'),(31713,73,0,2058,'Chiffon Dress -Medium size-brown'),(31714,84,0,2058,'Chiffon Dress '),(31715,86,0,2058,'Chiffon Dress  \r\n\r\n\r\n\r\n\r\n\r\nCut: fitted with a slightly tapered skirt, back slit\r\nMeasurements for size EU S: garment length 106 cm (41.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: shortsleeve\r\nLining: lined\r\nPattern: solid-coloured\r\nOuter mate'),(31716,87,0,2058,'/b/1/b1_27_1.jpg'),(31717,88,0,2058,'/b/1/b1_27_1.jpg'),(31718,89,0,2058,'/b/1/b1_27_1.jpg'),(31719,106,0,2058,'container2'),(31720,121,0,2058,'n-chiffon-dress-medium-size-brown'),(31721,132,0,2058,'0'),(31722,133,0,2058,'/b/1/b1_27_1.jpg'),(31723,206,0,2058,'60% cotton, 40% polyamide'),(31728,73,0,2059,'Chiffon Dress -Medium size-grey'),(31729,84,0,2059,'Chiffon Dress '),(31730,86,0,2059,'Chiffon Dress  \r\n\r\n\r\n\r\n\r\n\r\nCut: fitted with a slightly tapered skirt, back slit\r\nMeasurements for size EU S: garment length 106 cm (41.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: shortsleeve\r\nLining: lined\r\nPattern: solid-coloured\r\nOuter mate'),(31731,87,0,2059,'/g/1/g1_18_1.jpg'),(31732,88,0,2059,'/g/1/g1_18_1.jpg'),(31733,89,0,2059,'/g/1/g1_18_1.jpg'),(31734,106,0,2059,'container2'),(31735,121,0,2059,'n-chiffon-dress-medium-size-grey'),(31736,132,0,2059,'0'),(31737,133,0,2059,'/g/1/g1_18_1.jpg'),(31738,206,0,2059,'60% cotton, 40% polyamide'),(31743,73,0,2060,'Chiffon Dress '),(31744,84,0,2060,'Chiffon Dress '),(31745,86,0,2060,'Chiffon Dress  \r\n\r\n\r\n\r\n\r\n\r\nCut: fitted with a slightly tapered skirt, back slit\r\nMeasurements for size EU S: garment length 106 cm (41.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: shortsleeve\r\nLining: lined\r\nPattern: solid-coloured\r\nOuter mate'),(31746,87,0,2060,'/g/1/g1_19.jpg'),(31747,88,0,2060,'/g/1/g1_19.jpg'),(31748,89,0,2060,'/g/1/g1_19.jpg'),(31749,106,0,2060,'container2'),(31750,121,0,2060,'n-chiffon-dress'),(31751,132,0,2060,'2'),(31752,133,0,2060,'/g/1/g1_19.jpg'),(31753,206,0,2060,'60% cotton, 40% polyamide'),(31758,73,0,2061,'Chino-black-Extra small size'),(31759,84,0,2061,'Chino'),(31760,86,0,2061,'Chino Cut: slim, tapered legMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, mock welt pocket/s at the b'),(31761,87,0,2061,'/d/1/d1_12.jpg'),(31762,88,0,2061,'/d/1/d1_12.jpg'),(31763,89,0,2061,'/d/1/d1_12.jpg'),(31764,106,0,2061,'container2'),(31765,121,0,2061,'n-chino-black-extra-small-size'),(31766,132,0,2061,'0'),(31767,133,0,2061,'/d/1/d1_12.jpg'),(31768,206,0,2061,'100% cotton'),(31773,73,0,2062,'Chino-black-Small size'),(31774,84,0,2062,'Chino'),(31775,86,0,2062,'Chino Cut: slim, tapered legMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, mock welt pocket/s at the b'),(31776,87,0,2062,'/d/1/d1_12_1.jpg'),(31777,88,0,2062,'/d/1/d1_12_1.jpg'),(31778,89,0,2062,'/d/1/d1_12_1.jpg'),(31779,106,0,2062,'container2'),(31780,121,0,2062,'n-chino-black-small-size'),(31781,132,0,2062,'0'),(31782,133,0,2062,'/d/1/d1_12_1.jpg'),(31783,206,0,2062,'100% cotton'),(31788,73,0,2063,'Chino-grey-Extra small size'),(31789,84,0,2063,'Chino'),(31790,86,0,2063,'Chino Cut: slim, tapered legMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, mock welt pocket/s at the b'),(31791,87,0,2063,'/g/1/g1_20.jpg'),(31792,88,0,2063,'/g/1/g1_20.jpg'),(31793,89,0,2063,'/g/1/g1_20.jpg'),(31794,106,0,2063,'container2'),(31795,121,0,2063,'n-chino-grey-extra-small-size'),(31796,132,0,2063,'0'),(31797,133,0,2063,'/g/1/g1_20.jpg'),(31798,206,0,2063,'100% cotton'),(31803,73,0,2064,'Chino-grey-Small size'),(31804,84,0,2064,'Chino'),(31805,86,0,2064,'Chino Cut: slim, tapered legMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, mock welt pocket/s at the b'),(31806,87,0,2064,'/g/1/g1_20_1.jpg'),(31807,88,0,2064,'/g/1/g1_20_1.jpg'),(31808,89,0,2064,'/g/1/g1_20_1.jpg'),(31809,106,0,2064,'container2'),(31810,121,0,2064,'n-chino-grey-small-size'),(31811,132,0,2064,'0'),(31812,133,0,2064,'/g/1/g1_20_1.jpg'),(31813,206,0,2064,'100% cotton'),(31818,73,0,2065,'Chino'),(31819,84,0,2065,'Chino'),(31820,86,0,2065,'Chino Cut: slim, tapered legMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, mock welt pocket/s at the b'),(31821,87,0,2065,'/d/1/d1_13.jpg'),(31822,88,0,2065,'/d/1/d1_13.jpg'),(31823,89,0,2065,'/d/1/d1_13.jpg'),(31824,106,0,2065,'container2'),(31825,121,0,2065,'n-chino'),(31826,132,0,2065,'2'),(31827,133,0,2065,'/d/1/d1_13.jpg'),(31828,206,0,2065,'100% cotton'),(31833,73,0,2066,'Cocktail Dress-red-Extra small size'),(31834,84,0,2066,'Cocktail Dress'),(31835,86,0,2066,'Cocktail Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: ligh'),(31836,87,0,2066,'/r/1/r1_19.jpg'),(31837,88,0,2066,'/r/1/r1_19.jpg'),(31838,89,0,2066,'/r/1/r1_19.jpg'),(31839,106,0,2066,'container2'),(31840,121,0,2066,'n-cocktail-dress-red-extra-small-size'),(31841,132,0,2066,'0'),(31842,133,0,2066,'/r/1/r1_19.jpg'),(31843,206,0,2066,' 100% polyeste'),(31848,73,0,2067,'Cocktail Dress-red-Small size'),(31849,84,0,2067,'Cocktail Dress'),(31850,86,0,2067,'Cocktail Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: ligh'),(31851,87,0,2067,'/r/1/r1_19_1.jpg'),(31852,88,0,2067,'/r/1/r1_19_1.jpg'),(31853,89,0,2067,'/r/1/r1_19_1.jpg'),(31854,106,0,2067,'container2'),(31855,121,0,2067,'n-cocktail-dress-red-small-size'),(31856,132,0,2067,'0'),(31857,133,0,2067,'/r/1/r1_19_1.jpg'),(31858,206,0,2067,' 100% polyeste'),(31863,73,0,2068,'Cocktail Dress-red-Medium size'),(31864,84,0,2068,'Cocktail Dress'),(31865,86,0,2068,'Cocktail Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: ligh'),(31866,87,0,2068,'/r/1/r1_19_2.jpg'),(31867,88,0,2068,'/r/1/r1_19_2.jpg'),(31868,89,0,2068,'/r/1/r1_19_2.jpg'),(31869,106,0,2068,'container2'),(31870,121,0,2068,'n-cocktail-dress-red-medium-size'),(31871,132,0,2068,'0'),(31872,133,0,2068,'/r/1/r1_19_2.jpg'),(31873,206,0,2068,' 100% polyeste'),(31878,73,0,2069,'Cocktail Dress-white-Extra small size'),(31879,84,0,2069,'Cocktail Dress'),(31880,86,0,2069,'Cocktail Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: ligh'),(31881,87,0,2069,'/w/1/w1_18.jpg'),(31882,88,0,2069,'/w/1/w1_18.jpg'),(31883,89,0,2069,'/w/1/w1_18.jpg'),(31884,106,0,2069,'container2'),(31885,121,0,2069,'n-cocktail-dress-white-extra-small-size'),(31886,132,0,2069,'0'),(31887,133,0,2069,'/w/1/w1_18.jpg'),(31888,206,0,2069,' 100% polyeste'),(31893,73,0,2070,'Cocktail Dress-white-Small size'),(31894,84,0,2070,'Cocktail Dress'),(31895,86,0,2070,'Cocktail Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: ligh'),(31896,87,0,2070,'/w/1/w1_18_1.jpg'),(31897,88,0,2070,'/w/1/w1_18_1.jpg'),(31898,89,0,2070,'/w/1/w1_18_1.jpg'),(31899,106,0,2070,'container2'),(31900,121,0,2070,'n-cocktail-dress-white-small-size'),(31901,132,0,2070,'0'),(31902,133,0,2070,'/w/1/w1_18_1.jpg'),(31903,206,0,2070,' 100% polyeste'),(31908,73,0,2071,'Cocktail Dress-white-Medium size'),(31909,84,0,2071,'Cocktail Dress'),(31910,86,0,2071,'Cocktail Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: ligh'),(31911,87,0,2071,'/w/1/w1_18_2.jpg'),(31912,88,0,2071,'/w/1/w1_18_2.jpg'),(31913,89,0,2071,'/w/1/w1_18_2.jpg'),(31914,106,0,2071,'container2'),(31915,121,0,2071,'n-cocktail-dress-white-medium-size'),(31916,132,0,2071,'0'),(31917,133,0,2071,'/w/1/w1_18_2.jpg'),(31918,206,0,2071,' 100% polyeste'),(31923,73,0,2072,'Cocktail Dress'),(31924,84,0,2072,'Cocktail Dress'),(31925,86,0,2072,'Cocktail Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: ligh'),(31926,87,0,2072,'/w/1/w1_19.jpg'),(31927,88,0,2072,'/w/1/w1_19.jpg'),(31928,89,0,2072,'/w/1/w1_19.jpg'),(31929,106,0,2072,'container2'),(31930,121,0,2072,'n-cocktail-dress'),(31931,132,0,2072,'2'),(31932,133,0,2072,'/w/1/w1_19.jpg'),(31933,206,0,2072,' 100% polyeste'),(31938,73,0,2073,' Sunglasses-black-Small size'),(31939,84,0,2073,' Sunglasses'),(31940,86,0,2073,' Sunglasses Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3 Extras: logo on both temples, case included, gift-box\r\nMaterial: plastic\r\nPlease note: '),(31941,87,0,2073,'/i/m/image_31160332_10_620x757_0_2.jpg'),(31942,88,0,2073,'/i/m/image_31160332_10_620x757_0_2.jpg'),(31943,89,0,2073,'/i/m/image_31160332_10_620x757_0_2.jpg'),(31944,106,0,2073,'container2'),(31945,121,0,2073,'n-sunglasses-black-small-size'),(31946,132,0,2073,'0'),(31947,133,0,2073,'/i/m/image_31160332_10_620x757_0_2.jpg'),(31952,73,0,2074,' Sunglasses-black-Medium size'),(31953,84,0,2074,' Sunglasses'),(31954,86,0,2074,' Sunglasses Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3 Extras: logo on both temples, case included, gift-box\r\nMaterial: plastic\r\nPlease note: '),(31955,87,0,2074,'/i/m/image_31160332_10_620x757_0_2_1.jpg'),(31956,88,0,2074,'/i/m/image_31160332_10_620x757_0_2_1.jpg'),(31957,89,0,2074,'/i/m/image_31160332_10_620x757_0_2_1.jpg'),(31958,106,0,2074,'container2'),(31959,121,0,2074,'n-sunglasses-black-medium-size'),(31960,132,0,2074,'0'),(31961,133,0,2074,'/i/m/image_31160332_10_620x757_0_2_1.jpg'),(31966,73,0,2075,' Sunglasses-red-Small size'),(31967,84,0,2075,' Sunglasses'),(31968,86,0,2075,' Sunglasses Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3 Extras: logo on both temples, case included, gift-box\r\nMaterial: plastic\r\nPlease note: '),(31969,87,0,2075,'/2/3/23434r4r4_2.jpg'),(31970,88,0,2075,'/2/3/23434r4r4_2.jpg'),(31971,89,0,2075,'/2/3/23434r4r4_2.jpg'),(31972,106,0,2075,'container2'),(31973,121,0,2075,'n-sunglasses-red-small-size'),(31974,132,0,2075,'0'),(31975,133,0,2075,'/2/3/23434r4r4_2.jpg'),(31980,73,0,2076,' Sunglasses-red-Medium size'),(31981,84,0,2076,' Sunglasses'),(31982,86,0,2076,' Sunglasses Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3 Extras: logo on both temples, case included, gift-box\r\nMaterial: plastic\r\nPlease note: '),(31983,87,0,2076,'/2/3/23434r4r4_1_1.jpg'),(31984,88,0,2076,'/2/3/23434r4r4_1_1.jpg'),(31985,89,0,2076,'/2/3/23434r4r4_1_1.jpg'),(31986,106,0,2076,'container2'),(31987,121,0,2076,'n-sunglasses-red-medium-size'),(31988,132,0,2076,'0'),(31989,133,0,2076,'/2/3/23434r4r4_1_1.jpg'),(31994,73,0,2077,'Sunglasses'),(31995,84,0,2077,' Sunglasses'),(31996,86,0,2077,' Sunglasses Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3 Extras: logo on both temples, case included, gift-box\r\nMaterial: plastic\r\nPlease note: '),(31997,87,0,2077,'/i/m/image_31160332_10_620x757_0_1_2.jpg'),(31998,88,0,2077,'/i/m/image_31160332_10_620x757_0_1_2.jpg'),(31999,89,0,2077,'/i/m/image_31160332_10_620x757_0_1_2.jpg'),(32000,106,0,2077,'container2'),(32001,121,0,2077,'n-sunglasses'),(32002,132,0,2077,'2'),(32003,133,0,2077,'no_selection'),(32008,73,0,2078,'Colmar Soft Down Jacket-blue-Extra small size'),(32009,84,0,2078,'Colmar Soft Down Jacket'),(32010,86,0,2078,'Colmar Soft Down Jacket Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuff'),(32011,87,0,2078,'/b/1/b1_28.jpg'),(32012,88,0,2078,'/b/1/b1_28.jpg'),(32013,89,0,2078,'/b/1/b1_28.jpg'),(32014,106,0,2078,'container2'),(32015,121,0,2078,'n-colmar-soft-down-jacket-blue-extra-small-size'),(32016,132,0,2078,'0'),(32017,133,0,2078,'/b/1/b1_28.jpg'),(32018,206,0,2078,'100% polyamide'),(32023,73,0,2079,'Colmar Soft Down Jacket-blue-Large size'),(32024,84,0,2079,'Colmar Soft Down Jacket'),(32025,86,0,2079,'Colmar Soft Down Jacket Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuff'),(32026,87,0,2079,'/b/1/b1_28_1.jpg'),(32027,88,0,2079,'/b/1/b1_28_1.jpg'),(32028,89,0,2079,'/b/1/b1_28_1.jpg'),(32029,106,0,2079,'container2'),(32030,121,0,2079,'n-colmar-soft-down-jacket-blue-large-size'),(32031,132,0,2079,'0'),(32032,133,0,2079,'/b/1/b1_28_1.jpg'),(32033,206,0,2079,'100% polyamide'),(32038,73,0,2080,'Colmar Soft Down Jacket-blue-Medium size'),(32039,84,0,2080,'Colmar Soft Down Jacket'),(32040,86,0,2080,'Colmar Soft Down Jacket Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuff'),(32041,87,0,2080,'/b/1/b1_28_2.jpg'),(32042,88,0,2080,'/b/1/b1_28_2.jpg'),(32043,89,0,2080,'/b/1/b1_28_2.jpg'),(32044,106,0,2080,'container2'),(32045,121,0,2080,'n-colmar-soft-down-jacket-blue-medium-size'),(32046,132,0,2080,'0'),(32047,133,0,2080,'/b/1/b1_28_2.jpg'),(32048,206,0,2080,'100% polyamide'),(32053,73,0,2081,'Colmar Soft Down Jacket-white-Extra small size'),(32054,84,0,2081,'Colmar Soft Down Jacket'),(32055,86,0,2081,'Colmar Soft Down Jacket Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuff'),(32056,87,0,2081,'/w/1/w1_20.jpg'),(32057,88,0,2081,'/w/1/w1_20.jpg'),(32058,89,0,2081,'/w/1/w1_20.jpg'),(32059,106,0,2081,'container2'),(32060,121,0,2081,'n-colmar-soft-down-jacket-white-extra-small-size'),(32061,132,0,2081,'0'),(32062,133,0,2081,'/w/1/w1_20.jpg'),(32063,206,0,2081,'100% polyamide'),(32068,73,0,2082,'Colmar Soft Down Jacket-white-Large size'),(32069,84,0,2082,'Colmar Soft Down Jacket'),(32070,86,0,2082,'Colmar Soft Down Jacket Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuff'),(32071,87,0,2082,'/w/1/w1_20_1.jpg'),(32072,88,0,2082,'/w/1/w1_20_1.jpg'),(32073,89,0,2082,'/w/1/w1_20_1.jpg'),(32074,106,0,2082,'container2'),(32075,121,0,2082,'n-colmar-soft-down-jacket-white-large-size'),(32076,132,0,2082,'0'),(32077,133,0,2082,'/w/1/w1_20_1.jpg'),(32078,206,0,2082,'100% polyamide'),(32083,73,0,2083,'Colmar Soft Down Jacket-white-Medium size'),(32084,84,0,2083,'Colmar Soft Down Jacket'),(32085,86,0,2083,'Colmar Soft Down Jacket Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuff'),(32086,87,0,2083,'/w/1/w1_20_2.jpg'),(32087,88,0,2083,'/w/1/w1_20_2.jpg'),(32088,89,0,2083,'/w/1/w1_20_2.jpg'),(32089,106,0,2083,'container2'),(32090,121,0,2083,'n-colmar-soft-down-jacket-white-medium-size'),(32091,132,0,2083,'0'),(32092,133,0,2083,'/w/1/w1_20_2.jpg'),(32093,206,0,2083,'100% polyamide'),(32098,73,0,2084,'Colmar Soft Down Jacket'),(32099,84,0,2084,'Colmar Soft Down Jacket'),(32100,86,0,2084,'Colmar Soft Down Jacket Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuff'),(32101,87,0,2084,'/w/1/w1_21.jpg'),(32102,88,0,2084,'/w/1/w1_21.jpg'),(32103,89,0,2084,'/w/1/w1_21.jpg'),(32104,106,0,2084,'container2'),(32105,121,0,2084,'n-colmar-soft-down-jacket'),(32106,132,0,2084,'2'),(32107,133,0,2084,'/w/1/w1_21.jpg'),(32108,206,0,2084,'100% polyamide'),(32113,73,0,2085,' Rose gold diorsorealrise-blue-Small size'),(32114,84,0,2085,' Rose gold diorsorealrise'),(32115,86,0,2085,' Rose gold diorsorealrise Model: Diorsorealrise\r\nMeasurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3\r\nExtras: patterned bow, patterned border, logo e'),(32116,87,0,2085,'/2/4/243r3r3e3e_2.jpg'),(32117,88,0,2085,'/2/4/243r3r3e3e_2.jpg'),(32118,89,0,2085,'/2/4/243r3r3e3e_2.jpg'),(32119,106,0,2085,'container2'),(32120,121,0,2085,'n-rose-gold-diorsorealrise-blue-small-size'),(32121,132,0,2085,'0'),(32122,133,0,2085,'/2/4/243r3r3e3e_2.jpg'),(32127,73,0,2086,' Rose gold diorsorealrise-blue-Medium size'),(32128,84,0,2086,' Rose gold diorsorealrise'),(32129,86,0,2086,' Rose gold diorsorealrise Model: Diorsorealrise\r\nMeasurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3\r\nExtras: patterned bow, patterned border, logo e'),(32130,87,0,2086,'/2/4/243r3r3e3e_1_1.jpg'),(32131,88,0,2086,'/2/4/243r3r3e3e_1_1.jpg'),(32132,89,0,2086,'/2/4/243r3r3e3e_1_1.jpg'),(32133,106,0,2086,'container2'),(32134,121,0,2086,'n-rose-gold-diorsorealrise-blue-medium-size'),(32135,132,0,2086,'0'),(32136,133,0,2086,'/2/4/243r3r3e3e_1_1.jpg'),(32141,73,0,2087,' Rose gold diorsorealrise-red-Small size'),(32142,84,0,2087,' Rose gold diorsorealrise'),(32143,86,0,2087,' Rose gold diorsorealrise Model: Diorsorealrise\r\nMeasurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3\r\nExtras: patterned bow, patterned border, logo e'),(32144,87,0,2087,'/i/m/image_31160298_16_620x757_1_2.jpg'),(32145,88,0,2087,'/i/m/image_31160298_16_620x757_1_2.jpg'),(32146,89,0,2087,'/i/m/image_31160298_16_620x757_1_2.jpg'),(32147,106,0,2087,'container2'),(32148,121,0,2087,'n-rose-gold-diorsorealrise-red-small-size'),(32149,132,0,2087,'0'),(32150,133,0,2087,'/i/m/image_31160298_16_620x757_1_2.jpg'),(32155,73,0,2088,' Rose gold diorsorealrise-red-Medium size'),(32156,84,0,2088,' Rose gold diorsorealrise'),(32157,86,0,2088,' Rose gold diorsorealrise Model: Diorsorealrise\r\nMeasurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3\r\nExtras: patterned bow, patterned border, logo e'),(32158,87,0,2088,'/i/m/image_31160298_16_620x757_1_2_1.jpg'),(32159,88,0,2088,'/i/m/image_31160298_16_620x757_1_2_1.jpg'),(32160,89,0,2088,'/i/m/image_31160298_16_620x757_1_2_1.jpg'),(32161,106,0,2088,'container2'),(32162,121,0,2088,'n-rose-gold-diorsorealrise-red-medium-size'),(32163,132,0,2088,'0'),(32164,133,0,2088,'/i/m/image_31160298_16_620x757_1_2_1.jpg'),(32169,73,0,2089,'Rose gold diorsorealrise'),(32170,84,0,2089,' Rose gold diorsorealrise'),(32171,86,0,2089,' Rose gold diorsorealrise Model: Diorsorealrise\r\nMeasurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″)\r\nUV filter: category 3\r\nExtras: patterned bow, patterned border, logo e'),(32172,87,0,2089,'/m/a/main_5_2_1_1.jpg'),(32173,88,0,2089,'/m/a/main_5_2_1_1.jpg'),(32174,89,0,2089,'/m/a/main_5_2_1_1.jpg'),(32175,106,0,2089,'container2'),(32176,121,0,2089,'n-rose-gold-diorsorealrise'),(32177,132,0,2089,'2'),(32178,133,0,2089,'no_selection'),(32183,73,0,2090,'Comma Casual Identity Quilted Jacket-red-Extra small size'),(32184,84,0,2090,'Comma Casual Identity Quilted Jacket'),(32185,86,0,2090,'Comma Casual Identity Quilted Jacket Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: qu'),(32186,87,0,2090,'/r/1/r1_20.jpg'),(32187,88,0,2090,'/r/1/r1_20.jpg'),(32188,89,0,2090,'/r/1/r1_20.jpg'),(32189,106,0,2090,'container2'),(32190,121,0,2090,'n-comma-casual-identity-quilted-jacket-red-extra-small-size'),(32191,132,0,2090,'0'),(32192,133,0,2090,'/r/1/r1_20.jpg'),(32193,206,0,2090,' 68% cotton, 32% polyamide'),(32198,73,0,2091,'Comma Casual Identity Quilted Jacket-red-Small size'),(32199,84,0,2091,'Comma Casual Identity Quilted Jacket'),(32200,86,0,2091,'Comma Casual Identity Quilted Jacket Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: qu'),(32201,87,0,2091,'/r/1/r1_20_1.jpg'),(32202,88,0,2091,'/r/1/r1_20_1.jpg'),(32203,89,0,2091,'/r/1/r1_20_1.jpg'),(32204,106,0,2091,'container2'),(32205,121,0,2091,'n-comma-casual-identity-quilted-jacket-red-small-size'),(32206,132,0,2091,'0'),(32207,133,0,2091,'/r/1/r1_20_1.jpg'),(32208,206,0,2091,' 68% cotton, 32% polyamide'),(32213,73,0,2092,'Comma Casual Identity Quilted Jacket-red-Extra large size'),(32214,84,0,2092,'Comma Casual Identity Quilted Jacket'),(32215,86,0,2092,'Comma Casual Identity Quilted Jacket Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: qu'),(32216,87,0,2092,'/r/1/r1_20_2.jpg'),(32217,88,0,2092,'/r/1/r1_20_2.jpg'),(32218,89,0,2092,'/r/1/r1_20_2.jpg'),(32219,106,0,2092,'container2'),(32220,121,0,2092,'n-comma-casual-identity-quilted-jacket-red-extra-large-size'),(32221,132,0,2092,'0'),(32222,133,0,2092,'/r/1/r1_20_2.jpg'),(32223,206,0,2092,' 68% cotton, 32% polyamide'),(32228,73,0,2093,'Comma Casual Identity Quilted Jacket-red-Medium size'),(32229,84,0,2093,'Comma Casual Identity Quilted Jacket'),(32230,86,0,2093,'Comma Casual Identity Quilted Jacket Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: qu'),(32231,87,0,2093,'/r/1/r1_20_3.jpg'),(32232,88,0,2093,'/r/1/r1_20_3.jpg'),(32233,89,0,2093,'/r/1/r1_20_3.jpg'),(32234,106,0,2093,'container2'),(32235,121,0,2093,'n-comma-casual-identity-quilted-jacket-red-medium-size'),(32236,132,0,2093,'0'),(32237,133,0,2093,'/r/1/r1_20_3.jpg'),(32238,206,0,2093,' 68% cotton, 32% polyamide'),(32243,73,0,2094,'Comma Casual Identity Quilted Jacket-white-Extra small size'),(32244,84,0,2094,'Comma Casual Identity Quilted Jacket'),(32245,86,0,2094,'Comma Casual Identity Quilted Jacket Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: qu'),(32246,87,0,2094,'/w/1/w1_22.jpg'),(32247,88,0,2094,'/w/1/w1_22.jpg'),(32248,89,0,2094,'/w/1/w1_22.jpg'),(32249,106,0,2094,'container2'),(32250,121,0,2094,'n-comma-casual-identity-quilted-jacket-white-extra-small-size'),(32251,132,0,2094,'0'),(32252,133,0,2094,'/w/1/w1_22.jpg'),(32253,206,0,2094,' 68% cotton, 32% polyamide'),(32258,73,0,2095,'Comma Casual Identity Quilted Jacket-white-Small size'),(32259,84,0,2095,'Comma Casual Identity Quilted Jacket'),(32260,86,0,2095,'Comma Casual Identity Quilted Jacket Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: qu'),(32261,87,0,2095,'/w/1/w1_22_1.jpg'),(32262,88,0,2095,'/w/1/w1_22_1.jpg'),(32263,89,0,2095,'/w/1/w1_22_1.jpg'),(32264,106,0,2095,'container2'),(32265,121,0,2095,'n-comma-casual-identity-quilted-jacket-white-small-size'),(32266,132,0,2095,'0'),(32267,133,0,2095,'/w/1/w1_22_1.jpg'),(32268,206,0,2095,' 68% cotton, 32% polyamide'),(32273,73,0,2096,'Comma Casual Identity Quilted Jacket-white-Extra large size'),(32274,84,0,2096,'Comma Casual Identity Quilted Jacket'),(32275,86,0,2096,'Comma Casual Identity Quilted Jacket Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: qu'),(32276,87,0,2096,'/w/1/w1_22_2.jpg'),(32277,88,0,2096,'/w/1/w1_22_2.jpg'),(32278,89,0,2096,'/w/1/w1_22_2.jpg'),(32279,106,0,2096,'container2'),(32280,121,0,2096,'n-comma-casual-identity-quilted-jacket-white-extra-large-size'),(32281,132,0,2096,'0'),(32282,133,0,2096,'/w/1/w1_22_2.jpg'),(32283,206,0,2096,' 68% cotton, 32% polyamide'),(32288,73,0,2097,'Comma Casual Identity Quilted Jacket-white-Medium size'),(32289,84,0,2097,'Comma Casual Identity Quilted Jacket'),(32290,86,0,2097,'Comma Casual Identity Quilted Jacket Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: qu'),(32291,87,0,2097,'/w/1/w1_22_3.jpg'),(32292,88,0,2097,'/w/1/w1_22_3.jpg'),(32293,89,0,2097,'/w/1/w1_22_3.jpg'),(32294,106,0,2097,'container2'),(32295,121,0,2097,'n-comma-casual-identity-quilted-jacket-white-medium-size'),(32296,132,0,2097,'0'),(32297,133,0,2097,'/w/1/w1_22_3.jpg'),(32298,206,0,2097,' 68% cotton, 32% polyamide'),(32303,73,0,2098,'Comma Casual Identity Quilted Jacket'),(32304,84,0,2098,'Comma Casual Identity Quilted Jacket'),(32305,86,0,2098,'Comma Casual Identity Quilted Jacket Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: qu'),(32306,87,0,2098,'/r/1/r1_21.jpg'),(32307,88,0,2098,'/r/1/r1_21.jpg'),(32308,89,0,2098,'/r/1/r1_21.jpg'),(32309,106,0,2098,'container2'),(32310,121,0,2098,'n-comma-casual-identity-quilted-jacket'),(32311,132,0,2098,'2'),(32312,133,0,2098,'/r/1/r1_21.jpg'),(32313,206,0,2098,' 68% cotton, 32% polyamide'),(32318,73,0,2099,' Nude sunglasses-white-Extra small size'),(32319,84,0,2099,' Nude sunglasses'),(32320,86,0,2099,' Nude sunglasses Model: RMJLH Reference number: DiorSoReal\r\nMeasurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)\r\nUV filter: category 3 Extras: logo on both temples, case includ'),(32321,87,0,2099,'/m/a/main_5_1_1.jpg'),(32322,88,0,2099,'/m/a/main_5_1_1.jpg'),(32323,89,0,2099,'/m/a/main_5_1_1.jpg'),(32324,106,0,2099,'container2'),(32325,121,0,2099,'n-nude-sunglasses-white-extra-small-size'),(32326,132,0,2099,'0'),(32327,133,0,2099,'/m/a/main_5_1_1.jpg'),(32332,73,0,2100,' Nude sunglasses-white-Small size'),(32333,84,0,2100,' Nude sunglasses'),(32334,86,0,2100,' Nude sunglasses Model: RMJLH Reference number: DiorSoReal\r\nMeasurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)\r\nUV filter: category 3 Extras: logo on both temples, case includ'),(32335,87,0,2100,'/m/a/main_5_1_1_1.jpg'),(32336,88,0,2100,'/m/a/main_5_1_1_1.jpg'),(32337,89,0,2100,'/m/a/main_5_1_1_1.jpg'),(32338,106,0,2100,'container2'),(32339,121,0,2100,'n-nude-sunglasses-white-small-size'),(32340,132,0,2100,'0'),(32341,133,0,2100,'/m/a/main_5_1_1_1.jpg'),(32346,73,0,2101,' Nude sunglasses-white-Medium size'),(32347,84,0,2101,' Nude sunglasses'),(32348,86,0,2101,' Nude sunglasses Model: RMJLH Reference number: DiorSoReal\r\nMeasurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)\r\nUV filter: category 3 Extras: logo on both temples, case includ'),(32349,87,0,2101,'/m/a/main_5_1_2.jpg'),(32350,88,0,2101,'/m/a/main_5_1_2.jpg'),(32351,89,0,2101,'/m/a/main_5_1_2.jpg'),(32352,106,0,2101,'container2'),(32353,121,0,2101,'n-nude-sunglasses-white-medium-size'),(32354,132,0,2101,'0'),(32355,133,0,2101,'/m/a/main_5_1_2.jpg'),(32360,73,0,2102,' Nude sunglasses-red-Extra small size'),(32361,84,0,2102,' Nude sunglasses'),(32362,86,0,2102,' Nude sunglasses Model: RMJLH Reference number: DiorSoReal\r\nMeasurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)\r\nUV filter: category 3 Extras: logo on both temples, case includ'),(32363,87,0,2102,'/2/3/23e2132312_3.jpg'),(32364,88,0,2102,'/2/3/23e2132312_3.jpg'),(32365,89,0,2102,'/2/3/23e2132312_3.jpg'),(32366,106,0,2102,'container2'),(32367,121,0,2102,'n-nude-sunglasses-red-extra-small-size'),(32368,132,0,2102,'0'),(32369,133,0,2102,'/2/3/23e2132312_3.jpg'),(32374,73,0,2103,' Nude sunglasses-red-Small size'),(32375,84,0,2103,' Nude sunglasses'),(32376,86,0,2103,' Nude sunglasses Model: RMJLH Reference number: DiorSoReal\r\nMeasurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)\r\nUV filter: category 3 Extras: logo on both temples, case includ'),(32377,87,0,2103,'/2/3/23e2132312_1_1.jpg'),(32378,88,0,2103,'/2/3/23e2132312_1_1.jpg'),(32379,89,0,2103,'/2/3/23e2132312_1_1.jpg'),(32380,106,0,2103,'container2'),(32381,121,0,2103,'n-nude-sunglasses-red-small-size'),(32382,132,0,2103,'0'),(32383,133,0,2103,'/2/3/23e2132312_1_1.jpg'),(32388,73,0,2104,' Nude sunglasses-red-Medium size'),(32389,84,0,2104,' Nude sunglasses'),(32390,86,0,2104,' Nude sunglasses Model: RMJLH Reference number: DiorSoReal\r\nMeasurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)\r\nUV filter: category 3 Extras: logo on both temples, case includ'),(32391,87,0,2104,'/2/3/23e2132312_2_1.jpg'),(32392,88,0,2104,'/2/3/23e2132312_2_1.jpg'),(32393,89,0,2104,'/2/3/23e2132312_2_1.jpg'),(32394,106,0,2104,'container2'),(32395,121,0,2104,'n-nude-sunglasses-red-medium-size'),(32396,132,0,2104,'0'),(32397,133,0,2104,'/2/3/23e2132312_2_1.jpg'),(32402,73,0,2105,'Nude sunglasses'),(32403,84,0,2105,' Nude sunglasses'),(32404,86,0,2105,' Nude sunglasses Model: RMJLH Reference number: DiorSoReal\r\nMeasurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″)\r\nUV filter: category 3 Extras: logo on both temples, case includ'),(32405,87,0,2105,'/m/a/main_5_3_3.jpg'),(32406,88,0,2105,'/m/a/main_5_3_3.jpg'),(32407,89,0,2105,'/m/a/main_5_3_3.jpg'),(32408,106,0,2105,'container2'),(32409,121,0,2105,'n-black-sunglasses-2'),(32410,132,0,2105,'2'),(32411,133,0,2105,'no_selection'),(32416,73,0,2106,'Cotton-Stretch Tapered Pants-white-Extra small size'),(32417,84,0,2106,'Cotton-Stretch Tapered Pants'),(32418,86,0,2106,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/s'),(32419,87,0,2106,'/w/1/w1_23.jpg'),(32420,88,0,2106,'/w/1/w1_23.jpg'),(32421,89,0,2106,'/w/1/w1_23.jpg'),(32422,106,0,2106,'container2'),(32423,121,0,2106,'n-cotton-stretch-tapered-pants-white-extra-small-size'),(32424,132,0,2106,'0'),(32425,133,0,2106,'/w/1/w1_23.jpg'),(32426,206,0,2106,'98% cotton, 2% elastane'),(32431,73,0,2107,'Cotton-Stretch Tapered Pants-white-Small size'),(32432,84,0,2107,'Cotton-Stretch Tapered Pants'),(32433,86,0,2107,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/s'),(32434,87,0,2107,'/w/1/w1_23_1.jpg'),(32435,88,0,2107,'/w/1/w1_23_1.jpg'),(32436,89,0,2107,'/w/1/w1_23_1.jpg'),(32437,106,0,2107,'container2'),(32438,121,0,2107,'n-cotton-stretch-tapered-pants-white-small-size'),(32439,132,0,2107,'0'),(32440,133,0,2107,'/w/1/w1_23_1.jpg'),(32441,206,0,2107,'98% cotton, 2% elastane'),(32446,73,0,2108,'Cotton-Stretch Tapered Pants-white-Medium size'),(32447,84,0,2108,'Cotton-Stretch Tapered Pants'),(32448,86,0,2108,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/s'),(32449,87,0,2108,'/w/1/w1_23_2.jpg'),(32450,88,0,2108,'/w/1/w1_23_2.jpg'),(32451,89,0,2108,'/w/1/w1_23_2.jpg'),(32452,106,0,2108,'container2'),(32453,121,0,2108,'n-cotton-stretch-tapered-pants-white-medium-size'),(32454,132,0,2108,'0'),(32455,133,0,2108,'/w/1/w1_23_2.jpg'),(32456,206,0,2108,'98% cotton, 2% elastane'),(32461,73,0,2109,'Cotton-Stretch Tapered Pants-white-Large size'),(32462,84,0,2109,'Cotton-Stretch Tapered Pants'),(32463,86,0,2109,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/s'),(32464,87,0,2109,'/w/1/w1_23_3.jpg'),(32465,88,0,2109,'/w/1/w1_23_3.jpg'),(32466,89,0,2109,'/w/1/w1_23_3.jpg'),(32467,106,0,2109,'container2'),(32468,121,0,2109,'n-cotton-stretch-tapered-pants-white-large-size'),(32469,132,0,2109,'0'),(32470,133,0,2109,'/w/1/w1_23_3.jpg'),(32471,206,0,2109,'98% cotton, 2% elastane'),(32476,73,0,2110,'Cotton-Stretch Tapered Pants-white-Extra large size'),(32477,84,0,2110,'Cotton-Stretch Tapered Pants'),(32478,86,0,2110,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/s'),(32479,87,0,2110,'/w/1/w1_23_4.jpg'),(32480,88,0,2110,'/w/1/w1_23_4.jpg'),(32481,89,0,2110,'/w/1/w1_23_4.jpg'),(32482,106,0,2110,'container2'),(32483,121,0,2110,'n-cotton-stretch-tapered-pants-white-extra-large-size'),(32484,132,0,2110,'0'),(32485,133,0,2110,'/w/1/w1_23_4.jpg'),(32486,206,0,2110,'98% cotton, 2% elastane'),(32491,73,0,2111,'Cotton-Stretch Tapered Pants-blue-Extra small size'),(32492,84,0,2111,'Cotton-Stretch Tapered Pants'),(32493,86,0,2111,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/s'),(32494,87,0,2111,'/b/1/b1_30.jpg'),(32495,88,0,2111,'/b/1/b1_30.jpg'),(32496,89,0,2111,'/b/1/b1_30.jpg'),(32497,106,0,2111,'container2'),(32498,121,0,2111,'n-cotton-stretch-tapered-pants-blue-extra-small-size'),(32499,132,0,2111,'0'),(32500,133,0,2111,'/b/1/b1_30.jpg'),(32501,206,0,2111,'98% cotton, 2% elastane'),(32506,73,0,2112,'Cotton-Stretch Tapered Pants-blue-Small size'),(32507,84,0,2112,'Cotton-Stretch Tapered Pants'),(32508,86,0,2112,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/s'),(32509,87,0,2112,'/b/1/b1_30_1.jpg'),(32510,88,0,2112,'/b/1/b1_30_1.jpg'),(32511,89,0,2112,'/b/1/b1_30_1.jpg'),(32512,106,0,2112,'container2'),(32513,121,0,2112,'n-cotton-stretch-tapered-pants-blue-small-size'),(32514,132,0,2112,'0'),(32515,133,0,2112,'/b/1/b1_30_1.jpg'),(32516,206,0,2112,'98% cotton, 2% elastane'),(32521,73,0,2113,'Cotton-Stretch Tapered Pants-blue-Medium size'),(32522,84,0,2113,'Cotton-Stretch Tapered Pants'),(32523,86,0,2113,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/s'),(32524,87,0,2113,'/b/1/b1_30_2.jpg'),(32525,88,0,2113,'/b/1/b1_30_2.jpg'),(32526,89,0,2113,'/b/1/b1_30_2.jpg'),(32527,106,0,2113,'container2'),(32528,121,0,2113,'n-cotton-stretch-tapered-pants-blue-medium-size'),(32529,132,0,2113,'0'),(32530,133,0,2113,'/b/1/b1_30_2.jpg'),(32531,206,0,2113,'98% cotton, 2% elastane'),(32536,73,0,2114,'Cotton-Stretch Tapered Pants-blue-Large size'),(32537,84,0,2114,'Cotton-Stretch Tapered Pants'),(32538,86,0,2114,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/s'),(32539,87,0,2114,'/b/1/b1_30_3.jpg'),(32540,88,0,2114,'/b/1/b1_30_3.jpg'),(32541,89,0,2114,'/b/1/b1_30_3.jpg'),(32542,106,0,2114,'container2'),(32543,121,0,2114,'n-cotton-stretch-tapered-pants-blue-large-size'),(32544,132,0,2114,'0'),(32545,133,0,2114,'/b/1/b1_30_3.jpg'),(32546,206,0,2114,'98% cotton, 2% elastane'),(32551,73,0,2115,'Cotton-Stretch Tapered Pants-blue-Extra large size'),(32552,84,0,2115,'Cotton-Stretch Tapered Pants'),(32553,86,0,2115,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/s'),(32554,87,0,2115,'/b/1/b1_30_4.jpg'),(32555,88,0,2115,'/b/1/b1_30_4.jpg'),(32556,89,0,2115,'/b/1/b1_30_4.jpg'),(32557,106,0,2115,'container2'),(32558,121,0,2115,'n-cotton-stretch-tapered-pants-blue-extra-large-size'),(32559,132,0,2115,'0'),(32560,133,0,2115,'/b/1/b1_30_4.jpg'),(32561,206,0,2115,'98% cotton, 2% elastane'),(32566,73,0,2116,'Cotton-Stretch Tapered Pants'),(32567,84,0,2116,'Cotton-Stretch Tapered Pants'),(32568,86,0,2116,'Cotton-Stretch Tapered Pants Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/s'),(32569,87,0,2116,'/w/1/w1_24.jpg'),(32570,88,0,2116,'/w/1/w1_24.jpg'),(32571,89,0,2116,'/w/1/w1_24.jpg'),(32572,106,0,2116,'container2'),(32573,121,0,2116,'n-cotton-stretch-tapered-pants'),(32574,132,0,2116,'2'),(32575,133,0,2116,'/w/1/w1_24.jpg'),(32576,206,0,2116,'98% cotton, 2% elastane'),(32581,73,0,2117,'Dine\'n\'Dance Cashmere Pullover-brown-Medium size'),(32582,84,0,2117,'Dine\'n\'Dance Cashmere Pullover'),(32583,86,0,2117,'Dine\'n\'Dance Cashmere Pullover Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Materia'),(32584,87,0,2117,'/b/1/b1_32.jpg'),(32585,88,0,2117,'/b/1/b1_32.jpg'),(32586,89,0,2117,'/b/1/b1_32.jpg'),(32587,106,0,2117,'container2'),(32588,121,0,2117,'n-dine-n-dance-cashmere-pullover-brown-medium-size'),(32589,132,0,2117,'0'),(32590,133,0,2117,'/b/1/b1_32.jpg'),(32591,206,0,2117,' 100% cashmere'),(32596,73,0,2118,'Dine\'n\'Dance Cashmere Pullover-brown-Small size'),(32597,84,0,2118,'Dine\'n\'Dance Cashmere Pullover'),(32598,86,0,2118,'Dine\'n\'Dance Cashmere Pullover Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Materia'),(32599,87,0,2118,'/b/1/b1_32_1.jpg'),(32600,88,0,2118,'/b/1/b1_32_1.jpg'),(32601,89,0,2118,'/b/1/b1_32_1.jpg'),(32602,106,0,2118,'container2'),(32603,121,0,2118,'n-dine-n-dance-cashmere-pullover-brown-small-size'),(32604,132,0,2118,'0'),(32605,133,0,2118,'/b/1/b1_32_1.jpg'),(32606,206,0,2118,' 100% cashmere'),(32611,73,0,2119,'Dine\'n\'Dance Cashmere Pullover-brown-Extra small size'),(32612,84,0,2119,'Dine\'n\'Dance Cashmere Pullover'),(32613,86,0,2119,'Dine\'n\'Dance Cashmere Pullover Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Materia'),(32614,87,0,2119,'/b/1/b1_32_2.jpg'),(32615,88,0,2119,'/b/1/b1_32_2.jpg'),(32616,89,0,2119,'/b/1/b1_32_2.jpg'),(32617,106,0,2119,'container2'),(32618,121,0,2119,'n-dine-n-dance-cashmere-pullover-brown-extra-small-size'),(32619,132,0,2119,'0'),(32620,133,0,2119,'/b/1/b1_32_2.jpg'),(32621,206,0,2119,' 100% cashmere'),(32626,73,0,2120,'Dine\'n\'Dance Cashmere Pullover-white-Medium size'),(32627,84,0,2120,'Dine\'n\'Dance Cashmere Pullover'),(32628,86,0,2120,'Dine\'n\'Dance Cashmere Pullover Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Materia'),(32629,87,0,2120,'/w/1/w1_25.jpg'),(32630,88,0,2120,'/w/1/w1_25.jpg'),(32631,89,0,2120,'/w/1/w1_25.jpg'),(32632,106,0,2120,'container2'),(32633,121,0,2120,'n-dine-n-dance-cashmere-pullover-white-medium-size'),(32634,132,0,2120,'0'),(32635,133,0,2120,'/w/1/w1_25.jpg'),(32636,206,0,2120,' 100% cashmere'),(32641,73,0,2121,'Dine\'n\'Dance Cashmere Pullover-white-Small size'),(32642,84,0,2121,'Dine\'n\'Dance Cashmere Pullover'),(32643,86,0,2121,'Dine\'n\'Dance Cashmere Pullover Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Materia'),(32644,87,0,2121,'/w/1/w1_25_1.jpg'),(32645,88,0,2121,'/w/1/w1_25_1.jpg'),(32646,89,0,2121,'/w/1/w1_25_1.jpg'),(32647,106,0,2121,'container2'),(32648,121,0,2121,'n-dine-n-dance-cashmere-pullover-white-small-size'),(32649,132,0,2121,'0'),(32650,133,0,2121,'/w/1/w1_25_1.jpg'),(32651,206,0,2121,' 100% cashmere'),(32656,73,0,2122,'Dine\'n\'Dance Cashmere Pullover-white-Extra small size'),(32657,84,0,2122,'Dine\'n\'Dance Cashmere Pullover'),(32658,86,0,2122,'Dine\'n\'Dance Cashmere Pullover Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Materia'),(32659,87,0,2122,'/w/1/w1_25_2.jpg'),(32660,88,0,2122,'/w/1/w1_25_2.jpg'),(32661,89,0,2122,'/w/1/w1_25_2.jpg'),(32662,106,0,2122,'container2'),(32663,121,0,2122,'n-dine-n-dance-cashmere-pullover-white-extra-small-size'),(32664,132,0,2122,'0'),(32665,133,0,2122,'/w/1/w1_25_2.jpg'),(32666,206,0,2122,' 100% cashmere'),(32671,73,0,2123,'Dine\'n\'Dance Cashmere Pullover'),(32672,84,0,2123,'Dine\'n\'Dance Cashmere Pullover'),(32673,86,0,2123,'Dine\'n\'Dance Cashmere Pullover Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Materia'),(32674,87,0,2123,'/b/1/b1_33.jpg'),(32675,88,0,2123,'/b/1/b1_33.jpg'),(32676,89,0,2123,'/b/1/b1_33.jpg'),(32677,106,0,2123,'container2'),(32678,121,0,2123,'n-dine-n-dance-cashmere-pullover'),(32679,132,0,2123,'2'),(32680,133,0,2123,'/b/1/b1_33.jpg'),(32681,206,0,2123,' 100% cashmere'),(32686,73,0,2124,'Dolomite Quilted Jacket-white-Extra small size'),(32687,84,0,2124,'Dolomite Quilted Jacket'),(32688,86,0,2124,'Dolomite Quilted Jacket Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: q'),(32689,87,0,2124,'/w/1/w1_26.jpg'),(32690,88,0,2124,'/w/1/w1_26.jpg'),(32691,89,0,2124,'/w/1/w1_26.jpg'),(32692,106,0,2124,'container2'),(32693,121,0,2124,'n-dolomite-quilted-jacket-white-extra-small-size'),(32694,132,0,2124,'0'),(32695,133,0,2124,'/w/1/w1_26.jpg'),(32696,206,0,2124,'100% polyamide'),(32701,73,0,2125,'Dolomite Quilted Jacket-white-Large size'),(32702,84,0,2125,'Dolomite Quilted Jacket'),(32703,86,0,2125,'Dolomite Quilted Jacket Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: q'),(32704,87,0,2125,'/w/1/w1_26_1.jpg'),(32705,88,0,2125,'/w/1/w1_26_1.jpg'),(32706,89,0,2125,'/w/1/w1_26_1.jpg'),(32707,106,0,2125,'container2'),(32708,121,0,2125,'n-dolomite-quilted-jacket-white-large-size'),(32709,132,0,2125,'0'),(32710,133,0,2125,'/w/1/w1_26_1.jpg'),(32711,206,0,2125,'100% polyamide'),(32716,73,0,2126,'Dolomite Quilted Jacket-white-Small size'),(32717,84,0,2126,'Dolomite Quilted Jacket'),(32718,86,0,2126,'Dolomite Quilted Jacket Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: q'),(32719,87,0,2126,'/w/1/w1_26_2.jpg'),(32720,88,0,2126,'/w/1/w1_26_2.jpg'),(32721,89,0,2126,'/w/1/w1_26_2.jpg'),(32722,106,0,2126,'container2'),(32723,121,0,2126,'n-dolomite-quilted-jacket-white-small-size'),(32724,132,0,2126,'0'),(32725,133,0,2126,'/w/1/w1_26_2.jpg'),(32726,206,0,2126,'100% polyamide'),(32731,73,0,2127,'Dolomite Quilted Jacket-white-Medium size'),(32732,84,0,2127,'Dolomite Quilted Jacket'),(32733,86,0,2127,'Dolomite Quilted Jacket Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: q'),(32734,87,0,2127,'/w/1/w1_26_3.jpg'),(32735,88,0,2127,'/w/1/w1_26_3.jpg'),(32736,89,0,2127,'/w/1/w1_26_3.jpg'),(32737,106,0,2127,'container2'),(32738,121,0,2127,'n-dolomite-quilted-jacket-white-medium-size'),(32739,132,0,2127,'0'),(32740,133,0,2127,'/w/1/w1_26_3.jpg'),(32741,206,0,2127,'100% polyamide'),(32746,73,0,2128,'Dolomite Quilted Jacket-blue-Extra small size'),(32747,84,0,2128,'Dolomite Quilted Jacket'),(32748,86,0,2128,'Dolomite Quilted Jacket Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: q'),(32749,87,0,2128,'/b/1/b1_34.jpg'),(32750,88,0,2128,'/b/1/b1_34.jpg'),(32751,89,0,2128,'/b/1/b1_34.jpg'),(32752,106,0,2128,'container2'),(32753,121,0,2128,'n-dolomite-quilted-jacket-blue-extra-small-size'),(32754,132,0,2128,'0'),(32755,133,0,2128,'/b/1/b1_34.jpg'),(32756,206,0,2128,'100% polyamide'),(32761,73,0,2129,'Dolomite Quilted Jacket-blue-Large size'),(32762,84,0,2129,'Dolomite Quilted Jacket'),(32763,86,0,2129,'Dolomite Quilted Jacket Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: q'),(32764,87,0,2129,'/b/1/b1_34_1.jpg'),(32765,88,0,2129,'/b/1/b1_34_1.jpg'),(32766,89,0,2129,'/b/1/b1_34_1.jpg'),(32767,106,0,2129,'container2'),(32768,121,0,2129,'n-dolomite-quilted-jacket-blue-large-size'),(32769,132,0,2129,'0'),(32770,133,0,2129,'/b/1/b1_34_1.jpg'),(32771,206,0,2129,'100% polyamide'),(32776,73,0,2130,'Dolomite Quilted Jacket-blue-Small size'),(32777,84,0,2130,'Dolomite Quilted Jacket'),(32778,86,0,2130,'Dolomite Quilted Jacket Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: q'),(32779,87,0,2130,'/b/1/b1_34_2.jpg'),(32780,88,0,2130,'/b/1/b1_34_2.jpg'),(32781,89,0,2130,'/b/1/b1_34_2.jpg'),(32782,106,0,2130,'container2'),(32783,121,0,2130,'n-dolomite-quilted-jacket-blue-small-size'),(32784,132,0,2130,'0'),(32785,133,0,2130,'/b/1/b1_34_2.jpg'),(32786,206,0,2130,'100% polyamide'),(32791,73,0,2131,'Dolomite Quilted Jacket-blue-Medium size'),(32792,84,0,2131,'Dolomite Quilted Jacket'),(32793,86,0,2131,'Dolomite Quilted Jacket Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: q'),(32794,87,0,2131,'/b/1/b1_34_3.jpg'),(32795,88,0,2131,'/b/1/b1_34_3.jpg'),(32796,89,0,2131,'/b/1/b1_34_3.jpg'),(32797,106,0,2131,'container2'),(32798,121,0,2131,'n-dolomite-quilted-jacket-blue-medium-size'),(32799,132,0,2131,'0'),(32800,133,0,2131,'/b/1/b1_34_3.jpg'),(32801,206,0,2131,'100% polyamide'),(32806,73,0,2132,'Dolomite Quilted Jacket'),(32807,84,0,2132,'Dolomite Quilted Jacket'),(32808,86,0,2132,'Dolomite Quilted Jacket Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: q'),(32809,87,0,2132,'/w/1/w1_27.jpg'),(32810,88,0,2132,'/w/1/w1_27.jpg'),(32811,89,0,2132,'/w/1/w1_27.jpg'),(32812,106,0,2132,'container2'),(32813,121,0,2132,'n-dolomite-quilted-jacket'),(32814,132,0,2132,'2'),(32815,133,0,2132,'/w/1/w1_27.jpg'),(32816,206,0,2132,'100% polyamide'),(32821,73,0,2133,' Light grey Leather Belt-grey-Small size'),(32822,84,0,2133,' Light grey Leather Belt'),(32823,86,0,2133,' Light grey Leather Belt '),(32824,87,0,2133,'/m/a/main_9_1_1.jpg'),(32825,88,0,2133,'/m/a/main_9_1_1.jpg'),(32826,89,0,2133,'/m/a/main_9_1_1.jpg'),(32827,106,0,2133,'container2'),(32828,121,0,2133,'n-light-grey-leather-belt-grey-small-size'),(32829,132,0,2133,'0'),(32830,133,0,2133,'/m/a/main_9_1_1.jpg'),(32835,73,0,2134,' Light grey Leather Belt-blue-Small size'),(32836,84,0,2134,' Light grey Leather Belt'),(32837,86,0,2134,' Light grey Leather Belt '),(32838,87,0,2134,'/3/4/3423r434534_1_1.jpg'),(32839,88,0,2134,'/3/4/3423r434534_1_1.jpg'),(32840,89,0,2134,'/3/4/3423r434534_1_1.jpg'),(32841,106,0,2134,'container2'),(32842,121,0,2134,'n-light-grey-leather-belt-blue-small-size'),(32843,132,0,2134,'0'),(32844,133,0,2134,'/3/4/3423r434534_1_1.jpg'),(32849,73,0,2135,'Light grey Leather Belt'),(32850,84,0,2135,' Light grey Leather Belt'),(32851,86,0,2135,' Light grey Leather Belt '),(32852,87,0,2135,'/m/a/main_9_2.jpg'),(32853,88,0,2135,'/m/a/main_9_2.jpg'),(32854,89,0,2135,'/m/a/main_9_2.jpg'),(32855,106,0,2135,'container2'),(32856,121,0,2135,'n-light-grey-leather-belt'),(32857,132,0,2135,'2'),(32858,133,0,2135,'no_selection'),(32863,73,0,2136,' Light blue Leather Belt-blue-Small size'),(32864,84,0,2136,' Light blue Leather Belt'),(32865,86,0,2136,' Light blue Leather Belt Measurements for size EU S: width approx. 1,8 cm (0.5″)\r\nFastening: pin buckle\r\nExtras: patent leather\r\nMaterial: leather'),(32866,87,0,2136,'/m/a/main_10_3_1.jpg'),(32867,88,0,2136,'/m/a/main_10_3_1.jpg'),(32868,89,0,2136,'/m/a/main_10_3_1.jpg'),(32869,106,0,2136,'container2'),(32870,121,0,2136,'n-light-blue-leather-belt-blue-small-size'),(32871,132,0,2136,'0'),(32872,133,0,2136,'/m/a/main_10_3_1.jpg'),(32877,73,0,2137,' Light blue Leather Belt-red-Small size'),(32878,84,0,2137,' Light blue Leather Belt'),(32879,86,0,2137,' Light blue Leather Belt Measurements for size EU S: width approx. 1,8 cm (0.5″)\r\nFastening: pin buckle\r\nExtras: patent leather\r\nMaterial: leather'),(32880,87,0,2137,'/2/3/232e3e2e2_1_1.jpg'),(32881,88,0,2137,'/2/3/232e3e2e2_1_1.jpg'),(32882,89,0,2137,'/2/3/232e3e2e2_1_1.jpg'),(32883,106,0,2137,'container2'),(32884,121,0,2137,'n-light-blue-leather-belt-red-small-size'),(32885,132,0,2137,'0'),(32886,133,0,2137,'/2/3/232e3e2e2_1_1.jpg'),(32891,73,0,2138,'Light blue Leather Belt'),(32892,84,0,2138,' Light blue Leather Belt'),(32893,86,0,2138,' Light blue Leather Belt Measurements for size EU S: width approx. 1,8 cm (0.5″)\r\nFastening: pin buckle\r\nExtras: patent leather\r\nMaterial: leather'),(32894,87,0,2138,'/m/a/main_10_4.jpg'),(32895,88,0,2138,'/m/a/main_10_4.jpg'),(32896,89,0,2138,'/m/a/main_10_4.jpg'),(32897,106,0,2138,'container2'),(32898,121,0,2138,'n-light-blue-leather-belt'),(32899,132,0,2138,'2'),(32900,133,0,2138,'no_selection'),(32905,73,0,2139,'Dress Trousers-black-Large size'),(32906,84,0,2139,'Dress Trousers'),(32907,86,0,2139,'Dress Trousers Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, '),(32908,87,0,2139,'/b/1/b1_35.jpg'),(32909,88,0,2139,'/b/1/b1_35.jpg'),(32910,89,0,2139,'/b/1/b1_35.jpg'),(32911,106,0,2139,'container2'),(32912,121,0,2139,'n-dress-trousers-black-large-size'),(32913,132,0,2139,'0'),(32914,133,0,2139,'/b/1/b1_35.jpg'),(32915,206,0,2139,'53% cotton, 44% polyester, 3% elastane'),(32920,73,0,2140,'Dress Trousers-black-Small size'),(32921,84,0,2140,'Dress Trousers'),(32922,86,0,2140,'Dress Trousers Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, '),(32923,87,0,2140,'/b/1/b1_35_1.jpg'),(32924,88,0,2140,'/b/1/b1_35_1.jpg'),(32925,89,0,2140,'/b/1/b1_35_1.jpg'),(32926,106,0,2140,'container2'),(32927,121,0,2140,'n-dress-trousers-black-small-size'),(32928,132,0,2140,'0'),(32929,133,0,2140,'/b/1/b1_35_1.jpg'),(32930,206,0,2140,'53% cotton, 44% polyester, 3% elastane'),(32935,73,0,2141,'Dress Trousers-black-Medium size'),(32936,84,0,2141,'Dress Trousers'),(32937,86,0,2141,'Dress Trousers Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, '),(32938,87,0,2141,'/b/1/b1_35_2.jpg'),(32939,88,0,2141,'/b/1/b1_35_2.jpg'),(32940,89,0,2141,'/b/1/b1_35_2.jpg'),(32941,106,0,2141,'container2'),(32942,121,0,2141,'n-dress-trousers-black-medium-size'),(32943,132,0,2141,'0'),(32944,133,0,2141,'/b/1/b1_35_2.jpg'),(32945,206,0,2141,'53% cotton, 44% polyester, 3% elastane'),(32950,73,0,2142,'Dress Trousers-red-Large size'),(32951,84,0,2142,'Dress Trousers'),(32952,86,0,2142,'Dress Trousers Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, '),(32953,87,0,2142,'/r/1/r1_22.jpg'),(32954,88,0,2142,'/r/1/r1_22.jpg'),(32955,89,0,2142,'/r/1/r1_22.jpg'),(32956,106,0,2142,'container2'),(32957,121,0,2142,'n-dress-trousers-red-large-size'),(32958,132,0,2142,'0'),(32959,133,0,2142,'/r/1/r1_22.jpg'),(32960,206,0,2142,'53% cotton, 44% polyester, 3% elastane'),(32965,73,0,2143,'Dress Trousers-red-Small size'),(32966,84,0,2143,'Dress Trousers'),(32967,86,0,2143,'Dress Trousers Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, '),(32968,87,0,2143,'/r/1/r1_22_1.jpg'),(32969,88,0,2143,'/r/1/r1_22_1.jpg'),(32970,89,0,2143,'/r/1/r1_22_1.jpg'),(32971,106,0,2143,'container2'),(32972,121,0,2143,'n-dress-trousers-red-small-size'),(32973,132,0,2143,'0'),(32974,133,0,2143,'/r/1/r1_22_1.jpg'),(32975,206,0,2143,'53% cotton, 44% polyester, 3% elastane'),(32980,73,0,2144,'Dress Trousers-red-Medium size'),(32981,84,0,2144,'Dress Trousers'),(32982,86,0,2144,'Dress Trousers Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, '),(32983,87,0,2144,'/r/1/r1_22_2.jpg'),(32984,88,0,2144,'/r/1/r1_22_2.jpg'),(32985,89,0,2144,'/r/1/r1_22_2.jpg'),(32986,106,0,2144,'container2'),(32987,121,0,2144,'n-dress-trousers-red-medium-size'),(32988,132,0,2144,'0'),(32989,133,0,2144,'/r/1/r1_22_2.jpg'),(32990,206,0,2144,'53% cotton, 44% polyester, 3% elastane'),(32995,73,0,2145,'Dress Trousers'),(32996,84,0,2145,'Dress Trousers'),(32997,86,0,2145,'Dress Trousers Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, '),(32998,87,0,2145,'/b/1/b1_36.jpg'),(32999,88,0,2145,'/b/1/b1_36.jpg'),(33000,89,0,2145,'/b/1/b1_36.jpg'),(33001,106,0,2145,'container2'),(33002,121,0,2145,'n-dress-trousers'),(33003,132,0,2145,'2'),(33004,133,0,2145,'/b/1/b1_36.jpg'),(33005,206,0,2145,'53% cotton, 44% polyester, 3% elastane'),(33010,73,0,2146,' Leather Backpack-grey'),(33011,84,0,2146,' Leather Backpack'),(33012,86,0,2146,' Leather Backpack Measurements for one size: height 43 cm (17″), length 30 cm (12″), depth 15 cm (6″)\r\nFastening: two-way zip (open from right and left)\r\nLining material: lined\r\nExterior pockets: patch zip pocket / s, zip pocket(s) Interior pockets: pl'),(33013,87,0,2146,'/2/3/2323e2e2e_1_1_1.jpg'),(33014,88,0,2146,'/2/3/2323e2e2e_1_1_1.jpg'),(33015,89,0,2146,'/2/3/2323e2e2e_1_1_1.jpg'),(33016,106,0,2146,'container2'),(33017,121,0,2146,'n-leather-backpack-grey'),(33018,132,0,2146,'0'),(33019,133,0,2146,'/2/3/2323e2e2e_1_1_1.jpg'),(33024,73,0,2147,' Leather Backpack-brown'),(33025,84,0,2147,' Leather Backpack'),(33026,86,0,2147,' Leather Backpack Measurements for one size: height 43 cm (17″), length 30 cm (12″), depth 15 cm (6″)\r\nFastening: two-way zip (open from right and left)\r\nLining material: lined\r\nExterior pockets: patch zip pocket / s, zip pocket(s) Interior pockets: pl'),(33027,87,0,2147,'/m/a/main_11_2_1.jpg'),(33028,88,0,2147,'/m/a/main_11_2_1.jpg'),(33029,89,0,2147,'/m/a/main_11_2_1.jpg'),(33030,106,0,2147,'container2'),(33031,121,0,2147,'n-leather-backpack-brown'),(33032,132,0,2147,'0'),(33033,133,0,2147,'/m/a/main_11_2_1.jpg'),(33038,73,0,2148,'Escada Gilet-white-Extra small size'),(33039,84,0,2148,'Escada Gilet'),(33040,86,0,2148,'Escada Gilet Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructio'),(33041,87,0,2148,'/w/1/w1_28.jpg'),(33042,88,0,2148,'/w/1/w1_28.jpg'),(33043,89,0,2148,'/w/1/w1_28.jpg'),(33044,106,0,2148,'container2'),(33045,121,0,2148,'n-escada-gilet-white-extra-small-size'),(33046,132,0,2148,'0'),(33047,133,0,2148,'/w/1/w1_28.jpg'),(33048,206,0,2148,'100% virgin wool'),(33053,73,0,2149,'Leather Backpack'),(33054,84,0,2149,' Leather Backpack'),(33055,86,0,2149,' Leather Backpack Measurements for one size: height 43 cm (17″), length 30 cm (12″), depth 15 cm (6″)\r\nFastening: two-way zip (open from right and left)\r\nLining material: lined\r\nExterior pockets: patch zip pocket / s, zip pocket(s) Interior pockets: pl'),(33056,87,0,2149,'/m/a/main_11_3.jpg'),(33057,88,0,2149,'/m/a/main_11_3.jpg'),(33058,89,0,2149,'/m/a/main_11_3.jpg'),(33059,106,0,2149,'container2'),(33060,121,0,2149,'n-leather-backpack'),(33061,132,0,2149,'2'),(33062,133,0,2149,'no_selection'),(33067,73,0,2150,'Escada Gilet-white-Large size'),(33068,84,0,2150,'Escada Gilet'),(33069,86,0,2150,'Escada Gilet Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructio'),(33070,87,0,2150,'/w/1/w1_28_1.jpg'),(33071,88,0,2150,'/w/1/w1_28_1.jpg'),(33072,89,0,2150,'/w/1/w1_28_1.jpg'),(33073,106,0,2150,'container2'),(33074,121,0,2150,'n-escada-gilet-white-large-size'),(33075,132,0,2150,'0'),(33076,133,0,2150,'/w/1/w1_28_1.jpg'),(33077,206,0,2150,'100% virgin wool'),(33082,73,0,2151,'Escada Gilet-white-Small size'),(33083,84,0,2151,'Escada Gilet'),(33084,86,0,2151,'Escada Gilet Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructio'),(33085,87,0,2151,'/w/1/w1_28_2.jpg'),(33086,88,0,2151,'/w/1/w1_28_2.jpg'),(33087,89,0,2151,'/w/1/w1_28_2.jpg'),(33088,106,0,2151,'container2'),(33089,121,0,2151,'n-escada-gilet-white-small-size'),(33090,132,0,2151,'0'),(33091,133,0,2151,'/w/1/w1_28_2.jpg'),(33092,206,0,2151,'100% virgin wool'),(33097,73,0,2152,'Escada Gilet-white-Medium size'),(33098,84,0,2152,'Escada Gilet'),(33099,86,0,2152,'Escada Gilet Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructio'),(33100,87,0,2152,'/w/1/w1_28_3.jpg'),(33101,88,0,2152,'/w/1/w1_28_3.jpg'),(33102,89,0,2152,'/w/1/w1_28_3.jpg'),(33103,106,0,2152,'container2'),(33104,121,0,2152,'n-escada-gilet-white-medium-size'),(33105,132,0,2152,'0'),(33106,133,0,2152,'/w/1/w1_28_3.jpg'),(33107,206,0,2152,'100% virgin wool'),(33112,73,0,2153,'Escada Gilet-black-Extra small size'),(33113,84,0,2153,'Escada Gilet'),(33114,86,0,2153,'Escada Gilet Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructio'),(33115,87,0,2153,'/b/1/b1_37.jpg'),(33116,88,0,2153,'/b/1/b1_37.jpg'),(33117,89,0,2153,'/b/1/b1_37.jpg'),(33118,106,0,2153,'container2'),(33119,121,0,2153,'n-escada-gilet-black-extra-small-size'),(33120,132,0,2153,'0'),(33121,133,0,2153,'/b/1/b1_37.jpg'),(33122,206,0,2153,'100% virgin wool'),(33127,73,0,2154,'Escada Gilet-black-Large size'),(33128,84,0,2154,'Escada Gilet'),(33129,86,0,2154,'Escada Gilet Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructio'),(33130,87,0,2154,'/b/1/b1_37_1.jpg'),(33131,88,0,2154,'/b/1/b1_37_1.jpg'),(33132,89,0,2154,'/b/1/b1_37_1.jpg'),(33133,106,0,2154,'container2'),(33134,121,0,2154,'n-escada-gilet-black-large-size'),(33135,132,0,2154,'0'),(33136,133,0,2154,'/b/1/b1_37_1.jpg'),(33137,206,0,2154,'100% virgin wool'),(33142,73,0,2155,'Escada Gilet-black-Small size'),(33143,84,0,2155,'Escada Gilet'),(33144,86,0,2155,'Escada Gilet Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructio'),(33145,87,0,2155,'/b/1/b1_37_2.jpg'),(33146,88,0,2155,'/b/1/b1_37_2.jpg'),(33147,89,0,2155,'/b/1/b1_37_2.jpg'),(33148,106,0,2155,'container2'),(33149,121,0,2155,'n-escada-gilet-black-small-size'),(33150,132,0,2155,'0'),(33151,133,0,2155,'/b/1/b1_37_2.jpg'),(33152,206,0,2155,'100% virgin wool'),(33157,73,0,2156,'Escada Gilet-black-Medium size'),(33158,84,0,2156,'Escada Gilet'),(33159,86,0,2156,'Escada Gilet Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructio'),(33160,87,0,2156,'/b/1/b1_37_3.jpg'),(33161,88,0,2156,'/b/1/b1_37_3.jpg'),(33162,89,0,2156,'/b/1/b1_37_3.jpg'),(33163,106,0,2156,'container2'),(33164,121,0,2156,'n-escada-gilet-black-medium-size'),(33165,132,0,2156,'0'),(33166,133,0,2156,'/b/1/b1_37_3.jpg'),(33167,206,0,2156,'100% virgin wool'),(33172,73,0,2157,'Escada Gilet'),(33173,84,0,2157,'Escada Gilet'),(33174,86,0,2157,'Escada Gilet Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructio'),(33175,87,0,2157,'/w/1/w1_29.jpg'),(33176,88,0,2157,'/w/1/w1_29.jpg'),(33177,89,0,2157,'/w/1/w1_29.jpg'),(33178,106,0,2157,'container2'),(33179,121,0,2157,'n-escada-gilet'),(33180,132,0,2157,'2'),(33181,133,0,2157,'/w/1/w1_29.jpg'),(33182,206,0,2157,'100% virgin wool'),(33187,73,0,2158,'Heeled Sandals-brown-EU 39'),(33188,84,0,2158,'Heeled Sandals'),(33189,86,0,2158,'Heeled Sandals \r\nMeasurements for size EU 39: heel height 10 cm (4″)\r\nExtras: monk strap, velvety surface\r\nOuter material: textile\r\nInner material: synthetic\r\nOutsole: synthetic\r\n'),(33190,87,0,2158,'/b/1/b1_38.jpg'),(33191,88,0,2158,'/b/1/b1_38.jpg'),(33192,89,0,2158,'/b/1/b1_38.jpg'),(33193,106,0,2158,'container2'),(33194,121,0,2158,'n-heeled-sandals-brown-eu-39'),(33195,132,0,2158,'0'),(33196,133,0,2158,'/b/1/b1_38.jpg'),(33197,206,0,2158,'Synthetic'),(33202,73,0,2159,'Heeled Sandals-brown-EU 37'),(33203,84,0,2159,'Heeled Sandals'),(33204,86,0,2159,'Heeled Sandals \r\nMeasurements for size EU 39: heel height 10 cm (4″)\r\nExtras: monk strap, velvety surface\r\nOuter material: textile\r\nInner material: synthetic\r\nOutsole: synthetic\r\n'),(33205,87,0,2159,'/b/1/b1_38_1.jpg'),(33206,88,0,2159,'/b/1/b1_38_1.jpg'),(33207,89,0,2159,'/b/1/b1_38_1.jpg'),(33208,106,0,2159,'container2'),(33209,121,0,2159,'n-heeled-sandals-brown-eu-37'),(33210,132,0,2159,'0'),(33211,133,0,2159,'/b/1/b1_38_1.jpg'),(33212,206,0,2159,'Synthetic'),(33217,73,0,2160,'Heeled Sandals-brown-EU 40'),(33218,84,0,2160,'Heeled Sandals'),(33219,86,0,2160,'Heeled Sandals \r\nMeasurements for size EU 39: heel height 10 cm (4″)\r\nExtras: monk strap, velvety surface\r\nOuter material: textile\r\nInner material: synthetic\r\nOutsole: synthetic\r\n'),(33220,87,0,2160,'/b/1/b1_38_2.jpg'),(33221,88,0,2160,'/b/1/b1_38_2.jpg'),(33222,89,0,2160,'/b/1/b1_38_2.jpg'),(33223,106,0,2160,'container2'),(33224,121,0,2160,'n-heeled-sandals-brown-eu-40'),(33225,132,0,2160,'0'),(33226,133,0,2160,'/b/1/b1_38_2.jpg'),(33227,206,0,2160,'Synthetic'),(33232,73,0,2161,'Heeled Sandals-brown-EU 38'),(33233,84,0,2161,'Heeled Sandals'),(33234,86,0,2161,'Heeled Sandals \r\nMeasurements for size EU 39: heel height 10 cm (4″)\r\nExtras: monk strap, velvety surface\r\nOuter material: textile\r\nInner material: synthetic\r\nOutsole: synthetic\r\n'),(33235,87,0,2161,'/b/1/b1_38_3.jpg'),(33236,88,0,2161,'/b/1/b1_38_3.jpg'),(33237,89,0,2161,'/b/1/b1_38_3.jpg'),(33238,106,0,2161,'container2'),(33239,121,0,2161,'n-heeled-sandals-brown-eu-38'),(33240,132,0,2161,'0'),(33241,133,0,2161,'/b/1/b1_38_3.jpg'),(33242,206,0,2161,'Synthetic'),(33247,73,0,2162,'Heeled Sandals-brown-EU 41'),(33248,84,0,2162,'Heeled Sandals'),(33249,86,0,2162,'Heeled Sandals \r\nMeasurements for size EU 39: heel height 10 cm (4″)\r\nExtras: monk strap, velvety surface\r\nOuter material: textile\r\nInner material: synthetic\r\nOutsole: synthetic\r\n'),(33250,87,0,2162,'/b/1/b1_38_4.jpg'),(33251,88,0,2162,'/b/1/b1_38_4.jpg'),(33252,89,0,2162,'/b/1/b1_38_4.jpg'),(33253,106,0,2162,'container2'),(33254,121,0,2162,'n-heeled-sandals-brown-eu-41'),(33255,132,0,2162,'0'),(33256,133,0,2162,'/b/1/b1_38_4.jpg'),(33257,206,0,2162,'Synthetic'),(33262,73,0,2163,'Heeled Sandals-blue-EU 39'),(33263,84,0,2163,'Heeled Sandals'),(33264,86,0,2163,'Heeled Sandals \r\nMeasurements for size EU 39: heel height 10 cm (4″)\r\nExtras: monk strap, velvety surface\r\nOuter material: textile\r\nInner material: synthetic\r\nOutsole: synthetic\r\n'),(33265,87,0,2163,'/1/_/1_19.jpg'),(33266,88,0,2163,'/1/_/1_19.jpg'),(33267,89,0,2163,'/1/_/1_19.jpg'),(33268,106,0,2163,'container2'),(33269,121,0,2163,'n-heeled-sandals-blue-eu-39'),(33270,132,0,2163,'0'),(33271,133,0,2163,'/1/_/1_19.jpg'),(33272,206,0,2163,'Synthetic'),(33277,73,0,2164,'Heeled Sandals-blue-EU 37'),(33278,84,0,2164,'Heeled Sandals'),(33279,86,0,2164,'Heeled Sandals \r\nMeasurements for size EU 39: heel height 10 cm (4″)\r\nExtras: monk strap, velvety surface\r\nOuter material: textile\r\nInner material: synthetic\r\nOutsole: synthetic\r\n'),(33280,87,0,2164,'/1/_/1_19_1.jpg'),(33281,88,0,2164,'/1/_/1_19_1.jpg'),(33282,89,0,2164,'/1/_/1_19_1.jpg'),(33283,106,0,2164,'container2'),(33284,121,0,2164,'n-heeled-sandals-blue-eu-37'),(33285,132,0,2164,'0'),(33286,133,0,2164,'/1/_/1_19_1.jpg'),(33287,206,0,2164,'Synthetic'),(33292,73,0,2165,'Heeled Sandals-blue-EU 40'),(33293,84,0,2165,'Heeled Sandals'),(33294,86,0,2165,'Heeled Sandals \r\nMeasurements for size EU 39: heel height 10 cm (4″)\r\nExtras: monk strap, velvety surface\r\nOuter material: textile\r\nInner material: synthetic\r\nOutsole: synthetic\r\n'),(33295,87,0,2165,'/1/_/1_19_2.jpg'),(33296,88,0,2165,'/1/_/1_19_2.jpg'),(33297,89,0,2165,'/1/_/1_19_2.jpg'),(33298,106,0,2165,'container2'),(33299,121,0,2165,'n-heeled-sandals-blue-eu-40'),(33300,132,0,2165,'0'),(33301,133,0,2165,'/1/_/1_19_2.jpg'),(33302,206,0,2165,'Synthetic'),(33307,73,0,2166,'Heeled Sandals-blue-EU 38'),(33308,84,0,2166,'Heeled Sandals'),(33309,86,0,2166,'Heeled Sandals \r\nMeasurements for size EU 39: heel height 10 cm (4″)\r\nExtras: monk strap, velvety surface\r\nOuter material: textile\r\nInner material: synthetic\r\nOutsole: synthetic\r\n'),(33310,87,0,2166,'/1/_/1_19_3.jpg'),(33311,88,0,2166,'/1/_/1_19_3.jpg'),(33312,89,0,2166,'/1/_/1_19_3.jpg'),(33313,106,0,2166,'container2'),(33314,121,0,2166,'n-heeled-sandals-blue-eu-38'),(33315,132,0,2166,'0'),(33316,133,0,2166,'/1/_/1_19_3.jpg'),(33317,206,0,2166,'Synthetic'),(33322,73,0,2167,'Heeled Sandals-blue-EU 41'),(33323,84,0,2167,'Heeled Sandals'),(33324,86,0,2167,'Heeled Sandals \r\nMeasurements for size EU 39: heel height 10 cm (4″)\r\nExtras: monk strap, velvety surface\r\nOuter material: textile\r\nInner material: synthetic\r\nOutsole: synthetic\r\n'),(33325,87,0,2167,'/1/_/1_19_4.jpg'),(33326,88,0,2167,'/1/_/1_19_4.jpg'),(33327,89,0,2167,'/1/_/1_19_4.jpg'),(33328,106,0,2167,'container2'),(33329,121,0,2167,'n-heeled-sandals-blue-eu-41'),(33330,132,0,2167,'0'),(33331,133,0,2167,'/1/_/1_19_4.jpg'),(33332,206,0,2167,'Synthetic'),(33337,73,0,2168,'Heeled Sandals'),(33338,84,0,2168,'Heeled Sandals'),(33339,86,0,2168,'Heeled Sandals \r\nMeasurements for size EU 39: heel height 10 cm (4″)\r\nExtras: monk strap, velvety surface\r\nOuter material: textile\r\nInner material: synthetic\r\nOutsole: synthetic\r\n'),(33340,87,0,2168,'/b/1/b1_39.jpg'),(33341,88,0,2168,'/b/1/b1_39.jpg'),(33342,89,0,2168,'/b/1/b1_39.jpg'),(33343,106,0,2168,'container2'),(33344,121,0,2168,'n-heeled-sandals'),(33345,132,0,2168,'2'),(33346,133,0,2168,'/b/1/b1_39.jpg'),(33347,206,0,2168,'Synthetic'),(33352,73,0,2169,' Handbag-grey'),(33353,84,0,2169,' Handbag'),(33354,86,0,2169,' Handbag Reference number: E1 BD1 18 03 01\r\nMeasurements for one size: height 28 cm (11″), length 36 cm (14″), depth 13 cm (5″)\r\nFastening: overlapping flap with clasp closure\r\nLining material: lined Exterior pockets: slit pocket(s)\r\nInterior pockets: '),(33355,87,0,2169,'/m/a/main_12_2_1.jpg'),(33356,88,0,2169,'/m/a/main_12_2_1.jpg'),(33357,89,0,2169,'/m/a/main_12_2_1.jpg'),(33358,106,0,2169,'container2'),(33359,121,0,2169,'n-handbag-grey'),(33360,132,0,2169,'0'),(33361,133,0,2169,'/m/a/main_12_2_1.jpg'),(33366,73,0,2170,' Handbag-red'),(33367,84,0,2170,' Handbag'),(33368,86,0,2170,' Handbag Reference number: E1 BD1 18 03 01\r\nMeasurements for one size: height 28 cm (11″), length 36 cm (14″), depth 13 cm (5″)\r\nFastening: overlapping flap with clasp closure\r\nLining material: lined Exterior pockets: slit pocket(s)\r\nInterior pockets: '),(33369,87,0,2170,'/2/3/231212322e_1_1.jpg'),(33370,88,0,2170,'/2/3/231212322e_1_1.jpg'),(33371,89,0,2170,'/2/3/231212322e_1_1.jpg'),(33372,106,0,2170,'container2'),(33373,121,0,2170,'n-handbag-red'),(33374,132,0,2170,'0'),(33375,133,0,2170,'/2/3/231212322e_1_1.jpg'),(33380,73,0,2171,'Handbag'),(33381,84,0,2171,' Handbag'),(33382,86,0,2171,' Handbag Reference number: E1 BD1 18 03 01\r\nMeasurements for one size: height 28 cm (11″), length 36 cm (14″), depth 13 cm (5″)\r\nFastening: overlapping flap with clasp closure\r\nLining material: lined Exterior pockets: slit pocket(s)\r\nInterior pockets: '),(33383,87,0,2171,'/m/a/main_12_3.jpg'),(33384,88,0,2171,'/m/a/main_12_3.jpg'),(33385,89,0,2171,'/m/a/main_12_3.jpg'),(33386,106,0,2171,'container2'),(33387,121,0,2171,'n-handbag'),(33388,132,0,2171,'2'),(33389,133,0,2171,'no_selection'),(33394,73,0,2172,'Just me Casual Dress-red-Extra small size'),(33395,84,0,2172,'Just me Casual Dress'),(33396,86,0,2172,'Just me Casual Dress Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterne'),(33397,87,0,2172,'/r/1/r1_23.jpg'),(33398,88,0,2172,'/r/1/r1_23.jpg'),(33399,89,0,2172,'/r/1/r1_23.jpg'),(33400,106,0,2172,'container2'),(33401,121,0,2172,'n-just-me-casual-dress-red-extra-small-size'),(33402,132,0,2172,'0'),(33403,133,0,2172,'/r/1/r1_23.jpg'),(33404,206,0,2172,'100% polyester'),(33409,73,0,2173,'Just me Casual Dress-red-Small size'),(33410,84,0,2173,'Just me Casual Dress'),(33411,86,0,2173,'Just me Casual Dress Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterne'),(33412,87,0,2173,'/r/1/r1_23_1.jpg'),(33413,88,0,2173,'/r/1/r1_23_1.jpg'),(33414,89,0,2173,'/r/1/r1_23_1.jpg'),(33415,106,0,2173,'container2'),(33416,121,0,2173,'n-just-me-casual-dress-red-small-size'),(33417,132,0,2173,'0'),(33418,133,0,2173,'/r/1/r1_23_1.jpg'),(33419,206,0,2173,'100% polyester'),(33424,73,0,2174,'Just me Casual Dress-red-Medium size'),(33425,84,0,2174,'Just me Casual Dress'),(33426,86,0,2174,'Just me Casual Dress Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterne'),(33427,87,0,2174,'/r/1/r1_23_2.jpg'),(33428,88,0,2174,'/r/1/r1_23_2.jpg'),(33429,89,0,2174,'/r/1/r1_23_2.jpg'),(33430,106,0,2174,'container2'),(33431,121,0,2174,'n-just-me-casual-dress-red-medium-size'),(33432,132,0,2174,'0'),(33433,133,0,2174,'/r/1/r1_23_2.jpg'),(33434,206,0,2174,'100% polyester'),(33439,73,0,2175,'Just me Casual Dress-brown-Extra small size'),(33440,84,0,2175,'Just me Casual Dress'),(33441,86,0,2175,'Just me Casual Dress Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterne'),(33442,87,0,2175,'/b/1/b1_40.jpg'),(33443,88,0,2175,'/b/1/b1_40.jpg'),(33444,89,0,2175,'/b/1/b1_40.jpg'),(33445,106,0,2175,'container2'),(33446,121,0,2175,'n-just-me-casual-dress-brown-extra-small-size'),(33447,132,0,2175,'0'),(33448,133,0,2175,'/b/1/b1_40.jpg'),(33449,206,0,2175,'100% polyester'),(33454,73,0,2176,'Just me Casual Dress-brown-Small size'),(33455,84,0,2176,'Just me Casual Dress'),(33456,86,0,2176,'Just me Casual Dress Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterne'),(33457,87,0,2176,'/b/1/b1_40_1.jpg'),(33458,88,0,2176,'/b/1/b1_40_1.jpg'),(33459,89,0,2176,'/b/1/b1_40_1.jpg'),(33460,106,0,2176,'container2'),(33461,121,0,2176,'n-just-me-casual-dress-brown-small-size'),(33462,132,0,2176,'0'),(33463,133,0,2176,'/b/1/b1_40_1.jpg'),(33464,206,0,2176,'100% polyester'),(33469,73,0,2177,'Just me Casual Dress-brown-Medium size'),(33470,84,0,2177,'Just me Casual Dress'),(33471,86,0,2177,'Just me Casual Dress Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterne'),(33472,87,0,2177,'/b/1/b1_40_2.jpg'),(33473,88,0,2177,'/b/1/b1_40_2.jpg'),(33474,89,0,2177,'/b/1/b1_40_2.jpg'),(33475,106,0,2177,'container2'),(33476,121,0,2177,'n-just-me-casual-dress-brown-medium-size'),(33477,132,0,2177,'0'),(33478,133,0,2177,'/b/1/b1_40_2.jpg'),(33479,206,0,2177,'100% polyester'),(33484,73,0,2178,'Just me Casual Dress'),(33485,84,0,2178,'Just me Casual Dress'),(33486,86,0,2178,'Just me Casual Dress Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterne'),(33487,87,0,2178,'/b/1/b1_41.jpg'),(33488,88,0,2178,'/b/1/b1_41.jpg'),(33489,89,0,2178,'/b/1/b1_41.jpg'),(33490,106,0,2178,'container2'),(33491,121,0,2178,'n-just-me-casual-dress'),(33492,132,0,2178,'2'),(33493,133,0,2178,'/b/1/b1_41.jpg'),(33494,206,0,2178,'100% polyester'),(33499,73,0,2179,'Lace Dress-red-Extra small size'),(33500,84,0,2179,'Lace Dress'),(33501,86,0,2179,'Lace Dress \r\n\r\n\r\n\r\n\r\n\r\nCut: fitted with a slightly tapered skirt, back slit\r\nMeasurements for size EU S: garment length 106 cm (41.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: shortsleeve\r\nLining: lined\r\nPattern: solid-coloured\r\nOuter material'),(33502,87,0,2179,'/r/1/r1_24.jpg'),(33503,88,0,2179,'/r/1/r1_24.jpg'),(33504,89,0,2179,'/r/1/r1_24.jpg'),(33505,106,0,2179,'container2'),(33506,121,0,2179,'n-lace-dress-red-extra-small-size'),(33507,132,0,2179,'0'),(33508,133,0,2179,'/r/1/r1_24.jpg'),(33509,206,0,2179,'60% cotton, 40% polyamide'),(33514,73,0,2180,'Lace Dress-red-Small size'),(33515,84,0,2180,'Lace Dress'),(33516,86,0,2180,'Lace Dress \r\n\r\n\r\n\r\n\r\n\r\nCut: fitted with a slightly tapered skirt, back slit\r\nMeasurements for size EU S: garment length 106 cm (41.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: shortsleeve\r\nLining: lined\r\nPattern: solid-coloured\r\nOuter material'),(33517,87,0,2180,'/r/1/r1_24_1.jpg'),(33518,88,0,2180,'/r/1/r1_24_1.jpg'),(33519,89,0,2180,'/r/1/r1_24_1.jpg'),(33520,106,0,2180,'container2'),(33521,121,0,2180,'n-lace-dress-red-small-size'),(33522,132,0,2180,'0'),(33523,133,0,2180,'/r/1/r1_24_1.jpg'),(33524,206,0,2180,'60% cotton, 40% polyamide'),(33529,73,0,2181,'Lace Dress-red-Medium size'),(33530,84,0,2181,'Lace Dress'),(33531,86,0,2181,'Lace Dress \r\n\r\n\r\n\r\n\r\n\r\nCut: fitted with a slightly tapered skirt, back slit\r\nMeasurements for size EU S: garment length 106 cm (41.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: shortsleeve\r\nLining: lined\r\nPattern: solid-coloured\r\nOuter material'),(33532,87,0,2181,'/r/1/r1_24_2.jpg'),(33533,88,0,2181,'/r/1/r1_24_2.jpg'),(33534,89,0,2181,'/r/1/r1_24_2.jpg'),(33535,106,0,2181,'container2'),(33536,121,0,2181,'n-lace-dress-red-medium-size'),(33537,132,0,2181,'0'),(33538,133,0,2181,'/r/1/r1_24_2.jpg'),(33539,206,0,2181,'60% cotton, 40% polyamide'),(33544,73,0,2182,'Lace Dress-grey-Extra small size'),(33545,84,0,2182,'Lace Dress'),(33546,86,0,2182,'Lace Dress \r\n\r\n\r\n\r\n\r\n\r\nCut: fitted with a slightly tapered skirt, back slit\r\nMeasurements for size EU S: garment length 106 cm (41.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: shortsleeve\r\nLining: lined\r\nPattern: solid-coloured\r\nOuter material'),(33547,87,0,2182,'/g/1/g1_21.jpg'),(33548,88,0,2182,'/g/1/g1_21.jpg'),(33549,89,0,2182,'/g/1/g1_21.jpg'),(33550,106,0,2182,'container2'),(33551,121,0,2182,'n-lace-dress-grey-extra-small-size'),(33552,132,0,2182,'0'),(33553,133,0,2182,'/g/1/g1_21.jpg'),(33554,206,0,2182,'60% cotton, 40% polyamide'),(33559,73,0,2183,'Lace Dress-grey-Small size'),(33560,84,0,2183,'Lace Dress'),(33561,86,0,2183,'Lace Dress \r\n\r\n\r\n\r\n\r\n\r\nCut: fitted with a slightly tapered skirt, back slit\r\nMeasurements for size EU S: garment length 106 cm (41.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: shortsleeve\r\nLining: lined\r\nPattern: solid-coloured\r\nOuter material'),(33562,87,0,2183,'/g/1/g1_21_1.jpg'),(33563,88,0,2183,'/g/1/g1_21_1.jpg'),(33564,89,0,2183,'/g/1/g1_21_1.jpg'),(33565,106,0,2183,'container2'),(33566,121,0,2183,'n-lace-dress-grey-small-size'),(33567,132,0,2183,'0'),(33568,133,0,2183,'/g/1/g1_21_1.jpg'),(33569,206,0,2183,'60% cotton, 40% polyamide'),(33574,73,0,2184,'Lace Dress-grey-Medium size'),(33575,84,0,2184,'Lace Dress'),(33576,86,0,2184,'Lace Dress \r\n\r\n\r\n\r\n\r\n\r\nCut: fitted with a slightly tapered skirt, back slit\r\nMeasurements for size EU S: garment length 106 cm (41.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: shortsleeve\r\nLining: lined\r\nPattern: solid-coloured\r\nOuter material'),(33577,87,0,2184,'/g/1/g1_21_2.jpg'),(33578,88,0,2184,'/g/1/g1_21_2.jpg'),(33579,89,0,2184,'/g/1/g1_21_2.jpg'),(33580,106,0,2184,'container2'),(33581,121,0,2184,'n-lace-dress-grey-medium-size'),(33582,132,0,2184,'0'),(33583,133,0,2184,'/g/1/g1_21_2.jpg'),(33584,206,0,2184,'60% cotton, 40% polyamide'),(33589,73,0,2185,'Lace Dress'),(33590,84,0,2185,'Lace Dress'),(33591,86,0,2185,'Lace Dress \r\n\r\n\r\n\r\n\r\n\r\nCut: fitted with a slightly tapered skirt, back slit\r\nMeasurements for size EU S: garment length 106 cm (41.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: shortsleeve\r\nLining: lined\r\nPattern: solid-coloured\r\nOuter material'),(33592,87,0,2185,'/g/1/g1_22.jpg'),(33593,88,0,2185,'/g/1/g1_22.jpg'),(33594,89,0,2185,'/g/1/g1_22.jpg'),(33595,106,0,2185,'container2'),(33596,121,0,2185,'n-lace-dress'),(33597,132,0,2185,'2'),(33598,133,0,2185,'/g/1/g1_22.jpg'),(33599,206,0,2185,'60% cotton, 40% polyamide'),(33604,73,0,2186,' Green sunglasses-black-Small size'),(33605,84,0,2186,' Green sunglasses'),(33606,86,0,2186,' Green sunglasses Reference number: MB 657S\r\nMeasurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3\r\nExtras: logo appliqué(s), case included\r\nMaterial: '),(33607,87,0,2186,'/i/m/image_31258335_50_620x757_1_2.jpg'),(33608,88,0,2186,'/i/m/image_31258335_50_620x757_1_2.jpg'),(33609,89,0,2186,'/i/m/image_31258335_50_620x757_1_2.jpg'),(33610,106,0,2186,'container2'),(33611,121,0,2186,'n-green-sunglasses-black-small-size'),(33612,132,0,2186,'0'),(33613,133,0,2186,'/i/m/image_31258335_50_620x757_1_2.jpg'),(33618,73,0,2187,' Green sunglasses-black-Medium size'),(33619,84,0,2187,' Green sunglasses'),(33620,86,0,2187,' Green sunglasses Reference number: MB 657S\r\nMeasurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3\r\nExtras: logo appliqué(s), case included\r\nMaterial: '),(33621,87,0,2187,'/i/m/image_31258335_50_620x757_1_2_1.jpg'),(33622,88,0,2187,'/i/m/image_31258335_50_620x757_1_2_1.jpg'),(33623,89,0,2187,'/i/m/image_31258335_50_620x757_1_2_1.jpg'),(33624,106,0,2187,'container2'),(33625,121,0,2187,'n-green-sunglasses-black-medium-size'),(33626,132,0,2187,'0'),(33627,133,0,2187,'/i/m/image_31258335_50_620x757_1_2_1.jpg'),(33632,73,0,2188,' Green sunglasses-red-Small size'),(33633,84,0,2188,' Green sunglasses'),(33634,86,0,2188,' Green sunglasses Reference number: MB 657S\r\nMeasurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3\r\nExtras: logo appliqué(s), case included\r\nMaterial: '),(33635,87,0,2188,'/2/3/232w21212_2.jpg'),(33636,88,0,2188,'/2/3/232w21212_2.jpg'),(33637,89,0,2188,'/2/3/232w21212_2.jpg'),(33638,106,0,2188,'container2'),(33639,121,0,2188,'n-green-sunglasses-red-small-size'),(33640,132,0,2188,'0'),(33641,133,0,2188,'/2/3/232w21212_2.jpg'),(33646,73,0,2189,' Green sunglasses-red-Medium size'),(33647,84,0,2189,' Green sunglasses'),(33648,86,0,2189,' Green sunglasses Reference number: MB 657S\r\nMeasurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3\r\nExtras: logo appliqué(s), case included\r\nMaterial: '),(33649,87,0,2189,'/2/3/232w21212_1_1.jpg'),(33650,88,0,2189,'/2/3/232w21212_1_1.jpg'),(33651,89,0,2189,'/2/3/232w21212_1_1.jpg'),(33652,106,0,2189,'container2'),(33653,121,0,2189,'n-green-sunglasses-red-medium-size'),(33654,132,0,2189,'0'),(33655,133,0,2189,'/2/3/232w21212_1_1.jpg'),(33660,73,0,2190,'Green sunglasses'),(33661,84,0,2190,' Green sunglasses'),(33662,86,0,2190,' Green sunglasses Reference number: MB 657S\r\nMeasurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″)\r\nUV filter: category 3\r\nExtras: logo appliqué(s), case included\r\nMaterial: '),(33663,87,0,2190,'/m/a/main_3_1_1_2.jpg'),(33664,88,0,2190,'/m/a/main_3_1_1_2.jpg'),(33665,89,0,2190,'/m/a/main_3_1_1_2.jpg'),(33666,106,0,2190,'container2'),(33667,121,0,2190,'n-green-sunglasses'),(33668,132,0,2190,'2'),(33669,133,0,2190,'no_selection'),(33674,73,0,2191,'Lawrence Grey Cashmere Pullover-brown-Extra small size'),(33675,84,0,2191,'Lawrence Grey Cashmere Pullover'),(33676,86,0,2191,'Lawrence Grey Cashmere Pullover Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s c'),(33677,87,0,2191,'/b/1/b1_42.jpg'),(33678,88,0,2191,'/b/1/b1_42.jpg'),(33679,89,0,2191,'/b/1/b1_42.jpg'),(33680,106,0,2191,'container2'),(33681,121,0,2191,'n-lawrence-grey-cashmere-pullover-brown-extra-small-size'),(33682,132,0,2191,'0'),(33683,133,0,2191,'/b/1/b1_42.jpg'),(33684,206,0,2191,' 100% cashmere'),(33689,73,0,2192,'Lawrence Grey Cashmere Pullover-brown-Small size'),(33690,84,0,2192,'Lawrence Grey Cashmere Pullover'),(33691,86,0,2192,'Lawrence Grey Cashmere Pullover Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s c'),(33692,87,0,2192,'/b/1/b1_42_1.jpg'),(33693,88,0,2192,'/b/1/b1_42_1.jpg'),(33694,89,0,2192,'/b/1/b1_42_1.jpg'),(33695,106,0,2192,'container2'),(33696,121,0,2192,'n-lawrence-grey-cashmere-pullover-brown-small-size'),(33697,132,0,2192,'0'),(33698,133,0,2192,'/b/1/b1_42_1.jpg'),(33699,206,0,2192,' 100% cashmere'),(33704,73,0,2193,'Lawrence Grey Cashmere Pullover-brown-Medium size'),(33705,84,0,2193,'Lawrence Grey Cashmere Pullover'),(33706,86,0,2193,'Lawrence Grey Cashmere Pullover Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s c'),(33707,87,0,2193,'/b/1/b1_42_2.jpg'),(33708,88,0,2193,'/b/1/b1_42_2.jpg'),(33709,89,0,2193,'/b/1/b1_42_2.jpg'),(33710,106,0,2193,'container2'),(33711,121,0,2193,'n-lawrence-grey-cashmere-pullover-brown-medium-size'),(33712,132,0,2193,'0'),(33713,133,0,2193,'/b/1/b1_42_2.jpg'),(33714,206,0,2193,' 100% cashmere'),(33719,73,0,2194,'Lawrence Grey Cashmere Pullover-grey-Extra small size'),(33720,84,0,2194,'Lawrence Grey Cashmere Pullover'),(33721,86,0,2194,'Lawrence Grey Cashmere Pullover Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s c'),(33722,87,0,2194,'/g/1/g1_23.jpg'),(33723,88,0,2194,'/g/1/g1_23.jpg'),(33724,89,0,2194,'/g/1/g1_23.jpg'),(33725,106,0,2194,'container2'),(33726,121,0,2194,'n-lawrence-grey-cashmere-pullover-grey-extra-small-size'),(33727,132,0,2194,'0'),(33728,133,0,2194,'/g/1/g1_23.jpg'),(33729,206,0,2194,' 100% cashmere'),(33734,73,0,2195,'Lawrence Grey Cashmere Pullover-grey-Small size'),(33735,84,0,2195,'Lawrence Grey Cashmere Pullover'),(33736,86,0,2195,'Lawrence Grey Cashmere Pullover Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s c'),(33737,87,0,2195,'/g/1/g1_23_1.jpg'),(33738,88,0,2195,'/g/1/g1_23_1.jpg'),(33739,89,0,2195,'/g/1/g1_23_1.jpg'),(33740,106,0,2195,'container2'),(33741,121,0,2195,'n-lawrence-grey-cashmere-pullover-grey-small-size'),(33742,132,0,2195,'0'),(33743,133,0,2195,'/g/1/g1_23_1.jpg'),(33744,206,0,2195,' 100% cashmere'),(33749,73,0,2196,'Lawrence Grey Cashmere Pullover-grey-Medium size'),(33750,84,0,2196,'Lawrence Grey Cashmere Pullover'),(33751,86,0,2196,'Lawrence Grey Cashmere Pullover Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s c'),(33752,87,0,2196,'/g/1/g1_23_2.jpg'),(33753,88,0,2196,'/g/1/g1_23_2.jpg'),(33754,89,0,2196,'/g/1/g1_23_2.jpg'),(33755,106,0,2196,'container2'),(33756,121,0,2196,'n-lawrence-grey-cashmere-pullover-grey-medium-size'),(33757,132,0,2196,'0'),(33758,133,0,2196,'/g/1/g1_23_2.jpg'),(33759,206,0,2196,' 100% cashmere'),(33764,73,0,2197,'Lawrence Grey Cashmere Pullover'),(33765,84,0,2197,'Lawrence Grey Cashmere Pullover'),(33766,86,0,2197,'Lawrence Grey Cashmere Pullover Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s c'),(33767,87,0,2197,'/b/1/b1_43.jpg'),(33768,88,0,2197,'/b/1/b1_43.jpg'),(33769,89,0,2197,'/b/1/b1_43.jpg'),(33770,106,0,2197,'container2'),(33771,121,0,2197,'n-lawrence-grey-cashmere-pullover'),(33772,132,0,2197,'2'),(33773,133,0,2197,'/b/1/b1_43.jpg'),(33774,206,0,2197,' 100% cashmere'),(33779,73,0,2198,'Lawrence Grey Knit Dress-grey-Extra small size'),(33780,84,0,2198,'Lawrence Grey Knit Dress'),(33781,86,0,2198,'Lawrence Grey Knit Dress Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100'),(33782,87,0,2198,'/g/1/g1_24.jpg'),(33783,88,0,2198,'/g/1/g1_24.jpg'),(33784,89,0,2198,'/g/1/g1_24.jpg'),(33785,106,0,2198,'container2'),(33786,121,0,2198,'n-lawrence-grey-knit-dress-grey-extra-small-size'),(33787,132,0,2198,'0'),(33788,133,0,2198,'/g/1/g1_24.jpg'),(33789,206,0,2198,'100% merino'),(33794,73,0,2199,'Lawrence Grey Knit Dress-grey-Small size'),(33795,84,0,2199,'Lawrence Grey Knit Dress'),(33796,86,0,2199,'Lawrence Grey Knit Dress Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100'),(33797,87,0,2199,'/g/1/g1_24_1.jpg'),(33798,88,0,2199,'/g/1/g1_24_1.jpg'),(33799,89,0,2199,'/g/1/g1_24_1.jpg'),(33800,106,0,2199,'container2'),(33801,121,0,2199,'n-lawrence-grey-knit-dress-grey-small-size'),(33802,132,0,2199,'0'),(33803,133,0,2199,'/g/1/g1_24_1.jpg'),(33804,206,0,2199,'100% merino'),(33809,73,0,2200,'Lawrence Grey Knit Dress-grey-Medium size'),(33810,84,0,2200,'Lawrence Grey Knit Dress'),(33811,86,0,2200,'Lawrence Grey Knit Dress Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100'),(33812,87,0,2200,'/g/1/g1_24_2.jpg'),(33813,88,0,2200,'/g/1/g1_24_2.jpg'),(33814,89,0,2200,'/g/1/g1_24_2.jpg'),(33815,106,0,2200,'container2'),(33816,121,0,2200,'n-lawrence-grey-knit-dress-grey-medium-size'),(33817,132,0,2200,'0'),(33818,133,0,2200,'/g/1/g1_24_2.jpg'),(33819,206,0,2200,'100% merino'),(33824,73,0,2201,'Lawrence Grey Knit Dress-blue-Extra small size'),(33825,84,0,2201,'Lawrence Grey Knit Dress'),(33826,86,0,2201,'Lawrence Grey Knit Dress Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100'),(33827,87,0,2201,'/b/1/b1_44.jpg'),(33828,88,0,2201,'/b/1/b1_44.jpg'),(33829,89,0,2201,'/b/1/b1_44.jpg'),(33830,106,0,2201,'container2'),(33831,121,0,2201,'n-lawrence-grey-knit-dress-blue-extra-small-size'),(33832,132,0,2201,'0'),(33833,133,0,2201,'/b/1/b1_44.jpg'),(33834,206,0,2201,'100% merino'),(33839,73,0,2202,'Lawrence Grey Knit Dress-blue-Small size'),(33840,84,0,2202,'Lawrence Grey Knit Dress'),(33841,86,0,2202,'Lawrence Grey Knit Dress Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100'),(33842,87,0,2202,'/b/1/b1_44_1.jpg'),(33843,88,0,2202,'/b/1/b1_44_1.jpg'),(33844,89,0,2202,'/b/1/b1_44_1.jpg'),(33845,106,0,2202,'container2'),(33846,121,0,2202,'n-lawrence-grey-knit-dress-blue-small-size'),(33847,132,0,2202,'0'),(33848,133,0,2202,'/b/1/b1_44_1.jpg'),(33849,206,0,2202,'100% merino'),(33854,73,0,2203,'Lawrence Grey Knit Dress-blue-Medium size'),(33855,84,0,2203,'Lawrence Grey Knit Dress'),(33856,86,0,2203,'Lawrence Grey Knit Dress Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100'),(33857,87,0,2203,'/b/1/b1_44_2.jpg'),(33858,88,0,2203,'/b/1/b1_44_2.jpg'),(33859,89,0,2203,'/b/1/b1_44_2.jpg'),(33860,106,0,2203,'container2'),(33861,121,0,2203,'n-lawrence-grey-knit-dress-blue-medium-size'),(33862,132,0,2203,'0'),(33863,133,0,2203,'/b/1/b1_44_2.jpg'),(33864,206,0,2203,'100% merino'),(33869,73,0,2204,'Lawrence Grey Knit Dress'),(33870,84,0,2204,'Lawrence Grey Knit Dress'),(33871,86,0,2204,'Lawrence Grey Knit Dress Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100'),(33872,87,0,2204,'/g/1/g1_25.jpg'),(33873,88,0,2204,'/g/1/g1_25.jpg'),(33874,89,0,2204,'/g/1/g1_25.jpg'),(33875,106,0,2204,'container2'),(33876,121,0,2204,'n-lawrence-grey-knit-dress'),(33877,132,0,2204,'2'),(33878,133,0,2204,'/g/1/g1_25.jpg'),(33879,206,0,2204,'100% merino'),(33884,206,0,1656,' 100% cotton'),(33889,206,0,1604,'98% cotton, 2% elastane'),(33894,206,0,1464,'100% polyester'),(33898,206,0,1351,'89% polyester, 11% elastane'),(33902,73,0,2205,' Cognac Handbag-brown'),(33903,84,0,2205,' Cognac Handbag'),(33904,86,0,2205,' Cognac Handbag Measurements for one size: height 34 cm (13.5″), length 36 cm (14″), depth 8 cm (3″)\r\nExterior pockets: zip pocket(s)\r\nInterior pockets: plug-in and zip pocket(s)\r\nExtras: suede, adjustable and detachable shoulder strap, logo appliqué(s'),(33905,87,0,2205,'/i/m/image_31175794_72_620x757_1_2_1_1.jpg'),(33906,88,0,2205,'/i/m/image_31175794_72_620x757_1_2_1_1.jpg'),(33907,89,0,2205,'/i/m/image_31175794_72_620x757_1_2_1_1.jpg'),(33908,106,0,2205,'container2'),(33909,121,0,2205,'n-cognac-handbag-brown'),(33910,132,0,2205,'0'),(33911,133,0,2205,'/i/m/image_31175794_72_620x757_1_2_1_1.jpg'),(33916,73,0,2206,' Cognac Handbag-grey'),(33917,84,0,2206,' Cognac Handbag'),(33918,86,0,2206,' Cognac Handbag Measurements for one size: height 34 cm (13.5″), length 36 cm (14″), depth 8 cm (3″)\r\nExterior pockets: zip pocket(s)\r\nInterior pockets: plug-in and zip pocket(s)\r\nExtras: suede, adjustable and detachable shoulder strap, logo appliqué(s'),(33919,87,0,2206,'/2/3/232e2e2e2e_1_1_1.jpg'),(33920,88,0,2206,'/2/3/232e2e2e2e_1_1_1.jpg'),(33921,89,0,2206,'/2/3/232e2e2e2e_1_1_1.jpg'),(33922,106,0,2206,'container2'),(33923,121,0,2206,'n-cognac-handbag-grey'),(33924,132,0,2206,'0'),(33925,133,0,2206,'/2/3/232e2e2e2e_1_1_1.jpg'),(33930,73,0,2207,'Cognac Handbag'),(33931,84,0,2207,' Cognac Handbag'),(33932,86,0,2207,' Cognac Handbag Measurements for one size: height 34 cm (13.5″), length 36 cm (14″), depth 8 cm (3″)\r\nExterior pockets: zip pocket(s)\r\nInterior pockets: plug-in and zip pocket(s)\r\nExtras: suede, adjustable and detachable shoulder strap, logo appliqué(s'),(33933,87,0,2207,'/m/a/main_15_4.jpg'),(33934,88,0,2207,'/m/a/main_15_4.jpg'),(33935,89,0,2207,'/m/a/main_15_4.jpg'),(33936,106,0,2207,'container2'),(33937,121,0,2207,'n-cognac-handbag'),(33938,132,0,2207,'2'),(33939,133,0,2207,'no_selection'),(33944,206,0,1568,'63% cotton, 27% polyamide, 10% wool'),(33949,206,0,1946,'textile, synthetic'),(33959,73,0,2208,' Bottega Veneta-brown-Small size'),(33960,84,0,2208,' Bottega Veneta'),(33961,86,0,2208,' Bottega Veneta Reference number: BV0111S\r\nMeasurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: titanium, plastic\r\nPlease'),(33962,87,0,2208,'/i/m/image_31289374_75_620x757_1_2.jpg'),(33963,88,0,2208,'/i/m/image_31289374_75_620x757_1_2.jpg'),(33964,89,0,2208,'/i/m/image_31289374_75_620x757_1_2.jpg'),(33965,106,0,2208,'container2'),(33966,121,0,2208,'n-bottega-veneta-brown-small-size'),(33967,132,0,2208,'0'),(33968,133,0,2208,'/i/m/image_31289374_75_620x757_1_2.jpg'),(33973,73,0,2209,' Bottega Veneta-brown-Medium size'),(33974,84,0,2209,' Bottega Veneta'),(33975,86,0,2209,' Bottega Veneta Reference number: BV0111S\r\nMeasurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: titanium, plastic\r\nPlease'),(33976,87,0,2209,'/i/m/image_31289374_75_620x757_1_2_1.jpg'),(33977,88,0,2209,'/i/m/image_31289374_75_620x757_1_2_1.jpg'),(33978,89,0,2209,'/i/m/image_31289374_75_620x757_1_2_1.jpg'),(33979,106,0,2209,'container2'),(33980,121,0,2209,'n-bottega-veneta-brown-medium-size'),(33981,132,0,2209,'0'),(33982,133,0,2209,'/i/m/image_31289374_75_620x757_1_2_1.jpg'),(33987,73,0,2210,' Bottega Veneta-black-Small size'),(33988,84,0,2210,' Bottega Veneta'),(33989,86,0,2210,' Bottega Veneta Reference number: BV0111S\r\nMeasurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: titanium, plastic\r\nPlease'),(33990,87,0,2210,'/2/3/232e2e2e2e_2.jpg'),(33991,88,0,2210,'/2/3/232e2e2e2e_2.jpg'),(33992,89,0,2210,'/2/3/232e2e2e2e_2.jpg'),(33993,106,0,2210,'container2'),(33994,121,0,2210,'n-bottega-veneta-black-small-size'),(33995,132,0,2210,'0'),(33996,133,0,2210,'/2/3/232e2e2e2e_2.jpg'),(34001,73,0,2211,' Bottega Veneta-black-Medium size'),(34002,84,0,2211,' Bottega Veneta'),(34003,86,0,2211,' Bottega Veneta Reference number: BV0111S\r\nMeasurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: titanium, plastic\r\nPlease'),(34004,87,0,2211,'/2/3/232e2e2e2e_2_1.jpg'),(34005,88,0,2211,'/2/3/232e2e2e2e_2_1.jpg'),(34006,89,0,2211,'/2/3/232e2e2e2e_2_1.jpg'),(34007,106,0,2211,'container2'),(34008,121,0,2211,'n-bottega-veneta-black-medium-size'),(34009,132,0,2211,'0'),(34010,133,0,2211,'/2/3/232e2e2e2e_2_1.jpg'),(34015,73,0,2212,'Bottega Veneta'),(34016,84,0,2212,' Bottega Veneta'),(34017,86,0,2212,' Bottega Veneta Reference number: BV0111S\r\nMeasurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″)\r\nUV filter: category 3 Extras: case included\r\nMaterial: titanium, plastic\r\nPlease'),(34018,87,0,2212,'/m/a/main_17.jpg'),(34019,88,0,2212,'/m/a/main_17.jpg'),(34020,89,0,2212,'/m/a/main_17.jpg'),(34021,106,0,2212,'container2'),(34022,121,0,2212,'n-bottega-veneta'),(34023,132,0,2212,'2'),(34024,133,0,2212,'no_selection'),(34029,73,0,2213,'Max & Co. Mini Dress-black-Extra small size'),(34030,84,0,2213,'Max & Co. Mini Dress'),(34031,86,0,2213,'Max & Co. Mini Dress Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: sol'),(34032,87,0,2213,'/d/1/d1_14.jpg'),(34033,88,0,2213,'/d/1/d1_14.jpg'),(34034,89,0,2213,'/d/1/d1_14.jpg'),(34035,106,0,2213,'container2'),(34036,121,0,2213,'n-max-co-mini-dress-black-extra-small-size'),(34037,132,0,2213,'0'),(34038,133,0,2213,'/d/1/d1_14.jpg'),(34039,206,0,2213,'59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre'),(34044,73,0,2214,'Max & Co. Mini Dress-black-Large size'),(34045,84,0,2214,'Max & Co. Mini Dress'),(34046,86,0,2214,'Max & Co. Mini Dress Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: sol'),(34047,87,0,2214,'/d/1/d1_14_1.jpg'),(34048,88,0,2214,'/d/1/d1_14_1.jpg'),(34049,89,0,2214,'/d/1/d1_14_1.jpg'),(34050,106,0,2214,'container2'),(34051,121,0,2214,'n-max-co-mini-dress-black-large-size'),(34052,132,0,2214,'0'),(34053,133,0,2214,'/d/1/d1_14_1.jpg'),(34054,206,0,2214,'59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre'),(34059,73,0,2215,'Max & Co. Mini Dress-black-Small size'),(34060,84,0,2215,'Max & Co. Mini Dress'),(34061,86,0,2215,'Max & Co. Mini Dress Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: sol'),(34062,87,0,2215,'/d/1/d1_14_2.jpg'),(34063,88,0,2215,'/d/1/d1_14_2.jpg'),(34064,89,0,2215,'/d/1/d1_14_2.jpg'),(34065,106,0,2215,'container2'),(34066,121,0,2215,'n-max-co-mini-dress-black-small-size'),(34067,132,0,2215,'0'),(34068,133,0,2215,'/d/1/d1_14_2.jpg'),(34069,206,0,2215,'59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre'),(34074,206,0,1903,'80% cotton, 20% polyester'),(34079,73,0,2216,'Max & Co. Mini Dress-brown-Extra small size'),(34080,84,0,2216,'Max & Co. Mini Dress'),(34081,86,0,2216,'Max & Co. Mini Dress Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: sol'),(34082,87,0,2216,'/b/1/b1_45.jpg'),(34083,88,0,2216,'/b/1/b1_45.jpg'),(34084,89,0,2216,'/b/1/b1_45.jpg'),(34085,106,0,2216,'container2'),(34086,121,0,2216,'n-max-co-mini-dress-brown-extra-small-size'),(34087,132,0,2216,'0'),(34088,133,0,2216,'/b/1/b1_45.jpg'),(34089,206,0,2216,'59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre'),(34094,73,0,2217,'Max & Co. Mini Dress-brown-Large size'),(34095,84,0,2217,'Max & Co. Mini Dress'),(34096,86,0,2217,'Max & Co. Mini Dress Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: sol'),(34097,87,0,2217,'/b/1/b1_45_1.jpg'),(34098,88,0,2217,'/b/1/b1_45_1.jpg'),(34099,89,0,2217,'/b/1/b1_45_1.jpg'),(34100,106,0,2217,'container2'),(34101,121,0,2217,'n-max-co-mini-dress-brown-large-size'),(34102,132,0,2217,'0'),(34103,133,0,2217,'/b/1/b1_45_1.jpg'),(34104,206,0,2217,'59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre'),(34109,73,0,2218,'Max & Co. Mini Dress-brown-Small size'),(34110,84,0,2218,'Max & Co. Mini Dress'),(34111,86,0,2218,'Max & Co. Mini Dress Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: sol'),(34112,87,0,2218,'/b/1/b1_45_2.jpg'),(34113,88,0,2218,'/b/1/b1_45_2.jpg'),(34114,89,0,2218,'/b/1/b1_45_2.jpg'),(34115,106,0,2218,'container2'),(34116,121,0,2218,'n-max-co-mini-dress-brown-small-size'),(34117,132,0,2218,'0'),(34118,133,0,2218,'/b/1/b1_45_2.jpg'),(34119,206,0,2218,'59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre'),(34124,73,0,2219,'Max & Co. Mini Dress'),(34125,84,0,2219,'Max & Co. Mini Dress'),(34126,86,0,2219,'Max & Co. Mini Dress Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: sol'),(34127,87,0,2219,'/b/1/b1_46.jpg'),(34128,88,0,2219,'/b/1/b1_46.jpg'),(34129,89,0,2219,'/b/1/b1_46.jpg'),(34130,106,0,2219,'container2'),(34131,121,0,2219,'n-max-co-mini-dress'),(34132,132,0,2219,'2'),(34133,133,0,2219,'/b/1/b1_46.jpg'),(34134,206,0,2219,'59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre'),(34139,206,0,1875,'99% cotton, 1% elastane'),(34144,73,0,2220,' Blue handbag-blue'),(34145,84,0,2220,' Blue handbag'),(34146,86,0,2220,' Blue handbag Smart tote bag. It has two detachable shoulder straps so that it can be worn as a backpack or carried as a tote. There is an outside compartment for storing the shoulder straps.'),(34147,87,0,2220,'/m/a/main_15_2_1_1.jpg'),(34148,88,0,2220,'/m/a/main_15_2_1_1.jpg'),(34149,89,0,2220,'/m/a/main_15_2_1_1.jpg'),(34150,106,0,2220,'container2'),(34151,121,0,2220,'n-blue-handbag-blue'),(34152,132,0,2220,'0'),(34153,133,0,2220,'/m/a/main_15_2_1_1.jpg'),(34158,73,0,2221,' Blue handbag-red'),(34159,84,0,2221,' Blue handbag'),(34160,86,0,2221,' Blue handbag Smart tote bag. It has two detachable shoulder straps so that it can be worn as a backpack or carried as a tote. There is an outside compartment for storing the shoulder straps.'),(34161,87,0,2221,'/2/3/2312w2w2w_1_1.jpg'),(34162,88,0,2221,'/2/3/2312w2w2w_1_1.jpg'),(34163,89,0,2221,'/2/3/2312w2w2w_1_1.jpg'),(34164,106,0,2221,'container2'),(34165,121,0,2221,'n-blue-handbag-red'),(34166,132,0,2221,'0'),(34167,133,0,2221,'/2/3/2312w2w2w_1_1.jpg'),(34172,73,0,2222,'Blue handbag'),(34173,84,0,2222,' Blue handbag'),(34174,86,0,2222,' Blue handbag Smart tote bag. It has two detachable shoulder straps so that it can be worn as a backpack or carried as a tote. There is an outside compartment for storing the shoulder straps.'),(34175,87,0,2222,'/m/a/main_15_2_2.jpg'),(34176,88,0,2222,'/m/a/main_15_2_2.jpg'),(34177,89,0,2222,'/m/a/main_15_2_2.jpg'),(34178,106,0,2222,'container2'),(34179,121,0,2222,'n-medium-blue-handbag'),(34180,132,0,2222,'2'),(34181,133,0,2222,'no_selection'),(34186,206,0,1840,'98% cotton, 2% elastane'),(34191,206,0,1817,'81% cotton, 17% Elastomultiester, 2% elastane'),(34196,73,0,2223,'Max Tonso Cashmere Pullover-Extra small size-red'),(34197,84,0,2223,'Max Tonso Cashmere Pullover'),(34198,86,0,2223,'Max Tonso Cashmere Pullover Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-col'),(34199,87,0,2223,'/r/1/r1_25.jpg'),(34200,88,0,2223,'/r/1/r1_25.jpg'),(34201,89,0,2223,'/r/1/r1_25.jpg'),(34202,106,0,2223,'container2'),(34203,121,0,2223,'n-max-tonso-cashmere-pullover-extra-small-size-red'),(34204,132,0,2223,'0'),(34205,133,0,2223,'/r/1/r1_25.jpg'),(34206,206,0,2223,' 100% cashmere'),(34211,73,0,2224,'Max Tonso Cashmere Pullover-Extra small size-brown'),(34212,84,0,2224,'Max Tonso Cashmere Pullover'),(34213,86,0,2224,'Max Tonso Cashmere Pullover Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-col'),(34214,87,0,2224,'/b/1/b1_47.jpg'),(34215,88,0,2224,'/b/1/b1_47.jpg'),(34216,89,0,2224,'/b/1/b1_47.jpg'),(34217,106,0,2224,'container2'),(34218,121,0,2224,'n-max-tonso-cashmere-pullover-extra-small-size-brown'),(34219,132,0,2224,'0'),(34220,133,0,2224,'/b/1/b1_47.jpg'),(34221,206,0,2224,' 100% cashmere'),(34226,73,0,2225,'Max Tonso Cashmere Pullover-Small size-red'),(34227,84,0,2225,'Max Tonso Cashmere Pullover'),(34228,86,0,2225,'Max Tonso Cashmere Pullover Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-col'),(34229,87,0,2225,'/r/1/r1_25_1.jpg'),(34230,88,0,2225,'/r/1/r1_25_1.jpg'),(34231,89,0,2225,'/r/1/r1_25_1.jpg'),(34232,106,0,2225,'container2'),(34233,121,0,2225,'n-max-tonso-cashmere-pullover-small-size-red'),(34234,132,0,2225,'0'),(34235,133,0,2225,'/r/1/r1_25_1.jpg'),(34236,206,0,2225,' 100% cashmere'),(34241,73,0,2226,'Max Tonso Cashmere Pullover-Small size-brown'),(34242,84,0,2226,'Max Tonso Cashmere Pullover'),(34243,86,0,2226,'Max Tonso Cashmere Pullover Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-col'),(34244,87,0,2226,'/b/1/b1_47_1.jpg'),(34245,88,0,2226,'/b/1/b1_47_1.jpg'),(34246,89,0,2226,'/b/1/b1_47_1.jpg'),(34247,106,0,2226,'container2'),(34248,121,0,2226,'n-max-tonso-cashmere-pullover-small-size-brown'),(34249,132,0,2226,'0'),(34250,133,0,2226,'/b/1/b1_47_1.jpg'),(34251,206,0,2226,' 100% cashmere'),(34256,73,0,2227,'Max Tonso Cashmere Pullover-Medium size-red'),(34257,84,0,2227,'Max Tonso Cashmere Pullover'),(34258,86,0,2227,'Max Tonso Cashmere Pullover Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-col'),(34259,87,0,2227,'/r/1/r1_25_2.jpg'),(34260,88,0,2227,'/r/1/r1_25_2.jpg'),(34261,89,0,2227,'/r/1/r1_25_2.jpg'),(34262,106,0,2227,'container2'),(34263,121,0,2227,'n-max-tonso-cashmere-pullover-medium-size-red'),(34264,132,0,2227,'0'),(34265,133,0,2227,'/r/1/r1_25_2.jpg'),(34266,206,0,2227,' 100% cashmere'),(34271,73,0,2228,'Max Tonso Cashmere Pullover-Medium size-brown'),(34272,84,0,2228,'Max Tonso Cashmere Pullover'),(34273,86,0,2228,'Max Tonso Cashmere Pullover Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-col'),(34274,87,0,2228,'/b/1/b1_47_2.jpg'),(34275,88,0,2228,'/b/1/b1_47_2.jpg'),(34276,89,0,2228,'/b/1/b1_47_2.jpg'),(34277,106,0,2228,'container2'),(34278,121,0,2228,'n-max-tonso-cashmere-pullover-medium-size-brown'),(34279,132,0,2228,'0'),(34280,133,0,2228,'/b/1/b1_47_2.jpg'),(34281,206,0,2228,' 100% cashmere'),(34286,73,0,2229,'Max Tonso Cashmere Pullover'),(34287,84,0,2229,'Max Tonso Cashmere Pullover'),(34288,86,0,2229,'Max Tonso Cashmere Pullover Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-col'),(34289,87,0,2229,'/b/1/b1_48.jpg'),(34290,88,0,2229,'/b/1/b1_48.jpg'),(34291,89,0,2229,'/b/1/b1_48.jpg'),(34292,106,0,2229,'container2'),(34293,121,0,2229,'n-max-tonso-cashmere-pullover'),(34294,132,0,2229,'2'),(34295,133,0,2229,'/b/1/b1_48.jpg'),(34296,206,0,2229,' 100% cashmere'),(34301,206,0,1787,'99% cotton, 1% elastane'),(34306,206,0,1735,'98% cotton, 2% elastane'),(34311,206,0,1972,' leather'),(34316,206,0,1709,'100% wool'),(34321,206,0,1943,'Leather'),(34326,206,0,1630,'100% cotton'),(34331,206,0,1583,'83% polyester, 17% cotton'),(34336,73,0,2230,' Black sunglasses-blue-Small size'),(34337,84,0,2230,' Black sunglasses'),(34338,86,0,2230,' Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included'),(34339,87,0,2230,'/2/3/234e3e_2.jpg'),(34340,88,0,2230,'/2/3/234e3e_2.jpg'),(34341,89,0,2230,'/2/3/234e3e_2.jpg'),(34342,106,0,2230,'container2'),(34343,121,0,2230,'n-black-sunglasses-blue-small-size'),(34344,132,0,2230,'0'),(34345,133,0,2230,'/2/3/234e3e_2.jpg'),(34350,73,0,2231,' Black sunglasses-blue-Medium size'),(34351,84,0,2231,' Black sunglasses'),(34352,86,0,2231,' Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included'),(34353,87,0,2231,'/2/3/234e3e_1_1.jpg'),(34354,88,0,2231,'/2/3/234e3e_1_1.jpg'),(34355,89,0,2231,'/2/3/234e3e_1_1.jpg'),(34356,106,0,2231,'container2'),(34357,121,0,2231,'n-black-sunglasses-blue-medium-size'),(34358,132,0,2231,'0'),(34359,133,0,2231,'/2/3/234e3e_1_1.jpg'),(34364,73,0,2232,' Black sunglasses-black-Small size'),(34365,84,0,2232,' Black sunglasses'),(34366,86,0,2232,' Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included'),(34367,87,0,2232,'/i/m/image_31045897_10_620x757_1_2.jpg'),(34368,88,0,2232,'/i/m/image_31045897_10_620x757_1_2.jpg'),(34369,89,0,2232,'/i/m/image_31045897_10_620x757_1_2.jpg'),(34370,106,0,2232,'container2'),(34371,121,0,2232,'n-black-sunglasses-black-small-size'),(34372,132,0,2232,'0'),(34373,133,0,2232,'/i/m/image_31045897_10_620x757_1_2.jpg'),(34378,73,0,2233,' Black sunglasses-black-Medium size'),(34379,84,0,2233,' Black sunglasses'),(34380,86,0,2233,' Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included'),(34381,87,0,2233,'/i/m/image_31045897_10_620x757_1_2_1.jpg'),(34382,88,0,2233,'/i/m/image_31045897_10_620x757_1_2_1.jpg'),(34383,89,0,2233,'/i/m/image_31045897_10_620x757_1_2_1.jpg'),(34384,106,0,2233,'container2'),(34385,121,0,2233,'n-black-sunglasses-black-medium-size'),(34386,132,0,2233,'0'),(34387,133,0,2233,'/i/m/image_31045897_10_620x757_1_2_1.jpg'),(34392,73,0,2234,'Black sunglasses'),(34393,84,0,2234,' Black sunglasses'),(34394,86,0,2234,' Black sunglasses Reference number: 0927/S\r\nMeasurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″)\r\nExtras: logo on both temples, logo engraved on right/left lens, case included'),(34395,87,0,2234,'/m/a/main_4_2_3.jpg'),(34396,88,0,2234,'/m/a/main_4_2_3.jpg'),(34397,89,0,2234,'/m/a/main_4_2_3.jpg'),(34398,106,0,2234,'container2'),(34399,121,0,2234,'n-black-sunglasses'),(34400,132,0,2234,'2'),(34401,133,0,2234,'no_selection'),(34406,73,0,2235,'Over The Knee Boots-brown-EU 36'),(34407,84,0,2235,'Over The Knee Boots'),(34408,86,0,2235,'Over The Knee Boots \r\nMeasurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)\r\nExtras: suede look\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(34409,87,0,2235,'/b/1/b1_49.jpg'),(34410,88,0,2235,'/b/1/b1_49.jpg'),(34411,89,0,2235,'/b/1/b1_49.jpg'),(34412,106,0,2235,'container2'),(34413,121,0,2235,'n-over-the-knee-boots-brown-eu-36'),(34414,132,0,2235,'0'),(34415,133,0,2235,'/b/1/b1_49.jpg'),(34416,206,0,2235,'Leather'),(34421,206,0,1991,'leather'),(34426,73,0,2236,'Over The Knee Boots-brown-EU 39'),(34427,84,0,2236,'Over The Knee Boots'),(34428,86,0,2236,'Over The Knee Boots \r\nMeasurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)\r\nExtras: suede look\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(34429,87,0,2236,'/b/1/b1_49_1.jpg'),(34430,88,0,2236,'/b/1/b1_49_1.jpg'),(34431,89,0,2236,'/b/1/b1_49_1.jpg'),(34432,106,0,2236,'container2'),(34433,121,0,2236,'n-over-the-knee-boots-brown-eu-39'),(34434,132,0,2236,'0'),(34435,133,0,2236,'/b/1/b1_49_1.jpg'),(34436,206,0,2236,'Leather'),(34441,73,0,2237,'Over The Knee Boots-brown-EU 40'),(34442,84,0,2237,'Over The Knee Boots'),(34443,86,0,2237,'Over The Knee Boots \r\nMeasurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)\r\nExtras: suede look\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(34444,87,0,2237,'/b/1/b1_49_2.jpg'),(34445,88,0,2237,'/b/1/b1_49_2.jpg'),(34446,89,0,2237,'/b/1/b1_49_2.jpg'),(34447,106,0,2237,'container2'),(34448,121,0,2237,'n-over-the-knee-boots-brown-eu-40'),(34449,132,0,2237,'0'),(34450,133,0,2237,'/b/1/b1_49_2.jpg'),(34451,206,0,2237,'Leather'),(34456,73,0,2238,'Over The Knee Boots-brown-EU 41'),(34457,84,0,2238,'Over The Knee Boots'),(34458,86,0,2238,'Over The Knee Boots \r\nMeasurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)\r\nExtras: suede look\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(34459,87,0,2238,'/b/1/b1_49_3.jpg'),(34460,88,0,2238,'/b/1/b1_49_3.jpg'),(34461,89,0,2238,'/b/1/b1_49_3.jpg'),(34462,106,0,2238,'container2'),(34463,121,0,2238,'n-over-the-knee-boots-brown-eu-41'),(34464,132,0,2238,'0'),(34465,133,0,2238,'/b/1/b1_49_3.jpg'),(34466,206,0,2238,'Leather'),(34471,73,0,2239,'Over The Knee Boots-brown-EU 38'),(34472,84,0,2239,'Over The Knee Boots'),(34473,86,0,2239,'Over The Knee Boots \r\nMeasurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)\r\nExtras: suede look\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(34474,87,0,2239,'/b/1/b1_49_4.jpg'),(34475,88,0,2239,'/b/1/b1_49_4.jpg'),(34476,89,0,2239,'/b/1/b1_49_4.jpg'),(34477,106,0,2239,'container2'),(34478,121,0,2239,'n-over-the-knee-boots-brown-eu-38'),(34479,132,0,2239,'0'),(34480,133,0,2239,'/b/1/b1_49_4.jpg'),(34481,206,0,2239,'Leather'),(34486,73,0,2240,'Over The Knee Boots-blue-EU 36'),(34487,84,0,2240,'Over The Knee Boots'),(34488,86,0,2240,'Over The Knee Boots \r\nMeasurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)\r\nExtras: suede look\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(34489,87,0,2240,'/1/_/1_20.jpg'),(34490,88,0,2240,'/1/_/1_20.jpg'),(34491,89,0,2240,'/1/_/1_20.jpg'),(34492,106,0,2240,'container2'),(34493,121,0,2240,'n-over-the-knee-boots-blue-eu-36'),(34494,132,0,2240,'0'),(34495,133,0,2240,'/1/_/1_20.jpg'),(34496,206,0,2240,'Leather'),(34501,73,0,2241,'Over The Knee Boots-blue-EU 39'),(34502,84,0,2241,'Over The Knee Boots'),(34503,86,0,2241,'Over The Knee Boots \r\nMeasurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)\r\nExtras: suede look\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(34504,87,0,2241,'/1/_/1_20_1.jpg'),(34505,88,0,2241,'/1/_/1_20_1.jpg'),(34506,89,0,2241,'/1/_/1_20_1.jpg'),(34507,106,0,2241,'container2'),(34508,121,0,2241,'n-over-the-knee-boots-blue-eu-39'),(34509,132,0,2241,'0'),(34510,133,0,2241,'/1/_/1_20_1.jpg'),(34511,206,0,2241,'Leather'),(34516,73,0,2242,'Over The Knee Boots-blue-EU 40'),(34517,84,0,2242,'Over The Knee Boots'),(34518,86,0,2242,'Over The Knee Boots \r\nMeasurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)\r\nExtras: suede look\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(34519,87,0,2242,'/1/_/1_20_2.jpg'),(34520,88,0,2242,'/1/_/1_20_2.jpg'),(34521,89,0,2242,'/1/_/1_20_2.jpg'),(34522,106,0,2242,'container2'),(34523,121,0,2242,'n-over-the-knee-boots-blue-eu-40'),(34524,132,0,2242,'0'),(34525,133,0,2242,'/1/_/1_20_2.jpg'),(34526,206,0,2242,'Leather'),(34531,73,0,2243,'Over The Knee Boots-blue-EU 41'),(34532,84,0,2243,'Over The Knee Boots'),(34533,86,0,2243,'Over The Knee Boots \r\nMeasurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)\r\nExtras: suede look\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(34534,87,0,2243,'/1/_/1_20_3.jpg'),(34535,88,0,2243,'/1/_/1_20_3.jpg'),(34536,89,0,2243,'/1/_/1_20_3.jpg'),(34537,106,0,2243,'container2'),(34538,121,0,2243,'n-over-the-knee-boots-blue-eu-41'),(34539,132,0,2243,'0'),(34540,133,0,2243,'/1/_/1_20_3.jpg'),(34541,206,0,2243,'Leather'),(34546,73,0,2244,'Over The Knee Boots-blue-EU 38'),(34547,84,0,2244,'Over The Knee Boots'),(34548,86,0,2244,'Over The Knee Boots \r\nMeasurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)\r\nExtras: suede look\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(34549,87,0,2244,'/1/_/1_20_4.jpg'),(34550,88,0,2244,'/1/_/1_20_4.jpg'),(34551,89,0,2244,'/1/_/1_20_4.jpg'),(34552,106,0,2244,'container2'),(34553,121,0,2244,'n-over-the-knee-boots-blue-eu-38'),(34554,132,0,2244,'0'),(34555,133,0,2244,'/1/_/1_20_4.jpg'),(34556,206,0,2244,'Leather'),(34561,73,0,2245,'Over The Knee Boots'),(34562,84,0,2245,'Over The Knee Boots'),(34563,86,0,2245,'Over The Knee Boots \r\nMeasurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″)\r\nExtras: suede look\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(34564,87,0,2245,'/b/1/b1_50.jpg'),(34565,88,0,2245,'/b/1/b1_50.jpg'),(34566,89,0,2245,'/b/1/b1_50.jpg'),(34567,106,0,2245,'container2'),(34568,121,0,2245,'n-over-the-knee-boots'),(34569,132,0,2245,'2'),(34570,133,0,2245,'/b/1/b1_50.jpg'),(34571,206,0,2245,'Leather'),(34576,206,0,1961,' leather'),(34581,206,0,1535,'100% polyamide'),(34585,73,0,2246,'Pale Belt Pants -red-Small size'),(34586,84,0,2246,'Pale Belt Pants '),(34587,86,0,2246,'Pale Belt Pants  The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The '),(34588,87,0,2246,'/r/1/r1_26.jpg'),(34589,88,0,2246,'/r/1/r1_26.jpg'),(34590,89,0,2246,'/r/1/r1_26.jpg'),(34591,106,0,2246,'container2'),(34592,121,0,2246,'n-pale-belt-pants-red-small-size'),(34593,132,0,2246,'0'),(34594,133,0,2246,'/r/1/r1_26.jpg'),(34595,206,0,2246,'65% Polyester,32% Viscose,3% Elastane'),(34600,73,0,2247,'Pale Belt Pants -red-Extra large size'),(34601,84,0,2247,'Pale Belt Pants '),(34602,86,0,2247,'Pale Belt Pants  The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The '),(34603,87,0,2247,'/r/1/r1_26_1.jpg'),(34604,88,0,2247,'/r/1/r1_26_1.jpg'),(34605,89,0,2247,'/r/1/r1_26_1.jpg'),(34606,106,0,2247,'container2'),(34607,121,0,2247,'n-pale-belt-pants-red-extra-large-size'),(34608,132,0,2247,'0'),(34609,133,0,2247,'/r/1/r1_26_1.jpg'),(34610,206,0,2247,'65% Polyester,32% Viscose,3% Elastane'),(34615,73,0,2248,'Pale Belt Pants -red-Medium size'),(34616,84,0,2248,'Pale Belt Pants '),(34617,86,0,2248,'Pale Belt Pants  The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The '),(34618,87,0,2248,'/r/1/r1_26_2.jpg'),(34619,88,0,2248,'/r/1/r1_26_2.jpg'),(34620,89,0,2248,'/r/1/r1_26_2.jpg'),(34621,106,0,2248,'container2'),(34622,121,0,2248,'n-pale-belt-pants-red-medium-size'),(34623,132,0,2248,'0'),(34624,133,0,2248,'/r/1/r1_26_2.jpg'),(34625,206,0,2248,'65% Polyester,32% Viscose,3% Elastane'),(34630,73,0,2249,'Pale Belt Pants -grey-Small size'),(34631,84,0,2249,'Pale Belt Pants '),(34632,86,0,2249,'Pale Belt Pants  The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The '),(34633,87,0,2249,'/g/1/g1_26.jpg'),(34634,88,0,2249,'/g/1/g1_26.jpg'),(34635,89,0,2249,'/g/1/g1_26.jpg'),(34636,106,0,2249,'container2'),(34637,121,0,2249,'n-pale-belt-pants-grey-small-size'),(34638,132,0,2249,'0'),(34639,133,0,2249,'/g/1/g1_26.jpg'),(34640,206,0,2249,'65% Polyester,32% Viscose,3% Elastane'),(34645,73,0,2250,'Pale Belt Pants -grey-Extra large size'),(34646,84,0,2250,'Pale Belt Pants '),(34647,86,0,2250,'Pale Belt Pants  The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The '),(34648,87,0,2250,'/g/1/g1_26_1.jpg'),(34649,88,0,2250,'/g/1/g1_26_1.jpg'),(34650,89,0,2250,'/g/1/g1_26_1.jpg'),(34651,106,0,2250,'container2'),(34652,121,0,2250,'n-pale-belt-pants-grey-extra-large-size'),(34653,132,0,2250,'0'),(34654,133,0,2250,'/g/1/g1_26_1.jpg'),(34655,206,0,2250,'65% Polyester,32% Viscose,3% Elastane'),(34660,73,0,2251,'Pale Belt Pants -grey-Medium size'),(34661,84,0,2251,'Pale Belt Pants '),(34662,86,0,2251,'Pale Belt Pants  The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The '),(34663,87,0,2251,'/g/1/g1_26_2.jpg'),(34664,88,0,2251,'/g/1/g1_26_2.jpg'),(34665,89,0,2251,'/g/1/g1_26_2.jpg'),(34666,106,0,2251,'container2'),(34667,121,0,2251,'n-pale-belt-pants-grey-medium-size'),(34668,132,0,2251,'0'),(34669,133,0,2251,'/g/1/g1_26_2.jpg'),(34670,206,0,2251,'65% Polyester,32% Viscose,3% Elastane'),(34675,73,0,2252,'Pale Belt Pants '),(34676,84,0,2252,'Pale Belt Pants '),(34677,86,0,2252,'Pale Belt Pants  The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The '),(34678,87,0,2252,'/g/1/g1_27.jpg'),(34679,88,0,2252,'/g/1/g1_27.jpg'),(34680,89,0,2252,'/g/1/g1_27.jpg'),(34681,106,0,2252,'container2'),(34682,121,0,2252,'n-pale-belt-pants'),(34683,132,0,2252,'2'),(34684,133,0,2252,'/g/1/g1_27.jpg'),(34685,206,0,2252,'65% Polyester,32% Viscose,3% Elastane'),(34690,73,0,2253,' Beige Leather Belt-brown-Medium size'),(34691,84,0,2253,' Beige Leather Belt'),(34692,86,0,2253,' Beige Leather Belt Measurements for size EU 85: width approx. 3,4 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: embossed logo\r\nMaterial: leather'),(34693,87,0,2253,'/m/a/main_7_2_1.jpg'),(34694,88,0,2253,'/m/a/main_7_2_1.jpg'),(34695,89,0,2253,'/m/a/main_7_2_1.jpg'),(34696,106,0,2253,'container2'),(34697,121,0,2253,'n-beige-leather-belt-brown-medium-size'),(34698,132,0,2253,'0'),(34699,133,0,2253,'/m/a/main_7_2_1.jpg'),(34700,206,0,2253,'leather'),(34705,73,0,2254,' Beige Leather Belt-grey-Medium size'),(34706,84,0,2254,' Beige Leather Belt'),(34707,86,0,2254,' Beige Leather Belt Measurements for size EU 85: width approx. 3,4 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: embossed logo\r\nMaterial: leather'),(34708,87,0,2254,'/2/2/22w2w2w_1_1.jpg'),(34709,88,0,2254,'/2/2/22w2w2w_1_1.jpg'),(34710,89,0,2254,'/2/2/22w2w2w_1_1.jpg'),(34711,106,0,2254,'container2'),(34712,121,0,2254,'n-beige-leather-belt-grey-medium-size'),(34713,132,0,2254,'0'),(34714,133,0,2254,'/2/2/22w2w2w_1_1.jpg'),(34715,206,0,2254,'leather'),(34720,73,0,2255,'Beige Leather Belt'),(34721,84,0,2255,' Beige Leather Belt'),(34722,86,0,2255,' Beige Leather Belt Measurements for size EU 85: width approx. 3,4 cm (1.5″)\r\nFastening: pin buckle\r\nExtras: embossed logo\r\nMaterial: leather'),(34723,87,0,2255,'/m/a/main_7_3.jpg'),(34724,88,0,2255,'/m/a/main_7_3.jpg'),(34725,89,0,2255,'/m/a/main_7_3.jpg'),(34726,106,0,2255,'container2'),(34727,121,0,2255,'n-beige-leather-belt'),(34728,132,0,2255,'2'),(34729,133,0,2255,'no_selection'),(34730,206,0,2255,'leather'),(34735,73,0,2256,'Pumps-black-EU 38'),(34736,84,0,2256,'Pumps'),(34737,86,0,2256,'Pumps Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(34738,87,0,2256,'/d/1/d1_15.jpg'),(34739,88,0,2256,'/d/1/d1_15.jpg'),(34740,89,0,2256,'/d/1/d1_15.jpg'),(34741,106,0,2256,'container2'),(34742,121,0,2256,'n-pumps-black-eu-38'),(34743,132,0,2256,'0'),(34744,133,0,2256,'/d/1/d1_15.jpg'),(34745,206,0,2256,'Leather'),(34750,73,0,2257,'Pumps-black-EU 41'),(34751,84,0,2257,'Pumps'),(34752,86,0,2257,'Pumps Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(34753,87,0,2257,'/d/1/d1_15_1.jpg'),(34754,88,0,2257,'/d/1/d1_15_1.jpg'),(34755,89,0,2257,'/d/1/d1_15_1.jpg'),(34756,106,0,2257,'container2'),(34757,121,0,2257,'n-pumps-black-eu-41'),(34758,132,0,2257,'0'),(34759,133,0,2257,'/d/1/d1_15_1.jpg'),(34760,206,0,2257,'Leather'),(34765,73,0,2258,'Pumps-black-EU 37'),(34766,84,0,2258,'Pumps'),(34767,86,0,2258,'Pumps Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(34768,87,0,2258,'/d/1/d1_15_2.jpg'),(34769,88,0,2258,'/d/1/d1_15_2.jpg'),(34770,89,0,2258,'/d/1/d1_15_2.jpg'),(34771,106,0,2258,'container2'),(34772,121,0,2258,'n-pumps-black-eu-37'),(34773,132,0,2258,'0'),(34774,133,0,2258,'/d/1/d1_15_2.jpg'),(34775,206,0,2258,'Leather'),(34780,73,0,2259,'Pumps-black-EU 40'),(34781,84,0,2259,'Pumps'),(34782,86,0,2259,'Pumps Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(34783,87,0,2259,'/d/1/d1_15_3.jpg'),(34784,88,0,2259,'/d/1/d1_15_3.jpg'),(34785,89,0,2259,'/d/1/d1_15_3.jpg'),(34786,106,0,2259,'container2'),(34787,121,0,2259,'n-pumps-black-eu-40'),(34788,132,0,2259,'0'),(34789,133,0,2259,'/d/1/d1_15_3.jpg'),(34790,206,0,2259,'Leather'),(34795,73,0,2260,'Pumps-black-EU 39'),(34796,84,0,2260,'Pumps'),(34797,86,0,2260,'Pumps Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(34798,87,0,2260,'/d/1/d1_15_4.jpg'),(34799,88,0,2260,'/d/1/d1_15_4.jpg'),(34800,89,0,2260,'/d/1/d1_15_4.jpg'),(34801,106,0,2260,'container2'),(34802,121,0,2260,'n-pumps-black-eu-39'),(34803,132,0,2260,'0'),(34804,133,0,2260,'/d/1/d1_15_4.jpg'),(34805,206,0,2260,'Leather'),(34810,73,0,2261,'Pumps-black-EU 36'),(34811,84,0,2261,'Pumps'),(34812,86,0,2261,'Pumps Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(34813,87,0,2261,'/d/1/d1_15_5.jpg'),(34814,88,0,2261,'/d/1/d1_15_5.jpg'),(34815,89,0,2261,'/d/1/d1_15_5.jpg'),(34816,106,0,2261,'container2'),(34817,121,0,2261,'n-pumps-black-eu-36'),(34818,132,0,2261,'0'),(34819,133,0,2261,'/d/1/d1_15_5.jpg'),(34820,206,0,2261,'Leather'),(34825,73,0,2262,'Pumps-red-EU 38'),(34826,84,0,2262,'Pumps'),(34827,86,0,2262,'Pumps Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(34828,87,0,2262,'/r/1/r1_27.jpg'),(34829,88,0,2262,'/r/1/r1_27.jpg'),(34830,89,0,2262,'/r/1/r1_27.jpg'),(34831,106,0,2262,'container2'),(34832,121,0,2262,'n-pumps-red-eu-38'),(34833,132,0,2262,'0'),(34834,133,0,2262,'/r/1/r1_27.jpg'),(34835,206,0,2262,'Leather'),(34840,73,0,2263,'Pumps-red-EU 41'),(34841,84,0,2263,'Pumps'),(34842,86,0,2263,'Pumps Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(34843,87,0,2263,'/r/1/r1_27_1.jpg'),(34844,88,0,2263,'/r/1/r1_27_1.jpg'),(34845,89,0,2263,'/r/1/r1_27_1.jpg'),(34846,106,0,2263,'container2'),(34847,121,0,2263,'n-pumps-red-eu-41'),(34848,132,0,2263,'0'),(34849,133,0,2263,'/r/1/r1_27_1.jpg'),(34850,206,0,2263,'Leather'),(34855,73,0,2264,'Pumps-red-EU 37'),(34856,84,0,2264,'Pumps'),(34857,86,0,2264,'Pumps Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(34858,87,0,2264,'/r/1/r1_27_2.jpg'),(34859,88,0,2264,'/r/1/r1_27_2.jpg'),(34860,89,0,2264,'/r/1/r1_27_2.jpg'),(34861,106,0,2264,'container2'),(34862,121,0,2264,'n-pumps-red-eu-37'),(34863,132,0,2264,'0'),(34864,133,0,2264,'/r/1/r1_27_2.jpg'),(34865,206,0,2264,'Leather'),(34870,73,0,2265,'Pumps-red-EU 40'),(34871,84,0,2265,'Pumps'),(34872,86,0,2265,'Pumps Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(34873,87,0,2265,'/r/1/r1_27_3.jpg'),(34874,88,0,2265,'/r/1/r1_27_3.jpg'),(34875,89,0,2265,'/r/1/r1_27_3.jpg'),(34876,106,0,2265,'container2'),(34877,121,0,2265,'n-pumps-red-eu-40'),(34878,132,0,2265,'0'),(34879,133,0,2265,'/r/1/r1_27_3.jpg'),(34880,206,0,2265,'Leather'),(34885,73,0,2266,'Pumps-red-EU 39'),(34886,84,0,2266,'Pumps'),(34887,86,0,2266,'Pumps Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(34888,87,0,2266,'/r/1/r1_27_4.jpg'),(34889,88,0,2266,'/r/1/r1_27_4.jpg'),(34890,89,0,2266,'/r/1/r1_27_4.jpg'),(34891,106,0,2266,'container2'),(34892,121,0,2266,'n-pumps-red-eu-39'),(34893,132,0,2266,'0'),(34894,133,0,2266,'/r/1/r1_27_4.jpg'),(34895,206,0,2266,'Leather'),(34900,73,0,2267,'Pumps-red-EU 36'),(34901,84,0,2267,'Pumps'),(34902,86,0,2267,'Pumps Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(34903,87,0,2267,'/r/1/r1_27_5.jpg'),(34904,88,0,2267,'/r/1/r1_27_5.jpg'),(34905,89,0,2267,'/r/1/r1_27_5.jpg'),(34906,106,0,2267,'container2'),(34907,121,0,2267,'n-pumps-red-eu-36'),(34908,132,0,2267,'0'),(34909,133,0,2267,'/r/1/r1_27_5.jpg'),(34910,206,0,2267,'Leather'),(34915,73,0,2268,'Pumps'),(34916,84,0,2268,'Pumps'),(34917,86,0,2268,'Pumps Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and '),(34918,87,0,2268,'/r/1/r1_28.jpg'),(34919,88,0,2268,'/r/1/r1_28.jpg'),(34920,89,0,2268,'/r/1/r1_28.jpg'),(34921,106,0,2268,'container2'),(34922,121,0,2268,'n-pumps'),(34923,132,0,2268,'2'),(34924,133,0,2268,'/r/1/r1_28.jpg'),(34925,206,0,2268,'Leather'),(35065,73,0,2278,'Rino & Pelle Quilted Jacket-brown-Extra small size'),(35066,84,0,2278,'Rino & Pelle Quilted Jacket'),(35067,86,0,2278,'Rino & Pelle Quilted Jacket Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% pol'),(35068,87,0,2278,'/b/1/b1_53.jpg'),(35069,88,0,2278,'/b/1/b1_53.jpg'),(35070,89,0,2278,'/b/1/b1_53.jpg'),(35071,106,0,2278,'container2'),(35072,121,0,2278,'n-rino-pelle-quilted-jacket-brown-extra-small-size'),(35073,132,0,2278,'0'),(35074,133,0,2278,'/b/1/b1_53.jpg'),(35075,206,0,2278,'100% polyamide'),(35080,73,0,2279,'Rino & Pelle Quilted Jacket-brown-Small size'),(35081,84,0,2279,'Rino & Pelle Quilted Jacket'),(35082,86,0,2279,'Rino & Pelle Quilted Jacket Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% pol'),(35083,87,0,2279,'/b/1/b1_53_1.jpg'),(35084,88,0,2279,'/b/1/b1_53_1.jpg'),(35085,89,0,2279,'/b/1/b1_53_1.jpg'),(35086,106,0,2279,'container2'),(35087,121,0,2279,'n-rino-pelle-quilted-jacket-brown-small-size'),(35088,132,0,2279,'0'),(35089,133,0,2279,'/b/1/b1_53_1.jpg'),(35090,206,0,2279,'100% polyamide'),(35095,73,0,2280,'Rino & Pelle Quilted Jacket-brown-Medium size'),(35096,84,0,2280,'Rino & Pelle Quilted Jacket'),(35097,86,0,2280,'Rino & Pelle Quilted Jacket Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% pol'),(35098,87,0,2280,'/b/1/b1_53_2.jpg'),(35099,88,0,2280,'/b/1/b1_53_2.jpg'),(35100,89,0,2280,'/b/1/b1_53_2.jpg'),(35101,106,0,2280,'container2'),(35102,121,0,2280,'n-rino-pelle-quilted-jacket-brown-medium-size'),(35103,132,0,2280,'0'),(35104,133,0,2280,'/b/1/b1_53_2.jpg'),(35105,206,0,2280,'100% polyamide'),(35110,73,0,2281,'Rino & Pelle Quilted Jacket-blue-Extra small size'),(35111,84,0,2281,'Rino & Pelle Quilted Jacket'),(35112,86,0,2281,'Rino & Pelle Quilted Jacket Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% pol'),(35113,87,0,2281,'/1/_/1_21.jpg'),(35114,88,0,2281,'/1/_/1_21.jpg'),(35115,89,0,2281,'/1/_/1_21.jpg'),(35116,106,0,2281,'container2'),(35117,121,0,2281,'n-rino-pelle-quilted-jacket-blue-extra-small-size'),(35118,132,0,2281,'0'),(35119,133,0,2281,'/1/_/1_21.jpg'),(35120,206,0,2281,'100% polyamide'),(35125,73,0,2282,'Rino & Pelle Quilted Jacket-blue-Small size'),(35126,84,0,2282,'Rino & Pelle Quilted Jacket'),(35127,86,0,2282,'Rino & Pelle Quilted Jacket Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% pol'),(35128,87,0,2282,'/1/_/1_21_1.jpg'),(35129,88,0,2282,'/1/_/1_21_1.jpg'),(35130,89,0,2282,'/1/_/1_21_1.jpg'),(35131,106,0,2282,'container2'),(35132,121,0,2282,'n-rino-pelle-quilted-jacket-blue-small-size'),(35133,132,0,2282,'0'),(35134,133,0,2282,'/1/_/1_21_1.jpg'),(35135,206,0,2282,'100% polyamide'),(35140,73,0,2283,'Rino & Pelle Quilted Jacket-blue-Medium size'),(35141,84,0,2283,'Rino & Pelle Quilted Jacket'),(35142,86,0,2283,'Rino & Pelle Quilted Jacket Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% pol'),(35143,87,0,2283,'/1/_/1_21_2.jpg'),(35144,88,0,2283,'/1/_/1_21_2.jpg'),(35145,89,0,2283,'/1/_/1_21_2.jpg'),(35146,106,0,2283,'container2'),(35147,121,0,2283,'n-rino-pelle-quilted-jacket-blue-medium-size'),(35148,132,0,2283,'0'),(35149,133,0,2283,'/1/_/1_21_2.jpg'),(35150,206,0,2283,'100% polyamide'),(35155,73,0,2284,'Rino & Pelle Quilted Jacket'),(35156,84,0,2284,'Rino & Pelle Quilted Jacket'),(35157,86,0,2284,'Rino & Pelle Quilted Jacket Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% pol'),(35158,87,0,2284,'/b/1/b1_54.jpg'),(35159,88,0,2284,'/b/1/b1_54.jpg'),(35160,89,0,2284,'/b/1/b1_54.jpg'),(35161,106,0,2284,'container2'),(35162,121,0,2284,'n-rino-pelle-quilted-jacket'),(35163,132,0,2284,'2'),(35164,133,0,2284,'/b/1/b1_54.jpg'),(35165,206,0,2284,'100% polyamide'),(35170,73,0,2285,'Sequin Dress-brown-Medium size'),(35171,84,0,2285,'Sequin Dress'),(35172,86,0,2285,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light,'),(35173,87,0,2285,'/b/1/b1_55.jpg'),(35174,88,0,2285,'/b/1/b1_55.jpg'),(35175,89,0,2285,'/b/1/b1_55.jpg'),(35176,106,0,2285,'container2'),(35177,121,0,2285,'n-sequin-dress-brown-medium-size'),(35178,132,0,2285,'0'),(35179,133,0,2285,'/b/1/b1_55.jpg'),(35180,206,0,2285,' 100% polyeste'),(35185,73,0,2286,'Sequin Dress-brown-Small size'),(35186,84,0,2286,'Sequin Dress'),(35187,86,0,2286,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light,'),(35188,87,0,2286,'/b/1/b1_55_1.jpg'),(35189,88,0,2286,'/b/1/b1_55_1.jpg'),(35190,89,0,2286,'/b/1/b1_55_1.jpg'),(35191,106,0,2286,'container2'),(35192,121,0,2286,'n-sequin-dress-brown-small-size'),(35193,132,0,2286,'0'),(35194,133,0,2286,'/b/1/b1_55_1.jpg'),(35195,206,0,2286,' 100% polyeste'),(35200,73,0,2287,'Sequin Dress-brown-Extra small size'),(35201,84,0,2287,'Sequin Dress'),(35202,86,0,2287,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light,'),(35203,87,0,2287,'/b/1/b1_55_2.jpg'),(35204,88,0,2287,'/b/1/b1_55_2.jpg'),(35205,89,0,2287,'/b/1/b1_55_2.jpg'),(35206,106,0,2287,'container2'),(35207,121,0,2287,'n-sequin-dress-brown-extra-small-size'),(35208,132,0,2287,'0'),(35209,133,0,2287,'/b/1/b1_55_2.jpg'),(35210,206,0,2287,' 100% polyeste'),(35215,73,0,2288,'Sequin Dress-black-Medium size'),(35216,84,0,2288,'Sequin Dress'),(35217,86,0,2288,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light,'),(35218,87,0,2288,'/d/1/d1_16.jpg'),(35219,88,0,2288,'/d/1/d1_16.jpg'),(35220,89,0,2288,'/d/1/d1_16.jpg'),(35221,106,0,2288,'container2'),(35222,121,0,2288,'n-sequin-dress-black-medium-size'),(35223,132,0,2288,'0'),(35224,133,0,2288,'/d/1/d1_16.jpg'),(35225,206,0,2288,' 100% polyeste'),(35230,73,0,2289,'Sequin Dress-black-Small size'),(35231,84,0,2289,'Sequin Dress'),(35232,86,0,2289,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light,'),(35233,87,0,2289,'/d/1/d1_16_1.jpg'),(35234,88,0,2289,'/d/1/d1_16_1.jpg'),(35235,89,0,2289,'/d/1/d1_16_1.jpg'),(35236,106,0,2289,'container2'),(35237,121,0,2289,'n-sequin-dress-black-small-size'),(35238,132,0,2289,'0'),(35239,133,0,2289,'/d/1/d1_16_1.jpg'),(35240,206,0,2289,' 100% polyeste'),(35245,73,0,2290,'Sequin Dress-black-Extra small size'),(35246,84,0,2290,'Sequin Dress'),(35247,86,0,2290,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light,'),(35248,87,0,2290,'/d/1/d1_16_2.jpg'),(35249,88,0,2290,'/d/1/d1_16_2.jpg'),(35250,89,0,2290,'/d/1/d1_16_2.jpg'),(35251,106,0,2290,'container2'),(35252,121,0,2290,'n-sequin-dress-black-extra-small-size'),(35253,132,0,2290,'0'),(35254,133,0,2290,'/d/1/d1_16_2.jpg'),(35255,206,0,2290,' 100% polyeste'),(35260,73,0,2291,'Sequin Dress'),(35261,84,0,2291,'Sequin Dress'),(35262,86,0,2291,'Sequin Dress \r\nCut: fitted with a slightly tapered skirt\r\nMeasurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″)\r\nNeckline: crew neck\r\nFastening: rear zip\r\nSleeve: 3/4-length sleeves\r\nLining: partially lined\r\nExtras: light,'),(35263,87,0,2291,'/d/1/d1_17.jpg'),(35264,88,0,2291,'/d/1/d1_17.jpg'),(35265,89,0,2291,'/d/1/d1_17.jpg'),(35266,106,0,2291,'container2'),(35267,121,0,2291,'n-sequin-dress'),(35268,132,0,2291,'2'),(35269,133,0,2291,'/d/1/d1_17.jpg'),(35270,206,0,2291,' 100% polyeste'),(35275,73,0,2292,'Seventy Transitional Jacket-Extra small size-white'),(35276,84,0,2292,'Seventy Transitional Jacket'),(35277,86,0,2292,'Seventy Transitional Jacket '),(35278,87,0,2292,'/w/1/w1_31.jpg'),(35279,88,0,2292,'/w/1/w1_31.jpg'),(35280,89,0,2292,'/w/1/w1_31.jpg'),(35281,106,0,2292,'container2'),(35282,121,0,2292,'n-seventy-transitional-jacket-extra-small-size-white'),(35283,132,0,2292,'0'),(35284,133,0,2292,'/w/1/w1_31.jpg'),(35285,206,0,2292,'Viscose'),(35290,73,0,2293,'Seventy Transitional Jacket-Extra small size-blue'),(35291,84,0,2293,'Seventy Transitional Jacket'),(35292,86,0,2293,'Seventy Transitional Jacket '),(35293,87,0,2293,'/b/1/b1_56.jpg'),(35294,88,0,2293,'/b/1/b1_56.jpg'),(35295,89,0,2293,'/b/1/b1_56.jpg'),(35296,106,0,2293,'container2'),(35297,121,0,2293,'n-seventy-transitional-jacket-extra-small-size-blue'),(35298,132,0,2293,'0'),(35299,133,0,2293,'/b/1/b1_56.jpg'),(35300,206,0,2293,'Viscose'),(35305,73,0,2294,'Seventy Transitional Jacket-Large size-white'),(35306,84,0,2294,'Seventy Transitional Jacket'),(35307,86,0,2294,'Seventy Transitional Jacket '),(35308,87,0,2294,'/w/1/w1_31_1.jpg'),(35309,88,0,2294,'/w/1/w1_31_1.jpg'),(35310,89,0,2294,'/w/1/w1_31_1.jpg'),(35311,106,0,2294,'container2'),(35312,121,0,2294,'n-seventy-transitional-jacket-large-size-white'),(35313,132,0,2294,'0'),(35314,133,0,2294,'/w/1/w1_31_1.jpg'),(35315,206,0,2294,'Viscose'),(35320,73,0,2295,'Seventy Transitional Jacket-Large size-blue'),(35321,84,0,2295,'Seventy Transitional Jacket'),(35322,86,0,2295,'Seventy Transitional Jacket '),(35323,87,0,2295,'/b/1/b1_56_1.jpg'),(35324,88,0,2295,'/b/1/b1_56_1.jpg'),(35325,89,0,2295,'/b/1/b1_56_1.jpg'),(35326,106,0,2295,'container2'),(35327,121,0,2295,'n-seventy-transitional-jacket-large-size-blue'),(35328,132,0,2295,'0'),(35329,133,0,2295,'/b/1/b1_56_1.jpg'),(35330,206,0,2295,'Viscose'),(35335,73,0,2296,'Seventy Transitional Jacket-Small size-white'),(35336,84,0,2296,'Seventy Transitional Jacket'),(35337,86,0,2296,'Seventy Transitional Jacket '),(35338,87,0,2296,'/w/1/w1_31_2.jpg'),(35339,88,0,2296,'/w/1/w1_31_2.jpg'),(35340,89,0,2296,'/w/1/w1_31_2.jpg'),(35341,106,0,2296,'container2'),(35342,121,0,2296,'n-seventy-transitional-jacket-small-size-white'),(35343,132,0,2296,'0'),(35344,133,0,2296,'/w/1/w1_31_2.jpg'),(35345,206,0,2296,'Viscose'),(35350,73,0,2297,'Seventy Transitional Jacket-Small size-blue'),(35351,84,0,2297,'Seventy Transitional Jacket'),(35352,86,0,2297,'Seventy Transitional Jacket '),(35353,87,0,2297,'/b/1/b1_56_2.jpg'),(35354,88,0,2297,'/b/1/b1_56_2.jpg'),(35355,89,0,2297,'/b/1/b1_56_2.jpg'),(35356,106,0,2297,'container2'),(35357,121,0,2297,'n-seventy-transitional-jacket-small-size-blue'),(35358,132,0,2297,'0'),(35359,133,0,2297,'/b/1/b1_56_2.jpg'),(35360,206,0,2297,'Viscose'),(35365,73,0,2298,'Seventy Transitional Jacket-Medium size-white'),(35366,84,0,2298,'Seventy Transitional Jacket'),(35367,86,0,2298,'Seventy Transitional Jacket '),(35368,87,0,2298,'/w/1/w1_31_3.jpg'),(35369,88,0,2298,'/w/1/w1_31_3.jpg'),(35370,89,0,2298,'/w/1/w1_31_3.jpg'),(35371,106,0,2298,'container2'),(35372,121,0,2298,'n-seventy-transitional-jacket-medium-size-white'),(35373,132,0,2298,'0'),(35374,133,0,2298,'/w/1/w1_31_3.jpg'),(35375,206,0,2298,'Viscose'),(35380,73,0,2299,'Seventy Transitional Jacket-Medium size-blue'),(35381,84,0,2299,'Seventy Transitional Jacket'),(35382,86,0,2299,'Seventy Transitional Jacket '),(35383,87,0,2299,'/b/1/b1_56_3.jpg'),(35384,88,0,2299,'/b/1/b1_56_3.jpg'),(35385,89,0,2299,'/b/1/b1_56_3.jpg'),(35386,106,0,2299,'container2'),(35387,121,0,2299,'n-seventy-transitional-jacket-medium-size-blue'),(35388,132,0,2299,'0'),(35389,133,0,2299,'/b/1/b1_56_3.jpg'),(35390,206,0,2299,'Viscose'),(35395,73,0,2300,'Seventy Transitional Jacket'),(35396,84,0,2300,'Seventy Transitional Jacket'),(35397,86,0,2300,'Seventy Transitional Jacket '),(35398,87,0,2300,'/w/1/w1_32.jpg'),(35399,88,0,2300,'/w/1/w1_32.jpg'),(35400,89,0,2300,'/w/1/w1_32.jpg'),(35401,106,0,2300,'container2'),(35402,121,0,2300,'n-seventy-transitional-jacket'),(35403,132,0,2300,'2'),(35404,133,0,2300,'/w/1/w1_32.jpg'),(35405,206,0,2300,'Viscose'),(35410,73,0,2301,'Slim Fit Jeans-black-Extra small size'),(35411,84,0,2301,'Slim Fit Jeans'),(35412,86,0,2301,'Slim Fit Jeans '),(35413,87,0,2301,'/d/1/d1_18.jpg'),(35414,88,0,2301,'/d/1/d1_18.jpg'),(35415,89,0,2301,'/d/1/d1_18.jpg'),(35416,106,0,2301,'container2'),(35417,121,0,2301,'n-slim-fit-jeans-black-extra-small-size'),(35418,132,0,2301,'0'),(35419,133,0,2301,'/d/1/d1_18.jpg'),(35424,73,0,2302,'Slim Fit Jeans-black-Large size'),(35425,84,0,2302,'Slim Fit Jeans'),(35426,86,0,2302,'Slim Fit Jeans '),(35427,87,0,2302,'/d/1/d1_18_1.jpg'),(35428,88,0,2302,'/d/1/d1_18_1.jpg'),(35429,89,0,2302,'/d/1/d1_18_1.jpg'),(35430,106,0,2302,'container2'),(35431,121,0,2302,'n-slim-fit-jeans-black-large-size'),(35432,132,0,2302,'0'),(35433,133,0,2302,'/d/1/d1_18_1.jpg'),(35438,73,0,2303,'Slim Fit Jeans-black-Small size'),(35439,84,0,2303,'Slim Fit Jeans'),(35440,86,0,2303,'Slim Fit Jeans '),(35441,87,0,2303,'/d/1/d1_18_2.jpg'),(35442,88,0,2303,'/d/1/d1_18_2.jpg'),(35443,89,0,2303,'/d/1/d1_18_2.jpg'),(35444,106,0,2303,'container2'),(35445,121,0,2303,'n-slim-fit-jeans-black-small-size'),(35446,132,0,2303,'0'),(35447,133,0,2303,'/d/1/d1_18_2.jpg'),(35452,73,0,2304,'Slim Fit Jeans-black-Extra large size'),(35453,84,0,2304,'Slim Fit Jeans'),(35454,86,0,2304,'Slim Fit Jeans '),(35455,87,0,2304,'/d/1/d1_18_3.jpg'),(35456,88,0,2304,'/d/1/d1_18_3.jpg'),(35457,89,0,2304,'/d/1/d1_18_3.jpg'),(35458,106,0,2304,'container2'),(35459,121,0,2304,'n-slim-fit-jeans-black-extra-large-size'),(35460,132,0,2304,'0'),(35461,133,0,2304,'/d/1/d1_18_3.jpg'),(35466,73,0,2305,'Slim Fit Jeans-grey-Extra small size'),(35467,84,0,2305,'Slim Fit Jeans'),(35468,86,0,2305,'Slim Fit Jeans '),(35469,87,0,2305,'/g/1/g1_28.jpg'),(35470,88,0,2305,'/g/1/g1_28.jpg'),(35471,89,0,2305,'/g/1/g1_28.jpg'),(35472,106,0,2305,'container2'),(35473,121,0,2305,'n-slim-fit-jeans-grey-extra-small-size'),(35474,132,0,2305,'0'),(35475,133,0,2305,'/g/1/g1_28.jpg'),(35480,73,0,2306,'Slim Fit Jeans-grey-Large size'),(35481,84,0,2306,'Slim Fit Jeans'),(35482,86,0,2306,'Slim Fit Jeans '),(35483,87,0,2306,'/g/1/g1_28_1.jpg'),(35484,88,0,2306,'/g/1/g1_28_1.jpg'),(35485,89,0,2306,'/g/1/g1_28_1.jpg'),(35486,106,0,2306,'container2'),(35487,121,0,2306,'n-slim-fit-jeans-grey-large-size'),(35488,132,0,2306,'0'),(35489,133,0,2306,'/g/1/g1_28_1.jpg'),(35494,73,0,2307,'Slim Fit Jeans-grey-Small size'),(35495,84,0,2307,'Slim Fit Jeans'),(35496,86,0,2307,'Slim Fit Jeans '),(35497,87,0,2307,'/g/1/g1_28_2.jpg'),(35498,88,0,2307,'/g/1/g1_28_2.jpg'),(35499,89,0,2307,'/g/1/g1_28_2.jpg'),(35500,106,0,2307,'container2'),(35501,121,0,2307,'n-slim-fit-jeans-grey-small-size'),(35502,132,0,2307,'0'),(35503,133,0,2307,'/g/1/g1_28_2.jpg'),(35508,73,0,2308,'Slim Fit Jeans-grey-Extra large size'),(35509,84,0,2308,'Slim Fit Jeans'),(35510,86,0,2308,'Slim Fit Jeans '),(35511,87,0,2308,'/g/1/g1_28_3.jpg'),(35512,88,0,2308,'/g/1/g1_28_3.jpg'),(35513,89,0,2308,'/g/1/g1_28_3.jpg'),(35514,106,0,2308,'container2'),(35515,121,0,2308,'n-slim-fit-jeans-grey-extra-large-size'),(35516,132,0,2308,'0'),(35517,133,0,2308,'/g/1/g1_28_3.jpg'),(35522,73,0,2309,'Slim Fit Jeans'),(35523,84,0,2309,'Slim Fit Jeans'),(35524,86,0,2309,'Slim Fit Jeans '),(35525,87,0,2309,'/d/1/d1_19.jpg'),(35526,88,0,2309,'/d/1/d1_19.jpg'),(35527,89,0,2309,'/d/1/d1_19.jpg'),(35528,106,0,2309,'container2'),(35529,121,0,2309,'n-slim-fit-jeans'),(35530,132,0,2309,'2'),(35531,133,0,2309,'/d/1/d1_19.jpg'),(35536,73,0,2310,'Slim Fit Jeans – Eline-grey-Extra small size'),(35537,84,0,2310,'Slim Fit Jeans – Eline'),(35538,86,0,2310,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have'),(35539,87,0,2310,'/g/1/g1_29.jpg'),(35540,88,0,2310,'/g/1/g1_29.jpg'),(35541,89,0,2310,'/g/1/g1_29.jpg'),(35542,106,0,2310,'container2'),(35543,121,0,2310,'n-slim-fit-jeans-eline-grey-extra-small-size'),(35544,132,0,2310,'0'),(35545,133,0,2310,'/g/1/g1_29.jpg'),(35550,73,0,2311,'Slim Fit Jeans – Eline-grey-Small size'),(35551,84,0,2311,'Slim Fit Jeans – Eline'),(35552,86,0,2311,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have'),(35553,87,0,2311,'/g/1/g1_29_1.jpg'),(35554,88,0,2311,'/g/1/g1_29_1.jpg'),(35555,89,0,2311,'/g/1/g1_29_1.jpg'),(35556,106,0,2311,'container2'),(35557,121,0,2311,'n-slim-fit-jeans-eline-grey-small-size'),(35558,132,0,2311,'0'),(35559,133,0,2311,'/g/1/g1_29_1.jpg'),(35564,73,0,2312,'Slim Fit Jeans – Eline-grey-Medium size'),(35565,84,0,2312,'Slim Fit Jeans – Eline'),(35566,86,0,2312,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have'),(35567,87,0,2312,'/g/1/g1_29_2.jpg'),(35568,88,0,2312,'/g/1/g1_29_2.jpg'),(35569,89,0,2312,'/g/1/g1_29_2.jpg'),(35570,106,0,2312,'container2'),(35571,121,0,2312,'n-slim-fit-jeans-eline-grey-medium-size'),(35572,132,0,2312,'0'),(35573,133,0,2312,'/g/1/g1_29_2.jpg'),(35578,73,0,2313,'Slim Fit Jeans – Eline-grey-Large size'),(35579,84,0,2313,'Slim Fit Jeans – Eline'),(35580,86,0,2313,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have'),(35581,87,0,2313,'/g/1/g1_29_3.jpg'),(35582,88,0,2313,'/g/1/g1_29_3.jpg'),(35583,89,0,2313,'/g/1/g1_29_3.jpg'),(35584,106,0,2313,'container2'),(35585,121,0,2313,'n-slim-fit-jeans-eline-grey-large-size'),(35586,132,0,2313,'0'),(35587,133,0,2313,'/g/1/g1_29_3.jpg'),(35592,73,0,2314,'Slim Fit Jeans – Eline-grey-Extra large size'),(35593,84,0,2314,'Slim Fit Jeans – Eline'),(35594,86,0,2314,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have'),(35595,87,0,2314,'/g/1/g1_29_4.jpg'),(35596,88,0,2314,'/g/1/g1_29_4.jpg'),(35597,89,0,2314,'/g/1/g1_29_4.jpg'),(35598,106,0,2314,'container2'),(35599,121,0,2314,'n-slim-fit-jeans-eline-grey-extra-large-size'),(35600,132,0,2314,'0'),(35601,133,0,2314,'/g/1/g1_29_4.jpg'),(35606,73,0,2315,'Slim Fit Jeans – Eline-blue-Extra small size'),(35607,84,0,2315,'Slim Fit Jeans – Eline'),(35608,86,0,2315,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have'),(35609,87,0,2315,'/b/1/b1_57.jpg'),(35610,88,0,2315,'/b/1/b1_57.jpg'),(35611,89,0,2315,'/b/1/b1_57.jpg'),(35612,106,0,2315,'container2'),(35613,121,0,2315,'n-slim-fit-jeans-eline-blue-extra-small-size'),(35614,132,0,2315,'0'),(35615,133,0,2315,'/b/1/b1_57.jpg'),(35620,73,0,2316,'Slim Fit Jeans – Eline-blue-Small size'),(35621,84,0,2316,'Slim Fit Jeans – Eline'),(35622,86,0,2316,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have'),(35623,87,0,2316,'/b/1/b1_57_1.jpg'),(35624,88,0,2316,'/b/1/b1_57_1.jpg'),(35625,89,0,2316,'/b/1/b1_57_1.jpg'),(35626,106,0,2316,'container2'),(35627,121,0,2316,'n-slim-fit-jeans-eline-blue-small-size'),(35628,132,0,2316,'0'),(35629,133,0,2316,'/b/1/b1_57_1.jpg'),(35634,73,0,2317,'Slim Fit Jeans – Eline-blue-Medium size'),(35635,84,0,2317,'Slim Fit Jeans – Eline'),(35636,86,0,2317,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have'),(35637,87,0,2317,'/b/1/b1_57_2.jpg'),(35638,88,0,2317,'/b/1/b1_57_2.jpg'),(35639,89,0,2317,'/b/1/b1_57_2.jpg'),(35640,106,0,2317,'container2'),(35641,121,0,2317,'n-slim-fit-jeans-eline-blue-medium-size'),(35642,132,0,2317,'0'),(35643,133,0,2317,'/b/1/b1_57_2.jpg'),(35648,73,0,2318,'Slim Fit Jeans – Eline-blue-Large size'),(35649,84,0,2318,'Slim Fit Jeans – Eline'),(35650,86,0,2318,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have'),(35651,87,0,2318,'/b/1/b1_57_3.jpg'),(35652,88,0,2318,'/b/1/b1_57_3.jpg'),(35653,89,0,2318,'/b/1/b1_57_3.jpg'),(35654,106,0,2318,'container2'),(35655,121,0,2318,'n-slim-fit-jeans-eline-blue-large-size'),(35656,132,0,2318,'0'),(35657,133,0,2318,'/b/1/b1_57_3.jpg'),(35662,73,0,2319,'Slim Fit Jeans – Eline-blue-Extra large size'),(35663,84,0,2319,'Slim Fit Jeans – Eline'),(35664,86,0,2319,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have'),(35665,87,0,2319,'/b/1/b1_57_4.jpg'),(35666,88,0,2319,'/b/1/b1_57_4.jpg'),(35667,89,0,2319,'/b/1/b1_57_4.jpg'),(35668,106,0,2319,'container2'),(35669,121,0,2319,'n-slim-fit-jeans-eline-blue-extra-large-size'),(35670,132,0,2319,'0'),(35671,133,0,2319,'/b/1/b1_57_4.jpg'),(35676,73,0,2320,'Slim Fit Jeans – Eline'),(35677,84,0,2320,'Slim Fit Jeans – Eline'),(35678,86,0,2320,'Slim Fit Jeans – Eline A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have'),(35679,87,0,2320,'/b/1/b1_58.jpg'),(35680,88,0,2320,'/b/1/b1_58.jpg'),(35681,89,0,2320,'/b/1/b1_58.jpg'),(35682,106,0,2320,'container2'),(35683,121,0,2320,'n-slim-fit-jeans-eline'),(35684,132,0,2320,'2'),(35685,133,0,2320,'/b/1/b1_58.jpg'),(35821,73,0,2330,'Jack & Jones Transitional Jacket-white-Small size'),(35822,84,0,2330,'Jack & Jones Transitional Jacket'),(35823,86,0,2330,'Jack & Jones Transitional Jacket JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets,'),(35824,87,0,2330,'/w/1/w1_33.jpg'),(35825,88,0,2330,'/w/1/w1_33.jpg'),(35826,89,0,2330,'/w/1/w1_33.jpg'),(35827,106,0,2330,'container2'),(35828,121,0,2330,'n-jack-jones-transitional-jacket-white-small-size'),(35829,132,0,2330,'0'),(35830,133,0,2330,'/w/1/w1_33.jpg'),(35831,206,0,2330,'100% polyamide'),(35836,73,0,2331,'Jack & Jones Transitional Jacket-white-Extra large size'),(35837,84,0,2331,'Jack & Jones Transitional Jacket'),(35838,86,0,2331,'Jack & Jones Transitional Jacket JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets,'),(35839,87,0,2331,'/w/1/w1_33_1.jpg'),(35840,88,0,2331,'/w/1/w1_33_1.jpg'),(35841,89,0,2331,'/w/1/w1_33_1.jpg'),(35842,106,0,2331,'container2'),(35843,121,0,2331,'n-jack-jones-transitional-jacket-white-extra-large-size'),(35844,132,0,2331,'0'),(35845,133,0,2331,'/w/1/w1_33_1.jpg'),(35846,206,0,2331,'100% polyamide'),(35851,73,0,2332,'Jack & Jones Transitional Jacket-white-Large size'),(35852,84,0,2332,'Jack & Jones Transitional Jacket'),(35853,86,0,2332,'Jack & Jones Transitional Jacket JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets,'),(35854,87,0,2332,'/w/1/w1_33_2.jpg'),(35855,88,0,2332,'/w/1/w1_33_2.jpg'),(35856,89,0,2332,'/w/1/w1_33_2.jpg'),(35857,106,0,2332,'container2'),(35858,121,0,2332,'n-jack-jones-transitional-jacket-white-large-size'),(35859,132,0,2332,'0'),(35860,133,0,2332,'/w/1/w1_33_2.jpg'),(35861,206,0,2332,'100% polyamide'),(35866,73,0,2333,'Jack & Jones Transitional Jacket-blue-Small size'),(35867,84,0,2333,'Jack & Jones Transitional Jacket'),(35868,86,0,2333,'Jack & Jones Transitional Jacket JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets,'),(35869,87,0,2333,'/b/1/b1_61.jpg'),(35870,88,0,2333,'/b/1/b1_61.jpg'),(35871,89,0,2333,'/b/1/b1_61.jpg'),(35872,106,0,2333,'container2'),(35873,121,0,2333,'n-jack-jones-transitional-jacket-blue-small-size'),(35874,132,0,2333,'0'),(35875,133,0,2333,'/b/1/b1_61.jpg'),(35876,206,0,2333,'100% polyamide'),(35881,73,0,2334,'Jack & Jones Transitional Jacket-blue-Extra large size'),(35882,84,0,2334,'Jack & Jones Transitional Jacket'),(35883,86,0,2334,'Jack & Jones Transitional Jacket JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets,'),(35884,87,0,2334,'/b/1/b1_61_1.jpg'),(35885,88,0,2334,'/b/1/b1_61_1.jpg'),(35886,89,0,2334,'/b/1/b1_61_1.jpg'),(35887,106,0,2334,'container2'),(35888,121,0,2334,'n-jack-jones-transitional-jacket-blue-extra-large-size'),(35889,132,0,2334,'0'),(35890,133,0,2334,'/b/1/b1_61_1.jpg'),(35891,206,0,2334,'100% polyamide'),(35896,73,0,2335,'Jack & Jones Transitional Jacket-blue-Large size'),(35897,84,0,2335,'Jack & Jones Transitional Jacket'),(35898,86,0,2335,'Jack & Jones Transitional Jacket JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets,'),(35899,87,0,2335,'/b/1/b1_61_2.jpg'),(35900,88,0,2335,'/b/1/b1_61_2.jpg'),(35901,89,0,2335,'/b/1/b1_61_2.jpg'),(35902,106,0,2335,'container2'),(35903,121,0,2335,'n-jack-jones-transitional-jacket-blue-large-size'),(35904,132,0,2335,'0'),(35905,133,0,2335,'/b/1/b1_61_2.jpg'),(35906,206,0,2335,'100% polyamide'),(35911,73,0,2336,'Jack & Jones Transitional Jacket'),(35912,84,0,2336,'Jack & Jones Transitional Jacket'),(35913,86,0,2336,'Jack & Jones Transitional Jacket JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets,'),(35914,87,0,2336,'/w/1/w1_34.jpg'),(35915,88,0,2336,'/w/1/w1_34.jpg'),(35916,89,0,2336,'/w/1/w1_34.jpg'),(35917,106,0,2336,'container2'),(35918,121,0,2336,'n-jack-jones-transitional-jacket'),(35919,132,0,2336,'2'),(35920,133,0,2336,'/w/1/w1_34.jpg'),(35921,206,0,2336,'100% polyamide'),(35926,73,0,2337,'Hilfiger Denim Transitional Jacket-red-Small size'),(35927,84,0,2337,'Hilfiger Denim Transitional Jacket'),(35928,86,0,2337,'Hilfiger Denim Transitional Jacket Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s b'),(35929,87,0,2337,'/r/1/r1_29.jpg'),(35930,88,0,2337,'/r/1/r1_29.jpg'),(35931,89,0,2337,'/r/1/r1_29.jpg'),(35932,106,0,2337,'container2'),(35933,121,0,2337,'n-hilfiger-denim-transitional-jacket-red-small-size'),(35934,132,0,2337,'0'),(35935,133,0,2337,'/r/1/r1_29.jpg'),(35936,206,0,2337,'100% polyamide'),(35941,73,0,2338,'Hilfiger Denim Transitional Jacket-red-Medium size'),(35942,84,0,2338,'Hilfiger Denim Transitional Jacket'),(35943,86,0,2338,'Hilfiger Denim Transitional Jacket Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s b'),(35944,87,0,2338,'/r/1/r1_29_1.jpg'),(35945,88,0,2338,'/r/1/r1_29_1.jpg'),(35946,89,0,2338,'/r/1/r1_29_1.jpg'),(35947,106,0,2338,'container2'),(35948,121,0,2338,'n-hilfiger-denim-transitional-jacket-red-medium-size'),(35949,132,0,2338,'0'),(35950,133,0,2338,'/r/1/r1_29_1.jpg'),(35951,206,0,2338,'100% polyamide'),(35956,73,0,2339,'Hilfiger Denim Transitional Jacket-red-Large size'),(35957,84,0,2339,'Hilfiger Denim Transitional Jacket'),(35958,86,0,2339,'Hilfiger Denim Transitional Jacket Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s b'),(35959,87,0,2339,'/r/1/r1_29_2.jpg'),(35960,88,0,2339,'/r/1/r1_29_2.jpg'),(35961,89,0,2339,'/r/1/r1_29_2.jpg'),(35962,106,0,2339,'container2'),(35963,121,0,2339,'n-hilfiger-denim-transitional-jacket-red-large-size'),(35964,132,0,2339,'0'),(35965,133,0,2339,'/r/1/r1_29_2.jpg'),(35966,206,0,2339,'100% polyamide'),(35971,73,0,2340,'Hilfiger Denim Transitional Jacket-white-Small size'),(35972,84,0,2340,'Hilfiger Denim Transitional Jacket'),(35973,86,0,2340,'Hilfiger Denim Transitional Jacket Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s b'),(35974,87,0,2340,'/w/1/w1_35.jpg'),(35975,88,0,2340,'/w/1/w1_35.jpg'),(35976,89,0,2340,'/w/1/w1_35.jpg'),(35977,106,0,2340,'container2'),(35978,121,0,2340,'n-hilfiger-denim-transitional-jacket-white-small-size'),(35979,132,0,2340,'0'),(35980,133,0,2340,'/w/1/w1_35.jpg'),(35981,206,0,2340,'100% polyamide'),(35986,73,0,2341,'Hilfiger Denim Transitional Jacket-white-Medium size'),(35987,84,0,2341,'Hilfiger Denim Transitional Jacket'),(35988,86,0,2341,'Hilfiger Denim Transitional Jacket Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s b'),(35989,87,0,2341,'/w/1/w1_35_1.jpg'),(35990,88,0,2341,'/w/1/w1_35_1.jpg'),(35991,89,0,2341,'/w/1/w1_35_1.jpg'),(35992,106,0,2341,'container2'),(35993,121,0,2341,'n-hilfiger-denim-transitional-jacket-white-medium-size'),(35994,132,0,2341,'0'),(35995,133,0,2341,'/w/1/w1_35_1.jpg'),(35996,206,0,2341,'100% polyamide'),(36001,73,0,2342,'Hilfiger Denim Transitional Jacket-white-Large size'),(36002,84,0,2342,'Hilfiger Denim Transitional Jacket'),(36003,86,0,2342,'Hilfiger Denim Transitional Jacket Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s b'),(36004,87,0,2342,'/w/1/w1_35_2.jpg'),(36005,88,0,2342,'/w/1/w1_35_2.jpg'),(36006,89,0,2342,'/w/1/w1_35_2.jpg'),(36007,106,0,2342,'container2'),(36008,121,0,2342,'n-hilfiger-denim-transitional-jacket-white-large-size'),(36009,132,0,2342,'0'),(36010,133,0,2342,'/w/1/w1_35_2.jpg'),(36011,206,0,2342,'100% polyamide'),(36016,73,0,2343,'Hilfiger Denim Transitional Jacket'),(36017,84,0,2343,'Hilfiger Denim Transitional Jacket'),(36018,86,0,2343,'Hilfiger Denim Transitional Jacket Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s b'),(36019,87,0,2343,'/w/1/w1_36.jpg'),(36020,88,0,2343,'/w/1/w1_36.jpg'),(36021,89,0,2343,'/w/1/w1_36.jpg'),(36022,106,0,2343,'container2'),(36023,121,0,2343,'n-hilfiger-denim-transitional-jacket'),(36024,132,0,2343,'2'),(36025,133,0,2343,'/w/1/w1_36.jpg'),(36026,206,0,2343,'100% polyamide'),(36031,73,0,2344,' Wool jersey trousers-black-Extra small size'),(36032,84,0,2344,' Wool jersey trousers'),(36033,86,0,2344,' Wool jersey trousers Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle.'),(36034,87,0,2344,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_3.jpg'),(36035,88,0,2344,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_3.jpg'),(36036,89,0,2344,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_3.jpg'),(36037,106,0,2344,'container2'),(36038,121,0,2344,'n-wool-jersey-trousers-black-extra-small-size'),(36039,132,0,2344,'0'),(36040,133,0,2344,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_3.jpg'),(36041,206,0,2344,'100% virgin wool'),(36046,73,0,2345,' Wool jersey trousers-black-Small size'),(36047,84,0,2345,' Wool jersey trousers'),(36048,86,0,2345,' Wool jersey trousers Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle.'),(36049,87,0,2345,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_2_1.jpg'),(36050,88,0,2345,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_2_1.jpg'),(36051,89,0,2345,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_2_1.jpg'),(36052,106,0,2345,'container2'),(36053,121,0,2345,'n-wool-jersey-trousers-black-small-size'),(36054,132,0,2345,'0'),(36055,133,0,2345,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_2_1.jpg'),(36056,206,0,2345,'100% virgin wool'),(36061,73,0,2346,' Wool jersey trousers-black-Extra large size'),(36062,84,0,2346,' Wool jersey trousers'),(36063,86,0,2346,' Wool jersey trousers Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle.'),(36064,87,0,2346,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_3_1.jpg'),(36065,88,0,2346,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_3_1.jpg'),(36066,89,0,2346,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_3_1.jpg'),(36067,106,0,2346,'container2'),(36068,121,0,2346,'n-wool-jersey-trousers-black-extra-large-size'),(36069,132,0,2346,'0'),(36070,133,0,2346,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_3_1.jpg'),(36071,206,0,2346,'100% virgin wool'),(36076,73,0,2347,' Wool jersey trousers-red-Extra small size'),(36077,84,0,2347,' Wool jersey trousers'),(36078,86,0,2347,' Wool jersey trousers Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle.'),(36079,87,0,2347,'/2/3/23r4r4r4_1_1_1.jpg'),(36080,88,0,2347,'/2/3/23r4r4r4_1_1_1.jpg'),(36081,89,0,2347,'/2/3/23r4r4r4_1_1_1.jpg'),(36082,106,0,2347,'container2'),(36083,121,0,2347,'n-wool-jersey-trousers-red-extra-small-size'),(36084,132,0,2347,'0'),(36085,133,0,2347,'/2/3/23r4r4r4_1_1_1.jpg'),(36086,206,0,2347,'100% virgin wool'),(36091,73,0,2348,' Wool jersey trousers-red-Small size'),(36092,84,0,2348,' Wool jersey trousers'),(36093,86,0,2348,' Wool jersey trousers Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle.'),(36094,87,0,2348,'/2/3/23r4r4r4_1_1_1_1.jpg'),(36095,88,0,2348,'/2/3/23r4r4r4_1_1_1_1.jpg'),(36096,89,0,2348,'/2/3/23r4r4r4_1_1_1_1.jpg'),(36097,106,0,2348,'container2'),(36098,121,0,2348,'n-wool-jersey-trousers-red-small-size'),(36099,132,0,2348,'0'),(36100,133,0,2348,'/2/3/23r4r4r4_1_1_1_1.jpg'),(36101,206,0,2348,'100% virgin wool'),(36106,73,0,2349,' Wool jersey trousers-red-Extra large size'),(36107,84,0,2349,' Wool jersey trousers'),(36108,86,0,2349,' Wool jersey trousers Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle.'),(36109,87,0,2349,'/2/3/23r4r4r4_1_1_2.jpg'),(36110,88,0,2349,'/2/3/23r4r4r4_1_1_2.jpg'),(36111,89,0,2349,'/2/3/23r4r4r4_1_1_2.jpg'),(36112,106,0,2349,'container2'),(36113,121,0,2349,'n-wool-jersey-trousers-red-extra-large-size'),(36114,132,0,2349,'0'),(36115,133,0,2349,'/2/3/23r4r4r4_1_1_2.jpg'),(36116,206,0,2349,'100% virgin wool'),(36121,73,0,2350,'Wool jersey trousers'),(36122,84,0,2350,' Wool jersey trousers'),(36123,86,0,2350,' Wool jersey trousers Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle.'),(36124,87,0,2350,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_1_2.jpg'),(36125,88,0,2350,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_1_2.jpg'),(36126,89,0,2350,'/0/3/038_802c9577-658b-4b5a-9adf-93eaa750f6c6_1_2.jpg'),(36127,106,0,2350,'container2'),(36128,121,0,2350,'n-wool-jersey-trousers'),(36129,132,0,2350,'2'),(36130,133,0,2350,'no_selection'),(36131,206,0,2350,'100% virgin wool'),(36136,73,0,2351,' Weise Midi Dress-blue-Extra small size'),(36137,84,0,2351,' Weise Midi Dress'),(36138,86,0,2351,' Weise Midi Dress Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern'),(36139,87,0,2351,'/2/4/24334r4r3r_3.jpg'),(36140,88,0,2351,'/2/4/24334r4r3r_3.jpg'),(36141,89,0,2351,'/2/4/24334r4r3r_3.jpg'),(36142,106,0,2351,'container2'),(36143,121,0,2351,'n-weise-midi-dress-blue-extra-small-size'),(36144,132,0,2351,'0'),(36145,133,0,2351,'/2/4/24334r4r3r_3.jpg'),(36146,206,0,2351,'37% polyacrylic, 28% viscose, 19% polyester, 16% wool'),(36151,73,0,2352,' Weise Midi Dress-blue-Small size'),(36152,84,0,2352,' Weise Midi Dress'),(36153,86,0,2352,' Weise Midi Dress Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern'),(36154,87,0,2352,'/2/4/24334r4r3r_1_1.jpg'),(36155,88,0,2352,'/2/4/24334r4r3r_1_1.jpg'),(36156,89,0,2352,'/2/4/24334r4r3r_1_1.jpg'),(36157,106,0,2352,'container2'),(36158,121,0,2352,'n-weise-midi-dress-blue-small-size'),(36159,132,0,2352,'0'),(36160,133,0,2352,'/2/4/24334r4r3r_1_1.jpg'),(36161,206,0,2352,'37% polyacrylic, 28% viscose, 19% polyester, 16% wool'),(36166,73,0,2353,' Weise Midi Dress-blue-Medium size'),(36167,84,0,2353,' Weise Midi Dress'),(36168,86,0,2353,' Weise Midi Dress Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern'),(36169,87,0,2353,'/2/4/24334r4r3r_2_1.jpg'),(36170,88,0,2353,'/2/4/24334r4r3r_2_1.jpg'),(36171,89,0,2353,'/2/4/24334r4r3r_2_1.jpg'),(36172,106,0,2353,'container2'),(36173,121,0,2353,'n-weise-midi-dress-blue-medium-size'),(36174,132,0,2353,'0'),(36175,133,0,2353,'/2/4/24334r4r3r_2_1.jpg'),(36176,206,0,2353,'37% polyacrylic, 28% viscose, 19% polyester, 16% wool'),(36181,73,0,2354,' Weise Midi Dress-red-Extra small size'),(36182,84,0,2354,' Weise Midi Dress'),(36183,86,0,2354,' Weise Midi Dress Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern'),(36184,87,0,2354,'/i/m/image_31268637_45_970x1182_0_3.jpg'),(36185,88,0,2354,'/i/m/image_31268637_45_970x1182_0_3.jpg'),(36186,89,0,2354,'/i/m/image_31268637_45_970x1182_0_3.jpg'),(36187,106,0,2354,'container2'),(36188,121,0,2354,'n-weise-midi-dress-red-extra-small-size'),(36189,132,0,2354,'0'),(36190,133,0,2354,'/i/m/image_31268637_45_970x1182_0_3.jpg'),(36191,206,0,2354,'37% polyacrylic, 28% viscose, 19% polyester, 16% wool'),(36196,73,0,2355,' Weise Midi Dress-red-Small size'),(36197,84,0,2355,' Weise Midi Dress'),(36198,86,0,2355,' Weise Midi Dress Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern'),(36199,87,0,2355,'/i/m/image_31268637_45_970x1182_0_1_2.jpg'),(36200,88,0,2355,'/i/m/image_31268637_45_970x1182_0_1_2.jpg'),(36201,89,0,2355,'/i/m/image_31268637_45_970x1182_0_1_2.jpg'),(36202,106,0,2355,'container2'),(36203,121,0,2355,'n-weise-midi-dress-red-small-size'),(36204,132,0,2355,'0'),(36205,133,0,2355,'/i/m/image_31268637_45_970x1182_0_1_2.jpg'),(36206,206,0,2355,'37% polyacrylic, 28% viscose, 19% polyester, 16% wool'),(36211,73,0,2356,' Weise Midi Dress-red-Medium size'),(36212,84,0,2356,' Weise Midi Dress'),(36213,86,0,2356,' Weise Midi Dress Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern'),(36214,87,0,2356,'/i/m/image_31268637_45_970x1182_0_2_1.jpg'),(36215,88,0,2356,'/i/m/image_31268637_45_970x1182_0_2_1.jpg'),(36216,89,0,2356,'/i/m/image_31268637_45_970x1182_0_2_1.jpg'),(36217,106,0,2356,'container2'),(36218,121,0,2356,'n-weise-midi-dress-red-medium-size'),(36219,132,0,2356,'0'),(36220,133,0,2356,'/i/m/image_31268637_45_970x1182_0_2_1.jpg'),(36221,206,0,2356,'37% polyacrylic, 28% viscose, 19% polyester, 16% wool'),(36226,73,0,2357,'Weise Midi Dress'),(36227,84,0,2357,' Weise Midi Dress'),(36228,86,0,2357,' Weise Midi Dress Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern'),(36229,106,0,2357,'container2'),(36230,121,0,2357,'n-unq-linen-dress-2'),(36231,132,0,2357,'2'),(36232,206,0,2357,'37% polyacrylic, 28% viscose, 19% polyester, 16% wool'),(36233,73,0,2358,'Calvin Klein Jeans Down Jacket-Medium size-white'),(36234,84,0,2358,'Calvin Klein Jeans Down Jacket'),(36235,86,0,2358,'Calvin Klein Jeans Down Jacket Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length'),(36236,87,0,2358,'/w/1/w1_37.jpg'),(36237,88,0,2358,'/w/1/w1_37.jpg'),(36238,89,0,2358,'/w/1/w1_37.jpg'),(36239,106,0,2358,'container2'),(36240,121,0,2358,'n-calvin-klein-jeans-down-jacket-medium-size-white'),(36241,132,0,2358,'0'),(36242,133,0,2358,'/w/1/w1_37.jpg'),(36243,206,0,2358,'100% polyamide'),(36248,73,0,2359,'Calvin Klein Jeans Down Jacket-Medium size-black'),(36249,84,0,2359,'Calvin Klein Jeans Down Jacket'),(36250,86,0,2359,'Calvin Klein Jeans Down Jacket Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length'),(36251,87,0,2359,'/b/1/b1_62.jpg'),(36252,88,0,2359,'/b/1/b1_62.jpg'),(36253,89,0,2359,'/b/1/b1_62.jpg'),(36254,106,0,2359,'container2'),(36255,121,0,2359,'n-calvin-klein-jeans-down-jacket-medium-size-black'),(36256,132,0,2359,'0'),(36257,133,0,2359,'/b/1/b1_62.jpg'),(36258,206,0,2359,'100% polyamide'),(36263,73,0,2360,'Calvin Klein Jeans Down Jacket-Small size-white'),(36264,84,0,2360,'Calvin Klein Jeans Down Jacket'),(36265,86,0,2360,'Calvin Klein Jeans Down Jacket Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length'),(36266,87,0,2360,'/w/1/w1_37_1.jpg'),(36267,88,0,2360,'/w/1/w1_37_1.jpg'),(36268,89,0,2360,'/w/1/w1_37_1.jpg'),(36269,106,0,2360,'container2'),(36270,121,0,2360,'n-calvin-klein-jeans-down-jacket-small-size-white'),(36271,132,0,2360,'0'),(36272,133,0,2360,'/w/1/w1_37_1.jpg'),(36273,206,0,2360,'100% polyamide'),(36278,73,0,2361,'Calvin Klein Jeans Down Jacket-Small size-black'),(36279,84,0,2361,'Calvin Klein Jeans Down Jacket'),(36280,86,0,2361,'Calvin Klein Jeans Down Jacket Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length'),(36281,87,0,2361,'/b/1/b1_62_1.jpg'),(36282,88,0,2361,'/b/1/b1_62_1.jpg'),(36283,89,0,2361,'/b/1/b1_62_1.jpg'),(36284,106,0,2361,'container2'),(36285,121,0,2361,'n-calvin-klein-jeans-down-jacket-small-size-black'),(36286,132,0,2361,'0'),(36287,133,0,2361,'/b/1/b1_62_1.jpg'),(36288,206,0,2361,'100% polyamide'),(36293,73,0,2362,'Calvin Klein Jeans Down Jacket-Extra small size-white'),(36294,84,0,2362,'Calvin Klein Jeans Down Jacket'),(36295,86,0,2362,'Calvin Klein Jeans Down Jacket Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length'),(36296,87,0,2362,'/w/1/w1_37_2.jpg'),(36297,88,0,2362,'/w/1/w1_37_2.jpg'),(36298,89,0,2362,'/w/1/w1_37_2.jpg'),(36299,106,0,2362,'container2'),(36300,121,0,2362,'n-calvin-klein-jeans-down-jacket-extra-small-size-white'),(36301,132,0,2362,'0'),(36302,133,0,2362,'/w/1/w1_37_2.jpg'),(36303,206,0,2362,'100% polyamide'),(36308,73,0,2363,'Calvin Klein Jeans Down Jacket-Extra small size-black'),(36309,84,0,2363,'Calvin Klein Jeans Down Jacket'),(36310,86,0,2363,'Calvin Klein Jeans Down Jacket Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length'),(36311,87,0,2363,'/b/1/b1_62_2.jpg'),(36312,88,0,2363,'/b/1/b1_62_2.jpg'),(36313,89,0,2363,'/b/1/b1_62_2.jpg'),(36314,106,0,2363,'container2'),(36315,121,0,2363,'n-calvin-klein-jeans-down-jacket-extra-small-size-black'),(36316,132,0,2363,'0'),(36317,133,0,2363,'/b/1/b1_62_2.jpg'),(36318,206,0,2363,'100% polyamide'),(36323,73,0,2364,'Calvin Klein Jeans Down Jacket-Large size-white'),(36324,84,0,2364,'Calvin Klein Jeans Down Jacket'),(36325,86,0,2364,'Calvin Klein Jeans Down Jacket Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length'),(36326,87,0,2364,'/w/1/w1_37_3.jpg'),(36327,88,0,2364,'/w/1/w1_37_3.jpg'),(36328,89,0,2364,'/w/1/w1_37_3.jpg'),(36329,106,0,2364,'container2'),(36330,121,0,2364,'n-calvin-klein-jeans-down-jacket-large-size-white'),(36331,132,0,2364,'0'),(36332,133,0,2364,'/w/1/w1_37_3.jpg'),(36333,206,0,2364,'100% polyamide'),(36338,73,0,2365,'Calvin Klein Jeans Down Jacket-Large size-black'),(36339,84,0,2365,'Calvin Klein Jeans Down Jacket'),(36340,86,0,2365,'Calvin Klein Jeans Down Jacket Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length'),(36341,87,0,2365,'/b/1/b1_62_3.jpg'),(36342,88,0,2365,'/b/1/b1_62_3.jpg'),(36343,89,0,2365,'/b/1/b1_62_3.jpg'),(36344,106,0,2365,'container2'),(36345,121,0,2365,'n-calvin-klein-jeans-down-jacket-large-size-black'),(36346,132,0,2365,'0'),(36347,133,0,2365,'/b/1/b1_62_3.jpg'),(36348,206,0,2365,'100% polyamide'),(36353,73,0,2366,'Calvin Klein Jeans Down Jacket'),(36354,84,0,2366,'Calvin Klein Jeans Down Jacket'),(36355,86,0,2366,'Calvin Klein Jeans Down Jacket Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length'),(36356,87,0,2366,'/w/1/w1_38.jpg'),(36357,88,0,2366,'/w/1/w1_38.jpg'),(36358,89,0,2366,'/w/1/w1_38.jpg'),(36359,106,0,2366,'container2'),(36360,121,0,2366,'n-calvin-klein-jeans-down-jacket'),(36361,132,0,2366,'2'),(36362,133,0,2366,'/w/1/w1_38.jpg'),(36363,206,0,2366,'100% polyamide'),(36368,73,0,2367,' UNQ Linen Dress-brown-Extra small size'),(36369,84,0,2367,' UNQ Linen Dress'),(36370,86,0,2367,' UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Ext'),(36371,87,0,2367,'/i/m/image_31262293_21_970x1182_0_3.jpg'),(36372,88,0,2367,'/i/m/image_31262293_21_970x1182_0_3.jpg'),(36373,89,0,2367,'/i/m/image_31262293_21_970x1182_0_3.jpg'),(36374,106,0,2367,'container2'),(36375,121,0,2367,'n-unq-linen-dress-brown-extra-small-size'),(36376,132,0,2367,'0'),(36377,133,0,2367,'/i/m/image_31262293_21_970x1182_0_3.jpg'),(36378,206,0,2367,'54% linen, 29% polyester, 15% viscose, 2% elastane'),(36383,73,0,2368,' UNQ Linen Dress-brown-Small size'),(36384,84,0,2368,' UNQ Linen Dress'),(36385,86,0,2368,' UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Ext'),(36386,87,0,2368,'/i/m/image_31262293_21_970x1182_0_1_2.jpg'),(36387,88,0,2368,'/i/m/image_31262293_21_970x1182_0_1_2.jpg'),(36388,89,0,2368,'/i/m/image_31262293_21_970x1182_0_1_2.jpg'),(36389,106,0,2368,'container2'),(36390,121,0,2368,'n-unq-linen-dress-brown-small-size'),(36391,132,0,2368,'0'),(36392,133,0,2368,'/i/m/image_31262293_21_970x1182_0_1_2.jpg'),(36393,206,0,2368,'54% linen, 29% polyester, 15% viscose, 2% elastane'),(36398,73,0,2369,' UNQ Linen Dress-brown-Medium size'),(36399,84,0,2369,' UNQ Linen Dress'),(36400,86,0,2369,' UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Ext'),(36401,87,0,2369,'/i/m/image_31262293_21_970x1182_0_2_2.jpg'),(36402,88,0,2369,'/i/m/image_31262293_21_970x1182_0_2_2.jpg'),(36403,89,0,2369,'/i/m/image_31262293_21_970x1182_0_2_2.jpg'),(36404,106,0,2369,'container2'),(36405,121,0,2369,'n-unq-linen-dress-brown-medium-size'),(36406,132,0,2369,'0'),(36407,133,0,2369,'/i/m/image_31262293_21_970x1182_0_2_2.jpg'),(36408,206,0,2369,'54% linen, 29% polyester, 15% viscose, 2% elastane'),(36413,73,0,2370,' UNQ Linen Dress-grey-Extra small size'),(36414,84,0,2370,' UNQ Linen Dress'),(36415,86,0,2370,' UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Ext'),(36416,87,0,2370,'/3/4/343e2e2e3_3.jpg'),(36417,88,0,2370,'/3/4/343e2e2e3_3.jpg'),(36418,89,0,2370,'/3/4/343e2e2e3_3.jpg'),(36419,106,0,2370,'container2'),(36420,121,0,2370,'n-unq-linen-dress-grey-extra-small-size'),(36421,132,0,2370,'0'),(36422,133,0,2370,'/3/4/343e2e2e3_3.jpg'),(36423,206,0,2370,'54% linen, 29% polyester, 15% viscose, 2% elastane'),(36428,73,0,2371,' UNQ Linen Dress-grey-Small size'),(36429,84,0,2371,' UNQ Linen Dress'),(36430,86,0,2371,' UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Ext'),(36431,87,0,2371,'/3/4/343e2e2e3_1_1.jpg'),(36432,88,0,2371,'/3/4/343e2e2e3_1_1.jpg'),(36433,89,0,2371,'/3/4/343e2e2e3_1_1.jpg'),(36434,106,0,2371,'container2'),(36435,121,0,2371,'n-unq-linen-dress-grey-small-size'),(36436,132,0,2371,'0'),(36437,133,0,2371,'/3/4/343e2e2e3_1_1.jpg'),(36438,206,0,2371,'54% linen, 29% polyester, 15% viscose, 2% elastane'),(36443,73,0,2372,' UNQ Linen Dress-grey-Medium size'),(36444,84,0,2372,' UNQ Linen Dress'),(36445,86,0,2372,' UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Ext'),(36446,87,0,2372,'/3/4/343e2e2e3_2_1.jpg'),(36447,88,0,2372,'/3/4/343e2e2e3_2_1.jpg'),(36448,89,0,2372,'/3/4/343e2e2e3_2_1.jpg'),(36449,106,0,2372,'container2'),(36450,121,0,2372,'n-unq-linen-dress-grey-medium-size'),(36451,132,0,2372,'0'),(36452,133,0,2372,'/3/4/343e2e2e3_2_1.jpg'),(36453,206,0,2372,'54% linen, 29% polyester, 15% viscose, 2% elastane'),(36458,73,0,2373,'UNQ Linen Dress'),(36459,84,0,2373,' UNQ Linen Dress'),(36460,86,0,2373,' UNQ Linen Dress Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Ext'),(36461,106,0,2373,'container2'),(36462,121,0,2373,'n-unq-linen-dress'),(36463,132,0,2373,'2'),(36464,206,0,2373,'54% linen, 29% polyester, 15% viscose, 2% elastane'),(36465,87,0,2373,'/i/m/image_31262293_21_970x1182_0_4.jpg'),(36466,88,0,2373,'/i/m/image_31262293_21_970x1182_0_4.jpg'),(36467,89,0,2373,'/i/m/image_31262293_21_970x1182_0_4.jpg'),(36471,73,0,2374,'Dark Grey Chino-black-Large size'),(36472,84,0,2374,'Dark Grey Chino'),(36473,86,0,2374,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36474,87,0,2374,'/d/1/d1_20.jpg'),(36475,88,0,2374,'/d/1/d1_20.jpg'),(36476,89,0,2374,'/d/1/d1_20.jpg'),(36477,106,0,2374,'container2'),(36478,121,0,2374,'n-dark-grey-chino-black-large-size'),(36479,132,0,2374,'0'),(36480,133,0,2374,'/d/1/d1_20.jpg'),(36481,206,0,2374,'98% cotton, 2% elastane'),(36486,73,0,2375,'Dark Grey Chino-black-Small size'),(36487,84,0,2375,'Dark Grey Chino'),(36488,86,0,2375,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36489,87,0,2375,'/d/1/d1_20_1.jpg'),(36490,88,0,2375,'/d/1/d1_20_1.jpg'),(36491,89,0,2375,'/d/1/d1_20_1.jpg'),(36492,106,0,2375,'container2'),(36493,121,0,2375,'n-dark-grey-chino-black-small-size'),(36494,132,0,2375,'0'),(36495,133,0,2375,'/d/1/d1_20_1.jpg'),(36496,206,0,2375,'98% cotton, 2% elastane'),(36501,73,0,2376,'Dark Grey Chino-black-Medium size'),(36502,84,0,2376,'Dark Grey Chino'),(36503,86,0,2376,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36504,87,0,2376,'/d/1/d1_20_2.jpg'),(36505,88,0,2376,'/d/1/d1_20_2.jpg'),(36506,89,0,2376,'/d/1/d1_20_2.jpg'),(36507,106,0,2376,'container2'),(36508,121,0,2376,'n-dark-grey-chino-black-medium-size'),(36509,132,0,2376,'0'),(36510,133,0,2376,'/d/1/d1_20_2.jpg'),(36511,206,0,2376,'98% cotton, 2% elastane'),(36516,73,0,2377,'Dark Grey Chino-red-Large size'),(36517,84,0,2377,'Dark Grey Chino'),(36518,86,0,2377,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36519,87,0,2377,'/r/1/r1_30.jpg'),(36520,88,0,2377,'/r/1/r1_30.jpg'),(36521,89,0,2377,'/r/1/r1_30.jpg'),(36522,106,0,2377,'container2'),(36523,121,0,2377,'n-dark-grey-chino-red-large-size'),(36524,132,0,2377,'0'),(36525,133,0,2377,'/r/1/r1_30.jpg'),(36526,206,0,2377,'98% cotton, 2% elastane'),(36531,73,0,2378,'Dark Grey Chino-red-Small size'),(36532,84,0,2378,'Dark Grey Chino'),(36533,86,0,2378,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36534,87,0,2378,'/r/1/r1_30_1.jpg'),(36535,88,0,2378,'/r/1/r1_30_1.jpg'),(36536,89,0,2378,'/r/1/r1_30_1.jpg'),(36537,106,0,2378,'container2'),(36538,121,0,2378,'n-dark-grey-chino-red-small-size'),(36539,132,0,2378,'0'),(36540,133,0,2378,'/r/1/r1_30_1.jpg'),(36541,206,0,2378,'98% cotton, 2% elastane'),(36546,73,0,2379,'Dark Grey Chino-red-Medium size'),(36547,84,0,2379,'Dark Grey Chino'),(36548,86,0,2379,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36549,87,0,2379,'/r/1/r1_30_2.jpg'),(36550,88,0,2379,'/r/1/r1_30_2.jpg'),(36551,89,0,2379,'/r/1/r1_30_2.jpg'),(36552,106,0,2379,'container2'),(36553,121,0,2379,'n-dark-grey-chino-red-medium-size'),(36554,132,0,2379,'0'),(36555,133,0,2379,'/r/1/r1_30_2.jpg'),(36556,206,0,2379,'98% cotton, 2% elastane'),(36561,73,0,2380,'Dark Grey Chino-white-Large size'),(36562,84,0,2380,'Dark Grey Chino'),(36563,86,0,2380,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36564,87,0,2380,'/w/1/w1_39.jpg'),(36565,88,0,2380,'/w/1/w1_39.jpg'),(36566,89,0,2380,'/w/1/w1_39.jpg'),(36567,106,0,2380,'container2'),(36568,121,0,2380,'n-dark-grey-chino-white-large-size'),(36569,132,0,2380,'0'),(36570,133,0,2380,'/w/1/w1_39.jpg'),(36571,206,0,2380,'98% cotton, 2% elastane'),(36576,73,0,2381,'Dark Grey Chino-white-Small size'),(36577,84,0,2381,'Dark Grey Chino'),(36578,86,0,2381,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36579,87,0,2381,'/w/1/w1_39_1.jpg'),(36580,88,0,2381,'/w/1/w1_39_1.jpg'),(36581,89,0,2381,'/w/1/w1_39_1.jpg'),(36582,106,0,2381,'container2'),(36583,121,0,2381,'n-dark-grey-chino-white-small-size'),(36584,132,0,2381,'0'),(36585,133,0,2381,'/w/1/w1_39_1.jpg'),(36586,206,0,2381,'98% cotton, 2% elastane'),(36591,73,0,2382,'Dark Grey Chino-white-Medium size'),(36592,84,0,2382,'Dark Grey Chino'),(36593,86,0,2382,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36594,87,0,2382,'/w/1/w1_39_2.jpg'),(36595,88,0,2382,'/w/1/w1_39_2.jpg'),(36596,89,0,2382,'/w/1/w1_39_2.jpg'),(36597,106,0,2382,'container2'),(36598,121,0,2382,'n-dark-grey-chino-white-medium-size'),(36599,132,0,2382,'0'),(36600,133,0,2382,'/w/1/w1_39_2.jpg'),(36601,206,0,2382,'98% cotton, 2% elastane'),(36606,73,0,2383,'Dark Grey Chino-blue-Large size'),(36607,84,0,2383,'Dark Grey Chino'),(36608,86,0,2383,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36609,87,0,2383,'/b/b/bb1_2_3.jpg'),(36610,88,0,2383,'/b/b/bb1_2_3.jpg'),(36611,89,0,2383,'/b/b/bb1_2_3.jpg'),(36612,106,0,2383,'container2'),(36613,121,0,2383,'n-dark-grey-chino-blue-large-size'),(36614,132,0,2383,'0'),(36615,133,0,2383,'/b/b/bb1_2_3.jpg'),(36616,206,0,2383,'98% cotton, 2% elastane'),(36621,73,0,2384,'Dark Grey Chino-blue-Small size'),(36622,84,0,2384,'Dark Grey Chino'),(36623,86,0,2384,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36624,87,0,2384,'/b/b/bb1_2_1_1.jpg'),(36625,88,0,2384,'/b/b/bb1_2_1_1.jpg'),(36626,89,0,2384,'/b/b/bb1_2_1_1.jpg'),(36627,106,0,2384,'container2'),(36628,121,0,2384,'n-dark-grey-chino-blue-small-size'),(36629,132,0,2384,'0'),(36630,133,0,2384,'/b/b/bb1_2_1_1.jpg'),(36631,206,0,2384,'98% cotton, 2% elastane'),(36636,73,0,2385,'Dark Grey Chino-blue-Medium size'),(36637,84,0,2385,'Dark Grey Chino'),(36638,86,0,2385,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36639,87,0,2385,'/b/b/bb1_2_2_1.jpg'),(36640,88,0,2385,'/b/b/bb1_2_2_1.jpg'),(36641,89,0,2385,'/b/b/bb1_2_2_1.jpg'),(36642,106,0,2385,'container2'),(36643,121,0,2385,'n-dark-grey-chino-blue-medium-size'),(36644,132,0,2385,'0'),(36645,133,0,2385,'/b/b/bb1_2_2_1.jpg'),(36646,206,0,2385,'98% cotton, 2% elastane'),(36651,73,0,2386,'Dark Grey Chino-brown-Large size'),(36652,84,0,2386,'Dark Grey Chino'),(36653,86,0,2386,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36654,87,0,2386,'/b/1/b1_63.jpg'),(36655,88,0,2386,'/b/1/b1_63.jpg'),(36656,89,0,2386,'/b/1/b1_63.jpg'),(36657,106,0,2386,'container2'),(36658,121,0,2386,'n-dark-grey-chino-brown-large-size'),(36659,132,0,2386,'0'),(36660,133,0,2386,'/b/1/b1_63.jpg'),(36661,206,0,2386,'98% cotton, 2% elastane'),(36666,73,0,2387,'Dark Grey Chino-brown-Small size'),(36667,84,0,2387,'Dark Grey Chino'),(36668,86,0,2387,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36669,87,0,2387,'/b/1/b1_63_1.jpg'),(36670,88,0,2387,'/b/1/b1_63_1.jpg'),(36671,89,0,2387,'/b/1/b1_63_1.jpg'),(36672,106,0,2387,'container2'),(36673,121,0,2387,'n-dark-grey-chino-brown-small-size'),(36674,132,0,2387,'0'),(36675,133,0,2387,'/b/1/b1_63_1.jpg'),(36676,206,0,2387,'98% cotton, 2% elastane'),(36681,73,0,2388,'Dark Grey Chino-brown-Medium size'),(36682,84,0,2388,'Dark Grey Chino'),(36683,86,0,2388,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36684,87,0,2388,'/b/1/b1_63_2.jpg'),(36685,88,0,2388,'/b/1/b1_63_2.jpg'),(36686,89,0,2388,'/b/1/b1_63_2.jpg'),(36687,106,0,2388,'container2'),(36688,121,0,2388,'n-dark-grey-chino-brown-medium-size'),(36689,132,0,2388,'0'),(36690,133,0,2388,'/b/1/b1_63_2.jpg'),(36691,206,0,2388,'98% cotton, 2% elastane'),(36696,73,0,2389,'Dark Grey Chino'),(36697,84,0,2389,'Dark Grey Chino'),(36698,86,0,2389,'Dark Grey Chino From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available i'),(36699,87,0,2389,'/1/_/1_23.jpg'),(36700,88,0,2389,'/1/_/1_23.jpg'),(36701,89,0,2389,'/1/_/1_23.jpg'),(36702,106,0,2389,'container2'),(36703,121,0,2389,'n-dark-grey-chino'),(36704,132,0,2389,'2'),(36705,133,0,2389,'/1/_/1_23.jpg'),(36706,206,0,2389,'98% cotton, 2% elastane'),(36711,73,0,2390,' United Colors of Benetton Knit Dress-brown-Extra small size'),(36712,84,0,2390,' United Colors of Benetton Knit Dress'),(36713,86,0,2390,' United Colors of Benetton Knit Dress Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pat'),(36714,87,0,2390,'/2/3/232e2e_3.jpg'),(36715,88,0,2390,'/2/3/232e2e_3.jpg'),(36716,89,0,2390,'/2/3/232e2e_3.jpg'),(36717,106,0,2390,'container2'),(36718,121,0,2390,'n-united-colors-of-benetton-knit-dress-brown-extra-small-size'),(36719,132,0,2390,'0'),(36720,133,0,2390,'/2/3/232e2e_3.jpg'),(36721,206,0,2390,'50% cotton, 50% polyacrylic'),(36726,73,0,2391,' United Colors of Benetton Knit Dress-brown-Small size'),(36727,84,0,2391,' United Colors of Benetton Knit Dress'),(36728,86,0,2391,' United Colors of Benetton Knit Dress Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pat'),(36729,87,0,2391,'/2/3/232e2e_1_1.jpg'),(36730,88,0,2391,'/2/3/232e2e_1_1.jpg'),(36731,89,0,2391,'/2/3/232e2e_1_1.jpg'),(36732,106,0,2391,'container2'),(36733,121,0,2391,'n-united-colors-of-benetton-knit-dress-brown-small-size'),(36734,132,0,2391,'0'),(36735,133,0,2391,'/2/3/232e2e_1_1.jpg'),(36736,206,0,2391,'50% cotton, 50% polyacrylic'),(36741,73,0,2392,' United Colors of Benetton Knit Dress-brown-Medium size'),(36742,84,0,2392,' United Colors of Benetton Knit Dress'),(36743,86,0,2392,' United Colors of Benetton Knit Dress Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pat'),(36744,87,0,2392,'/2/3/232e2e_2_1.jpg'),(36745,88,0,2392,'/2/3/232e2e_2_1.jpg'),(36746,89,0,2392,'/2/3/232e2e_2_1.jpg'),(36747,106,0,2392,'container2'),(36748,121,0,2392,'n-united-colors-of-benetton-knit-dress-brown-medium-size'),(36749,132,0,2392,'0'),(36750,133,0,2392,'/2/3/232e2e_2_1.jpg'),(36751,206,0,2392,'50% cotton, 50% polyacrylic'),(36756,73,0,2393,' United Colors of Benetton Knit Dress-grey-Extra small size'),(36757,84,0,2393,' United Colors of Benetton Knit Dress'),(36758,86,0,2393,' United Colors of Benetton Knit Dress Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pat'),(36759,87,0,2393,'/i/m/image_31104994_83_970x1182_0_3.jpg'),(36760,88,0,2393,'/i/m/image_31104994_83_970x1182_0_3.jpg'),(36761,89,0,2393,'/i/m/image_31104994_83_970x1182_0_3.jpg'),(36762,106,0,2393,'container2'),(36763,121,0,2393,'n-united-colors-of-benetton-knit-dress-grey-extra-small-size'),(36764,132,0,2393,'0'),(36765,133,0,2393,'/i/m/image_31104994_83_970x1182_0_3.jpg'),(36766,206,0,2393,'50% cotton, 50% polyacrylic'),(36771,73,0,2394,' United Colors of Benetton Knit Dress-grey-Small size'),(36772,84,0,2394,' United Colors of Benetton Knit Dress'),(36773,86,0,2394,' United Colors of Benetton Knit Dress Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pat'),(36774,87,0,2394,'/i/m/image_31104994_83_970x1182_0_2_1.jpg'),(36775,88,0,2394,'/i/m/image_31104994_83_970x1182_0_2_1.jpg'),(36776,89,0,2394,'/i/m/image_31104994_83_970x1182_0_2_1.jpg'),(36777,106,0,2394,'container2'),(36778,121,0,2394,'n-united-colors-of-benetton-knit-dress-grey-small-size'),(36779,132,0,2394,'0'),(36780,133,0,2394,'/i/m/image_31104994_83_970x1182_0_2_1.jpg'),(36781,206,0,2394,'50% cotton, 50% polyacrylic'),(36786,73,0,2395,' United Colors of Benetton Knit Dress-grey-Medium size'),(36787,84,0,2395,' United Colors of Benetton Knit Dress'),(36788,86,0,2395,' United Colors of Benetton Knit Dress Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pat'),(36789,87,0,2395,'/i/m/image_31104994_83_970x1182_0_3_1.jpg'),(36790,88,0,2395,'/i/m/image_31104994_83_970x1182_0_3_1.jpg'),(36791,89,0,2395,'/i/m/image_31104994_83_970x1182_0_3_1.jpg'),(36792,106,0,2395,'container2'),(36793,121,0,2395,'n-united-colors-of-benetton-knit-dress-grey-medium-size'),(36794,132,0,2395,'0'),(36795,133,0,2395,'/i/m/image_31104994_83_970x1182_0_3_1.jpg'),(36796,206,0,2395,'50% cotton, 50% polyacrylic'),(36801,73,0,2396,'United Colors of Benetton Knit Dress'),(36802,84,0,2396,' United Colors of Benetton Knit Dress'),(36803,86,0,2396,' United Colors of Benetton Knit Dress Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pat'),(36804,87,0,2396,'/i/m/image_31104994_83_970x1182_0_1_2.jpg'),(36805,88,0,2396,'/i/m/image_31104994_83_970x1182_0_1_2.jpg'),(36806,89,0,2396,'/i/m/image_31104994_83_970x1182_0_1_2.jpg'),(36807,106,0,2396,'container2'),(36808,121,0,2396,'n-unq-linen-dress-1'),(36809,132,0,2396,'2'),(36810,133,0,2396,'no_selection'),(36811,206,0,2396,'50% cotton, 50% polyacrylic'),(36816,87,0,1455,'/1/_/1_24_2.jpg'),(36817,88,0,1455,'/1/_/1_24_2.jpg'),(36818,89,0,1455,'/1/_/1_24_2.jpg'),(36822,87,0,1495,'/1/_/1_25.jpg'),(36823,88,0,1495,'/1/_/1_25.jpg'),(36824,89,0,1495,'/1/_/1_25.jpg'),(36828,87,0,1526,'/1/_/1_26.jpg'),(36829,88,0,1526,'/1/_/1_26.jpg'),(36830,89,0,1526,'/1/_/1_26.jpg'),(36834,87,0,1561,'/1/_/1_27.jpg'),(36835,88,0,1561,'/1/_/1_27.jpg'),(36836,89,0,1561,'/1/_/1_27.jpg'),(36840,73,0,2397,' The Skinny Crop-blue-Extra small size'),(36841,84,0,2397,' The Skinny Crop'),(36842,86,0,2397,' The Skinny Crop Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manu'),(36843,87,0,2397,'/2/4/2432e2e2e2_3.jpg'),(36844,88,0,2397,'/2/4/2432e2e2e2_3.jpg'),(36845,89,0,2397,'/2/4/2432e2e2e2_3.jpg'),(36846,106,0,2397,'container2'),(36847,121,0,2397,'n-the-skinny-crop-blue-extra-small-size'),(36848,132,0,2397,'0'),(36849,133,0,2397,'/2/4/2432e2e2e2_3.jpg'),(36854,73,0,2398,' The Skinny Crop-blue-Small size'),(36855,84,0,2398,' The Skinny Crop'),(36856,86,0,2398,' The Skinny Crop Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manu'),(36857,87,0,2398,'/2/4/2432e2e2e2_1_1.jpg'),(36858,88,0,2398,'/2/4/2432e2e2e2_1_1.jpg'),(36859,89,0,2398,'/2/4/2432e2e2e2_1_1.jpg'),(36860,106,0,2398,'container2'),(36861,121,0,2398,'n-the-skinny-crop-blue-small-size'),(36862,132,0,2398,'0'),(36863,133,0,2398,'/2/4/2432e2e2e2_1_1.jpg'),(36868,73,0,2399,' The Skinny Crop-blue-Medium size'),(36869,84,0,2399,' The Skinny Crop'),(36870,86,0,2399,' The Skinny Crop Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manu'),(36871,87,0,2399,'/2/4/2432e2e2e2_2_1.jpg'),(36872,88,0,2399,'/2/4/2432e2e2e2_2_1.jpg'),(36873,89,0,2399,'/2/4/2432e2e2e2_2_1.jpg'),(36874,106,0,2399,'container2'),(36875,121,0,2399,'n-the-skinny-crop-blue-medium-size'),(36876,132,0,2399,'0'),(36877,133,0,2399,'/2/4/2432e2e2e2_2_1.jpg'),(36882,73,0,2400,' The Skinny Crop-red-Extra small size'),(36883,84,0,2400,' The Skinny Crop'),(36884,86,0,2400,' The Skinny Crop Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manu'),(36885,87,0,2400,'/i/m/image_31332644_47_970x1182_0_3.jpg'),(36886,88,0,2400,'/i/m/image_31332644_47_970x1182_0_3.jpg'),(36887,89,0,2400,'/i/m/image_31332644_47_970x1182_0_3.jpg'),(36888,106,0,2400,'container2'),(36889,121,0,2400,'n-the-skinny-crop-red-extra-small-size'),(36890,132,0,2400,'0'),(36891,133,0,2400,'/i/m/image_31332644_47_970x1182_0_3.jpg'),(36896,73,0,2401,' The Skinny Crop-red-Small size'),(36897,84,0,2401,' The Skinny Crop'),(36898,86,0,2401,' The Skinny Crop Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manu'),(36899,87,0,2401,'/i/m/image_31332644_47_970x1182_0_2_1.jpg'),(36900,88,0,2401,'/i/m/image_31332644_47_970x1182_0_2_1.jpg'),(36901,89,0,2401,'/i/m/image_31332644_47_970x1182_0_2_1.jpg'),(36902,106,0,2401,'container2'),(36903,121,0,2401,'n-the-skinny-crop-red-small-size'),(36904,132,0,2401,'0'),(36905,133,0,2401,'/i/m/image_31332644_47_970x1182_0_2_1.jpg'),(36910,73,0,2402,' The Skinny Crop-red-Medium size'),(36911,84,0,2402,' The Skinny Crop'),(36912,86,0,2402,' The Skinny Crop Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manu'),(36913,87,0,2402,'/i/m/image_31332644_47_970x1182_0_3_1.jpg'),(36914,88,0,2402,'/i/m/image_31332644_47_970x1182_0_3_1.jpg'),(36915,89,0,2402,'/i/m/image_31332644_47_970x1182_0_3_1.jpg'),(36916,106,0,2402,'container2'),(36917,121,0,2402,'n-the-skinny-crop-red-medium-size'),(36918,132,0,2402,'0'),(36919,133,0,2402,'/i/m/image_31332644_47_970x1182_0_3_1.jpg'),(36924,73,0,2403,'The Skinny Crop'),(36925,84,0,2403,' The Skinny Crop'),(36926,86,0,2403,' The Skinny Crop Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manu'),(36927,87,0,2403,'no_selection'),(36928,88,0,2403,'no_selection'),(36929,89,0,2403,'/i/m/image_31332644_47_970x1182_0_1_2.jpg'),(36930,106,0,2403,'container2'),(36931,121,0,2403,'n-the-skinny-crop'),(36932,132,0,2403,'2'),(36933,133,0,2403,'no_selection'),(36938,73,0,2404,' Sweat Pants-grey-Extra small size'),(36939,84,0,2404,' Sweat Pants'),(36940,86,0,2404,' Sweat Pants This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to soph'),(36941,87,0,2404,'/i/m/image_31241601_81_620x757_0_3.jpg'),(36942,88,0,2404,'/i/m/image_31241601_81_620x757_0_3.jpg'),(36943,89,0,2404,'/i/m/image_31241601_81_620x757_0_3.jpg'),(36944,106,0,2404,'container2'),(36945,121,0,2404,'n-sweat-pants-grey-extra-small-size'),(36946,132,0,2404,'0'),(36947,133,0,2404,'/i/m/image_31241601_81_620x757_0_3.jpg'),(36948,206,0,2404,'48% polyester, 22% cotton, 15% wool, 15% polyacrylic'),(36953,73,0,2405,' Sweat Pants-grey-Large size'),(36954,84,0,2405,' Sweat Pants'),(36955,86,0,2405,' Sweat Pants This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to soph'),(36956,87,0,2405,'/i/m/image_31241601_81_620x757_0_2_1.jpg'),(36957,88,0,2405,'/i/m/image_31241601_81_620x757_0_2_1.jpg'),(36958,89,0,2405,'/i/m/image_31241601_81_620x757_0_2_1.jpg'),(36959,106,0,2405,'container2'),(36960,121,0,2405,'n-sweat-pants-grey-large-size'),(36961,132,0,2405,'0'),(36962,133,0,2405,'/i/m/image_31241601_81_620x757_0_2_1.jpg'),(36963,206,0,2405,'48% polyester, 22% cotton, 15% wool, 15% polyacrylic'),(36968,73,0,2406,' Sweat Pants-grey-Small size'),(36969,84,0,2406,' Sweat Pants'),(36970,86,0,2406,' Sweat Pants This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to soph'),(36971,87,0,2406,'/i/m/image_31241601_81_620x757_0_3_1.jpg'),(36972,88,0,2406,'/i/m/image_31241601_81_620x757_0_3_1.jpg'),(36973,89,0,2406,'/i/m/image_31241601_81_620x757_0_3_1.jpg'),(36974,106,0,2406,'container2'),(36975,121,0,2406,'n-sweat-pants-grey-small-size'),(36976,132,0,2406,'0'),(36977,133,0,2406,'/i/m/image_31241601_81_620x757_0_3_1.jpg'),(36978,206,0,2406,'48% polyester, 22% cotton, 15% wool, 15% polyacrylic'),(36983,73,0,2407,' Sweat Pants-red-Extra small size'),(36984,84,0,2407,' Sweat Pants'),(36985,86,0,2407,' Sweat Pants This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to soph'),(36986,87,0,2407,'/2/3/232w1w1_3.jpg'),(36987,88,0,2407,'/2/3/232w1w1_3.jpg'),(36988,89,0,2407,'/2/3/232w1w1_3.jpg'),(36989,106,0,2407,'container2'),(36990,121,0,2407,'n-sweat-pants-red-extra-small-size'),(36991,132,0,2407,'0'),(36992,133,0,2407,'/2/3/232w1w1_3.jpg'),(36993,206,0,2407,'48% polyester, 22% cotton, 15% wool, 15% polyacrylic'),(36998,73,0,2408,' Sweat Pants-red-Large size'),(36999,84,0,2408,' Sweat Pants'),(37000,86,0,2408,' Sweat Pants This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to soph'),(37001,87,0,2408,'/2/3/232w1w1_1_1.jpg'),(37002,88,0,2408,'/2/3/232w1w1_1_1.jpg'),(37003,89,0,2408,'/2/3/232w1w1_1_1.jpg'),(37004,106,0,2408,'container2'),(37005,121,0,2408,'n-sweat-pants-red-large-size'),(37006,132,0,2408,'0'),(37007,133,0,2408,'/2/3/232w1w1_1_1.jpg'),(37008,206,0,2408,'48% polyester, 22% cotton, 15% wool, 15% polyacrylic'),(37013,73,0,2409,' Sweat Pants-red-Small size'),(37014,84,0,2409,' Sweat Pants'),(37015,86,0,2409,' Sweat Pants This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to soph'),(37016,87,0,2409,'/2/3/232w1w1_2_1.jpg'),(37017,88,0,2409,'/2/3/232w1w1_2_1.jpg'),(37018,89,0,2409,'/2/3/232w1w1_2_1.jpg'),(37019,106,0,2409,'container2'),(37020,121,0,2409,'n-sweat-pants-red-small-size'),(37021,132,0,2409,'0'),(37022,133,0,2409,'/2/3/232w1w1_2_1.jpg'),(37023,206,0,2409,'48% polyester, 22% cotton, 15% wool, 15% polyacrylic'),(37028,73,0,2410,'Sweat Pants'),(37029,84,0,2410,' Sweat Pants'),(37030,86,0,2410,' Sweat Pants This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to soph'),(37031,87,0,2410,'/i/m/image_31241601_81_620x757_0_1_2.jpg'),(37032,88,0,2410,'/i/m/image_31241601_81_620x757_0_1_2.jpg'),(37033,89,0,2410,'/i/m/image_31241601_81_620x757_0_1_2.jpg'),(37034,106,0,2410,'container2'),(37035,121,0,2410,'n-sweat-pants'),(37036,132,0,2410,'2'),(37037,133,0,2410,'no_selection'),(37038,206,0,2410,'48% polyester, 22% cotton, 15% wool, 15% polyacrylic'),(37043,73,0,2411,'81 Hours Cashmere Pullover-brown-Medium size'),(37044,84,0,2411,'81 Hours Cashmere Pullover'),(37045,86,0,2411,'81 Hours Cashmere Pullover Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufac'),(37046,87,0,2411,'/b/1/b1_64.jpg'),(37047,88,0,2411,'/b/1/b1_64.jpg'),(37048,89,0,2411,'/b/1/b1_64.jpg'),(37049,106,0,2411,'container2'),(37050,121,0,2411,'n-81-hours-cashmere-pullover-brown-medium-size'),(37051,132,0,2411,'0'),(37052,133,0,2411,'/b/1/b1_64.jpg'),(37053,206,0,2411,' 100% cashmere'),(37058,73,0,2412,'81 Hours Cashmere Pullover-brown-Extra small size'),(37059,84,0,2412,'81 Hours Cashmere Pullover'),(37060,86,0,2412,'81 Hours Cashmere Pullover Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufac'),(37061,87,0,2412,'/b/1/b1_64_1.jpg'),(37062,88,0,2412,'/b/1/b1_64_1.jpg'),(37063,89,0,2412,'/b/1/b1_64_1.jpg'),(37064,106,0,2412,'container2'),(37065,121,0,2412,'n-81-hours-cashmere-pullover-brown-extra-small-size'),(37066,132,0,2412,'0'),(37067,133,0,2412,'/b/1/b1_64_1.jpg'),(37068,206,0,2412,' 100% cashmere'),(37073,73,0,2413,'81 Hours Cashmere Pullover-brown-Small size'),(37074,84,0,2413,'81 Hours Cashmere Pullover'),(37075,86,0,2413,'81 Hours Cashmere Pullover Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufac'),(37076,87,0,2413,'/b/1/b1_64_2.jpg'),(37077,88,0,2413,'/b/1/b1_64_2.jpg'),(37078,89,0,2413,'/b/1/b1_64_2.jpg'),(37079,106,0,2413,'container2'),(37080,121,0,2413,'n-81-hours-cashmere-pullover-brown-small-size'),(37081,132,0,2413,'0'),(37082,133,0,2413,'/b/1/b1_64_2.jpg'),(37083,206,0,2413,' 100% cashmere'),(37088,73,0,2414,'81 Hours Cashmere Pullover-black-Medium size'),(37089,84,0,2414,'81 Hours Cashmere Pullover'),(37090,86,0,2414,'81 Hours Cashmere Pullover Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufac'),(37091,87,0,2414,'/d/1/d1_22.jpg'),(37092,88,0,2414,'/d/1/d1_22.jpg'),(37093,89,0,2414,'/d/1/d1_22.jpg'),(37094,106,0,2414,'container2'),(37095,121,0,2414,'n-81-hours-cashmere-pullover-black-medium-size'),(37096,132,0,2414,'0'),(37097,133,0,2414,'/d/1/d1_22.jpg'),(37098,206,0,2414,' 100% cashmere'),(37103,73,0,2415,'81 Hours Cashmere Pullover-black-Extra small size'),(37104,84,0,2415,'81 Hours Cashmere Pullover'),(37105,86,0,2415,'81 Hours Cashmere Pullover Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufac'),(37106,87,0,2415,'/d/1/d1_22_1.jpg'),(37107,88,0,2415,'/d/1/d1_22_1.jpg'),(37108,89,0,2415,'/d/1/d1_22_1.jpg'),(37109,106,0,2415,'container2'),(37110,121,0,2415,'n-81-hours-cashmere-pullover-black-extra-small-size'),(37111,132,0,2415,'0'),(37112,133,0,2415,'/d/1/d1_22_1.jpg'),(37113,206,0,2415,' 100% cashmere'),(37118,73,0,2416,'81 Hours Cashmere Pullover-black-Small size'),(37119,84,0,2416,'81 Hours Cashmere Pullover'),(37120,86,0,2416,'81 Hours Cashmere Pullover Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufac'),(37121,87,0,2416,'/d/1/d1_22_2.jpg'),(37122,88,0,2416,'/d/1/d1_22_2.jpg'),(37123,89,0,2416,'/d/1/d1_22_2.jpg'),(37124,106,0,2416,'container2'),(37125,121,0,2416,'n-81-hours-cashmere-pullover-black-small-size'),(37126,132,0,2416,'0'),(37127,133,0,2416,'/d/1/d1_22_2.jpg'),(37128,206,0,2416,' 100% cashmere'),(37133,73,0,2417,'81 Hours Cashmere Pullover'),(37134,84,0,2417,'81 Hours Cashmere Pullover'),(37135,86,0,2417,'81 Hours Cashmere Pullover Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufac'),(37136,87,0,2417,'/b/1/b1_65.jpg'),(37137,88,0,2417,'/b/1/b1_65.jpg'),(37138,89,0,2417,'/b/1/b1_65.jpg'),(37139,106,0,2417,'container2'),(37140,121,0,2417,'n-81-hours-cashmere-pullover'),(37141,132,0,2417,'2'),(37142,133,0,2417,'/b/1/b1_65.jpg'),(37143,206,0,2417,' 100% cashmere'),(37148,73,0,2418,' Swan Transitional Jacket-brown-Extra small size'),(37149,84,0,2418,' Swan Transitional Jacket'),(37150,86,0,2418,' Swan Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyest'),(37151,87,0,2418,'/i/m/image_31292416_21_970x1182_0_3.jpg'),(37152,88,0,2418,'/i/m/image_31292416_21_970x1182_0_3.jpg'),(37153,89,0,2418,'/i/m/image_31292416_21_970x1182_0_3.jpg'),(37154,106,0,2418,'container2'),(37155,121,0,2418,'n-swan-transitional-jacket-brown-extra-small-size'),(37156,132,0,2418,'0'),(37157,133,0,2418,'/i/m/image_31292416_21_970x1182_0_3.jpg'),(37158,206,0,2418,'100% polyester'),(37163,73,0,2419,' Swan Transitional Jacket-brown-Small size'),(37164,84,0,2419,' Swan Transitional Jacket'),(37165,86,0,2419,' Swan Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyest'),(37166,87,0,2419,'/i/m/image_31292416_21_970x1182_0_2_1.jpg'),(37167,88,0,2419,'/i/m/image_31292416_21_970x1182_0_2_1.jpg'),(37168,89,0,2419,'/i/m/image_31292416_21_970x1182_0_2_1.jpg'),(37169,106,0,2419,'container2'),(37170,121,0,2419,'n-swan-transitional-jacket-brown-small-size'),(37171,132,0,2419,'0'),(37172,133,0,2419,'/i/m/image_31292416_21_970x1182_0_2_1.jpg'),(37173,206,0,2419,'100% polyester'),(37178,73,0,2420,' Swan Transitional Jacket-brown-Medium size'),(37179,84,0,2420,' Swan Transitional Jacket'),(37180,86,0,2420,' Swan Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyest'),(37181,87,0,2420,'/i/m/image_31292416_21_970x1182_0_3_1.jpg'),(37182,88,0,2420,'/i/m/image_31292416_21_970x1182_0_3_1.jpg'),(37183,89,0,2420,'/i/m/image_31292416_21_970x1182_0_3_1.jpg'),(37184,106,0,2420,'container2'),(37185,121,0,2420,'n-swan-transitional-jacket-brown-medium-size'),(37186,132,0,2420,'0'),(37187,133,0,2420,'/i/m/image_31292416_21_970x1182_0_3_1.jpg'),(37188,206,0,2420,'100% polyester'),(37193,73,0,2421,' Swan Transitional Jacket-grey-Extra small size'),(37194,84,0,2421,' Swan Transitional Jacket'),(37195,86,0,2421,' Swan Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyest'),(37196,87,0,2421,'/2/w/2w2w2w111_1_1.jpg'),(37197,88,0,2421,'/2/w/2w2w2w111_1_1.jpg'),(37198,89,0,2421,'/2/w/2w2w2w111_1_1.jpg'),(37199,106,0,2421,'container2'),(37200,121,0,2421,'n-swan-transitional-jacket-grey-extra-small-size'),(37201,132,0,2421,'0'),(37202,133,0,2421,'/2/w/2w2w2w111_1_1.jpg'),(37203,206,0,2421,'100% polyester'),(37208,73,0,2422,' Swan Transitional Jacket-grey-Small size'),(37209,84,0,2422,' Swan Transitional Jacket'),(37210,86,0,2422,' Swan Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyest'),(37211,87,0,2422,'/2/w/2w2w2w111_1_1_1.jpg'),(37212,88,0,2422,'/2/w/2w2w2w111_1_1_1.jpg'),(37213,89,0,2422,'/2/w/2w2w2w111_1_1_1.jpg'),(37214,106,0,2422,'container2'),(37215,121,0,2422,'n-swan-transitional-jacket-grey-small-size'),(37216,132,0,2422,'0'),(37217,133,0,2422,'/2/w/2w2w2w111_1_1_1.jpg'),(37218,206,0,2422,'100% polyester'),(37223,73,0,2423,' Swan Transitional Jacket-grey-Medium size'),(37224,84,0,2423,' Swan Transitional Jacket'),(37225,86,0,2423,' Swan Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyest'),(37226,87,0,2423,'/2/w/2w2w2w111_1_2.jpg'),(37227,88,0,2423,'/2/w/2w2w2w111_1_2.jpg'),(37228,89,0,2423,'/2/w/2w2w2w111_1_2.jpg'),(37229,106,0,2423,'container2'),(37230,121,0,2423,'n-swan-transitional-jacket-grey-medium-size'),(37231,132,0,2423,'0'),(37232,133,0,2423,'/2/w/2w2w2w111_1_2.jpg'),(37233,206,0,2423,'100% polyester'),(37238,73,0,2424,'Swan Transitional Jacket'),(37239,84,0,2424,' Swan Transitional Jacket'),(37240,86,0,2424,' Swan Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyest'),(37241,87,0,2424,'/i/m/image_31292416_21_970x1182_0_1_2.jpg'),(37242,88,0,2424,'/i/m/image_31292416_21_970x1182_0_1_2.jpg'),(37243,89,0,2424,'/i/m/image_31292416_21_970x1182_0_1_2.jpg'),(37244,106,0,2424,'container2'),(37245,121,0,2424,'n-seventy-transitional-jacket-8'),(37246,132,0,2424,'2'),(37247,133,0,2424,'no_selection'),(37248,206,0,2424,'100% polyester'),(37253,73,0,2425,' Strenesse Elegant Jacket-white-Extra small size'),(37254,84,0,2425,' Strenesse Elegant Jacket'),(37255,86,0,2425,' Strenesse Elegant Jacket Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining'),(37256,87,0,2425,'/i/m/image_30811612_22_970x1182_0_3.jpg'),(37257,88,0,2425,'/i/m/image_30811612_22_970x1182_0_3.jpg'),(37258,89,0,2425,'/i/m/image_30811612_22_970x1182_0_3.jpg'),(37259,106,0,2425,'container2'),(37260,121,0,2425,'n-strenesse-elegant-jacket-white-extra-small-size'),(37261,132,0,2425,'0'),(37262,133,0,2425,'/i/m/image_30811612_22_970x1182_0_3.jpg'),(37263,206,0,2425,'77% viscose, 19% polyamide'),(37268,73,0,2426,' Strenesse Elegant Jacket-white-Small size'),(37269,84,0,2426,' Strenesse Elegant Jacket'),(37270,86,0,2426,' Strenesse Elegant Jacket Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining'),(37271,87,0,2426,'/i/m/image_30811612_22_970x1182_0_2_1.jpg'),(37272,88,0,2426,'/i/m/image_30811612_22_970x1182_0_2_1.jpg'),(37273,89,0,2426,'/i/m/image_30811612_22_970x1182_0_2_1.jpg'),(37274,106,0,2426,'container2'),(37275,121,0,2426,'n-strenesse-elegant-jacket-white-small-size'),(37276,132,0,2426,'0'),(37277,133,0,2426,'/i/m/image_30811612_22_970x1182_0_2_1.jpg'),(37278,206,0,2426,'77% viscose, 19% polyamide'),(37283,73,0,2427,' Strenesse Elegant Jacket-white-Medium size'),(37284,84,0,2427,' Strenesse Elegant Jacket'),(37285,86,0,2427,' Strenesse Elegant Jacket Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining'),(37286,87,0,2427,'/i/m/image_30811612_22_970x1182_0_3_1.jpg'),(37287,88,0,2427,'/i/m/image_30811612_22_970x1182_0_3_1.jpg'),(37288,89,0,2427,'/i/m/image_30811612_22_970x1182_0_3_1.jpg'),(37289,106,0,2427,'container2'),(37290,121,0,2427,'n-strenesse-elegant-jacket-white-medium-size'),(37291,132,0,2427,'0'),(37292,133,0,2427,'/i/m/image_30811612_22_970x1182_0_3_1.jpg'),(37293,206,0,2427,'77% viscose, 19% polyamide'),(37298,73,0,2428,' Strenesse Elegant Jacket-blue-Extra small size'),(37299,84,0,2428,' Strenesse Elegant Jacket'),(37300,86,0,2428,' Strenesse Elegant Jacket Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining'),(37301,87,0,2428,'/2/2/22e33r_3.jpg'),(37302,88,0,2428,'/2/2/22e33r_3.jpg'),(37303,89,0,2428,'/2/2/22e33r_3.jpg'),(37304,106,0,2428,'container2'),(37305,121,0,2428,'n-strenesse-elegant-jacket-blue-extra-small-size'),(37306,132,0,2428,'0'),(37307,133,0,2428,'/2/2/22e33r_3.jpg'),(37308,206,0,2428,'77% viscose, 19% polyamide'),(37313,73,0,2429,' Strenesse Elegant Jacket-blue-Small size'),(37314,84,0,2429,' Strenesse Elegant Jacket'),(37315,86,0,2429,' Strenesse Elegant Jacket Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining'),(37316,87,0,2429,'/2/2/22e33r_1_1.jpg'),(37317,88,0,2429,'/2/2/22e33r_1_1.jpg'),(37318,89,0,2429,'/2/2/22e33r_1_1.jpg'),(37319,106,0,2429,'container2'),(37320,121,0,2429,'n-strenesse-elegant-jacket-blue-small-size'),(37321,132,0,2429,'0'),(37322,133,0,2429,'/2/2/22e33r_1_1.jpg'),(37323,206,0,2429,'77% viscose, 19% polyamide'),(37328,73,0,2430,' Strenesse Elegant Jacket-blue-Medium size'),(37329,84,0,2430,' Strenesse Elegant Jacket'),(37330,86,0,2430,' Strenesse Elegant Jacket Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining'),(37331,87,0,2430,'/2/2/22e33r_2_1.jpg'),(37332,88,0,2430,'/2/2/22e33r_2_1.jpg'),(37333,89,0,2430,'/2/2/22e33r_2_1.jpg'),(37334,106,0,2430,'container2'),(37335,121,0,2430,'n-strenesse-elegant-jacket-blue-medium-size'),(37336,132,0,2430,'0'),(37337,133,0,2430,'/2/2/22e33r_2_1.jpg'),(37338,206,0,2430,'77% viscose, 19% polyamide'),(37343,73,0,2431,'Strenesse Elegant Jacket'),(37344,84,0,2431,' Strenesse Elegant Jacket'),(37345,86,0,2431,' Strenesse Elegant Jacket Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining'),(37346,87,0,2431,'/i/m/image_30811612_22_970x1182_0_1_2.jpg'),(37347,88,0,2431,'/i/m/image_30811612_22_970x1182_0_1_2.jpg'),(37348,89,0,2431,'/i/m/image_30811612_22_970x1182_0_1_2.jpg'),(37349,106,0,2431,'container2'),(37350,121,0,2431,'n-seventy-transitional-jacket-2'),(37351,132,0,2431,'2'),(37352,133,0,2431,'no_selection'),(37353,206,0,2431,'77% viscose, 19% polyamide'),(37358,73,0,2432,' Straight Leg Jeans-grey-Extra large size'),(37359,84,0,2432,' Straight Leg Jeans'),(37360,86,0,2432,' Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snap'),(37361,87,0,2432,'/2/3/2323e2e2e_2_1.jpg'),(37362,88,0,2432,'/2/3/2323e2e2e_2_1.jpg'),(37363,89,0,2432,'/2/3/2323e2e2e_2_1.jpg'),(37364,106,0,2432,'container2'),(37365,121,0,2432,'n-straight-leg-jeans-grey-extra-large-size'),(37366,132,0,2432,'0'),(37367,133,0,2432,'/2/3/2323e2e2e_2_1.jpg'),(37372,73,0,2433,' Straight Leg Jeans-grey-Small size'),(37373,84,0,2433,' Straight Leg Jeans'),(37374,86,0,2433,' Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snap'),(37375,87,0,2433,'/2/3/2323e2e2e_2_1_1.jpg'),(37376,88,0,2433,'/2/3/2323e2e2e_2_1_1.jpg'),(37377,89,0,2433,'/2/3/2323e2e2e_2_1_1.jpg'),(37378,106,0,2433,'container2'),(37379,121,0,2433,'n-straight-leg-jeans-grey-small-size'),(37380,132,0,2433,'0'),(37381,133,0,2433,'/2/3/2323e2e2e_2_1_1.jpg'),(37386,73,0,2434,' Straight Leg Jeans-grey-Extra small size'),(37387,84,0,2434,' Straight Leg Jeans'),(37388,86,0,2434,' Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snap'),(37389,87,0,2434,'/2/3/2323e2e2e_2_2.jpg'),(37390,88,0,2434,'/2/3/2323e2e2e_2_2.jpg'),(37391,89,0,2434,'/2/3/2323e2e2e_2_2.jpg'),(37392,106,0,2434,'container2'),(37393,121,0,2434,'n-straight-leg-jeans-grey-extra-small-size'),(37394,132,0,2434,'0'),(37395,133,0,2434,'/2/3/2323e2e2e_2_2.jpg'),(37400,73,0,2435,' Straight Leg Jeans-grey-Large size'),(37401,84,0,2435,' Straight Leg Jeans'),(37402,86,0,2435,' Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snap'),(37403,87,0,2435,'/2/3/2323e2e2e_2_3.jpg'),(37404,88,0,2435,'/2/3/2323e2e2e_2_3.jpg'),(37405,89,0,2435,'/2/3/2323e2e2e_2_3.jpg'),(37406,106,0,2435,'container2'),(37407,121,0,2435,'n-straight-leg-jeans-grey-large-size'),(37408,132,0,2435,'0'),(37409,133,0,2435,'/2/3/2323e2e2e_2_3.jpg'),(37414,73,0,2436,' Straight Leg Jeans-blue-Extra large size'),(37415,84,0,2436,' Straight Leg Jeans'),(37416,86,0,2436,' Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snap'),(37417,87,0,2436,'/i/m/image_31237526_30_970x1182_0_4.jpg'),(37418,88,0,2436,'/i/m/image_31237526_30_970x1182_0_4.jpg'),(37419,89,0,2436,'/i/m/image_31237526_30_970x1182_0_4.jpg'),(37420,106,0,2436,'container2'),(37421,121,0,2436,'n-straight-leg-jeans-blue-extra-large-size'),(37422,132,0,2436,'0'),(37423,133,0,2436,'/i/m/image_31237526_30_970x1182_0_4.jpg'),(37428,73,0,2437,' Straight Leg Jeans-blue-Small size'),(37429,84,0,2437,' Straight Leg Jeans'),(37430,86,0,2437,' Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snap'),(37431,87,0,2437,'/i/m/image_31237526_30_970x1182_0_2_1.jpg'),(37432,88,0,2437,'/i/m/image_31237526_30_970x1182_0_2_1.jpg'),(37433,89,0,2437,'/i/m/image_31237526_30_970x1182_0_2_1.jpg'),(37434,106,0,2437,'container2'),(37435,121,0,2437,'n-straight-leg-jeans-blue-small-size'),(37436,132,0,2437,'0'),(37437,133,0,2437,'/i/m/image_31237526_30_970x1182_0_2_1.jpg'),(37442,73,0,2438,' Straight Leg Jeans-blue-Extra small size'),(37443,84,0,2438,' Straight Leg Jeans'),(37444,86,0,2438,' Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snap'),(37445,87,0,2438,'/i/m/image_31237526_30_970x1182_0_3_1.jpg'),(37446,88,0,2438,'/i/m/image_31237526_30_970x1182_0_3_1.jpg'),(37447,89,0,2438,'/i/m/image_31237526_30_970x1182_0_3_1.jpg'),(37448,106,0,2438,'container2'),(37449,121,0,2438,'n-straight-leg-jeans-blue-extra-small-size'),(37450,132,0,2438,'0'),(37451,133,0,2438,'/i/m/image_31237526_30_970x1182_0_3_1.jpg'),(37456,73,0,2439,' Straight Leg Jeans-blue-Large size'),(37457,84,0,2439,' Straight Leg Jeans'),(37458,86,0,2439,' Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snap'),(37459,87,0,2439,'/i/m/image_31237526_30_970x1182_0_4_1.jpg'),(37460,88,0,2439,'/i/m/image_31237526_30_970x1182_0_4_1.jpg'),(37461,89,0,2439,'/i/m/image_31237526_30_970x1182_0_4_1.jpg'),(37462,106,0,2439,'container2'),(37463,121,0,2439,'n-straight-leg-jeans-blue-large-size'),(37464,132,0,2439,'0'),(37465,133,0,2439,'/i/m/image_31237526_30_970x1182_0_4_1.jpg'),(37470,73,0,2440,'Straight Leg Jeans'),(37471,84,0,2440,' Straight Leg Jeans'),(37472,86,0,2440,' Straight Leg Jeans Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snap'),(37473,87,0,2440,'/i/m/image_31237526_30_970x1182_3_1_2.jpg'),(37474,88,0,2440,'no_selection'),(37475,89,0,2440,'/i/m/image_31237526_30_970x1182_0_1_2.jpg'),(37476,106,0,2440,'container2'),(37477,121,0,2440,'n-straight-leg-jeans'),(37478,132,0,2440,'2'),(37479,133,0,2440,'no_selection'),(37484,73,0,2441,' Sneakers-grey-EU 39'),(37485,84,0,2441,' Sneakers'),(37486,86,0,2441,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37487,87,0,2441,'/2/3/23423433_5.jpg'),(37488,88,0,2441,'/2/3/23423433_5.jpg'),(37489,89,0,2441,'/2/3/23423433_5.jpg'),(37490,106,0,2441,'container2'),(37491,121,0,2441,'n-sneakers-grey-eu-39'),(37492,132,0,2441,'0'),(37493,133,0,2441,'/2/3/23423433_5.jpg'),(37494,206,0,2441,'Synthetic'),(37499,73,0,2442,' Sneakers-grey-EU 40'),(37500,84,0,2442,' Sneakers'),(37501,86,0,2442,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37502,87,0,2442,'/2/3/23423433_1_1.jpg'),(37503,88,0,2442,'/2/3/23423433_1_1.jpg'),(37504,89,0,2442,'/2/3/23423433_1_1.jpg'),(37505,106,0,2442,'container2'),(37506,121,0,2442,'n-sneakers-grey-eu-40'),(37507,132,0,2442,'0'),(37508,133,0,2442,'/2/3/23423433_1_1.jpg'),(37509,206,0,2442,'Synthetic'),(37514,73,0,2443,' Sneakers-grey-EU 37'),(37515,84,0,2443,' Sneakers'),(37516,86,0,2443,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37517,87,0,2443,'/2/3/23423433_2_1.jpg'),(37518,88,0,2443,'/2/3/23423433_2_1.jpg'),(37519,89,0,2443,'/2/3/23423433_2_1.jpg'),(37520,106,0,2443,'container2'),(37521,121,0,2443,'n-sneakers-grey-eu-37'),(37522,132,0,2443,'0'),(37523,133,0,2443,'/2/3/23423433_2_1.jpg'),(37524,206,0,2443,'Synthetic'),(37529,73,0,2444,' Sneakers-grey-EU 38'),(37530,84,0,2444,' Sneakers'),(37531,86,0,2444,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37532,87,0,2444,'/2/3/23423433_3_1.jpg'),(37533,88,0,2444,'/2/3/23423433_3_1.jpg'),(37534,89,0,2444,'/2/3/23423433_3_1.jpg'),(37535,106,0,2444,'container2'),(37536,121,0,2444,'n-sneakers-grey-eu-38'),(37537,132,0,2444,'0'),(37538,133,0,2444,'/2/3/23423433_3_1.jpg'),(37539,206,0,2444,'Synthetic'),(37544,73,0,2445,' Sneakers-grey-EU 41'),(37545,84,0,2445,' Sneakers'),(37546,86,0,2445,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37547,87,0,2445,'/2/3/23423433_4_1.jpg'),(37548,88,0,2445,'/2/3/23423433_4_1.jpg'),(37549,89,0,2445,'/2/3/23423433_4_1.jpg'),(37550,106,0,2445,'container2'),(37551,121,0,2445,'n-sneakers-grey-eu-41'),(37552,132,0,2445,'0'),(37553,133,0,2445,'/2/3/23423433_4_1.jpg'),(37554,206,0,2445,'Synthetic'),(37559,73,0,2446,' Sneakers-white-EU 39'),(37560,84,0,2446,' Sneakers'),(37561,86,0,2446,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37562,87,0,2446,'/i/m/image_31093629_20_620x757_0_5.jpg'),(37563,88,0,2446,'/i/m/image_31093629_20_620x757_0_5.jpg'),(37564,89,0,2446,'/i/m/image_31093629_20_620x757_0_5.jpg'),(37565,106,0,2446,'container2'),(37566,121,0,2446,'n-sneakers-white-eu-39'),(37567,132,0,2446,'0'),(37568,133,0,2446,'/i/m/image_31093629_20_620x757_0_5.jpg'),(37569,206,0,2446,'Synthetic'),(37574,73,0,2447,' Sneakers-white-EU 40'),(37575,84,0,2447,' Sneakers'),(37576,86,0,2447,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37577,87,0,2447,'/i/m/image_31093629_20_620x757_0_2_1.jpg'),(37578,88,0,2447,'/i/m/image_31093629_20_620x757_0_2_1.jpg'),(37579,89,0,2447,'/i/m/image_31093629_20_620x757_0_2_1.jpg'),(37580,106,0,2447,'container2'),(37581,121,0,2447,'n-sneakers-white-eu-40'),(37582,132,0,2447,'0'),(37583,133,0,2447,'/i/m/image_31093629_20_620x757_0_2_1.jpg'),(37584,206,0,2447,'Synthetic'),(37589,73,0,2448,' Sneakers-white-EU 37'),(37590,84,0,2448,' Sneakers'),(37591,86,0,2448,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37592,87,0,2448,'/i/m/image_31093629_20_620x757_0_3_1.jpg'),(37593,88,0,2448,'/i/m/image_31093629_20_620x757_0_3_1.jpg'),(37594,89,0,2448,'/i/m/image_31093629_20_620x757_0_3_1.jpg'),(37595,106,0,2448,'container2'),(37596,121,0,2448,'n-sneakers-white-eu-37'),(37597,132,0,2448,'0'),(37598,133,0,2448,'/i/m/image_31093629_20_620x757_0_3_1.jpg'),(37599,206,0,2448,'Synthetic'),(37604,73,0,2449,' Sneakers-white-EU 38'),(37605,84,0,2449,' Sneakers'),(37606,86,0,2449,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37607,87,0,2449,'/i/m/image_31093629_20_620x757_0_4_1.jpg'),(37608,88,0,2449,'/i/m/image_31093629_20_620x757_0_4_1.jpg'),(37609,89,0,2449,'/i/m/image_31093629_20_620x757_0_4_1.jpg'),(37610,106,0,2449,'container2'),(37611,121,0,2449,'n-sneakers-white-eu-38'),(37612,132,0,2449,'0'),(37613,133,0,2449,'/i/m/image_31093629_20_620x757_0_4_1.jpg'),(37614,206,0,2449,'Synthetic'),(37619,73,0,2450,' Sneakers-white-EU 41'),(37620,84,0,2450,' Sneakers'),(37621,86,0,2450,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37622,87,0,2450,'/i/m/image_31093629_20_620x757_0_5_1.jpg'),(37623,88,0,2450,'/i/m/image_31093629_20_620x757_0_5_1.jpg'),(37624,89,0,2450,'/i/m/image_31093629_20_620x757_0_5_1.jpg'),(37625,106,0,2450,'container2'),(37626,121,0,2450,'n-sneakers-white-eu-41'),(37627,132,0,2450,'0'),(37628,133,0,2450,'/i/m/image_31093629_20_620x757_0_5_1.jpg'),(37629,206,0,2450,'Synthetic'),(37634,73,0,2451,' Sneakers-blue-EU 39'),(37635,84,0,2451,' Sneakers'),(37636,86,0,2451,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37637,87,0,2451,'/2/3/2342ee3e3_5.jpg'),(37638,88,0,2451,'/2/3/2342ee3e3_5.jpg'),(37639,89,0,2451,'/2/3/2342ee3e3_5.jpg'),(37640,106,0,2451,'container2'),(37641,121,0,2451,'n-sneakers-blue-eu-39'),(37642,132,0,2451,'0'),(37643,133,0,2451,'/2/3/2342ee3e3_5.jpg'),(37644,206,0,2451,'Synthetic'),(37649,73,0,2452,' Sneakers-blue-EU 40'),(37650,84,0,2452,' Sneakers'),(37651,86,0,2452,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37652,87,0,2452,'/2/3/2342ee3e3_1_1.jpg'),(37653,88,0,2452,'/2/3/2342ee3e3_1_1.jpg'),(37654,89,0,2452,'/2/3/2342ee3e3_1_1.jpg'),(37655,106,0,2452,'container2'),(37656,121,0,2452,'n-sneakers-blue-eu-40'),(37657,132,0,2452,'0'),(37658,133,0,2452,'/2/3/2342ee3e3_1_1.jpg'),(37659,206,0,2452,'Synthetic'),(37664,73,0,2453,' Sneakers-blue-EU 37'),(37665,84,0,2453,' Sneakers'),(37666,86,0,2453,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37667,87,0,2453,'/2/3/2342ee3e3_2_1.jpg'),(37668,88,0,2453,'/2/3/2342ee3e3_2_1.jpg'),(37669,89,0,2453,'/2/3/2342ee3e3_2_1.jpg'),(37670,106,0,2453,'container2'),(37671,121,0,2453,'n-sneakers-blue-eu-37'),(37672,132,0,2453,'0'),(37673,133,0,2453,'/2/3/2342ee3e3_2_1.jpg'),(37674,206,0,2453,'Synthetic'),(37679,73,0,2454,' Sneakers-blue-EU 38'),(37680,84,0,2454,' Sneakers'),(37681,86,0,2454,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37682,87,0,2454,'/2/3/2342ee3e3_3_1.jpg'),(37683,88,0,2454,'/2/3/2342ee3e3_3_1.jpg'),(37684,89,0,2454,'/2/3/2342ee3e3_3_1.jpg'),(37685,106,0,2454,'container2'),(37686,121,0,2454,'n-sneakers-blue-eu-38'),(37687,132,0,2454,'0'),(37688,133,0,2454,'/2/3/2342ee3e3_3_1.jpg'),(37689,206,0,2454,'Synthetic'),(37694,73,0,2455,' Sneakers-blue-EU 41'),(37695,84,0,2455,' Sneakers'),(37696,86,0,2455,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37697,87,0,2455,'/2/3/2342ee3e3_4_1.jpg'),(37698,88,0,2455,'/2/3/2342ee3e3_4_1.jpg'),(37699,89,0,2455,'/2/3/2342ee3e3_4_1.jpg'),(37700,106,0,2455,'container2'),(37701,121,0,2455,'n-sneakers-blue-eu-41'),(37702,132,0,2455,'0'),(37703,133,0,2455,'/2/3/2342ee3e3_4_1.jpg'),(37704,206,0,2455,'Synthetic'),(37709,73,0,2456,'Sneakers'),(37710,84,0,2456,' Sneakers'),(37711,86,0,2456,' Sneakers \r\nModel: EQT Support ADV PK\r\nMeasurements for size EU 42: heel approx. X high 3 cm (1″)\r\nExtras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthet'),(37712,87,0,2456,'/i/m/image_31093629_20_620x757_0_1_2.jpg'),(37713,88,0,2456,'/i/m/image_31093629_20_620x757_0_1_2.jpg'),(37714,89,0,2456,'/i/m/image_31093629_20_620x757_0_1_2.jpg'),(37715,106,0,2456,'container2'),(37716,121,0,2456,'n-black-chino-5'),(37717,132,0,2456,'2'),(37718,133,0,2456,'no_selection'),(37719,206,0,2456,'Synthetic'),(37868,73,0,2457,' Sneakers-blue-EU 36'),(37869,84,0,2457,' Sneakers'),(37870,86,0,2457,' Sneakers \r\nModel: Forest Grove\r\nMeasurements for size EU 38: sole height 2,5 cm (1″)\r\nExtras: suede, lacing, logo embroidery\r\nOuter material: leather, textile\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(37871,87,0,2457,'/2/3/235423r4f4r_3_1.jpg'),(37872,88,0,2457,'/2/3/235423r4f4r_3_1.jpg'),(37873,89,0,2457,'/2/3/235423r4f4r_3_1.jpg'),(37874,106,0,2457,'container2'),(37875,121,0,2457,'n-sneakers-blue-eu-36'),(37876,132,0,2457,'0'),(37877,133,0,2457,'/2/3/235423r4f4r_3_1.jpg'),(37878,206,0,2457,'Synthetic'),(37883,73,0,2458,' Sneakers-blue-EU 37'),(37884,84,0,2458,' Sneakers'),(37885,86,0,2458,' Sneakers \r\nModel: Forest Grove\r\nMeasurements for size EU 38: sole height 2,5 cm (1″)\r\nExtras: suede, lacing, logo embroidery\r\nOuter material: leather, textile\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(37886,87,0,2458,'/2/3/235423r4f4r_3_1_1.jpg'),(37887,88,0,2458,'/2/3/235423r4f4r_3_1_1.jpg'),(37888,89,0,2458,'/2/3/235423r4f4r_3_1_1.jpg'),(37889,106,0,2458,'container2'),(37890,121,0,2458,'n-sneakers-blue-eu-37'),(37891,132,0,2458,'0'),(37892,133,0,2458,'/2/3/235423r4f4r_3_1_1.jpg'),(37893,206,0,2458,'Synthetic'),(37898,73,0,2459,' Sneakers-blue-EU 40'),(37899,84,0,2459,' Sneakers'),(37900,86,0,2459,' Sneakers \r\nModel: Forest Grove\r\nMeasurements for size EU 38: sole height 2,5 cm (1″)\r\nExtras: suede, lacing, logo embroidery\r\nOuter material: leather, textile\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(37901,87,0,2459,'/2/3/235423r4f4r_3_2.jpg'),(37902,88,0,2459,'/2/3/235423r4f4r_3_2.jpg'),(37903,89,0,2459,'/2/3/235423r4f4r_3_2.jpg'),(37904,106,0,2459,'container2'),(37905,121,0,2459,'n-sneakers-blue-eu-40'),(37906,132,0,2459,'0'),(37907,133,0,2459,'/2/3/235423r4f4r_3_2.jpg'),(37908,206,0,2459,'Synthetic'),(37913,73,0,2460,' Sneakers-blue-EU 38'),(37914,84,0,2460,' Sneakers'),(37915,86,0,2460,' Sneakers \r\nModel: Forest Grove\r\nMeasurements for size EU 38: sole height 2,5 cm (1″)\r\nExtras: suede, lacing, logo embroidery\r\nOuter material: leather, textile\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(37916,87,0,2460,'/2/3/235423r4f4r_3_3.jpg'),(37917,88,0,2460,'/2/3/235423r4f4r_3_3.jpg'),(37918,89,0,2460,'/2/3/235423r4f4r_3_3.jpg'),(37919,106,0,2460,'container2'),(37920,121,0,2460,'n-sneakers-blue-eu-38'),(37921,132,0,2460,'0'),(37922,133,0,2460,'/2/3/235423r4f4r_3_3.jpg'),(37923,206,0,2460,'Synthetic'),(37928,73,0,2461,' Sneakers-red-EU 36'),(37929,84,0,2461,' Sneakers'),(37930,86,0,2461,' Sneakers \r\nModel: Forest Grove\r\nMeasurements for size EU 38: sole height 2,5 cm (1″)\r\nExtras: suede, lacing, logo embroidery\r\nOuter material: leather, textile\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(37931,87,0,2461,'/i/m/image_31333018_65_620x757_0_4.jpg'),(37932,88,0,2461,'/i/m/image_31333018_65_620x757_0_4.jpg'),(37933,89,0,2461,'/i/m/image_31333018_65_620x757_0_4.jpg'),(37934,106,0,2461,'container2'),(37935,121,0,2461,'n-sneakers-red-eu-36'),(37936,132,0,2461,'0'),(37937,133,0,2461,'/i/m/image_31333018_65_620x757_0_4.jpg'),(37938,206,0,2461,'Synthetic'),(37943,73,0,2462,' Sneakers-red-EU 37'),(37944,84,0,2462,' Sneakers'),(37945,86,0,2462,' Sneakers \r\nModel: Forest Grove\r\nMeasurements for size EU 38: sole height 2,5 cm (1″)\r\nExtras: suede, lacing, logo embroidery\r\nOuter material: leather, textile\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(37946,87,0,2462,'/i/m/image_31333018_65_620x757_0_2_1.jpg'),(37947,88,0,2462,'/i/m/image_31333018_65_620x757_0_2_1.jpg'),(37948,89,0,2462,'/i/m/image_31333018_65_620x757_0_2_1.jpg'),(37949,106,0,2462,'container2'),(37950,121,0,2462,'n-sneakers-red-eu-37'),(37951,132,0,2462,'0'),(37952,133,0,2462,'/i/m/image_31333018_65_620x757_0_2_1.jpg'),(37953,206,0,2462,'Synthetic'),(37958,73,0,2463,' Sneakers-red-EU 40'),(37959,84,0,2463,' Sneakers'),(37960,86,0,2463,' Sneakers \r\nModel: Forest Grove\r\nMeasurements for size EU 38: sole height 2,5 cm (1″)\r\nExtras: suede, lacing, logo embroidery\r\nOuter material: leather, textile\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(37961,87,0,2463,'/i/m/image_31333018_65_620x757_0_3_1.jpg'),(37962,88,0,2463,'/i/m/image_31333018_65_620x757_0_3_1.jpg'),(37963,89,0,2463,'/i/m/image_31333018_65_620x757_0_3_1.jpg'),(37964,106,0,2463,'container2'),(37965,121,0,2463,'n-sneakers-red-eu-40'),(37966,132,0,2463,'0'),(37967,133,0,2463,'/i/m/image_31333018_65_620x757_0_3_1.jpg'),(37968,206,0,2463,'Synthetic'),(37973,73,0,2464,' Sneakers-red-EU 38'),(37974,84,0,2464,' Sneakers'),(37975,86,0,2464,' Sneakers \r\nModel: Forest Grove\r\nMeasurements for size EU 38: sole height 2,5 cm (1″)\r\nExtras: suede, lacing, logo embroidery\r\nOuter material: leather, textile\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(37976,87,0,2464,'/i/m/image_31333018_65_620x757_0_4_1.jpg'),(37977,88,0,2464,'/i/m/image_31333018_65_620x757_0_4_1.jpg'),(37978,89,0,2464,'/i/m/image_31333018_65_620x757_0_4_1.jpg'),(37979,106,0,2464,'container2'),(37980,121,0,2464,'n-sneakers-red-eu-38'),(37981,132,0,2464,'0'),(37982,133,0,2464,'/i/m/image_31333018_65_620x757_0_4_1.jpg'),(37983,206,0,2464,'Synthetic'),(37988,73,0,2465,'Sneakers'),(37989,84,0,2465,' Sneakers'),(37990,86,0,2465,' Sneakers \r\nModel: Forest Grove\r\nMeasurements for size EU 38: sole height 2,5 cm (1″)\r\nExtras: suede, lacing, logo embroidery\r\nOuter material: leather, textile\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(37991,87,0,2465,'/i/m/image_31333018_65_620x757_0_1_2.jpg'),(37992,88,0,2465,'/i/m/image_31333018_65_620x757_0_1_2.jpg'),(37993,89,0,2465,'/i/m/image_31333018_65_620x757_0_1_2.jpg'),(37994,106,0,2465,'container2'),(37995,121,0,2465,'n-black-chino-6'),(37996,132,0,2465,'2'),(37997,133,0,2465,'no_selection'),(37998,206,0,2465,'Synthetic'),(38003,73,0,2466,' Sneakers-grey-EU 36'),(38004,84,0,2466,' Sneakers'),(38005,86,0,2466,' Sneakers \r\nMeasurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)\r\nExtras: lacing, elasticated entry, structured surface\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(38006,87,0,2466,'/i/m/image_30945868_82_620x757_0_6.jpg'),(38007,88,0,2466,'/i/m/image_30945868_82_620x757_0_6.jpg'),(38008,89,0,2466,'/i/m/image_30945868_82_620x757_0_6.jpg'),(38009,106,0,2466,'container2'),(38010,121,0,2466,'n-sneakers-grey-eu-36'),(38011,132,0,2466,'0'),(38012,133,0,2466,'/i/m/image_30945868_82_620x757_0_6.jpg'),(38013,206,0,2466,'Synthetic'),(38018,73,0,2467,' Sneakers-grey-EU 39'),(38019,84,0,2467,' Sneakers'),(38020,86,0,2467,' Sneakers \r\nMeasurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)\r\nExtras: lacing, elasticated entry, structured surface\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(38021,87,0,2467,'/i/m/image_30945868_82_620x757_0_2_1.jpg'),(38022,88,0,2467,'/i/m/image_30945868_82_620x757_0_2_1.jpg'),(38023,89,0,2467,'/i/m/image_30945868_82_620x757_0_2_1.jpg'),(38024,106,0,2467,'container2'),(38025,121,0,2467,'n-sneakers-grey-eu-39'),(38026,132,0,2467,'0'),(38027,133,0,2467,'/i/m/image_30945868_82_620x757_0_2_1.jpg'),(38028,206,0,2467,'Synthetic'),(38033,73,0,2468,' Sneakers-grey-EU 40'),(38034,84,0,2468,' Sneakers'),(38035,86,0,2468,' Sneakers \r\nMeasurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)\r\nExtras: lacing, elasticated entry, structured surface\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(38036,87,0,2468,'/i/m/image_30945868_82_620x757_0_3_1.jpg'),(38037,88,0,2468,'/i/m/image_30945868_82_620x757_0_3_1.jpg'),(38038,89,0,2468,'/i/m/image_30945868_82_620x757_0_3_1.jpg'),(38039,106,0,2468,'container2'),(38040,121,0,2468,'n-sneakers-grey-eu-40'),(38041,132,0,2468,'0'),(38042,133,0,2468,'/i/m/image_30945868_82_620x757_0_3_1.jpg'),(38043,206,0,2468,'Synthetic'),(38048,73,0,2469,' Sneakers-grey-EU 43'),(38049,84,0,2469,' Sneakers'),(38050,86,0,2469,' Sneakers \r\nMeasurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)\r\nExtras: lacing, elasticated entry, structured surface\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(38051,87,0,2469,'/i/m/image_30945868_82_620x757_0_4_1.jpg'),(38052,88,0,2469,'/i/m/image_30945868_82_620x757_0_4_1.jpg'),(38053,89,0,2469,'/i/m/image_30945868_82_620x757_0_4_1.jpg'),(38054,106,0,2469,'container2'),(38055,121,0,2469,'n-sneakers-grey-eu-43'),(38056,132,0,2469,'0'),(38057,133,0,2469,'/i/m/image_30945868_82_620x757_0_4_1.jpg'),(38058,206,0,2469,'Synthetic'),(38063,73,0,2470,' Sneakers-grey-EU 38'),(38064,84,0,2470,' Sneakers'),(38065,86,0,2470,' Sneakers \r\nMeasurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)\r\nExtras: lacing, elasticated entry, structured surface\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(38066,87,0,2470,'/i/m/image_30945868_82_620x757_0_5_1.jpg'),(38067,88,0,2470,'/i/m/image_30945868_82_620x757_0_5_1.jpg'),(38068,89,0,2470,'/i/m/image_30945868_82_620x757_0_5_1.jpg'),(38069,106,0,2470,'container2'),(38070,121,0,2470,'n-sneakers-grey-eu-38'),(38071,132,0,2470,'0'),(38072,133,0,2470,'/i/m/image_30945868_82_620x757_0_5_1.jpg'),(38073,206,0,2470,'Synthetic'),(38082,73,0,2471,' Sneakers-grey-EU 41'),(38083,84,0,2471,' Sneakers'),(38084,86,0,2471,' Sneakers \r\nMeasurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)\r\nExtras: lacing, elasticated entry, structured surface\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(38085,87,0,2471,'/i/m/image_30945868_82_620x757_0_6_1.jpg'),(38086,88,0,2471,'/i/m/image_30945868_82_620x757_0_6_1.jpg'),(38087,89,0,2471,'/i/m/image_30945868_82_620x757_0_6_1.jpg'),(38088,106,0,2471,'container2'),(38089,121,0,2471,'n-sneakers-grey-eu-41'),(38090,132,0,2471,'0'),(38091,133,0,2471,'/i/m/image_30945868_82_620x757_0_6_1.jpg'),(38092,206,0,2471,'Synthetic'),(38097,73,0,2472,' Sneakers-black-EU 36'),(38098,84,0,2472,' Sneakers'),(38099,86,0,2472,' Sneakers \r\nMeasurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)\r\nExtras: lacing, elasticated entry, structured surface\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(38100,87,0,2472,'/4/3/43454r4r4r_3_1.jpg'),(38101,88,0,2472,'/4/3/43454r4r4r_3_1.jpg'),(38102,89,0,2472,'/4/3/43454r4r4r_3_1.jpg'),(38103,106,0,2472,'container2'),(38104,121,0,2472,'n-sneakers-black-eu-36'),(38105,132,0,2472,'0'),(38106,133,0,2472,'/4/3/43454r4r4r_3_1.jpg'),(38107,206,0,2472,'Synthetic'),(38116,73,0,2473,' Sneakers-black-EU 39'),(38117,84,0,2473,' Sneakers'),(38118,86,0,2473,' Sneakers \r\nMeasurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)\r\nExtras: lacing, elasticated entry, structured surface\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(38119,87,0,2473,'/4/3/43454r4r4r_3_1_1.jpg'),(38120,88,0,2473,'/4/3/43454r4r4r_3_1_1.jpg'),(38121,89,0,2473,'/4/3/43454r4r4r_3_1_1.jpg'),(38122,106,0,2473,'container2'),(38123,121,0,2473,'n-sneakers-black-eu-39'),(38124,132,0,2473,'0'),(38125,133,0,2473,'/4/3/43454r4r4r_3_1_1.jpg'),(38126,206,0,2473,'Synthetic'),(38131,73,0,2474,' Sneakers-black-EU 40'),(38132,84,0,2474,' Sneakers'),(38133,86,0,2474,' Sneakers \r\nMeasurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)\r\nExtras: lacing, elasticated entry, structured surface\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(38134,87,0,2474,'/4/3/43454r4r4r_3_2.jpg'),(38135,88,0,2474,'/4/3/43454r4r4r_3_2.jpg'),(38136,89,0,2474,'/4/3/43454r4r4r_3_2.jpg'),(38137,106,0,2474,'container2'),(38138,121,0,2474,'n-sneakers-black-eu-40'),(38139,132,0,2474,'0'),(38140,133,0,2474,'/4/3/43454r4r4r_3_2.jpg'),(38141,206,0,2474,'Synthetic'),(38150,73,0,2475,' Sneakers-black-EU 43'),(38151,84,0,2475,' Sneakers'),(38152,86,0,2475,' Sneakers \r\nMeasurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)\r\nExtras: lacing, elasticated entry, structured surface\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(38153,87,0,2475,'/4/3/43454r4r4r_3_3.jpg'),(38154,88,0,2475,'/4/3/43454r4r4r_3_3.jpg'),(38155,89,0,2475,'/4/3/43454r4r4r_3_3.jpg'),(38156,106,0,2475,'container2'),(38157,121,0,2475,'n-sneakers-black-eu-43'),(38158,132,0,2475,'0'),(38159,133,0,2475,'/4/3/43454r4r4r_3_3.jpg'),(38160,206,0,2475,'Synthetic'),(38165,73,0,2476,' Sneakers-black-EU 38'),(38166,84,0,2476,' Sneakers'),(38167,86,0,2476,' Sneakers \r\nMeasurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)\r\nExtras: lacing, elasticated entry, structured surface\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(38168,87,0,2476,'/4/3/43454r4r4r_3_4.jpg'),(38169,88,0,2476,'/4/3/43454r4r4r_3_4.jpg'),(38170,89,0,2476,'/4/3/43454r4r4r_3_4.jpg'),(38171,106,0,2476,'container2'),(38172,121,0,2476,'n-sneakers-black-eu-38'),(38173,132,0,2476,'0'),(38174,133,0,2476,'/4/3/43454r4r4r_3_4.jpg'),(38175,206,0,2476,'Synthetic'),(38184,73,0,2477,' Sneakers-black-EU 41'),(38185,84,0,2477,' Sneakers'),(38186,86,0,2477,' Sneakers \r\nMeasurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)\r\nExtras: lacing, elasticated entry, structured surface\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(38187,87,0,2477,'/4/3/43454r4r4r_3_5.jpg'),(38188,88,0,2477,'/4/3/43454r4r4r_3_5.jpg'),(38189,89,0,2477,'/4/3/43454r4r4r_3_5.jpg'),(38190,106,0,2477,'container2'),(38191,121,0,2477,'n-sneakers-black-eu-41'),(38192,132,0,2477,'0'),(38193,133,0,2477,'/4/3/43454r4r4r_3_5.jpg'),(38194,206,0,2477,'Synthetic'),(38203,73,0,2478,'Sneakers'),(38204,84,0,2478,' Sneakers'),(38205,86,0,2478,' Sneakers \r\nMeasurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″)\r\nExtras: lacing, elasticated entry, structured surface\r\nOuter material: textile, synthetic\r\nInner material: textile\r\nOutsole: synthetic\r\n'),(38206,87,0,2478,'/i/m/image_30945868_82_620x757_0_1_2.jpg'),(38207,88,0,2478,'/i/m/image_30945868_82_620x757_0_1_2.jpg'),(38208,89,0,2478,'/i/m/image_30945868_82_620x757_0_1_2.jpg'),(38209,106,0,2478,'container2'),(38210,121,0,2478,'n-black-chino-7'),(38211,132,0,2478,'2'),(38212,133,0,2478,'no_selection'),(38213,206,0,2478,'Synthetic'),(38358,73,0,2479,' Slim Fit Jeans – Jane-grey-Large size'),(38359,84,0,2479,' Slim Fit Jeans – Jane'),(38360,86,0,2479,' Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the coll'),(38361,87,0,2479,'/2/1/211w1w1w2_3_1.jpg'),(38362,88,0,2479,'/2/1/211w1w1w2_3_1.jpg'),(38363,89,0,2479,'/2/1/211w1w1w2_3_1.jpg'),(38364,106,0,2479,'container2'),(38365,121,0,2479,'n-slim-fit-jeans-jane-grey-large-size'),(38366,132,0,2479,'0'),(38367,133,0,2479,'/2/1/211w1w1w2_3_1.jpg'),(38372,73,0,2480,' Slim Fit Jeans – Jane-grey-Extra small size'),(38373,84,0,2480,' Slim Fit Jeans – Jane'),(38374,86,0,2480,' Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the coll'),(38375,87,0,2480,'/2/1/211w1w1w2_3_1_1.jpg'),(38376,88,0,2480,'/2/1/211w1w1w2_3_1_1.jpg'),(38377,89,0,2480,'/2/1/211w1w1w2_3_1_1.jpg'),(38378,106,0,2480,'container2'),(38379,121,0,2480,'n-slim-fit-jeans-jane-grey-extra-small-size'),(38380,132,0,2480,'0'),(38381,133,0,2480,'/2/1/211w1w1w2_3_1_1.jpg'),(38386,73,0,2481,' Slim Fit Jeans – Jane-grey-Small size'),(38387,84,0,2481,' Slim Fit Jeans – Jane'),(38388,86,0,2481,' Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the coll'),(38389,87,0,2481,'/2/1/211w1w1w2_3_1_2.jpg'),(38390,88,0,2481,'/2/1/211w1w1w2_3_1_2.jpg'),(38391,89,0,2481,'/2/1/211w1w1w2_3_1_2.jpg'),(38392,106,0,2481,'container2'),(38393,121,0,2481,'n-slim-fit-jeans-jane-grey-small-size'),(38394,132,0,2481,'0'),(38395,133,0,2481,'/2/1/211w1w1w2_3_1_2.jpg'),(38400,73,0,2482,' Slim Fit Jeans – Jane-grey-Medium size'),(38401,84,0,2482,' Slim Fit Jeans – Jane'),(38402,86,0,2482,' Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the coll'),(38403,87,0,2482,'/2/1/211w1w1w2_3_1_3.jpg'),(38404,88,0,2482,'/2/1/211w1w1w2_3_1_3.jpg'),(38405,89,0,2482,'/2/1/211w1w1w2_3_1_3.jpg'),(38406,106,0,2482,'container2'),(38407,121,0,2482,'n-slim-fit-jeans-jane-grey-medium-size'),(38408,132,0,2482,'0'),(38409,133,0,2482,'/2/1/211w1w1w2_3_1_3.jpg'),(38414,73,0,2483,' Slim Fit Jeans – Jane-black-Large size'),(38415,84,0,2483,' Slim Fit Jeans – Jane'),(38416,86,0,2483,' Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the coll'),(38417,87,0,2483,'/i/m/image_30930729_37_970x1182_0_2_1.jpg'),(38418,88,0,2483,'/i/m/image_30930729_37_970x1182_0_2_1.jpg'),(38419,89,0,2483,'/i/m/image_30930729_37_970x1182_0_2_1.jpg'),(38420,106,0,2483,'container2'),(38421,121,0,2483,'n-slim-fit-jeans-jane-black-large-size'),(38422,132,0,2483,'0'),(38423,133,0,2483,'/i/m/image_30930729_37_970x1182_0_2_1.jpg'),(38428,73,0,2484,' Slim Fit Jeans – Jane-black-Extra small size'),(38429,84,0,2484,' Slim Fit Jeans – Jane'),(38430,86,0,2484,' Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the coll'),(38431,87,0,2484,'/i/m/image_30930729_37_970x1182_0_2_1_1.jpg'),(38432,88,0,2484,'/i/m/image_30930729_37_970x1182_0_2_1_1.jpg'),(38433,89,0,2484,'/i/m/image_30930729_37_970x1182_0_2_1_1.jpg'),(38434,106,0,2484,'container2'),(38435,121,0,2484,'n-slim-fit-jeans-jane-black-extra-small-size'),(38436,132,0,2484,'0'),(38437,133,0,2484,'/i/m/image_30930729_37_970x1182_0_2_1_1.jpg'),(38442,73,0,2485,' Slim Fit Jeans – Jane-black-Small size'),(38443,84,0,2485,' Slim Fit Jeans – Jane'),(38444,86,0,2485,' Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the coll'),(38445,87,0,2485,'/i/m/image_30930729_37_970x1182_0_2_2.jpg'),(38446,88,0,2485,'/i/m/image_30930729_37_970x1182_0_2_2.jpg'),(38447,89,0,2485,'/i/m/image_30930729_37_970x1182_0_2_2.jpg'),(38448,106,0,2485,'container2'),(38449,121,0,2485,'n-slim-fit-jeans-jane-black-small-size'),(38450,132,0,2485,'0'),(38451,133,0,2485,'/i/m/image_30930729_37_970x1182_0_2_2.jpg'),(38456,73,0,2486,' Slim Fit Jeans – Jane-black-Medium size'),(38457,84,0,2486,' Slim Fit Jeans – Jane'),(38458,86,0,2486,' Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the coll'),(38459,87,0,2486,'/i/m/image_30930729_37_970x1182_0_2_3.jpg'),(38460,88,0,2486,'/i/m/image_30930729_37_970x1182_0_2_3.jpg'),(38461,89,0,2486,'/i/m/image_30930729_37_970x1182_0_2_3.jpg'),(38462,106,0,2486,'container2'),(38463,121,0,2486,'n-slim-fit-jeans-jane-black-medium-size'),(38464,132,0,2486,'0'),(38465,133,0,2486,'/i/m/image_30930729_37_970x1182_0_2_3.jpg'),(38470,73,0,2487,'Slim Fit Jeans – Jane'),(38471,84,0,2487,' Slim Fit Jeans – Jane'),(38472,86,0,2487,' Slim Fit Jeans – Jane Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the coll'),(38473,87,0,2487,'no_selection'),(38474,88,0,2487,'/i/m/image_30930729_37_970x1182_0_3_1.jpg'),(38475,89,0,2487,'/i/m/image_30930729_37_970x1182_0_3_1.jpg'),(38476,106,0,2487,'container2'),(38477,121,0,2487,'n-slim-fit-jeans-jane'),(38478,132,0,2487,'2'),(38479,133,0,2487,'no_selection'),(38484,73,0,2488,' Silver Pumps-grey-EU 36'),(38485,84,0,2488,' Silver Pumps'),(38486,86,0,2488,' Silver Pumps \r\nMeasurements for size EU 39: heel height 7,5 cm (3″)\r\nExtras: a mix of suede and smooth leathers\r\nOuter material: leather\r\nInner material: leather\r\nOutsole: leather\r\nPlease note: Quality leather soles are sensitive to moisture.\r\n'),(38487,87,0,2488,'/i/m/image_31074190_83_620x757_0_6.jpg'),(38488,88,0,2488,'/i/m/image_31074190_83_620x757_0_6.jpg'),(38489,89,0,2488,'/i/m/image_31074190_83_620x757_0_6.jpg'),(38490,106,0,2488,'container2'),(38491,121,0,2488,'n-silver-pumps-grey-eu-36'),(38492,132,0,2488,'0'),(38493,133,0,2488,'/i/m/image_31074190_83_620x757_0_6.jpg'),(38494,206,0,2488,'Leather'),(38499,73,0,2489,' Silver Pumps-grey-EU 39'),(38500,84,0,2489,' Silver Pumps'),(38501,86,0,2489,' Silver Pumps \r\nMeasurements for size EU 39: heel height 7,5 cm (3″)\r\nExtras: a mix of suede and smooth leathers\r\nOuter material: leather\r\nInner material: leather\r\nOutsole: leather\r\nPlease note: Quality leather soles are sensitive to moisture.\r\n'),(38502,87,0,2489,'/i/m/image_31074190_83_620x757_0_2_1.jpg'),(38503,88,0,2489,'/i/m/image_31074190_83_620x757_0_2_1.jpg'),(38504,89,0,2489,'/i/m/image_31074190_83_620x757_0_2_1.jpg'),(38505,106,0,2489,'container2'),(38506,121,0,2489,'n-silver-pumps-grey-eu-39'),(38507,132,0,2489,'0'),(38508,133,0,2489,'/i/m/image_31074190_83_620x757_0_2_1.jpg'),(38509,206,0,2489,'Leather'),(38514,73,0,2490,' Silver Pumps-grey-EU 37'),(38515,84,0,2490,' Silver Pumps'),(38516,86,0,2490,' Silver Pumps \r\nMeasurements for size EU 39: heel height 7,5 cm (3″)\r\nExtras: a mix of suede and smooth leathers\r\nOuter material: leather\r\nInner material: leather\r\nOutsole: leather\r\nPlease note: Quality leather soles are sensitive to moisture.\r\n'),(38517,87,0,2490,'/i/m/image_31074190_83_620x757_0_3_1.jpg'),(38518,88,0,2490,'/i/m/image_31074190_83_620x757_0_3_1.jpg'),(38519,89,0,2490,'/i/m/image_31074190_83_620x757_0_3_1.jpg'),(38520,106,0,2490,'container2'),(38521,121,0,2490,'n-silver-pumps-grey-eu-37'),(38522,132,0,2490,'0'),(38523,133,0,2490,'/i/m/image_31074190_83_620x757_0_3_1.jpg'),(38524,206,0,2490,'Leather'),(38529,73,0,2491,' Silver Pumps-grey-EU 40'),(38530,84,0,2491,' Silver Pumps'),(38531,86,0,2491,' Silver Pumps \r\nMeasurements for size EU 39: heel height 7,5 cm (3″)\r\nExtras: a mix of suede and smooth leathers\r\nOuter material: leather\r\nInner material: leather\r\nOutsole: leather\r\nPlease note: Quality leather soles are sensitive to moisture.\r\n'),(38532,87,0,2491,'/i/m/image_31074190_83_620x757_0_4_1.jpg'),(38533,88,0,2491,'/i/m/image_31074190_83_620x757_0_4_1.jpg'),(38534,89,0,2491,'/i/m/image_31074190_83_620x757_0_4_1.jpg'),(38535,106,0,2491,'container2'),(38536,121,0,2491,'n-silver-pumps-grey-eu-40'),(38537,132,0,2491,'0'),(38538,133,0,2491,'/i/m/image_31074190_83_620x757_0_4_1.jpg'),(38539,206,0,2491,'Leather'),(38544,73,0,2492,' Silver Pumps-grey-EU 38'),(38545,84,0,2492,' Silver Pumps'),(38546,86,0,2492,' Silver Pumps \r\nMeasurements for size EU 39: heel height 7,5 cm (3″)\r\nExtras: a mix of suede and smooth leathers\r\nOuter material: leather\r\nInner material: leather\r\nOutsole: leather\r\nPlease note: Quality leather soles are sensitive to moisture.\r\n'),(38547,87,0,2492,'/i/m/image_31074190_83_620x757_0_5_1.jpg'),(38548,88,0,2492,'/i/m/image_31074190_83_620x757_0_5_1.jpg'),(38549,89,0,2492,'/i/m/image_31074190_83_620x757_0_5_1.jpg'),(38550,106,0,2492,'container2'),(38551,121,0,2492,'n-silver-pumps-grey-eu-38'),(38552,132,0,2492,'0'),(38553,133,0,2492,'/i/m/image_31074190_83_620x757_0_5_1.jpg'),(38554,206,0,2492,'Leather'),(38559,73,0,2493,' Silver Pumps-grey-EU 41'),(38560,84,0,2493,' Silver Pumps'),(38561,86,0,2493,' Silver Pumps \r\nMeasurements for size EU 39: heel height 7,5 cm (3″)\r\nExtras: a mix of suede and smooth leathers\r\nOuter material: leather\r\nInner material: leather\r\nOutsole: leather\r\nPlease note: Quality leather soles are sensitive to moisture.\r\n'),(38562,87,0,2493,'/i/m/image_31074190_83_620x757_0_6_1.jpg'),(38563,88,0,2493,'/i/m/image_31074190_83_620x757_0_6_1.jpg'),(38564,89,0,2493,'/i/m/image_31074190_83_620x757_0_6_1.jpg'),(38565,106,0,2493,'container2'),(38566,121,0,2493,'n-silver-pumps-grey-eu-41'),(38567,132,0,2493,'0'),(38568,133,0,2493,'/i/m/image_31074190_83_620x757_0_6_1.jpg'),(38569,206,0,2493,'Leather'),(38574,73,0,2494,' Silver Pumps-red-EU 36'),(38575,84,0,2494,' Silver Pumps'),(38576,86,0,2494,' Silver Pumps \r\nMeasurements for size EU 39: heel height 7,5 cm (3″)\r\nExtras: a mix of suede and smooth leathers\r\nOuter material: leather\r\nInner material: leather\r\nOutsole: leather\r\nPlease note: Quality leather soles are sensitive to moisture.\r\n'),(38577,87,0,2494,'/2/3/2323r23r_5_1.jpg'),(38578,88,0,2494,'/2/3/2323r23r_5_1.jpg'),(38579,89,0,2494,'/2/3/2323r23r_5_1.jpg'),(38580,106,0,2494,'container2'),(38581,121,0,2494,'n-silver-pumps-red-eu-36'),(38582,132,0,2494,'0'),(38583,133,0,2494,'/2/3/2323r23r_5_1.jpg'),(38584,206,0,2494,'Leather'),(38589,73,0,2495,' Silver Pumps-red-EU 39'),(38590,84,0,2495,' Silver Pumps'),(38591,86,0,2495,' Silver Pumps \r\nMeasurements for size EU 39: heel height 7,5 cm (3″)\r\nExtras: a mix of suede and smooth leathers\r\nOuter material: leather\r\nInner material: leather\r\nOutsole: leather\r\nPlease note: Quality leather soles are sensitive to moisture.\r\n'),(38592,87,0,2495,'/2/3/2323r23r_5_1_1.jpg'),(38593,88,0,2495,'/2/3/2323r23r_5_1_1.jpg'),(38594,89,0,2495,'/2/3/2323r23r_5_1_1.jpg'),(38595,106,0,2495,'container2'),(38596,121,0,2495,'n-silver-pumps-red-eu-39'),(38597,132,0,2495,'0'),(38598,133,0,2495,'/2/3/2323r23r_5_1_1.jpg'),(38599,206,0,2495,'Leather'),(38604,73,0,2496,' Silver Pumps-red-EU 37'),(38605,84,0,2496,' Silver Pumps'),(38606,86,0,2496,' Silver Pumps \r\nMeasurements for size EU 39: heel height 7,5 cm (3″)\r\nExtras: a mix of suede and smooth leathers\r\nOuter material: leather\r\nInner material: leather\r\nOutsole: leather\r\nPlease note: Quality leather soles are sensitive to moisture.\r\n'),(38607,87,0,2496,'/2/3/2323r23r_5_2.jpg'),(38608,88,0,2496,'/2/3/2323r23r_5_2.jpg'),(38609,89,0,2496,'/2/3/2323r23r_5_2.jpg'),(38610,106,0,2496,'container2'),(38611,121,0,2496,'n-silver-pumps-red-eu-37'),(38612,132,0,2496,'0'),(38613,133,0,2496,'/2/3/2323r23r_5_2.jpg'),(38614,206,0,2496,'Leather'),(38619,73,0,2497,' Silver Pumps-red-EU 40'),(38620,84,0,2497,' Silver Pumps'),(38621,86,0,2497,' Silver Pumps \r\nMeasurements for size EU 39: heel height 7,5 cm (3″)\r\nExtras: a mix of suede and smooth leathers\r\nOuter material: leather\r\nInner material: leather\r\nOutsole: leather\r\nPlease note: Quality leather soles are sensitive to moisture.\r\n'),(38622,87,0,2497,'/2/3/2323r23r_5_3.jpg'),(38623,88,0,2497,'/2/3/2323r23r_5_3.jpg'),(38624,89,0,2497,'/2/3/2323r23r_5_3.jpg'),(38625,106,0,2497,'container2'),(38626,121,0,2497,'n-silver-pumps-red-eu-40'),(38627,132,0,2497,'0'),(38628,133,0,2497,'/2/3/2323r23r_5_3.jpg'),(38629,206,0,2497,'Leather'),(38634,73,0,2498,' Silver Pumps-red-EU 38'),(38635,84,0,2498,' Silver Pumps'),(38636,86,0,2498,' Silver Pumps \r\nMeasurements for size EU 39: heel height 7,5 cm (3″)\r\nExtras: a mix of suede and smooth leathers\r\nOuter material: leather\r\nInner material: leather\r\nOutsole: leather\r\nPlease note: Quality leather soles are sensitive to moisture.\r\n'),(38637,87,0,2498,'/2/3/2323r23r_5_4.jpg'),(38638,88,0,2498,'/2/3/2323r23r_5_4.jpg'),(38639,89,0,2498,'/2/3/2323r23r_5_4.jpg'),(38640,106,0,2498,'container2'),(38641,121,0,2498,'n-silver-pumps-red-eu-38'),(38642,132,0,2498,'0'),(38643,133,0,2498,'/2/3/2323r23r_5_4.jpg'),(38644,206,0,2498,'Leather'),(38649,73,0,2499,' Silver Pumps-red-EU 41'),(38650,84,0,2499,' Silver Pumps'),(38651,86,0,2499,' Silver Pumps \r\nMeasurements for size EU 39: heel height 7,5 cm (3″)\r\nExtras: a mix of suede and smooth leathers\r\nOuter material: leather\r\nInner material: leather\r\nOutsole: leather\r\nPlease note: Quality leather soles are sensitive to moisture.\r\n'),(38652,87,0,2499,'/2/3/2323r23r_5_5.jpg'),(38653,88,0,2499,'/2/3/2323r23r_5_5.jpg'),(38654,89,0,2499,'/2/3/2323r23r_5_5.jpg'),(38655,106,0,2499,'container2'),(38656,121,0,2499,'n-silver-pumps-red-eu-41'),(38657,132,0,2499,'0'),(38658,133,0,2499,'/2/3/2323r23r_5_5.jpg'),(38659,206,0,2499,'Leather'),(38664,73,0,2500,'Silver Pumps'),(38665,84,0,2500,' Silver Pumps'),(38666,86,0,2500,' Silver Pumps \r\nMeasurements for size EU 39: heel height 7,5 cm (3″)\r\nExtras: a mix of suede and smooth leathers\r\nOuter material: leather\r\nInner material: leather\r\nOutsole: leather\r\nPlease note: Quality leather soles are sensitive to moisture.\r\n'),(38667,87,0,2500,'/i/m/image_31074190_83_620x757_0_1_2.jpg'),(38668,88,0,2500,'/i/m/image_31074190_83_620x757_0_1_2.jpg'),(38669,89,0,2500,'/i/m/image_31074190_83_620x757_0_1_2.jpg'),(38670,106,0,2500,'container2'),(38671,121,0,2500,'n-black-chino-1'),(38672,132,0,2500,'2'),(38673,133,0,2500,'no_selection'),(38674,206,0,2500,'Leather'),(38679,73,0,2501,' Grey Slim Fit Jeans Cirrus-grey-Large size'),(38680,84,0,2501,' Grey Slim Fit Jeans Cirrus'),(38681,86,0,2501,' Grey Slim Fit Jeans Cirrus It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose'),(38682,87,0,2501,'/i/m/image_31304863_80_970x1182_0_3.jpg'),(38683,88,0,2501,'/i/m/image_31304863_80_970x1182_0_3.jpg'),(38684,89,0,2501,'/i/m/image_31304863_80_970x1182_0_3.jpg'),(38685,106,0,2501,'container2'),(38686,121,0,2501,'n-grey-slim-fit-jeans-cirrus-grey-large-size'),(38687,132,0,2501,'0'),(38688,133,0,2501,'/i/m/image_31304863_80_970x1182_0_3.jpg'),(38689,206,0,2501,'98% cotton, 2% elastane'),(38694,73,0,2502,' Grey Slim Fit Jeans Cirrus-grey-Small size'),(38695,84,0,2502,' Grey Slim Fit Jeans Cirrus'),(38696,86,0,2502,' Grey Slim Fit Jeans Cirrus It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose'),(38697,87,0,2502,'/i/m/image_31304863_80_970x1182_0_2_1.jpg'),(38698,88,0,2502,'/i/m/image_31304863_80_970x1182_0_2_1.jpg'),(38699,89,0,2502,'/i/m/image_31304863_80_970x1182_0_2_1.jpg'),(38700,106,0,2502,'container2'),(38701,121,0,2502,'n-grey-slim-fit-jeans-cirrus-grey-small-size'),(38702,132,0,2502,'0'),(38703,133,0,2502,'/i/m/image_31304863_80_970x1182_0_2_1.jpg'),(38704,206,0,2502,'98% cotton, 2% elastane'),(38709,73,0,2503,' Grey Slim Fit Jeans Cirrus-grey-Medium size'),(38710,84,0,2503,' Grey Slim Fit Jeans Cirrus'),(38711,86,0,2503,' Grey Slim Fit Jeans Cirrus It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose'),(38712,87,0,2503,'/i/m/image_31304863_80_970x1182_0_3_1.jpg'),(38713,88,0,2503,'/i/m/image_31304863_80_970x1182_0_3_1.jpg'),(38714,89,0,2503,'/i/m/image_31304863_80_970x1182_0_3_1.jpg'),(38715,106,0,2503,'container2'),(38716,121,0,2503,'n-grey-slim-fit-jeans-cirrus-grey-medium-size'),(38717,132,0,2503,'0'),(38718,133,0,2503,'/i/m/image_31304863_80_970x1182_0_3_1.jpg'),(38719,206,0,2503,'98% cotton, 2% elastane'),(38724,73,0,2504,' Grey Slim Fit Jeans Cirrus-black-Large size'),(38725,84,0,2504,' Grey Slim Fit Jeans Cirrus'),(38726,86,0,2504,' Grey Slim Fit Jeans Cirrus It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose'),(38727,87,0,2504,'/e/d/eded3_2_1.jpg'),(38728,88,0,2504,'/e/d/eded3_2_1.jpg'),(38729,89,0,2504,'/e/d/eded3_2_1.jpg'),(38730,106,0,2504,'container2'),(38731,121,0,2504,'n-grey-slim-fit-jeans-cirrus-black-large-size'),(38732,132,0,2504,'0'),(38733,133,0,2504,'/e/d/eded3_2_1.jpg'),(38734,206,0,2504,'98% cotton, 2% elastane'),(38739,73,0,2505,' Grey Slim Fit Jeans Cirrus-black-Small size'),(38740,84,0,2505,' Grey Slim Fit Jeans Cirrus'),(38741,86,0,2505,' Grey Slim Fit Jeans Cirrus It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose'),(38742,87,0,2505,'/e/d/eded3_2_1_1.jpg'),(38743,88,0,2505,'/e/d/eded3_2_1_1.jpg'),(38744,89,0,2505,'/e/d/eded3_2_1_1.jpg'),(38745,106,0,2505,'container2'),(38746,121,0,2505,'n-grey-slim-fit-jeans-cirrus-black-small-size'),(38747,132,0,2505,'0'),(38748,133,0,2505,'/e/d/eded3_2_1_1.jpg'),(38749,206,0,2505,'98% cotton, 2% elastane'),(38754,73,0,2506,' Grey Slim Fit Jeans Cirrus-black-Medium size'),(38755,84,0,2506,' Grey Slim Fit Jeans Cirrus'),(38756,86,0,2506,' Grey Slim Fit Jeans Cirrus It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose'),(38757,87,0,2506,'/e/d/eded3_2_2.jpg'),(38758,88,0,2506,'/e/d/eded3_2_2.jpg'),(38759,89,0,2506,'/e/d/eded3_2_2.jpg'),(38760,106,0,2506,'container2'),(38761,121,0,2506,'n-grey-slim-fit-jeans-cirrus-black-medium-size'),(38762,132,0,2506,'0'),(38763,133,0,2506,'/e/d/eded3_2_2.jpg'),(38764,206,0,2506,'98% cotton, 2% elastane'),(38769,73,0,2507,'Grey Slim Fit Jeans Cirrus'),(38770,84,0,2507,' Grey Slim Fit Jeans Cirrus'),(38771,86,0,2507,' Grey Slim Fit Jeans Cirrus It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose'),(38772,87,0,2507,'/i/m/image_31304863_80_970x1182_0_1_2.jpg'),(38773,88,0,2507,'/i/m/image_31304863_80_970x1182_0_1_2.jpg'),(38774,89,0,2507,'/i/m/image_31304863_80_970x1182_0_1_2.jpg'),(38775,106,0,2507,'container2'),(38776,121,0,2507,'n-grey-slim-fit-jeans-cirrus'),(38777,132,0,2507,'2'),(38778,133,0,2507,'no_selection'),(38779,206,0,2507,'98% cotton, 2% elastane'),(38784,73,0,2508,' Khaki Straight Leg Jeans Cadiz-brown-Large size'),(38785,84,0,2508,' Khaki Straight Leg Jeans Cadiz'),(38786,86,0,2508,' Khaki Straight Leg Jeans Cadiz Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Stra'),(38787,87,0,2508,'/i/m/image_31204067_55_970x1182_0_2.jpg'),(38788,88,0,2508,'/i/m/image_31204067_55_970x1182_0_2.jpg'),(38789,89,0,2508,'/i/m/image_31204067_55_970x1182_0_2.jpg'),(38790,106,0,2508,'container2'),(38791,121,0,2508,'n-khaki-straight-leg-jeans-cadiz-brown-large-size'),(38792,132,0,2508,'0'),(38793,133,0,2508,'/i/m/image_31204067_55_970x1182_0_2.jpg'),(38794,206,0,2508,'67% cotton, 30% polyester, 3% elastane'),(38799,73,0,2509,' Khaki Straight Leg Jeans Cadiz-brown-Small size'),(38800,84,0,2509,' Khaki Straight Leg Jeans Cadiz'),(38801,86,0,2509,' Khaki Straight Leg Jeans Cadiz Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Stra'),(38802,87,0,2509,'/i/m/image_31204067_55_970x1182_0_2_2.jpg'),(38803,88,0,2509,'/i/m/image_31204067_55_970x1182_0_2_2.jpg'),(38804,89,0,2509,'/i/m/image_31204067_55_970x1182_0_2_2.jpg'),(38805,106,0,2509,'container2'),(38806,121,0,2509,'n-khaki-straight-leg-jeans-cadiz-brown-small-size'),(38807,132,0,2509,'0'),(38808,133,0,2509,'/i/m/image_31204067_55_970x1182_0_2_2.jpg'),(38809,206,0,2509,'67% cotton, 30% polyester, 3% elastane'),(38814,73,0,2510,' Khaki Straight Leg Jeans Cadiz-brown-Medium size'),(38815,84,0,2510,' Khaki Straight Leg Jeans Cadiz'),(38816,86,0,2510,' Khaki Straight Leg Jeans Cadiz Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Stra'),(38817,87,0,2510,'/i/m/image_31204067_55_970x1182_0_3_1.jpg'),(38818,88,0,2510,'/i/m/image_31204067_55_970x1182_0_3_1.jpg'),(38819,89,0,2510,'/i/m/image_31204067_55_970x1182_0_3_1.jpg'),(38820,106,0,2510,'container2'),(38821,121,0,2510,'n-khaki-straight-leg-jeans-cadiz-brown-medium-size'),(38822,132,0,2510,'0'),(38823,133,0,2510,'/i/m/image_31204067_55_970x1182_0_3_1.jpg'),(38824,206,0,2510,'67% cotton, 30% polyester, 3% elastane'),(38829,73,0,2511,' Khaki Straight Leg Jeans Cadiz-blue-Large size'),(38830,84,0,2511,' Khaki Straight Leg Jeans Cadiz'),(38831,86,0,2511,' Khaki Straight Leg Jeans Cadiz Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Stra'),(38832,87,0,2511,'/8/u/8u7yhuhu_2_1_1.jpg'),(38833,88,0,2511,'/8/u/8u7yhuhu_2_1_1.jpg'),(38834,89,0,2511,'/8/u/8u7yhuhu_2_1_1.jpg'),(38835,106,0,2511,'container2'),(38836,121,0,2511,'n-khaki-straight-leg-jeans-cadiz-blue-large-size'),(38837,132,0,2511,'0'),(38838,133,0,2511,'/8/u/8u7yhuhu_2_1_1.jpg'),(38839,206,0,2511,'67% cotton, 30% polyester, 3% elastane'),(38844,73,0,2512,' Khaki Straight Leg Jeans Cadiz-blue-Small size'),(38845,84,0,2512,' Khaki Straight Leg Jeans Cadiz'),(38846,86,0,2512,' Khaki Straight Leg Jeans Cadiz Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Stra'),(38847,87,0,2512,'/8/u/8u7yhuhu_2_1_1_1.jpg'),(38848,88,0,2512,'/8/u/8u7yhuhu_2_1_1_1.jpg'),(38849,89,0,2512,'/8/u/8u7yhuhu_2_1_1_1.jpg'),(38850,106,0,2512,'container2'),(38851,121,0,2512,'n-khaki-straight-leg-jeans-cadiz-blue-small-size'),(38852,132,0,2512,'0'),(38853,133,0,2512,'/8/u/8u7yhuhu_2_1_1_1.jpg'),(38854,206,0,2512,'67% cotton, 30% polyester, 3% elastane'),(38859,73,0,2513,' Khaki Straight Leg Jeans Cadiz-blue-Medium size'),(38860,84,0,2513,' Khaki Straight Leg Jeans Cadiz'),(38861,86,0,2513,' Khaki Straight Leg Jeans Cadiz Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Stra'),(38862,87,0,2513,'/8/u/8u7yhuhu_2_1_2.jpg'),(38863,88,0,2513,'/8/u/8u7yhuhu_2_1_2.jpg'),(38864,89,0,2513,'/8/u/8u7yhuhu_2_1_2.jpg'),(38865,106,0,2513,'container2'),(38866,121,0,2513,'n-khaki-straight-leg-jeans-cadiz-blue-medium-size'),(38867,132,0,2513,'0'),(38868,133,0,2513,'/8/u/8u7yhuhu_2_1_2.jpg'),(38869,206,0,2513,'67% cotton, 30% polyester, 3% elastane'),(38874,73,0,2514,' Khaki Straight Leg Jeans Cadiz-black-Large size'),(38875,84,0,2514,' Khaki Straight Leg Jeans Cadiz'),(38876,86,0,2514,' Khaki Straight Leg Jeans Cadiz Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Stra'),(38877,87,0,2514,'/4/r/4r4f4f4_1_1.jpg'),(38878,88,0,2514,'/4/r/4r4f4f4_1_1.jpg'),(38879,89,0,2514,'/4/r/4r4f4f4_1_1.jpg'),(38880,106,0,2514,'container2'),(38881,121,0,2514,'n-khaki-straight-leg-jeans-cadiz-black-large-size'),(38882,132,0,2514,'0'),(38883,133,0,2514,'/4/r/4r4f4f4_1_1.jpg'),(38884,206,0,2514,'67% cotton, 30% polyester, 3% elastane'),(38889,73,0,2515,' Khaki Straight Leg Jeans Cadiz-black-Small size'),(38890,84,0,2515,' Khaki Straight Leg Jeans Cadiz'),(38891,86,0,2515,' Khaki Straight Leg Jeans Cadiz Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Stra'),(38892,87,0,2515,'/4/r/4r4f4f4_1_1_1.jpg'),(38893,88,0,2515,'/4/r/4r4f4f4_1_1_1.jpg'),(38894,89,0,2515,'/4/r/4r4f4f4_1_1_1.jpg'),(38895,106,0,2515,'container2'),(38896,121,0,2515,'n-khaki-straight-leg-jeans-cadiz-black-small-size'),(38897,132,0,2515,'0'),(38898,133,0,2515,'/4/r/4r4f4f4_1_1_1.jpg'),(38899,206,0,2515,'67% cotton, 30% polyester, 3% elastane'),(38904,73,0,2516,' Khaki Straight Leg Jeans Cadiz-black-Medium size'),(38905,84,0,2516,' Khaki Straight Leg Jeans Cadiz'),(38906,86,0,2516,' Khaki Straight Leg Jeans Cadiz Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Stra'),(38907,87,0,2516,'/4/r/4r4f4f4_1_2.jpg'),(38908,88,0,2516,'/4/r/4r4f4f4_1_2.jpg'),(38909,89,0,2516,'/4/r/4r4f4f4_1_2.jpg'),(38910,106,0,2516,'container2'),(38911,121,0,2516,'n-khaki-straight-leg-jeans-cadiz-black-medium-size'),(38912,132,0,2516,'0'),(38913,133,0,2516,'/4/r/4r4f4f4_1_2.jpg'),(38914,206,0,2516,'67% cotton, 30% polyester, 3% elastane'),(38919,73,0,2517,'Khaki Straight Leg Jeans Cadiz'),(38920,84,0,2517,' Khaki Straight Leg Jeans Cadiz'),(38921,86,0,2517,' Khaki Straight Leg Jeans Cadiz Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Stra'),(38922,87,0,2517,'/i/m/image_31204067_55_970x1182_0_1_1.jpg'),(38923,88,0,2517,'/i/m/image_31204067_55_970x1182_0_1_1.jpg'),(38924,89,0,2517,'/i/m/image_31204067_55_970x1182_0_1_1.jpg'),(38925,106,0,2517,'container2'),(38926,121,0,2517,'n-khaki-straight-leg-jeans-cadiz'),(38927,132,0,2517,'2'),(38928,133,0,2517,'no_selection'),(38929,206,0,2517,'67% cotton, 30% polyester, 3% elastane'),(38945,73,0,2518,' Black Standard Jeans-grey-Large size'),(38946,84,0,2518,' Black Standard Jeans'),(38947,86,0,2518,' Black Standard Jeans The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware an'),(38948,87,0,2518,'/i/m/image_31124658_10_970x1182_0_4.jpg'),(38949,88,0,2518,'/i/m/image_31124658_10_970x1182_0_4.jpg'),(38950,89,0,2518,'/i/m/image_31124658_10_970x1182_0_4.jpg'),(38951,106,0,2518,'container2'),(38952,121,0,2518,'n-black-standard-jeans-grey-large-size'),(38953,132,0,2518,'0'),(38954,133,0,2518,'/i/m/image_31124658_10_970x1182_0_4.jpg'),(38955,206,0,2518,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(38960,73,0,2519,' Black Standard Jeans-grey-Small size'),(38961,84,0,2519,' Black Standard Jeans'),(38962,86,0,2519,' Black Standard Jeans The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware an'),(38963,87,0,2519,'/i/m/image_31124658_10_970x1182_0_2_2.jpg'),(38964,88,0,2519,'/i/m/image_31124658_10_970x1182_0_2_2.jpg'),(38965,89,0,2519,'/i/m/image_31124658_10_970x1182_0_2_2.jpg'),(38966,106,0,2519,'container2'),(38967,121,0,2519,'n-black-standard-jeans-grey-small-size'),(38968,132,0,2519,'0'),(38969,133,0,2519,'/i/m/image_31124658_10_970x1182_0_2_2.jpg'),(38970,206,0,2519,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(38975,73,0,2520,' Black Standard Jeans-grey-Medium size'),(38976,84,0,2520,' Black Standard Jeans'),(38977,86,0,2520,' Black Standard Jeans The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware an'),(38978,87,0,2520,'/i/m/image_31124658_10_970x1182_0_3_1.jpg'),(38979,88,0,2520,'/i/m/image_31124658_10_970x1182_0_3_1.jpg'),(38980,89,0,2520,'/i/m/image_31124658_10_970x1182_0_3_1.jpg'),(38981,106,0,2520,'container2'),(38982,121,0,2520,'n-black-standard-jeans-grey-medium-size'),(38983,132,0,2520,'0'),(38984,133,0,2520,'/i/m/image_31124658_10_970x1182_0_3_1.jpg'),(38985,206,0,2520,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(38990,73,0,2521,' Black Standard Jeans-brown-Large size'),(38991,84,0,2521,' Black Standard Jeans'),(38992,86,0,2521,' Black Standard Jeans The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware an'),(38993,87,0,2521,'/8/7/87yygyg6g_2_3.jpg'),(38994,88,0,2521,'/8/7/87yygyg6g_2_3.jpg'),(38995,89,0,2521,'/8/7/87yygyg6g_2_3.jpg'),(38996,106,0,2521,'container2'),(38997,121,0,2521,'n-black-standard-jeans-brown-large-size'),(38998,132,0,2521,'0'),(38999,133,0,2521,'/8/7/87yygyg6g_2_3.jpg'),(39000,206,0,2521,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(39005,73,0,2522,' Black Standard Jeans-brown-Small size'),(39006,84,0,2522,' Black Standard Jeans'),(39007,86,0,2522,' Black Standard Jeans The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware an'),(39008,87,0,2522,'/8/7/87yygyg6g_2_1_2.jpg'),(39009,88,0,2522,'/8/7/87yygyg6g_2_1_2.jpg'),(39010,89,0,2522,'/8/7/87yygyg6g_2_1_2.jpg'),(39011,106,0,2522,'container2'),(39012,121,0,2522,'n-black-standard-jeans-brown-small-size'),(39013,132,0,2522,'0'),(39014,133,0,2522,'/8/7/87yygyg6g_2_1_2.jpg'),(39015,206,0,2522,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(39020,73,0,2523,' Black Standard Jeans-brown-Medium size'),(39021,84,0,2523,' Black Standard Jeans'),(39022,86,0,2523,' Black Standard Jeans The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware an'),(39023,87,0,2523,'/8/7/87yygyg6g_2_2_2.jpg'),(39024,88,0,2523,'/8/7/87yygyg6g_2_2_2.jpg'),(39025,89,0,2523,'/8/7/87yygyg6g_2_2_2.jpg'),(39026,106,0,2523,'container2'),(39027,121,0,2523,'n-black-standard-jeans-brown-medium-size'),(39028,132,0,2523,'0'),(39029,133,0,2523,'/8/7/87yygyg6g_2_2_2.jpg'),(39030,206,0,2523,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(39035,73,0,2524,'Black Standard Jeans'),(39036,84,0,2524,' Black Standard Jeans'),(39037,86,0,2524,' Black Standard Jeans The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware an'),(39038,87,0,2524,'/i/m/image_31124658_10_970x1182_0_1_2.jpg'),(39039,88,0,2524,'/i/m/image_31124658_10_970x1182_0_1_2.jpg'),(39040,89,0,2524,'/i/m/image_31124658_10_970x1182_0_1_2.jpg'),(39041,106,0,2524,'container2'),(39042,121,0,2524,'n-black-standard-jeans'),(39043,132,0,2524,'2'),(39044,133,0,2524,'no_selection'),(39045,206,0,2524,'64% Lyocell, 30% cotton, 4% Elastomultiester'),(39050,206,0,2234,'Plastic'),(39055,206,0,2222,'Leather'),(39060,206,0,2020,'Leather'),(39065,206,0,2212,'titanium, plastic'),(39074,206,0,2207,'titanium, plastic'),(39079,206,0,2001,'Plastic'),(39084,206,0,2190,'Titanium'),(39089,206,0,2171,'Leather'),(39094,206,0,2149,'leather'),(39103,73,0,2525,'Silk Pumps-brown-EU 36'),(39104,84,0,2525,'Silk Pumps'),(39105,86,0,2525,'Silk Pumps \r\nMeasurements for size EU 39: heel height 9 cm (3.5″)\r\nExtras: fabric trim, Floral appliqués\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(39106,87,0,2525,'/b/1/b1_66.jpg'),(39107,88,0,2525,'/b/1/b1_66.jpg'),(39108,89,0,2525,'/b/1/b1_66.jpg'),(39109,106,0,2525,'container2'),(39110,121,0,2525,'n-silk-pumps-brown-eu-36'),(39111,132,0,2525,'0'),(39112,133,0,2525,'/b/1/b1_66.jpg'),(39113,206,0,2525,'Synthetic'),(39118,73,0,2526,'Silk Pumps-brown-EU 37'),(39119,84,0,2526,'Silk Pumps'),(39120,86,0,2526,'Silk Pumps \r\nMeasurements for size EU 39: heel height 9 cm (3.5″)\r\nExtras: fabric trim, Floral appliqués\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(39121,87,0,2526,'/b/1/b1_66_1.jpg'),(39122,88,0,2526,'/b/1/b1_66_1.jpg'),(39123,89,0,2526,'/b/1/b1_66_1.jpg'),(39124,106,0,2526,'container2'),(39125,121,0,2526,'n-silk-pumps-brown-eu-37'),(39126,132,0,2526,'0'),(39127,133,0,2526,'/b/1/b1_66_1.jpg'),(39128,206,0,2526,'Synthetic'),(39133,73,0,2527,'Silk Pumps-brown-EU 40'),(39134,84,0,2527,'Silk Pumps'),(39135,86,0,2527,'Silk Pumps \r\nMeasurements for size EU 39: heel height 9 cm (3.5″)\r\nExtras: fabric trim, Floral appliqués\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(39136,87,0,2527,'/b/1/b1_66_2.jpg'),(39137,88,0,2527,'/b/1/b1_66_2.jpg'),(39138,89,0,2527,'/b/1/b1_66_2.jpg'),(39139,106,0,2527,'container2'),(39140,121,0,2527,'n-silk-pumps-brown-eu-40'),(39141,132,0,2527,'0'),(39142,133,0,2527,'/b/1/b1_66_2.jpg'),(39143,206,0,2527,'Synthetic'),(39148,73,0,2528,'Silk Pumps-brown-EU 38'),(39149,84,0,2528,'Silk Pumps'),(39150,86,0,2528,'Silk Pumps \r\nMeasurements for size EU 39: heel height 9 cm (3.5″)\r\nExtras: fabric trim, Floral appliqués\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(39151,87,0,2528,'/b/1/b1_66_3.jpg'),(39152,88,0,2528,'/b/1/b1_66_3.jpg'),(39153,89,0,2528,'/b/1/b1_66_3.jpg'),(39154,106,0,2528,'container2'),(39155,121,0,2528,'n-silk-pumps-brown-eu-38'),(39156,132,0,2528,'0'),(39157,133,0,2528,'/b/1/b1_66_3.jpg'),(39158,206,0,2528,'Synthetic'),(39163,73,0,2529,'Silk Pumps-blue-EU 36'),(39164,84,0,2529,'Silk Pumps'),(39165,86,0,2529,'Silk Pumps \r\nMeasurements for size EU 39: heel height 9 cm (3.5″)\r\nExtras: fabric trim, Floral appliqués\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(39166,87,0,2529,'/1/_/1_29.jpg'),(39167,88,0,2529,'/1/_/1_29.jpg'),(39168,89,0,2529,'/1/_/1_29.jpg'),(39169,106,0,2529,'container2'),(39170,121,0,2529,'n-silk-pumps-blue-eu-36'),(39171,132,0,2529,'0'),(39172,133,0,2529,'/1/_/1_29.jpg'),(39173,206,0,2529,'Synthetic'),(39178,73,0,2530,'Silk Pumps-blue-EU 37'),(39179,84,0,2530,'Silk Pumps'),(39180,86,0,2530,'Silk Pumps \r\nMeasurements for size EU 39: heel height 9 cm (3.5″)\r\nExtras: fabric trim, Floral appliqués\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(39181,87,0,2530,'/1/_/1_29_1.jpg'),(39182,88,0,2530,'/1/_/1_29_1.jpg'),(39183,89,0,2530,'/1/_/1_29_1.jpg'),(39184,106,0,2530,'container2'),(39185,121,0,2530,'n-silk-pumps-blue-eu-37'),(39186,132,0,2530,'0'),(39187,133,0,2530,'/1/_/1_29_1.jpg'),(39188,206,0,2530,'Synthetic'),(39193,73,0,2531,'Silk Pumps-blue-EU 40'),(39194,84,0,2531,'Silk Pumps'),(39195,86,0,2531,'Silk Pumps \r\nMeasurements for size EU 39: heel height 9 cm (3.5″)\r\nExtras: fabric trim, Floral appliqués\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(39196,87,0,2531,'/1/_/1_29_2.jpg'),(39197,88,0,2531,'/1/_/1_29_2.jpg'),(39198,89,0,2531,'/1/_/1_29_2.jpg'),(39199,106,0,2531,'container2'),(39200,121,0,2531,'n-silk-pumps-blue-eu-40'),(39201,132,0,2531,'0'),(39202,133,0,2531,'/1/_/1_29_2.jpg'),(39203,206,0,2531,'Synthetic'),(39208,73,0,2532,'Silk Pumps-blue-EU 38'),(39209,84,0,2532,'Silk Pumps'),(39210,86,0,2532,'Silk Pumps \r\nMeasurements for size EU 39: heel height 9 cm (3.5″)\r\nExtras: fabric trim, Floral appliqués\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(39211,87,0,2532,'/1/_/1_29_3.jpg'),(39212,88,0,2532,'/1/_/1_29_3.jpg'),(39213,89,0,2532,'/1/_/1_29_3.jpg'),(39214,106,0,2532,'container2'),(39215,121,0,2532,'n-silk-pumps-blue-eu-38'),(39216,132,0,2532,'0'),(39217,133,0,2532,'/1/_/1_29_3.jpg'),(39218,206,0,2532,'Synthetic'),(39223,73,0,2533,'Silk Pumps'),(39224,84,0,2533,'Silk Pumps'),(39225,86,0,2533,'Silk Pumps \r\nMeasurements for size EU 39: heel height 9 cm (3.5″)\r\nExtras: fabric trim, Floral appliqués\r\nOuter material: textile\r\nInner material: leather\r\nOutsole: synthetic\r\n'),(39226,87,0,2533,'/b/1/b1_67.jpg'),(39227,88,0,2533,'/b/1/b1_67.jpg'),(39228,89,0,2533,'/b/1/b1_67.jpg'),(39229,106,0,2533,'container2'),(39230,121,0,2533,'n-silk-pumps'),(39231,132,0,2533,'2'),(39232,133,0,2533,'/b/1/b1_67.jpg'),(39233,206,0,2533,'Synthetic'),(39238,206,0,2138,'leather'),(39243,206,0,2135,'Leather'),(39252,206,0,2105,'Plastic'),(39257,73,0,2534,' Rich & Royal Transitional Jacket-brown-Extra small size'),(39258,84,0,2534,' Rich & Royal Transitional Jacket'),(39259,86,0,2534,' Rich & Royal Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Ma'),(39260,87,0,2534,'/i/m/image_31151579_25_970x1182_0_4.jpg'),(39261,88,0,2534,'/i/m/image_31151579_25_970x1182_0_4.jpg'),(39262,89,0,2534,'/i/m/image_31151579_25_970x1182_0_4.jpg'),(39263,106,0,2534,'container2'),(39264,121,0,2534,'n-rich-royal-transitional-jacket-brown-extra-small-size'),(39265,132,0,2534,'0'),(39266,133,0,2534,'/i/m/image_31151579_25_970x1182_0_4.jpg'),(39267,206,0,2534,'45% cotton, 44% polyacrylic, 11% polyester'),(39272,73,0,2535,' Rich & Royal Transitional Jacket-brown-Large size'),(39273,84,0,2535,' Rich & Royal Transitional Jacket'),(39274,86,0,2535,' Rich & Royal Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Ma'),(39275,87,0,2535,'/i/m/image_31151579_25_970x1182_0_2_1.jpg'),(39276,88,0,2535,'/i/m/image_31151579_25_970x1182_0_2_1.jpg'),(39277,89,0,2535,'/i/m/image_31151579_25_970x1182_0_2_1.jpg'),(39278,106,0,2535,'container2'),(39279,121,0,2535,'n-rich-royal-transitional-jacket-brown-large-size'),(39280,132,0,2535,'0'),(39281,133,0,2535,'/i/m/image_31151579_25_970x1182_0_2_1.jpg'),(39282,206,0,2535,'45% cotton, 44% polyacrylic, 11% polyester'),(39287,73,0,2536,' Rich & Royal Transitional Jacket-brown-Small size'),(39288,84,0,2536,' Rich & Royal Transitional Jacket'),(39289,86,0,2536,' Rich & Royal Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Ma'),(39290,87,0,2536,'/i/m/image_31151579_25_970x1182_0_3_1.jpg'),(39291,88,0,2536,'/i/m/image_31151579_25_970x1182_0_3_1.jpg'),(39292,89,0,2536,'/i/m/image_31151579_25_970x1182_0_3_1.jpg'),(39293,106,0,2536,'container2'),(39294,121,0,2536,'n-rich-royal-transitional-jacket-brown-small-size'),(39295,132,0,2536,'0'),(39296,133,0,2536,'/i/m/image_31151579_25_970x1182_0_3_1.jpg'),(39297,206,0,2536,'45% cotton, 44% polyacrylic, 11% polyester'),(39302,73,0,2537,' Rich & Royal Transitional Jacket-brown-Medium size'),(39303,84,0,2537,' Rich & Royal Transitional Jacket'),(39304,86,0,2537,' Rich & Royal Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Ma'),(39305,87,0,2537,'/i/m/image_31151579_25_970x1182_0_4_1.jpg'),(39306,88,0,2537,'/i/m/image_31151579_25_970x1182_0_4_1.jpg'),(39307,89,0,2537,'/i/m/image_31151579_25_970x1182_0_4_1.jpg'),(39308,106,0,2537,'container2'),(39309,121,0,2537,'n-rich-royal-transitional-jacket-brown-medium-size'),(39310,132,0,2537,'0'),(39311,133,0,2537,'/i/m/image_31151579_25_970x1182_0_4_1.jpg'),(39312,206,0,2537,'45% cotton, 44% polyacrylic, 11% polyester'),(39317,206,0,2089,'plastic, metal'),(39322,73,0,2538,' Rich & Royal Transitional Jacket-white-Extra small size'),(39323,84,0,2538,' Rich & Royal Transitional Jacket'),(39324,86,0,2538,' Rich & Royal Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Ma'),(39325,87,0,2538,'/4/5/45t54tf_4.jpg'),(39326,88,0,2538,'/4/5/45t54tf_4.jpg'),(39327,89,0,2538,'/4/5/45t54tf_4.jpg'),(39328,106,0,2538,'container2'),(39329,121,0,2538,'n-rich-royal-transitional-jacket-white-extra-small-size'),(39330,132,0,2538,'0'),(39331,133,0,2538,'/4/5/45t54tf_4.jpg'),(39332,206,0,2538,'45% cotton, 44% polyacrylic, 11% polyester'),(39337,73,0,2539,' Rich & Royal Transitional Jacket-white-Large size'),(39338,84,0,2539,' Rich & Royal Transitional Jacket'),(39339,86,0,2539,' Rich & Royal Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Ma'),(39340,87,0,2539,'/4/5/45t54tf_1_1.jpg'),(39341,88,0,2539,'/4/5/45t54tf_1_1.jpg'),(39342,89,0,2539,'/4/5/45t54tf_1_1.jpg'),(39343,106,0,2539,'container2'),(39344,121,0,2539,'n-rich-royal-transitional-jacket-white-large-size'),(39345,132,0,2539,'0'),(39346,133,0,2539,'/4/5/45t54tf_1_1.jpg'),(39347,206,0,2539,'45% cotton, 44% polyacrylic, 11% polyester'),(39352,73,0,2540,' Rich & Royal Transitional Jacket-white-Small size'),(39353,84,0,2540,' Rich & Royal Transitional Jacket'),(39354,86,0,2540,' Rich & Royal Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Ma'),(39355,87,0,2540,'/4/5/45t54tf_2_1.jpg'),(39356,88,0,2540,'/4/5/45t54tf_2_1.jpg'),(39357,89,0,2540,'/4/5/45t54tf_2_1.jpg'),(39358,106,0,2540,'container2'),(39359,121,0,2540,'n-rich-royal-transitional-jacket-white-small-size'),(39360,132,0,2540,'0'),(39361,133,0,2540,'/4/5/45t54tf_2_1.jpg'),(39362,206,0,2540,'45% cotton, 44% polyacrylic, 11% polyester'),(39367,73,0,2541,' Rich & Royal Transitional Jacket-white-Medium size'),(39368,84,0,2541,' Rich & Royal Transitional Jacket'),(39369,86,0,2541,' Rich & Royal Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Ma'),(39370,87,0,2541,'/4/5/45t54tf_3_1.jpg'),(39371,88,0,2541,'/4/5/45t54tf_3_1.jpg'),(39372,89,0,2541,'/4/5/45t54tf_3_1.jpg'),(39373,106,0,2541,'container2'),(39374,121,0,2541,'n-rich-royal-transitional-jacket-white-medium-size'),(39375,132,0,2541,'0'),(39376,133,0,2541,'/4/5/45t54tf_3_1.jpg'),(39377,206,0,2541,'45% cotton, 44% polyacrylic, 11% polyester'),(39382,73,0,2542,'Rich & Royal Transitional Jacket'),(39383,84,0,2542,' Rich & Royal Transitional Jacket'),(39384,86,0,2542,' Rich & Royal Transitional Jacket Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Ma'),(39385,87,0,2542,'/i/m/image_31151579_25_970x1182_0_1_2.jpg'),(39386,88,0,2542,'/i/m/image_31151579_25_970x1182_0_1_2.jpg'),(39387,89,0,2542,'/i/m/image_31151579_25_970x1182_0_1_2.jpg'),(39388,106,0,2542,'container2'),(39389,121,0,2542,'n-seventy-transitional-jacket-7'),(39390,132,0,2542,'2'),(39391,133,0,2542,'no_selection'),(39392,206,0,2542,'45% cotton, 44% polyacrylic, 11% polyester'),(39397,206,0,2077,'Plastic'),(39414,206,0,2055,'Plastic'),(39419,206,0,2032,'leather'),(39543,87,0,1413,'/1/_/1_30.jpg'),(39544,88,0,1413,'/1/_/1_30.jpg'),(39545,89,0,1413,'/1/_/1_30.jpg'),(39550,87,0,1808,'/1/_/1_31.jpg'),(39551,88,0,1808,'/1/_/1_31.jpg'),(39552,89,0,1808,'/1/_/1_31.jpg'),(39636,87,0,2017,'/1/_/1_1.png'),(39637,88,0,2017,'/1/_/1_1.png'),(39638,89,0,2017,'/1/_/1_1.png'),(39829,87,0,2357,'/1/_/1_32.jpg'),(39830,88,0,2357,'/1/_/1_32.jpg'),(39831,89,0,2357,'/1/_/1_32.jpg');
/*!40000 ALTER TABLE `catalog_product_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_varchar_after_insert AFTER INSERT ON catalog_product_entity_varchar FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_varchar_after_update AFTER UPDATE ON catalog_product_entity_varchar FOR EACH ROW
BEGIN
IF (NEW.`value_id` <=> OLD.`value_id` OR NEW.`attribute_id` <=> OLD.`attribute_id` OR NEW.`store_id` <=> OLD.`store_id` OR NEW.`entity_id` <=> OLD.`entity_id` OR NEW.`value` <=> OLD.`value`) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_entity_varchar_after_delete AFTER DELETE ON catalog_product_entity_varchar FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`entity_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

--
-- Table structure for table `catalog_product_frontend_action`
--

DROP TABLE IF EXISTS `catalog_product_frontend_action`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_frontend_action` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product Action Id',
  `type_id` varchar(64) NOT NULL COMMENT 'Type of product action',
  `visitor_id` int(10) unsigned DEFAULT NULL COMMENT 'Visitor Id',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Id',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `added_at` bigint(20) NOT NULL COMMENT 'Added At',
  PRIMARY KEY (`action_id`),
  UNIQUE KEY `CATALOG_PRODUCT_FRONTEND_ACTION_VISITOR_ID_PRODUCT_ID_TYPE_ID` (`visitor_id`,`product_id`,`type_id`),
  UNIQUE KEY `CATALOG_PRODUCT_FRONTEND_ACTION_CUSTOMER_ID_PRODUCT_ID_TYPE_ID` (`customer_id`,`product_id`,`type_id`),
  KEY `CAT_PRD_FRONTEND_ACTION_PRD_ID_CAT_PRD_ENTT_ENTT_ID` (`product_id`),
  CONSTRAINT `CAT_PRD_FRONTEND_ACTION_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_FRONTEND_ACTION_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Frontend Action Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_frontend_action`
--

LOCK TABLES `catalog_product_frontend_action` WRITE;
/*!40000 ALTER TABLE `catalog_product_frontend_action` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_frontend_action` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_eav`
--

DROP TABLE IF EXISTS `catalog_product_index_eav`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_eav` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` int(10) unsigned NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity Id for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav`
--

LOCK TABLES `catalog_product_index_eav` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav` DISABLE KEYS */;
INSERT INTO `catalog_product_index_eav` VALUES (1,93,1,73,1020),(1,93,1,73,1021),(1,93,1,73,1022),(1,93,1,74,1014),(1,93,1,74,1015),(1,93,1,74,1016),(1,93,1,76,1017),(1,93,1,76,1018),(1,93,1,76,1019),(2,93,1,75,942),(2,93,1,75,943),(2,93,1,75,944),(2,93,1,76,945),(2,93,1,76,946),(2,93,1,76,947),(4,93,1,73,1005),(4,93,1,73,1007),(4,93,1,73,1009),(4,93,1,73,1011),(4,93,1,73,1013),(4,93,1,75,1004),(4,93,1,75,1006),(4,93,1,75,1008),(4,93,1,75,1010),(4,93,1,75,1012),(5,93,1,71,699),(5,93,1,71,704),(5,93,1,71,709),(5,93,1,72,700),(5,93,1,72,705),(5,93,1,72,710),(5,93,1,74,701),(5,93,1,74,706),(5,93,1,74,711),(5,93,1,75,702),(5,93,1,75,707),(5,93,1,75,712),(5,93,1,76,703),(5,93,1,76,708),(5,93,1,76,713),(6,93,1,76,958),(6,93,1,76,959),(7,93,1,72,157),(7,93,1,72,158),(7,93,1,72,159),(7,93,1,76,1145),(7,93,1,76,1146),(7,93,1,76,1147),(8,93,1,72,734),(8,93,1,72,735),(8,93,1,72,736),(8,93,1,73,737),(8,93,1,73,738),(8,93,1,73,739),(8,93,1,74,740),(8,93,1,74,741),(8,93,1,74,742),(8,93,1,75,743),(8,93,1,75,744),(8,93,1,75,745),(8,93,1,76,746),(8,93,1,76,747),(8,93,1,76,748),(9,93,1,74,163),(9,93,1,74,164),(9,93,1,74,165),(9,93,1,76,1290),(9,93,1,76,1291),(9,93,1,76,1292),(10,93,1,71,1148),(10,93,1,71,1149),(10,93,1,71,1150),(10,93,1,71,1151),(10,93,1,73,166),(10,93,1,73,167),(10,93,1,73,168),(10,93,1,73,169),(11,93,1,73,170),(11,93,1,73,171),(11,93,1,74,1162),(11,93,1,74,1163),(12,93,1,73,172),(12,93,1,73,173),(12,93,1,73,174),(12,93,1,76,1184),(12,93,1,76,1185),(12,93,1,76,1186),(15,93,1,71,674),(15,93,1,71,679),(15,93,1,71,684),(15,93,1,71,689),(15,93,1,71,694),(15,93,1,72,675),(15,93,1,72,680),(15,93,1,72,685),(15,93,1,72,690),(15,93,1,72,695),(15,93,1,73,676),(15,93,1,73,681),(15,93,1,73,686),(15,93,1,73,691),(15,93,1,73,696),(15,93,1,74,677),(15,93,1,74,682),(15,93,1,74,687),(15,93,1,74,692),(15,93,1,74,697),(15,93,1,76,678),(15,93,1,76,683),(15,93,1,76,688),(15,93,1,76,693),(15,93,1,76,698),(16,93,1,71,986),(16,93,1,71,987),(16,93,1,71,988),(16,93,1,71,989),(16,93,1,71,990),(16,93,1,71,991),(16,93,1,73,998),(16,93,1,73,999),(16,93,1,73,1000),(16,93,1,73,1001),(16,93,1,73,1002),(16,93,1,73,1003),(16,93,1,74,992),(16,93,1,74,993),(16,93,1,74,994),(16,93,1,74,995),(16,93,1,74,996),(16,93,1,74,997),(17,93,1,74,186),(17,93,1,74,187),(17,93,1,74,188),(17,93,1,74,189),(17,93,1,75,1156),(17,93,1,75,1157),(17,93,1,75,1158),(17,93,1,75,1159),(18,93,1,73,190),(18,93,1,73,191),(18,93,1,73,192),(18,93,1,73,193),(18,93,1,74,1238),(18,93,1,74,1239),(18,93,1,74,1240),(18,93,1,74,1241),(19,93,1,74,194),(19,93,1,74,195),(19,93,1,74,196),(19,93,1,76,1219),(19,93,1,76,1220),(19,93,1,76,1221),(20,93,1,72,549),(20,93,1,72,550),(20,93,1,72,551),(20,93,1,72,552),(20,93,1,72,553),(20,93,1,72,554),(20,93,1,73,555),(20,93,1,73,556),(20,93,1,73,557),(20,93,1,73,558),(20,93,1,73,559),(20,93,1,73,560),(20,93,1,74,561),(20,93,1,74,562),(20,93,1,74,563),(20,93,1,74,564),(20,93,1,74,565),(20,93,1,74,566),(20,93,1,75,567),(20,93,1,75,568),(20,93,1,75,569),(20,93,1,75,570),(20,93,1,75,571),(20,93,1,75,572),(20,93,1,76,573),(20,93,1,76,574),(20,93,1,76,575),(20,93,1,76,576),(20,93,1,76,577),(20,93,1,76,578),(22,93,1,74,1280),(22,93,1,74,1281),(22,93,1,74,1282),(22,93,1,74,1283),(22,93,1,75,203),(22,93,1,75,204),(22,93,1,75,205),(22,93,1,75,206),(24,93,1,73,207),(24,93,1,73,208),(24,93,1,73,209),(24,93,1,76,1305),(24,93,1,76,1306),(24,93,1,76,1307),(25,93,1,74,979),(25,93,1,74,980),(25,93,1,74,981),(25,93,1,74,982),(25,93,1,74,983),(25,93,1,74,984),(25,93,1,74,985),(25,93,1,76,972),(25,93,1,76,973),(25,93,1,76,974),(25,93,1,76,975),(25,93,1,76,976),(25,93,1,76,977),(25,93,1,76,978),(26,93,1,72,217),(26,93,1,72,218),(26,93,1,72,219),(26,93,1,72,220),(26,93,1,72,221),(26,93,1,75,1175),(26,93,1,75,1176),(26,93,1,75,1177),(26,93,1,75,1178),(26,93,1,75,1179),(29,93,1,71,644),(29,93,1,71,645),(29,93,1,71,646),(29,93,1,71,647),(29,93,1,71,648),(29,93,1,71,649),(29,93,1,72,650),(29,93,1,72,651),(29,93,1,72,652),(29,93,1,72,653),(29,93,1,72,654),(29,93,1,72,655),(29,93,1,73,656),(29,93,1,73,657),(29,93,1,73,658),(29,93,1,73,659),(29,93,1,73,660),(29,93,1,73,661),(29,93,1,75,662),(29,93,1,75,663),(29,93,1,75,664),(29,93,1,75,665),(29,93,1,75,666),(29,93,1,75,667),(29,93,1,76,668),(29,93,1,76,669),(29,93,1,76,670),(29,93,1,76,671),(29,93,1,76,672),(29,93,1,76,673),(30,93,1,75,1293),(30,93,1,75,1294),(30,93,1,75,1295),(30,93,1,76,228),(30,93,1,76,229),(30,93,1,76,230),(31,93,1,71,231),(31,93,1,71,232),(31,93,1,73,1312),(31,93,1,73,1313),(32,93,1,73,233),(32,93,1,73,234),(32,93,1,76,1327),(32,93,1,76,1328),(33,93,1,75,235),(33,93,1,75,236),(33,93,1,75,237),(33,93,1,75,238),(33,93,1,76,1141),(33,93,1,76,1142),(33,93,1,76,1143),(33,93,1,76,1144),(34,93,1,71,844),(34,93,1,71,845),(34,93,1,71,846),(34,93,1,71,847),(34,93,1,72,848),(34,93,1,72,849),(34,93,1,72,850),(34,93,1,72,851),(34,93,1,74,852),(34,93,1,74,853),(34,93,1,74,854),(34,93,1,74,855),(34,93,1,75,856),(34,93,1,75,857),(34,93,1,75,858),(34,93,1,75,859),(34,93,1,76,860),(34,93,1,76,861),(34,93,1,76,862),(34,93,1,76,863),(35,93,1,72,614),(35,93,1,72,619),(35,93,1,72,624),(35,93,1,72,629),(35,93,1,72,634),(35,93,1,72,639),(35,93,1,73,615),(35,93,1,73,620),(35,93,1,73,625),(35,93,1,73,630),(35,93,1,73,635),(35,93,1,73,640),(35,93,1,74,616),(35,93,1,74,621),(35,93,1,74,626),(35,93,1,74,631),(35,93,1,74,636),(35,93,1,74,641),(35,93,1,75,617),(35,93,1,75,622),(35,93,1,75,627),(35,93,1,75,632),(35,93,1,75,637),(35,93,1,75,642),(35,93,1,76,618),(35,93,1,76,623),(35,93,1,76,628),(35,93,1,76,633),(35,93,1,76,638),(35,93,1,76,643),(36,93,1,71,879),(36,93,1,71,880),(36,93,1,71,881),(36,93,1,71,882),(36,93,1,71,883),(36,93,1,72,884),(36,93,1,72,885),(36,93,1,72,886),(36,93,1,72,887),(36,93,1,72,888),(36,93,1,74,889),(36,93,1,74,890),(36,93,1,74,891),(36,93,1,74,892),(36,93,1,74,893),(36,93,1,75,894),(36,93,1,75,895),(36,93,1,75,896),(36,93,1,75,897),(36,93,1,75,898),(36,93,1,76,899),(36,93,1,76,900),(36,93,1,76,901),(36,93,1,76,902),(36,93,1,76,903),(38,93,1,71,864),(38,93,1,71,865),(38,93,1,71,866),(38,93,1,72,867),(38,93,1,72,868),(38,93,1,72,869),(38,93,1,73,870),(38,93,1,73,871),(38,93,1,73,872),(38,93,1,75,873),(38,93,1,75,874),(38,93,1,75,875),(38,93,1,76,876),(38,93,1,76,877),(38,93,1,76,878),(41,93,1,72,257),(41,93,1,72,258),(41,93,1,72,259),(41,93,1,72,260),(41,93,1,75,1234),(41,93,1,75,1235),(41,93,1,75,1236),(41,93,1,75,1237),(42,93,1,71,804),(42,93,1,71,805),(42,93,1,71,806),(42,93,1,71,807),(42,93,1,72,808),(42,93,1,72,809),(42,93,1,72,810),(42,93,1,72,811),(42,93,1,74,812),(42,93,1,74,813),(42,93,1,74,814),(42,93,1,74,815),(42,93,1,75,816),(42,93,1,75,817),(42,93,1,75,818),(42,93,1,75,819),(42,93,1,76,820),(42,93,1,76,821),(42,93,1,76,822),(42,93,1,76,823),(43,93,1,71,953),(43,93,1,71,954),(43,93,1,71,955),(43,93,1,71,956),(43,93,1,71,957),(43,93,1,73,265),(43,93,1,73,266),(43,93,1,73,267),(43,93,1,73,268),(43,93,1,73,269),(43,93,1,75,948),(43,93,1,75,949),(43,93,1,75,950),(43,93,1,75,951),(43,93,1,75,952),(44,93,1,75,270),(44,93,1,75,271),(44,93,1,76,1343),(44,93,1,76,1344),(45,93,1,74,1242),(45,93,1,74,1243),(45,93,1,74,1244),(45,93,1,74,1245),(45,93,1,74,1246),(45,93,1,75,272),(45,93,1,75,273),(45,93,1,75,274),(45,93,1,75,275),(45,93,1,75,276),(46,93,1,71,714),(46,93,1,71,715),(46,93,1,71,716),(46,93,1,71,717),(46,93,1,72,718),(46,93,1,72,719),(46,93,1,72,720),(46,93,1,72,721),(46,93,1,73,722),(46,93,1,73,723),(46,93,1,73,724),(46,93,1,73,725),(46,93,1,75,726),(46,93,1,75,727),(46,93,1,75,728),(46,93,1,75,729),(46,93,1,76,730),(46,93,1,76,731),(46,93,1,76,732),(46,93,1,76,733),(47,93,1,71,749),(47,93,1,71,750),(47,93,1,71,751),(47,93,1,71,752),(47,93,1,72,753),(47,93,1,72,754),(47,93,1,72,755),(47,93,1,72,756),(47,93,1,74,757),(47,93,1,74,758),(47,93,1,74,759),(47,93,1,74,760),(47,93,1,75,761),(47,93,1,75,762),(47,93,1,75,763),(47,93,1,75,764),(47,93,1,76,765),(47,93,1,76,766),(47,93,1,76,767),(47,93,1,76,768),(48,93,1,73,285),(48,93,1,73,286),(48,93,1,76,1315),(48,93,1,76,1316),(49,93,1,72,789),(49,93,1,72,790),(49,93,1,72,791),(49,93,1,73,792),(49,93,1,73,793),(49,93,1,73,794),(49,93,1,74,795),(49,93,1,74,796),(49,93,1,74,797),(49,93,1,75,798),(49,93,1,75,799),(49,93,1,75,800),(49,93,1,76,801),(49,93,1,76,802),(49,93,1,76,803),(50,93,1,71,290),(50,93,1,71,291),(50,93,1,71,292),(50,93,1,75,1228),(50,93,1,75,1229),(50,93,1,75,1230),(51,93,1,71,130),(51,93,1,71,131),(51,93,1,74,1133),(51,93,1,74,1134),(53,93,1,72,769),(53,93,1,72,770),(53,93,1,72,771),(53,93,1,72,772),(53,93,1,73,773),(53,93,1,73,774),(53,93,1,73,775),(53,93,1,73,776),(53,93,1,74,777),(53,93,1,74,778),(53,93,1,74,779),(53,93,1,74,780),(53,93,1,75,781),(53,93,1,75,782),(53,93,1,75,783),(53,93,1,75,784),(53,93,1,76,785),(53,93,1,76,786),(53,93,1,76,787),(53,93,1,76,788),(54,93,1,73,1222),(54,93,1,73,1223),(54,93,1,73,1224),(54,93,1,73,1225),(54,93,1,73,1226),(54,93,1,73,1227),(54,93,1,76,300),(54,93,1,76,301),(54,93,1,76,302),(54,93,1,76,303),(54,93,1,76,304),(54,93,1,76,305),(55,93,1,75,1032),(55,93,1,75,1033),(55,93,1,75,1034),(55,93,1,76,1029),(55,93,1,76,1030),(55,93,1,76,1031),(56,93,1,72,309),(56,93,1,72,310),(56,93,1,72,311),(56,93,1,75,1284),(56,93,1,75,1285),(56,93,1,75,1286),(57,93,1,73,312),(57,93,1,73,313),(57,93,1,73,314),(57,93,1,73,315),(57,93,1,74,1257),(57,93,1,74,1258),(57,93,1,74,1259),(57,93,1,74,1260),(58,93,1,73,316),(58,93,1,73,317),(58,93,1,75,1309),(58,93,1,75,1310),(59,93,1,72,318),(59,93,1,72,319),(59,93,1,72,320),(59,93,1,72,321),(59,93,1,73,1187),(59,93,1,73,1188),(59,93,1,73,1189),(59,93,1,73,1190),(60,93,1,74,322),(60,93,1,74,323),(60,93,1,74,324),(60,93,1,74,325),(60,93,1,74,326),(60,93,1,74,327),(60,93,1,76,1251),(60,93,1,76,1252),(60,93,1,76,1253),(60,93,1,76,1254),(60,93,1,76,1255),(60,93,1,76,1256),(61,93,1,73,328),(61,93,1,73,329),(61,93,1,76,1329),(61,93,1,76,1330),(63,93,1,71,1053),(63,93,1,71,1054),(63,93,1,71,1055),(63,93,1,71,1056),(63,93,1,74,1049),(63,93,1,74,1050),(63,93,1,74,1051),(63,93,1,74,1052),(64,93,1,72,334),(64,93,1,72,335),(64,93,1,72,336),(64,93,1,72,337),(64,93,1,75,1180),(64,93,1,75,1181),(64,93,1,75,1182),(64,93,1,75,1183),(65,93,1,72,338),(65,93,1,72,339),(65,93,1,72,340),(65,93,1,76,1322),(65,93,1,76,1323),(65,93,1,76,1324),(66,93,1,73,1083),(66,93,1,73,1084),(66,93,1,73,1085),(66,93,1,73,1086),(66,93,1,73,1087),(66,93,1,75,341),(66,93,1,75,342),(66,93,1,75,343),(66,93,1,75,344),(66,93,1,75,345),(68,93,1,73,1039),(68,93,1,73,1040),(68,93,1,73,1041),(68,93,1,73,1042),(68,93,1,74,1035),(68,93,1,74,1036),(68,93,1,74,1037),(68,93,1,74,1038),(69,93,1,71,350),(69,93,1,71,351),(69,93,1,71,352),(69,93,1,71,353),(69,93,1,75,1247),(69,93,1,75,1248),(69,93,1,75,1249),(69,93,1,75,1250),(70,93,1,72,354),(70,93,1,72,355),(70,93,1,72,356),(70,93,1,72,357),(70,93,1,73,1152),(70,93,1,73,1153),(70,93,1,73,1154),(70,93,1,73,1155),(71,93,1,71,358),(71,93,1,71,359),(71,93,1,71,360),(71,93,1,73,1135),(71,93,1,73,1136),(71,93,1,73,1137),(71,93,1,75,1130),(71,93,1,75,1131),(71,93,1,75,1132),(72,93,1,72,364),(72,93,1,72,365),(72,93,1,72,366),(72,93,1,72,367),(72,93,1,75,1167),(72,93,1,75,1168),(72,93,1,75,1169),(72,93,1,75,1170),(73,93,1,71,368),(73,93,1,71,369),(73,93,1,71,370),(73,93,1,71,371),(73,93,1,72,372),(73,93,1,72,373),(73,93,1,72,374),(73,93,1,72,375),(74,93,1,75,1325),(74,93,1,75,1326),(74,93,1,76,378),(74,93,1,76,379),(75,93,1,71,380),(75,93,1,71,381),(75,93,1,71,382),(75,93,1,71,383),(75,93,1,71,384),(75,93,1,75,1214),(75,93,1,75,1215),(75,93,1,75,1216),(75,93,1,75,1217),(75,93,1,75,1218),(76,93,1,73,1127),(76,93,1,73,1128),(76,93,1,73,1129),(76,93,1,74,385),(76,93,1,74,386),(76,93,1,74,387),(77,93,1,71,388),(77,93,1,71,389),(77,93,1,71,390),(77,93,1,74,1287),(77,93,1,74,1288),(77,93,1,74,1289),(78,93,1,71,1024),(78,93,1,71,1026),(78,93,1,71,1028),(78,93,1,74,1023),(78,93,1,74,1025),(78,93,1,74,1027),(79,93,1,73,1057),(79,93,1,73,1058),(79,93,1,73,1059),(79,93,1,74,1060),(79,93,1,74,1061),(79,93,1,74,1062),(79,93,1,75,1101),(79,93,1,75,1102),(79,93,1,75,1103),(80,93,1,72,1171),(80,93,1,72,1172),(80,93,1,72,1173),(80,93,1,72,1174),(80,93,1,76,397),(80,93,1,76,398),(80,93,1,76,399),(80,93,1,76,400),(81,93,1,71,404),(81,93,1,71,405),(81,93,1,71,406),(81,93,1,72,401),(81,93,1,72,402),(81,93,1,72,403),(82,93,1,71,407),(82,93,1,71,408),(82,93,1,71,409),(82,93,1,71,410),(82,93,1,71,411),(82,93,1,75,1191),(82,93,1,75,1192),(82,93,1,75,1193),(82,93,1,75,1194),(82,93,1,75,1195),(83,93,1,72,1091),(83,93,1,72,1092),(83,93,1,72,1093),(83,93,1,72,1094),(83,93,1,74,1075),(83,93,1,74,1076),(83,93,1,74,1077),(83,93,1,74,1078),(83,93,1,75,1079),(83,93,1,75,1080),(83,93,1,75,1081),(83,93,1,75,1082),(84,93,1,72,416),(84,93,1,72,417),(84,93,1,72,418),(84,93,1,72,419),(84,93,1,72,420),(84,93,1,74,421),(84,93,1,74,422),(84,93,1,74,423),(84,93,1,74,424),(84,93,1,74,425),(84,93,1,75,1261),(84,93,1,75,1262),(84,93,1,75,1263),(84,93,1,75,1264),(84,93,1,75,1265),(85,93,1,73,1043),(85,93,1,73,1044),(85,93,1,73,1045),(85,93,1,74,1046),(85,93,1,74,1047),(85,93,1,74,1048),(86,93,1,75,1272),(86,93,1,75,1274),(86,93,1,75,1276),(86,93,1,75,1278),(86,93,1,76,1273),(86,93,1,76,1275),(86,93,1,76,1277),(86,93,1,76,1279),(87,93,1,71,437),(87,93,1,71,438),(87,93,1,71,439),(87,93,1,74,1104),(87,93,1,74,1105),(87,93,1,74,1106),(88,93,1,74,1088),(88,93,1,74,1089),(88,93,1,74,1090),(88,93,1,75,440),(88,93,1,75,441),(88,93,1,75,442),(89,93,1,73,1266),(89,93,1,73,1267),(89,93,1,73,1268),(89,93,1,73,1269),(89,93,1,73,1270),(89,93,1,73,1271),(89,93,1,74,449),(89,93,1,74,450),(89,93,1,74,451),(89,93,1,74,452),(89,93,1,74,453),(89,93,1,74,454),(91,93,1,71,455),(91,93,1,71,456),(91,93,1,71,457),(91,93,1,76,1118),(91,93,1,76,1119),(91,93,1,76,1120),(92,93,1,72,1098),(92,93,1,72,1099),(92,93,1,72,1100),(92,93,1,73,1066),(92,93,1,73,1067),(92,93,1,73,1068),(92,93,1,75,1063),(92,93,1,75,1064),(92,93,1,75,1065),(93,93,1,72,461),(93,93,1,72,462),(93,93,1,72,463),(93,93,1,72,464),(93,93,1,75,1114),(93,93,1,75,1115),(93,93,1,75,1116),(93,93,1,75,1117),(95,93,1,72,465),(95,93,1,72,466),(95,93,1,72,467),(95,93,1,76,1124),(95,93,1,76,1125),(95,93,1,76,1126),(97,93,1,75,939),(97,93,1,75,940),(97,93,1,75,941),(98,93,1,71,471),(98,93,1,71,472),(98,93,1,71,473),(98,93,1,71,474),(98,93,1,72,1110),(98,93,1,72,1111),(98,93,1,72,1112),(98,93,1,72,1113),(99,93,1,73,930),(99,93,1,73,931),(99,93,1,73,932),(100,93,1,72,478),(100,93,1,72,479),(100,93,1,72,480),(100,93,1,75,1121),(100,93,1,75,1122),(100,93,1,75,1123),(101,93,1,72,824),(101,93,1,72,825),(101,93,1,72,826),(101,93,1,72,827),(101,93,1,73,828),(101,93,1,73,829),(101,93,1,73,830),(101,93,1,73,831),(101,93,1,74,832),(101,93,1,74,833),(101,93,1,74,834),(101,93,1,74,835),(101,93,1,75,836),(101,93,1,75,837),(101,93,1,75,838),(101,93,1,75,839),(101,93,1,76,840),(101,93,1,76,841),(101,93,1,76,842),(101,93,1,76,843),(102,93,1,72,1095),(102,93,1,72,1096),(102,93,1,72,1097),(102,93,1,73,1069),(102,93,1,73,1070),(102,93,1,73,1071),(102,93,1,76,1072),(102,93,1,76,1073),(102,93,1,76,1074),(103,93,1,71,488),(103,93,1,71,489),(103,93,1,71,490),(103,93,1,75,1107),(103,93,1,75,1108),(103,93,1,75,1109),(104,93,1,71,904),(104,93,1,71,905),(104,93,1,71,906),(104,93,1,71,907),(104,93,1,73,908),(104,93,1,73,909),(104,93,1,73,910),(104,93,1,73,911),(104,93,1,74,912),(104,93,1,74,913),(104,93,1,74,914),(104,93,1,74,915),(105,93,1,71,495),(105,93,1,71,496),(105,93,1,71,497),(105,93,1,76,1211),(105,93,1,76,1212),(105,93,1,76,1213),(106,93,1,71,498),(106,93,1,71,499),(106,93,1,71,500),(106,93,1,74,1202),(106,93,1,74,1203),(106,93,1,74,1204),(107,93,1,71,504),(107,93,1,71,505),(107,93,1,71,506),(107,93,1,72,507),(107,93,1,72,508),(107,93,1,72,509),(108,93,1,71,501),(108,93,1,71,502),(108,93,1,71,503),(108,93,1,73,1138),(108,93,1,73,1139),(108,93,1,73,1140),(109,93,1,71,510),(109,93,1,71,511),(109,93,1,71,512),(109,93,1,74,1299),(109,93,1,74,1300),(109,93,1,74,1301),(110,93,1,71,1296),(110,93,1,71,1297),(110,93,1,71,1298),(110,93,1,74,513),(110,93,1,74,514),(110,93,1,74,515),(111,93,1,71,516),(111,93,1,75,1331),(112,93,1,75,1302),(112,93,1,75,1303),(112,93,1,75,1304),(112,93,1,76,517),(112,93,1,76,518),(112,93,1,76,519),(113,93,1,71,520),(113,93,1,71,521),(113,93,1,71,522),(113,93,1,73,1208),(113,93,1,73,1209),(113,93,1,73,1210),(114,93,1,71,523),(114,93,1,74,1308),(115,93,1,71,524),(115,93,1,71,525),(115,93,1,71,526),(115,93,1,76,1196),(115,93,1,76,1197),(115,93,1,76,1198),(116,93,1,71,1332),(116,93,1,75,527),(117,93,1,74,528),(117,93,1,74,529),(117,93,1,74,530),(117,93,1,75,1205),(117,93,1,75,1206),(117,93,1,75,1207),(118,93,1,74,531),(118,93,1,75,1321),(119,93,1,71,1231),(119,93,1,71,1232),(119,93,1,71,1233),(119,93,1,73,532),(119,93,1,73,533),(119,93,1,73,534),(120,93,1,72,535),(120,93,1,72,536),(120,93,1,72,537),(120,93,1,76,1164),(120,93,1,76,1165),(120,93,1,76,1166),(121,93,1,75,541),(121,93,1,76,1320),(122,93,1,74,538),(122,93,1,74,539),(122,93,1,74,540),(122,93,1,76,1199),(122,93,1,76,1200),(122,93,1,76,1201),(123,93,1,71,1160),(123,93,1,71,1161),(123,93,1,74,542),(123,93,1,74,543),(124,93,1,71,544),(124,93,1,73,1319),(125,93,1,71,545),(125,93,1,74,1318),(126,93,1,74,546),(126,93,1,76,1317),(127,93,1,71,547),(127,93,1,74,1314),(128,93,1,75,548),(128,93,1,76,1311),(1351,93,1,71,1414),(1351,93,1,71,1415),(1351,93,1,71,1416),(1351,93,1,76,1417),(1351,93,1,76,1418),(1351,93,1,76,1419),(1413,93,1,72,1395),(1413,93,1,72,1396),(1413,93,1,72,1397),(1413,93,1,72,1398),(1413,93,1,72,1399),(1413,93,1,72,1400),(1413,93,1,73,1401),(1413,93,1,73,1402),(1413,93,1,73,1403),(1413,93,1,73,1404),(1413,93,1,73,1405),(1413,93,1,73,1406),(1413,93,1,74,1383),(1413,93,1,74,1384),(1413,93,1,74,1385),(1413,93,1,74,1386),(1413,93,1,74,1387),(1413,93,1,74,1388),(1413,93,1,75,1389),(1413,93,1,75,1390),(1413,93,1,75,1391),(1413,93,1,75,1392),(1413,93,1,75,1393),(1413,93,1,75,1394),(1413,93,1,76,1407),(1413,93,1,76,1408),(1413,93,1,76,1409),(1413,93,1,76,1410),(1413,93,1,76,1411),(1413,93,1,76,1412),(1455,93,1,71,1441),(1455,93,1,71,1442),(1455,93,1,71,1443),(1455,93,1,71,1444),(1455,93,1,71,1445),(1455,93,1,71,1446),(1455,93,1,71,1447),(1455,93,1,72,1434),(1455,93,1,72,1435),(1455,93,1,72,1436),(1455,93,1,72,1437),(1455,93,1,72,1438),(1455,93,1,72,1439),(1455,93,1,72,1440),(1455,93,1,73,1448),(1455,93,1,73,1449),(1455,93,1,73,1450),(1455,93,1,73,1451),(1455,93,1,73,1452),(1455,93,1,73,1453),(1455,93,1,73,1454),(1455,93,1,75,1427),(1455,93,1,75,1428),(1455,93,1,75,1429),(1455,93,1,75,1430),(1455,93,1,75,1431),(1455,93,1,75,1432),(1455,93,1,75,1433),(1455,93,1,76,1420),(1455,93,1,76,1421),(1455,93,1,76,1422),(1455,93,1,76,1423),(1455,93,1,76,1424),(1455,93,1,76,1425),(1455,93,1,76,1426),(1464,93,1,72,1456),(1464,93,1,72,1457),(1464,93,1,72,1458),(1464,93,1,72,1459),(1464,93,1,75,1460),(1464,93,1,75,1461),(1464,93,1,75,1462),(1464,93,1,75,1463),(1495,93,1,72,1477),(1495,93,1,72,1478),(1495,93,1,72,1479),(1495,93,1,72,1480),(1495,93,1,72,1481),(1495,93,1,72,1482),(1495,93,1,73,1483),(1495,93,1,73,1484),(1495,93,1,73,1485),(1495,93,1,73,1486),(1495,93,1,73,1487),(1495,93,1,73,1488),(1495,93,1,74,1465),(1495,93,1,74,1466),(1495,93,1,74,1467),(1495,93,1,74,1468),(1495,93,1,74,1469),(1495,93,1,74,1470),(1495,93,1,75,1471),(1495,93,1,75,1472),(1495,93,1,75,1473),(1495,93,1,75,1474),(1495,93,1,75,1475),(1495,93,1,75,1476),(1495,93,1,76,1489),(1495,93,1,76,1490),(1495,93,1,76,1491),(1495,93,1,76,1492),(1495,93,1,76,1493),(1495,93,1,76,1494),(1526,93,1,71,1520),(1526,93,1,71,1521),(1526,93,1,71,1522),(1526,93,1,71,1523),(1526,93,1,71,1524),(1526,93,1,71,1525),(1526,93,1,72,1502),(1526,93,1,72,1503),(1526,93,1,72,1504),(1526,93,1,72,1505),(1526,93,1,72,1506),(1526,93,1,72,1507),(1526,93,1,73,1496),(1526,93,1,73,1497),(1526,93,1,73,1498),(1526,93,1,73,1499),(1526,93,1,73,1500),(1526,93,1,73,1501),(1526,93,1,75,1508),(1526,93,1,75,1509),(1526,93,1,75,1510),(1526,93,1,75,1511),(1526,93,1,75,1512),(1526,93,1,75,1513),(1526,93,1,76,1514),(1526,93,1,76,1515),(1526,93,1,76,1516),(1526,93,1,76,1517),(1526,93,1,76,1518),(1526,93,1,76,1519),(1535,93,1,71,1527),(1535,93,1,71,1528),(1535,93,1,71,1529),(1535,93,1,71,1530),(1535,93,1,72,1531),(1535,93,1,72,1532),(1535,93,1,72,1533),(1535,93,1,72,1534),(1561,93,1,71,1539),(1561,93,1,71,1544),(1561,93,1,71,1549),(1561,93,1,71,1554),(1561,93,1,71,1559),(1561,93,1,72,1538),(1561,93,1,72,1543),(1561,93,1,72,1548),(1561,93,1,72,1553),(1561,93,1,72,1558),(1561,93,1,73,1537),(1561,93,1,73,1542),(1561,93,1,73,1547),(1561,93,1,73,1552),(1561,93,1,73,1557),(1561,93,1,74,1540),(1561,93,1,74,1545),(1561,93,1,74,1550),(1561,93,1,74,1555),(1561,93,1,74,1560),(1561,93,1,76,1536),(1561,93,1,76,1541),(1561,93,1,76,1546),(1561,93,1,76,1551),(1561,93,1,76,1556),(1568,93,1,71,1562),(1568,93,1,71,1563),(1568,93,1,71,1564),(1568,93,1,75,1565),(1568,93,1,75,1566),(1568,93,1,75,1567),(1583,93,1,71,1569),(1583,93,1,71,1570),(1583,93,1,71,1571),(1583,93,1,74,1572),(1583,93,1,74,1575),(1583,93,1,74,1579),(1596,93,1,71,1592),(1596,93,1,71,1593),(1596,93,1,71,1594),(1596,93,1,71,1595),(1596,93,1,72,1588),(1596,93,1,72,1589),(1596,93,1,72,1590),(1596,93,1,72,1591),(1596,93,1,73,1578),(1596,93,1,73,1580),(1596,93,1,73,1581),(1596,93,1,73,1582),(1596,93,1,75,1584),(1596,93,1,75,1585),(1596,93,1,75,1586),(1596,93,1,75,1587),(1596,93,1,76,1573),(1596,93,1,76,1574),(1596,93,1,76,1576),(1596,93,1,76,1577),(1597,93,1,71,1608),(1597,93,1,71,1613),(1597,93,1,71,1618),(1597,93,1,72,1607),(1597,93,1,72,1612),(1597,93,1,72,1617),(1597,93,1,74,1609),(1597,93,1,74,1614),(1597,93,1,74,1619),(1597,93,1,75,1606),(1597,93,1,75,1611),(1597,93,1,75,1616),(1597,93,1,76,1605),(1597,93,1,76,1610),(1597,93,1,76,1615),(1604,93,1,74,1598),(1604,93,1,74,1599),(1604,93,1,74,1600),(1604,93,1,75,1601),(1604,93,1,75,1602),(1604,93,1,75,1603),(1630,93,1,73,1625),(1630,93,1,73,1626),(1630,93,1,73,1627),(1630,93,1,73,1628),(1630,93,1,73,1629),(1630,93,1,75,1620),(1630,93,1,75,1621),(1630,93,1,75,1622),(1630,93,1,75,1623),(1630,93,1,75,1624),(1643,93,1,72,1640),(1643,93,1,72,1641),(1643,93,1,72,1642),(1643,93,1,73,1631),(1643,93,1,73,1632),(1643,93,1,73,1633),(1643,93,1,75,1637),(1643,93,1,75,1638),(1643,93,1,75,1639),(1643,93,1,76,1634),(1643,93,1,76,1635),(1643,93,1,76,1636),(1656,93,1,72,1644),(1656,93,1,72,1645),(1656,93,1,72,1646),(1656,93,1,72,1647),(1656,93,1,74,1648),(1656,93,1,74,1649),(1656,93,1,74,1650),(1656,93,1,74,1651),(1656,93,1,75,1652),(1656,93,1,75,1653),(1656,93,1,75,1654),(1656,93,1,75,1655),(1677,93,1,71,1657),(1677,93,1,71,1662),(1677,93,1,71,1667),(1677,93,1,71,1672),(1677,93,1,72,1659),(1677,93,1,72,1664),(1677,93,1,72,1669),(1677,93,1,72,1674),(1677,93,1,74,1658),(1677,93,1,74,1663),(1677,93,1,74,1668),(1677,93,1,74,1673),(1677,93,1,75,1660),(1677,93,1,75,1665),(1677,93,1,75,1670),(1677,93,1,75,1675),(1677,93,1,76,1661),(1677,93,1,76,1666),(1677,93,1,76,1671),(1677,93,1,76,1676),(1699,93,1,72,1680),(1699,93,1,72,1685),(1699,93,1,72,1690),(1699,93,1,72,1696),(1699,93,1,73,1678),(1699,93,1,73,1683),(1699,93,1,73,1688),(1699,93,1,73,1694),(1699,93,1,74,1682),(1699,93,1,74,1687),(1699,93,1,74,1693),(1699,93,1,74,1698),(1699,93,1,75,1681),(1699,93,1,75,1686),(1699,93,1,75,1692),(1699,93,1,75,1697),(1699,93,1,76,1679),(1699,93,1,76,1684),(1699,93,1,76,1689),(1699,93,1,76,1695),(1709,93,1,72,1700),(1709,93,1,72,1701),(1709,93,1,72,1702),(1709,93,1,73,1703),(1709,93,1,73,1704),(1709,93,1,73,1705),(1709,93,1,76,1706),(1709,93,1,76,1707),(1709,93,1,76,1708),(1725,93,1,72,1716),(1725,93,1,72,1717),(1725,93,1,72,1718),(1725,93,1,73,1710),(1725,93,1,73,1711),(1725,93,1,73,1712),(1725,93,1,74,1722),(1725,93,1,74,1723),(1725,93,1,74,1724),(1725,93,1,75,1719),(1725,93,1,75,1720),(1725,93,1,75,1721),(1725,93,1,76,1713),(1725,93,1,76,1714),(1725,93,1,76,1715),(1735,93,1,72,1726),(1735,93,1,72,1727),(1735,93,1,72,1728),(1735,93,1,73,1732),(1735,93,1,73,1733),(1735,93,1,73,1734),(1735,93,1,75,1729),(1735,93,1,75,1730),(1735,93,1,75,1731),(1756,93,1,71,1748),(1756,93,1,71,1749),(1756,93,1,71,1750),(1756,93,1,71,1751),(1756,93,1,72,1740),(1756,93,1,72,1741),(1756,93,1,72,1742),(1756,93,1,72,1743),(1756,93,1,74,1752),(1756,93,1,74,1753),(1756,93,1,74,1754),(1756,93,1,74,1755),(1756,93,1,75,1744),(1756,93,1,75,1745),(1756,93,1,75,1746),(1756,93,1,75,1747),(1756,93,1,76,1736),(1756,93,1,76,1737),(1756,93,1,76,1738),(1756,93,1,76,1739),(1777,93,1,72,1757),(1777,93,1,72,1762),(1777,93,1,72,1767),(1777,93,1,72,1772),(1777,93,1,73,1759),(1777,93,1,73,1764),(1777,93,1,73,1769),(1777,93,1,73,1774),(1777,93,1,74,1761),(1777,93,1,74,1766),(1777,93,1,74,1771),(1777,93,1,74,1776),(1777,93,1,75,1760),(1777,93,1,75,1765),(1777,93,1,75,1770),(1777,93,1,75,1775),(1777,93,1,76,1758),(1777,93,1,76,1763),(1777,93,1,76,1768),(1777,93,1,76,1773),(1787,93,1,73,1784),(1787,93,1,73,1785),(1787,93,1,73,1786),(1787,93,1,74,1778),(1787,93,1,74,1779),(1787,93,1,74,1780),(1787,93,1,75,1781),(1787,93,1,75,1782),(1787,93,1,75,1783),(1808,93,1,71,1800),(1808,93,1,71,1801),(1808,93,1,71,1802),(1808,93,1,71,1803),(1808,93,1,72,1792),(1808,93,1,72,1793),(1808,93,1,72,1794),(1808,93,1,72,1795),(1808,93,1,74,1804),(1808,93,1,74,1805),(1808,93,1,74,1806),(1808,93,1,74,1807),(1808,93,1,75,1796),(1808,93,1,75,1797),(1808,93,1,75,1798),(1808,93,1,75,1799),(1808,93,1,76,1788),(1808,93,1,76,1789),(1808,93,1,76,1790),(1808,93,1,76,1791),(1817,93,1,71,1809),(1817,93,1,71,1810),(1817,93,1,71,1811),(1817,93,1,71,1812),(1817,93,1,74,1813),(1817,93,1,74,1814),(1817,93,1,74,1815),(1817,93,1,74,1816),(1840,93,1,73,1834),(1840,93,1,73,1835),(1840,93,1,73,1836),(1840,93,1,74,1837),(1840,93,1,74,1838),(1840,93,1,74,1839),(1866,93,1,71,1841),(1866,93,1,71,1842),(1866,93,1,71,1843),(1866,93,1,71,1844),(1866,93,1,71,1845),(1866,93,1,72,1846),(1866,93,1,72,1847),(1866,93,1,72,1848),(1866,93,1,72,1849),(1866,93,1,72,1850),(1866,93,1,74,1851),(1866,93,1,74,1852),(1866,93,1,74,1853),(1866,93,1,74,1854),(1866,93,1,74,1855),(1866,93,1,75,1856),(1866,93,1,75,1857),(1866,93,1,75,1858),(1866,93,1,75,1859),(1866,93,1,75,1860),(1866,93,1,76,1861),(1866,93,1,76,1862),(1866,93,1,76,1863),(1866,93,1,76,1864),(1866,93,1,76,1865),(1875,93,1,73,1867),(1875,93,1,73,1868),(1875,93,1,73,1869),(1875,93,1,73,1870),(1875,93,1,74,1871),(1875,93,1,74,1872),(1875,93,1,74,1873),(1875,93,1,74,1874),(1888,93,1,71,1877),(1888,93,1,71,1880),(1888,93,1,71,1883),(1888,93,1,71,1886),(1888,93,1,73,1876),(1888,93,1,73,1879),(1888,93,1,73,1882),(1888,93,1,73,1885),(1888,93,1,74,1878),(1888,93,1,74,1881),(1888,93,1,74,1884),(1888,93,1,74,1887),(1892,93,1,73,1889),(1892,93,1,73,1890),(1892,93,1,73,1891),(1896,93,1,75,1893),(1896,93,1,75,1894),(1896,93,1,75,1895),(1903,93,1,75,1897),(1903,93,1,75,1898),(1903,93,1,75,1899),(1903,93,1,76,1900),(1903,93,1,76,1901),(1903,93,1,76,1902),(1910,93,1,75,1907),(1910,93,1,75,1908),(1910,93,1,75,1909),(1910,93,1,76,1904),(1910,93,1,76,1905),(1910,93,1,76,1906),(1920,93,1,73,1911),(1920,93,1,73,1912),(1920,93,1,73,1913),(1920,93,1,74,1917),(1920,93,1,74,1918),(1920,93,1,74,1919),(1920,93,1,76,1914),(1920,93,1,76,1915),(1920,93,1,76,1916),(1927,93,1,71,1921),(1927,93,1,71,1922),(1927,93,1,71,1923),(1927,93,1,74,1924),(1927,93,1,74,1925),(1927,93,1,74,1926),(1943,93,1,71,1928),(1943,93,1,71,1931),(1943,93,1,71,1934),(1943,93,1,71,1937),(1943,93,1,71,1940),(1943,93,1,73,1930),(1943,93,1,73,1933),(1943,93,1,73,1936),(1943,93,1,73,1939),(1943,93,1,73,1942),(1943,93,1,75,1929),(1943,93,1,75,1932),(1943,93,1,75,1935),(1943,93,1,75,1938),(1943,93,1,75,1941),(1946,93,1,76,1944),(1946,93,1,76,1945),(1961,93,1,74,1954),(1961,93,1,74,1955),(1961,93,1,74,1956),(1961,93,1,74,1957),(1961,93,1,74,1958),(1961,93,1,74,1959),(1961,93,1,74,1960),(1961,93,1,76,1947),(1961,93,1,76,1948),(1961,93,1,76,1949),(1961,93,1,76,1950),(1961,93,1,76,1951),(1961,93,1,76,1952),(1961,93,1,76,1953),(1972,93,1,73,1967),(1972,93,1,73,1968),(1972,93,1,73,1969),(1972,93,1,73,1970),(1972,93,1,73,1971),(1972,93,1,75,1962),(1972,93,1,75,1963),(1972,93,1,75,1964),(1972,93,1,75,1965),(1972,93,1,75,1966),(1991,93,1,71,1973),(1991,93,1,71,1976),(1991,93,1,71,1979),(1991,93,1,71,1982),(1991,93,1,71,1985),(1991,93,1,71,1988),(1991,93,1,73,1975),(1991,93,1,73,1978),(1991,93,1,73,1981),(1991,93,1,73,1984),(1991,93,1,73,1987),(1991,93,1,73,1990),(1991,93,1,74,1974),(1991,93,1,74,1977),(1991,93,1,74,1980),(1991,93,1,74,1983),(1991,93,1,74,1986),(1991,93,1,74,1989),(1996,93,1,71,1994),(1996,93,1,71,1995),(1996,93,1,74,1992),(1996,93,1,74,1993),(2001,93,1,75,1997),(2001,93,1,75,1998),(2001,93,1,76,1999),(2001,93,1,76,2000),(2010,93,1,75,2006),(2010,93,1,75,2007),(2010,93,1,75,2008),(2010,93,1,75,2009),(2010,93,1,76,2002),(2010,93,1,76,2003),(2010,93,1,76,2004),(2010,93,1,76,2005),(2017,93,1,72,2011),(2017,93,1,72,2012),(2017,93,1,72,2013),(2017,93,1,76,2014),(2017,93,1,76,2015),(2017,93,1,76,2016),(2020,93,1,71,2018),(2020,93,1,75,2019),(2029,93,1,71,2025),(2029,93,1,71,2026),(2029,93,1,71,2027),(2029,93,1,71,2028),(2029,93,1,73,2021),(2029,93,1,73,2022),(2029,93,1,73,2023),(2029,93,1,73,2024),(2032,93,1,71,2030),(2032,93,1,75,2031),(2050,93,1,74,2046),(2050,93,1,74,2047),(2050,93,1,74,2048),(2050,93,1,74,2049),(2050,93,1,75,2042),(2050,93,1,75,2043),(2050,93,1,75,2044),(2050,93,1,75,2045),(2055,93,1,73,2051),(2055,93,1,73,2052),(2055,93,1,76,2053),(2055,93,1,76,2054),(2060,93,1,71,2056),(2060,93,1,71,2058),(2060,93,1,74,2057),(2060,93,1,74,2059),(2065,93,1,73,2061),(2065,93,1,73,2062),(2065,93,1,74,2063),(2065,93,1,74,2064),(2072,93,1,72,2069),(2072,93,1,72,2070),(2072,93,1,72,2071),(2072,93,1,76,2066),(2072,93,1,76,2067),(2072,93,1,76,2068),(2077,93,1,73,2073),(2077,93,1,73,2074),(2077,93,1,76,2075),(2077,93,1,76,2076),(2084,93,1,72,2081),(2084,93,1,72,2082),(2084,93,1,72,2083),(2084,93,1,75,2078),(2084,93,1,75,2079),(2084,93,1,75,2080),(2089,93,1,75,2085),(2089,93,1,75,2086),(2089,93,1,76,2087),(2089,93,1,76,2088),(2098,93,1,72,2094),(2098,93,1,72,2095),(2098,93,1,72,2096),(2098,93,1,72,2097),(2098,93,1,76,2090),(2098,93,1,76,2091),(2098,93,1,76,2092),(2098,93,1,76,2093),(2105,93,1,72,2099),(2105,93,1,72,2100),(2105,93,1,72,2101),(2105,93,1,76,2102),(2105,93,1,76,2103),(2105,93,1,76,2104),(2116,93,1,72,2106),(2116,93,1,72,2107),(2116,93,1,72,2108),(2116,93,1,72,2109),(2116,93,1,72,2110),(2116,93,1,75,2111),(2116,93,1,75,2112),(2116,93,1,75,2113),(2116,93,1,75,2114),(2116,93,1,75,2115),(2123,93,1,71,2117),(2123,93,1,71,2118),(2123,93,1,71,2119),(2123,93,1,72,2120),(2123,93,1,72,2121),(2123,93,1,72,2122),(2132,93,1,72,2124),(2132,93,1,72,2125),(2132,93,1,72,2126),(2132,93,1,72,2127),(2132,93,1,75,2128),(2132,93,1,75,2129),(2132,93,1,75,2130),(2132,93,1,75,2131),(2135,93,1,74,2133),(2135,93,1,75,2134),(2138,93,1,75,2136),(2138,93,1,76,2137),(2145,93,1,73,2139),(2145,93,1,73,2140),(2145,93,1,73,2141),(2145,93,1,76,2142),(2145,93,1,76,2143),(2145,93,1,76,2144),(2149,93,1,71,2147),(2149,93,1,74,2146),(2157,93,1,72,2148),(2157,93,1,72,2150),(2157,93,1,72,2151),(2157,93,1,72,2152),(2157,93,1,73,2153),(2157,93,1,73,2154),(2157,93,1,73,2155),(2157,93,1,73,2156),(2168,93,1,71,2158),(2168,93,1,71,2159),(2168,93,1,71,2160),(2168,93,1,71,2161),(2168,93,1,71,2162),(2168,93,1,75,2163),(2168,93,1,75,2164),(2168,93,1,75,2165),(2168,93,1,75,2166),(2168,93,1,75,2167),(2171,93,1,74,2169),(2171,93,1,76,2170),(2178,93,1,71,2175),(2178,93,1,71,2176),(2178,93,1,71,2177),(2178,93,1,76,2172),(2178,93,1,76,2173),(2178,93,1,76,2174),(2185,93,1,74,2182),(2185,93,1,74,2183),(2185,93,1,74,2184),(2185,93,1,76,2179),(2185,93,1,76,2180),(2185,93,1,76,2181),(2190,93,1,73,2186),(2190,93,1,73,2187),(2190,93,1,76,2188),(2190,93,1,76,2189),(2197,93,1,71,2191),(2197,93,1,71,2192),(2197,93,1,71,2193),(2197,93,1,74,2194),(2197,93,1,74,2195),(2197,93,1,74,2196),(2204,93,1,74,2198),(2204,93,1,74,2199),(2204,93,1,74,2200),(2204,93,1,75,2201),(2204,93,1,75,2202),(2204,93,1,75,2203),(2207,93,1,71,2205),(2207,93,1,74,2206),(2212,93,1,71,2208),(2212,93,1,71,2209),(2212,93,1,73,2210),(2212,93,1,73,2211),(2219,93,1,71,2216),(2219,93,1,71,2217),(2219,93,1,71,2218),(2219,93,1,73,2213),(2219,93,1,73,2214),(2219,93,1,73,2215),(2222,93,1,75,2220),(2222,93,1,76,2221),(2229,93,1,71,2224),(2229,93,1,71,2226),(2229,93,1,71,2228),(2229,93,1,76,2223),(2229,93,1,76,2225),(2229,93,1,76,2227),(2234,93,1,73,2232),(2234,93,1,73,2233),(2234,93,1,75,2230),(2234,93,1,75,2231),(2245,93,1,71,2235),(2245,93,1,71,2236),(2245,93,1,71,2237),(2245,93,1,71,2238),(2245,93,1,71,2239),(2245,93,1,75,2240),(2245,93,1,75,2241),(2245,93,1,75,2242),(2245,93,1,75,2243),(2245,93,1,75,2244),(2252,93,1,74,2249),(2252,93,1,74,2250),(2252,93,1,74,2251),(2252,93,1,76,2246),(2252,93,1,76,2247),(2252,93,1,76,2248),(2255,93,1,71,2253),(2255,93,1,74,2254),(2268,93,1,73,2256),(2268,93,1,73,2257),(2268,93,1,73,2258),(2268,93,1,73,2259),(2268,93,1,73,2260),(2268,93,1,73,2261),(2268,93,1,76,2262),(2268,93,1,76,2263),(2268,93,1,76,2264),(2268,93,1,76,2265),(2268,93,1,76,2266),(2268,93,1,76,2267),(2284,93,1,71,2278),(2284,93,1,71,2279),(2284,93,1,71,2280),(2284,93,1,75,2281),(2284,93,1,75,2282),(2284,93,1,75,2283),(2291,93,1,71,2285),(2291,93,1,71,2286),(2291,93,1,71,2287),(2291,93,1,73,2288),(2291,93,1,73,2289),(2291,93,1,73,2290),(2300,93,1,72,2292),(2300,93,1,72,2294),(2300,93,1,72,2296),(2300,93,1,72,2298),(2300,93,1,75,2293),(2300,93,1,75,2295),(2300,93,1,75,2297),(2300,93,1,75,2299),(2309,93,1,73,2301),(2309,93,1,73,2302),(2309,93,1,73,2303),(2309,93,1,73,2304),(2309,93,1,74,2305),(2309,93,1,74,2306),(2309,93,1,74,2307),(2309,93,1,74,2308),(2320,93,1,74,2310),(2320,93,1,74,2311),(2320,93,1,74,2312),(2320,93,1,74,2313),(2320,93,1,74,2314),(2320,93,1,75,2315),(2320,93,1,75,2316),(2320,93,1,75,2317),(2320,93,1,75,2318),(2320,93,1,75,2319),(2336,93,1,72,2330),(2336,93,1,72,2331),(2336,93,1,72,2332),(2336,93,1,75,2333),(2336,93,1,75,2334),(2336,93,1,75,2335),(2343,93,1,72,2340),(2343,93,1,72,2341),(2343,93,1,72,2342),(2343,93,1,76,2337),(2343,93,1,76,2338),(2343,93,1,76,2339),(2350,93,1,73,2344),(2350,93,1,73,2345),(2350,93,1,73,2346),(2350,93,1,76,2347),(2350,93,1,76,2348),(2350,93,1,76,2349),(2357,93,1,75,2351),(2357,93,1,75,2352),(2357,93,1,75,2353),(2357,93,1,76,2354),(2357,93,1,76,2355),(2357,93,1,76,2356),(2366,93,1,72,2358),(2366,93,1,72,2360),(2366,93,1,72,2362),(2366,93,1,72,2364),(2366,93,1,73,2359),(2366,93,1,73,2361),(2366,93,1,73,2363),(2366,93,1,73,2365),(2373,93,1,71,2367),(2373,93,1,71,2368),(2373,93,1,71,2369),(2373,93,1,74,2370),(2373,93,1,74,2371),(2373,93,1,74,2372),(2389,93,1,71,2386),(2389,93,1,71,2387),(2389,93,1,71,2388),(2389,93,1,72,2380),(2389,93,1,72,2381),(2389,93,1,72,2382),(2389,93,1,73,2374),(2389,93,1,73,2375),(2389,93,1,73,2376),(2389,93,1,75,2383),(2389,93,1,75,2384),(2389,93,1,75,2385),(2389,93,1,76,2377),(2389,93,1,76,2378),(2389,93,1,76,2379),(2396,93,1,71,2390),(2396,93,1,71,2391),(2396,93,1,71,2392),(2396,93,1,74,2393),(2396,93,1,74,2394),(2396,93,1,74,2395),(2403,93,1,75,2397),(2403,93,1,75,2398),(2403,93,1,75,2399),(2403,93,1,76,2400),(2403,93,1,76,2401),(2403,93,1,76,2402),(2410,93,1,74,2404),(2410,93,1,74,2405),(2410,93,1,74,2406),(2410,93,1,76,2407),(2410,93,1,76,2408),(2410,93,1,76,2409),(2417,93,1,71,2411),(2417,93,1,71,2412),(2417,93,1,71,2413),(2417,93,1,73,2414),(2417,93,1,73,2415),(2417,93,1,73,2416),(2424,93,1,71,2418),(2424,93,1,71,2419),(2424,93,1,71,2420),(2424,93,1,74,2421),(2424,93,1,74,2422),(2424,93,1,74,2423),(2431,93,1,72,2425),(2431,93,1,72,2426),(2431,93,1,72,2427),(2431,93,1,75,2428),(2431,93,1,75,2429),(2431,93,1,75,2430),(2440,93,1,74,2432),(2440,93,1,74,2433),(2440,93,1,74,2434),(2440,93,1,74,2435),(2440,93,1,75,2436),(2440,93,1,75,2437),(2440,93,1,75,2438),(2440,93,1,75,2439),(2456,93,1,72,2446),(2456,93,1,72,2447),(2456,93,1,72,2448),(2456,93,1,72,2449),(2456,93,1,72,2450),(2456,93,1,74,2441),(2456,93,1,74,2442),(2456,93,1,74,2443),(2456,93,1,74,2444),(2456,93,1,74,2445),(2456,93,1,75,2451),(2456,93,1,75,2452),(2456,93,1,75,2453),(2456,93,1,75,2454),(2456,93,1,75,2455),(2465,93,1,75,2457),(2465,93,1,75,2458),(2465,93,1,75,2459),(2465,93,1,75,2460),(2465,93,1,76,2461),(2465,93,1,76,2462),(2465,93,1,76,2463),(2465,93,1,76,2464),(2478,93,1,73,2472),(2478,93,1,73,2473),(2478,93,1,73,2474),(2478,93,1,73,2475),(2478,93,1,73,2476),(2478,93,1,73,2477),(2478,93,1,74,2466),(2478,93,1,74,2467),(2478,93,1,74,2468),(2478,93,1,74,2469),(2478,93,1,74,2470),(2478,93,1,74,2471),(2487,93,1,73,2483),(2487,93,1,73,2484),(2487,93,1,73,2485),(2487,93,1,73,2486),(2487,93,1,74,2479),(2487,93,1,74,2480),(2487,93,1,74,2481),(2487,93,1,74,2482),(2500,93,1,74,2488),(2500,93,1,74,2489),(2500,93,1,74,2490),(2500,93,1,74,2491),(2500,93,1,74,2492),(2500,93,1,74,2493),(2500,93,1,76,2494),(2500,93,1,76,2495),(2500,93,1,76,2496),(2500,93,1,76,2497),(2500,93,1,76,2498),(2500,93,1,76,2499),(2507,93,1,73,2504),(2507,93,1,73,2505),(2507,93,1,73,2506),(2507,93,1,74,2501),(2507,93,1,74,2502),(2507,93,1,74,2503),(2517,93,1,71,2508),(2517,93,1,71,2509),(2517,93,1,71,2510),(2517,93,1,73,2514),(2517,93,1,73,2515),(2517,93,1,73,2516),(2517,93,1,75,2511),(2517,93,1,75,2512),(2517,93,1,75,2513),(2524,93,1,71,2521),(2524,93,1,71,2522),(2524,93,1,71,2523),(2524,93,1,74,2518),(2524,93,1,74,2519),(2524,93,1,74,2520),(2533,93,1,71,2525),(2533,93,1,71,2526),(2533,93,1,71,2527),(2533,93,1,71,2528),(2533,93,1,75,2529),(2533,93,1,75,2530),(2533,93,1,75,2531),(2533,93,1,75,2532),(2542,93,1,71,2534),(2542,93,1,71,2535),(2542,93,1,71,2536),(2542,93,1,71,2537),(2542,93,1,72,2538),(2542,93,1,72,2539),(2542,93,1,72,2540),(2542,93,1,72,2541),(1,99,1,1,1014),(1,99,1,1,1015),(1,99,1,1,1016),(1,99,1,1,1017),(1,99,1,1,1018),(1,99,1,1,1019),(1,99,1,1,1020),(1,99,1,1,1021),(1,99,1,1,1022),(2,99,1,1,942),(2,99,1,1,943),(2,99,1,1,944),(2,99,1,1,945),(2,99,1,1,946),(2,99,1,1,947),(3,99,1,4,3),(4,99,1,1,1004),(4,99,1,1,1005),(4,99,1,1,1006),(4,99,1,1,1007),(4,99,1,1,1008),(4,99,1,1,1009),(4,99,1,1,1010),(4,99,1,1,1011),(4,99,1,1,1012),(4,99,1,1,1013),(4,99,1,4,4),(5,99,1,1,699),(5,99,1,1,700),(5,99,1,1,701),(5,99,1,1,702),(5,99,1,1,703),(5,99,1,1,704),(5,99,1,1,705),(5,99,1,1,706),(5,99,1,1,707),(5,99,1,1,708),(5,99,1,1,709),(5,99,1,1,710),(5,99,1,1,711),(5,99,1,1,712),(5,99,1,1,713),(6,99,1,1,958),(6,99,1,1,959),(6,99,1,4,6),(7,99,1,1,157),(7,99,1,1,158),(7,99,1,1,159),(7,99,1,1,1145),(7,99,1,1,1146),(7,99,1,1,1147),(8,99,1,1,734),(8,99,1,1,735),(8,99,1,1,736),(8,99,1,1,737),(8,99,1,1,738),(8,99,1,1,739),(8,99,1,1,740),(8,99,1,1,741),(8,99,1,1,742),(8,99,1,1,743),(8,99,1,1,744),(8,99,1,1,745),(8,99,1,1,746),(8,99,1,1,747),(8,99,1,1,748),(9,99,1,1,163),(9,99,1,1,164),(9,99,1,1,165),(9,99,1,1,1290),(9,99,1,1,1291),(9,99,1,1,1292),(9,99,1,4,9),(10,99,1,1,166),(10,99,1,1,167),(10,99,1,1,168),(10,99,1,1,169),(10,99,1,1,1148),(10,99,1,1,1149),(10,99,1,1,1150),(10,99,1,1,1151),(11,99,1,1,170),(11,99,1,1,171),(11,99,1,1,1162),(11,99,1,1,1163),(12,99,1,1,172),(12,99,1,1,173),(12,99,1,1,174),(12,99,1,1,1184),(12,99,1,1,1185),(12,99,1,1,1186),(15,99,1,1,674),(15,99,1,1,675),(15,99,1,1,676),(15,99,1,1,677),(15,99,1,1,678),(15,99,1,1,679),(15,99,1,1,680),(15,99,1,1,681),(15,99,1,1,682),(15,99,1,1,683),(15,99,1,1,684),(15,99,1,1,685),(15,99,1,1,686),(15,99,1,1,687),(15,99,1,1,688),(15,99,1,1,689),(15,99,1,1,690),(15,99,1,1,691),(15,99,1,1,692),(15,99,1,1,693),(15,99,1,1,694),(15,99,1,1,695),(15,99,1,1,696),(15,99,1,1,697),(15,99,1,1,698),(16,99,1,1,986),(16,99,1,1,987),(16,99,1,1,988),(16,99,1,1,989),(16,99,1,1,990),(16,99,1,1,991),(16,99,1,1,992),(16,99,1,1,993),(16,99,1,1,994),(16,99,1,1,995),(16,99,1,1,996),(16,99,1,1,997),(16,99,1,1,998),(16,99,1,1,999),(16,99,1,1,1000),(16,99,1,1,1001),(16,99,1,1,1002),(16,99,1,1,1003),(16,99,1,4,16),(17,99,1,1,186),(17,99,1,1,187),(17,99,1,1,188),(17,99,1,1,189),(17,99,1,1,1156),(17,99,1,1,1157),(17,99,1,1,1158),(17,99,1,1,1159),(18,99,1,1,190),(18,99,1,1,191),(18,99,1,1,192),(18,99,1,1,193),(18,99,1,1,1238),(18,99,1,1,1239),(18,99,1,1,1240),(18,99,1,1,1241),(19,99,1,1,194),(19,99,1,1,195),(19,99,1,1,196),(19,99,1,1,1219),(19,99,1,1,1220),(19,99,1,1,1221),(20,99,1,1,549),(20,99,1,1,550),(20,99,1,1,551),(20,99,1,1,552),(20,99,1,1,553),(20,99,1,1,554),(20,99,1,1,555),(20,99,1,1,556),(20,99,1,1,557),(20,99,1,1,558),(20,99,1,1,559),(20,99,1,1,560),(20,99,1,1,561),(20,99,1,1,562),(20,99,1,1,563),(20,99,1,1,564),(20,99,1,1,565),(20,99,1,1,566),(20,99,1,1,567),(20,99,1,1,568),(20,99,1,1,569),(20,99,1,1,570),(20,99,1,1,571),(20,99,1,1,572),(20,99,1,1,573),(20,99,1,1,574),(20,99,1,1,575),(20,99,1,1,576),(20,99,1,1,577),(20,99,1,1,578),(22,99,1,1,203),(22,99,1,1,204),(22,99,1,1,205),(22,99,1,1,206),(22,99,1,1,1280),(22,99,1,1,1281),(22,99,1,1,1282),(22,99,1,1,1283),(22,99,1,4,22),(24,99,1,1,207),(24,99,1,1,208),(24,99,1,1,209),(24,99,1,1,1305),(24,99,1,1,1306),(24,99,1,1,1307),(24,99,1,4,24),(25,99,1,1,972),(25,99,1,1,973),(25,99,1,1,974),(25,99,1,1,975),(25,99,1,1,976),(25,99,1,1,977),(25,99,1,1,978),(25,99,1,1,979),(25,99,1,1,980),(25,99,1,1,981),(25,99,1,1,982),(25,99,1,1,983),(25,99,1,1,984),(25,99,1,1,985),(25,99,1,4,25),(26,99,1,1,217),(26,99,1,1,218),(26,99,1,1,219),(26,99,1,1,220),(26,99,1,1,221),(26,99,1,1,1175),(26,99,1,1,1176),(26,99,1,1,1177),(26,99,1,1,1178),(26,99,1,1,1179),(29,99,1,1,644),(29,99,1,1,645),(29,99,1,1,646),(29,99,1,1,647),(29,99,1,1,648),(29,99,1,1,649),(29,99,1,1,650),(29,99,1,1,651),(29,99,1,1,652),(29,99,1,1,653),(29,99,1,1,654),(29,99,1,1,655),(29,99,1,1,656),(29,99,1,1,657),(29,99,1,1,658),(29,99,1,1,659),(29,99,1,1,660),(29,99,1,1,661),(29,99,1,1,662),(29,99,1,1,663),(29,99,1,1,664),(29,99,1,1,665),(29,99,1,1,666),(29,99,1,1,667),(29,99,1,1,668),(29,99,1,1,669),(29,99,1,1,670),(29,99,1,1,671),(29,99,1,1,672),(29,99,1,1,673),(30,99,1,1,228),(30,99,1,1,229),(30,99,1,1,230),(30,99,1,1,1293),(30,99,1,1,1294),(30,99,1,1,1295),(30,99,1,4,30),(31,99,1,1,231),(31,99,1,1,232),(31,99,1,1,1312),(31,99,1,1,1313),(31,99,1,4,31),(32,99,1,1,233),(32,99,1,1,234),(32,99,1,1,1327),(32,99,1,1,1328),(32,99,1,4,32),(33,99,1,1,235),(33,99,1,1,236),(33,99,1,1,237),(33,99,1,1,238),(33,99,1,1,1141),(33,99,1,1,1142),(33,99,1,1,1143),(33,99,1,1,1144),(34,99,1,1,844),(34,99,1,1,845),(34,99,1,1,846),(34,99,1,1,847),(34,99,1,1,848),(34,99,1,1,849),(34,99,1,1,850),(34,99,1,1,851),(34,99,1,1,852),(34,99,1,1,853),(34,99,1,1,854),(34,99,1,1,855),(34,99,1,1,856),(34,99,1,1,857),(34,99,1,1,858),(34,99,1,1,859),(34,99,1,1,860),(34,99,1,1,861),(34,99,1,1,862),(34,99,1,1,863),(35,99,1,1,614),(35,99,1,1,615),(35,99,1,1,616),(35,99,1,1,617),(35,99,1,1,618),(35,99,1,1,619),(35,99,1,1,620),(35,99,1,1,621),(35,99,1,1,622),(35,99,1,1,623),(35,99,1,1,624),(35,99,1,1,625),(35,99,1,1,626),(35,99,1,1,627),(35,99,1,1,628),(35,99,1,1,629),(35,99,1,1,630),(35,99,1,1,631),(35,99,1,1,632),(35,99,1,1,633),(35,99,1,1,634),(35,99,1,1,635),(35,99,1,1,636),(35,99,1,1,637),(35,99,1,1,638),(35,99,1,1,639),(35,99,1,1,640),(35,99,1,1,641),(35,99,1,1,642),(35,99,1,1,643),(36,99,1,1,879),(36,99,1,1,880),(36,99,1,1,881),(36,99,1,1,882),(36,99,1,1,883),(36,99,1,1,884),(36,99,1,1,885),(36,99,1,1,886),(36,99,1,1,887),(36,99,1,1,888),(36,99,1,1,889),(36,99,1,1,890),(36,99,1,1,891),(36,99,1,1,892),(36,99,1,1,893),(36,99,1,1,894),(36,99,1,1,895),(36,99,1,1,896),(36,99,1,1,897),(36,99,1,1,898),(36,99,1,1,899),(36,99,1,1,900),(36,99,1,1,901),(36,99,1,1,902),(36,99,1,1,903),(38,99,1,1,864),(38,99,1,1,865),(38,99,1,1,866),(38,99,1,1,867),(38,99,1,1,868),(38,99,1,1,869),(38,99,1,1,870),(38,99,1,1,871),(38,99,1,1,872),(38,99,1,1,873),(38,99,1,1,874),(38,99,1,1,875),(38,99,1,1,876),(38,99,1,1,877),(38,99,1,1,878),(41,99,1,1,257),(41,99,1,1,258),(41,99,1,1,259),(41,99,1,1,260),(41,99,1,1,1234),(41,99,1,1,1235),(41,99,1,1,1236),(41,99,1,1,1237),(42,99,1,1,804),(42,99,1,1,805),(42,99,1,1,806),(42,99,1,1,807),(42,99,1,1,808),(42,99,1,1,809),(42,99,1,1,810),(42,99,1,1,811),(42,99,1,1,812),(42,99,1,1,813),(42,99,1,1,814),(42,99,1,1,815),(42,99,1,1,816),(42,99,1,1,817),(42,99,1,1,818),(42,99,1,1,819),(42,99,1,1,820),(42,99,1,1,821),(42,99,1,1,822),(42,99,1,1,823),(43,99,1,1,265),(43,99,1,1,266),(43,99,1,1,267),(43,99,1,1,268),(43,99,1,1,269),(43,99,1,1,948),(43,99,1,1,949),(43,99,1,1,950),(43,99,1,1,951),(43,99,1,1,952),(43,99,1,1,953),(43,99,1,1,954),(43,99,1,1,955),(43,99,1,1,956),(43,99,1,1,957),(43,99,1,4,43),(44,99,1,1,270),(44,99,1,1,271),(44,99,1,1,1343),(44,99,1,1,1344),(44,99,1,4,44),(45,99,1,1,272),(45,99,1,1,273),(45,99,1,1,274),(45,99,1,1,275),(45,99,1,1,276),(45,99,1,1,1242),(45,99,1,1,1243),(45,99,1,1,1244),(45,99,1,1,1245),(45,99,1,1,1246),(46,99,1,1,714),(46,99,1,1,715),(46,99,1,1,716),(46,99,1,1,717),(46,99,1,1,718),(46,99,1,1,719),(46,99,1,1,720),(46,99,1,1,721),(46,99,1,1,722),(46,99,1,1,723),(46,99,1,1,724),(46,99,1,1,725),(46,99,1,1,726),(46,99,1,1,727),(46,99,1,1,728),(46,99,1,1,729),(46,99,1,1,730),(46,99,1,1,731),(46,99,1,1,732),(46,99,1,1,733),(47,99,1,1,749),(47,99,1,1,750),(47,99,1,1,751),(47,99,1,1,752),(47,99,1,1,753),(47,99,1,1,754),(47,99,1,1,755),(47,99,1,1,756),(47,99,1,1,757),(47,99,1,1,758),(47,99,1,1,759),(47,99,1,1,760),(47,99,1,1,761),(47,99,1,1,762),(47,99,1,1,763),(47,99,1,1,764),(47,99,1,1,765),(47,99,1,1,766),(47,99,1,1,767),(47,99,1,1,768),(48,99,1,1,285),(48,99,1,1,286),(48,99,1,1,1315),(48,99,1,1,1316),(48,99,1,4,48),(49,99,1,1,789),(49,99,1,1,790),(49,99,1,1,791),(49,99,1,1,792),(49,99,1,1,793),(49,99,1,1,794),(49,99,1,1,795),(49,99,1,1,796),(49,99,1,1,797),(49,99,1,1,798),(49,99,1,1,799),(49,99,1,1,800),(49,99,1,1,801),(49,99,1,1,802),(49,99,1,1,803),(50,99,1,1,290),(50,99,1,1,291),(50,99,1,1,292),(50,99,1,1,1228),(50,99,1,1,1229),(50,99,1,1,1230),(51,99,1,1,130),(51,99,1,1,131),(51,99,1,1,1133),(51,99,1,1,1134),(53,99,1,1,769),(53,99,1,1,770),(53,99,1,1,771),(53,99,1,1,772),(53,99,1,1,773),(53,99,1,1,774),(53,99,1,1,775),(53,99,1,1,776),(53,99,1,1,777),(53,99,1,1,778),(53,99,1,1,779),(53,99,1,1,780),(53,99,1,1,781),(53,99,1,1,782),(53,99,1,1,783),(53,99,1,1,784),(53,99,1,1,785),(53,99,1,1,786),(53,99,1,1,787),(53,99,1,1,788),(54,99,1,1,300),(54,99,1,1,301),(54,99,1,1,302),(54,99,1,1,303),(54,99,1,1,304),(54,99,1,1,305),(54,99,1,1,1222),(54,99,1,1,1223),(54,99,1,1,1224),(54,99,1,1,1225),(54,99,1,1,1226),(54,99,1,1,1227),(55,99,1,1,1029),(55,99,1,1,1030),(55,99,1,1,1031),(55,99,1,1,1032),(55,99,1,1,1033),(55,99,1,1,1034),(55,99,1,4,55),(56,99,1,1,309),(56,99,1,1,310),(56,99,1,1,311),(56,99,1,1,1284),(56,99,1,1,1285),(56,99,1,1,1286),(56,99,1,4,56),(57,99,1,1,312),(57,99,1,1,313),(57,99,1,1,314),(57,99,1,1,315),(57,99,1,1,1257),(57,99,1,1,1258),(57,99,1,1,1259),(57,99,1,1,1260),(57,99,1,4,57),(58,99,1,1,316),(58,99,1,1,317),(58,99,1,1,1309),(58,99,1,1,1310),(58,99,1,4,58),(59,99,1,1,318),(59,99,1,1,319),(59,99,1,1,320),(59,99,1,1,321),(59,99,1,1,1187),(59,99,1,1,1188),(59,99,1,1,1189),(59,99,1,1,1190),(60,99,1,1,322),(60,99,1,1,323),(60,99,1,1,324),(60,99,1,1,325),(60,99,1,1,326),(60,99,1,1,327),(60,99,1,1,1251),(60,99,1,1,1252),(60,99,1,1,1253),(60,99,1,1,1254),(60,99,1,1,1255),(60,99,1,1,1256),(60,99,1,4,60),(61,99,1,1,328),(61,99,1,1,329),(61,99,1,1,1329),(61,99,1,1,1330),(61,99,1,4,61),(63,99,1,1,1049),(63,99,1,1,1050),(63,99,1,1,1051),(63,99,1,1,1052),(63,99,1,1,1053),(63,99,1,1,1054),(63,99,1,1,1055),(63,99,1,1,1056),(63,99,1,4,63),(64,99,1,1,334),(64,99,1,1,335),(64,99,1,1,336),(64,99,1,1,337),(64,99,1,1,1180),(64,99,1,1,1181),(64,99,1,1,1182),(64,99,1,1,1183),(65,99,1,1,338),(65,99,1,1,339),(65,99,1,1,340),(65,99,1,1,1322),(65,99,1,1,1323),(65,99,1,1,1324),(65,99,1,4,65),(66,99,1,1,341),(66,99,1,1,342),(66,99,1,1,343),(66,99,1,1,344),(66,99,1,1,345),(66,99,1,1,1083),(66,99,1,1,1084),(66,99,1,1,1085),(66,99,1,1,1086),(66,99,1,1,1087),(66,99,1,4,66),(68,99,1,1,1035),(68,99,1,1,1036),(68,99,1,1,1037),(68,99,1,1,1038),(68,99,1,1,1039),(68,99,1,1,1040),(68,99,1,1,1041),(68,99,1,1,1042),(68,99,1,4,68),(69,99,1,1,350),(69,99,1,1,351),(69,99,1,1,352),(69,99,1,1,353),(69,99,1,1,1247),(69,99,1,1,1248),(69,99,1,1,1249),(69,99,1,1,1250),(70,99,1,1,354),(70,99,1,1,355),(70,99,1,1,356),(70,99,1,1,357),(70,99,1,1,1152),(70,99,1,1,1153),(70,99,1,1,1154),(70,99,1,1,1155),(71,99,1,1,358),(71,99,1,1,359),(71,99,1,1,360),(71,99,1,1,1130),(71,99,1,1,1131),(71,99,1,1,1132),(71,99,1,1,1135),(71,99,1,1,1136),(71,99,1,1,1137),(71,99,1,4,71),(72,99,1,1,364),(72,99,1,1,365),(72,99,1,1,366),(72,99,1,1,367),(72,99,1,1,1167),(72,99,1,1,1168),(72,99,1,1,1169),(72,99,1,1,1170),(73,99,1,1,368),(73,99,1,1,369),(73,99,1,1,370),(73,99,1,1,371),(73,99,1,1,372),(73,99,1,1,373),(73,99,1,1,374),(73,99,1,1,375),(74,99,1,1,378),(74,99,1,1,379),(74,99,1,1,1325),(74,99,1,1,1326),(74,99,1,4,74),(75,99,1,1,380),(75,99,1,1,381),(75,99,1,1,382),(75,99,1,1,383),(75,99,1,1,384),(75,99,1,1,1214),(75,99,1,1,1215),(75,99,1,1,1216),(75,99,1,1,1217),(75,99,1,1,1218),(76,99,1,1,385),(76,99,1,1,386),(76,99,1,1,387),(76,99,1,1,1127),(76,99,1,1,1128),(76,99,1,1,1129),(76,99,1,4,76),(77,99,1,1,388),(77,99,1,1,389),(77,99,1,1,390),(77,99,1,1,1287),(77,99,1,1,1288),(77,99,1,1,1289),(77,99,1,4,77),(78,99,1,1,1023),(78,99,1,1,1024),(78,99,1,1,1025),(78,99,1,1,1026),(78,99,1,1,1027),(78,99,1,1,1028),(78,99,1,4,78),(79,99,1,1,1057),(79,99,1,1,1058),(79,99,1,1,1059),(79,99,1,1,1060),(79,99,1,1,1061),(79,99,1,1,1062),(79,99,1,1,1101),(79,99,1,1,1102),(79,99,1,1,1103),(79,99,1,4,79),(80,99,1,1,397),(80,99,1,1,398),(80,99,1,1,399),(80,99,1,1,400),(80,99,1,1,1171),(80,99,1,1,1172),(80,99,1,1,1173),(80,99,1,1,1174),(81,99,1,1,401),(81,99,1,1,402),(81,99,1,1,403),(81,99,1,1,404),(81,99,1,1,405),(81,99,1,1,406),(82,99,1,1,407),(82,99,1,1,408),(82,99,1,1,409),(82,99,1,1,410),(82,99,1,1,411),(82,99,1,1,1191),(82,99,1,1,1192),(82,99,1,1,1193),(82,99,1,1,1194),(82,99,1,1,1195),(83,99,1,1,1075),(83,99,1,1,1076),(83,99,1,1,1077),(83,99,1,1,1078),(83,99,1,1,1079),(83,99,1,1,1080),(83,99,1,1,1081),(83,99,1,1,1082),(83,99,1,1,1091),(83,99,1,1,1092),(83,99,1,1,1093),(83,99,1,1,1094),(83,99,1,4,83),(84,99,1,1,416),(84,99,1,1,417),(84,99,1,1,418),(84,99,1,1,419),(84,99,1,1,420),(84,99,1,1,421),(84,99,1,1,422),(84,99,1,1,423),(84,99,1,1,424),(84,99,1,1,425),(84,99,1,1,1261),(84,99,1,1,1262),(84,99,1,1,1263),(84,99,1,1,1264),(84,99,1,1,1265),(84,99,1,4,84),(85,99,1,1,1043),(85,99,1,1,1044),(85,99,1,1,1045),(85,99,1,1,1046),(85,99,1,1,1047),(85,99,1,1,1048),(85,99,1,4,85),(86,99,1,1,1272),(86,99,1,1,1273),(86,99,1,1,1274),(86,99,1,1,1275),(86,99,1,1,1276),(86,99,1,1,1277),(86,99,1,1,1278),(86,99,1,1,1279),(86,99,1,4,86),(87,99,1,1,437),(87,99,1,1,438),(87,99,1,1,439),(87,99,1,1,1104),(87,99,1,1,1105),(87,99,1,1,1106),(87,99,1,4,87),(88,99,1,1,440),(88,99,1,1,441),(88,99,1,1,442),(88,99,1,1,1088),(88,99,1,1,1089),(88,99,1,1,1090),(88,99,1,4,88),(89,99,1,1,449),(89,99,1,1,450),(89,99,1,1,451),(89,99,1,1,452),(89,99,1,1,453),(89,99,1,1,454),(89,99,1,1,1266),(89,99,1,1,1267),(89,99,1,1,1268),(89,99,1,1,1269),(89,99,1,1,1270),(89,99,1,1,1271),(89,99,1,4,89),(91,99,1,1,455),(91,99,1,1,456),(91,99,1,1,457),(91,99,1,1,1118),(91,99,1,1,1119),(91,99,1,1,1120),(92,99,1,1,1063),(92,99,1,1,1064),(92,99,1,1,1065),(92,99,1,1,1066),(92,99,1,1,1067),(92,99,1,1,1068),(92,99,1,1,1098),(92,99,1,1,1099),(92,99,1,1,1100),(92,99,1,4,92),(93,99,1,1,461),(93,99,1,1,462),(93,99,1,1,463),(93,99,1,1,464),(93,99,1,1,1114),(93,99,1,1,1115),(93,99,1,1,1116),(93,99,1,1,1117),(93,99,1,4,93),(95,99,1,1,465),(95,99,1,1,466),(95,99,1,1,467),(95,99,1,1,1124),(95,99,1,1,1125),(95,99,1,1,1126),(97,99,1,1,939),(97,99,1,1,940),(97,99,1,1,941),(98,99,1,1,471),(98,99,1,1,472),(98,99,1,1,473),(98,99,1,1,474),(98,99,1,1,1110),(98,99,1,1,1111),(98,99,1,1,1112),(98,99,1,1,1113),(98,99,1,4,98),(99,99,1,1,930),(99,99,1,1,931),(99,99,1,1,932),(100,99,1,1,478),(100,99,1,1,479),(100,99,1,1,480),(100,99,1,1,1121),(100,99,1,1,1122),(100,99,1,1,1123),(101,99,1,1,824),(101,99,1,1,825),(101,99,1,1,826),(101,99,1,1,827),(101,99,1,1,828),(101,99,1,1,829),(101,99,1,1,830),(101,99,1,1,831),(101,99,1,1,832),(101,99,1,1,833),(101,99,1,1,834),(101,99,1,1,835),(101,99,1,1,836),(101,99,1,1,837),(101,99,1,1,838),(101,99,1,1,839),(101,99,1,1,840),(101,99,1,1,841),(101,99,1,1,842),(101,99,1,1,843),(102,99,1,1,1069),(102,99,1,1,1070),(102,99,1,1,1071),(102,99,1,1,1072),(102,99,1,1,1073),(102,99,1,1,1074),(102,99,1,1,1095),(102,99,1,1,1096),(102,99,1,1,1097),(102,99,1,4,102),(103,99,1,1,488),(103,99,1,1,489),(103,99,1,1,490),(103,99,1,1,1107),(103,99,1,1,1108),(103,99,1,1,1109),(103,99,1,4,103),(104,99,1,1,904),(104,99,1,1,905),(104,99,1,1,906),(104,99,1,1,907),(104,99,1,1,908),(104,99,1,1,909),(104,99,1,1,910),(104,99,1,1,911),(104,99,1,1,912),(104,99,1,1,913),(104,99,1,1,914),(104,99,1,1,915),(105,99,1,1,495),(105,99,1,1,496),(105,99,1,1,497),(105,99,1,1,1211),(105,99,1,1,1212),(105,99,1,1,1213),(106,99,1,1,498),(106,99,1,1,499),(106,99,1,1,500),(106,99,1,1,1202),(106,99,1,1,1203),(106,99,1,1,1204),(107,99,1,1,504),(107,99,1,1,505),(107,99,1,1,506),(107,99,1,1,507),(107,99,1,1,508),(107,99,1,1,509),(108,99,1,1,501),(108,99,1,1,502),(108,99,1,1,503),(108,99,1,1,1138),(108,99,1,1,1139),(108,99,1,1,1140),(109,99,1,1,510),(109,99,1,1,511),(109,99,1,1,512),(109,99,1,1,1299),(109,99,1,1,1300),(109,99,1,1,1301),(109,99,1,4,109),(110,99,1,1,513),(110,99,1,1,514),(110,99,1,1,515),(110,99,1,1,1296),(110,99,1,1,1297),(110,99,1,1,1298),(110,99,1,4,110),(111,99,1,1,516),(111,99,1,1,1331),(111,99,1,4,111),(112,99,1,1,517),(112,99,1,1,518),(112,99,1,1,519),(112,99,1,1,1302),(112,99,1,1,1303),(112,99,1,1,1304),(112,99,1,4,112),(113,99,1,1,520),(113,99,1,1,521),(113,99,1,1,522),(113,99,1,1,1208),(113,99,1,1,1209),(113,99,1,1,1210),(114,99,1,1,523),(114,99,1,1,1308),(114,99,1,4,114),(115,99,1,1,524),(115,99,1,1,525),(115,99,1,1,526),(115,99,1,1,1196),(115,99,1,1,1197),(115,99,1,1,1198),(116,99,1,1,527),(116,99,1,1,1332),(116,99,1,4,116),(117,99,1,1,528),(117,99,1,1,529),(117,99,1,1,530),(117,99,1,1,1205),(117,99,1,1,1206),(117,99,1,1,1207),(118,99,1,1,531),(118,99,1,1,1321),(118,99,1,4,118),(119,99,1,1,532),(119,99,1,1,533),(119,99,1,1,534),(119,99,1,1,1231),(119,99,1,1,1232),(119,99,1,1,1233),(120,99,1,1,535),(120,99,1,1,536),(120,99,1,1,537),(120,99,1,1,1164),(120,99,1,1,1165),(120,99,1,1,1166),(121,99,1,1,541),(121,99,1,1,1320),(121,99,1,4,121),(122,99,1,1,538),(122,99,1,1,539),(122,99,1,1,540),(122,99,1,1,1199),(122,99,1,1,1200),(122,99,1,1,1201),(123,99,1,1,542),(123,99,1,1,543),(123,99,1,1,1160),(123,99,1,1,1161),(124,99,1,1,544),(124,99,1,1,1319),(124,99,1,4,124),(125,99,1,1,545),(125,99,1,1,1318),(125,99,1,4,125),(126,99,1,1,546),(126,99,1,1,1317),(126,99,1,4,126),(127,99,1,1,547),(127,99,1,1,1314),(127,99,1,4,127),(128,99,1,1,548),(128,99,1,1,1311),(128,99,1,4,128),(1351,99,1,1,1414),(1351,99,1,1,1415),(1351,99,1,1,1416),(1351,99,1,1,1417),(1351,99,1,1,1418),(1351,99,1,1,1419),(1351,99,1,4,1351),(1413,99,1,1,1383),(1413,99,1,1,1384),(1413,99,1,1,1385),(1413,99,1,1,1386),(1413,99,1,1,1387),(1413,99,1,1,1388),(1413,99,1,1,1389),(1413,99,1,1,1390),(1413,99,1,1,1391),(1413,99,1,1,1392),(1413,99,1,1,1393),(1413,99,1,1,1394),(1413,99,1,1,1395),(1413,99,1,1,1396),(1413,99,1,1,1397),(1413,99,1,1,1398),(1413,99,1,1,1399),(1413,99,1,1,1400),(1413,99,1,1,1401),(1413,99,1,1,1402),(1413,99,1,1,1403),(1413,99,1,1,1404),(1413,99,1,1,1405),(1413,99,1,1,1406),(1413,99,1,1,1407),(1413,99,1,1,1408),(1413,99,1,1,1409),(1413,99,1,1,1410),(1413,99,1,1,1411),(1413,99,1,1,1412),(1413,99,1,4,1413),(1455,99,1,1,1420),(1455,99,1,1,1421),(1455,99,1,1,1422),(1455,99,1,1,1423),(1455,99,1,1,1424),(1455,99,1,1,1425),(1455,99,1,1,1426),(1455,99,1,1,1427),(1455,99,1,1,1428),(1455,99,1,1,1429),(1455,99,1,1,1430),(1455,99,1,1,1431),(1455,99,1,1,1432),(1455,99,1,1,1433),(1455,99,1,1,1434),(1455,99,1,1,1435),(1455,99,1,1,1436),(1455,99,1,1,1437),(1455,99,1,1,1438),(1455,99,1,1,1439),(1455,99,1,1,1440),(1455,99,1,1,1441),(1455,99,1,1,1442),(1455,99,1,1,1443),(1455,99,1,1,1444),(1455,99,1,1,1445),(1455,99,1,1,1446),(1455,99,1,1,1447),(1455,99,1,1,1448),(1455,99,1,1,1449),(1455,99,1,1,1450),(1455,99,1,1,1451),(1455,99,1,1,1452),(1455,99,1,1,1453),(1455,99,1,1,1454),(1455,99,1,4,1455),(1464,99,1,1,1456),(1464,99,1,1,1457),(1464,99,1,1,1458),(1464,99,1,1,1459),(1464,99,1,1,1460),(1464,99,1,1,1461),(1464,99,1,1,1462),(1464,99,1,1,1463),(1464,99,1,4,1464),(1495,99,1,1,1465),(1495,99,1,1,1466),(1495,99,1,1,1467),(1495,99,1,1,1468),(1495,99,1,1,1469),(1495,99,1,1,1470),(1495,99,1,1,1471),(1495,99,1,1,1472),(1495,99,1,1,1473),(1495,99,1,1,1474),(1495,99,1,1,1475),(1495,99,1,1,1476),(1495,99,1,1,1477),(1495,99,1,1,1478),(1495,99,1,1,1479),(1495,99,1,1,1480),(1495,99,1,1,1481),(1495,99,1,1,1482),(1495,99,1,1,1483),(1495,99,1,1,1484),(1495,99,1,1,1485),(1495,99,1,1,1486),(1495,99,1,1,1487),(1495,99,1,1,1488),(1495,99,1,1,1489),(1495,99,1,1,1490),(1495,99,1,1,1491),(1495,99,1,1,1492),(1495,99,1,1,1493),(1495,99,1,1,1494),(1495,99,1,4,1495),(1526,99,1,1,1496),(1526,99,1,1,1497),(1526,99,1,1,1498),(1526,99,1,1,1499),(1526,99,1,1,1500),(1526,99,1,1,1501),(1526,99,1,1,1502),(1526,99,1,1,1503),(1526,99,1,1,1504),(1526,99,1,1,1505),(1526,99,1,1,1506),(1526,99,1,1,1507),(1526,99,1,1,1508),(1526,99,1,1,1509),(1526,99,1,1,1510),(1526,99,1,1,1511),(1526,99,1,1,1512),(1526,99,1,1,1513),(1526,99,1,1,1514),(1526,99,1,1,1515),(1526,99,1,1,1516),(1526,99,1,1,1517),(1526,99,1,1,1518),(1526,99,1,1,1519),(1526,99,1,1,1520),(1526,99,1,1,1521),(1526,99,1,1,1522),(1526,99,1,1,1523),(1526,99,1,1,1524),(1526,99,1,1,1525),(1526,99,1,4,1526),(1535,99,1,1,1527),(1535,99,1,1,1528),(1535,99,1,1,1529),(1535,99,1,1,1530),(1535,99,1,1,1531),(1535,99,1,1,1532),(1535,99,1,1,1533),(1535,99,1,1,1534),(1535,99,1,4,1535),(1561,99,1,1,1536),(1561,99,1,1,1537),(1561,99,1,1,1538),(1561,99,1,1,1539),(1561,99,1,1,1540),(1561,99,1,1,1541),(1561,99,1,1,1542),(1561,99,1,1,1543),(1561,99,1,1,1544),(1561,99,1,1,1545),(1561,99,1,1,1546),(1561,99,1,1,1547),(1561,99,1,1,1548),(1561,99,1,1,1549),(1561,99,1,1,1550),(1561,99,1,1,1551),(1561,99,1,1,1552),(1561,99,1,1,1553),(1561,99,1,1,1554),(1561,99,1,1,1555),(1561,99,1,1,1556),(1561,99,1,1,1557),(1561,99,1,1,1558),(1561,99,1,1,1559),(1561,99,1,1,1560),(1561,99,1,4,1561),(1568,99,1,1,1562),(1568,99,1,1,1563),(1568,99,1,1,1564),(1568,99,1,1,1565),(1568,99,1,1,1566),(1568,99,1,1,1567),(1568,99,1,4,1568),(1583,99,1,1,1569),(1583,99,1,1,1570),(1583,99,1,1,1571),(1583,99,1,1,1572),(1583,99,1,1,1575),(1583,99,1,1,1579),(1583,99,1,4,1583),(1596,99,1,1,1573),(1596,99,1,1,1574),(1596,99,1,1,1576),(1596,99,1,1,1577),(1596,99,1,1,1578),(1596,99,1,1,1580),(1596,99,1,1,1581),(1596,99,1,1,1582),(1596,99,1,1,1584),(1596,99,1,1,1585),(1596,99,1,1,1586),(1596,99,1,1,1587),(1596,99,1,1,1588),(1596,99,1,1,1589),(1596,99,1,1,1590),(1596,99,1,1,1591),(1596,99,1,1,1592),(1596,99,1,1,1593),(1596,99,1,1,1594),(1596,99,1,1,1595),(1596,99,1,4,1596),(1597,99,1,1,1605),(1597,99,1,1,1606),(1597,99,1,1,1607),(1597,99,1,1,1608),(1597,99,1,1,1609),(1597,99,1,1,1610),(1597,99,1,1,1611),(1597,99,1,1,1612),(1597,99,1,1,1613),(1597,99,1,1,1614),(1597,99,1,1,1615),(1597,99,1,1,1616),(1597,99,1,1,1617),(1597,99,1,1,1618),(1597,99,1,1,1619),(1597,99,1,4,1597),(1604,99,1,1,1598),(1604,99,1,1,1599),(1604,99,1,1,1600),(1604,99,1,1,1601),(1604,99,1,1,1602),(1604,99,1,1,1603),(1604,99,1,4,1604),(1630,99,1,1,1620),(1630,99,1,1,1621),(1630,99,1,1,1622),(1630,99,1,1,1623),(1630,99,1,1,1624),(1630,99,1,1,1625),(1630,99,1,1,1626),(1630,99,1,1,1627),(1630,99,1,1,1628),(1630,99,1,1,1629),(1630,99,1,4,1630),(1643,99,1,1,1631),(1643,99,1,1,1632),(1643,99,1,1,1633),(1643,99,1,1,1634),(1643,99,1,1,1635),(1643,99,1,1,1636),(1643,99,1,1,1637),(1643,99,1,1,1638),(1643,99,1,1,1639),(1643,99,1,1,1640),(1643,99,1,1,1641),(1643,99,1,1,1642),(1643,99,1,4,1643),(1656,99,1,1,1644),(1656,99,1,1,1645),(1656,99,1,1,1646),(1656,99,1,1,1647),(1656,99,1,1,1648),(1656,99,1,1,1649),(1656,99,1,1,1650),(1656,99,1,1,1651),(1656,99,1,1,1652),(1656,99,1,1,1653),(1656,99,1,1,1654),(1656,99,1,1,1655),(1656,99,1,4,1656),(1677,99,1,1,1657),(1677,99,1,1,1658),(1677,99,1,1,1659),(1677,99,1,1,1660),(1677,99,1,1,1661),(1677,99,1,1,1662),(1677,99,1,1,1663),(1677,99,1,1,1664),(1677,99,1,1,1665),(1677,99,1,1,1666),(1677,99,1,1,1667),(1677,99,1,1,1668),(1677,99,1,1,1669),(1677,99,1,1,1670),(1677,99,1,1,1671),(1677,99,1,1,1672),(1677,99,1,1,1673),(1677,99,1,1,1674),(1677,99,1,1,1675),(1677,99,1,1,1676),(1677,99,1,4,1677),(1699,99,1,1,1678),(1699,99,1,1,1679),(1699,99,1,1,1680),(1699,99,1,1,1681),(1699,99,1,1,1682),(1699,99,1,1,1683),(1699,99,1,1,1684),(1699,99,1,1,1685),(1699,99,1,1,1686),(1699,99,1,1,1687),(1699,99,1,1,1688),(1699,99,1,1,1689),(1699,99,1,1,1690),(1699,99,1,1,1692),(1699,99,1,1,1693),(1699,99,1,1,1694),(1699,99,1,1,1695),(1699,99,1,1,1696),(1699,99,1,1,1697),(1699,99,1,1,1698),(1699,99,1,4,1699),(1709,99,1,1,1700),(1709,99,1,1,1701),(1709,99,1,1,1702),(1709,99,1,1,1703),(1709,99,1,1,1704),(1709,99,1,1,1705),(1709,99,1,1,1706),(1709,99,1,1,1707),(1709,99,1,1,1708),(1709,99,1,4,1709),(1725,99,1,1,1710),(1725,99,1,1,1711),(1725,99,1,1,1712),(1725,99,1,1,1713),(1725,99,1,1,1714),(1725,99,1,1,1715),(1725,99,1,1,1716),(1725,99,1,1,1717),(1725,99,1,1,1718),(1725,99,1,1,1719),(1725,99,1,1,1720),(1725,99,1,1,1721),(1725,99,1,1,1722),(1725,99,1,1,1723),(1725,99,1,1,1724),(1725,99,1,4,1725),(1735,99,1,1,1726),(1735,99,1,1,1727),(1735,99,1,1,1728),(1735,99,1,1,1729),(1735,99,1,1,1730),(1735,99,1,1,1731),(1735,99,1,1,1732),(1735,99,1,1,1733),(1735,99,1,1,1734),(1735,99,1,4,1735),(1756,99,1,1,1736),(1756,99,1,1,1737),(1756,99,1,1,1738),(1756,99,1,1,1739),(1756,99,1,1,1740),(1756,99,1,1,1741),(1756,99,1,1,1742),(1756,99,1,1,1743),(1756,99,1,1,1744),(1756,99,1,1,1745),(1756,99,1,1,1746),(1756,99,1,1,1747),(1756,99,1,1,1748),(1756,99,1,1,1749),(1756,99,1,1,1750),(1756,99,1,1,1751),(1756,99,1,1,1752),(1756,99,1,1,1753),(1756,99,1,1,1754),(1756,99,1,1,1755),(1756,99,1,4,1756),(1777,99,1,1,1757),(1777,99,1,1,1758),(1777,99,1,1,1759),(1777,99,1,1,1760),(1777,99,1,1,1761),(1777,99,1,1,1762),(1777,99,1,1,1763),(1777,99,1,1,1764),(1777,99,1,1,1765),(1777,99,1,1,1766),(1777,99,1,1,1767),(1777,99,1,1,1768),(1777,99,1,1,1769),(1777,99,1,1,1770),(1777,99,1,1,1771),(1777,99,1,1,1772),(1777,99,1,1,1773),(1777,99,1,1,1774),(1777,99,1,1,1775),(1777,99,1,1,1776),(1777,99,1,4,1777),(1787,99,1,1,1778),(1787,99,1,1,1779),(1787,99,1,1,1780),(1787,99,1,1,1781),(1787,99,1,1,1782),(1787,99,1,1,1783),(1787,99,1,1,1784),(1787,99,1,1,1785),(1787,99,1,1,1786),(1787,99,1,4,1787),(1808,99,1,1,1788),(1808,99,1,1,1789),(1808,99,1,1,1790),(1808,99,1,1,1791),(1808,99,1,1,1792),(1808,99,1,1,1793),(1808,99,1,1,1794),(1808,99,1,1,1795),(1808,99,1,1,1796),(1808,99,1,1,1797),(1808,99,1,1,1798),(1808,99,1,1,1799),(1808,99,1,1,1800),(1808,99,1,1,1801),(1808,99,1,1,1802),(1808,99,1,1,1803),(1808,99,1,1,1804),(1808,99,1,1,1805),(1808,99,1,1,1806),(1808,99,1,1,1807),(1808,99,1,4,1808),(1817,99,1,1,1809),(1817,99,1,1,1810),(1817,99,1,1,1811),(1817,99,1,1,1812),(1817,99,1,1,1813),(1817,99,1,1,1814),(1817,99,1,1,1815),(1817,99,1,1,1816),(1817,99,1,4,1817),(1833,99,1,4,1833),(1840,99,1,1,1834),(1840,99,1,1,1835),(1840,99,1,1,1836),(1840,99,1,1,1837),(1840,99,1,1,1838),(1840,99,1,1,1839),(1840,99,1,4,1840),(1866,99,1,1,1841),(1866,99,1,1,1842),(1866,99,1,1,1843),(1866,99,1,1,1844),(1866,99,1,1,1845),(1866,99,1,1,1846),(1866,99,1,1,1847),(1866,99,1,1,1848),(1866,99,1,1,1849),(1866,99,1,1,1850),(1866,99,1,1,1851),(1866,99,1,1,1852),(1866,99,1,1,1853),(1866,99,1,1,1854),(1866,99,1,1,1855),(1866,99,1,1,1856),(1866,99,1,1,1857),(1866,99,1,1,1858),(1866,99,1,1,1859),(1866,99,1,1,1860),(1866,99,1,1,1861),(1866,99,1,1,1862),(1866,99,1,1,1863),(1866,99,1,1,1864),(1866,99,1,1,1865),(1866,99,1,4,1866),(1875,99,1,1,1867),(1875,99,1,1,1868),(1875,99,1,1,1869),(1875,99,1,1,1870),(1875,99,1,1,1871),(1875,99,1,1,1872),(1875,99,1,1,1873),(1875,99,1,1,1874),(1875,99,1,4,1875),(1888,99,1,1,1876),(1888,99,1,1,1877),(1888,99,1,1,1878),(1888,99,1,1,1879),(1888,99,1,1,1880),(1888,99,1,1,1881),(1888,99,1,1,1882),(1888,99,1,1,1883),(1888,99,1,1,1884),(1888,99,1,1,1885),(1888,99,1,1,1886),(1888,99,1,1,1887),(1888,99,1,4,1888),(1892,99,1,1,1889),(1892,99,1,1,1890),(1892,99,1,1,1891),(1892,99,1,4,1892),(1896,99,1,1,1893),(1896,99,1,1,1894),(1896,99,1,1,1895),(1896,99,1,4,1896),(1903,99,1,1,1897),(1903,99,1,1,1898),(1903,99,1,1,1899),(1903,99,1,1,1900),(1903,99,1,1,1901),(1903,99,1,1,1902),(1903,99,1,4,1903),(1910,99,1,1,1904),(1910,99,1,1,1905),(1910,99,1,1,1906),(1910,99,1,1,1907),(1910,99,1,1,1908),(1910,99,1,1,1909),(1910,99,1,4,1910),(1920,99,1,1,1911),(1920,99,1,1,1912),(1920,99,1,1,1913),(1920,99,1,1,1914),(1920,99,1,1,1915),(1920,99,1,1,1916),(1920,99,1,1,1917),(1920,99,1,1,1918),(1920,99,1,1,1919),(1920,99,1,4,1920),(1927,99,1,1,1921),(1927,99,1,1,1922),(1927,99,1,1,1923),(1927,99,1,1,1924),(1927,99,1,1,1925),(1927,99,1,1,1926),(1927,99,1,4,1927),(1943,99,1,1,1928),(1943,99,1,1,1929),(1943,99,1,1,1930),(1943,99,1,1,1931),(1943,99,1,1,1932),(1943,99,1,1,1933),(1943,99,1,1,1934),(1943,99,1,1,1935),(1943,99,1,1,1936),(1943,99,1,1,1937),(1943,99,1,1,1938),(1943,99,1,1,1939),(1943,99,1,1,1940),(1943,99,1,1,1941),(1943,99,1,1,1942),(1943,99,1,4,1943),(1946,99,1,1,1944),(1946,99,1,1,1945),(1946,99,1,4,1946),(1961,99,1,1,1947),(1961,99,1,1,1948),(1961,99,1,1,1949),(1961,99,1,1,1950),(1961,99,1,1,1951),(1961,99,1,1,1952),(1961,99,1,1,1953),(1961,99,1,1,1954),(1961,99,1,1,1955),(1961,99,1,1,1956),(1961,99,1,1,1957),(1961,99,1,1,1958),(1961,99,1,1,1959),(1961,99,1,1,1960),(1961,99,1,4,1961),(1972,99,1,1,1962),(1972,99,1,1,1963),(1972,99,1,1,1964),(1972,99,1,1,1965),(1972,99,1,1,1966),(1972,99,1,1,1967),(1972,99,1,1,1968),(1972,99,1,1,1969),(1972,99,1,1,1970),(1972,99,1,1,1971),(1972,99,1,4,1972),(1991,99,1,1,1973),(1991,99,1,1,1974),(1991,99,1,1,1975),(1991,99,1,1,1976),(1991,99,1,1,1977),(1991,99,1,1,1978),(1991,99,1,1,1979),(1991,99,1,1,1980),(1991,99,1,1,1981),(1991,99,1,1,1982),(1991,99,1,1,1983),(1991,99,1,1,1984),(1991,99,1,1,1985),(1991,99,1,1,1986),(1991,99,1,1,1987),(1991,99,1,1,1988),(1991,99,1,1,1989),(1991,99,1,1,1990),(1991,99,1,4,1991),(1996,99,1,1,1992),(1996,99,1,1,1993),(1996,99,1,1,1994),(1996,99,1,1,1995),(1996,99,1,4,1996),(2001,99,1,1,1997),(2001,99,1,1,1998),(2001,99,1,1,1999),(2001,99,1,1,2000),(2001,99,1,4,2001),(2010,99,1,1,2002),(2010,99,1,1,2003),(2010,99,1,1,2004),(2010,99,1,1,2005),(2010,99,1,1,2006),(2010,99,1,1,2007),(2010,99,1,1,2008),(2010,99,1,1,2009),(2010,99,1,4,2010),(2017,99,1,1,2011),(2017,99,1,1,2012),(2017,99,1,1,2013),(2017,99,1,1,2014),(2017,99,1,1,2015),(2017,99,1,1,2016),(2017,99,1,4,2017),(2020,99,1,1,2018),(2020,99,1,1,2019),(2020,99,1,4,2020),(2029,99,1,1,2021),(2029,99,1,1,2022),(2029,99,1,1,2023),(2029,99,1,1,2024),(2029,99,1,1,2025),(2029,99,1,1,2026),(2029,99,1,1,2027),(2029,99,1,1,2028),(2029,99,1,4,2029),(2032,99,1,1,2030),(2032,99,1,1,2031),(2032,99,1,4,2032),(2041,99,1,4,2041),(2050,99,1,1,2042),(2050,99,1,1,2043),(2050,99,1,1,2044),(2050,99,1,1,2045),(2050,99,1,1,2046),(2050,99,1,1,2047),(2050,99,1,1,2048),(2050,99,1,1,2049),(2050,99,1,4,2050),(2055,99,1,1,2051),(2055,99,1,1,2052),(2055,99,1,1,2053),(2055,99,1,1,2054),(2055,99,1,4,2055),(2060,99,1,1,2056),(2060,99,1,1,2057),(2060,99,1,1,2058),(2060,99,1,1,2059),(2060,99,1,4,2060),(2065,99,1,1,2061),(2065,99,1,1,2062),(2065,99,1,1,2063),(2065,99,1,1,2064),(2065,99,1,4,2065),(2072,99,1,1,2066),(2072,99,1,1,2067),(2072,99,1,1,2068),(2072,99,1,1,2069),(2072,99,1,1,2070),(2072,99,1,1,2071),(2072,99,1,4,2072),(2077,99,1,1,2073),(2077,99,1,1,2074),(2077,99,1,1,2075),(2077,99,1,1,2076),(2077,99,1,4,2077),(2084,99,1,1,2078),(2084,99,1,1,2079),(2084,99,1,1,2080),(2084,99,1,1,2081),(2084,99,1,1,2082),(2084,99,1,1,2083),(2084,99,1,4,2084),(2089,99,1,1,2085),(2089,99,1,1,2086),(2089,99,1,1,2087),(2089,99,1,1,2088),(2089,99,1,4,2089),(2098,99,1,1,2090),(2098,99,1,1,2091),(2098,99,1,1,2092),(2098,99,1,1,2093),(2098,99,1,1,2094),(2098,99,1,1,2095),(2098,99,1,1,2096),(2098,99,1,1,2097),(2098,99,1,4,2098),(2105,99,1,1,2099),(2105,99,1,1,2100),(2105,99,1,1,2101),(2105,99,1,1,2102),(2105,99,1,1,2103),(2105,99,1,1,2104),(2105,99,1,4,2105),(2116,99,1,1,2106),(2116,99,1,1,2107),(2116,99,1,1,2108),(2116,99,1,1,2109),(2116,99,1,1,2110),(2116,99,1,1,2111),(2116,99,1,1,2112),(2116,99,1,1,2113),(2116,99,1,1,2114),(2116,99,1,1,2115),(2116,99,1,4,2116),(2123,99,1,1,2117),(2123,99,1,1,2118),(2123,99,1,1,2119),(2123,99,1,1,2120),(2123,99,1,1,2121),(2123,99,1,1,2122),(2123,99,1,4,2123),(2132,99,1,1,2124),(2132,99,1,1,2125),(2132,99,1,1,2126),(2132,99,1,1,2127),(2132,99,1,1,2128),(2132,99,1,1,2129),(2132,99,1,1,2130),(2132,99,1,1,2131),(2132,99,1,4,2132),(2135,99,1,1,2133),(2135,99,1,1,2134),(2135,99,1,4,2135),(2138,99,1,1,2136),(2138,99,1,1,2137),(2138,99,1,4,2138),(2145,99,1,1,2139),(2145,99,1,1,2140),(2145,99,1,1,2141),(2145,99,1,1,2142),(2145,99,1,1,2143),(2145,99,1,1,2144),(2145,99,1,4,2145),(2149,99,1,1,2146),(2149,99,1,1,2147),(2149,99,1,4,2149),(2157,99,1,1,2148),(2157,99,1,1,2150),(2157,99,1,1,2151),(2157,99,1,1,2152),(2157,99,1,1,2153),(2157,99,1,1,2154),(2157,99,1,1,2155),(2157,99,1,1,2156),(2157,99,1,4,2157),(2168,99,1,1,2158),(2168,99,1,1,2159),(2168,99,1,1,2160),(2168,99,1,1,2161),(2168,99,1,1,2162),(2168,99,1,1,2163),(2168,99,1,1,2164),(2168,99,1,1,2165),(2168,99,1,1,2166),(2168,99,1,1,2167),(2168,99,1,4,2168),(2171,99,1,1,2169),(2171,99,1,1,2170),(2171,99,1,4,2171),(2178,99,1,1,2172),(2178,99,1,1,2173),(2178,99,1,1,2174),(2178,99,1,1,2175),(2178,99,1,1,2176),(2178,99,1,1,2177),(2178,99,1,4,2178),(2185,99,1,1,2179),(2185,99,1,1,2180),(2185,99,1,1,2181),(2185,99,1,1,2182),(2185,99,1,1,2183),(2185,99,1,1,2184),(2185,99,1,4,2185),(2190,99,1,1,2186),(2190,99,1,1,2187),(2190,99,1,1,2188),(2190,99,1,1,2189),(2190,99,1,4,2190),(2197,99,1,1,2191),(2197,99,1,1,2192),(2197,99,1,1,2193),(2197,99,1,1,2194),(2197,99,1,1,2195),(2197,99,1,1,2196),(2197,99,1,4,2197),(2204,99,1,1,2198),(2204,99,1,1,2199),(2204,99,1,1,2200),(2204,99,1,1,2201),(2204,99,1,1,2202),(2204,99,1,1,2203),(2204,99,1,4,2204),(2207,99,1,1,2205),(2207,99,1,1,2206),(2207,99,1,4,2207),(2212,99,1,1,2208),(2212,99,1,1,2209),(2212,99,1,1,2210),(2212,99,1,1,2211),(2212,99,1,4,2212),(2219,99,1,1,2213),(2219,99,1,1,2214),(2219,99,1,1,2215),(2219,99,1,1,2216),(2219,99,1,1,2217),(2219,99,1,1,2218),(2219,99,1,4,2219),(2222,99,1,1,2220),(2222,99,1,1,2221),(2222,99,1,4,2222),(2229,99,1,1,2223),(2229,99,1,1,2224),(2229,99,1,1,2225),(2229,99,1,1,2226),(2229,99,1,1,2227),(2229,99,1,1,2228),(2229,99,1,4,2229),(2234,99,1,1,2230),(2234,99,1,1,2231),(2234,99,1,1,2232),(2234,99,1,1,2233),(2234,99,1,4,2234),(2245,99,1,1,2235),(2245,99,1,1,2236),(2245,99,1,1,2237),(2245,99,1,1,2238),(2245,99,1,1,2239),(2245,99,1,1,2240),(2245,99,1,1,2241),(2245,99,1,1,2242),(2245,99,1,1,2243),(2245,99,1,1,2244),(2245,99,1,4,2245),(2252,99,1,1,2246),(2252,99,1,1,2247),(2252,99,1,1,2248),(2252,99,1,1,2249),(2252,99,1,1,2250),(2252,99,1,1,2251),(2252,99,1,4,2252),(2255,99,1,1,2253),(2255,99,1,1,2254),(2255,99,1,4,2255),(2268,99,1,1,2256),(2268,99,1,1,2257),(2268,99,1,1,2258),(2268,99,1,1,2259),(2268,99,1,1,2260),(2268,99,1,1,2261),(2268,99,1,1,2262),(2268,99,1,1,2263),(2268,99,1,1,2264),(2268,99,1,1,2265),(2268,99,1,1,2266),(2268,99,1,1,2267),(2268,99,1,4,2268),(2277,99,1,4,2277),(2284,99,1,1,2278),(2284,99,1,1,2279),(2284,99,1,1,2280),(2284,99,1,1,2281),(2284,99,1,1,2282),(2284,99,1,1,2283),(2284,99,1,4,2284),(2291,99,1,1,2285),(2291,99,1,1,2286),(2291,99,1,1,2287),(2291,99,1,1,2288),(2291,99,1,1,2289),(2291,99,1,1,2290),(2291,99,1,4,2291),(2300,99,1,1,2292),(2300,99,1,1,2293),(2300,99,1,1,2294),(2300,99,1,1,2295),(2300,99,1,1,2296),(2300,99,1,1,2297),(2300,99,1,1,2298),(2300,99,1,1,2299),(2300,99,1,4,2300),(2309,99,1,1,2301),(2309,99,1,1,2302),(2309,99,1,1,2303),(2309,99,1,1,2304),(2309,99,1,1,2305),(2309,99,1,1,2306),(2309,99,1,1,2307),(2309,99,1,1,2308),(2309,99,1,4,2309),(2320,99,1,1,2310),(2320,99,1,1,2311),(2320,99,1,1,2312),(2320,99,1,1,2313),(2320,99,1,1,2314),(2320,99,1,1,2315),(2320,99,1,1,2316),(2320,99,1,1,2317),(2320,99,1,1,2318),(2320,99,1,1,2319),(2320,99,1,4,2320),(2329,99,1,4,2329),(2336,99,1,1,2330),(2336,99,1,1,2331),(2336,99,1,1,2332),(2336,99,1,1,2333),(2336,99,1,1,2334),(2336,99,1,1,2335),(2336,99,1,4,2336),(2343,99,1,1,2337),(2343,99,1,1,2338),(2343,99,1,1,2339),(2343,99,1,1,2340),(2343,99,1,1,2341),(2343,99,1,1,2342),(2343,99,1,4,2343),(2350,99,1,1,2344),(2350,99,1,1,2345),(2350,99,1,1,2346),(2350,99,1,1,2347),(2350,99,1,1,2348),(2350,99,1,1,2349),(2350,99,1,4,2350),(2357,99,1,1,2351),(2357,99,1,1,2352),(2357,99,1,1,2353),(2357,99,1,1,2354),(2357,99,1,1,2355),(2357,99,1,1,2356),(2357,99,1,4,2357),(2366,99,1,1,2358),(2366,99,1,1,2359),(2366,99,1,1,2360),(2366,99,1,1,2361),(2366,99,1,1,2362),(2366,99,1,1,2363),(2366,99,1,1,2364),(2366,99,1,1,2365),(2366,99,1,4,2366),(2373,99,1,1,2367),(2373,99,1,1,2368),(2373,99,1,1,2369),(2373,99,1,1,2370),(2373,99,1,1,2371),(2373,99,1,1,2372),(2373,99,1,4,2373),(2389,99,1,1,2374),(2389,99,1,1,2375),(2389,99,1,1,2376),(2389,99,1,1,2377),(2389,99,1,1,2378),(2389,99,1,1,2379),(2389,99,1,1,2380),(2389,99,1,1,2381),(2389,99,1,1,2382),(2389,99,1,1,2383),(2389,99,1,1,2384),(2389,99,1,1,2385),(2389,99,1,1,2386),(2389,99,1,1,2387),(2389,99,1,1,2388),(2389,99,1,4,2389),(2396,99,1,1,2390),(2396,99,1,1,2391),(2396,99,1,1,2392),(2396,99,1,1,2393),(2396,99,1,1,2394),(2396,99,1,1,2395),(2396,99,1,4,2396),(2403,99,1,1,2397),(2403,99,1,1,2398),(2403,99,1,1,2399),(2403,99,1,1,2400),(2403,99,1,1,2401),(2403,99,1,1,2402),(2403,99,1,4,2403),(2410,99,1,1,2404),(2410,99,1,1,2405),(2410,99,1,1,2406),(2410,99,1,1,2407),(2410,99,1,1,2408),(2410,99,1,1,2409),(2410,99,1,4,2410),(2417,99,1,1,2411),(2417,99,1,1,2412),(2417,99,1,1,2413),(2417,99,1,1,2414),(2417,99,1,1,2415),(2417,99,1,1,2416),(2417,99,1,4,2417),(2424,99,1,1,2418),(2424,99,1,1,2419),(2424,99,1,1,2420),(2424,99,1,1,2421),(2424,99,1,1,2422),(2424,99,1,1,2423),(2424,99,1,4,2424),(2431,99,1,1,2425),(2431,99,1,1,2426),(2431,99,1,1,2427),(2431,99,1,1,2428),(2431,99,1,1,2429),(2431,99,1,1,2430),(2431,99,1,4,2431),(2440,99,1,1,2432),(2440,99,1,1,2433),(2440,99,1,1,2434),(2440,99,1,1,2435),(2440,99,1,1,2436),(2440,99,1,1,2437),(2440,99,1,1,2438),(2440,99,1,1,2439),(2440,99,1,4,2440),(2456,99,1,1,2441),(2456,99,1,1,2442),(2456,99,1,1,2443),(2456,99,1,1,2444),(2456,99,1,1,2445),(2456,99,1,1,2446),(2456,99,1,1,2447),(2456,99,1,1,2448),(2456,99,1,1,2449),(2456,99,1,1,2450),(2456,99,1,1,2451),(2456,99,1,1,2452),(2456,99,1,1,2453),(2456,99,1,1,2454),(2456,99,1,1,2455),(2456,99,1,4,2456),(2465,99,1,1,2457),(2465,99,1,1,2458),(2465,99,1,1,2459),(2465,99,1,1,2460),(2465,99,1,1,2461),(2465,99,1,1,2462),(2465,99,1,1,2463),(2465,99,1,1,2464),(2465,99,1,4,2465),(2478,99,1,1,2466),(2478,99,1,1,2467),(2478,99,1,1,2468),(2478,99,1,1,2469),(2478,99,1,1,2470),(2478,99,1,1,2471),(2478,99,1,1,2472),(2478,99,1,1,2473),(2478,99,1,1,2474),(2478,99,1,1,2475),(2478,99,1,1,2476),(2478,99,1,1,2477),(2478,99,1,4,2478),(2487,99,1,1,2479),(2487,99,1,1,2480),(2487,99,1,1,2481),(2487,99,1,1,2482),(2487,99,1,1,2483),(2487,99,1,1,2484),(2487,99,1,1,2485),(2487,99,1,1,2486),(2487,99,1,4,2487),(2500,99,1,1,2488),(2500,99,1,1,2489),(2500,99,1,1,2490),(2500,99,1,1,2491),(2500,99,1,1,2492),(2500,99,1,1,2493),(2500,99,1,1,2494),(2500,99,1,1,2495),(2500,99,1,1,2496),(2500,99,1,1,2497),(2500,99,1,1,2498),(2500,99,1,1,2499),(2500,99,1,4,2500),(2507,99,1,1,2501),(2507,99,1,1,2502),(2507,99,1,1,2503),(2507,99,1,1,2504),(2507,99,1,1,2505),(2507,99,1,1,2506),(2507,99,1,4,2507),(2517,99,1,1,2508),(2517,99,1,1,2509),(2517,99,1,1,2510),(2517,99,1,1,2511),(2517,99,1,1,2512),(2517,99,1,1,2513),(2517,99,1,1,2514),(2517,99,1,1,2515),(2517,99,1,1,2516),(2517,99,1,4,2517),(2524,99,1,1,2518),(2524,99,1,1,2519),(2524,99,1,1,2520),(2524,99,1,1,2521),(2524,99,1,1,2522),(2524,99,1,1,2523),(2524,99,1,4,2524),(2533,99,1,1,2525),(2533,99,1,1,2526),(2533,99,1,1,2527),(2533,99,1,1,2528),(2533,99,1,1,2529),(2533,99,1,1,2530),(2533,99,1,1,2531),(2533,99,1,1,2532),(2533,99,1,4,2533),(2542,99,1,1,2534),(2542,99,1,1,2535),(2542,99,1,1,2536),(2542,99,1,1,2537),(2542,99,1,1,2538),(2542,99,1,1,2539),(2542,99,1,1,2540),(2542,99,1,1,2541),(2542,99,1,4,2542),(4,208,1,61,1004),(4,208,1,61,1005),(4,208,1,62,1006),(4,208,1,62,1007),(4,208,1,63,1008),(4,208,1,63,1009),(4,208,1,64,1010),(4,208,1,64,1011),(4,208,1,65,1012),(4,208,1,65,1013),(5,208,1,62,699),(5,208,1,62,700),(5,208,1,62,701),(5,208,1,62,702),(5,208,1,62,703),(5,208,1,63,704),(5,208,1,63,705),(5,208,1,63,706),(5,208,1,63,707),(5,208,1,63,708),(5,208,1,64,709),(5,208,1,64,710),(5,208,1,64,711),(5,208,1,64,712),(5,208,1,64,713),(6,208,1,62,958),(6,208,1,63,959),(7,208,1,60,157),(7,208,1,60,158),(7,208,1,60,159),(7,208,1,60,1145),(7,208,1,60,1146),(7,208,1,60,1147),(8,208,1,64,734),(8,208,1,64,737),(8,208,1,64,740),(8,208,1,64,743),(8,208,1,64,746),(8,208,1,65,735),(8,208,1,65,738),(8,208,1,65,741),(8,208,1,65,744),(8,208,1,65,747),(8,208,1,66,736),(8,208,1,66,739),(8,208,1,66,742),(8,208,1,66,745),(8,208,1,66,748),(9,208,1,60,163),(9,208,1,60,164),(9,208,1,60,165),(10,208,1,60,166),(10,208,1,60,167),(10,208,1,60,168),(10,208,1,60,169),(11,208,1,60,170),(11,208,1,60,171),(12,208,1,60,172),(12,208,1,60,173),(12,208,1,60,174),(15,208,1,61,674),(15,208,1,61,675),(15,208,1,61,676),(15,208,1,61,677),(15,208,1,61,678),(15,208,1,62,679),(15,208,1,62,680),(15,208,1,62,681),(15,208,1,62,682),(15,208,1,62,683),(15,208,1,63,684),(15,208,1,63,685),(15,208,1,63,686),(15,208,1,63,687),(15,208,1,63,688),(15,208,1,64,689),(15,208,1,64,690),(15,208,1,64,691),(15,208,1,64,692),(15,208,1,64,693),(15,208,1,65,694),(15,208,1,65,695),(15,208,1,65,696),(15,208,1,65,697),(15,208,1,65,698),(16,208,1,61,986),(16,208,1,61,992),(16,208,1,61,998),(16,208,1,62,987),(16,208,1,62,993),(16,208,1,62,999),(16,208,1,63,988),(16,208,1,63,994),(16,208,1,63,1000),(16,208,1,64,989),(16,208,1,64,995),(16,208,1,64,1001),(16,208,1,65,990),(16,208,1,65,996),(16,208,1,65,1002),(16,208,1,66,991),(16,208,1,66,997),(16,208,1,66,1003),(17,208,1,60,186),(17,208,1,60,187),(17,208,1,60,188),(17,208,1,60,189),(18,208,1,60,190),(18,208,1,60,191),(18,208,1,60,192),(18,208,1,60,193),(19,208,1,60,194),(19,208,1,60,195),(19,208,1,60,196),(20,208,1,61,549),(20,208,1,61,555),(20,208,1,61,561),(20,208,1,61,567),(20,208,1,61,573),(20,208,1,62,550),(20,208,1,62,556),(20,208,1,62,562),(20,208,1,62,568),(20,208,1,62,574),(20,208,1,63,551),(20,208,1,63,557),(20,208,1,63,563),(20,208,1,63,569),(20,208,1,63,575),(20,208,1,64,552),(20,208,1,64,558),(20,208,1,64,564),(20,208,1,64,570),(20,208,1,64,576),(20,208,1,65,553),(20,208,1,65,559),(20,208,1,65,565),(20,208,1,65,571),(20,208,1,65,577),(20,208,1,66,554),(20,208,1,66,560),(20,208,1,66,566),(20,208,1,66,572),(20,208,1,66,578),(22,208,1,60,203),(22,208,1,60,204),(22,208,1,60,205),(22,208,1,60,206),(24,208,1,60,207),(24,208,1,60,208),(24,208,1,60,209),(25,208,1,61,972),(25,208,1,61,979),(25,208,1,62,973),(25,208,1,62,980),(25,208,1,63,974),(25,208,1,63,981),(25,208,1,64,975),(25,208,1,64,982),(25,208,1,65,976),(25,208,1,65,983),(25,208,1,66,977),(25,208,1,66,984),(25,208,1,67,978),(25,208,1,67,985),(26,208,1,60,217),(26,208,1,60,218),(26,208,1,60,219),(26,208,1,60,220),(26,208,1,60,221),(29,208,1,58,644),(29,208,1,58,650),(29,208,1,58,656),(29,208,1,58,662),(29,208,1,58,668),(29,208,1,59,645),(29,208,1,59,651),(29,208,1,59,657),(29,208,1,59,663),(29,208,1,59,669),(29,208,1,61,647),(29,208,1,61,653),(29,208,1,61,659),(29,208,1,61,665),(29,208,1,61,671),(29,208,1,62,648),(29,208,1,62,654),(29,208,1,62,660),(29,208,1,62,666),(29,208,1,62,672),(29,208,1,63,649),(29,208,1,63,655),(29,208,1,63,661),(29,208,1,63,667),(29,208,1,63,673),(29,208,1,82,646),(29,208,1,82,652),(29,208,1,82,658),(29,208,1,82,664),(29,208,1,82,670),(30,208,1,60,228),(30,208,1,60,229),(30,208,1,60,230),(31,208,1,60,231),(31,208,1,60,232),(32,208,1,60,233),(32,208,1,60,234),(33,208,1,60,235),(33,208,1,60,236),(33,208,1,60,237),(33,208,1,60,238),(35,208,1,61,614),(35,208,1,61,615),(35,208,1,61,616),(35,208,1,61,617),(35,208,1,61,618),(35,208,1,62,619),(35,208,1,62,620),(35,208,1,62,621),(35,208,1,62,622),(35,208,1,62,623),(35,208,1,64,624),(35,208,1,64,625),(35,208,1,64,626),(35,208,1,64,627),(35,208,1,64,628),(35,208,1,65,629),(35,208,1,65,630),(35,208,1,65,631),(35,208,1,65,632),(35,208,1,65,633),(35,208,1,66,634),(35,208,1,66,635),(35,208,1,66,636),(35,208,1,66,637),(35,208,1,66,638),(35,208,1,67,639),(35,208,1,67,640),(35,208,1,67,641),(35,208,1,67,642),(35,208,1,67,643),(41,208,1,60,257),(41,208,1,60,258),(41,208,1,60,259),(41,208,1,60,260),(43,208,1,62,267),(43,208,1,62,948),(43,208,1,62,953),(43,208,1,63,265),(43,208,1,63,949),(43,208,1,63,954),(43,208,1,64,266),(43,208,1,64,950),(43,208,1,64,955),(43,208,1,65,269),(43,208,1,65,951),(43,208,1,65,956),(43,208,1,66,268),(43,208,1,66,952),(43,208,1,66,957),(44,208,1,60,44),(44,208,1,60,270),(44,208,1,60,271),(45,208,1,60,272),(45,208,1,60,273),(45,208,1,60,274),(45,208,1,60,275),(45,208,1,60,276),(48,208,1,60,285),(48,208,1,60,286),(50,208,1,60,290),(50,208,1,60,291),(50,208,1,60,292),(51,208,1,60,130),(51,208,1,60,131),(54,208,1,58,302),(54,208,1,58,1222),(54,208,1,59,300),(54,208,1,59,1223),(54,208,1,61,303),(54,208,1,61,1225),(54,208,1,62,304),(54,208,1,62,1226),(54,208,1,63,305),(54,208,1,63,1227),(54,208,1,82,301),(54,208,1,82,1224),(56,208,1,60,309),(56,208,1,60,310),(56,208,1,60,311),(57,208,1,60,312),(57,208,1,60,313),(57,208,1,60,314),(57,208,1,60,315),(58,208,1,60,316),(58,208,1,60,317),(59,208,1,60,318),(59,208,1,60,319),(59,208,1,60,320),(59,208,1,60,321),(60,208,1,58,322),(60,208,1,58,1251),(60,208,1,59,323),(60,208,1,59,1252),(60,208,1,61,325),(60,208,1,61,1254),(60,208,1,62,326),(60,208,1,62,1255),(60,208,1,63,327),(60,208,1,63,1256),(60,208,1,82,324),(60,208,1,82,1253),(61,208,1,60,328),(61,208,1,60,329),(64,208,1,60,334),(64,208,1,60,335),(64,208,1,60,336),(64,208,1,60,337),(65,208,1,60,338),(65,208,1,60,339),(65,208,1,60,340),(66,208,1,60,341),(66,208,1,60,342),(66,208,1,60,343),(66,208,1,60,344),(66,208,1,60,345),(69,208,1,58,351),(69,208,1,58,1247),(69,208,1,59,350),(69,208,1,59,1248),(69,208,1,62,353),(69,208,1,62,1250),(69,208,1,82,352),(69,208,1,82,1249),(70,208,1,60,354),(70,208,1,60,355),(70,208,1,60,356),(70,208,1,60,357),(71,208,1,60,358),(71,208,1,60,359),(71,208,1,60,360),(71,208,1,60,1130),(71,208,1,60,1131),(71,208,1,60,1132),(72,208,1,60,364),(72,208,1,60,365),(72,208,1,60,366),(72,208,1,60,367),(73,208,1,60,368),(73,208,1,60,369),(73,208,1,60,370),(73,208,1,60,371),(73,208,1,60,372),(73,208,1,60,373),(73,208,1,60,374),(73,208,1,60,375),(74,208,1,60,378),(74,208,1,60,379),(75,208,1,58,380),(75,208,1,58,1214),(75,208,1,61,381),(75,208,1,61,1216),(75,208,1,62,382),(75,208,1,62,1217),(75,208,1,63,383),(75,208,1,63,1218),(75,208,1,82,384),(75,208,1,82,1215),(76,208,1,60,385),(76,208,1,60,386),(76,208,1,60,387),(77,208,1,60,388),(77,208,1,60,389),(77,208,1,60,390),(79,208,1,60,1057),(79,208,1,60,1058),(79,208,1,60,1059),(79,208,1,60,1060),(79,208,1,60,1061),(79,208,1,60,1062),(80,208,1,60,397),(80,208,1,60,398),(80,208,1,60,399),(80,208,1,60,400),(82,208,1,59,407),(82,208,1,59,1191),(82,208,1,61,409),(82,208,1,61,1193),(82,208,1,62,410),(82,208,1,62,1194),(82,208,1,63,411),(82,208,1,63,1195),(82,208,1,82,408),(82,208,1,82,1192),(83,208,1,60,1075),(83,208,1,60,1076),(83,208,1,60,1077),(83,208,1,60,1078),(83,208,1,60,1079),(83,208,1,60,1080),(83,208,1,60,1081),(83,208,1,60,1082),(84,208,1,59,416),(84,208,1,59,421),(84,208,1,59,1261),(84,208,1,61,418),(84,208,1,61,423),(84,208,1,61,1263),(84,208,1,62,420),(84,208,1,62,425),(84,208,1,62,1264),(84,208,1,63,419),(84,208,1,63,424),(84,208,1,63,1265),(84,208,1,82,417),(84,208,1,82,422),(84,208,1,82,1262),(86,208,1,58,1272),(86,208,1,58,1273),(86,208,1,59,1274),(86,208,1,59,1275),(86,208,1,62,1278),(86,208,1,62,1279),(86,208,1,82,1276),(86,208,1,82,1277),(87,208,1,60,437),(87,208,1,60,438),(87,208,1,60,439),(88,208,1,60,440),(88,208,1,60,441),(88,208,1,60,442),(89,208,1,58,449),(89,208,1,58,1266),(89,208,1,61,451),(89,208,1,61,1268),(89,208,1,62,453),(89,208,1,62,1269),(89,208,1,63,452),(89,208,1,63,1270),(89,208,1,65,454),(89,208,1,65,1271),(89,208,1,82,450),(89,208,1,82,1267),(91,208,1,60,455),(91,208,1,60,456),(91,208,1,60,457),(92,208,1,60,1063),(92,208,1,60,1064),(92,208,1,60,1065),(92,208,1,60,1066),(92,208,1,60,1067),(92,208,1,60,1068),(93,208,1,60,461),(93,208,1,60,462),(93,208,1,60,463),(93,208,1,60,464),(95,208,1,60,465),(95,208,1,60,466),(95,208,1,60,467),(98,208,1,60,471),(98,208,1,60,472),(98,208,1,60,473),(98,208,1,60,474),(100,208,1,60,478),(100,208,1,60,479),(100,208,1,60,480),(102,208,1,60,102),(102,208,1,60,1069),(102,208,1,60,1070),(102,208,1,60,1071),(102,208,1,60,1072),(102,208,1,60,1073),(102,208,1,60,1074),(103,208,1,60,488),(103,208,1,60,489),(103,208,1,60,490),(105,208,1,60,495),(105,208,1,60,496),(105,208,1,60,497),(106,208,1,60,498),(106,208,1,60,499),(106,208,1,60,500),(107,208,1,60,504),(107,208,1,60,505),(107,208,1,60,506),(107,208,1,60,507),(107,208,1,60,508),(107,208,1,60,509),(108,208,1,60,501),(108,208,1,60,502),(108,208,1,60,503),(109,208,1,60,109),(109,208,1,60,510),(109,208,1,60,511),(109,208,1,60,512),(110,208,1,60,513),(110,208,1,60,514),(110,208,1,60,515),(111,208,1,60,516),(112,208,1,60,112),(112,208,1,60,517),(112,208,1,60,518),(112,208,1,60,519),(113,208,1,60,520),(113,208,1,60,521),(113,208,1,60,522),(115,208,1,60,524),(115,208,1,60,525),(115,208,1,60,526),(116,208,1,60,527),(117,208,1,60,528),(117,208,1,60,529),(117,208,1,60,530),(118,208,1,60,531),(119,208,1,60,532),(119,208,1,60,533),(119,208,1,60,534),(120,208,1,60,535),(120,208,1,60,536),(120,208,1,60,537),(121,208,1,60,541),(122,208,1,60,538),(122,208,1,60,539),(122,208,1,60,540),(123,208,1,60,542),(123,208,1,60,543),(124,208,1,60,544),(126,208,1,60,546),(127,208,1,60,547),(128,208,1,60,548),(1413,208,1,61,1387),(1413,208,1,61,1393),(1413,208,1,61,1399),(1413,208,1,61,1405),(1413,208,1,61,1411),(1413,208,1,62,1385),(1413,208,1,62,1391),(1413,208,1,62,1397),(1413,208,1,62,1403),(1413,208,1,62,1409),(1413,208,1,63,1383),(1413,208,1,63,1389),(1413,208,1,63,1395),(1413,208,1,63,1401),(1413,208,1,63,1407),(1413,208,1,64,1388),(1413,208,1,64,1394),(1413,208,1,64,1400),(1413,208,1,64,1406),(1413,208,1,64,1412),(1413,208,1,65,1386),(1413,208,1,65,1392),(1413,208,1,65,1398),(1413,208,1,65,1404),(1413,208,1,65,1410),(1413,208,1,66,1384),(1413,208,1,66,1390),(1413,208,1,66,1396),(1413,208,1,66,1402),(1413,208,1,66,1408),(1455,208,1,59,1426),(1455,208,1,59,1433),(1455,208,1,59,1440),(1455,208,1,59,1447),(1455,208,1,59,1454),(1455,208,1,62,1424),(1455,208,1,62,1431),(1455,208,1,62,1438),(1455,208,1,62,1445),(1455,208,1,62,1452),(1455,208,1,63,1423),(1455,208,1,63,1430),(1455,208,1,63,1437),(1455,208,1,63,1444),(1455,208,1,63,1451),(1455,208,1,64,1422),(1455,208,1,64,1429),(1455,208,1,64,1436),(1455,208,1,64,1443),(1455,208,1,64,1450),(1455,208,1,65,1421),(1455,208,1,65,1428),(1455,208,1,65,1435),(1455,208,1,65,1442),(1455,208,1,65,1449),(1455,208,1,67,1420),(1455,208,1,67,1427),(1455,208,1,67,1434),(1455,208,1,67,1441),(1455,208,1,67,1448),(1455,208,1,82,1425),(1455,208,1,82,1432),(1455,208,1,82,1439),(1455,208,1,82,1446),(1455,208,1,82,1453),(1495,208,1,61,1467),(1495,208,1,61,1473),(1495,208,1,61,1479),(1495,208,1,61,1485),(1495,208,1,61,1491),(1495,208,1,62,1466),(1495,208,1,62,1472),(1495,208,1,62,1478),(1495,208,1,62,1484),(1495,208,1,62,1490),(1495,208,1,64,1468),(1495,208,1,64,1474),(1495,208,1,64,1480),(1495,208,1,64,1486),(1495,208,1,64,1492),(1495,208,1,65,1470),(1495,208,1,65,1476),(1495,208,1,65,1482),(1495,208,1,65,1488),(1495,208,1,65,1494),(1495,208,1,66,1465),(1495,208,1,66,1471),(1495,208,1,66,1477),(1495,208,1,66,1483),(1495,208,1,66,1489),(1495,208,1,67,1469),(1495,208,1,67,1475),(1495,208,1,67,1481),(1495,208,1,67,1487),(1495,208,1,67,1493),(1526,208,1,58,1496),(1526,208,1,58,1502),(1526,208,1,58,1508),(1526,208,1,58,1514),(1526,208,1,58,1520),(1526,208,1,59,1498),(1526,208,1,59,1504),(1526,208,1,59,1510),(1526,208,1,59,1516),(1526,208,1,59,1522),(1526,208,1,61,1497),(1526,208,1,61,1503),(1526,208,1,61,1509),(1526,208,1,61,1515),(1526,208,1,61,1521),(1526,208,1,62,1499),(1526,208,1,62,1505),(1526,208,1,62,1511),(1526,208,1,62,1517),(1526,208,1,62,1523),(1526,208,1,63,1501),(1526,208,1,63,1507),(1526,208,1,63,1513),(1526,208,1,63,1519),(1526,208,1,63,1525),(1526,208,1,82,1500),(1526,208,1,82,1506),(1526,208,1,82,1512),(1526,208,1,82,1518),(1526,208,1,82,1524),(1561,208,1,61,1536),(1561,208,1,61,1537),(1561,208,1,61,1538),(1561,208,1,61,1539),(1561,208,1,61,1540),(1561,208,1,62,1546),(1561,208,1,62,1547),(1561,208,1,62,1548),(1561,208,1,62,1549),(1561,208,1,62,1550),(1561,208,1,63,1556),(1561,208,1,63,1557),(1561,208,1,63,1558),(1561,208,1,63,1559),(1561,208,1,63,1560),(1561,208,1,64,1541),(1561,208,1,64,1542),(1561,208,1,64,1543),(1561,208,1,64,1544),(1561,208,1,64,1545),(1561,208,1,65,1551),(1561,208,1,65,1552),(1561,208,1,65,1553),(1561,208,1,65,1554),(1561,208,1,65,1555),(1597,208,1,62,1610),(1597,208,1,62,1611),(1597,208,1,62,1612),(1597,208,1,62,1613),(1597,208,1,62,1614),(1597,208,1,63,1605),(1597,208,1,63,1606),(1597,208,1,63,1607),(1597,208,1,63,1608),(1597,208,1,63,1609),(1597,208,1,64,1615),(1597,208,1,64,1616),(1597,208,1,64,1617),(1597,208,1,64,1618),(1597,208,1,64,1619),(1643,208,1,64,1631),(1643,208,1,64,1634),(1643,208,1,64,1637),(1643,208,1,64,1640),(1643,208,1,65,1632),(1643,208,1,65,1635),(1643,208,1,65,1638),(1643,208,1,65,1641),(1643,208,1,66,1633),(1643,208,1,66,1636),(1643,208,1,66,1639),(1643,208,1,66,1642),(1833,208,1,60,1833),(1943,208,1,62,1931),(1943,208,1,62,1932),(1943,208,1,62,1933),(1943,208,1,63,1937),(1943,208,1,63,1938),(1943,208,1,63,1939),(1943,208,1,64,1928),(1943,208,1,64,1929),(1943,208,1,64,1930),(1943,208,1,65,1934),(1943,208,1,65,1935),(1943,208,1,65,1936),(1943,208,1,66,1940),(1943,208,1,66,1941),(1943,208,1,66,1942),(1946,208,1,62,1944),(1946,208,1,63,1945),(1961,208,1,61,1947),(1961,208,1,61,1954),(1961,208,1,62,1950),(1961,208,1,62,1957),(1961,208,1,63,1952),(1961,208,1,63,1959),(1961,208,1,64,1948),(1961,208,1,64,1955),(1961,208,1,65,1951),(1961,208,1,65,1958),(1961,208,1,66,1953),(1961,208,1,66,1960),(1961,208,1,67,1949),(1961,208,1,67,1956),(1972,208,1,61,1962),(1972,208,1,61,1967),(1972,208,1,62,1964),(1972,208,1,62,1969),(1972,208,1,63,1966),(1972,208,1,63,1971),(1972,208,1,64,1963),(1972,208,1,64,1968),(1972,208,1,65,1965),(1972,208,1,65,1970),(1991,208,1,61,1973),(1991,208,1,61,1974),(1991,208,1,61,1975),(1991,208,1,62,1979),(1991,208,1,62,1980),(1991,208,1,62,1981),(1991,208,1,63,1985),(1991,208,1,63,1986),(1991,208,1,63,1987),(1991,208,1,64,1976),(1991,208,1,64,1977),(1991,208,1,64,1978),(1991,208,1,65,1982),(1991,208,1,65,1983),(1991,208,1,65,1984),(1991,208,1,66,1988),(1991,208,1,66,1989),(1991,208,1,66,1990),(2041,208,1,60,2041),(2168,208,1,59,2159),(2168,208,1,59,2164),(2168,208,1,61,2158),(2168,208,1,61,2163),(2168,208,1,62,2160),(2168,208,1,62,2165),(2168,208,1,63,2162),(2168,208,1,63,2167),(2168,208,1,82,2161),(2168,208,1,82,2166),(2245,208,1,58,2235),(2245,208,1,58,2240),(2245,208,1,61,2236),(2245,208,1,61,2241),(2245,208,1,62,2237),(2245,208,1,62,2242),(2245,208,1,63,2238),(2245,208,1,63,2243),(2245,208,1,82,2239),(2245,208,1,82,2244),(2268,208,1,58,2261),(2268,208,1,58,2267),(2268,208,1,59,2258),(2268,208,1,59,2264),(2268,208,1,61,2260),(2268,208,1,61,2266),(2268,208,1,62,2259),(2268,208,1,62,2265),(2268,208,1,63,2257),(2268,208,1,63,2263),(2268,208,1,82,2256),(2268,208,1,82,2262),(2277,208,1,60,2277),(2329,208,1,60,2329),(2456,208,1,59,2443),(2456,208,1,59,2448),(2456,208,1,59,2453),(2456,208,1,61,2441),(2456,208,1,61,2446),(2456,208,1,61,2451),(2456,208,1,62,2442),(2456,208,1,62,2447),(2456,208,1,62,2452),(2456,208,1,63,2445),(2456,208,1,63,2450),(2456,208,1,63,2455),(2456,208,1,82,2444),(2456,208,1,82,2449),(2456,208,1,82,2454),(2465,208,1,58,2457),(2465,208,1,58,2461),(2465,208,1,59,2458),(2465,208,1,59,2462),(2465,208,1,62,2459),(2465,208,1,62,2463),(2465,208,1,82,2460),(2465,208,1,82,2464),(2478,208,1,58,2466),(2478,208,1,58,2472),(2478,208,1,61,2467),(2478,208,1,61,2473),(2478,208,1,62,2468),(2478,208,1,62,2474),(2478,208,1,63,2471),(2478,208,1,63,2477),(2478,208,1,65,2469),(2478,208,1,65,2475),(2478,208,1,82,2470),(2478,208,1,82,2476),(2500,208,1,58,2488),(2500,208,1,58,2494),(2500,208,1,59,2490),(2500,208,1,59,2496),(2500,208,1,61,2489),(2500,208,1,61,2495),(2500,208,1,62,2491),(2500,208,1,62,2497),(2500,208,1,63,2493),(2500,208,1,63,2499),(2500,208,1,82,2492),(2500,208,1,82,2498),(2533,208,1,58,2525),(2533,208,1,58,2529),(2533,208,1,59,2526),(2533,208,1,59,2530),(2533,208,1,62,2527),(2533,208,1,62,2531),(2533,208,1,82,2528),(2533,208,1,82,2532),(1,212,1,78,1014),(1,212,1,78,1017),(1,212,1,78,1020),(1,212,1,79,1015),(1,212,1,79,1018),(1,212,1,79,1021),(1,212,1,80,1016),(1,212,1,80,1019),(1,212,1,80,1022),(2,212,1,78,942),(2,212,1,78,945),(2,212,1,79,943),(2,212,1,79,946),(2,212,1,80,944),(2,212,1,80,947),(7,212,1,77,158),(7,212,1,77,1145),(7,212,1,78,157),(7,212,1,78,1146),(7,212,1,79,159),(7,212,1,79,1147),(9,212,1,77,164),(9,212,1,77,1290),(9,212,1,78,163),(9,212,1,78,1291),(9,212,1,80,165),(9,212,1,80,1292),(10,212,1,77,167),(10,212,1,77,1148),(10,212,1,78,168),(10,212,1,78,1149),(10,212,1,79,169),(10,212,1,79,1150),(10,212,1,80,166),(10,212,1,80,1151),(11,212,1,77,170),(11,212,1,77,1162),(11,212,1,78,171),(11,212,1,78,1163),(12,212,1,78,173),(12,212,1,78,1184),(12,212,1,79,174),(12,212,1,79,1185),(12,212,1,80,172),(12,212,1,80,1186),(17,212,1,77,186),(17,212,1,77,1156),(17,212,1,78,187),(17,212,1,78,1157),(17,212,1,79,188),(17,212,1,79,1158),(17,212,1,80,189),(17,212,1,80,1159),(18,212,1,77,190),(18,212,1,77,1238),(18,212,1,78,192),(18,212,1,78,1239),(18,212,1,80,193),(18,212,1,80,1240),(18,212,1,81,191),(18,212,1,81,1241),(19,212,1,78,195),(19,212,1,78,1219),(19,212,1,79,196),(19,212,1,79,1220),(19,212,1,81,194),(19,212,1,81,1221),(22,212,1,77,204),(22,212,1,77,1280),(22,212,1,78,203),(22,212,1,78,1281),(22,212,1,80,205),(22,212,1,80,1282),(22,212,1,81,206),(22,212,1,81,1283),(24,212,1,77,209),(24,212,1,77,1305),(24,212,1,78,207),(24,212,1,78,1306),(24,212,1,81,208),(24,212,1,81,1307),(26,212,1,77,218),(26,212,1,77,1175),(26,212,1,78,219),(26,212,1,78,1176),(26,212,1,79,220),(26,212,1,79,1177),(26,212,1,80,217),(26,212,1,80,1178),(26,212,1,81,221),(26,212,1,81,1179),(30,212,1,77,229),(30,212,1,77,1293),(30,212,1,78,228),(30,212,1,78,1294),(30,212,1,79,230),(30,212,1,79,1295),(31,212,1,78,231),(31,212,1,78,1312),(31,212,1,79,232),(31,212,1,79,1313),(32,212,1,78,233),(32,212,1,78,1327),(32,212,1,79,234),(32,212,1,79,1328),(33,212,1,77,237),(33,212,1,77,1141),(33,212,1,78,235),(33,212,1,78,1142),(33,212,1,79,236),(33,212,1,79,1143),(33,212,1,80,238),(33,212,1,80,1144),(34,212,1,78,844),(34,212,1,78,848),(34,212,1,78,852),(34,212,1,78,856),(34,212,1,78,860),(34,212,1,79,845),(34,212,1,79,849),(34,212,1,79,853),(34,212,1,79,857),(34,212,1,79,861),(34,212,1,80,846),(34,212,1,80,850),(34,212,1,80,854),(34,212,1,80,858),(34,212,1,80,862),(34,212,1,81,847),(34,212,1,81,851),(34,212,1,81,855),(34,212,1,81,859),(34,212,1,81,863),(36,212,1,77,879),(36,212,1,77,884),(36,212,1,77,889),(36,212,1,77,894),(36,212,1,77,899),(36,212,1,78,880),(36,212,1,78,885),(36,212,1,78,890),(36,212,1,78,895),(36,212,1,78,900),(36,212,1,79,881),(36,212,1,79,886),(36,212,1,79,891),(36,212,1,79,896),(36,212,1,79,901),(36,212,1,80,882),(36,212,1,80,887),(36,212,1,80,892),(36,212,1,80,897),(36,212,1,80,902),(36,212,1,81,883),(36,212,1,81,888),(36,212,1,81,893),(36,212,1,81,898),(36,212,1,81,903),(38,212,1,78,864),(38,212,1,78,867),(38,212,1,78,870),(38,212,1,78,873),(38,212,1,78,876),(38,212,1,79,865),(38,212,1,79,868),(38,212,1,79,871),(38,212,1,79,874),(38,212,1,79,877),(38,212,1,80,866),(38,212,1,80,869),(38,212,1,80,872),(38,212,1,80,875),(38,212,1,80,878),(41,212,1,77,259),(41,212,1,77,1234),(41,212,1,78,257),(41,212,1,78,1235),(41,212,1,79,258),(41,212,1,79,1236),(41,212,1,80,260),(41,212,1,80,1237),(42,212,1,78,804),(42,212,1,78,808),(42,212,1,78,812),(42,212,1,78,816),(42,212,1,78,820),(42,212,1,79,805),(42,212,1,79,809),(42,212,1,79,813),(42,212,1,79,817),(42,212,1,79,821),(42,212,1,80,806),(42,212,1,80,810),(42,212,1,80,814),(42,212,1,80,818),(42,212,1,80,822),(42,212,1,81,807),(42,212,1,81,811),(42,212,1,81,815),(42,212,1,81,819),(42,212,1,81,823),(44,212,1,79,270),(44,212,1,79,1343),(44,212,1,80,271),(44,212,1,80,1344),(45,212,1,77,274),(45,212,1,77,1242),(45,212,1,78,272),(45,212,1,78,1243),(45,212,1,79,273),(45,212,1,79,1244),(45,212,1,80,275),(45,212,1,80,1245),(45,212,1,81,276),(45,212,1,81,1246),(46,212,1,77,714),(46,212,1,77,718),(46,212,1,77,722),(46,212,1,77,726),(46,212,1,77,730),(46,212,1,78,715),(46,212,1,78,719),(46,212,1,78,723),(46,212,1,78,727),(46,212,1,78,731),(46,212,1,79,716),(46,212,1,79,720),(46,212,1,79,724),(46,212,1,79,728),(46,212,1,79,732),(46,212,1,80,717),(46,212,1,80,721),(46,212,1,80,725),(46,212,1,80,729),(46,212,1,80,733),(47,212,1,78,749),(47,212,1,78,753),(47,212,1,78,757),(47,212,1,78,761),(47,212,1,78,765),(47,212,1,79,750),(47,212,1,79,754),(47,212,1,79,758),(47,212,1,79,762),(47,212,1,79,766),(47,212,1,80,751),(47,212,1,80,755),(47,212,1,80,759),(47,212,1,80,763),(47,212,1,80,767),(47,212,1,81,752),(47,212,1,81,756),(47,212,1,81,760),(47,212,1,81,764),(47,212,1,81,768),(48,212,1,78,285),(48,212,1,78,1315),(48,212,1,79,286),(48,212,1,79,1316),(49,212,1,78,789),(49,212,1,78,792),(49,212,1,78,795),(49,212,1,78,798),(49,212,1,78,801),(49,212,1,79,790),(49,212,1,79,793),(49,212,1,79,796),(49,212,1,79,799),(49,212,1,79,802),(49,212,1,80,791),(49,212,1,80,794),(49,212,1,80,797),(49,212,1,80,800),(49,212,1,80,803),(50,212,1,77,290),(50,212,1,77,1228),(50,212,1,78,291),(50,212,1,78,1229),(50,212,1,79,292),(50,212,1,79,1230),(51,212,1,79,131),(51,212,1,79,1133),(51,212,1,80,130),(51,212,1,80,1134),(53,212,1,77,769),(53,212,1,77,773),(53,212,1,77,777),(53,212,1,77,781),(53,212,1,77,785),(53,212,1,78,770),(53,212,1,78,774),(53,212,1,78,778),(53,212,1,78,782),(53,212,1,78,786),(53,212,1,79,771),(53,212,1,79,775),(53,212,1,79,779),(53,212,1,79,783),(53,212,1,79,787),(53,212,1,80,772),(53,212,1,80,776),(53,212,1,80,780),(53,212,1,80,784),(53,212,1,80,788),(55,212,1,77,1029),(55,212,1,77,1032),(55,212,1,78,1030),(55,212,1,78,1033),(55,212,1,79,1031),(55,212,1,79,1034),(56,212,1,77,309),(56,212,1,77,1284),(56,212,1,78,310),(56,212,1,78,1285),(56,212,1,79,311),(56,212,1,79,1286),(57,212,1,77,315),(57,212,1,77,1257),(57,212,1,78,314),(57,212,1,78,1258),(57,212,1,79,312),(57,212,1,79,1259),(57,212,1,80,313),(57,212,1,80,1260),(58,212,1,78,316),(58,212,1,78,1309),(58,212,1,79,317),(58,212,1,79,1310),(59,212,1,77,320),(59,212,1,77,1187),(59,212,1,78,318),(59,212,1,78,1188),(59,212,1,79,319),(59,212,1,79,1189),(59,212,1,80,321),(59,212,1,80,1190),(61,212,1,78,328),(61,212,1,78,1329),(61,212,1,79,329),(61,212,1,79,1330),(63,212,1,77,1049),(63,212,1,77,1053),(63,212,1,78,1050),(63,212,1,78,1054),(63,212,1,79,1051),(63,212,1,79,1055),(63,212,1,80,1052),(63,212,1,80,1056),(64,212,1,77,334),(64,212,1,77,1180),(64,212,1,78,335),(64,212,1,78,1181),(64,212,1,79,336),(64,212,1,79,1182),(64,212,1,80,337),(64,212,1,80,1183),(65,212,1,77,339),(65,212,1,77,1322),(65,212,1,78,338),(65,212,1,78,1323),(65,212,1,79,340),(65,212,1,79,1324),(66,212,1,77,341),(66,212,1,77,1083),(66,212,1,78,342),(66,212,1,78,1084),(66,212,1,79,343),(66,212,1,79,1085),(66,212,1,80,344),(66,212,1,80,1086),(66,212,1,81,345),(66,212,1,81,1087),(68,212,1,78,1035),(68,212,1,78,1039),(68,212,1,79,1036),(68,212,1,79,1040),(68,212,1,80,1037),(68,212,1,80,1041),(68,212,1,81,1038),(68,212,1,81,1042),(70,212,1,77,355),(70,212,1,77,1152),(70,212,1,78,354),(70,212,1,78,1153),(70,212,1,79,357),(70,212,1,79,1154),(70,212,1,80,356),(70,212,1,80,1155),(71,212,1,78,358),(71,212,1,78,1130),(71,212,1,78,1135),(71,212,1,79,359),(71,212,1,79,1131),(71,212,1,79,1136),(71,212,1,80,360),(71,212,1,80,1132),(71,212,1,80,1137),(72,212,1,77,366),(72,212,1,77,1167),(72,212,1,78,364),(72,212,1,78,1168),(72,212,1,79,365),(72,212,1,79,1169),(72,212,1,80,367),(72,212,1,80,1170),(73,212,1,77,369),(73,212,1,77,373),(73,212,1,78,368),(73,212,1,78,372),(73,212,1,79,370),(73,212,1,79,374),(73,212,1,80,371),(73,212,1,80,375),(74,212,1,78,378),(74,212,1,78,1325),(74,212,1,79,379),(74,212,1,79,1326),(76,212,1,78,386),(76,212,1,78,1127),(76,212,1,79,385),(76,212,1,79,1128),(76,212,1,80,387),(76,212,1,80,1129),(77,212,1,77,389),(77,212,1,77,1287),(77,212,1,78,388),(77,212,1,78,1288),(77,212,1,79,390),(77,212,1,79,1289),(78,212,1,78,1023),(78,212,1,78,1024),(78,212,1,79,1025),(78,212,1,79,1026),(78,212,1,80,1027),(78,212,1,80,1028),(79,212,1,78,1057),(79,212,1,78,1060),(79,212,1,78,1101),(79,212,1,79,1058),(79,212,1,79,1061),(79,212,1,79,1102),(79,212,1,80,1059),(79,212,1,80,1062),(79,212,1,80,1103),(80,212,1,77,398),(80,212,1,77,1171),(80,212,1,78,397),(80,212,1,78,1172),(80,212,1,79,400),(80,212,1,79,1173),(80,212,1,81,399),(80,212,1,81,1174),(81,212,1,77,403),(81,212,1,77,406),(81,212,1,78,401),(81,212,1,78,404),(81,212,1,79,402),(81,212,1,79,405),(83,212,1,78,1075),(83,212,1,78,1079),(83,212,1,78,1091),(83,212,1,79,1076),(83,212,1,79,1080),(83,212,1,79,1092),(83,212,1,80,1077),(83,212,1,80,1081),(83,212,1,80,1093),(83,212,1,81,1078),(83,212,1,81,1082),(83,212,1,81,1094),(85,212,1,78,1043),(85,212,1,78,1046),(85,212,1,79,1044),(85,212,1,79,1047),(85,212,1,80,1045),(85,212,1,80,1048),(87,212,1,78,437),(87,212,1,78,1104),(87,212,1,79,439),(87,212,1,79,1105),(87,212,1,80,438),(87,212,1,80,1106),(88,212,1,78,440),(88,212,1,78,1088),(88,212,1,79,441),(88,212,1,79,1089),(88,212,1,80,442),(88,212,1,80,1090),(91,212,1,77,455),(91,212,1,77,1118),(91,212,1,78,456),(91,212,1,78,1119),(91,212,1,79,457),(91,212,1,79,1120),(92,212,1,78,1063),(92,212,1,78,1066),(92,212,1,78,1098),(92,212,1,79,1064),(92,212,1,79,1067),(92,212,1,79,1099),(92,212,1,81,1065),(92,212,1,81,1068),(92,212,1,81,1100),(93,212,1,78,461),(93,212,1,78,1114),(93,212,1,79,462),(93,212,1,79,1115),(93,212,1,80,464),(93,212,1,80,1116),(93,212,1,81,463),(93,212,1,81,1117),(95,212,1,78,465),(95,212,1,78,1124),(95,212,1,79,466),(95,212,1,79,1125),(95,212,1,80,467),(95,212,1,80,1126),(97,212,1,78,939),(97,212,1,79,940),(97,212,1,80,941),(98,212,1,77,471),(98,212,1,77,1110),(98,212,1,78,473),(98,212,1,78,1111),(98,212,1,79,474),(98,212,1,79,1112),(98,212,1,81,472),(98,212,1,81,1113),(99,212,1,78,930),(99,212,1,79,931),(99,212,1,80,932),(100,212,1,78,478),(100,212,1,78,1121),(100,212,1,80,479),(100,212,1,80,1122),(100,212,1,81,480),(100,212,1,81,1123),(101,212,1,77,824),(101,212,1,77,828),(101,212,1,77,832),(101,212,1,77,836),(101,212,1,77,840),(101,212,1,78,825),(101,212,1,78,829),(101,212,1,78,833),(101,212,1,78,837),(101,212,1,78,841),(101,212,1,79,826),(101,212,1,79,830),(101,212,1,79,834),(101,212,1,79,838),(101,212,1,79,842),(101,212,1,80,827),(101,212,1,80,831),(101,212,1,80,835),(101,212,1,80,839),(101,212,1,80,843),(102,212,1,77,1069),(102,212,1,77,1072),(102,212,1,77,1095),(102,212,1,78,1070),(102,212,1,78,1073),(102,212,1,78,1096),(102,212,1,80,1071),(102,212,1,80,1074),(102,212,1,80,1097),(103,212,1,77,488),(103,212,1,77,1107),(103,212,1,78,489),(103,212,1,78,1108),(103,212,1,79,490),(103,212,1,79,1109),(104,212,1,77,904),(104,212,1,77,908),(104,212,1,77,912),(104,212,1,78,905),(104,212,1,78,909),(104,212,1,78,913),(104,212,1,79,906),(104,212,1,79,910),(104,212,1,79,914),(104,212,1,80,907),(104,212,1,80,911),(104,212,1,80,915),(105,212,1,77,496),(105,212,1,77,1211),(105,212,1,78,495),(105,212,1,78,1212),(105,212,1,79,497),(105,212,1,79,1213),(106,212,1,77,499),(106,212,1,77,1202),(106,212,1,78,498),(106,212,1,78,1203),(106,212,1,79,500),(106,212,1,79,1204),(107,212,1,77,504),(107,212,1,77,507),(107,212,1,78,505),(107,212,1,78,508),(107,212,1,79,506),(107,212,1,79,509),(108,212,1,77,502),(108,212,1,77,1138),(108,212,1,78,501),(108,212,1,78,1139),(108,212,1,79,503),(108,212,1,79,1140),(109,212,1,77,510),(109,212,1,77,1299),(109,212,1,78,511),(109,212,1,78,1300),(109,212,1,79,512),(109,212,1,79,1301),(110,212,1,77,513),(110,212,1,77,1296),(110,212,1,78,514),(110,212,1,78,1297),(110,212,1,79,515),(110,212,1,79,1298),(111,212,1,78,516),(111,212,1,78,1331),(112,212,1,77,517),(112,212,1,77,1302),(112,212,1,78,518),(112,212,1,78,1303),(112,212,1,79,519),(112,212,1,79,1304),(113,212,1,77,520),(113,212,1,77,1208),(113,212,1,78,521),(113,212,1,78,1209),(113,212,1,80,522),(113,212,1,80,1210),(114,212,1,79,523),(114,212,1,79,1308),(115,212,1,77,524),(115,212,1,77,1196),(115,212,1,78,525),(115,212,1,78,1197),(115,212,1,79,526),(115,212,1,79,1198),(116,212,1,78,527),(116,212,1,78,1332),(117,212,1,77,528),(117,212,1,77,1205),(117,212,1,78,529),(117,212,1,78,1206),(117,212,1,79,530),(117,212,1,79,1207),(118,212,1,78,531),(118,212,1,78,1321),(119,212,1,77,532),(119,212,1,77,1231),(119,212,1,78,533),(119,212,1,78,1232),(119,212,1,79,534),(119,212,1,79,1233),(120,212,1,77,535),(120,212,1,77,1164),(120,212,1,78,536),(120,212,1,78,1165),(120,212,1,79,537),(120,212,1,79,1166),(121,212,1,78,541),(121,212,1,78,1320),(122,212,1,77,538),(122,212,1,77,1199),(122,212,1,78,539),(122,212,1,78,1200),(122,212,1,79,540),(122,212,1,79,1201),(123,212,1,78,542),(123,212,1,78,1160),(123,212,1,79,543),(123,212,1,79,1161),(1351,212,1,77,1414),(1351,212,1,77,1417),(1351,212,1,78,1415),(1351,212,1,78,1418),(1351,212,1,79,1416),(1351,212,1,79,1419),(1464,212,1,78,1456),(1464,212,1,78,1460),(1464,212,1,79,1457),(1464,212,1,79,1461),(1464,212,1,80,1458),(1464,212,1,80,1462),(1464,212,1,81,1459),(1464,212,1,81,1463),(1535,212,1,77,1527),(1535,212,1,77,1531),(1535,212,1,78,1528),(1535,212,1,78,1532),(1535,212,1,79,1530),(1535,212,1,79,1534),(1535,212,1,81,1529),(1535,212,1,81,1533),(1568,212,1,77,1562),(1568,212,1,77,1565),(1568,212,1,78,1563),(1568,212,1,78,1566),(1568,212,1,79,1564),(1568,212,1,79,1567),(1583,212,1,78,1570),(1583,212,1,78,1575),(1583,212,1,79,1571),(1583,212,1,79,1579),(1583,212,1,80,1569),(1583,212,1,80,1572),(1596,212,1,77,1573),(1596,212,1,77,1578),(1596,212,1,77,1584),(1596,212,1,77,1588),(1596,212,1,77,1592),(1596,212,1,78,1574),(1596,212,1,78,1580),(1596,212,1,78,1585),(1596,212,1,78,1589),(1596,212,1,78,1593),(1596,212,1,79,1576),(1596,212,1,79,1581),(1596,212,1,79,1586),(1596,212,1,79,1590),(1596,212,1,79,1594),(1596,212,1,80,1577),(1596,212,1,80,1582),(1596,212,1,80,1587),(1596,212,1,80,1591),(1596,212,1,80,1595),(1604,212,1,78,1599),(1604,212,1,78,1602),(1604,212,1,79,1600),(1604,212,1,79,1603),(1604,212,1,80,1598),(1604,212,1,80,1601),(1630,212,1,77,1620),(1630,212,1,77,1625),(1630,212,1,78,1623),(1630,212,1,78,1628),(1630,212,1,79,1624),(1630,212,1,79,1629),(1630,212,1,80,1621),(1630,212,1,80,1626),(1630,212,1,81,1622),(1630,212,1,81,1627),(1656,212,1,78,1644),(1656,212,1,78,1648),(1656,212,1,78,1652),(1656,212,1,79,1645),(1656,212,1,79,1649),(1656,212,1,79,1653),(1656,212,1,80,1647),(1656,212,1,80,1651),(1656,212,1,80,1655),(1656,212,1,81,1646),(1656,212,1,81,1650),(1656,212,1,81,1654),(1677,212,1,78,1667),(1677,212,1,78,1668),(1677,212,1,78,1669),(1677,212,1,78,1670),(1677,212,1,78,1671),(1677,212,1,79,1672),(1677,212,1,79,1673),(1677,212,1,79,1674),(1677,212,1,79,1675),(1677,212,1,79,1676),(1677,212,1,80,1657),(1677,212,1,80,1658),(1677,212,1,80,1659),(1677,212,1,80,1660),(1677,212,1,80,1661),(1677,212,1,81,1662),(1677,212,1,81,1663),(1677,212,1,81,1664),(1677,212,1,81,1665),(1677,212,1,81,1666),(1699,212,1,77,1683),(1699,212,1,77,1684),(1699,212,1,77,1685),(1699,212,1,77,1686),(1699,212,1,77,1687),(1699,212,1,78,1688),(1699,212,1,78,1689),(1699,212,1,78,1690),(1699,212,1,78,1692),(1699,212,1,78,1693),(1699,212,1,79,1694),(1699,212,1,79,1695),(1699,212,1,79,1696),(1699,212,1,79,1697),(1699,212,1,79,1698),(1699,212,1,80,1678),(1699,212,1,80,1679),(1699,212,1,80,1680),(1699,212,1,80,1681),(1699,212,1,80,1682),(1709,212,1,77,1700),(1709,212,1,77,1703),(1709,212,1,77,1706),(1709,212,1,78,1701),(1709,212,1,78,1704),(1709,212,1,78,1707),(1709,212,1,80,1702),(1709,212,1,80,1705),(1709,212,1,80,1708),(1725,212,1,78,1711),(1725,212,1,78,1714),(1725,212,1,78,1717),(1725,212,1,78,1720),(1725,212,1,78,1723),(1725,212,1,79,1712),(1725,212,1,79,1715),(1725,212,1,79,1718),(1725,212,1,79,1721),(1725,212,1,79,1724),(1725,212,1,80,1710),(1725,212,1,80,1713),(1725,212,1,80,1716),(1725,212,1,80,1719),(1725,212,1,80,1722),(1735,212,1,78,1727),(1735,212,1,78,1730),(1735,212,1,78,1733),(1735,212,1,79,1728),(1735,212,1,79,1731),(1735,212,1,79,1734),(1735,212,1,81,1726),(1735,212,1,81,1729),(1735,212,1,81,1732),(1756,212,1,78,1737),(1756,212,1,78,1741),(1756,212,1,78,1745),(1756,212,1,78,1749),(1756,212,1,78,1753),(1756,212,1,79,1739),(1756,212,1,79,1743),(1756,212,1,79,1747),(1756,212,1,79,1751),(1756,212,1,79,1755),(1756,212,1,80,1736),(1756,212,1,80,1740),(1756,212,1,80,1744),(1756,212,1,80,1748),(1756,212,1,80,1752),(1756,212,1,81,1738),(1756,212,1,81,1742),(1756,212,1,81,1746),(1756,212,1,81,1750),(1756,212,1,81,1754),(1777,212,1,77,1767),(1777,212,1,77,1768),(1777,212,1,77,1769),(1777,212,1,77,1770),(1777,212,1,77,1771),(1777,212,1,78,1762),(1777,212,1,78,1763),(1777,212,1,78,1764),(1777,212,1,78,1765),(1777,212,1,78,1766),(1777,212,1,79,1757),(1777,212,1,79,1758),(1777,212,1,79,1759),(1777,212,1,79,1760),(1777,212,1,79,1761),(1777,212,1,80,1772),(1777,212,1,80,1773),(1777,212,1,80,1774),(1777,212,1,80,1775),(1777,212,1,80,1776),(1787,212,1,78,1779),(1787,212,1,78,1782),(1787,212,1,78,1785),(1787,212,1,79,1780),(1787,212,1,79,1783),(1787,212,1,79,1786),(1787,212,1,80,1778),(1787,212,1,80,1781),(1787,212,1,80,1784),(1808,212,1,78,1789),(1808,212,1,78,1793),(1808,212,1,78,1797),(1808,212,1,78,1801),(1808,212,1,78,1805),(1808,212,1,79,1791),(1808,212,1,79,1795),(1808,212,1,79,1799),(1808,212,1,79,1803),(1808,212,1,79,1807),(1808,212,1,80,1788),(1808,212,1,80,1792),(1808,212,1,80,1796),(1808,212,1,80,1800),(1808,212,1,80,1804),(1808,212,1,81,1790),(1808,212,1,81,1794),(1808,212,1,81,1798),(1808,212,1,81,1802),(1808,212,1,81,1806),(1817,212,1,77,1809),(1817,212,1,77,1813),(1817,212,1,78,1811),(1817,212,1,78,1815),(1817,212,1,79,1812),(1817,212,1,79,1816),(1817,212,1,80,1810),(1817,212,1,80,1814),(1840,212,1,78,1835),(1840,212,1,78,1838),(1840,212,1,79,1836),(1840,212,1,79,1839),(1840,212,1,80,1834),(1840,212,1,80,1837),(1866,212,1,77,1841),(1866,212,1,77,1846),(1866,212,1,77,1851),(1866,212,1,77,1856),(1866,212,1,77,1861),(1866,212,1,78,1842),(1866,212,1,78,1847),(1866,212,1,78,1852),(1866,212,1,78,1857),(1866,212,1,78,1862),(1866,212,1,79,1843),(1866,212,1,79,1848),(1866,212,1,79,1853),(1866,212,1,79,1858),(1866,212,1,79,1863),(1866,212,1,80,1844),(1866,212,1,80,1849),(1866,212,1,80,1854),(1866,212,1,80,1859),(1866,212,1,80,1864),(1866,212,1,81,1845),(1866,212,1,81,1850),(1866,212,1,81,1855),(1866,212,1,81,1860),(1866,212,1,81,1865),(1875,212,1,78,1867),(1875,212,1,78,1871),(1875,212,1,79,1868),(1875,212,1,79,1872),(1875,212,1,80,1870),(1875,212,1,80,1874),(1875,212,1,81,1869),(1875,212,1,81,1873),(1888,212,1,77,1879),(1888,212,1,77,1880),(1888,212,1,77,1881),(1888,212,1,78,1882),(1888,212,1,78,1883),(1888,212,1,78,1884),(1888,212,1,79,1885),(1888,212,1,79,1886),(1888,212,1,79,1887),(1888,212,1,80,1876),(1888,212,1,80,1877),(1888,212,1,80,1878),(1892,212,1,78,1890),(1892,212,1,79,1891),(1892,212,1,80,1889),(1896,212,1,78,1893),(1896,212,1,79,1895),(1896,212,1,80,1894),(1903,212,1,77,1897),(1903,212,1,77,1900),(1903,212,1,78,1898),(1903,212,1,78,1901),(1903,212,1,79,1899),(1903,212,1,79,1902),(1910,212,1,78,1904),(1910,212,1,78,1907),(1910,212,1,79,1906),(1910,212,1,79,1909),(1910,212,1,80,1905),(1910,212,1,80,1908),(1920,212,1,78,1912),(1920,212,1,78,1915),(1920,212,1,78,1918),(1920,212,1,79,1911),(1920,212,1,79,1914),(1920,212,1,79,1917),(1920,212,1,80,1913),(1920,212,1,80,1916),(1920,212,1,80,1919),(1927,212,1,78,1922),(1927,212,1,78,1925),(1927,212,1,79,1923),(1927,212,1,79,1926),(1927,212,1,80,1921),(1927,212,1,80,1924),(1996,212,1,79,1992),(1996,212,1,79,1994),(1996,212,1,80,1993),(1996,212,1,80,1995),(2001,212,1,79,1998),(2001,212,1,79,2000),(2001,212,1,80,1997),(2001,212,1,80,1999),(2010,212,1,77,2002),(2010,212,1,77,2006),(2010,212,1,78,2004),(2010,212,1,78,2008),(2010,212,1,79,2005),(2010,212,1,79,2009),(2010,212,1,80,2003),(2010,212,1,80,2007),(2017,212,1,77,2013),(2017,212,1,77,2016),(2017,212,1,78,2012),(2017,212,1,78,2015),(2017,212,1,79,2011),(2017,212,1,79,2014),(2020,212,1,78,2018),(2020,212,1,78,2019),(2029,212,1,77,2023),(2029,212,1,77,2027),(2029,212,1,78,2022),(2029,212,1,78,2026),(2029,212,1,79,2021),(2029,212,1,79,2025),(2029,212,1,80,2024),(2029,212,1,80,2028),(2032,212,1,78,2030),(2032,212,1,78,2031),(2050,212,1,77,2042),(2050,212,1,77,2046),(2050,212,1,78,2044),(2050,212,1,78,2048),(2050,212,1,79,2045),(2050,212,1,79,2049),(2050,212,1,80,2043),(2050,212,1,80,2047),(2055,212,1,78,2051),(2055,212,1,78,2053),(2055,212,1,79,2052),(2055,212,1,79,2054),(2060,212,1,78,2056),(2060,212,1,78,2057),(2060,212,1,79,2058),(2060,212,1,79,2059),(2065,212,1,77,2061),(2065,212,1,77,2063),(2065,212,1,78,2062),(2065,212,1,78,2064),(2072,212,1,77,2066),(2072,212,1,77,2069),(2072,212,1,78,2067),(2072,212,1,78,2070),(2072,212,1,79,2068),(2072,212,1,79,2071),(2077,212,1,78,2073),(2077,212,1,78,2075),(2077,212,1,79,2074),(2077,212,1,79,2076),(2084,212,1,77,2078),(2084,212,1,77,2081),(2084,212,1,79,2080),(2084,212,1,79,2083),(2084,212,1,80,2079),(2084,212,1,80,2082),(2089,212,1,78,2085),(2089,212,1,78,2087),(2089,212,1,79,2086),(2089,212,1,79,2088),(2098,212,1,77,2090),(2098,212,1,77,2094),(2098,212,1,78,2091),(2098,212,1,78,2095),(2098,212,1,79,2093),(2098,212,1,79,2097),(2098,212,1,81,2092),(2098,212,1,81,2096),(2105,212,1,77,2099),(2105,212,1,77,2102),(2105,212,1,78,2100),(2105,212,1,78,2103),(2105,212,1,79,2101),(2105,212,1,79,2104),(2116,212,1,77,2106),(2116,212,1,77,2111),(2116,212,1,78,2107),(2116,212,1,78,2112),(2116,212,1,79,2108),(2116,212,1,79,2113),(2116,212,1,80,2109),(2116,212,1,80,2114),(2116,212,1,81,2110),(2116,212,1,81,2115),(2123,212,1,77,2119),(2123,212,1,77,2122),(2123,212,1,78,2118),(2123,212,1,78,2121),(2123,212,1,79,2117),(2123,212,1,79,2120),(2132,212,1,77,2124),(2132,212,1,77,2128),(2132,212,1,78,2126),(2132,212,1,78,2130),(2132,212,1,79,2127),(2132,212,1,79,2131),(2132,212,1,80,2125),(2132,212,1,80,2129),(2135,212,1,78,2133),(2135,212,1,78,2134),(2138,212,1,78,2136),(2138,212,1,78,2137),(2145,212,1,78,2140),(2145,212,1,78,2143),(2145,212,1,79,2141),(2145,212,1,79,2144),(2145,212,1,80,2139),(2145,212,1,80,2142),(2157,212,1,77,2148),(2157,212,1,77,2153),(2157,212,1,78,2151),(2157,212,1,78,2155),(2157,212,1,79,2152),(2157,212,1,79,2156),(2157,212,1,80,2150),(2157,212,1,80,2154),(2178,212,1,77,2172),(2178,212,1,77,2175),(2178,212,1,78,2173),(2178,212,1,78,2176),(2178,212,1,79,2174),(2178,212,1,79,2177),(2185,212,1,77,2179),(2185,212,1,77,2182),(2185,212,1,78,2180),(2185,212,1,78,2183),(2185,212,1,79,2181),(2185,212,1,79,2184),(2190,212,1,78,2186),(2190,212,1,78,2188),(2190,212,1,79,2187),(2190,212,1,79,2189),(2197,212,1,77,2191),(2197,212,1,77,2194),(2197,212,1,78,2192),(2197,212,1,78,2195),(2197,212,1,79,2193),(2197,212,1,79,2196),(2204,212,1,77,2198),(2204,212,1,77,2201),(2204,212,1,78,2199),(2204,212,1,78,2202),(2204,212,1,79,2200),(2204,212,1,79,2203),(2212,212,1,78,2208),(2212,212,1,78,2210),(2212,212,1,79,2209),(2212,212,1,79,2211),(2219,212,1,77,2213),(2219,212,1,77,2216),(2219,212,1,78,2215),(2219,212,1,78,2218),(2219,212,1,80,2214),(2219,212,1,80,2217),(2229,212,1,77,2223),(2229,212,1,77,2224),(2229,212,1,78,2225),(2229,212,1,78,2226),(2229,212,1,79,2227),(2229,212,1,79,2228),(2234,212,1,78,2230),(2234,212,1,78,2232),(2234,212,1,79,2231),(2234,212,1,79,2233),(2252,212,1,78,2246),(2252,212,1,78,2249),(2252,212,1,79,2248),(2252,212,1,79,2251),(2252,212,1,81,2247),(2252,212,1,81,2250),(2255,212,1,79,2253),(2255,212,1,79,2254),(2284,212,1,77,2278),(2284,212,1,77,2281),(2284,212,1,78,2279),(2284,212,1,78,2282),(2284,212,1,79,2280),(2284,212,1,79,2283),(2291,212,1,77,2287),(2291,212,1,77,2290),(2291,212,1,78,2286),(2291,212,1,78,2289),(2291,212,1,79,2285),(2291,212,1,79,2288),(2300,212,1,77,2292),(2300,212,1,77,2293),(2300,212,1,78,2296),(2300,212,1,78,2297),(2300,212,1,79,2298),(2300,212,1,79,2299),(2300,212,1,80,2294),(2300,212,1,80,2295),(2309,212,1,77,2301),(2309,212,1,77,2305),(2309,212,1,78,2303),(2309,212,1,78,2307),(2309,212,1,80,2302),(2309,212,1,80,2306),(2309,212,1,81,2304),(2309,212,1,81,2308),(2320,212,1,77,2310),(2320,212,1,77,2315),(2320,212,1,78,2311),(2320,212,1,78,2316),(2320,212,1,79,2312),(2320,212,1,79,2317),(2320,212,1,80,2313),(2320,212,1,80,2318),(2320,212,1,81,2314),(2320,212,1,81,2319),(2336,212,1,78,2330),(2336,212,1,78,2333),(2336,212,1,80,2332),(2336,212,1,80,2335),(2336,212,1,81,2331),(2336,212,1,81,2334),(2343,212,1,78,2337),(2343,212,1,78,2340),(2343,212,1,79,2338),(2343,212,1,79,2341),(2343,212,1,80,2339),(2343,212,1,80,2342),(2350,212,1,77,2344),(2350,212,1,77,2347),(2350,212,1,78,2345),(2350,212,1,78,2348),(2350,212,1,81,2346),(2350,212,1,81,2349),(2357,212,1,77,2351),(2357,212,1,77,2354),(2357,212,1,78,2352),(2357,212,1,78,2355),(2357,212,1,79,2353),(2357,212,1,79,2356),(2366,212,1,77,2362),(2366,212,1,77,2363),(2366,212,1,78,2360),(2366,212,1,78,2361),(2366,212,1,79,2358),(2366,212,1,79,2359),(2366,212,1,80,2364),(2366,212,1,80,2365),(2373,212,1,77,2367),(2373,212,1,77,2370),(2373,212,1,78,2368),(2373,212,1,78,2371),(2373,212,1,79,2369),(2373,212,1,79,2372),(2389,212,1,78,2375),(2389,212,1,78,2378),(2389,212,1,78,2381),(2389,212,1,78,2384),(2389,212,1,78,2387),(2389,212,1,79,2376),(2389,212,1,79,2379),(2389,212,1,79,2382),(2389,212,1,79,2385),(2389,212,1,79,2388),(2389,212,1,80,2374),(2389,212,1,80,2377),(2389,212,1,80,2380),(2389,212,1,80,2383),(2389,212,1,80,2386),(2396,212,1,77,2390),(2396,212,1,77,2393),(2396,212,1,78,2391),(2396,212,1,78,2394),(2396,212,1,79,2392),(2396,212,1,79,2395),(2403,212,1,77,2397),(2403,212,1,77,2400),(2403,212,1,78,2398),(2403,212,1,78,2401),(2403,212,1,79,2399),(2403,212,1,79,2402),(2410,212,1,77,2404),(2410,212,1,77,2407),(2410,212,1,78,2406),(2410,212,1,78,2409),(2410,212,1,80,2405),(2410,212,1,80,2408),(2417,212,1,77,2412),(2417,212,1,77,2415),(2417,212,1,78,2413),(2417,212,1,78,2416),(2417,212,1,79,2411),(2417,212,1,79,2414),(2424,212,1,77,2418),(2424,212,1,77,2421),(2424,212,1,78,2419),(2424,212,1,78,2422),(2424,212,1,79,2420),(2424,212,1,79,2423),(2431,212,1,77,2425),(2431,212,1,77,2428),(2431,212,1,78,2426),(2431,212,1,78,2429),(2431,212,1,79,2427),(2431,212,1,79,2430),(2440,212,1,77,2434),(2440,212,1,77,2438),(2440,212,1,78,2433),(2440,212,1,78,2437),(2440,212,1,80,2435),(2440,212,1,80,2439),(2440,212,1,81,2432),(2440,212,1,81,2436),(2487,212,1,77,2480),(2487,212,1,77,2484),(2487,212,1,78,2481),(2487,212,1,78,2485),(2487,212,1,79,2482),(2487,212,1,79,2486),(2487,212,1,80,2479),(2487,212,1,80,2483),(2507,212,1,78,2502),(2507,212,1,78,2505),(2507,212,1,79,2503),(2507,212,1,79,2506),(2507,212,1,80,2501),(2507,212,1,80,2504),(2517,212,1,78,2509),(2517,212,1,78,2512),(2517,212,1,78,2515),(2517,212,1,79,2510),(2517,212,1,79,2513),(2517,212,1,79,2516),(2517,212,1,80,2508),(2517,212,1,80,2511),(2517,212,1,80,2514),(2524,212,1,78,2519),(2524,212,1,78,2522),(2524,212,1,79,2520),(2524,212,1,79,2523),(2524,212,1,80,2518),(2524,212,1,80,2521),(2542,212,1,77,2534),(2542,212,1,77,2538),(2542,212,1,78,2536),(2542,212,1,78,2540),(2542,212,1,79,2537),(2542,212,1,79,2541),(2542,212,1,80,2535),(2542,212,1,80,2539);
/*!40000 ALTER TABLE `catalog_product_index_eav` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_eav_decimal`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_eav_decimal` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` decimal(12,4) NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity Id for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav_decimal`
--

LOCK TABLES `catalog_product_index_eav_decimal` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_eav_decimal_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_decimal_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_eav_decimal_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` decimal(12,4) NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity Id for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Indexer Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav_decimal_idx`
--

LOCK TABLES `catalog_product_index_eav_decimal_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_eav_decimal_replica`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_decimal_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_eav_decimal_replica` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` decimal(12,4) NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity Id for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav_decimal_replica`
--

LOCK TABLES `catalog_product_index_eav_decimal_replica` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_eav_decimal_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_decimal_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_eav_decimal_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` decimal(12,4) NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity Id for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Indexer Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav_decimal_tmp`
--

LOCK TABLES `catalog_product_index_eav_decimal_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_eav_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_eav_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` int(10) unsigned NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity Id for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_IDX_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_IDX_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_IDX_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Indexer Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav_idx`
--

LOCK TABLES `catalog_product_index_eav_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_eav_replica`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_eav_replica` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` int(10) unsigned NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity Id for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav_replica`
--

LOCK TABLES `catalog_product_index_eav_replica` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav_replica` DISABLE KEYS */;
INSERT INTO `catalog_product_index_eav_replica` VALUES (1,93,1,73,1020),(1,93,1,73,1021),(1,93,1,73,1022),(1,93,1,74,1014),(1,93,1,74,1015),(1,93,1,74,1016),(1,93,1,76,1017),(1,93,1,76,1018),(1,93,1,76,1019),(2,93,1,75,942),(2,93,1,75,943),(2,93,1,75,944),(2,93,1,76,945),(2,93,1,76,946),(2,93,1,76,947),(3,93,1,71,579),(3,93,1,71,580),(3,93,1,71,581),(3,93,1,71,582),(3,93,1,71,583),(3,93,1,71,584),(3,93,1,71,585),(3,93,1,72,586),(3,93,1,72,587),(3,93,1,72,588),(3,93,1,72,589),(3,93,1,72,590),(3,93,1,72,591),(3,93,1,72,592),(3,93,1,73,593),(3,93,1,73,594),(3,93,1,73,595),(3,93,1,73,596),(3,93,1,73,597),(3,93,1,73,598),(3,93,1,73,599),(3,93,1,75,600),(3,93,1,75,601),(3,93,1,75,602),(3,93,1,75,603),(3,93,1,75,604),(3,93,1,75,605),(3,93,1,75,606),(3,93,1,76,607),(3,93,1,76,608),(3,93,1,76,609),(3,93,1,76,610),(3,93,1,76,611),(3,93,1,76,612),(3,93,1,76,613),(4,93,1,73,1005),(4,93,1,73,1007),(4,93,1,73,1009),(4,93,1,73,1011),(4,93,1,73,1013),(4,93,1,75,1004),(4,93,1,75,1006),(4,93,1,75,1008),(4,93,1,75,1010),(4,93,1,75,1012),(5,93,1,71,699),(5,93,1,71,704),(5,93,1,71,709),(5,93,1,72,700),(5,93,1,72,705),(5,93,1,72,710),(5,93,1,74,701),(5,93,1,74,706),(5,93,1,74,711),(5,93,1,75,702),(5,93,1,75,707),(5,93,1,75,712),(5,93,1,76,703),(5,93,1,76,708),(5,93,1,76,713),(6,93,1,76,958),(6,93,1,76,959),(7,93,1,72,157),(7,93,1,72,158),(7,93,1,72,159),(7,93,1,76,1145),(7,93,1,76,1146),(7,93,1,76,1147),(8,93,1,72,734),(8,93,1,72,735),(8,93,1,72,736),(8,93,1,73,737),(8,93,1,73,738),(8,93,1,73,739),(8,93,1,74,740),(8,93,1,74,741),(8,93,1,74,742),(8,93,1,75,743),(8,93,1,75,744),(8,93,1,75,745),(8,93,1,76,746),(8,93,1,76,747),(8,93,1,76,748),(9,93,1,74,163),(9,93,1,74,164),(9,93,1,74,165),(9,93,1,76,1290),(9,93,1,76,1291),(9,93,1,76,1292),(10,93,1,71,1148),(10,93,1,71,1149),(10,93,1,71,1150),(10,93,1,71,1151),(10,93,1,73,166),(10,93,1,73,167),(10,93,1,73,168),(10,93,1,73,169),(11,93,1,73,170),(11,93,1,73,171),(11,93,1,74,1162),(11,93,1,74,1163),(12,93,1,73,172),(12,93,1,73,173),(12,93,1,73,174),(12,93,1,76,1184),(12,93,1,76,1185),(12,93,1,76,1186),(15,93,1,71,674),(15,93,1,71,679),(15,93,1,71,684),(15,93,1,71,689),(15,93,1,71,694),(15,93,1,72,675),(15,93,1,72,680),(15,93,1,72,685),(15,93,1,72,690),(15,93,1,72,695),(15,93,1,73,676),(15,93,1,73,681),(15,93,1,73,686),(15,93,1,73,691),(15,93,1,73,696),(15,93,1,74,677),(15,93,1,74,682),(15,93,1,74,687),(15,93,1,74,692),(15,93,1,74,697),(15,93,1,76,678),(15,93,1,76,683),(15,93,1,76,688),(15,93,1,76,693),(15,93,1,76,698),(16,93,1,71,986),(16,93,1,71,987),(16,93,1,71,988),(16,93,1,71,989),(16,93,1,71,990),(16,93,1,71,991),(16,93,1,73,998),(16,93,1,73,999),(16,93,1,73,1000),(16,93,1,73,1001),(16,93,1,73,1002),(16,93,1,73,1003),(16,93,1,74,992),(16,93,1,74,993),(16,93,1,74,994),(16,93,1,74,995),(16,93,1,74,996),(16,93,1,74,997),(17,93,1,74,186),(17,93,1,74,187),(17,93,1,74,188),(17,93,1,74,189),(17,93,1,75,1156),(17,93,1,75,1157),(17,93,1,75,1158),(17,93,1,75,1159),(18,93,1,73,190),(18,93,1,73,191),(18,93,1,73,192),(18,93,1,73,193),(18,93,1,74,1238),(18,93,1,74,1239),(18,93,1,74,1240),(18,93,1,74,1241),(19,93,1,74,194),(19,93,1,74,195),(19,93,1,74,196),(19,93,1,76,1219),(19,93,1,76,1220),(19,93,1,76,1221),(20,93,1,72,549),(20,93,1,72,550),(20,93,1,72,551),(20,93,1,72,552),(20,93,1,72,553),(20,93,1,72,554),(20,93,1,73,555),(20,93,1,73,556),(20,93,1,73,557),(20,93,1,73,558),(20,93,1,73,559),(20,93,1,73,560),(20,93,1,74,561),(20,93,1,74,562),(20,93,1,74,563),(20,93,1,74,564),(20,93,1,74,565),(20,93,1,74,566),(20,93,1,75,567),(20,93,1,75,568),(20,93,1,75,569),(20,93,1,75,570),(20,93,1,75,571),(20,93,1,75,572),(20,93,1,76,573),(20,93,1,76,574),(20,93,1,76,575),(20,93,1,76,576),(20,93,1,76,577),(20,93,1,76,578),(22,93,1,74,1280),(22,93,1,74,1281),(22,93,1,74,1282),(22,93,1,74,1283),(22,93,1,75,203),(22,93,1,75,204),(22,93,1,75,205),(22,93,1,75,206),(24,93,1,73,207),(24,93,1,73,208),(24,93,1,73,209),(24,93,1,76,1305),(24,93,1,76,1306),(24,93,1,76,1307),(25,93,1,74,979),(25,93,1,74,980),(25,93,1,74,981),(25,93,1,74,982),(25,93,1,74,983),(25,93,1,74,984),(25,93,1,74,985),(25,93,1,76,972),(25,93,1,76,973),(25,93,1,76,974),(25,93,1,76,975),(25,93,1,76,976),(25,93,1,76,977),(25,93,1,76,978),(26,93,1,72,217),(26,93,1,72,218),(26,93,1,72,219),(26,93,1,72,220),(26,93,1,72,221),(26,93,1,75,1175),(26,93,1,75,1176),(26,93,1,75,1177),(26,93,1,75,1178),(26,93,1,75,1179),(29,93,1,71,644),(29,93,1,71,645),(29,93,1,71,646),(29,93,1,71,647),(29,93,1,71,648),(29,93,1,71,649),(29,93,1,72,650),(29,93,1,72,651),(29,93,1,72,652),(29,93,1,72,653),(29,93,1,72,654),(29,93,1,72,655),(29,93,1,73,656),(29,93,1,73,657),(29,93,1,73,658),(29,93,1,73,659),(29,93,1,73,660),(29,93,1,73,661),(29,93,1,75,662),(29,93,1,75,663),(29,93,1,75,664),(29,93,1,75,665),(29,93,1,75,666),(29,93,1,75,667),(29,93,1,76,668),(29,93,1,76,669),(29,93,1,76,670),(29,93,1,76,671),(29,93,1,76,672),(29,93,1,76,673),(30,93,1,75,1293),(30,93,1,75,1294),(30,93,1,75,1295),(30,93,1,76,228),(30,93,1,76,229),(30,93,1,76,230),(31,93,1,71,231),(31,93,1,71,232),(31,93,1,73,1312),(31,93,1,73,1313),(32,93,1,73,233),(32,93,1,73,234),(32,93,1,76,1327),(32,93,1,76,1328),(33,93,1,75,235),(33,93,1,75,236),(33,93,1,75,237),(33,93,1,75,238),(33,93,1,76,1141),(33,93,1,76,1142),(33,93,1,76,1143),(33,93,1,76,1144),(34,93,1,71,844),(34,93,1,71,845),(34,93,1,71,846),(34,93,1,71,847),(34,93,1,72,848),(34,93,1,72,849),(34,93,1,72,850),(34,93,1,72,851),(34,93,1,74,852),(34,93,1,74,853),(34,93,1,74,854),(34,93,1,74,855),(34,93,1,75,856),(34,93,1,75,857),(34,93,1,75,858),(34,93,1,75,859),(34,93,1,76,860),(34,93,1,76,861),(34,93,1,76,862),(34,93,1,76,863),(35,93,1,72,614),(35,93,1,72,619),(35,93,1,72,624),(35,93,1,72,629),(35,93,1,72,634),(35,93,1,72,639),(35,93,1,73,615),(35,93,1,73,620),(35,93,1,73,625),(35,93,1,73,630),(35,93,1,73,635),(35,93,1,73,640),(35,93,1,74,616),(35,93,1,74,621),(35,93,1,74,626),(35,93,1,74,631),(35,93,1,74,636),(35,93,1,74,641),(35,93,1,75,617),(35,93,1,75,622),(35,93,1,75,627),(35,93,1,75,632),(35,93,1,75,637),(35,93,1,75,642),(35,93,1,76,618),(35,93,1,76,623),(35,93,1,76,628),(35,93,1,76,633),(35,93,1,76,638),(35,93,1,76,643),(36,93,1,71,879),(36,93,1,71,880),(36,93,1,71,881),(36,93,1,71,882),(36,93,1,71,883),(36,93,1,72,884),(36,93,1,72,885),(36,93,1,72,886),(36,93,1,72,887),(36,93,1,72,888),(36,93,1,74,889),(36,93,1,74,890),(36,93,1,74,891),(36,93,1,74,892),(36,93,1,74,893),(36,93,1,75,894),(36,93,1,75,895),(36,93,1,75,896),(36,93,1,75,897),(36,93,1,75,898),(36,93,1,76,899),(36,93,1,76,900),(36,93,1,76,901),(36,93,1,76,902),(36,93,1,76,903),(38,93,1,71,864),(38,93,1,71,865),(38,93,1,71,866),(38,93,1,72,867),(38,93,1,72,868),(38,93,1,72,869),(38,93,1,73,870),(38,93,1,73,871),(38,93,1,73,872),(38,93,1,75,873),(38,93,1,75,874),(38,93,1,75,875),(38,93,1,76,876),(38,93,1,76,877),(38,93,1,76,878),(41,93,1,72,257),(41,93,1,72,258),(41,93,1,72,259),(41,93,1,72,260),(41,93,1,75,1234),(41,93,1,75,1235),(41,93,1,75,1236),(41,93,1,75,1237),(42,93,1,71,804),(42,93,1,71,805),(42,93,1,71,806),(42,93,1,71,807),(42,93,1,72,808),(42,93,1,72,809),(42,93,1,72,810),(42,93,1,72,811),(42,93,1,74,812),(42,93,1,74,813),(42,93,1,74,814),(42,93,1,74,815),(42,93,1,75,816),(42,93,1,75,817),(42,93,1,75,818),(42,93,1,75,819),(42,93,1,76,820),(42,93,1,76,821),(42,93,1,76,822),(42,93,1,76,823),(43,93,1,71,953),(43,93,1,71,954),(43,93,1,71,955),(43,93,1,71,956),(43,93,1,71,957),(43,93,1,73,265),(43,93,1,73,266),(43,93,1,73,267),(43,93,1,73,268),(43,93,1,73,269),(43,93,1,75,948),(43,93,1,75,949),(43,93,1,75,950),(43,93,1,75,951),(43,93,1,75,952),(44,93,1,75,270),(44,93,1,75,271),(45,93,1,74,1242),(45,93,1,74,1243),(45,93,1,74,1244),(45,93,1,74,1245),(45,93,1,74,1246),(45,93,1,75,272),(45,93,1,75,273),(45,93,1,75,274),(45,93,1,75,275),(45,93,1,75,276),(46,93,1,71,714),(46,93,1,71,715),(46,93,1,71,716),(46,93,1,71,717),(46,93,1,72,718),(46,93,1,72,719),(46,93,1,72,720),(46,93,1,72,721),(46,93,1,73,722),(46,93,1,73,723),(46,93,1,73,724),(46,93,1,73,725),(46,93,1,75,726),(46,93,1,75,727),(46,93,1,75,728),(46,93,1,75,729),(46,93,1,76,730),(46,93,1,76,731),(46,93,1,76,732),(46,93,1,76,733),(47,93,1,71,749),(47,93,1,71,750),(47,93,1,71,751),(47,93,1,71,752),(47,93,1,72,753),(47,93,1,72,754),(47,93,1,72,755),(47,93,1,72,756),(47,93,1,74,757),(47,93,1,74,758),(47,93,1,74,759),(47,93,1,74,760),(47,93,1,75,761),(47,93,1,75,762),(47,93,1,75,763),(47,93,1,75,764),(47,93,1,76,765),(47,93,1,76,766),(47,93,1,76,767),(47,93,1,76,768),(48,93,1,73,285),(48,93,1,73,286),(48,93,1,76,1315),(48,93,1,76,1316),(49,93,1,72,789),(49,93,1,72,790),(49,93,1,72,791),(49,93,1,73,792),(49,93,1,73,793),(49,93,1,73,794),(49,93,1,74,795),(49,93,1,74,796),(49,93,1,74,797),(49,93,1,75,798),(49,93,1,75,799),(49,93,1,75,800),(49,93,1,76,801),(49,93,1,76,802),(49,93,1,76,803),(50,93,1,71,290),(50,93,1,71,291),(50,93,1,71,292),(50,93,1,75,1228),(50,93,1,75,1229),(50,93,1,75,1230),(51,93,1,71,130),(51,93,1,71,131),(51,93,1,74,1133),(51,93,1,74,1134),(53,93,1,72,769),(53,93,1,72,770),(53,93,1,72,771),(53,93,1,72,772),(53,93,1,73,773),(53,93,1,73,774),(53,93,1,73,775),(53,93,1,73,776),(53,93,1,74,777),(53,93,1,74,778),(53,93,1,74,779),(53,93,1,74,780),(53,93,1,75,781),(53,93,1,75,782),(53,93,1,75,783),(53,93,1,75,784),(53,93,1,76,785),(53,93,1,76,786),(53,93,1,76,787),(53,93,1,76,788),(54,93,1,73,1222),(54,93,1,73,1223),(54,93,1,73,1224),(54,93,1,73,1225),(54,93,1,73,1226),(54,93,1,73,1227),(54,93,1,76,300),(54,93,1,76,301),(54,93,1,76,302),(54,93,1,76,303),(54,93,1,76,304),(54,93,1,76,305),(55,93,1,75,1032),(55,93,1,75,1033),(55,93,1,75,1034),(55,93,1,76,1029),(55,93,1,76,1030),(55,93,1,76,1031),(56,93,1,72,309),(56,93,1,72,310),(56,93,1,72,311),(56,93,1,75,1284),(56,93,1,75,1285),(56,93,1,75,1286),(57,93,1,73,312),(57,93,1,73,313),(57,93,1,73,314),(57,93,1,73,315),(57,93,1,74,1257),(57,93,1,74,1258),(57,93,1,74,1259),(57,93,1,74,1260),(58,93,1,73,316),(58,93,1,73,317),(58,93,1,75,1309),(58,93,1,75,1310),(59,93,1,72,318),(59,93,1,72,319),(59,93,1,72,320),(59,93,1,72,321),(59,93,1,73,1187),(59,93,1,73,1188),(59,93,1,73,1189),(59,93,1,73,1190),(60,93,1,74,322),(60,93,1,74,323),(60,93,1,74,324),(60,93,1,74,325),(60,93,1,74,326),(60,93,1,74,327),(60,93,1,76,1251),(60,93,1,76,1252),(60,93,1,76,1253),(60,93,1,76,1254),(60,93,1,76,1255),(60,93,1,76,1256),(61,93,1,73,328),(61,93,1,73,329),(61,93,1,76,1329),(61,93,1,76,1330),(63,93,1,71,1053),(63,93,1,71,1054),(63,93,1,71,1055),(63,93,1,71,1056),(63,93,1,74,1049),(63,93,1,74,1050),(63,93,1,74,1051),(63,93,1,74,1052),(64,93,1,72,334),(64,93,1,72,335),(64,93,1,72,336),(64,93,1,72,337),(64,93,1,75,1180),(64,93,1,75,1181),(64,93,1,75,1182),(64,93,1,75,1183),(65,93,1,72,338),(65,93,1,72,339),(65,93,1,72,340),(65,93,1,76,1322),(65,93,1,76,1323),(65,93,1,76,1324),(66,93,1,73,1083),(66,93,1,73,1084),(66,93,1,73,1085),(66,93,1,73,1086),(66,93,1,73,1087),(66,93,1,75,341),(66,93,1,75,342),(66,93,1,75,343),(66,93,1,75,344),(66,93,1,75,345),(68,93,1,73,1039),(68,93,1,73,1040),(68,93,1,73,1041),(68,93,1,73,1042),(68,93,1,74,1035),(68,93,1,74,1036),(68,93,1,74,1037),(68,93,1,74,1038),(69,93,1,71,350),(69,93,1,71,351),(69,93,1,71,352),(69,93,1,71,353),(69,93,1,75,1247),(69,93,1,75,1248),(69,93,1,75,1249),(69,93,1,75,1250),(70,93,1,72,354),(70,93,1,72,355),(70,93,1,72,356),(70,93,1,72,357),(70,93,1,73,1152),(70,93,1,73,1153),(70,93,1,73,1154),(70,93,1,73,1155),(71,93,1,71,358),(71,93,1,71,359),(71,93,1,71,360),(71,93,1,73,1135),(71,93,1,73,1136),(71,93,1,73,1137),(71,93,1,75,1130),(71,93,1,75,1131),(71,93,1,75,1132),(72,93,1,72,364),(72,93,1,72,365),(72,93,1,72,366),(72,93,1,72,367),(72,93,1,75,1167),(72,93,1,75,1168),(72,93,1,75,1169),(72,93,1,75,1170),(73,93,1,71,368),(73,93,1,71,369),(73,93,1,71,370),(73,93,1,71,371),(73,93,1,72,372),(73,93,1,72,373),(73,93,1,72,374),(73,93,1,72,375),(74,93,1,75,1325),(74,93,1,75,1326),(74,93,1,76,378),(74,93,1,76,379),(75,93,1,71,380),(75,93,1,71,381),(75,93,1,71,382),(75,93,1,71,383),(75,93,1,71,384),(75,93,1,75,1214),(75,93,1,75,1215),(75,93,1,75,1216),(75,93,1,75,1217),(75,93,1,75,1218),(76,93,1,73,1127),(76,93,1,73,1128),(76,93,1,73,1129),(76,93,1,74,385),(76,93,1,74,386),(76,93,1,74,387),(77,93,1,71,388),(77,93,1,71,389),(77,93,1,71,390),(77,93,1,74,1287),(77,93,1,74,1288),(77,93,1,74,1289),(78,93,1,71,1024),(78,93,1,71,1026),(78,93,1,71,1028),(78,93,1,74,1023),(78,93,1,74,1025),(78,93,1,74,1027),(79,93,1,73,1057),(79,93,1,73,1058),(79,93,1,73,1059),(79,93,1,74,1060),(79,93,1,74,1061),(79,93,1,74,1062),(79,93,1,75,1101),(79,93,1,75,1102),(79,93,1,75,1103),(80,93,1,72,1171),(80,93,1,72,1172),(80,93,1,72,1173),(80,93,1,72,1174),(80,93,1,76,397),(80,93,1,76,398),(80,93,1,76,399),(80,93,1,76,400),(81,93,1,71,404),(81,93,1,71,405),(81,93,1,71,406),(81,93,1,72,401),(81,93,1,72,402),(81,93,1,72,403),(82,93,1,71,407),(82,93,1,71,408),(82,93,1,71,409),(82,93,1,71,410),(82,93,1,71,411),(82,93,1,75,1191),(82,93,1,75,1192),(82,93,1,75,1193),(82,93,1,75,1194),(82,93,1,75,1195),(83,93,1,72,1091),(83,93,1,72,1092),(83,93,1,72,1093),(83,93,1,72,1094),(83,93,1,74,1075),(83,93,1,74,1076),(83,93,1,74,1077),(83,93,1,74,1078),(83,93,1,75,1079),(83,93,1,75,1080),(83,93,1,75,1081),(83,93,1,75,1082),(84,93,1,72,416),(84,93,1,72,417),(84,93,1,72,418),(84,93,1,72,419),(84,93,1,72,420),(84,93,1,74,421),(84,93,1,74,422),(84,93,1,74,423),(84,93,1,74,424),(84,93,1,74,425),(84,93,1,75,1261),(84,93,1,75,1262),(84,93,1,75,1263),(84,93,1,75,1264),(84,93,1,75,1265),(85,93,1,73,1043),(85,93,1,73,1044),(85,93,1,73,1045),(85,93,1,74,1046),(85,93,1,74,1047),(85,93,1,74,1048),(86,93,1,75,1272),(86,93,1,75,1274),(86,93,1,75,1276),(86,93,1,75,1278),(86,93,1,76,1273),(86,93,1,76,1275),(86,93,1,76,1277),(86,93,1,76,1279),(87,93,1,71,437),(87,93,1,71,438),(87,93,1,71,439),(87,93,1,74,1104),(87,93,1,74,1105),(87,93,1,74,1106),(88,93,1,74,1088),(88,93,1,74,1089),(88,93,1,74,1090),(88,93,1,75,440),(88,93,1,75,441),(88,93,1,75,442),(89,93,1,73,1266),(89,93,1,73,1267),(89,93,1,73,1268),(89,93,1,73,1269),(89,93,1,73,1270),(89,93,1,73,1271),(89,93,1,74,449),(89,93,1,74,450),(89,93,1,74,451),(89,93,1,74,452),(89,93,1,74,453),(89,93,1,74,454),(91,93,1,71,455),(91,93,1,71,456),(91,93,1,71,457),(91,93,1,76,1118),(91,93,1,76,1119),(91,93,1,76,1120),(92,93,1,72,1098),(92,93,1,72,1099),(92,93,1,72,1100),(92,93,1,73,1066),(92,93,1,73,1067),(92,93,1,73,1068),(92,93,1,75,1063),(92,93,1,75,1064),(92,93,1,75,1065),(93,93,1,72,461),(93,93,1,72,462),(93,93,1,72,463),(93,93,1,72,464),(93,93,1,75,1114),(93,93,1,75,1115),(93,93,1,75,1116),(93,93,1,75,1117),(95,93,1,72,465),(95,93,1,72,466),(95,93,1,72,467),(95,93,1,76,1124),(95,93,1,76,1125),(95,93,1,76,1126),(97,93,1,75,939),(97,93,1,75,940),(97,93,1,75,941),(98,93,1,71,471),(98,93,1,71,472),(98,93,1,71,473),(98,93,1,71,474),(98,93,1,72,1110),(98,93,1,72,1111),(98,93,1,72,1112),(98,93,1,72,1113),(99,93,1,73,930),(99,93,1,73,931),(99,93,1,73,932),(100,93,1,72,478),(100,93,1,72,479),(100,93,1,72,480),(100,93,1,75,1121),(100,93,1,75,1122),(100,93,1,75,1123),(101,93,1,72,824),(101,93,1,72,825),(101,93,1,72,826),(101,93,1,72,827),(101,93,1,73,828),(101,93,1,73,829),(101,93,1,73,830),(101,93,1,73,831),(101,93,1,74,832),(101,93,1,74,833),(101,93,1,74,834),(101,93,1,74,835),(101,93,1,75,836),(101,93,1,75,837),(101,93,1,75,838),(101,93,1,75,839),(101,93,1,76,840),(101,93,1,76,841),(101,93,1,76,842),(101,93,1,76,843),(102,93,1,72,1095),(102,93,1,72,1096),(102,93,1,72,1097),(102,93,1,73,1069),(102,93,1,73,1070),(102,93,1,73,1071),(102,93,1,76,1072),(102,93,1,76,1073),(102,93,1,76,1074),(103,93,1,71,488),(103,93,1,71,489),(103,93,1,71,490),(103,93,1,75,1107),(103,93,1,75,1108),(103,93,1,75,1109),(104,93,1,71,904),(104,93,1,71,905),(104,93,1,71,906),(104,93,1,71,907),(104,93,1,73,908),(104,93,1,73,909),(104,93,1,73,910),(104,93,1,73,911),(104,93,1,74,912),(104,93,1,74,913),(104,93,1,74,914),(104,93,1,74,915),(105,93,1,71,495),(105,93,1,71,496),(105,93,1,71,497),(105,93,1,76,1211),(105,93,1,76,1212),(105,93,1,76,1213),(106,93,1,71,498),(106,93,1,71,499),(106,93,1,71,500),(106,93,1,74,1202),(106,93,1,74,1203),(106,93,1,74,1204),(107,93,1,71,504),(107,93,1,71,505),(107,93,1,71,506),(107,93,1,72,507),(107,93,1,72,508),(107,93,1,72,509),(108,93,1,71,501),(108,93,1,71,502),(108,93,1,71,503),(108,93,1,73,1138),(108,93,1,73,1139),(108,93,1,73,1140),(109,93,1,71,510),(109,93,1,71,511),(109,93,1,71,512),(109,93,1,74,1299),(109,93,1,74,1300),(109,93,1,74,1301),(110,93,1,71,1296),(110,93,1,71,1297),(110,93,1,71,1298),(110,93,1,74,513),(110,93,1,74,514),(110,93,1,74,515),(111,93,1,71,516),(111,93,1,75,1331),(112,93,1,75,1302),(112,93,1,75,1303),(112,93,1,75,1304),(112,93,1,76,517),(112,93,1,76,518),(112,93,1,76,519),(113,93,1,71,520),(113,93,1,71,521),(113,93,1,71,522),(113,93,1,73,1208),(113,93,1,73,1209),(113,93,1,73,1210),(114,93,1,71,523),(114,93,1,74,1308),(115,93,1,71,524),(115,93,1,71,525),(115,93,1,71,526),(115,93,1,76,1196),(115,93,1,76,1197),(115,93,1,76,1198),(116,93,1,71,1332),(116,93,1,75,527),(117,93,1,74,528),(117,93,1,74,529),(117,93,1,74,530),(117,93,1,75,1205),(117,93,1,75,1206),(117,93,1,75,1207),(118,93,1,74,531),(118,93,1,75,1321),(119,93,1,71,1231),(119,93,1,71,1232),(119,93,1,71,1233),(119,93,1,73,532),(119,93,1,73,533),(119,93,1,73,534),(120,93,1,72,535),(120,93,1,72,536),(120,93,1,72,537),(120,93,1,76,1164),(120,93,1,76,1165),(120,93,1,76,1166),(121,93,1,75,541),(121,93,1,76,1320),(122,93,1,74,538),(122,93,1,74,539),(122,93,1,74,540),(122,93,1,76,1199),(122,93,1,76,1200),(122,93,1,76,1201),(123,93,1,71,1160),(123,93,1,71,1161),(123,93,1,74,542),(123,93,1,74,543),(124,93,1,71,544),(124,93,1,73,1319),(125,93,1,71,545),(125,93,1,74,1318),(126,93,1,74,546),(126,93,1,76,1317),(127,93,1,71,547),(127,93,1,74,1314),(128,93,1,75,548),(128,93,1,76,1311),(523,93,1,71,523),(545,93,1,71,545),(1,99,1,1,1014),(1,99,1,1,1015),(1,99,1,1,1016),(1,99,1,1,1017),(1,99,1,1,1018),(1,99,1,1,1019),(1,99,1,1,1020),(1,99,1,1,1021),(1,99,1,1,1022),(1,99,1,4,1),(2,99,1,1,942),(2,99,1,1,943),(2,99,1,1,944),(2,99,1,1,945),(2,99,1,1,946),(2,99,1,1,947),(2,99,1,4,2),(3,99,1,1,579),(3,99,1,1,580),(3,99,1,1,581),(3,99,1,1,582),(3,99,1,1,583),(3,99,1,1,584),(3,99,1,1,585),(3,99,1,1,586),(3,99,1,1,587),(3,99,1,1,588),(3,99,1,1,589),(3,99,1,1,590),(3,99,1,1,591),(3,99,1,1,592),(3,99,1,1,593),(3,99,1,1,594),(3,99,1,1,595),(3,99,1,1,596),(3,99,1,1,597),(3,99,1,1,598),(3,99,1,1,599),(3,99,1,1,600),(3,99,1,1,601),(3,99,1,1,602),(3,99,1,1,603),(3,99,1,1,604),(3,99,1,1,605),(3,99,1,1,606),(3,99,1,1,607),(3,99,1,1,608),(3,99,1,1,609),(3,99,1,1,610),(3,99,1,1,611),(3,99,1,1,612),(3,99,1,1,613),(3,99,1,4,3),(4,99,1,1,1004),(4,99,1,1,1005),(4,99,1,1,1006),(4,99,1,1,1007),(4,99,1,1,1008),(4,99,1,1,1009),(4,99,1,1,1010),(4,99,1,1,1011),(4,99,1,1,1012),(4,99,1,1,1013),(4,99,1,4,4),(5,99,1,1,699),(5,99,1,1,700),(5,99,1,1,701),(5,99,1,1,702),(5,99,1,1,703),(5,99,1,1,704),(5,99,1,1,705),(5,99,1,1,706),(5,99,1,1,707),(5,99,1,1,708),(5,99,1,1,709),(5,99,1,1,710),(5,99,1,1,711),(5,99,1,1,712),(5,99,1,1,713),(5,99,1,4,5),(6,99,1,1,958),(6,99,1,1,959),(6,99,1,4,6),(7,99,1,1,157),(7,99,1,1,158),(7,99,1,1,159),(7,99,1,1,1145),(7,99,1,1,1146),(7,99,1,1,1147),(7,99,1,4,7),(8,99,1,1,734),(8,99,1,1,735),(8,99,1,1,736),(8,99,1,1,737),(8,99,1,1,738),(8,99,1,1,739),(8,99,1,1,740),(8,99,1,1,741),(8,99,1,1,742),(8,99,1,1,743),(8,99,1,1,744),(8,99,1,1,745),(8,99,1,1,746),(8,99,1,1,747),(8,99,1,1,748),(8,99,1,4,8),(9,99,1,1,163),(9,99,1,1,164),(9,99,1,1,165),(9,99,1,1,1290),(9,99,1,1,1291),(9,99,1,1,1292),(9,99,1,4,9),(10,99,1,1,166),(10,99,1,1,167),(10,99,1,1,168),(10,99,1,1,169),(10,99,1,1,1148),(10,99,1,1,1149),(10,99,1,1,1150),(10,99,1,1,1151),(10,99,1,4,10),(11,99,1,1,170),(11,99,1,1,171),(11,99,1,1,1162),(11,99,1,1,1163),(11,99,1,4,11),(12,99,1,1,172),(12,99,1,1,173),(12,99,1,1,174),(12,99,1,1,1184),(12,99,1,1,1185),(12,99,1,1,1186),(12,99,1,4,12),(15,99,1,1,674),(15,99,1,1,675),(15,99,1,1,676),(15,99,1,1,677),(15,99,1,1,678),(15,99,1,1,679),(15,99,1,1,680),(15,99,1,1,681),(15,99,1,1,682),(15,99,1,1,683),(15,99,1,1,684),(15,99,1,1,685),(15,99,1,1,686),(15,99,1,1,687),(15,99,1,1,688),(15,99,1,1,689),(15,99,1,1,690),(15,99,1,1,691),(15,99,1,1,692),(15,99,1,1,693),(15,99,1,1,694),(15,99,1,1,695),(15,99,1,1,696),(15,99,1,1,697),(15,99,1,1,698),(15,99,1,4,15),(16,99,1,1,986),(16,99,1,1,987),(16,99,1,1,988),(16,99,1,1,989),(16,99,1,1,990),(16,99,1,1,991),(16,99,1,1,992),(16,99,1,1,993),(16,99,1,1,994),(16,99,1,1,995),(16,99,1,1,996),(16,99,1,1,997),(16,99,1,1,998),(16,99,1,1,999),(16,99,1,1,1000),(16,99,1,1,1001),(16,99,1,1,1002),(16,99,1,1,1003),(16,99,1,4,16),(17,99,1,1,186),(17,99,1,1,187),(17,99,1,1,188),(17,99,1,1,189),(17,99,1,1,1156),(17,99,1,1,1157),(17,99,1,1,1158),(17,99,1,1,1159),(17,99,1,4,17),(18,99,1,1,190),(18,99,1,1,191),(18,99,1,1,192),(18,99,1,1,193),(18,99,1,1,1238),(18,99,1,1,1239),(18,99,1,1,1240),(18,99,1,1,1241),(18,99,1,4,18),(19,99,1,1,194),(19,99,1,1,195),(19,99,1,1,196),(19,99,1,1,1219),(19,99,1,1,1220),(19,99,1,1,1221),(19,99,1,4,19),(20,99,1,1,549),(20,99,1,1,550),(20,99,1,1,551),(20,99,1,1,552),(20,99,1,1,553),(20,99,1,1,554),(20,99,1,1,555),(20,99,1,1,556),(20,99,1,1,557),(20,99,1,1,558),(20,99,1,1,559),(20,99,1,1,560),(20,99,1,1,561),(20,99,1,1,562),(20,99,1,1,563),(20,99,1,1,564),(20,99,1,1,565),(20,99,1,1,566),(20,99,1,1,567),(20,99,1,1,568),(20,99,1,1,569),(20,99,1,1,570),(20,99,1,1,571),(20,99,1,1,572),(20,99,1,1,573),(20,99,1,1,574),(20,99,1,1,575),(20,99,1,1,576),(20,99,1,1,577),(20,99,1,1,578),(20,99,1,4,20),(22,99,1,1,203),(22,99,1,1,204),(22,99,1,1,205),(22,99,1,1,206),(22,99,1,1,1280),(22,99,1,1,1281),(22,99,1,1,1282),(22,99,1,1,1283),(22,99,1,4,22),(24,99,1,1,207),(24,99,1,1,208),(24,99,1,1,209),(24,99,1,1,1305),(24,99,1,1,1306),(24,99,1,1,1307),(24,99,1,4,24),(25,99,1,1,972),(25,99,1,1,973),(25,99,1,1,974),(25,99,1,1,975),(25,99,1,1,976),(25,99,1,1,977),(25,99,1,1,978),(25,99,1,1,979),(25,99,1,1,980),(25,99,1,1,981),(25,99,1,1,982),(25,99,1,1,983),(25,99,1,1,984),(25,99,1,1,985),(25,99,1,4,25),(26,99,1,1,217),(26,99,1,1,218),(26,99,1,1,219),(26,99,1,1,220),(26,99,1,1,221),(26,99,1,1,1175),(26,99,1,1,1176),(26,99,1,1,1177),(26,99,1,1,1178),(26,99,1,1,1179),(26,99,1,4,26),(29,99,1,1,644),(29,99,1,1,645),(29,99,1,1,646),(29,99,1,1,647),(29,99,1,1,648),(29,99,1,1,649),(29,99,1,1,650),(29,99,1,1,651),(29,99,1,1,652),(29,99,1,1,653),(29,99,1,1,654),(29,99,1,1,655),(29,99,1,1,656),(29,99,1,1,657),(29,99,1,1,658),(29,99,1,1,659),(29,99,1,1,660),(29,99,1,1,661),(29,99,1,1,662),(29,99,1,1,663),(29,99,1,1,664),(29,99,1,1,665),(29,99,1,1,666),(29,99,1,1,667),(29,99,1,1,668),(29,99,1,1,669),(29,99,1,1,670),(29,99,1,1,671),(29,99,1,1,672),(29,99,1,1,673),(29,99,1,4,29),(30,99,1,1,228),(30,99,1,1,229),(30,99,1,1,230),(30,99,1,1,1293),(30,99,1,1,1294),(30,99,1,1,1295),(30,99,1,4,30),(31,99,1,1,231),(31,99,1,1,232),(31,99,1,1,1312),(31,99,1,1,1313),(31,99,1,4,31),(32,99,1,1,233),(32,99,1,1,234),(32,99,1,1,1327),(32,99,1,1,1328),(32,99,1,4,32),(33,99,1,1,235),(33,99,1,1,236),(33,99,1,1,237),(33,99,1,1,238),(33,99,1,1,1141),(33,99,1,1,1142),(33,99,1,1,1143),(33,99,1,1,1144),(33,99,1,4,33),(34,99,1,1,844),(34,99,1,1,845),(34,99,1,1,846),(34,99,1,1,847),(34,99,1,1,848),(34,99,1,1,849),(34,99,1,1,850),(34,99,1,1,851),(34,99,1,1,852),(34,99,1,1,853),(34,99,1,1,854),(34,99,1,1,855),(34,99,1,1,856),(34,99,1,1,857),(34,99,1,1,858),(34,99,1,1,859),(34,99,1,1,860),(34,99,1,1,861),(34,99,1,1,862),(34,99,1,1,863),(34,99,1,4,34),(35,99,1,1,614),(35,99,1,1,615),(35,99,1,1,616),(35,99,1,1,617),(35,99,1,1,618),(35,99,1,1,619),(35,99,1,1,620),(35,99,1,1,621),(35,99,1,1,622),(35,99,1,1,623),(35,99,1,1,624),(35,99,1,1,625),(35,99,1,1,626),(35,99,1,1,627),(35,99,1,1,628),(35,99,1,1,629),(35,99,1,1,630),(35,99,1,1,631),(35,99,1,1,632),(35,99,1,1,633),(35,99,1,1,634),(35,99,1,1,635),(35,99,1,1,636),(35,99,1,1,637),(35,99,1,1,638),(35,99,1,1,639),(35,99,1,1,640),(35,99,1,1,641),(35,99,1,1,642),(35,99,1,1,643),(35,99,1,4,35),(36,99,1,1,879),(36,99,1,1,880),(36,99,1,1,881),(36,99,1,1,882),(36,99,1,1,883),(36,99,1,1,884),(36,99,1,1,885),(36,99,1,1,886),(36,99,1,1,887),(36,99,1,1,888),(36,99,1,1,889),(36,99,1,1,890),(36,99,1,1,891),(36,99,1,1,892),(36,99,1,1,893),(36,99,1,1,894),(36,99,1,1,895),(36,99,1,1,896),(36,99,1,1,897),(36,99,1,1,898),(36,99,1,1,899),(36,99,1,1,900),(36,99,1,1,901),(36,99,1,1,902),(36,99,1,1,903),(36,99,1,4,36),(38,99,1,1,864),(38,99,1,1,865),(38,99,1,1,866),(38,99,1,1,867),(38,99,1,1,868),(38,99,1,1,869),(38,99,1,1,870),(38,99,1,1,871),(38,99,1,1,872),(38,99,1,1,873),(38,99,1,1,874),(38,99,1,1,875),(38,99,1,1,876),(38,99,1,1,877),(38,99,1,1,878),(38,99,1,4,38),(41,99,1,1,257),(41,99,1,1,258),(41,99,1,1,259),(41,99,1,1,260),(41,99,1,1,1234),(41,99,1,1,1235),(41,99,1,1,1236),(41,99,1,1,1237),(41,99,1,4,41),(42,99,1,1,804),(42,99,1,1,805),(42,99,1,1,806),(42,99,1,1,807),(42,99,1,1,808),(42,99,1,1,809),(42,99,1,1,810),(42,99,1,1,811),(42,99,1,1,812),(42,99,1,1,813),(42,99,1,1,814),(42,99,1,1,815),(42,99,1,1,816),(42,99,1,1,817),(42,99,1,1,818),(42,99,1,1,819),(42,99,1,1,820),(42,99,1,1,821),(42,99,1,1,822),(42,99,1,1,823),(42,99,1,4,42),(43,99,1,1,265),(43,99,1,1,266),(43,99,1,1,267),(43,99,1,1,268),(43,99,1,1,269),(43,99,1,1,948),(43,99,1,1,949),(43,99,1,1,950),(43,99,1,1,951),(43,99,1,1,952),(43,99,1,1,953),(43,99,1,1,954),(43,99,1,1,955),(43,99,1,1,956),(43,99,1,1,957),(43,99,1,4,43),(44,99,1,1,270),(44,99,1,1,271),(44,99,1,4,44),(45,99,1,1,272),(45,99,1,1,273),(45,99,1,1,274),(45,99,1,1,275),(45,99,1,1,276),(45,99,1,1,1242),(45,99,1,1,1243),(45,99,1,1,1244),(45,99,1,1,1245),(45,99,1,1,1246),(45,99,1,4,45),(46,99,1,1,714),(46,99,1,1,715),(46,99,1,1,716),(46,99,1,1,717),(46,99,1,1,718),(46,99,1,1,719),(46,99,1,1,720),(46,99,1,1,721),(46,99,1,1,722),(46,99,1,1,723),(46,99,1,1,724),(46,99,1,1,725),(46,99,1,1,726),(46,99,1,1,727),(46,99,1,1,728),(46,99,1,1,729),(46,99,1,1,730),(46,99,1,1,731),(46,99,1,1,732),(46,99,1,1,733),(46,99,1,4,46),(47,99,1,1,749),(47,99,1,1,750),(47,99,1,1,751),(47,99,1,1,752),(47,99,1,1,753),(47,99,1,1,754),(47,99,1,1,755),(47,99,1,1,756),(47,99,1,1,757),(47,99,1,1,758),(47,99,1,1,759),(47,99,1,1,760),(47,99,1,1,761),(47,99,1,1,762),(47,99,1,1,763),(47,99,1,1,764),(47,99,1,1,765),(47,99,1,1,766),(47,99,1,1,767),(47,99,1,1,768),(47,99,1,4,47),(48,99,1,1,285),(48,99,1,1,286),(48,99,1,1,1315),(48,99,1,1,1316),(48,99,1,4,48),(49,99,1,1,789),(49,99,1,1,790),(49,99,1,1,791),(49,99,1,1,792),(49,99,1,1,793),(49,99,1,1,794),(49,99,1,1,795),(49,99,1,1,796),(49,99,1,1,797),(49,99,1,1,798),(49,99,1,1,799),(49,99,1,1,800),(49,99,1,1,801),(49,99,1,1,802),(49,99,1,1,803),(49,99,1,4,49),(50,99,1,1,290),(50,99,1,1,291),(50,99,1,1,292),(50,99,1,1,1228),(50,99,1,1,1229),(50,99,1,1,1230),(50,99,1,4,50),(51,99,1,1,130),(51,99,1,1,131),(51,99,1,1,1133),(51,99,1,1,1134),(51,99,1,4,51),(53,99,1,1,769),(53,99,1,1,770),(53,99,1,1,771),(53,99,1,1,772),(53,99,1,1,773),(53,99,1,1,774),(53,99,1,1,775),(53,99,1,1,776),(53,99,1,1,777),(53,99,1,1,778),(53,99,1,1,779),(53,99,1,1,780),(53,99,1,1,781),(53,99,1,1,782),(53,99,1,1,783),(53,99,1,1,784),(53,99,1,1,785),(53,99,1,1,786),(53,99,1,1,787),(53,99,1,1,788),(53,99,1,4,53),(54,99,1,1,300),(54,99,1,1,301),(54,99,1,1,302),(54,99,1,1,303),(54,99,1,1,304),(54,99,1,1,305),(54,99,1,1,1222),(54,99,1,1,1223),(54,99,1,1,1224),(54,99,1,1,1225),(54,99,1,1,1226),(54,99,1,1,1227),(54,99,1,4,54),(55,99,1,1,1029),(55,99,1,1,1030),(55,99,1,1,1031),(55,99,1,1,1032),(55,99,1,1,1033),(55,99,1,1,1034),(55,99,1,4,55),(56,99,1,1,309),(56,99,1,1,310),(56,99,1,1,311),(56,99,1,1,1284),(56,99,1,1,1285),(56,99,1,1,1286),(56,99,1,4,56),(57,99,1,1,312),(57,99,1,1,313),(57,99,1,1,314),(57,99,1,1,315),(57,99,1,1,1257),(57,99,1,1,1258),(57,99,1,1,1259),(57,99,1,1,1260),(57,99,1,4,57),(58,99,1,1,316),(58,99,1,1,317),(58,99,1,1,1309),(58,99,1,1,1310),(58,99,1,4,58),(59,99,1,1,318),(59,99,1,1,319),(59,99,1,1,320),(59,99,1,1,321),(59,99,1,1,1187),(59,99,1,1,1188),(59,99,1,1,1189),(59,99,1,1,1190),(59,99,1,4,59),(60,99,1,1,322),(60,99,1,1,323),(60,99,1,1,324),(60,99,1,1,325),(60,99,1,1,326),(60,99,1,1,327),(60,99,1,1,1251),(60,99,1,1,1252),(60,99,1,1,1253),(60,99,1,1,1254),(60,99,1,1,1255),(60,99,1,1,1256),(60,99,1,4,60),(61,99,1,1,328),(61,99,1,1,329),(61,99,1,1,1329),(61,99,1,1,1330),(61,99,1,4,61),(63,99,1,1,1049),(63,99,1,1,1050),(63,99,1,1,1051),(63,99,1,1,1052),(63,99,1,1,1053),(63,99,1,1,1054),(63,99,1,1,1055),(63,99,1,1,1056),(63,99,1,4,63),(64,99,1,1,334),(64,99,1,1,335),(64,99,1,1,336),(64,99,1,1,337),(64,99,1,1,1180),(64,99,1,1,1181),(64,99,1,1,1182),(64,99,1,1,1183),(64,99,1,4,64),(65,99,1,1,338),(65,99,1,1,339),(65,99,1,1,340),(65,99,1,1,1322),(65,99,1,1,1323),(65,99,1,1,1324),(65,99,1,4,65),(66,99,1,1,341),(66,99,1,1,342),(66,99,1,1,343),(66,99,1,1,344),(66,99,1,1,345),(66,99,1,1,1083),(66,99,1,1,1084),(66,99,1,1,1085),(66,99,1,1,1086),(66,99,1,1,1087),(66,99,1,4,66),(68,99,1,1,1035),(68,99,1,1,1036),(68,99,1,1,1037),(68,99,1,1,1038),(68,99,1,1,1039),(68,99,1,1,1040),(68,99,1,1,1041),(68,99,1,1,1042),(68,99,1,4,68),(69,99,1,1,350),(69,99,1,1,351),(69,99,1,1,352),(69,99,1,1,353),(69,99,1,1,1247),(69,99,1,1,1248),(69,99,1,1,1249),(69,99,1,1,1250),(69,99,1,4,69),(70,99,1,1,354),(70,99,1,1,355),(70,99,1,1,356),(70,99,1,1,357),(70,99,1,1,1152),(70,99,1,1,1153),(70,99,1,1,1154),(70,99,1,1,1155),(70,99,1,4,70),(71,99,1,1,358),(71,99,1,1,359),(71,99,1,1,360),(71,99,1,1,1130),(71,99,1,1,1131),(71,99,1,1,1132),(71,99,1,1,1135),(71,99,1,1,1136),(71,99,1,1,1137),(71,99,1,4,71),(72,99,1,1,364),(72,99,1,1,365),(72,99,1,1,366),(72,99,1,1,367),(72,99,1,1,1167),(72,99,1,1,1168),(72,99,1,1,1169),(72,99,1,1,1170),(72,99,1,4,72),(73,99,1,1,368),(73,99,1,1,369),(73,99,1,1,370),(73,99,1,1,371),(73,99,1,1,372),(73,99,1,1,373),(73,99,1,1,374),(73,99,1,1,375),(73,99,1,4,73),(74,99,1,1,378),(74,99,1,1,379),(74,99,1,1,1325),(74,99,1,1,1326),(74,99,1,4,74),(75,99,1,1,380),(75,99,1,1,381),(75,99,1,1,382),(75,99,1,1,383),(75,99,1,1,384),(75,99,1,1,1214),(75,99,1,1,1215),(75,99,1,1,1216),(75,99,1,1,1217),(75,99,1,1,1218),(75,99,1,4,75),(76,99,1,1,385),(76,99,1,1,386),(76,99,1,1,387),(76,99,1,1,1127),(76,99,1,1,1128),(76,99,1,1,1129),(76,99,1,4,76),(77,99,1,1,388),(77,99,1,1,389),(77,99,1,1,390),(77,99,1,1,1287),(77,99,1,1,1288),(77,99,1,1,1289),(77,99,1,4,77),(78,99,1,1,1023),(78,99,1,1,1024),(78,99,1,1,1025),(78,99,1,1,1026),(78,99,1,1,1027),(78,99,1,1,1028),(78,99,1,4,78),(79,99,1,1,1057),(79,99,1,1,1058),(79,99,1,1,1059),(79,99,1,1,1060),(79,99,1,1,1061),(79,99,1,1,1062),(79,99,1,1,1101),(79,99,1,1,1102),(79,99,1,1,1103),(79,99,1,4,79),(80,99,1,1,397),(80,99,1,1,398),(80,99,1,1,399),(80,99,1,1,400),(80,99,1,1,1171),(80,99,1,1,1172),(80,99,1,1,1173),(80,99,1,1,1174),(80,99,1,4,80),(81,99,1,1,401),(81,99,1,1,402),(81,99,1,1,403),(81,99,1,1,404),(81,99,1,1,405),(81,99,1,1,406),(82,99,1,1,407),(82,99,1,1,408),(82,99,1,1,409),(82,99,1,1,410),(82,99,1,1,411),(82,99,1,1,1191),(82,99,1,1,1192),(82,99,1,1,1193),(82,99,1,1,1194),(82,99,1,1,1195),(82,99,1,4,82),(83,99,1,1,1075),(83,99,1,1,1076),(83,99,1,1,1077),(83,99,1,1,1078),(83,99,1,1,1079),(83,99,1,1,1080),(83,99,1,1,1081),(83,99,1,1,1082),(83,99,1,1,1091),(83,99,1,1,1092),(83,99,1,1,1093),(83,99,1,1,1094),(83,99,1,4,83),(84,99,1,1,416),(84,99,1,1,417),(84,99,1,1,418),(84,99,1,1,419),(84,99,1,1,420),(84,99,1,1,421),(84,99,1,1,422),(84,99,1,1,423),(84,99,1,1,424),(84,99,1,1,425),(84,99,1,1,1261),(84,99,1,1,1262),(84,99,1,1,1263),(84,99,1,1,1264),(84,99,1,1,1265),(84,99,1,4,84),(85,99,1,1,1043),(85,99,1,1,1044),(85,99,1,1,1045),(85,99,1,1,1046),(85,99,1,1,1047),(85,99,1,1,1048),(85,99,1,4,85),(86,99,1,1,1272),(86,99,1,1,1273),(86,99,1,1,1274),(86,99,1,1,1275),(86,99,1,1,1276),(86,99,1,1,1277),(86,99,1,1,1278),(86,99,1,1,1279),(86,99,1,4,86),(87,99,1,1,437),(87,99,1,1,438),(87,99,1,1,439),(87,99,1,1,1104),(87,99,1,1,1105),(87,99,1,1,1106),(87,99,1,4,87),(88,99,1,1,440),(88,99,1,1,441),(88,99,1,1,442),(88,99,1,1,1088),(88,99,1,1,1089),(88,99,1,1,1090),(88,99,1,4,88),(89,99,1,1,449),(89,99,1,1,450),(89,99,1,1,451),(89,99,1,1,452),(89,99,1,1,453),(89,99,1,1,454),(89,99,1,1,1266),(89,99,1,1,1267),(89,99,1,1,1268),(89,99,1,1,1269),(89,99,1,1,1270),(89,99,1,1,1271),(89,99,1,4,89),(91,99,1,1,455),(91,99,1,1,456),(91,99,1,1,457),(91,99,1,1,1118),(91,99,1,1,1119),(91,99,1,1,1120),(91,99,1,4,91),(92,99,1,1,1063),(92,99,1,1,1064),(92,99,1,1,1065),(92,99,1,1,1066),(92,99,1,1,1067),(92,99,1,1,1068),(92,99,1,1,1098),(92,99,1,1,1099),(92,99,1,1,1100),(92,99,1,4,92),(93,99,1,1,461),(93,99,1,1,462),(93,99,1,1,463),(93,99,1,1,464),(93,99,1,1,1114),(93,99,1,1,1115),(93,99,1,1,1116),(93,99,1,1,1117),(93,99,1,4,93),(95,99,1,1,465),(95,99,1,1,466),(95,99,1,1,467),(95,99,1,1,1124),(95,99,1,1,1125),(95,99,1,1,1126),(95,99,1,4,95),(97,99,1,1,939),(97,99,1,1,940),(97,99,1,1,941),(97,99,1,4,97),(98,99,1,1,471),(98,99,1,1,472),(98,99,1,1,473),(98,99,1,1,474),(98,99,1,1,1110),(98,99,1,1,1111),(98,99,1,1,1112),(98,99,1,1,1113),(98,99,1,4,98),(99,99,1,1,930),(99,99,1,1,931),(99,99,1,1,932),(99,99,1,4,99),(100,99,1,1,478),(100,99,1,1,479),(100,99,1,1,480),(100,99,1,1,1121),(100,99,1,1,1122),(100,99,1,1,1123),(100,99,1,4,100),(101,99,1,1,824),(101,99,1,1,825),(101,99,1,1,826),(101,99,1,1,827),(101,99,1,1,828),(101,99,1,1,829),(101,99,1,1,830),(101,99,1,1,831),(101,99,1,1,832),(101,99,1,1,833),(101,99,1,1,834),(101,99,1,1,835),(101,99,1,1,836),(101,99,1,1,837),(101,99,1,1,838),(101,99,1,1,839),(101,99,1,1,840),(101,99,1,1,841),(101,99,1,1,842),(101,99,1,1,843),(101,99,1,4,101),(102,99,1,1,1069),(102,99,1,1,1070),(102,99,1,1,1071),(102,99,1,1,1072),(102,99,1,1,1073),(102,99,1,1,1074),(102,99,1,1,1095),(102,99,1,1,1096),(102,99,1,1,1097),(102,99,1,4,102),(103,99,1,1,488),(103,99,1,1,489),(103,99,1,1,490),(103,99,1,1,1107),(103,99,1,1,1108),(103,99,1,1,1109),(103,99,1,4,103),(104,99,1,1,904),(104,99,1,1,905),(104,99,1,1,906),(104,99,1,1,907),(104,99,1,1,908),(104,99,1,1,909),(104,99,1,1,910),(104,99,1,1,911),(104,99,1,1,912),(104,99,1,1,913),(104,99,1,1,914),(104,99,1,1,915),(104,99,1,4,104),(105,99,1,1,495),(105,99,1,1,496),(105,99,1,1,497),(105,99,1,1,1211),(105,99,1,1,1212),(105,99,1,1,1213),(105,99,1,4,105),(106,99,1,1,498),(106,99,1,1,499),(106,99,1,1,500),(106,99,1,1,1202),(106,99,1,1,1203),(106,99,1,1,1204),(106,99,1,4,106),(107,99,1,1,504),(107,99,1,1,505),(107,99,1,1,506),(107,99,1,1,507),(107,99,1,1,508),(107,99,1,1,509),(107,99,1,4,107),(108,99,1,1,501),(108,99,1,1,502),(108,99,1,1,503),(108,99,1,1,1138),(108,99,1,1,1139),(108,99,1,1,1140),(108,99,1,4,108),(109,99,1,1,510),(109,99,1,1,511),(109,99,1,1,512),(109,99,1,1,1299),(109,99,1,1,1300),(109,99,1,1,1301),(109,99,1,4,109),(110,99,1,1,513),(110,99,1,1,514),(110,99,1,1,515),(110,99,1,1,1296),(110,99,1,1,1297),(110,99,1,1,1298),(110,99,1,4,110),(111,99,1,1,516),(111,99,1,1,1331),(111,99,1,4,111),(112,99,1,1,517),(112,99,1,1,518),(112,99,1,1,519),(112,99,1,1,1302),(112,99,1,1,1303),(112,99,1,1,1304),(112,99,1,4,112),(113,99,1,1,520),(113,99,1,1,521),(113,99,1,1,522),(113,99,1,1,1208),(113,99,1,1,1209),(113,99,1,1,1210),(113,99,1,4,113),(114,99,1,1,1308),(114,99,1,4,114),(114,99,1,4,523),(115,99,1,1,524),(115,99,1,1,525),(115,99,1,1,526),(115,99,1,1,1196),(115,99,1,1,1197),(115,99,1,1,1198),(115,99,1,4,115),(116,99,1,1,527),(116,99,1,1,1332),(116,99,1,4,116),(117,99,1,1,528),(117,99,1,1,529),(117,99,1,1,530),(117,99,1,1,1205),(117,99,1,1,1206),(117,99,1,1,1207),(117,99,1,4,117),(118,99,1,1,531),(118,99,1,1,1321),(118,99,1,4,118),(119,99,1,1,532),(119,99,1,1,533),(119,99,1,1,534),(119,99,1,1,1231),(119,99,1,1,1232),(119,99,1,1,1233),(119,99,1,4,119),(120,99,1,1,535),(120,99,1,1,536),(120,99,1,1,537),(120,99,1,1,1164),(120,99,1,1,1165),(120,99,1,1,1166),(120,99,1,4,120),(121,99,1,1,541),(121,99,1,1,1320),(121,99,1,4,121),(122,99,1,1,538),(122,99,1,1,539),(122,99,1,1,540),(122,99,1,1,1199),(122,99,1,1,1200),(122,99,1,1,1201),(122,99,1,4,122),(123,99,1,1,542),(123,99,1,1,543),(123,99,1,1,1160),(123,99,1,1,1161),(123,99,1,4,123),(124,99,1,1,544),(124,99,1,1,1319),(124,99,1,4,124),(125,99,1,1,1318),(125,99,1,4,125),(125,99,1,4,545),(126,99,1,1,546),(126,99,1,1,1317),(126,99,1,4,126),(127,99,1,1,547),(127,99,1,1,1314),(127,99,1,4,127),(128,99,1,1,548),(128,99,1,1,1311),(128,99,1,4,128),(523,99,1,4,523),(545,99,1,4,545),(1,208,1,60,1),(3,208,1,59,579),(3,208,1,59,586),(3,208,1,59,593),(3,208,1,59,600),(3,208,1,59,607),(3,208,1,62,581),(3,208,1,62,588),(3,208,1,62,595),(3,208,1,62,602),(3,208,1,62,609),(3,208,1,63,582),(3,208,1,63,589),(3,208,1,63,596),(3,208,1,63,603),(3,208,1,63,610),(3,208,1,64,583),(3,208,1,64,590),(3,208,1,64,597),(3,208,1,64,604),(3,208,1,64,611),(3,208,1,65,584),(3,208,1,65,591),(3,208,1,65,598),(3,208,1,65,605),(3,208,1,65,612),(3,208,1,67,585),(3,208,1,67,592),(3,208,1,67,599),(3,208,1,67,606),(3,208,1,67,613),(3,208,1,82,580),(3,208,1,82,587),(3,208,1,82,594),(3,208,1,82,601),(3,208,1,82,608),(4,208,1,61,1004),(4,208,1,61,1005),(4,208,1,62,1006),(4,208,1,62,1007),(4,208,1,63,1008),(4,208,1,63,1009),(4,208,1,64,1010),(4,208,1,64,1011),(4,208,1,65,1012),(4,208,1,65,1013),(5,208,1,62,699),(5,208,1,62,700),(5,208,1,62,701),(5,208,1,62,702),(5,208,1,62,703),(5,208,1,63,704),(5,208,1,63,705),(5,208,1,63,706),(5,208,1,63,707),(5,208,1,63,708),(5,208,1,64,709),(5,208,1,64,710),(5,208,1,64,711),(5,208,1,64,712),(5,208,1,64,713),(6,208,1,62,958),(6,208,1,63,959),(7,208,1,60,157),(7,208,1,60,158),(7,208,1,60,159),(7,208,1,60,1145),(7,208,1,60,1146),(7,208,1,60,1147),(8,208,1,64,734),(8,208,1,64,737),(8,208,1,64,740),(8,208,1,64,743),(8,208,1,64,746),(8,208,1,65,735),(8,208,1,65,738),(8,208,1,65,741),(8,208,1,65,744),(8,208,1,65,747),(8,208,1,66,736),(8,208,1,66,739),(8,208,1,66,742),(8,208,1,66,745),(8,208,1,66,748),(9,208,1,60,163),(9,208,1,60,164),(9,208,1,60,165),(10,208,1,60,166),(10,208,1,60,167),(10,208,1,60,168),(10,208,1,60,169),(11,208,1,60,170),(11,208,1,60,171),(12,208,1,60,172),(12,208,1,60,173),(12,208,1,60,174),(15,208,1,61,674),(15,208,1,61,675),(15,208,1,61,676),(15,208,1,61,677),(15,208,1,61,678),(15,208,1,62,679),(15,208,1,62,680),(15,208,1,62,681),(15,208,1,62,682),(15,208,1,62,683),(15,208,1,63,684),(15,208,1,63,685),(15,208,1,63,686),(15,208,1,63,687),(15,208,1,63,688),(15,208,1,64,689),(15,208,1,64,690),(15,208,1,64,691),(15,208,1,64,692),(15,208,1,64,693),(15,208,1,65,694),(15,208,1,65,695),(15,208,1,65,696),(15,208,1,65,697),(15,208,1,65,698),(16,208,1,61,986),(16,208,1,61,992),(16,208,1,61,998),(16,208,1,62,987),(16,208,1,62,993),(16,208,1,62,999),(16,208,1,63,988),(16,208,1,63,994),(16,208,1,63,1000),(16,208,1,64,989),(16,208,1,64,995),(16,208,1,64,1001),(16,208,1,65,990),(16,208,1,65,996),(16,208,1,65,1002),(16,208,1,66,991),(16,208,1,66,997),(16,208,1,66,1003),(17,208,1,60,186),(17,208,1,60,187),(17,208,1,60,188),(17,208,1,60,189),(18,208,1,60,190),(18,208,1,60,191),(18,208,1,60,192),(18,208,1,60,193),(19,208,1,60,194),(19,208,1,60,195),(19,208,1,60,196),(20,208,1,61,549),(20,208,1,61,555),(20,208,1,61,561),(20,208,1,61,567),(20,208,1,61,573),(20,208,1,62,550),(20,208,1,62,556),(20,208,1,62,562),(20,208,1,62,568),(20,208,1,62,574),(20,208,1,63,551),(20,208,1,63,557),(20,208,1,63,563),(20,208,1,63,569),(20,208,1,63,575),(20,208,1,64,552),(20,208,1,64,558),(20,208,1,64,564),(20,208,1,64,570),(20,208,1,64,576),(20,208,1,65,553),(20,208,1,65,559),(20,208,1,65,565),(20,208,1,65,571),(20,208,1,65,577),(20,208,1,66,554),(20,208,1,66,560),(20,208,1,66,566),(20,208,1,66,572),(20,208,1,66,578),(22,208,1,60,203),(22,208,1,60,204),(22,208,1,60,205),(22,208,1,60,206),(24,208,1,60,207),(24,208,1,60,208),(24,208,1,60,209),(25,208,1,61,972),(25,208,1,61,979),(25,208,1,62,973),(25,208,1,62,980),(25,208,1,63,974),(25,208,1,63,981),(25,208,1,64,975),(25,208,1,64,982),(25,208,1,65,976),(25,208,1,65,983),(25,208,1,66,977),(25,208,1,66,984),(25,208,1,67,978),(25,208,1,67,985),(26,208,1,60,217),(26,208,1,60,218),(26,208,1,60,219),(26,208,1,60,220),(26,208,1,60,221),(29,208,1,58,644),(29,208,1,58,650),(29,208,1,58,656),(29,208,1,58,662),(29,208,1,58,668),(29,208,1,59,645),(29,208,1,59,651),(29,208,1,59,657),(29,208,1,59,663),(29,208,1,59,669),(29,208,1,61,647),(29,208,1,61,653),(29,208,1,61,659),(29,208,1,61,665),(29,208,1,61,671),(29,208,1,62,648),(29,208,1,62,654),(29,208,1,62,660),(29,208,1,62,666),(29,208,1,62,672),(29,208,1,63,649),(29,208,1,63,655),(29,208,1,63,661),(29,208,1,63,667),(29,208,1,63,673),(29,208,1,82,646),(29,208,1,82,652),(29,208,1,82,658),(29,208,1,82,664),(29,208,1,82,670),(30,208,1,60,228),(30,208,1,60,229),(30,208,1,60,230),(31,208,1,60,231),(31,208,1,60,232),(32,208,1,60,233),(32,208,1,60,234),(33,208,1,60,235),(33,208,1,60,236),(33,208,1,60,237),(33,208,1,60,238),(35,208,1,61,614),(35,208,1,61,615),(35,208,1,61,616),(35,208,1,61,617),(35,208,1,61,618),(35,208,1,62,619),(35,208,1,62,620),(35,208,1,62,621),(35,208,1,62,622),(35,208,1,62,623),(35,208,1,64,624),(35,208,1,64,625),(35,208,1,64,626),(35,208,1,64,627),(35,208,1,64,628),(35,208,1,65,629),(35,208,1,65,630),(35,208,1,65,631),(35,208,1,65,632),(35,208,1,65,633),(35,208,1,66,634),(35,208,1,66,635),(35,208,1,66,636),(35,208,1,66,637),(35,208,1,66,638),(35,208,1,67,639),(35,208,1,67,640),(35,208,1,67,641),(35,208,1,67,642),(35,208,1,67,643),(36,208,1,60,36),(41,208,1,60,257),(41,208,1,60,258),(41,208,1,60,259),(41,208,1,60,260),(43,208,1,62,267),(43,208,1,62,948),(43,208,1,62,953),(43,208,1,63,265),(43,208,1,63,949),(43,208,1,63,954),(43,208,1,64,266),(43,208,1,64,950),(43,208,1,64,955),(43,208,1,65,269),(43,208,1,65,951),(43,208,1,65,956),(43,208,1,66,268),(43,208,1,66,952),(43,208,1,66,957),(45,208,1,60,272),(45,208,1,60,273),(45,208,1,60,274),(45,208,1,60,275),(45,208,1,60,276),(48,208,1,60,285),(48,208,1,60,286),(50,208,1,60,290),(50,208,1,60,291),(50,208,1,60,292),(51,208,1,60,130),(51,208,1,60,131),(53,208,1,60,53),(54,208,1,58,302),(54,208,1,58,1222),(54,208,1,59,300),(54,208,1,59,1223),(54,208,1,61,303),(54,208,1,61,1225),(54,208,1,62,304),(54,208,1,62,1226),(54,208,1,63,305),(54,208,1,63,1227),(54,208,1,82,301),(54,208,1,82,1224),(56,208,1,60,309),(56,208,1,60,310),(56,208,1,60,311),(57,208,1,60,312),(57,208,1,60,313),(57,208,1,60,314),(57,208,1,60,315),(58,208,1,60,316),(58,208,1,60,317),(59,208,1,60,318),(59,208,1,60,319),(59,208,1,60,320),(59,208,1,60,321),(60,208,1,58,322),(60,208,1,58,1251),(60,208,1,59,323),(60,208,1,59,1252),(60,208,1,61,325),(60,208,1,61,1254),(60,208,1,62,326),(60,208,1,62,1255),(60,208,1,63,327),(60,208,1,63,1256),(60,208,1,82,324),(60,208,1,82,1253),(61,208,1,60,328),(61,208,1,60,329),(64,208,1,60,64),(64,208,1,60,334),(64,208,1,60,335),(64,208,1,60,336),(64,208,1,60,337),(65,208,1,60,338),(65,208,1,60,339),(65,208,1,60,340),(66,208,1,60,341),(66,208,1,60,342),(66,208,1,60,343),(66,208,1,60,344),(66,208,1,60,345),(69,208,1,58,351),(69,208,1,58,1247),(69,208,1,59,350),(69,208,1,59,1248),(69,208,1,62,353),(69,208,1,62,1250),(69,208,1,82,352),(69,208,1,82,1249),(70,208,1,60,354),(70,208,1,60,355),(70,208,1,60,356),(70,208,1,60,357),(71,208,1,60,71),(71,208,1,60,358),(71,208,1,60,359),(71,208,1,60,360),(71,208,1,60,1130),(71,208,1,60,1131),(71,208,1,60,1132),(72,208,1,60,364),(72,208,1,60,365),(72,208,1,60,366),(72,208,1,60,367),(73,208,1,60,368),(73,208,1,60,369),(73,208,1,60,370),(73,208,1,60,371),(73,208,1,60,372),(73,208,1,60,373),(73,208,1,60,374),(73,208,1,60,375),(74,208,1,60,378),(74,208,1,60,379),(75,208,1,58,380),(75,208,1,58,1214),(75,208,1,61,381),(75,208,1,61,1216),(75,208,1,62,382),(75,208,1,62,1217),(75,208,1,63,383),(75,208,1,63,1218),(75,208,1,82,384),(75,208,1,82,1215),(76,208,1,60,76),(76,208,1,60,385),(76,208,1,60,386),(76,208,1,60,387),(77,208,1,60,388),(77,208,1,60,389),(77,208,1,60,390),(79,208,1,60,1057),(79,208,1,60,1058),(79,208,1,60,1059),(79,208,1,60,1060),(79,208,1,60,1061),(79,208,1,60,1062),(80,208,1,60,397),(80,208,1,60,398),(80,208,1,60,399),(80,208,1,60,400),(82,208,1,59,407),(82,208,1,59,1191),(82,208,1,61,409),(82,208,1,61,1193),(82,208,1,62,410),(82,208,1,62,1194),(82,208,1,63,411),(82,208,1,63,1195),(82,208,1,82,408),(82,208,1,82,1192),(83,208,1,60,1075),(83,208,1,60,1076),(83,208,1,60,1077),(83,208,1,60,1078),(83,208,1,60,1079),(83,208,1,60,1080),(83,208,1,60,1081),(83,208,1,60,1082),(84,208,1,59,416),(84,208,1,59,421),(84,208,1,59,1261),(84,208,1,61,418),(84,208,1,61,423),(84,208,1,61,1263),(84,208,1,62,420),(84,208,1,62,425),(84,208,1,62,1264),(84,208,1,63,419),(84,208,1,63,424),(84,208,1,63,1265),(84,208,1,82,417),(84,208,1,82,422),(84,208,1,82,1262),(86,208,1,58,1272),(86,208,1,58,1273),(86,208,1,59,1274),(86,208,1,59,1275),(86,208,1,62,1278),(86,208,1,62,1279),(86,208,1,82,1276),(86,208,1,82,1277),(87,208,1,60,437),(87,208,1,60,438),(87,208,1,60,439),(88,208,1,60,440),(88,208,1,60,441),(88,208,1,60,442),(89,208,1,58,449),(89,208,1,58,1266),(89,208,1,61,451),(89,208,1,61,1268),(89,208,1,62,453),(89,208,1,62,1269),(89,208,1,63,452),(89,208,1,63,1270),(89,208,1,65,454),(89,208,1,65,1271),(89,208,1,82,450),(89,208,1,82,1267),(91,208,1,60,455),(91,208,1,60,456),(91,208,1,60,457),(92,208,1,60,1063),(92,208,1,60,1064),(92,208,1,60,1065),(92,208,1,60,1066),(92,208,1,60,1067),(92,208,1,60,1068),(93,208,1,60,461),(93,208,1,60,462),(93,208,1,60,463),(93,208,1,60,464),(95,208,1,60,465),(95,208,1,60,466),(95,208,1,60,467),(98,208,1,60,471),(98,208,1,60,472),(98,208,1,60,473),(98,208,1,60,474),(100,208,1,60,100),(100,208,1,60,478),(100,208,1,60,479),(100,208,1,60,480),(102,208,1,60,102),(102,208,1,60,1069),(102,208,1,60,1070),(102,208,1,60,1071),(102,208,1,60,1072),(102,208,1,60,1073),(102,208,1,60,1074),(103,208,1,60,488),(103,208,1,60,489),(103,208,1,60,490),(105,208,1,60,495),(105,208,1,60,496),(105,208,1,60,497),(106,208,1,60,498),(106,208,1,60,499),(106,208,1,60,500),(107,208,1,60,504),(107,208,1,60,505),(107,208,1,60,506),(107,208,1,60,507),(107,208,1,60,508),(107,208,1,60,509),(108,208,1,60,501),(108,208,1,60,502),(108,208,1,60,503),(109,208,1,60,109),(109,208,1,60,510),(109,208,1,60,511),(109,208,1,60,512),(110,208,1,60,513),(110,208,1,60,514),(110,208,1,60,515),(111,208,1,60,516),(112,208,1,60,112),(112,208,1,60,517),(112,208,1,60,518),(112,208,1,60,519),(113,208,1,60,113),(113,208,1,60,520),(113,208,1,60,521),(113,208,1,60,522),(114,208,1,60,523),(115,208,1,60,524),(115,208,1,60,525),(115,208,1,60,526),(116,208,1,60,527),(117,208,1,60,117),(117,208,1,60,528),(117,208,1,60,529),(117,208,1,60,530),(118,208,1,60,531),(119,208,1,60,532),(119,208,1,60,533),(119,208,1,60,534),(120,208,1,60,120),(120,208,1,60,535),(120,208,1,60,536),(120,208,1,60,537),(121,208,1,60,541),(122,208,1,60,538),(122,208,1,60,539),(122,208,1,60,540),(123,208,1,60,542),(123,208,1,60,543),(124,208,1,60,544),(125,208,1,60,545),(126,208,1,60,546),(127,208,1,60,547),(128,208,1,60,548),(523,208,1,60,523),(545,208,1,60,545),(1,212,1,78,1014),(1,212,1,78,1017),(1,212,1,78,1020),(1,212,1,79,1015),(1,212,1,79,1018),(1,212,1,79,1021),(1,212,1,80,1016),(1,212,1,80,1019),(1,212,1,80,1022),(2,212,1,78,942),(2,212,1,78,945),(2,212,1,79,943),(2,212,1,79,946),(2,212,1,80,944),(2,212,1,80,947),(7,212,1,77,158),(7,212,1,77,1145),(7,212,1,78,157),(7,212,1,78,1146),(7,212,1,79,159),(7,212,1,79,1147),(9,212,1,77,164),(9,212,1,77,1290),(9,212,1,78,163),(9,212,1,78,1291),(9,212,1,80,165),(9,212,1,80,1292),(10,212,1,77,167),(10,212,1,77,1148),(10,212,1,78,168),(10,212,1,78,1149),(10,212,1,79,169),(10,212,1,79,1150),(10,212,1,80,166),(10,212,1,80,1151),(11,212,1,77,170),(11,212,1,77,1162),(11,212,1,78,171),(11,212,1,78,1163),(12,212,1,78,173),(12,212,1,78,1184),(12,212,1,79,174),(12,212,1,79,1185),(12,212,1,80,172),(12,212,1,80,1186),(17,212,1,77,186),(17,212,1,77,1156),(17,212,1,78,187),(17,212,1,78,1157),(17,212,1,79,188),(17,212,1,79,1158),(17,212,1,80,189),(17,212,1,80,1159),(18,212,1,77,190),(18,212,1,77,1238),(18,212,1,78,192),(18,212,1,78,1239),(18,212,1,80,193),(18,212,1,80,1240),(18,212,1,81,191),(18,212,1,81,1241),(19,212,1,78,195),(19,212,1,78,1219),(19,212,1,79,196),(19,212,1,79,1220),(19,212,1,81,194),(19,212,1,81,1221),(22,212,1,77,204),(22,212,1,77,1280),(22,212,1,78,203),(22,212,1,78,1281),(22,212,1,80,205),(22,212,1,80,1282),(22,212,1,81,206),(22,212,1,81,1283),(24,212,1,77,209),(24,212,1,77,1305),(24,212,1,78,207),(24,212,1,78,1306),(24,212,1,81,208),(24,212,1,81,1307),(26,212,1,77,218),(26,212,1,77,1175),(26,212,1,78,219),(26,212,1,78,1176),(26,212,1,79,220),(26,212,1,79,1177),(26,212,1,80,217),(26,212,1,80,1178),(26,212,1,81,221),(26,212,1,81,1179),(30,212,1,77,229),(30,212,1,77,1293),(30,212,1,78,228),(30,212,1,78,1294),(30,212,1,79,230),(30,212,1,79,1295),(31,212,1,78,231),(31,212,1,78,1312),(31,212,1,79,232),(31,212,1,79,1313),(32,212,1,78,233),(32,212,1,78,1327),(32,212,1,79,234),(32,212,1,79,1328),(33,212,1,77,237),(33,212,1,77,1141),(33,212,1,78,235),(33,212,1,78,1142),(33,212,1,79,236),(33,212,1,79,1143),(33,212,1,80,238),(33,212,1,80,1144),(34,212,1,78,844),(34,212,1,78,848),(34,212,1,78,852),(34,212,1,78,856),(34,212,1,78,860),(34,212,1,79,845),(34,212,1,79,849),(34,212,1,79,853),(34,212,1,79,857),(34,212,1,79,861),(34,212,1,80,846),(34,212,1,80,850),(34,212,1,80,854),(34,212,1,80,858),(34,212,1,80,862),(34,212,1,81,847),(34,212,1,81,851),(34,212,1,81,855),(34,212,1,81,859),(34,212,1,81,863),(36,212,1,77,879),(36,212,1,77,884),(36,212,1,77,889),(36,212,1,77,894),(36,212,1,77,899),(36,212,1,78,880),(36,212,1,78,885),(36,212,1,78,890),(36,212,1,78,895),(36,212,1,78,900),(36,212,1,79,881),(36,212,1,79,886),(36,212,1,79,891),(36,212,1,79,896),(36,212,1,79,901),(36,212,1,80,882),(36,212,1,80,887),(36,212,1,80,892),(36,212,1,80,897),(36,212,1,80,902),(36,212,1,81,883),(36,212,1,81,888),(36,212,1,81,893),(36,212,1,81,898),(36,212,1,81,903),(38,212,1,78,864),(38,212,1,78,867),(38,212,1,78,870),(38,212,1,78,873),(38,212,1,78,876),(38,212,1,79,865),(38,212,1,79,868),(38,212,1,79,871),(38,212,1,79,874),(38,212,1,79,877),(38,212,1,80,866),(38,212,1,80,869),(38,212,1,80,872),(38,212,1,80,875),(38,212,1,80,878),(41,212,1,77,259),(41,212,1,77,1234),(41,212,1,78,257),(41,212,1,78,1235),(41,212,1,79,258),(41,212,1,79,1236),(41,212,1,80,260),(41,212,1,80,1237),(42,212,1,78,804),(42,212,1,78,808),(42,212,1,78,812),(42,212,1,78,816),(42,212,1,78,820),(42,212,1,79,805),(42,212,1,79,809),(42,212,1,79,813),(42,212,1,79,817),(42,212,1,79,821),(42,212,1,80,806),(42,212,1,80,810),(42,212,1,80,814),(42,212,1,80,818),(42,212,1,80,822),(42,212,1,81,807),(42,212,1,81,811),(42,212,1,81,815),(42,212,1,81,819),(42,212,1,81,823),(44,212,1,79,270),(44,212,1,80,271),(45,212,1,77,274),(45,212,1,77,1242),(45,212,1,78,272),(45,212,1,78,1243),(45,212,1,79,273),(45,212,1,79,1244),(45,212,1,80,275),(45,212,1,80,1245),(45,212,1,81,276),(45,212,1,81,1246),(46,212,1,77,714),(46,212,1,77,718),(46,212,1,77,722),(46,212,1,77,726),(46,212,1,77,730),(46,212,1,78,715),(46,212,1,78,719),(46,212,1,78,723),(46,212,1,78,727),(46,212,1,78,731),(46,212,1,79,716),(46,212,1,79,720),(46,212,1,79,724),(46,212,1,79,728),(46,212,1,79,732),(46,212,1,80,717),(46,212,1,80,721),(46,212,1,80,725),(46,212,1,80,729),(46,212,1,80,733),(47,212,1,78,749),(47,212,1,78,753),(47,212,1,78,757),(47,212,1,78,761),(47,212,1,78,765),(47,212,1,79,750),(47,212,1,79,754),(47,212,1,79,758),(47,212,1,79,762),(47,212,1,79,766),(47,212,1,80,751),(47,212,1,80,755),(47,212,1,80,759),(47,212,1,80,763),(47,212,1,80,767),(47,212,1,81,752),(47,212,1,81,756),(47,212,1,81,760),(47,212,1,81,764),(47,212,1,81,768),(48,212,1,78,285),(48,212,1,78,1315),(48,212,1,79,286),(48,212,1,79,1316),(49,212,1,78,789),(49,212,1,78,792),(49,212,1,78,795),(49,212,1,78,798),(49,212,1,78,801),(49,212,1,79,790),(49,212,1,79,793),(49,212,1,79,796),(49,212,1,79,799),(49,212,1,79,802),(49,212,1,80,791),(49,212,1,80,794),(49,212,1,80,797),(49,212,1,80,800),(49,212,1,80,803),(50,212,1,77,290),(50,212,1,77,1228),(50,212,1,78,291),(50,212,1,78,1229),(50,212,1,79,292),(50,212,1,79,1230),(51,212,1,79,131),(51,212,1,79,1133),(51,212,1,80,130),(51,212,1,80,1134),(53,212,1,77,769),(53,212,1,77,773),(53,212,1,77,777),(53,212,1,77,781),(53,212,1,77,785),(53,212,1,78,770),(53,212,1,78,774),(53,212,1,78,778),(53,212,1,78,782),(53,212,1,78,786),(53,212,1,79,771),(53,212,1,79,775),(53,212,1,79,779),(53,212,1,79,783),(53,212,1,79,787),(53,212,1,80,772),(53,212,1,80,776),(53,212,1,80,780),(53,212,1,80,784),(53,212,1,80,788),(55,212,1,77,1029),(55,212,1,77,1032),(55,212,1,78,1030),(55,212,1,78,1033),(55,212,1,79,1031),(55,212,1,79,1034),(56,212,1,77,309),(56,212,1,77,1284),(56,212,1,78,310),(56,212,1,78,1285),(56,212,1,79,311),(56,212,1,79,1286),(57,212,1,77,315),(57,212,1,77,1257),(57,212,1,78,314),(57,212,1,78,1258),(57,212,1,79,312),(57,212,1,79,1259),(57,212,1,80,313),(57,212,1,80,1260),(58,212,1,78,316),(58,212,1,78,1309),(58,212,1,79,317),(58,212,1,79,1310),(59,212,1,77,320),(59,212,1,77,1187),(59,212,1,78,318),(59,212,1,78,1188),(59,212,1,79,319),(59,212,1,79,1189),(59,212,1,80,321),(59,212,1,80,1190),(61,212,1,78,328),(61,212,1,78,1329),(61,212,1,79,329),(61,212,1,79,1330),(63,212,1,77,1049),(63,212,1,77,1053),(63,212,1,78,1050),(63,212,1,78,1054),(63,212,1,79,1051),(63,212,1,79,1055),(63,212,1,80,1052),(63,212,1,80,1056),(64,212,1,77,334),(64,212,1,77,1180),(64,212,1,78,335),(64,212,1,78,1181),(64,212,1,79,336),(64,212,1,79,1182),(64,212,1,80,337),(64,212,1,80,1183),(65,212,1,77,339),(65,212,1,77,1322),(65,212,1,78,338),(65,212,1,78,1323),(65,212,1,79,340),(65,212,1,79,1324),(66,212,1,77,341),(66,212,1,77,1083),(66,212,1,78,342),(66,212,1,78,1084),(66,212,1,79,343),(66,212,1,79,1085),(66,212,1,80,344),(66,212,1,80,1086),(66,212,1,81,345),(66,212,1,81,1087),(68,212,1,78,1035),(68,212,1,78,1039),(68,212,1,79,1036),(68,212,1,79,1040),(68,212,1,80,1037),(68,212,1,80,1041),(68,212,1,81,1038),(68,212,1,81,1042),(70,212,1,77,355),(70,212,1,77,1152),(70,212,1,78,354),(70,212,1,78,1153),(70,212,1,79,357),(70,212,1,79,1154),(70,212,1,80,356),(70,212,1,80,1155),(71,212,1,78,358),(71,212,1,78,1130),(71,212,1,78,1135),(71,212,1,79,359),(71,212,1,79,1131),(71,212,1,79,1136),(71,212,1,80,360),(71,212,1,80,1132),(71,212,1,80,1137),(72,212,1,77,366),(72,212,1,77,1167),(72,212,1,78,364),(72,212,1,78,1168),(72,212,1,79,365),(72,212,1,79,1169),(72,212,1,80,367),(72,212,1,80,1170),(73,212,1,77,369),(73,212,1,77,373),(73,212,1,78,368),(73,212,1,78,372),(73,212,1,79,370),(73,212,1,79,374),(73,212,1,80,371),(73,212,1,80,375),(74,212,1,78,378),(74,212,1,78,1325),(74,212,1,79,379),(74,212,1,79,1326),(76,212,1,78,386),(76,212,1,78,1127),(76,212,1,79,385),(76,212,1,79,1128),(76,212,1,80,387),(76,212,1,80,1129),(77,212,1,77,389),(77,212,1,77,1287),(77,212,1,78,388),(77,212,1,78,1288),(77,212,1,79,390),(77,212,1,79,1289),(78,212,1,78,1023),(78,212,1,78,1024),(78,212,1,79,1025),(78,212,1,79,1026),(78,212,1,80,1027),(78,212,1,80,1028),(79,212,1,78,1057),(79,212,1,78,1060),(79,212,1,78,1101),(79,212,1,79,1058),(79,212,1,79,1061),(79,212,1,79,1102),(79,212,1,80,1059),(79,212,1,80,1062),(79,212,1,80,1103),(80,212,1,77,398),(80,212,1,77,1171),(80,212,1,78,397),(80,212,1,78,1172),(80,212,1,79,400),(80,212,1,79,1173),(80,212,1,81,399),(80,212,1,81,1174),(81,212,1,77,403),(81,212,1,77,406),(81,212,1,78,401),(81,212,1,78,404),(81,212,1,79,402),(81,212,1,79,405),(83,212,1,78,1075),(83,212,1,78,1079),(83,212,1,78,1091),(83,212,1,79,1076),(83,212,1,79,1080),(83,212,1,79,1092),(83,212,1,80,1077),(83,212,1,80,1081),(83,212,1,80,1093),(83,212,1,81,1078),(83,212,1,81,1082),(83,212,1,81,1094),(85,212,1,78,1043),(85,212,1,78,1046),(85,212,1,79,1044),(85,212,1,79,1047),(85,212,1,80,1045),(85,212,1,80,1048),(87,212,1,78,437),(87,212,1,78,1104),(87,212,1,79,439),(87,212,1,79,1105),(87,212,1,80,438),(87,212,1,80,1106),(88,212,1,78,440),(88,212,1,78,1088),(88,212,1,79,441),(88,212,1,79,1089),(88,212,1,80,442),(88,212,1,80,1090),(91,212,1,77,455),(91,212,1,77,1118),(91,212,1,78,456),(91,212,1,78,1119),(91,212,1,79,457),(91,212,1,79,1120),(92,212,1,78,1063),(92,212,1,78,1066),(92,212,1,78,1098),(92,212,1,79,1064),(92,212,1,79,1067),(92,212,1,79,1099),(92,212,1,81,1065),(92,212,1,81,1068),(92,212,1,81,1100),(93,212,1,78,461),(93,212,1,78,1114),(93,212,1,79,462),(93,212,1,79,1115),(93,212,1,80,464),(93,212,1,80,1116),(93,212,1,81,463),(93,212,1,81,1117),(95,212,1,78,465),(95,212,1,78,1124),(95,212,1,79,466),(95,212,1,79,1125),(95,212,1,80,467),(95,212,1,80,1126),(97,212,1,78,939),(97,212,1,79,940),(97,212,1,80,941),(98,212,1,77,471),(98,212,1,77,1110),(98,212,1,78,473),(98,212,1,78,1111),(98,212,1,79,474),(98,212,1,79,1112),(98,212,1,81,472),(98,212,1,81,1113),(99,212,1,78,930),(99,212,1,79,931),(99,212,1,80,932),(100,212,1,78,478),(100,212,1,78,1121),(100,212,1,80,479),(100,212,1,80,1122),(100,212,1,81,480),(100,212,1,81,1123),(101,212,1,77,824),(101,212,1,77,828),(101,212,1,77,832),(101,212,1,77,836),(101,212,1,77,840),(101,212,1,78,825),(101,212,1,78,829),(101,212,1,78,833),(101,212,1,78,837),(101,212,1,78,841),(101,212,1,79,826),(101,212,1,79,830),(101,212,1,79,834),(101,212,1,79,838),(101,212,1,79,842),(101,212,1,80,827),(101,212,1,80,831),(101,212,1,80,835),(101,212,1,80,839),(101,212,1,80,843),(102,212,1,77,1069),(102,212,1,77,1072),(102,212,1,77,1095),(102,212,1,78,1070),(102,212,1,78,1073),(102,212,1,78,1096),(102,212,1,80,1071),(102,212,1,80,1074),(102,212,1,80,1097),(103,212,1,77,488),(103,212,1,77,1107),(103,212,1,78,489),(103,212,1,78,1108),(103,212,1,79,490),(103,212,1,79,1109),(104,212,1,77,904),(104,212,1,77,908),(104,212,1,77,912),(104,212,1,78,905),(104,212,1,78,909),(104,212,1,78,913),(104,212,1,79,906),(104,212,1,79,910),(104,212,1,79,914),(104,212,1,80,907),(104,212,1,80,911),(104,212,1,80,915),(105,212,1,77,496),(105,212,1,77,1211),(105,212,1,78,495),(105,212,1,78,1212),(105,212,1,79,497),(105,212,1,79,1213),(106,212,1,77,499),(106,212,1,77,1202),(106,212,1,78,498),(106,212,1,78,1203),(106,212,1,79,500),(106,212,1,79,1204),(107,212,1,77,504),(107,212,1,77,507),(107,212,1,78,505),(107,212,1,78,508),(107,212,1,79,506),(107,212,1,79,509),(108,212,1,77,502),(108,212,1,77,1138),(108,212,1,78,501),(108,212,1,78,1139),(108,212,1,79,503),(108,212,1,79,1140),(109,212,1,77,510),(109,212,1,77,1299),(109,212,1,78,511),(109,212,1,78,1300),(109,212,1,79,512),(109,212,1,79,1301),(110,212,1,77,513),(110,212,1,77,1296),(110,212,1,78,514),(110,212,1,78,1297),(110,212,1,79,515),(110,212,1,79,1298),(111,212,1,78,516),(111,212,1,78,1331),(112,212,1,77,517),(112,212,1,77,1302),(112,212,1,78,518),(112,212,1,78,1303),(112,212,1,79,519),(112,212,1,79,1304),(113,212,1,77,520),(113,212,1,77,1208),(113,212,1,78,521),(113,212,1,78,1209),(113,212,1,80,522),(113,212,1,80,1210),(114,212,1,79,523),(114,212,1,79,1308),(115,212,1,77,524),(115,212,1,77,1196),(115,212,1,78,525),(115,212,1,78,1197),(115,212,1,79,526),(115,212,1,79,1198),(116,212,1,78,527),(116,212,1,78,1332),(117,212,1,77,528),(117,212,1,77,1205),(117,212,1,78,529),(117,212,1,78,1206),(117,212,1,79,530),(117,212,1,79,1207),(118,212,1,78,531),(118,212,1,78,1321),(119,212,1,77,532),(119,212,1,77,1231),(119,212,1,78,533),(119,212,1,78,1232),(119,212,1,79,534),(119,212,1,79,1233),(120,212,1,77,535),(120,212,1,77,1164),(120,212,1,78,536),(120,212,1,78,1165),(120,212,1,79,537),(120,212,1,79,1166),(121,212,1,78,541),(121,212,1,78,1320),(122,212,1,77,538),(122,212,1,77,1199),(122,212,1,78,539),(122,212,1,78,1200),(122,212,1,79,540),(122,212,1,79,1201),(123,212,1,78,542),(123,212,1,78,1160),(123,212,1,79,543),(123,212,1,79,1161),(523,212,1,79,523);
/*!40000 ALTER TABLE `catalog_product_index_eav_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_eav_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_eav_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` int(10) unsigned NOT NULL COMMENT 'Value',
  `source_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity Id for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_TMP_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_TMP_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_TMP_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Indexer Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_eav_tmp`
--

LOCK TABLES `catalog_product_index_eav_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price`
--

DROP TABLE IF EXISTS `catalog_product_index_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_MIN_PRICE` (`min_price`),
  KEY `CAT_PRD_IDX_PRICE_WS_ID_CSTR_GROUP_ID_MIN_PRICE` (`website_id`,`customer_group_id`,`min_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price`
--

LOCK TABLES `catalog_product_index_price` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price` DISABLE KEYS */;
INSERT INTO `catalog_product_index_price` VALUES (1333,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1333,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1333,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1333,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1334,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1334,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1334,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1334,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1335,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1335,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1335,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1335,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1336,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1336,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1336,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1336,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1337,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1337,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1337,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1337,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1338,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1338,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1338,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1338,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1339,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1339,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1339,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1339,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1340,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1340,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1340,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1340,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1341,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1341,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1341,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1341,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1345,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1345,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1345,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1345,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1346,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1346,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1346,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1346,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1347,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1347,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1347,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1347,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1348,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1348,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1348,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1348,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1349,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1349,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1349,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1349,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1350,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1350,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1350,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1350,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1351,0,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(1351,1,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(1351,2,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(1351,3,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(1352,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1352,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1352,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1352,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1353,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1353,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1353,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1353,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1354,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1354,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1354,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1354,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1355,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1355,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1355,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1355,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1356,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1356,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1356,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1356,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1357,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1357,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1357,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1357,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1358,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1358,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1358,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1358,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1359,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1359,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1359,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1359,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1360,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1360,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1360,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1360,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1361,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1361,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1361,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1361,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1362,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1362,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1362,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1362,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1363,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1363,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1363,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1363,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1364,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1364,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1364,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1364,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1365,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1365,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1365,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1365,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1366,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1366,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1366,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1366,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1367,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1367,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1367,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1367,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1368,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1368,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1368,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1368,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1369,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1369,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1369,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1369,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1370,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1370,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1370,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1370,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1371,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1371,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1371,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1371,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1372,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1372,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1372,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1372,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1373,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1373,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1373,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1373,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1374,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1374,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1374,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1374,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1375,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1375,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1375,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1375,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1376,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1376,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1376,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1376,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1377,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1377,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1377,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1377,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1378,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1378,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1378,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1378,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1379,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1379,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1379,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1379,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1380,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1380,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1380,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1380,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1381,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1381,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1381,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1381,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1383,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1383,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1383,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1383,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1384,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1384,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1384,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1384,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1385,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1385,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1385,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1385,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1386,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1386,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1386,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1386,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1387,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1387,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1387,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1387,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1388,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1388,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1388,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1388,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1389,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1389,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1389,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1389,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1390,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1390,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1390,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1390,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1391,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1391,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1391,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1391,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1392,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1392,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1392,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1392,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1393,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1393,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1393,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1393,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1394,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1394,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1394,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1394,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1395,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1395,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1395,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1395,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1396,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1396,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1396,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1396,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1397,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1397,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1397,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1397,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1398,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1398,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1398,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1398,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1399,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1399,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1399,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1399,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1400,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1400,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1400,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1400,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1401,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1401,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1401,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1401,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1402,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1402,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1402,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1402,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1403,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1403,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1403,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1403,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1404,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1404,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1404,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1404,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1405,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1405,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1405,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1405,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1406,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1406,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1406,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1406,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1407,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1407,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1407,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1407,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1408,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1408,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1408,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1408,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1409,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1409,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1409,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1409,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1410,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1410,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1410,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1410,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1411,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1411,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1411,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1411,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1412,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1412,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1412,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1412,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1413,0,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(1413,1,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(1413,2,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(1413,3,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(1414,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1414,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1414,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1414,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1415,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1415,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1415,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1415,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1416,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1416,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1416,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1416,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1417,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1417,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1417,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1417,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1418,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1418,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1418,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1418,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1419,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1419,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1419,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1419,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1420,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1420,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1420,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1420,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1421,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1421,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1421,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1421,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1422,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1422,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1422,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1422,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1423,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1423,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1423,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1423,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1424,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1424,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1424,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1424,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1425,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1425,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1425,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1425,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1426,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1426,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1426,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1426,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1427,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1427,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1427,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1427,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1428,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1428,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1428,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1428,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1429,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1429,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1429,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1429,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1430,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1430,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1430,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1430,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1431,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1431,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1431,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1431,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1432,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1432,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1432,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1432,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1433,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1433,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1433,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1433,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1434,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1434,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1434,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1434,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1435,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1435,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1435,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1435,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1436,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1436,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1436,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1436,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1437,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1437,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1437,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1437,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1438,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1438,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1438,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1438,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1439,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1439,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1439,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1439,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1440,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1440,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1440,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1440,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1441,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1441,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1441,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1441,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1442,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1442,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1442,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1442,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1443,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1443,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1443,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1443,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1444,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1444,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1444,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1444,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1445,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1445,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1445,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1445,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1446,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1446,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1446,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1446,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1447,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1447,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1447,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1447,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1448,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1448,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1448,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1448,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1449,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1449,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1449,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1449,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1450,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1450,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1450,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1450,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1451,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1451,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1451,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1451,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1452,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1452,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1452,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1452,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1453,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1453,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1453,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1453,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1454,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1454,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1454,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1454,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1455,0,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(1455,1,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(1455,2,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(1455,3,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(1456,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1456,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1456,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1456,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1457,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1457,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1457,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1457,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1458,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1458,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1458,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1458,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1459,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1459,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1459,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1459,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1460,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1460,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1460,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1460,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1461,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1461,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1461,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1461,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1462,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1462,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1462,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1462,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1463,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1463,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1463,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1463,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1464,0,1,0,0.000000,0.000000,102.000000,102.000000,NULL),(1464,1,1,0,0.000000,0.000000,102.000000,102.000000,NULL),(1464,2,1,0,0.000000,0.000000,102.000000,102.000000,NULL),(1464,3,1,0,0.000000,0.000000,102.000000,102.000000,NULL),(1465,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1465,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1465,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1465,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1466,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1466,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1466,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1466,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1467,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1467,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1467,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1467,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1468,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1468,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1468,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1468,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1469,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1469,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1469,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1469,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1470,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1470,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1470,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1470,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1471,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1471,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1471,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1471,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1472,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1472,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1472,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1472,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1473,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1473,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1473,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1473,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1474,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1474,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1474,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1474,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1475,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1475,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1475,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1475,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1476,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1476,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1476,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1476,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1477,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1477,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1477,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1477,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1478,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1478,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1478,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1478,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1479,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1479,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1479,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1479,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1480,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1480,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1480,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1480,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1481,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1481,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1481,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1481,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1482,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1482,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1482,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1482,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1483,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1483,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1483,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1483,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1484,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1484,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1484,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1484,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1485,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1485,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1485,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1485,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1486,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1486,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1486,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1486,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1487,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1487,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1487,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1487,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1488,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1488,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1488,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1488,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1489,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1489,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1489,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1489,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1490,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1490,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1490,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1490,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1491,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1491,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1491,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1491,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1492,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1492,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1492,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1492,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1493,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1493,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1493,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1493,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1494,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1494,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1494,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1494,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1495,0,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(1495,1,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(1495,2,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(1495,3,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(1496,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1496,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1496,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1496,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1497,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1497,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1497,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1497,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1498,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1498,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1498,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1498,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1499,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1499,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1499,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1499,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1500,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1500,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1500,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1500,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1501,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1501,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1501,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1501,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1502,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1502,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1502,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1502,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1503,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1503,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1503,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1503,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1504,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1504,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1504,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1504,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1505,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1505,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1505,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1505,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1506,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1506,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1506,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1506,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1507,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1507,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1507,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1507,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1508,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1508,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1508,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1508,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1509,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1509,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1509,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1509,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1510,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1510,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1510,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1510,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1511,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1511,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1511,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1511,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1512,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1512,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1512,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1512,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1513,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1513,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1513,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1513,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1514,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1514,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1514,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1514,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1515,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1515,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1515,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1515,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1516,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1516,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1516,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1516,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1517,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1517,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1517,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1517,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1518,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1518,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1518,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1518,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1519,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1519,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1519,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1519,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1520,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1520,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1520,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1520,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1521,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1521,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1521,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1521,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1522,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1522,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1522,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1522,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1523,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1523,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1523,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1523,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1524,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1524,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1524,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1524,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1525,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1525,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1525,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1525,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(1526,0,1,2,0.000000,0.000000,128.000000,128.000000,NULL),(1526,1,1,2,0.000000,0.000000,128.000000,128.000000,NULL),(1526,2,1,2,0.000000,0.000000,128.000000,128.000000,NULL),(1526,3,1,2,0.000000,0.000000,128.000000,128.000000,NULL),(1527,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1527,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1527,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1527,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1528,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1528,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1528,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1528,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1529,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1529,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1529,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1529,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1530,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1530,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1530,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1530,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1531,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1531,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1531,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1531,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1532,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1532,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1532,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1532,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1533,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1533,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1533,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1533,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1534,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1534,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1534,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1534,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1535,0,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(1535,1,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(1535,2,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(1535,3,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(1536,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1536,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1536,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1536,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1537,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1537,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1537,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1537,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1538,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1538,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1538,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1538,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1539,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1539,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1539,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1539,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1540,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1540,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1540,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1540,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1541,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1541,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1541,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1541,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1542,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1542,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1542,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1542,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1543,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1543,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1543,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1543,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1544,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1544,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1544,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1544,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1545,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1545,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1545,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1545,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1546,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1546,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1546,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1546,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1547,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1547,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1547,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1547,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1548,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1548,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1548,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1548,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1549,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1549,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1549,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1549,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1550,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1550,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1550,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1550,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1551,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1551,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1551,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1551,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1552,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1552,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1552,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1552,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1553,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1553,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1553,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1553,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1554,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1554,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1554,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1554,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1555,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1555,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1555,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1555,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1556,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1556,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1556,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1556,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1557,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1557,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1557,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1557,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1558,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1558,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1558,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1558,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1559,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1559,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1559,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1559,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1560,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1560,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1560,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1560,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1561,0,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(1561,1,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(1561,2,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(1561,3,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(1562,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1562,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1562,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1562,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1563,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1563,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1563,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1563,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1564,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1564,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1564,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1564,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1565,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1565,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1565,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1565,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1566,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1566,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1566,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1566,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1567,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1567,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1567,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1567,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1568,0,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(1568,1,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(1568,2,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(1568,3,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(1569,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1569,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1569,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1569,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1570,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1570,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1570,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1570,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1571,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1571,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1571,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1571,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1572,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1572,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1572,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1572,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1573,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1573,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1573,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1573,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1574,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1574,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1574,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1574,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1575,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1575,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1575,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1575,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1576,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1576,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1576,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1576,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1577,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1577,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1577,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1577,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1578,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1578,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1578,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1578,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1579,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1579,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1579,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1579,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1580,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1580,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1580,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1580,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1581,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1581,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1581,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1581,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1582,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1582,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1582,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1582,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1583,0,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(1583,1,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(1583,2,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(1583,3,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(1584,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1584,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1584,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1584,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1585,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1585,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1585,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1585,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1586,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1586,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1586,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1586,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1587,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1587,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1587,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1587,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1588,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1588,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1588,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1588,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1589,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1589,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1589,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1589,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1590,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1590,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1590,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1590,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1591,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1591,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1591,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1591,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1592,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1592,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1592,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1592,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1593,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1593,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1593,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1593,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1594,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1594,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1594,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1594,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1595,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1595,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1595,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1595,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1596,0,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(1596,1,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(1596,2,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(1596,3,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(1597,0,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(1597,1,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(1597,2,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(1597,3,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(1598,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1598,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1598,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1598,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1599,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1599,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1599,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1599,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1600,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1600,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1600,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1600,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1601,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1601,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1601,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1601,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1602,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1602,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1602,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1602,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1603,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1603,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1603,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1603,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1604,0,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(1604,1,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(1604,2,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(1604,3,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(1605,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1605,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1605,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1605,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1606,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1606,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1606,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1606,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1607,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1607,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1607,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1607,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1608,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1608,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1608,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1608,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1609,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1609,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1609,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1609,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1610,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1610,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1610,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1610,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1611,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1611,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1611,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1611,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1612,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1612,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1612,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1612,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1613,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1613,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1613,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1613,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1614,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1614,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1614,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1614,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1615,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1615,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1615,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1615,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1616,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1616,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1616,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1616,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1617,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1617,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1617,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1617,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1618,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1618,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1618,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1618,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1619,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1619,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1619,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1619,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1620,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1620,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1620,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1620,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1621,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1621,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1621,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1621,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1622,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1622,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1622,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1622,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1623,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1623,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1623,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1623,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1624,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1624,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1624,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1624,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1625,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1625,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1625,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1625,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1626,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1626,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1626,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1626,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1627,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1627,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1627,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1627,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1628,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1628,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1628,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1628,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1629,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1629,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1629,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1629,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1630,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1630,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1630,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1630,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1631,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1631,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1631,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1631,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1632,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1632,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1632,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1632,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1633,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1633,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1633,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1633,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1634,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1634,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1634,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1634,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1635,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1635,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1635,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1635,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1636,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1636,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1636,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1636,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1637,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1637,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1637,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1637,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1638,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1638,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1638,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1638,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1639,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1639,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1639,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1639,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1640,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1640,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1640,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1640,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1641,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1641,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1641,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1641,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1642,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1642,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1642,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1642,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(1643,0,1,2,0.000000,0.000000,120.000000,120.000000,NULL),(1643,1,1,2,0.000000,0.000000,120.000000,120.000000,NULL),(1643,2,1,2,0.000000,0.000000,120.000000,120.000000,NULL),(1643,3,1,2,0.000000,0.000000,120.000000,120.000000,NULL),(1644,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1644,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1644,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1644,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1645,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1645,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1645,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1645,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1646,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1646,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1646,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1646,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1647,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1647,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1647,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1647,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1648,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1648,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1648,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1648,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1649,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1649,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1649,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1649,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1650,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1650,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1650,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1650,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1651,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1651,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1651,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1651,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1652,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1652,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1652,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1652,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1653,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1653,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1653,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1653,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1654,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1654,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1654,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1654,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1655,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1655,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1655,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1655,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1656,0,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(1656,1,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(1656,2,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(1656,3,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(1657,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1657,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1657,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1657,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1658,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1658,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1658,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1658,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1659,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1659,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1659,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1659,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1660,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1660,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1660,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1660,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1661,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1661,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1661,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1661,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1662,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1662,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1662,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1662,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1663,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1663,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1663,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1663,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1664,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1664,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1664,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1664,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1665,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1665,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1665,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1665,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1666,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1666,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1666,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1666,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1667,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1667,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1667,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1667,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1668,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1668,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1668,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1668,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1669,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1669,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1669,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1669,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1670,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1670,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1670,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1670,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1671,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1671,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1671,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1671,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1672,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1672,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1672,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1672,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1673,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1673,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1673,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1673,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1674,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1674,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1674,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1674,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1675,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1675,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1675,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1675,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1676,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1676,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1676,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1676,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1677,0,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(1677,1,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(1677,2,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(1677,3,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(1678,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1678,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1678,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1678,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1679,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1679,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1679,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1679,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1680,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1680,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1680,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1680,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1681,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1681,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1681,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1681,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1682,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1682,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1682,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1682,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1683,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1683,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1683,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1683,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1684,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1684,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1684,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1684,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1685,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1685,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1685,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1685,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1686,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1686,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1686,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1686,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1687,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1687,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1687,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1687,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1688,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1688,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1688,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1688,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1689,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1689,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1689,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1689,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1690,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1690,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1690,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1690,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1692,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1692,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1692,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1692,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1693,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1693,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1693,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1693,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1694,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1694,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1694,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1694,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1695,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1695,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1695,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1695,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1696,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1696,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1696,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1696,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1697,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1697,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1697,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1697,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1698,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1698,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1698,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1698,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1699,0,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(1699,1,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(1699,2,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(1699,3,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(1700,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1700,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1700,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1700,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1701,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1701,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1701,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1701,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1702,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1702,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1702,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1702,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1703,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1703,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1703,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1703,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1704,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1704,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1704,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1704,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1705,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1705,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1705,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1705,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1706,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1706,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1706,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1706,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1707,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1707,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1707,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1707,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1708,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1708,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1708,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1708,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1709,0,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(1709,1,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(1709,2,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(1709,3,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(1710,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1710,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1710,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1710,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1711,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1711,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1711,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1711,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1712,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1712,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1712,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1712,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1713,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1713,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1713,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1713,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1714,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1714,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1714,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1714,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1715,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1715,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1715,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1715,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1716,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1716,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1716,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1716,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1717,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1717,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1717,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1717,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1718,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1718,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1718,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1718,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1719,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1719,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1719,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1719,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1720,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1720,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1720,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1720,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1721,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1721,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1721,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1721,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1722,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1722,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1722,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1722,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1723,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1723,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1723,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1723,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1724,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1724,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1724,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1724,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1725,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1725,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1725,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1725,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1726,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1726,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1726,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1726,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1727,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1727,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1727,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1727,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1728,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1728,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1728,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1728,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1729,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1729,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1729,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1729,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1730,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1730,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1730,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1730,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1731,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1731,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1731,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1731,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1732,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1732,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1732,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1732,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1733,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1733,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1733,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1733,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1734,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1734,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1734,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1734,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1735,0,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(1735,1,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(1735,2,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(1735,3,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(1736,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1736,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1736,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1736,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1737,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1737,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1737,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1737,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1738,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1738,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1738,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1738,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1739,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1739,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1739,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1739,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1740,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1740,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1740,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1740,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1741,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1741,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1741,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1741,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1742,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1742,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1742,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1742,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1743,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1743,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1743,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1743,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1744,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1744,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1744,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1744,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1745,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1745,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1745,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1745,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1746,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1746,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1746,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1746,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1747,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1747,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1747,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1747,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1748,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1748,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1748,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1748,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1749,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1749,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1749,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1749,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1750,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1750,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1750,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1750,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1751,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1751,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1751,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1751,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1752,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1752,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1752,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1752,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1753,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1753,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1753,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1753,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1754,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1754,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1754,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1754,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1755,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1755,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1755,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1755,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1756,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1756,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1756,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1756,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1757,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1757,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1757,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1757,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1758,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1758,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1758,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1758,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1759,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1759,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1759,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1759,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1760,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1760,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1760,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1760,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1761,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1761,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1761,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1761,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1762,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1762,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1762,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1762,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1763,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1763,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1763,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1763,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1764,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1764,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1764,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1764,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1765,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1765,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1765,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1765,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1766,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1766,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1766,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1766,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1767,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1767,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1767,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1767,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1768,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1768,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1768,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1768,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1769,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1769,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1769,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1769,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1770,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1770,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1770,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1770,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1771,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1771,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1771,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1771,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1772,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1772,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1772,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1772,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1773,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1773,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1773,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1773,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1774,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1774,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1774,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1774,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1775,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1775,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1775,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1775,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1776,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1776,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1776,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1776,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1777,0,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(1777,1,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(1777,2,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(1777,3,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(1778,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1778,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1778,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1778,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1779,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1779,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1779,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1779,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1780,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1780,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1780,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1780,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1781,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1781,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1781,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1781,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1782,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1782,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1782,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1782,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1783,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1783,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1783,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1783,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1784,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1784,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1784,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1784,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1785,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1785,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1785,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1785,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1786,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1786,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1786,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1786,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1787,0,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(1787,1,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(1787,2,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(1787,3,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(1788,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1788,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1788,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1788,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1789,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1789,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1789,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1789,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1790,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1790,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1790,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1790,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1791,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1791,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1791,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1791,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1792,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1792,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1792,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1792,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1793,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1793,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1793,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1793,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1794,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1794,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1794,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1794,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1795,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1795,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1795,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1795,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1796,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1796,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1796,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1796,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1797,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1797,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1797,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1797,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1798,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1798,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1798,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1798,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1799,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1799,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1799,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1799,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1800,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1800,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1800,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1800,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1801,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1801,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1801,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1801,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1802,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1802,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1802,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1802,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1803,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1803,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1803,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1803,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1804,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1804,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1804,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1804,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1805,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1805,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1805,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1805,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1806,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1806,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1806,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1806,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1807,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1807,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1807,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1807,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1808,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1808,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1808,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1808,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1809,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1809,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1809,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1809,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1810,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1810,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1810,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1810,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1811,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1811,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1811,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1811,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1812,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1812,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1812,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1812,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1813,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1813,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1813,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1813,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1814,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1814,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1814,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1814,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1815,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1815,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1815,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1815,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1816,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1816,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1816,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1816,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1817,0,1,2,0.000000,0.000000,89.990000,89.990000,NULL),(1817,1,1,2,0.000000,0.000000,89.990000,89.990000,NULL),(1817,2,1,2,0.000000,0.000000,89.990000,89.990000,NULL),(1817,3,1,2,0.000000,0.000000,89.990000,89.990000,NULL),(1834,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1834,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1834,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1834,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1835,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1835,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1835,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1835,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1836,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1836,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1836,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1836,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1837,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1837,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1837,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1837,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1838,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1838,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1838,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1838,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1839,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1839,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1839,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1839,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1840,0,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(1840,1,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(1840,2,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(1840,3,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(1841,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1841,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1841,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1841,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1842,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1842,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1842,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1842,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1843,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1843,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1843,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1843,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1844,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1844,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1844,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1844,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1845,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1845,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1845,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1845,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1846,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1846,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1846,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1846,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1847,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1847,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1847,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1847,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1848,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1848,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1848,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1848,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1849,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1849,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1849,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1849,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1850,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1850,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1850,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1850,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1851,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1851,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1851,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1851,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1852,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1852,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1852,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1852,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1853,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1853,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1853,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1853,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1854,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1854,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1854,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1854,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1855,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1855,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1855,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1855,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1856,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1856,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1856,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1856,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1857,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1857,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1857,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1857,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1858,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1858,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1858,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1858,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1859,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1859,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1859,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1859,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1860,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1860,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1860,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1860,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1861,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1861,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1861,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1861,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1862,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1862,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1862,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1862,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1863,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1863,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1863,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1863,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1864,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1864,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1864,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1864,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1865,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1865,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1865,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1865,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1866,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1866,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1866,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1866,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(1867,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1867,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1867,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1867,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1868,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1868,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1868,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1868,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1869,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1869,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1869,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1869,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1870,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1870,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1870,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1870,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1871,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1871,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1871,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1871,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1872,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1872,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1872,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1872,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1873,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1873,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1873,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1873,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1874,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1874,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1874,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1874,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1875,0,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(1875,1,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(1875,2,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(1875,3,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(1876,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1876,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1876,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1876,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1877,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1877,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1877,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1877,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1878,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1878,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1878,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1878,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1879,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1879,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1879,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1879,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1880,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1880,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1880,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1880,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1881,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1881,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1881,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1881,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1882,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1882,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1882,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1882,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1883,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1883,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1883,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1883,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1884,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1884,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1884,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1884,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1885,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1885,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1885,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1885,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1886,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1886,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1886,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1886,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1887,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1887,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1887,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1887,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(1888,0,1,0,0.000000,0.000000,84.900000,84.900000,NULL),(1888,1,1,0,0.000000,0.000000,84.900000,84.900000,NULL),(1888,2,1,0,0.000000,0.000000,84.900000,84.900000,NULL),(1888,3,1,0,0.000000,0.000000,84.900000,84.900000,NULL),(1889,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1889,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1889,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1889,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1890,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1890,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1890,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1890,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1891,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1891,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1891,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1891,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(1892,0,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(1892,1,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(1892,2,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(1892,3,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(1893,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1893,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1893,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1893,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1894,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1894,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1894,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1894,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1895,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1895,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1895,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1895,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(1896,0,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(1896,1,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(1896,2,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(1896,3,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(1897,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1897,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1897,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1897,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1898,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1898,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1898,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1898,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1899,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1899,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1899,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1899,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1900,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1900,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1900,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1900,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1901,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1901,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1901,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1901,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1902,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1902,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1902,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1902,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1903,0,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(1903,1,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(1903,2,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(1903,3,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(1904,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1904,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1904,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1904,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1905,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1905,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1905,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1905,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1906,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1906,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1906,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1906,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1907,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1907,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1907,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1907,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1908,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1908,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1908,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1908,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1909,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1909,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1909,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1909,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1910,0,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(1910,1,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(1910,2,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(1910,3,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(1911,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1911,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1911,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1911,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1912,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1912,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1912,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1912,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1913,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1913,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1913,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1913,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1914,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1914,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1914,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1914,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1915,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1915,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1915,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1915,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1916,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1916,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1916,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1916,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1917,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1917,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1917,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1917,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1918,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1918,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1918,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1918,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1919,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1919,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1919,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1919,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1920,0,1,0,0.000000,0.000000,59.990000,59.990000,NULL),(1920,1,1,0,0.000000,0.000000,59.990000,59.990000,NULL),(1920,2,1,0,0.000000,0.000000,59.990000,59.990000,NULL),(1920,3,1,0,0.000000,0.000000,59.990000,59.990000,NULL),(1928,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1928,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1928,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1928,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1929,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1929,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1929,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1929,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1930,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1930,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1930,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1930,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1931,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1931,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1931,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1931,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1932,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1932,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1932,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1932,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1933,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1933,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1933,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1933,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1934,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1934,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1934,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1934,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1935,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1935,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1935,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1935,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1936,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1936,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1936,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1936,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1937,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1937,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1937,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1937,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1938,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1938,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1938,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1938,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1939,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1939,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1939,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1939,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1940,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1940,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1940,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1940,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1941,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1941,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1941,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1941,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1942,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1942,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1942,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1942,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(1943,0,1,2,0.000000,0.000000,185.000000,185.000000,NULL),(1943,1,1,2,0.000000,0.000000,185.000000,185.000000,NULL),(1943,2,1,2,0.000000,0.000000,185.000000,185.000000,NULL),(1943,3,1,2,0.000000,0.000000,185.000000,185.000000,NULL),(1944,0,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(1944,1,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(1944,2,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(1944,3,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(1945,0,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(1945,1,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(1945,2,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(1945,3,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(1946,0,1,2,0.000000,0.000000,59.990000,59.990000,NULL),(1946,1,1,2,0.000000,0.000000,59.990000,59.990000,NULL),(1946,2,1,2,0.000000,0.000000,59.990000,59.990000,NULL),(1946,3,1,2,0.000000,0.000000,59.990000,59.990000,NULL),(1947,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1947,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1947,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1947,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1948,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1948,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1948,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1948,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1949,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1949,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1949,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1949,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1950,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1950,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1950,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1950,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1951,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1951,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1951,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1951,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1952,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1952,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1952,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1952,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1953,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1953,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1953,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1953,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1954,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1954,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1954,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1954,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1955,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1955,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1955,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1955,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1956,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1956,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1956,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1956,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1957,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1957,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1957,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1957,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1958,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1958,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1958,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1958,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1959,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1959,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1959,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1959,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1960,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1960,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1960,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1960,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(1961,0,1,2,0.000000,0.000000,127.000000,127.000000,NULL),(1961,1,1,2,0.000000,0.000000,127.000000,127.000000,NULL),(1961,2,1,2,0.000000,0.000000,127.000000,127.000000,NULL),(1961,3,1,2,0.000000,0.000000,127.000000,127.000000,NULL),(1962,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1962,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1962,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1962,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1963,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1963,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1963,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1963,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1964,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1964,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1964,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1964,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1965,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1965,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1965,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1965,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1966,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1966,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1966,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1966,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1967,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1967,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1967,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1967,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1968,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1968,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1968,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1968,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1969,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1969,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1969,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1969,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1970,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1970,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1970,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1970,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1971,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1971,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1971,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1971,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1972,0,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(1972,1,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(1972,2,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(1972,3,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(1973,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1973,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1973,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1973,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1974,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1974,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1974,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1974,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1975,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1975,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1975,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1975,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1976,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1976,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1976,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1976,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1977,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1977,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1977,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1977,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1978,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1978,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1978,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1978,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1979,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1979,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1979,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1979,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1980,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1980,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1980,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1980,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1981,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1981,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1981,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1981,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1982,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1982,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1982,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1982,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1983,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1983,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1983,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1983,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1984,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1984,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1984,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1984,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1985,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1985,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1985,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1985,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1986,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1986,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1986,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1986,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1987,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1987,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1987,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1987,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1988,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1988,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1988,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1988,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1989,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1989,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1989,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1989,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1990,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1990,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1990,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1990,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1991,0,1,2,0.000000,0.000000,119.950000,119.950000,NULL),(1991,1,1,2,0.000000,0.000000,119.950000,119.950000,NULL),(1991,2,1,2,0.000000,0.000000,119.950000,119.950000,NULL),(1991,3,1,2,0.000000,0.000000,119.950000,119.950000,NULL),(1992,0,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1992,1,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1992,2,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1992,3,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1993,0,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1993,1,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1993,2,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1993,3,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1994,0,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1994,1,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1994,2,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1994,3,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1995,0,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1995,1,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1995,2,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1995,3,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1996,0,1,2,0.000000,0.000000,59.900000,59.900000,NULL),(1996,1,1,2,0.000000,0.000000,59.900000,59.900000,NULL),(1996,2,1,2,0.000000,0.000000,59.900000,59.900000,NULL),(1996,3,1,2,0.000000,0.000000,59.900000,59.900000,NULL),(1997,0,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(1997,1,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(1997,2,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(1997,3,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(1998,0,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(1998,1,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(1998,2,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(1998,3,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(1999,0,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(1999,1,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(1999,2,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(1999,3,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(2000,0,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(2000,1,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(2000,2,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(2000,3,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(2001,0,1,2,0.000000,0.000000,280.000000,280.000000,NULL),(2001,1,1,2,0.000000,0.000000,280.000000,280.000000,NULL),(2001,2,1,2,0.000000,0.000000,280.000000,280.000000,NULL),(2001,3,1,2,0.000000,0.000000,280.000000,280.000000,NULL),(2002,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2002,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2002,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2002,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2003,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2003,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2003,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2003,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2004,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2004,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2004,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2004,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2005,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2005,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2005,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2005,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2006,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2006,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2006,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2006,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2007,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2007,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2007,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2007,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2008,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2008,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2008,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2008,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2009,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2009,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2009,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2009,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(2010,0,1,2,0.000000,0.000000,69.950000,69.950000,NULL),(2010,1,1,2,0.000000,0.000000,69.950000,69.950000,NULL),(2010,2,1,2,0.000000,0.000000,69.950000,69.950000,NULL),(2010,3,1,2,0.000000,0.000000,69.950000,69.950000,NULL),(2011,0,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2011,1,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2011,2,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2011,3,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2012,0,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2012,1,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2012,2,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2012,3,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2013,0,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2013,1,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2013,2,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2013,3,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2014,0,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2014,1,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2014,2,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2014,3,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2015,0,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2015,1,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2015,2,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2015,3,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2016,0,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2016,1,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2016,2,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2016,3,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(2017,0,1,2,0.000000,0.000000,105.000000,105.000000,NULL),(2017,1,1,2,0.000000,0.000000,105.000000,105.000000,NULL),(2017,2,1,2,0.000000,0.000000,105.000000,105.000000,NULL),(2017,3,1,2,0.000000,0.000000,105.000000,105.000000,NULL),(2018,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2018,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2018,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2018,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2019,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2019,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2019,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2019,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2020,0,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(2020,1,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(2020,2,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(2020,3,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(2021,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2021,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2021,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2021,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2022,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2022,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2022,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2022,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2023,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2023,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2023,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2023,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2024,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2024,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2024,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2024,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2025,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2025,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2025,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2025,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2026,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2026,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2026,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2026,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2027,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2027,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2027,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2027,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2028,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2028,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2028,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2028,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2029,0,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(2029,1,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(2029,2,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(2029,3,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(2030,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(2030,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(2030,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(2030,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(2031,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(2031,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(2031,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(2031,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(2032,0,1,2,0.000000,0.000000,64.000000,64.000000,NULL),(2032,1,1,2,0.000000,0.000000,64.000000,64.000000,NULL),(2032,2,1,2,0.000000,0.000000,64.000000,64.000000,NULL),(2032,3,1,2,0.000000,0.000000,64.000000,64.000000,NULL),(2042,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2042,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2042,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2042,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2043,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2043,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2043,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2043,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2044,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2044,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2044,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2044,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2045,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2045,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2045,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2045,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2046,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2046,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2046,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2046,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2047,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2047,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2047,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2047,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2048,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2048,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2048,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2048,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2049,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2049,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2049,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2049,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2050,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2050,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2050,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2050,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2051,0,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2051,1,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2051,2,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2051,3,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2052,0,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2052,1,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2052,2,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2052,3,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2053,0,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2053,1,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2053,2,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2053,3,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2054,0,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2054,1,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2054,2,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2054,3,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(2055,0,1,2,0.000000,0.000000,111.000000,111.000000,NULL),(2055,1,1,2,0.000000,0.000000,111.000000,111.000000,NULL),(2055,2,1,2,0.000000,0.000000,111.000000,111.000000,NULL),(2055,3,1,2,0.000000,0.000000,111.000000,111.000000,NULL),(2056,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2056,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2056,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2056,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2057,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2057,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2057,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2057,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2058,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2058,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2058,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2058,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2059,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2059,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2059,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2059,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2060,0,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(2060,1,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(2060,2,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(2060,3,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(2061,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2061,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2061,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2061,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2062,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2062,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2062,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2062,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2063,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2063,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2063,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2063,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2064,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2064,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2064,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2064,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2065,0,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(2065,1,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(2065,2,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(2065,3,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(2066,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2066,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2066,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2066,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2067,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2067,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2067,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2067,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2068,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2068,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2068,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2068,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2069,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2069,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2069,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2069,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2070,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2070,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2070,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2070,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2071,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2071,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2071,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2071,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2072,0,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(2072,1,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(2072,2,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(2072,3,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(2073,0,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2073,1,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2073,2,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2073,3,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2074,0,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2074,1,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2074,2,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2074,3,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2075,0,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2075,1,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2075,2,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2075,3,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2076,0,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2076,1,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2076,2,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2076,3,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(2077,0,1,2,0.000000,0.000000,235.000000,235.000000,NULL),(2077,1,1,2,0.000000,0.000000,235.000000,235.000000,NULL),(2077,2,1,2,0.000000,0.000000,235.000000,235.000000,NULL),(2077,3,1,2,0.000000,0.000000,235.000000,235.000000,NULL),(2078,0,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2078,1,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2078,2,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2078,3,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2079,0,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2079,1,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2079,2,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2079,3,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2080,0,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2080,1,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2080,2,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2080,3,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2081,0,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2081,1,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2081,2,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2081,3,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2082,0,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2082,1,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2082,2,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2082,3,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2083,0,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2083,1,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2083,2,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2083,3,1,2,159.000000,159.000000,159.000000,159.000000,NULL),(2084,0,1,2,0.000000,0.000000,159.000000,159.000000,NULL),(2084,1,1,2,0.000000,0.000000,159.000000,159.000000,NULL),(2084,2,1,2,0.000000,0.000000,159.000000,159.000000,NULL),(2084,3,1,2,0.000000,0.000000,159.000000,159.000000,NULL),(2085,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2085,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2085,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2085,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2086,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2086,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2086,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2086,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2087,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2087,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2087,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2087,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2088,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2088,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2088,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2088,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2089,0,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(2089,1,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(2089,2,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(2089,3,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(2090,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2090,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2090,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2090,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2091,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2091,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2091,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2091,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2092,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2092,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2092,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2092,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2093,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2093,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2093,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2093,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2094,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2094,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2094,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2094,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2095,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2095,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2095,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2095,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2096,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2096,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2096,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2096,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2097,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2097,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2097,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2097,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(2098,0,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(2098,1,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(2098,2,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(2098,3,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(2099,0,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2099,1,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2099,2,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2099,3,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2100,0,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2100,1,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2100,2,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2100,3,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2101,0,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2101,1,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2101,2,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2101,3,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2102,0,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2102,1,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2102,2,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2102,3,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2103,0,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2103,1,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2103,2,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2103,3,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2104,0,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2104,1,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2104,2,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2104,3,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(2105,0,1,2,0.000000,0.000000,283.000000,283.000000,NULL),(2105,1,1,2,0.000000,0.000000,283.000000,283.000000,NULL),(2105,2,1,2,0.000000,0.000000,283.000000,283.000000,NULL),(2105,3,1,2,0.000000,0.000000,283.000000,283.000000,NULL),(2106,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2106,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2106,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2106,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2107,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2107,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2107,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2107,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2108,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2108,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2108,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2108,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2109,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2109,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2109,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2109,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2110,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2110,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2110,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2110,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2111,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2111,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2111,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2111,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2112,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2112,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2112,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2112,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2113,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2113,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2113,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2113,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2114,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2114,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2114,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2114,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2115,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2115,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2115,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2115,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(2116,0,1,2,0.000000,0.000000,65.950000,65.950000,NULL),(2116,1,1,2,0.000000,0.000000,65.950000,65.950000,NULL),(2116,2,1,2,0.000000,0.000000,65.950000,65.950000,NULL),(2116,3,1,2,0.000000,0.000000,65.950000,65.950000,NULL),(2117,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2117,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2117,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2117,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2118,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2118,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2118,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2118,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2119,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2119,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2119,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2119,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2120,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2120,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2120,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2120,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2121,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2121,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2121,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2121,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2122,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2122,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2122,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2122,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2123,0,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2123,1,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2123,2,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2123,3,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2124,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2124,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2124,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2124,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2125,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2125,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2125,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2125,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2126,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2126,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2126,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2126,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2127,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2127,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2127,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2127,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2128,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2128,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2128,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2128,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2129,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2129,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2129,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2129,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2130,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2130,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2130,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2130,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2131,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2131,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2131,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2131,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(2132,0,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(2132,1,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(2132,2,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(2132,3,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(2133,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(2133,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(2133,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(2133,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(2134,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(2134,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(2134,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(2134,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(2135,0,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(2135,1,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(2135,2,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(2135,3,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(2136,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2136,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2136,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2136,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2137,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2137,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2137,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2137,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2138,0,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(2138,1,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(2138,2,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(2138,3,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(2139,0,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2139,1,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2139,2,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2139,3,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2140,0,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2140,1,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2140,2,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2140,3,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2141,0,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2141,1,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2141,2,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2141,3,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2142,0,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2142,1,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2142,2,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2142,3,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2143,0,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2143,1,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2143,2,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2143,3,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2144,0,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2144,1,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2144,2,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2144,3,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(2145,0,1,2,0.000000,0.000000,99.950000,99.950000,NULL),(2145,1,1,2,0.000000,0.000000,99.950000,99.950000,NULL),(2145,2,1,2,0.000000,0.000000,99.950000,99.950000,NULL),(2145,3,1,2,0.000000,0.000000,99.950000,99.950000,NULL),(2146,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(2146,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(2146,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(2146,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(2147,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(2147,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(2147,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(2147,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(2148,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2148,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2148,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2148,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2149,0,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(2149,1,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(2149,2,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(2149,3,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(2150,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2150,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2150,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2150,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2151,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2151,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2151,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2151,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2152,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2152,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2152,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2152,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2153,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2153,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2153,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2153,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2154,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2154,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2154,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2154,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2155,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2155,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2155,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2155,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2156,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2156,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2156,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2156,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(2157,0,1,0,0.000000,0.000000,239.000000,239.000000,NULL),(2157,1,1,0,0.000000,0.000000,239.000000,239.000000,NULL),(2157,2,1,0,0.000000,0.000000,239.000000,239.000000,NULL),(2157,3,1,0,0.000000,0.000000,239.000000,239.000000,NULL),(2158,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2158,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2158,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2158,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2159,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2159,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2159,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2159,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2160,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2160,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2160,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2160,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2161,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2161,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2161,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2161,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2162,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2162,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2162,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2162,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2163,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2163,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2163,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2163,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2164,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2164,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2164,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2164,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2165,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2165,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2165,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2165,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2166,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2166,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2166,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2166,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2167,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2167,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2167,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2167,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2168,0,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(2168,1,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(2168,2,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(2168,3,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(2169,0,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(2169,1,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(2169,2,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(2169,3,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(2170,0,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(2170,1,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(2170,2,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(2170,3,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(2171,0,1,2,0.000000,0.000000,258.000000,258.000000,NULL),(2171,1,1,2,0.000000,0.000000,258.000000,258.000000,NULL),(2171,2,1,2,0.000000,0.000000,258.000000,258.000000,NULL),(2171,3,1,2,0.000000,0.000000,258.000000,258.000000,NULL),(2172,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2172,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2172,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2172,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2173,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2173,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2173,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2173,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2174,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2174,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2174,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2174,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2175,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2175,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2175,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2175,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2176,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2176,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2176,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2176,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2177,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2177,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2177,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2177,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2178,0,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(2178,1,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(2178,2,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(2178,3,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(2179,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2179,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2179,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2179,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2180,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2180,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2180,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2180,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2181,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2181,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2181,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2181,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2182,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2182,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2182,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2182,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2183,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2183,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2183,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2183,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2184,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2184,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2184,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2184,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(2185,0,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(2185,1,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(2185,2,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(2185,3,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(2186,0,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2186,1,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2186,2,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2186,3,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2187,0,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2187,1,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2187,2,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2187,3,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2188,0,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2188,1,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2188,2,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2188,3,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2189,0,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2189,1,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2189,2,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2189,3,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(2190,0,1,2,0.000000,0.000000,209.000000,209.000000,NULL),(2190,1,1,2,0.000000,0.000000,209.000000,209.000000,NULL),(2190,2,1,2,0.000000,0.000000,209.000000,209.000000,NULL),(2190,3,1,2,0.000000,0.000000,209.000000,209.000000,NULL),(2191,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2191,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2191,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2191,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2192,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2192,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2192,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2192,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2193,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2193,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2193,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2193,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2194,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2194,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2194,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2194,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2195,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2195,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2195,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2195,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2196,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2196,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2196,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2196,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2197,0,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(2197,1,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(2197,2,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(2197,3,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(2198,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2198,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2198,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2198,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2199,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2199,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2199,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2199,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2200,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2200,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2200,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2200,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2201,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2201,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2201,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2201,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2202,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2202,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2202,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2202,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2203,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2203,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2203,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2203,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2204,0,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2204,1,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2204,2,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2204,3,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2205,0,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2205,1,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2205,2,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2205,3,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2206,0,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2206,1,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2206,2,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2206,3,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2207,0,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(2207,1,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(2207,2,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(2207,3,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(2208,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2208,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2208,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2208,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2209,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2209,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2209,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2209,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2210,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2210,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2210,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2210,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2211,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2211,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2211,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2211,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2212,0,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(2212,1,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(2212,2,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(2212,3,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(2213,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2213,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2213,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2213,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2214,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2214,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2214,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2214,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2215,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2215,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2215,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2215,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2216,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2216,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2216,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2216,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2217,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2217,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2217,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2217,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2218,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2218,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2218,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2218,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2219,0,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2219,1,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2219,2,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2219,3,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2220,0,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2220,1,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2220,2,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2220,3,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2221,0,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2221,1,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2221,2,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2221,3,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(2222,0,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(2222,1,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(2222,2,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(2222,3,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(2223,0,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2223,1,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2223,2,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2223,3,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2224,0,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2224,1,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2224,2,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2224,3,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2225,0,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2225,1,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2225,2,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2225,3,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2226,0,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2226,1,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2226,2,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2226,3,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2227,0,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2227,1,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2227,2,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2227,3,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2228,0,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2228,1,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2228,2,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2228,3,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(2229,0,1,0,0.000000,0.000000,169.900000,169.900000,NULL),(2229,1,1,0,0.000000,0.000000,169.900000,169.900000,NULL),(2229,2,1,0,0.000000,0.000000,169.900000,169.900000,NULL),(2229,3,1,0,0.000000,0.000000,169.900000,169.900000,NULL),(2230,0,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2230,1,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2230,2,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2230,3,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2231,0,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2231,1,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2231,2,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2231,3,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2232,0,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2232,1,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2232,2,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2232,3,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2233,0,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2233,1,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2233,2,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2233,3,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(2234,0,1,2,0.000000,0.000000,140.000000,140.000000,NULL),(2234,1,1,2,0.000000,0.000000,140.000000,140.000000,NULL),(2234,2,1,2,0.000000,0.000000,140.000000,140.000000,NULL),(2234,3,1,2,0.000000,0.000000,140.000000,140.000000,NULL),(2235,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2235,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2235,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2235,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2236,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2236,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2236,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2236,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2237,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2237,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2237,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2237,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2238,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2238,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2238,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2238,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2239,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2239,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2239,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2239,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2240,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2240,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2240,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2240,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2241,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2241,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2241,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2241,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2242,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2242,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2242,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2242,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2243,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2243,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2243,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2243,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2244,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2244,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2244,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2244,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2245,0,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(2245,1,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(2245,2,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(2245,3,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(2246,0,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2246,1,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2246,2,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2246,3,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2247,0,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2247,1,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2247,2,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2247,3,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2248,0,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2248,1,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2248,2,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2248,3,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2249,0,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2249,1,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2249,2,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2249,3,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2250,0,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2250,1,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2250,2,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2250,3,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2251,0,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2251,1,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2251,2,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2251,3,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(2252,0,1,2,0.000000,0.000000,89.950000,89.950000,NULL),(2252,1,1,2,0.000000,0.000000,89.950000,89.950000,NULL),(2252,2,1,2,0.000000,0.000000,89.950000,89.950000,NULL),(2252,3,1,2,0.000000,0.000000,89.950000,89.950000,NULL),(2253,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2253,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2253,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2253,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2254,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2254,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2254,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2254,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(2255,0,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(2255,1,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(2255,2,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(2255,3,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(2256,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2256,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2256,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2256,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2257,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2257,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2257,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2257,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2258,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2258,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2258,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2258,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2259,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2259,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2259,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2259,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2260,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2260,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2260,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2260,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2261,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2261,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2261,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2261,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2262,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2262,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2262,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2262,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2263,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2263,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2263,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2263,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2264,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2264,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2264,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2264,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2265,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2265,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2265,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2265,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2266,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2266,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2266,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2266,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2267,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2267,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2267,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2267,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(2268,0,1,2,0.000000,0.000000,198.000000,198.000000,NULL),(2268,1,1,2,0.000000,0.000000,198.000000,198.000000,NULL),(2268,2,1,2,0.000000,0.000000,198.000000,198.000000,NULL),(2268,3,1,2,0.000000,0.000000,198.000000,198.000000,NULL),(2278,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2278,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2278,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2278,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2279,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2279,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2279,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2279,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2280,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2280,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2280,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2280,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2281,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2281,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2281,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2281,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2282,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2282,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2282,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2282,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2283,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2283,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2283,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2283,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2284,0,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(2284,1,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(2284,2,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(2284,3,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(2285,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2285,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2285,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2285,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2286,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2286,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2286,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2286,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2287,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2287,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2287,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2287,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2288,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2288,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2288,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2288,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2289,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2289,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2289,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2289,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2290,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2290,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2290,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2290,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(2291,0,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(2291,1,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(2291,2,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(2291,3,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(2292,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2292,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2292,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2292,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2293,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2293,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2293,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2293,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2294,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2294,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2294,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2294,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2295,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2295,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2295,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2295,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2296,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2296,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2296,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2296,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2297,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2297,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2297,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2297,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2298,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2298,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2298,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2298,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2299,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2299,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2299,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2299,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(2300,0,1,0,0.000000,0.000000,199.900000,199.900000,NULL),(2300,1,1,0,0.000000,0.000000,199.900000,199.900000,NULL),(2300,2,1,0,0.000000,0.000000,199.900000,199.900000,NULL),(2300,3,1,0,0.000000,0.000000,199.900000,199.900000,NULL),(2301,0,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2301,1,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2301,2,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2301,3,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2302,0,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2302,1,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2302,2,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2302,3,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2303,0,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2303,1,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2303,2,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2303,3,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2304,0,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2304,1,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2304,2,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2304,3,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2305,0,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2305,1,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2305,2,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2305,3,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2306,0,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2306,1,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2306,2,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2306,3,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2307,0,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2307,1,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2307,2,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2307,3,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2308,0,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2308,1,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2308,2,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2308,3,1,2,59.950000,59.950000,59.950000,59.950000,NULL),(2309,0,1,2,0.000000,0.000000,59.950000,59.950000,NULL),(2309,1,1,2,0.000000,0.000000,59.950000,59.950000,NULL),(2309,2,1,2,0.000000,0.000000,59.950000,59.950000,NULL),(2309,3,1,2,0.000000,0.000000,59.950000,59.950000,NULL),(2310,0,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2310,1,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2310,2,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2310,3,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2311,0,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2311,1,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2311,2,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2311,3,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2312,0,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2312,1,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2312,2,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2312,3,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2313,0,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2313,1,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2313,2,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2313,3,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2314,0,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2314,1,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2314,2,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2314,3,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2315,0,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2315,1,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2315,2,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2315,3,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2316,0,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2316,1,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2316,2,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2316,3,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2317,0,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2317,1,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2317,2,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2317,3,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2318,0,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2318,1,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2318,2,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2318,3,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2319,0,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2319,1,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2319,2,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2319,3,1,2,79.950000,79.950000,79.950000,79.950000,NULL),(2320,0,1,2,0.000000,0.000000,79.950000,79.950000,NULL),(2320,1,1,2,0.000000,0.000000,79.950000,79.950000,NULL),(2320,2,1,2,0.000000,0.000000,79.950000,79.950000,NULL),(2320,3,1,2,0.000000,0.000000,79.950000,79.950000,NULL),(2330,0,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2330,1,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2330,2,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2330,3,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2331,0,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2331,1,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2331,2,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2331,3,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2332,0,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2332,1,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2332,2,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2332,3,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2333,0,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2333,1,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2333,2,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2333,3,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2334,0,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2334,1,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2334,2,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2334,3,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2335,0,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2335,1,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2335,2,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2335,3,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(2336,0,1,0,0.000000,0.000000,66.900000,66.900000,NULL),(2336,1,1,0,0.000000,0.000000,66.900000,66.900000,NULL),(2336,2,1,0,0.000000,0.000000,66.900000,66.900000,NULL),(2336,3,1,0,0.000000,0.000000,66.900000,66.900000,NULL),(2337,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2337,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2337,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2337,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2338,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2338,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2338,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2338,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2339,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2339,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2339,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2339,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2340,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2340,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2340,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2340,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2341,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2341,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2341,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2341,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2342,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2342,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2342,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2342,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2343,0,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2343,1,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2343,2,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2343,3,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2344,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2344,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2344,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2344,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2345,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2345,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2345,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2345,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2346,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2346,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2346,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2346,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2347,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2347,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2347,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2347,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2348,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2348,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2348,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2348,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2349,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2349,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2349,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2349,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(2350,0,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(2350,1,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(2350,2,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(2350,3,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(2351,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2351,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2351,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2351,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2352,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2352,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2352,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2352,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2353,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2353,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2353,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2353,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2354,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2354,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2354,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2354,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2355,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2355,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2355,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2355,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2356,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2356,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2356,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2356,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(2357,0,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2357,1,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2357,2,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2357,3,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(2358,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2358,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2358,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2358,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2359,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2359,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2359,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2359,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2360,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2360,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2360,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2360,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2361,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2361,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2361,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2361,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2362,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2362,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2362,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2362,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2363,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2363,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2363,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2363,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2364,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2364,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2364,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2364,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2365,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2365,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2365,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2365,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(2366,0,1,0,0.000000,0.000000,229.000000,229.000000,NULL),(2366,1,1,0,0.000000,0.000000,229.000000,229.000000,NULL),(2366,2,1,0,0.000000,0.000000,229.000000,229.000000,NULL),(2366,3,1,0,0.000000,0.000000,229.000000,229.000000,NULL),(2367,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2367,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2367,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2367,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2368,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2368,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2368,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2368,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2369,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2369,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2369,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2369,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2370,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2370,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2370,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2370,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2371,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2371,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2371,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2371,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2372,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2372,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2372,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2372,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(2373,0,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(2373,1,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(2373,2,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(2373,3,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(2374,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2374,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2374,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2374,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2375,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2375,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2375,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2375,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2376,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2376,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2376,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2376,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2377,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2377,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2377,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2377,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2378,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2378,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2378,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2378,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2379,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2379,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2379,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2379,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2380,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2380,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2380,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2380,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2381,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2381,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2381,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2381,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2382,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2382,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2382,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2382,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2383,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2383,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2383,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2383,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2384,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2384,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2384,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2384,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2385,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2385,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2385,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2385,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2386,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2386,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2386,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2386,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2387,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2387,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2387,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2387,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2388,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2388,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2388,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2388,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2389,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2389,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2389,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2389,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2390,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2390,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2390,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2390,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2391,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2391,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2391,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2391,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2392,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2392,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2392,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2392,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2393,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2393,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2393,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2393,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2394,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2394,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2394,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2394,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2395,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2395,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2395,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2395,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(2396,0,1,0,0.000000,0.000000,79.900000,79.900000,NULL),(2396,1,1,0,0.000000,0.000000,79.900000,79.900000,NULL),(2396,2,1,0,0.000000,0.000000,79.900000,79.900000,NULL),(2396,3,1,0,0.000000,0.000000,79.900000,79.900000,NULL),(2397,0,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2397,1,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2397,2,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2397,3,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2398,0,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2398,1,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2398,2,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2398,3,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2399,0,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2399,1,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2399,2,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2399,3,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2400,0,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2400,1,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2400,2,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2400,3,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2401,0,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2401,1,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2401,2,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2401,3,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2402,0,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2402,1,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2402,2,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2402,3,1,2,49.900000,49.900000,49.900000,49.900000,NULL),(2403,0,1,2,0.000000,0.000000,49.900000,49.900000,NULL),(2403,1,1,2,0.000000,0.000000,49.900000,49.900000,NULL),(2403,2,1,2,0.000000,0.000000,49.900000,49.900000,NULL),(2403,3,1,2,0.000000,0.000000,49.900000,49.900000,NULL),(2404,0,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2404,1,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2404,2,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2404,3,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2405,0,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2405,1,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2405,2,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2405,3,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2406,0,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2406,1,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2406,2,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2406,3,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2407,0,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2407,1,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2407,2,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2407,3,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2408,0,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2408,1,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2408,2,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2408,3,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2409,0,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2409,1,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2409,2,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2409,3,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(2410,0,1,2,0.000000,0.000000,129.950000,129.950000,NULL),(2410,1,1,2,0.000000,0.000000,129.950000,129.950000,NULL),(2410,2,1,2,0.000000,0.000000,129.950000,129.950000,NULL),(2410,3,1,2,0.000000,0.000000,129.950000,129.950000,NULL),(2411,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2411,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2411,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2411,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2412,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2412,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2412,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2412,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2413,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2413,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2413,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2413,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2414,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2414,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2414,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2414,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2415,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2415,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2415,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2415,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2416,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2416,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2416,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2416,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(2417,0,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(2417,1,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(2417,2,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(2417,3,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(2418,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2418,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2418,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2418,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2419,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2419,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2419,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2419,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2420,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2420,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2420,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2420,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2421,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2421,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2421,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2421,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2422,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2422,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2422,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2422,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2423,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2423,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2423,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2423,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(2424,0,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(2424,1,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(2424,2,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(2424,3,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(2425,0,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2425,1,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2425,2,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2425,3,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2426,0,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2426,1,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2426,2,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2426,3,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2427,0,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2427,1,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2427,2,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2427,3,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2428,0,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2428,1,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2428,2,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2428,3,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2429,0,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2429,1,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2429,2,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2429,3,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2430,0,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2430,1,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2430,2,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2430,3,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(2431,0,1,0,0.000000,0.000000,119.000000,119.000000,NULL),(2431,1,1,0,0.000000,0.000000,119.000000,119.000000,NULL),(2431,2,1,0,0.000000,0.000000,119.000000,119.000000,NULL),(2431,3,1,0,0.000000,0.000000,119.000000,119.000000,NULL),(2432,0,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2432,1,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2432,2,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2432,3,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2433,0,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2433,1,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2433,2,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2433,3,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2434,0,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2434,1,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2434,2,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2434,3,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2435,0,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2435,1,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2435,2,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2435,3,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2436,0,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2436,1,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2436,2,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2436,3,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2437,0,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2437,1,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2437,2,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2437,3,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2438,0,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2438,1,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2438,2,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2438,3,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2439,0,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2439,1,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2439,2,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2439,3,1,2,19.900000,19.900000,19.900000,19.900000,NULL),(2440,0,1,2,0.000000,0.000000,19.900000,19.900000,NULL),(2440,1,1,2,0.000000,0.000000,19.900000,19.900000,NULL),(2440,2,1,2,0.000000,0.000000,19.900000,19.900000,NULL),(2440,3,1,2,0.000000,0.000000,19.900000,19.900000,NULL),(2441,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2441,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2441,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2441,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2442,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2442,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2442,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2442,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2443,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2443,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2443,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2443,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2444,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2444,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2444,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2444,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2445,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2445,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2445,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2445,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2446,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2446,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2446,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2446,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2447,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2447,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2447,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2447,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2448,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2448,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2448,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2448,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2449,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2449,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2449,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2449,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2450,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2450,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2450,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2450,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2451,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2451,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2451,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2451,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2452,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2452,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2452,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2452,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2453,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2453,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2453,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2453,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2454,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2454,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2454,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2454,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2455,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2455,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2455,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2455,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2456,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2456,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2456,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2456,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2457,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2457,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2457,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2457,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2458,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2458,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2458,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2458,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2459,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2459,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2459,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2459,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2460,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2460,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2460,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2460,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2461,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2461,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2461,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2461,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2462,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2462,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2462,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2462,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2463,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2463,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2463,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2463,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2464,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2464,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2464,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2464,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2465,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2465,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2465,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2465,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2466,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2466,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2466,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2466,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2467,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2467,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2467,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2467,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2468,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2468,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2468,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2468,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2469,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2469,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2469,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2469,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2470,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2470,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2470,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2470,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2471,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2471,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2471,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2471,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2472,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2472,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2472,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2472,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2473,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2473,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2473,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2473,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2474,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2474,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2474,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2474,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2475,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2475,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2475,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2475,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2476,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2476,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2476,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2476,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2477,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2477,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2477,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2477,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2478,0,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(2478,1,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(2478,2,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(2478,3,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(2479,0,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2479,1,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2479,2,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2479,3,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2480,0,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2480,1,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2480,2,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2480,3,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2481,0,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2481,1,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2481,2,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2481,3,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2482,0,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2482,1,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2482,2,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2482,3,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2483,0,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2483,1,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2483,2,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2483,3,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2484,0,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2484,1,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2484,2,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2484,3,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2485,0,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2485,1,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2485,2,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2485,3,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2486,0,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2486,1,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2486,2,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2486,3,1,2,14.900000,14.900000,14.900000,14.900000,NULL),(2487,0,1,2,0.000000,0.000000,14.900000,14.900000,NULL),(2487,1,1,2,0.000000,0.000000,14.900000,14.900000,NULL),(2487,2,1,2,0.000000,0.000000,14.900000,14.900000,NULL),(2487,3,1,2,0.000000,0.000000,14.900000,14.900000,NULL),(2488,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2488,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2488,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2488,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2489,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2489,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2489,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2489,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2490,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2490,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2490,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2490,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2491,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2491,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2491,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2491,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2492,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2492,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2492,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2492,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2493,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2493,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2493,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2493,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2494,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2494,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2494,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2494,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2495,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2495,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2495,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2495,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2496,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2496,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2496,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2496,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2497,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2497,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2497,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2497,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2498,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2498,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2498,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2498,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2499,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2499,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2499,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2499,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2500,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2500,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2500,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2500,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2501,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2501,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2501,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2501,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2502,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2502,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2502,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2502,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2503,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2503,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2503,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2503,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2504,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2504,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2504,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2504,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2505,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2505,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2505,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2505,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2506,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2506,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2506,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2506,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2507,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2507,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2507,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2507,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2508,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2508,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2508,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2508,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2509,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2509,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2509,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2509,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2510,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2510,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2510,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2510,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2511,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2511,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2511,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2511,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2512,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2512,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2512,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2512,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2513,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2513,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2513,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2513,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2514,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2514,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2514,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2514,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2515,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2515,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2515,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2515,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2516,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2516,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2516,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2516,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(2517,0,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(2517,1,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(2517,2,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(2517,3,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(2518,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2518,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2518,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2518,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2519,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2519,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2519,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2519,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2520,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2520,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2520,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2520,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2521,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2521,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2521,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2521,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2522,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2522,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2522,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2522,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2523,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2523,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2523,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2523,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(2524,0,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(2524,1,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(2524,2,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(2524,3,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(2525,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2525,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2525,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2525,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2526,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2526,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2526,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2526,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2527,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2527,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2527,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2527,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2528,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2528,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2528,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2528,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2529,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2529,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2529,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2529,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2530,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2530,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2530,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2530,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2531,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2531,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2531,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2531,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2532,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2532,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2532,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2532,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(2533,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2533,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2533,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2533,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(2534,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2534,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2534,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2534,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2535,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2535,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2535,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2535,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2536,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2536,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2536,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2536,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2537,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2537,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2537,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2537,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2538,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2538,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2538,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2538,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2539,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2539,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2539,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2539,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2540,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2540,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2540,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2540,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2541,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2541,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2541,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2541,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(2542,0,1,0,0.000000,0.000000,77.900000,77.900000,NULL),(2542,1,1,0,0.000000,0.000000,77.900000,77.900000,NULL),(2542,2,1,0,0.000000,0.000000,77.900000,77.900000,NULL),(2542,3,1,0,0.000000,0.000000,77.900000,77.900000,NULL);
/*!40000 ALTER TABLE `catalog_product_index_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_bundle_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_bundle_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `price_type` smallint(5) unsigned NOT NULL COMMENT 'Price Type',
  `special_price` decimal(20,6) DEFAULT NULL COMMENT 'Special Price',
  `tier_percent` decimal(20,6) DEFAULT NULL COMMENT 'Tier Percent',
  `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Orig Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Idx';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_bundle_idx`
--

LOCK TABLES `catalog_product_index_price_bundle_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_bundle_opt_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_opt_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_bundle_opt_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Option Id',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `alt_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `alt_tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Opt Idx';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_bundle_opt_idx`
--

LOCK TABLES `catalog_product_index_price_bundle_opt_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_bundle_opt_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_opt_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_bundle_opt_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Option Id',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `alt_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `alt_tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Opt Tmp';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_bundle_opt_tmp`
--

LOCK TABLES `catalog_product_index_price_bundle_opt_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_bundle_sel_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_sel_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_bundle_sel_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Option Id',
  `selection_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Selection Id',
  `group_type` smallint(5) unsigned DEFAULT '0' COMMENT 'Group Type',
  `is_required` smallint(5) unsigned DEFAULT '0' COMMENT 'Is Required',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Sel Idx';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_bundle_sel_idx`
--

LOCK TABLES `catalog_product_index_price_bundle_sel_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_bundle_sel_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_sel_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_bundle_sel_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Option Id',
  `selection_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Selection Id',
  `group_type` smallint(5) unsigned DEFAULT '0' COMMENT 'Group Type',
  `is_required` smallint(5) unsigned DEFAULT '0' COMMENT 'Is Required',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Sel Tmp';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_bundle_sel_tmp`
--

LOCK TABLES `catalog_product_index_price_bundle_sel_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_bundle_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_bundle_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `price_type` smallint(5) unsigned NOT NULL COMMENT 'Price Type',
  `special_price` decimal(20,6) DEFAULT NULL COMMENT 'Special Price',
  `tier_percent` decimal(20,6) DEFAULT NULL COMMENT 'Tier Percent',
  `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Orig Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Tmp';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_bundle_tmp`
--

LOCK TABLES `catalog_product_index_price_bundle_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_cfg_opt_agr_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_agr_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_cfg_opt_agr_idx` (
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `child_id` int(10) unsigned NOT NULL COMMENT 'Child ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`parent_id`,`child_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Aggregate Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_cfg_opt_agr_idx`
--

LOCK TABLES `catalog_product_index_price_cfg_opt_agr_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_cfg_opt_agr_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_agr_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_cfg_opt_agr_tmp` (
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `child_id` int(10) unsigned NOT NULL COMMENT 'Child ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`parent_id`,`child_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Aggregate Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_cfg_opt_agr_tmp`
--

LOCK TABLES `catalog_product_index_price_cfg_opt_agr_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_cfg_opt_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_cfg_opt_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_cfg_opt_idx`
--

LOCK TABLES `catalog_product_index_price_cfg_opt_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_cfg_opt_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_cfg_opt_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_cfg_opt_tmp`
--

LOCK TABLES `catalog_product_index_price_cfg_opt_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_downlod_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_downlod_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_downlod_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Minimum price',
  `max_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Maximum price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Indexer Table for price of downloadable products';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_downlod_idx`
--

LOCK TABLES `catalog_product_index_price_downlod_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_downlod_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_downlod_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_downlod_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_downlod_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_downlod_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Minimum price',
  `max_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Maximum price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Temporary Indexer Table for price of downloadable products';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_downlod_tmp`
--

LOCK TABLES `catalog_product_index_price_downlod_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_downlod_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_downlod_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_final_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_final_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_final_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Original Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Final Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_final_idx`
--

LOCK TABLES `catalog_product_index_price_final_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_final_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_final_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_final_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_final_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_final_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Original Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Final Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_final_tmp`
--

LOCK TABLES `catalog_product_index_price_final_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_final_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_final_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_IDX_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_IDX_WEBSITE_ID` (`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_IDX_MIN_PRICE` (`min_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_idx`
--

LOCK TABLES `catalog_product_index_price_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_opt_agr_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_opt_agr_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_opt_agr_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Aggregate Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_opt_agr_idx`
--

LOCK TABLES `catalog_product_index_price_opt_agr_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_opt_agr_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_opt_agr_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_opt_agr_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Aggregate Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_opt_agr_tmp`
--

LOCK TABLES `catalog_product_index_price_opt_agr_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_opt_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_opt_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_opt_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_opt_idx`
--

LOCK TABLES `catalog_product_index_price_opt_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_opt_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_opt_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_opt_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_opt_tmp`
--

LOCK TABLES `catalog_product_index_price_opt_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_replica`
--

DROP TABLE IF EXISTS `catalog_product_index_price_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_replica` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_MIN_PRICE` (`min_price`),
  KEY `CAT_PRD_IDX_PRICE_WS_ID_CSTR_GROUP_ID_MIN_PRICE` (`website_id`,`customer_group_id`,`min_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_replica`
--

LOCK TABLES `catalog_product_index_price_replica` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_replica` DISABLE KEYS */;
INSERT INTO `catalog_product_index_price_replica` VALUES (1,0,1,0,0.000000,0.000000,59.990000,59.990000,NULL),(1,1,1,0,0.000000,0.000000,59.990000,59.990000,NULL),(1,2,1,0,0.000000,0.000000,59.990000,59.990000,NULL),(1,3,1,0,0.000000,0.000000,59.990000,59.990000,NULL),(2,0,1,0,0.000000,0.000000,79.900000,79.900000,NULL),(2,1,1,0,0.000000,0.000000,79.900000,79.900000,NULL),(2,2,1,0,0.000000,0.000000,79.900000,79.900000,NULL),(2,3,1,0,0.000000,0.000000,79.900000,79.900000,NULL),(3,0,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(3,1,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(3,2,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(3,3,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(4,0,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(4,1,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(4,2,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(4,3,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(5,0,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(5,1,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(5,2,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(5,3,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(6,0,1,2,0.000000,0.000000,59.990000,59.990000,NULL),(6,1,1,2,0.000000,0.000000,59.990000,59.990000,NULL),(6,2,1,2,0.000000,0.000000,59.990000,59.990000,NULL),(6,3,1,2,0.000000,0.000000,59.990000,59.990000,NULL),(7,0,1,2,0.000000,0.000000,105.000000,105.000000,NULL),(7,1,1,2,0.000000,0.000000,105.000000,105.000000,NULL),(7,2,1,2,0.000000,0.000000,105.000000,105.000000,NULL),(7,3,1,2,0.000000,0.000000,105.000000,105.000000,NULL),(8,0,1,2,0.000000,0.000000,120.000000,120.000000,NULL),(8,1,1,2,0.000000,0.000000,120.000000,120.000000,NULL),(8,2,1,2,0.000000,0.000000,120.000000,120.000000,NULL),(8,3,1,2,0.000000,0.000000,120.000000,120.000000,NULL),(9,0,1,2,0.000000,0.000000,129.950000,129.950000,NULL),(9,1,1,2,0.000000,0.000000,129.950000,129.950000,NULL),(9,2,1,2,0.000000,0.000000,129.950000,129.950000,NULL),(9,3,1,2,0.000000,0.000000,129.950000,129.950000,NULL),(10,0,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(10,1,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(10,2,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(10,3,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(11,0,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(11,1,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(11,2,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(11,3,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(12,0,1,2,0.000000,0.000000,99.950000,99.950000,NULL),(12,1,1,2,0.000000,0.000000,99.950000,99.950000,NULL),(12,2,1,2,0.000000,0.000000,99.950000,99.950000,NULL),(12,3,1,2,0.000000,0.000000,99.950000,99.950000,NULL),(15,0,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(15,1,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(15,2,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(15,3,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(16,0,1,2,0.000000,0.000000,119.950000,119.950000,NULL),(16,1,1,2,0.000000,0.000000,119.950000,119.950000,NULL),(16,2,1,2,0.000000,0.000000,119.950000,119.950000,NULL),(16,3,1,2,0.000000,0.000000,119.950000,119.950000,NULL),(17,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(17,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(17,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(17,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(18,0,1,2,0.000000,0.000000,19.900000,19.900000,NULL),(18,1,1,2,0.000000,0.000000,19.900000,19.900000,NULL),(18,2,1,2,0.000000,0.000000,19.900000,19.900000,NULL),(18,3,1,2,0.000000,0.000000,19.900000,19.900000,NULL),(19,0,1,2,0.000000,0.000000,89.950000,89.950000,NULL),(19,1,1,2,0.000000,0.000000,89.950000,89.950000,NULL),(19,2,1,2,0.000000,0.000000,89.950000,89.950000,NULL),(19,3,1,2,0.000000,0.000000,89.950000,89.950000,NULL),(20,0,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(20,1,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(20,2,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(20,3,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(22,0,1,2,0.000000,0.000000,19.900000,19.900000,NULL),(22,1,1,2,0.000000,0.000000,19.900000,19.900000,NULL),(22,2,1,2,0.000000,0.000000,19.900000,19.900000,NULL),(22,3,1,2,0.000000,0.000000,19.900000,19.900000,NULL),(24,0,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(24,1,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(24,2,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(24,3,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(25,0,1,2,0.000000,0.000000,127.000000,127.000000,NULL),(25,1,1,2,0.000000,0.000000,127.000000,127.000000,NULL),(25,2,1,2,0.000000,0.000000,127.000000,127.000000,NULL),(25,3,1,2,0.000000,0.000000,127.000000,127.000000,NULL),(26,0,1,2,0.000000,0.000000,65.950000,65.950000,NULL),(26,1,1,2,0.000000,0.000000,65.950000,65.950000,NULL),(26,2,1,2,0.000000,0.000000,65.950000,65.950000,NULL),(26,3,1,2,0.000000,0.000000,65.950000,65.950000,NULL),(29,0,1,2,0.000000,0.000000,128.000000,128.000000,NULL),(29,1,1,2,0.000000,0.000000,128.000000,128.000000,NULL),(29,2,1,2,0.000000,0.000000,128.000000,128.000000,NULL),(29,3,1,2,0.000000,0.000000,128.000000,128.000000,NULL),(30,0,1,2,0.000000,0.000000,49.900000,49.900000,NULL),(30,1,1,2,0.000000,0.000000,49.900000,49.900000,NULL),(30,2,1,2,0.000000,0.000000,49.900000,49.900000,NULL),(30,3,1,2,0.000000,0.000000,49.900000,49.900000,NULL),(31,0,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(31,1,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(31,2,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(31,3,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(32,0,1,2,0.000000,0.000000,235.000000,235.000000,NULL),(32,1,1,2,0.000000,0.000000,235.000000,235.000000,NULL),(32,2,1,2,0.000000,0.000000,235.000000,235.000000,NULL),(32,3,1,2,0.000000,0.000000,235.000000,235.000000,NULL),(33,0,1,2,0.000000,0.000000,69.950000,69.950000,NULL),(33,1,1,2,0.000000,0.000000,69.950000,69.950000,NULL),(33,2,1,2,0.000000,0.000000,69.950000,69.950000,NULL),(33,3,1,2,0.000000,0.000000,69.950000,69.950000,NULL),(34,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(34,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(34,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(34,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(35,0,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(35,1,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(35,2,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(35,3,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(36,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(36,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(36,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(36,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(38,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(38,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(38,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(38,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(41,0,1,0,0.000000,0.000000,199.900000,199.900000,NULL),(41,1,1,0,0.000000,0.000000,199.900000,199.900000,NULL),(41,2,1,0,0.000000,0.000000,199.900000,199.900000,NULL),(41,3,1,0,0.000000,0.000000,199.900000,199.900000,NULL),(42,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(42,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(42,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(42,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(43,0,1,2,0.000000,0.000000,185.000000,185.000000,NULL),(43,1,1,2,0.000000,0.000000,185.000000,185.000000,NULL),(43,2,1,2,0.000000,0.000000,185.000000,185.000000,NULL),(43,3,1,2,0.000000,0.000000,185.000000,185.000000,NULL),(44,0,1,2,0.000000,0.000000,280.000000,280.000000,NULL),(44,1,1,2,0.000000,0.000000,280.000000,280.000000,NULL),(44,2,1,2,0.000000,0.000000,280.000000,280.000000,NULL),(44,3,1,2,0.000000,0.000000,280.000000,280.000000,NULL),(45,0,1,2,0.000000,0.000000,12.900000,12.900000,NULL),(45,1,1,2,0.000000,0.000000,12.900000,12.900000,NULL),(45,2,1,2,0.000000,0.000000,12.900000,12.900000,NULL),(45,3,1,2,0.000000,0.000000,12.900000,12.900000,NULL),(46,0,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(46,1,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(46,2,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(46,3,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(47,0,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(47,1,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(47,2,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(47,3,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(48,0,1,2,0.000000,0.000000,209.000000,209.000000,NULL),(48,1,1,2,0.000000,0.000000,209.000000,209.000000,NULL),(48,2,1,2,0.000000,0.000000,209.000000,209.000000,NULL),(48,3,1,2,0.000000,0.000000,209.000000,209.000000,NULL),(49,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(49,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(49,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(49,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(50,0,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(50,1,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(50,2,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(50,3,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(51,0,1,2,0.000000,0.000000,59.900000,59.900000,NULL),(51,1,1,2,0.000000,0.000000,59.900000,59.900000,NULL),(51,2,1,2,0.000000,0.000000,59.900000,59.900000,NULL),(51,3,1,2,0.000000,0.000000,59.900000,59.900000,NULL),(53,0,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(53,1,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(53,2,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(53,3,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(54,0,1,2,0.000000,0.000000,198.000000,198.000000,NULL),(54,1,1,2,0.000000,0.000000,198.000000,198.000000,NULL),(54,2,1,2,0.000000,0.000000,198.000000,198.000000,NULL),(54,3,1,2,0.000000,0.000000,198.000000,198.000000,NULL),(55,0,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(55,1,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(55,2,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(55,3,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(56,0,1,0,0.000000,0.000000,119.000000,119.000000,NULL),(56,1,1,0,0.000000,0.000000,119.000000,119.000000,NULL),(56,2,1,0,0.000000,0.000000,119.000000,119.000000,NULL),(56,3,1,0,0.000000,0.000000,119.000000,119.000000,NULL),(57,0,1,2,0.000000,0.000000,14.900000,14.900000,NULL),(57,1,1,2,0.000000,0.000000,14.900000,14.900000,NULL),(57,2,1,2,0.000000,0.000000,14.900000,14.900000,NULL),(57,3,1,2,0.000000,0.000000,14.900000,14.900000,NULL),(58,0,1,2,0.000000,0.000000,140.000000,140.000000,NULL),(58,1,1,2,0.000000,0.000000,140.000000,140.000000,NULL),(58,2,1,2,0.000000,0.000000,140.000000,140.000000,NULL),(58,3,1,2,0.000000,0.000000,140.000000,140.000000,NULL),(59,0,1,0,0.000000,0.000000,239.000000,239.000000,NULL),(59,1,1,0,0.000000,0.000000,239.000000,239.000000,NULL),(59,2,1,0,0.000000,0.000000,239.000000,239.000000,NULL),(59,3,1,0,0.000000,0.000000,239.000000,239.000000,NULL),(60,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(60,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(60,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(60,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(61,0,1,2,0.000000,0.000000,111.000000,111.000000,NULL),(61,1,1,2,0.000000,0.000000,111.000000,111.000000,NULL),(61,2,1,2,0.000000,0.000000,111.000000,111.000000,NULL),(61,3,1,2,0.000000,0.000000,111.000000,111.000000,NULL),(63,0,1,2,0.000000,0.000000,89.990000,89.990000,NULL),(63,1,1,2,0.000000,0.000000,89.990000,89.990000,NULL),(63,2,1,2,0.000000,0.000000,89.990000,89.990000,NULL),(63,3,1,2,0.000000,0.000000,89.990000,89.990000,NULL),(64,0,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(64,1,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(64,2,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(64,3,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(65,0,1,2,0.000000,0.000000,283.000000,283.000000,NULL),(65,1,1,2,0.000000,0.000000,283.000000,283.000000,NULL),(65,2,1,2,0.000000,0.000000,283.000000,283.000000,NULL),(65,3,1,2,0.000000,0.000000,283.000000,283.000000,NULL),(66,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(66,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(66,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(66,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(68,0,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(68,1,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(68,2,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(68,3,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(69,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(69,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(69,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(69,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(70,0,1,0,0.000000,0.000000,229.000000,229.000000,NULL),(70,1,1,0,0.000000,0.000000,229.000000,229.000000,NULL),(70,2,1,0,0.000000,0.000000,229.000000,229.000000,NULL),(70,3,1,0,0.000000,0.000000,229.000000,229.000000,NULL),(71,0,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(71,1,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(71,2,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(71,3,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(72,0,1,0,0.000000,0.000000,159.000000,159.000000,NULL),(72,1,1,0,0.000000,0.000000,159.000000,159.000000,NULL),(72,2,1,0,0.000000,0.000000,159.000000,159.000000,NULL),(72,3,1,0,0.000000,0.000000,159.000000,159.000000,NULL),(73,0,1,0,0.000000,0.000000,77.900000,77.900000,NULL),(73,1,1,0,0.000000,0.000000,77.900000,77.900000,NULL),(73,2,1,0,0.000000,0.000000,77.900000,77.900000,NULL),(73,3,1,0,0.000000,0.000000,77.900000,77.900000,NULL),(74,0,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(74,1,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(74,2,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(74,3,1,2,0.000000,0.000000,250.000000,250.000000,NULL),(75,0,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(75,1,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(75,2,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(75,3,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(76,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(76,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(76,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(76,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(77,0,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(77,1,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(77,2,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(77,3,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(78,0,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(78,1,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(78,2,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(78,3,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(79,0,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(79,1,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(79,2,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(79,3,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(80,0,1,0,0.000000,0.000000,74.900000,74.900000,NULL),(80,1,1,0,0.000000,0.000000,74.900000,74.900000,NULL),(80,2,1,0,0.000000,0.000000,74.900000,74.900000,NULL),(80,3,1,0,0.000000,0.000000,74.900000,74.900000,NULL),(82,0,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(82,1,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(82,2,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(82,3,1,2,0.000000,0.000000,84.900000,84.900000,NULL),(83,0,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(83,1,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(83,2,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(83,3,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(84,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(84,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(84,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(84,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(85,0,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(85,1,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(85,2,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(85,3,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(86,0,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(86,1,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(86,2,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(86,3,1,2,0.000000,0.000000,99.900000,99.900000,NULL),(87,0,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(87,1,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(87,2,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(87,3,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(88,0,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(88,1,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(88,2,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(88,3,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(89,0,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(89,1,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(89,2,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(89,3,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(91,0,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(91,1,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(91,2,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(91,3,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(92,0,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(92,1,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(92,2,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(92,3,1,0,0.000000,0.000000,139.000000,139.000000,NULL),(93,0,1,0,0.000000,0.000000,102.000000,102.000000,NULL),(93,1,1,0,0.000000,0.000000,102.000000,102.000000,NULL),(93,2,1,0,0.000000,0.000000,102.000000,102.000000,NULL),(93,3,1,0,0.000000,0.000000,102.000000,102.000000,NULL),(95,0,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(95,1,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(95,2,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(95,3,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(97,0,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(97,1,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(97,2,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(97,3,1,2,0.000000,0.000000,74.900000,74.900000,NULL),(98,0,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(98,1,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(98,2,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(98,3,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(99,0,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(99,1,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(99,2,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(99,3,1,2,0.000000,0.000000,69.900000,69.900000,NULL),(100,0,1,0,0.000000,0.000000,66.900000,66.900000,NULL),(100,1,1,0,0.000000,0.000000,66.900000,66.900000,NULL),(100,2,1,0,0.000000,0.000000,66.900000,66.900000,NULL),(100,3,1,0,0.000000,0.000000,66.900000,66.900000,NULL),(101,0,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(101,1,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(101,2,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(101,3,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(102,0,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(102,1,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(102,2,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(102,3,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(103,0,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(103,1,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(103,2,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(103,3,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(104,0,1,0,0.000000,0.000000,84.900000,84.900000,NULL),(104,1,1,0,0.000000,0.000000,84.900000,84.900000,NULL),(104,2,1,0,0.000000,0.000000,84.900000,84.900000,NULL),(104,3,1,0,0.000000,0.000000,84.900000,84.900000,NULL),(105,0,1,0,0.000000,0.000000,169.900000,169.900000,NULL),(105,1,1,0,0.000000,0.000000,169.900000,169.900000,NULL),(105,2,1,0,0.000000,0.000000,169.900000,169.900000,NULL),(105,3,1,0,0.000000,0.000000,169.900000,169.900000,NULL),(106,0,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(106,1,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(106,2,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(106,3,1,0,0.000000,0.000000,99.900000,99.900000,NULL),(107,0,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(107,1,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(107,2,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(107,3,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(108,0,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(108,1,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(108,2,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(108,3,1,0,0.000000,0.000000,89.900000,89.900000,NULL),(109,0,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(109,1,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(109,2,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(109,3,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(110,0,1,0,0.000000,0.000000,79.900000,79.900000,NULL),(110,1,1,0,0.000000,0.000000,79.900000,79.900000,NULL),(110,2,1,0,0.000000,0.000000,79.900000,79.900000,NULL),(110,3,1,0,0.000000,0.000000,79.900000,79.900000,NULL),(111,0,1,2,0.000000,0.000000,64.000000,64.000000,NULL),(111,1,1,2,0.000000,0.000000,64.000000,64.000000,NULL),(111,2,1,2,0.000000,0.000000,64.000000,64.000000,NULL),(111,3,1,2,0.000000,0.000000,64.000000,64.000000,NULL),(112,0,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(112,1,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(112,2,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(112,3,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(113,0,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(113,1,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(113,2,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(113,3,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(114,0,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(114,1,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(114,2,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(114,3,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(115,0,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(115,1,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(115,2,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(115,3,1,0,0.000000,0.000000,69.900000,69.900000,NULL),(116,0,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(116,1,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(116,2,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(116,3,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(117,0,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(117,1,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(117,2,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(117,3,1,0,0.000000,0.000000,109.900000,109.900000,NULL),(118,0,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(118,1,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(118,2,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(118,3,1,2,0.000000,0.000000,102.000000,102.000000,NULL),(119,0,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(119,1,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(119,2,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(119,3,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(120,0,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(120,1,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(120,2,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(120,3,1,2,0.000000,0.000000,119.000000,119.000000,NULL),(121,0,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(121,1,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(121,2,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(121,3,1,2,0.000000,0.000000,89.900000,89.900000,NULL),(122,0,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(122,1,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(122,2,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(122,3,1,2,0.000000,0.000000,109.900000,109.900000,NULL),(123,0,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(123,1,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(123,2,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(123,3,1,2,0.000000,0.000000,79.900000,79.900000,NULL),(124,0,1,2,0.000000,0.000000,219.000000,219.000000,NULL),(124,1,1,2,0.000000,0.000000,219.000000,219.000000,NULL),(124,2,1,2,0.000000,0.000000,219.000000,219.000000,NULL),(124,3,1,2,0.000000,0.000000,219.000000,219.000000,NULL),(125,0,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(125,1,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(125,2,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(125,3,1,2,0.000000,0.000000,169.000000,169.000000,NULL),(126,0,1,2,0.000000,0.000000,258.000000,258.000000,NULL),(126,1,1,2,0.000000,0.000000,258.000000,258.000000,NULL),(126,2,1,2,0.000000,0.000000,258.000000,258.000000,NULL),(126,3,1,2,0.000000,0.000000,258.000000,258.000000,NULL),(127,0,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(127,1,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(127,2,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(127,3,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(128,0,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(128,1,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(128,2,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(128,3,1,2,0.000000,0.000000,299.000000,299.000000,NULL),(129,0,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(129,1,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(129,2,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(129,3,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(130,0,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(130,1,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(130,2,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(130,3,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(131,0,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(131,1,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(131,2,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(131,3,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(132,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(132,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(132,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(132,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(133,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(133,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(133,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(133,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(134,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(134,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(134,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(134,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(135,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(135,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(135,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(135,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(136,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(136,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(136,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(136,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(137,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(137,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(137,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(137,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(138,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(138,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(138,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(138,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(139,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(139,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(139,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(139,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(140,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(140,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(140,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(140,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(141,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(141,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(141,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(141,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(142,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(142,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(142,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(142,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(143,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(143,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(143,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(143,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(144,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(144,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(144,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(144,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(145,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(145,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(145,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(145,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(146,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(146,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(146,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(146,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(147,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(147,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(147,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(147,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(148,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(148,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(148,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(148,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(149,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(149,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(149,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(149,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(150,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(150,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(150,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(150,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(151,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(151,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(151,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(151,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(152,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(152,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(152,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(152,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(153,0,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(153,1,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(153,2,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(153,3,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(154,0,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(154,1,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(154,2,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(154,3,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(155,0,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(155,1,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(155,2,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(155,3,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(156,0,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(156,1,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(156,2,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(156,3,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(157,0,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(157,1,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(157,2,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(157,3,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(158,0,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(158,1,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(158,2,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(158,3,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(159,0,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(159,1,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(159,2,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(159,3,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(160,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(160,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(160,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(160,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(161,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(161,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(161,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(161,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(162,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(162,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(162,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(162,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(163,0,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(163,1,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(163,2,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(163,3,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(164,0,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(164,1,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(164,2,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(164,3,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(165,0,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(165,1,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(165,2,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(165,3,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(166,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(166,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(166,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(166,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(167,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(167,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(167,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(167,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(168,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(168,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(168,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(168,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(169,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(169,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(169,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(169,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(170,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(170,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(170,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(170,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(171,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(171,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(171,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(171,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(172,0,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(172,1,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(172,2,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(172,3,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(173,0,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(173,1,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(173,2,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(173,3,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(174,0,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(174,1,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(174,2,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(174,3,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(175,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(175,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(175,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(175,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(176,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(176,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(176,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(176,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(177,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(177,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(177,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(177,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(178,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(178,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(178,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(178,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(179,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(179,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(179,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(179,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(180,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(180,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(180,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(180,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(181,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(181,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(181,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(181,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(182,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(182,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(182,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(182,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(183,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(183,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(183,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(183,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(184,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(184,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(184,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(184,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(185,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(185,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(185,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(185,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(186,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(186,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(186,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(186,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(187,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(187,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(187,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(187,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(188,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(188,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(188,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(188,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(189,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(189,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(189,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(189,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(190,0,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(190,1,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(190,2,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(190,3,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(191,0,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(191,1,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(191,2,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(191,3,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(192,0,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(192,1,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(192,2,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(192,3,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(193,0,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(193,1,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(193,2,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(193,3,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(194,0,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(194,1,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(194,2,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(194,3,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(195,0,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(195,1,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(195,2,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(195,3,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(196,0,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(196,1,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(196,2,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(196,3,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(197,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(197,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(197,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(197,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(198,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(198,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(198,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(198,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(199,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(199,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(199,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(199,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(200,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(200,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(200,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(200,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(201,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(201,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(201,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(201,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(202,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(202,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(202,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(202,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(203,0,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(203,1,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(203,2,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(203,3,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(204,0,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(204,1,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(204,2,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(204,3,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(205,0,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(205,1,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(205,2,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(205,3,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(206,0,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(206,1,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(206,2,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(206,3,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(207,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(207,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(207,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(207,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(208,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(208,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(208,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(208,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(209,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(209,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(209,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(209,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(210,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(210,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(210,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(210,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(211,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(211,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(211,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(211,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(212,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(212,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(212,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(212,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(213,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(213,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(213,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(213,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(214,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(214,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(214,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(214,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(215,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(215,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(215,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(215,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(216,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(216,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(216,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(216,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(217,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(217,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(217,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(217,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(218,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(218,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(218,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(218,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(219,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(219,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(219,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(219,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(220,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(220,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(220,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(220,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(221,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(221,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(221,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(221,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(222,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(222,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(222,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(222,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(223,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(223,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(223,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(223,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(224,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(224,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(224,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(224,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(225,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(225,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(225,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(225,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(226,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(226,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(226,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(226,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(227,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(227,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(227,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(227,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(228,0,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(228,1,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(228,2,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(228,3,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(229,0,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(229,1,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(229,2,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(229,3,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(230,0,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(230,1,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(230,2,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(230,3,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(231,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(231,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(231,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(231,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(232,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(232,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(232,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(232,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(233,0,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(233,1,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(233,2,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(233,3,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(234,0,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(234,1,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(234,2,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(234,3,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(235,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(235,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(235,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(235,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(236,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(236,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(236,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(236,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(237,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(237,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(237,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(237,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(238,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(238,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(238,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(238,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(239,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(239,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(239,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(239,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(240,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(240,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(240,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(240,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(241,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(241,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(241,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(241,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(242,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(242,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(242,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(242,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(243,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(243,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(243,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(243,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(244,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(244,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(244,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(244,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(245,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(245,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(245,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(245,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(246,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(246,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(246,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(246,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(247,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(247,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(247,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(247,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(248,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(248,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(248,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(248,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(249,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(249,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(249,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(249,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(250,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(250,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(250,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(250,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(251,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(251,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(251,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(251,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(252,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(252,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(252,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(252,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(253,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(253,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(253,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(253,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(254,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(254,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(254,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(254,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(255,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(255,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(255,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(255,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(256,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(256,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(256,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(256,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(257,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(257,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(257,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(257,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(258,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(258,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(258,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(258,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(259,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(259,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(259,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(259,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(260,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(260,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(260,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(260,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(261,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(261,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(261,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(261,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(262,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(262,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(262,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(262,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(263,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(263,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(263,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(263,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(264,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(264,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(264,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(264,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(265,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(265,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(265,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(265,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(266,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(266,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(266,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(266,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(267,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(267,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(267,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(267,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(268,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(268,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(268,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(268,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(269,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(269,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(269,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(269,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(270,0,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(270,1,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(270,2,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(270,3,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(271,0,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(271,1,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(271,2,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(271,3,1,2,280.000000,280.000000,280.000000,280.000000,NULL),(272,0,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(272,1,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(272,2,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(272,3,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(273,0,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(273,1,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(273,2,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(273,3,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(274,0,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(274,1,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(274,2,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(274,3,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(275,0,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(275,1,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(275,2,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(275,3,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(276,0,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(276,1,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(276,2,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(276,3,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(277,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(277,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(277,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(277,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(278,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(278,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(278,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(278,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(279,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(279,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(279,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(279,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(280,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(280,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(280,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(280,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(281,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(281,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(281,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(281,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(282,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(282,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(282,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(282,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(283,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(283,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(283,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(283,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(284,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(284,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(284,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(284,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(285,0,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(285,1,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(285,2,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(285,3,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(286,0,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(286,1,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(286,2,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(286,3,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(287,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(287,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(287,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(287,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(288,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(288,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(288,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(288,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(289,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(289,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(289,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(289,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(290,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(290,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(290,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(290,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(291,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(291,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(291,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(291,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(292,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(292,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(292,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(292,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(293,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(293,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(293,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(293,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(294,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(294,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(294,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(294,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(295,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(295,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(295,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(295,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(296,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(296,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(296,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(296,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(297,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(297,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(297,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(297,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(298,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(298,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(298,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(298,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(299,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(299,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(299,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(299,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(300,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(300,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(300,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(300,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(301,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(301,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(301,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(301,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(302,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(302,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(302,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(302,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(303,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(303,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(303,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(303,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(304,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(304,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(304,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(304,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(305,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(305,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(305,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(305,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(306,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(306,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(306,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(306,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(307,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(307,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(307,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(307,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(308,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(308,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(308,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(308,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(309,0,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(309,1,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(309,2,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(309,3,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(310,0,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(310,1,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(310,2,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(310,3,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(311,0,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(311,1,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(311,2,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(311,3,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(312,0,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(312,1,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(312,2,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(312,3,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(313,0,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(313,1,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(313,2,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(313,3,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(314,0,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(314,1,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(314,2,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(314,3,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(315,0,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(315,1,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(315,2,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(315,3,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(316,0,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(316,1,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(316,2,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(316,3,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(317,0,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(317,1,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(317,2,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(317,3,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(318,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(318,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(318,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(318,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(319,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(319,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(319,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(319,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(320,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(320,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(320,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(320,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(321,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(321,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(321,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(321,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(322,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(322,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(322,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(322,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(323,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(323,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(323,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(323,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(324,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(324,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(324,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(324,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(325,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(325,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(325,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(325,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(326,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(326,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(326,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(326,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(327,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(327,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(327,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(327,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(328,0,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(328,1,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(328,2,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(328,3,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(329,0,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(329,1,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(329,2,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(329,3,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(330,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(330,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(330,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(330,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(331,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(331,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(331,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(331,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(332,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(332,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(332,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(332,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(333,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(333,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(333,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(333,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(334,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(334,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(334,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(334,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(335,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(335,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(335,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(335,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(336,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(336,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(336,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(336,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(337,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(337,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(337,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(337,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(338,0,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(338,1,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(338,2,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(338,3,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(339,0,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(339,1,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(339,2,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(339,3,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(340,0,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(340,1,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(340,2,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(340,3,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(341,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(341,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(341,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(341,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(342,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(342,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(342,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(342,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(343,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(343,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(343,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(343,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(344,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(344,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(344,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(344,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(345,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(345,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(345,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(345,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(346,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(346,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(346,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(346,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(347,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(347,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(347,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(347,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(348,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(348,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(348,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(348,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(349,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(349,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(349,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(349,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(350,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(350,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(350,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(350,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(351,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(351,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(351,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(351,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(352,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(352,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(352,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(352,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(353,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(353,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(353,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(353,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(354,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(354,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(354,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(354,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(355,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(355,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(355,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(355,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(356,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(356,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(356,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(356,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(357,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(357,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(357,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(357,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(358,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(358,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(358,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(358,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(359,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(359,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(359,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(359,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(360,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(360,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(360,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(360,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(361,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(361,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(361,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(361,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(362,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(362,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(362,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(362,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(363,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(363,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(363,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(363,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(364,0,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(364,1,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(364,2,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(364,3,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(365,0,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(365,1,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(365,2,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(365,3,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(366,0,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(366,1,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(366,2,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(366,3,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(367,0,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(367,1,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(367,2,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(367,3,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(368,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(368,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(368,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(368,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(369,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(369,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(369,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(369,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(370,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(370,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(370,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(370,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(371,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(371,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(371,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(371,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(372,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(372,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(372,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(372,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(373,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(373,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(373,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(373,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(374,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(374,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(374,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(374,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(375,0,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(375,1,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(375,2,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(375,3,1,0,77.900000,77.900000,77.900000,77.900000,NULL),(376,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(376,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(376,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(376,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(377,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(377,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(377,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(377,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(378,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(378,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(378,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(378,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(379,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(379,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(379,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(379,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(380,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(380,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(380,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(380,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(381,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(381,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(381,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(381,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(382,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(382,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(382,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(382,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(383,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(383,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(383,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(383,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(384,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(384,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(384,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(384,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(385,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(385,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(385,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(385,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(386,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(386,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(386,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(386,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(387,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(387,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(387,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(387,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(388,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(388,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(388,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(388,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(389,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(389,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(389,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(389,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(390,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(390,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(390,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(390,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(391,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(391,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(391,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(391,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(392,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(392,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(392,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(392,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(393,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(393,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(393,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(393,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(394,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(394,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(394,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(394,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(395,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(395,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(395,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(395,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(396,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(396,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(396,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(396,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(397,0,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(397,1,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(397,2,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(397,3,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(398,0,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(398,1,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(398,2,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(398,3,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(399,0,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(399,1,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(399,2,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(399,3,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(400,0,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(400,1,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(400,2,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(400,3,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(401,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(401,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(401,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(401,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(402,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(402,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(402,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(402,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(403,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(403,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(403,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(403,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(404,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(404,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(404,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(404,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(405,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(405,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(405,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(405,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(406,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(406,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(406,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(406,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(407,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(407,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(407,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(407,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(408,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(408,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(408,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(408,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(409,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(409,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(409,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(409,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(410,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(410,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(410,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(410,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(411,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(411,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(411,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(411,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(412,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(412,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(412,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(412,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(413,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(413,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(413,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(413,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(414,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(414,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(414,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(414,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(415,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(415,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(415,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(415,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(416,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(416,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(416,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(416,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(417,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(417,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(417,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(417,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(418,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(418,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(418,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(418,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(419,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(419,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(419,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(419,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(420,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(420,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(420,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(420,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(421,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(421,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(421,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(421,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(422,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(422,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(422,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(422,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(423,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(423,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(423,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(423,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(424,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(424,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(424,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(424,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(425,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(425,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(425,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(425,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(426,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(426,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(426,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(426,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(427,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(427,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(427,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(427,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(428,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(428,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(428,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(428,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(429,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(429,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(429,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(429,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(430,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(430,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(430,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(430,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(431,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(431,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(431,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(431,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(432,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(432,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(432,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(432,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(433,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(433,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(433,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(433,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(434,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(434,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(434,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(434,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(435,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(435,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(435,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(435,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(436,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(436,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(436,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(436,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(437,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(437,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(437,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(437,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(438,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(438,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(438,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(438,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(439,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(439,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(439,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(439,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(440,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(440,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(440,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(440,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(441,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(441,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(441,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(441,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(442,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(442,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(442,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(442,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(443,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(443,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(443,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(443,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(444,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(444,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(444,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(444,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(445,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(445,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(445,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(445,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(446,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(446,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(446,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(446,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(447,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(447,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(447,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(447,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(448,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(448,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(448,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(448,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(449,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(449,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(449,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(449,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(450,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(450,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(450,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(450,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(451,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(451,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(451,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(451,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(452,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(452,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(452,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(452,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(453,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(453,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(453,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(453,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(454,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(454,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(454,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(454,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(455,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(455,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(455,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(455,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(456,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(456,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(456,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(456,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(457,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(457,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(457,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(457,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(458,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(458,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(458,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(458,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(459,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(459,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(459,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(459,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(460,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(460,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(460,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(460,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(461,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(461,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(461,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(461,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(462,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(462,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(462,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(462,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(463,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(463,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(463,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(463,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(464,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(464,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(464,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(464,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(465,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(465,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(465,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(465,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(466,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(466,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(466,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(466,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(467,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(467,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(467,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(467,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(468,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(468,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(468,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(468,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(469,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(469,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(469,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(469,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(470,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(470,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(470,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(470,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(471,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(471,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(471,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(471,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(472,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(472,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(472,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(472,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(473,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(473,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(473,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(473,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(474,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(474,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(474,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(474,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(475,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(475,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(475,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(475,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(476,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(476,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(476,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(476,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(477,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(477,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(477,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(477,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(478,0,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(478,1,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(478,2,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(478,3,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(479,0,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(479,1,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(479,2,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(479,3,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(480,0,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(480,1,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(480,2,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(480,3,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(481,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(481,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(481,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(481,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(482,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(482,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(482,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(482,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(483,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(483,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(483,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(483,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(484,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(484,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(484,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(484,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(485,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(485,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(485,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(485,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(486,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(486,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(486,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(486,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(487,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(487,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(487,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(487,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(488,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(488,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(488,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(488,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(489,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(489,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(489,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(489,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(490,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(490,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(490,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(490,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(491,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(491,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(491,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(491,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(492,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(492,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(492,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(492,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(493,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(493,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(493,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(493,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(494,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(494,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(494,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(494,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(495,0,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(495,1,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(495,2,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(495,3,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(496,0,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(496,1,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(496,2,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(496,3,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(497,0,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(497,1,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(497,2,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(497,3,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(498,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(498,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(498,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(498,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(499,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(499,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(499,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(499,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(500,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(500,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(500,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(500,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(501,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(501,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(501,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(501,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(502,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(502,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(502,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(502,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(503,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(503,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(503,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(503,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(504,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(504,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(504,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(504,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(505,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(505,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(505,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(505,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(506,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(506,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(506,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(506,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(507,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(507,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(507,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(507,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(508,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(508,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(508,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(508,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(509,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(509,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(509,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(509,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(510,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(510,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(510,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(510,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(511,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(511,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(511,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(511,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(512,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(512,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(512,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(512,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(513,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(513,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(513,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(513,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(514,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(514,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(514,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(514,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(515,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(515,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(515,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(515,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(516,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(516,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(516,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(516,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(517,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(517,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(517,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(517,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(518,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(518,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(518,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(518,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(519,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(519,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(519,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(519,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(520,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(520,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(520,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(520,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(521,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(521,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(521,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(521,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(522,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(522,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(522,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(522,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(523,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(523,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(523,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(523,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(524,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(524,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(524,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(524,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(525,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(525,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(525,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(525,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(526,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(526,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(526,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(526,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(527,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(527,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(527,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(527,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(528,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(528,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(528,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(528,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(529,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(529,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(529,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(529,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(530,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(530,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(530,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(530,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(531,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(531,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(531,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(531,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(532,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(532,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(532,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(532,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(533,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(533,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(533,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(533,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(534,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(534,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(534,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(534,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(535,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(535,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(535,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(535,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(536,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(536,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(536,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(536,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(537,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(537,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(537,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(537,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(538,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(538,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(538,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(538,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(539,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(539,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(539,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(539,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(540,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(540,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(540,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(540,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(541,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(541,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(541,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(541,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(542,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(542,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(542,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(542,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(543,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(543,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(543,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(543,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(544,0,1,2,219.000000,219.000000,219.000000,219.000000,NULL),(544,1,1,2,219.000000,219.000000,219.000000,219.000000,NULL),(544,2,1,2,219.000000,219.000000,219.000000,219.000000,NULL),(544,3,1,2,219.000000,219.000000,219.000000,219.000000,NULL),(545,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(545,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(545,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(545,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(546,0,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(546,1,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(546,2,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(546,3,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(547,0,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(547,1,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(547,2,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(547,3,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(548,0,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(548,1,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(548,2,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(548,3,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(549,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(549,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(549,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(549,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(550,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(550,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(550,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(550,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(551,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(551,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(551,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(551,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(552,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(552,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(552,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(552,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(553,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(553,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(553,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(553,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(554,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(554,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(554,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(554,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(555,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(555,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(555,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(555,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(556,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(556,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(556,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(556,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(557,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(557,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(557,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(557,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(558,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(558,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(558,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(558,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(559,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(559,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(559,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(559,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(560,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(560,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(560,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(560,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(561,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(561,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(561,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(561,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(562,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(562,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(562,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(562,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(563,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(563,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(563,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(563,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(564,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(564,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(564,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(564,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(565,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(565,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(565,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(565,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(566,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(566,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(566,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(566,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(567,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(567,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(567,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(567,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(568,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(568,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(568,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(568,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(569,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(569,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(569,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(569,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(570,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(570,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(570,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(570,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(571,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(571,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(571,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(571,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(572,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(572,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(572,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(572,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(573,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(573,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(573,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(573,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(574,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(574,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(574,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(574,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(575,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(575,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(575,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(575,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(576,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(576,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(576,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(576,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(577,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(577,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(577,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(577,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(578,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(578,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(578,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(578,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(579,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(579,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(579,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(579,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(580,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(580,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(580,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(580,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(581,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(581,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(581,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(581,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(582,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(582,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(582,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(582,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(583,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(583,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(583,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(583,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(584,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(584,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(584,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(584,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(585,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(585,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(585,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(585,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(586,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(586,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(586,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(586,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(587,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(587,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(587,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(587,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(588,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(588,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(588,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(588,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(589,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(589,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(589,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(589,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(590,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(590,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(590,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(590,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(591,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(591,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(591,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(591,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(592,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(592,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(592,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(592,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(593,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(593,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(593,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(593,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(594,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(594,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(594,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(594,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(595,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(595,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(595,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(595,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(596,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(596,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(596,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(596,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(597,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(597,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(597,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(597,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(598,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(598,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(598,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(598,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(599,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(599,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(599,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(599,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(600,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(600,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(600,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(600,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(601,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(601,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(601,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(601,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(602,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(602,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(602,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(602,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(603,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(603,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(603,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(603,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(604,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(604,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(604,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(604,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(605,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(605,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(605,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(605,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(606,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(606,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(606,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(606,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(607,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(607,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(607,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(607,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(608,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(608,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(608,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(608,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(609,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(609,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(609,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(609,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(610,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(610,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(610,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(610,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(611,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(611,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(611,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(611,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(612,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(612,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(612,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(612,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(613,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(613,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(613,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(613,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(614,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(614,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(614,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(614,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(615,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(615,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(615,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(615,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(616,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(616,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(616,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(616,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(617,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(617,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(617,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(617,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(618,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(618,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(618,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(618,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(619,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(619,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(619,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(619,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(620,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(620,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(620,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(620,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(621,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(621,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(621,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(621,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(622,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(622,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(622,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(622,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(623,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(623,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(623,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(623,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(624,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(624,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(624,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(624,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(625,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(625,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(625,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(625,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(626,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(626,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(626,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(626,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(627,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(627,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(627,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(627,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(628,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(628,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(628,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(628,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(629,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(629,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(629,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(629,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(630,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(630,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(630,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(630,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(631,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(631,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(631,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(631,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(632,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(632,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(632,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(632,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(633,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(633,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(633,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(633,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(634,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(634,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(634,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(634,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(635,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(635,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(635,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(635,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(636,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(636,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(636,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(636,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(637,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(637,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(637,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(637,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(638,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(638,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(638,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(638,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(639,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(639,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(639,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(639,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(640,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(640,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(640,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(640,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(641,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(641,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(641,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(641,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(642,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(642,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(642,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(642,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(643,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(643,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(643,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(643,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(644,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(644,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(644,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(644,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(645,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(645,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(645,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(645,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(646,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(646,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(646,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(646,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(647,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(647,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(647,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(647,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(648,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(648,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(648,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(648,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(649,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(649,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(649,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(649,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(650,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(650,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(650,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(650,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(651,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(651,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(651,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(651,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(652,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(652,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(652,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(652,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(653,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(653,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(653,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(653,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(654,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(654,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(654,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(654,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(655,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(655,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(655,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(655,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(656,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(656,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(656,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(656,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(657,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(657,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(657,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(657,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(658,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(658,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(658,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(658,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(659,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(659,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(659,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(659,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(660,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(660,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(660,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(660,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(661,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(661,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(661,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(661,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(662,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(662,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(662,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(662,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(663,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(663,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(663,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(663,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(664,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(664,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(664,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(664,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(665,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(665,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(665,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(665,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(666,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(666,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(666,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(666,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(667,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(667,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(667,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(667,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(668,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(668,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(668,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(668,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(669,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(669,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(669,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(669,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(670,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(670,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(670,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(670,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(671,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(671,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(671,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(671,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(672,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(672,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(672,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(672,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(673,0,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(673,1,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(673,2,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(673,3,1,2,128.000000,128.000000,128.000000,128.000000,NULL),(674,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(674,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(674,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(674,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(675,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(675,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(675,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(675,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(676,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(676,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(676,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(676,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(677,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(677,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(677,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(677,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(678,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(678,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(678,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(678,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(679,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(679,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(679,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(679,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(680,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(680,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(680,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(680,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(681,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(681,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(681,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(681,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(682,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(682,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(682,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(682,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(683,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(683,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(683,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(683,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(684,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(684,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(684,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(684,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(685,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(685,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(685,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(685,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(686,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(686,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(686,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(686,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(687,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(687,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(687,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(687,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(688,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(688,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(688,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(688,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(689,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(689,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(689,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(689,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(690,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(690,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(690,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(690,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(691,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(691,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(691,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(691,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(692,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(692,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(692,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(692,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(693,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(693,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(693,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(693,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(694,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(694,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(694,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(694,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(695,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(695,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(695,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(695,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(696,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(696,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(696,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(696,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(697,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(697,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(697,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(697,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(698,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(698,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(698,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(698,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(699,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(699,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(699,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(699,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(700,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(700,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(700,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(700,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(701,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(701,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(701,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(701,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(702,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(702,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(702,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(702,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(703,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(703,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(703,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(703,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(704,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(704,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(704,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(704,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(705,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(705,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(705,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(705,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(706,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(706,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(706,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(706,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(707,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(707,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(707,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(707,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(708,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(708,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(708,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(708,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(709,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(709,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(709,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(709,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(710,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(710,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(710,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(710,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(711,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(711,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(711,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(711,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(712,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(712,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(712,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(712,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(713,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(713,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(713,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(713,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(714,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(714,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(714,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(714,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(715,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(715,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(715,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(715,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(716,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(716,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(716,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(716,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(717,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(717,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(717,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(717,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(718,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(718,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(718,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(718,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(719,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(719,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(719,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(719,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(720,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(720,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(720,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(720,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(721,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(721,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(721,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(721,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(722,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(722,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(722,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(722,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(723,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(723,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(723,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(723,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(724,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(724,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(724,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(724,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(725,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(725,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(725,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(725,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(726,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(726,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(726,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(726,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(727,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(727,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(727,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(727,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(728,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(728,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(728,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(728,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(729,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(729,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(729,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(729,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(730,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(730,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(730,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(730,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(731,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(731,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(731,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(731,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(732,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(732,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(732,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(732,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(733,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(733,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(733,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(733,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(734,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(734,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(734,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(734,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(735,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(735,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(735,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(735,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(736,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(736,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(736,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(736,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(737,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(737,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(737,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(737,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(738,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(738,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(738,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(738,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(739,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(739,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(739,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(739,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(740,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(740,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(740,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(740,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(741,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(741,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(741,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(741,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(742,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(742,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(742,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(742,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(743,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(743,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(743,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(743,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(744,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(744,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(744,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(744,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(745,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(745,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(745,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(745,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(746,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(746,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(746,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(746,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(747,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(747,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(747,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(747,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(748,0,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(748,1,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(748,2,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(748,3,1,2,120.000000,120.000000,120.000000,120.000000,NULL),(749,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(749,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(749,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(749,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(750,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(750,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(750,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(750,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(751,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(751,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(751,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(751,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(752,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(752,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(752,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(752,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(753,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(753,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(753,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(753,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(754,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(754,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(754,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(754,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(755,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(755,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(755,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(755,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(756,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(756,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(756,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(756,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(757,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(757,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(757,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(757,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(758,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(758,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(758,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(758,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(759,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(759,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(759,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(759,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(760,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(760,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(760,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(760,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(761,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(761,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(761,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(761,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(762,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(762,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(762,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(762,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(763,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(763,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(763,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(763,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(764,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(764,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(764,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(764,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(765,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(765,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(765,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(765,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(766,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(766,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(766,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(766,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(767,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(767,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(767,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(767,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(768,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(768,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(768,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(768,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(769,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(769,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(769,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(769,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(770,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(770,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(770,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(770,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(771,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(771,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(771,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(771,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(772,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(772,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(772,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(772,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(773,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(773,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(773,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(773,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(774,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(774,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(774,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(774,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(775,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(775,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(775,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(775,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(776,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(776,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(776,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(776,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(777,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(777,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(777,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(777,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(778,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(778,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(778,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(778,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(779,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(779,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(779,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(779,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(780,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(780,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(780,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(780,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(781,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(781,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(781,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(781,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(782,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(782,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(782,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(782,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(783,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(783,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(783,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(783,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(784,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(784,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(784,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(784,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(785,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(785,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(785,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(785,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(786,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(786,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(786,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(786,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(787,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(787,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(787,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(787,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(788,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(788,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(788,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(788,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(789,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(789,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(789,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(789,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(790,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(790,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(790,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(790,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(791,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(791,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(791,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(791,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(792,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(792,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(792,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(792,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(793,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(793,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(793,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(793,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(794,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(794,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(794,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(794,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(795,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(795,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(795,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(795,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(796,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(796,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(796,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(796,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(797,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(797,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(797,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(797,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(798,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(798,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(798,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(798,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(799,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(799,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(799,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(799,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(800,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(800,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(800,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(800,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(801,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(801,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(801,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(801,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(802,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(802,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(802,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(802,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(803,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(803,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(803,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(803,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(804,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(804,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(804,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(804,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(805,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(805,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(805,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(805,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(806,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(806,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(806,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(806,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(807,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(807,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(807,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(807,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(808,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(808,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(808,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(808,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(809,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(809,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(809,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(809,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(810,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(810,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(810,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(810,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(811,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(811,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(811,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(811,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(812,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(812,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(812,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(812,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(813,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(813,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(813,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(813,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(814,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(814,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(814,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(814,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(815,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(815,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(815,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(815,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(816,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(816,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(816,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(816,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(817,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(817,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(817,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(817,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(818,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(818,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(818,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(818,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(819,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(819,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(819,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(819,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(820,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(820,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(820,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(820,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(821,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(821,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(821,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(821,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(822,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(822,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(822,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(822,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(823,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(823,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(823,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(823,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(824,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(824,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(824,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(824,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(825,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(825,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(825,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(825,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(826,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(826,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(826,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(826,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(827,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(827,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(827,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(827,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(828,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(828,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(828,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(828,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(829,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(829,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(829,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(829,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(830,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(830,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(830,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(830,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(831,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(831,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(831,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(831,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(832,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(832,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(832,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(832,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(833,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(833,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(833,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(833,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(834,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(834,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(834,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(834,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(835,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(835,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(835,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(835,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(836,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(836,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(836,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(836,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(837,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(837,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(837,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(837,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(838,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(838,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(838,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(838,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(839,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(839,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(839,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(839,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(840,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(840,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(840,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(840,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(841,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(841,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(841,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(841,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(842,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(842,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(842,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(842,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(843,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(843,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(843,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(843,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(844,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(844,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(844,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(844,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(845,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(845,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(845,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(845,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(846,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(846,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(846,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(846,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(847,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(847,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(847,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(847,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(848,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(848,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(848,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(848,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(849,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(849,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(849,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(849,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(850,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(850,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(850,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(850,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(851,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(851,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(851,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(851,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(852,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(852,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(852,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(852,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(853,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(853,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(853,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(853,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(854,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(854,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(854,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(854,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(855,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(855,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(855,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(855,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(856,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(856,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(856,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(856,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(857,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(857,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(857,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(857,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(858,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(858,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(858,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(858,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(859,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(859,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(859,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(859,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(860,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(860,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(860,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(860,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(861,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(861,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(861,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(861,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(862,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(862,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(862,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(862,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(863,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(863,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(863,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(863,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(864,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(864,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(864,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(864,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(865,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(865,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(865,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(865,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(866,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(866,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(866,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(866,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(867,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(867,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(867,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(867,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(868,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(868,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(868,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(868,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(869,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(869,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(869,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(869,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(870,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(870,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(870,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(870,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(871,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(871,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(871,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(871,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(872,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(872,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(872,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(872,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(873,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(873,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(873,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(873,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(874,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(874,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(874,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(874,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(875,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(875,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(875,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(875,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(876,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(876,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(876,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(876,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(877,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(877,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(877,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(877,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(878,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(878,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(878,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(878,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(879,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(879,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(879,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(879,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(880,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(880,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(880,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(880,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(881,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(881,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(881,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(881,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(882,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(882,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(882,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(882,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(883,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(883,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(883,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(883,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(884,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(884,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(884,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(884,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(885,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(885,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(885,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(885,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(886,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(886,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(886,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(886,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(887,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(887,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(887,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(887,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(888,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(888,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(888,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(888,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(889,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(889,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(889,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(889,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(890,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(890,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(890,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(890,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(891,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(891,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(891,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(891,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(892,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(892,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(892,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(892,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(893,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(893,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(893,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(893,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(894,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(894,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(894,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(894,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(895,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(895,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(895,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(895,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(896,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(896,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(896,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(896,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(897,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(897,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(897,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(897,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(898,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(898,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(898,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(898,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(899,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(899,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(899,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(899,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(900,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(900,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(900,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(900,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(901,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(901,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(901,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(901,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(902,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(902,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(902,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(902,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(903,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(903,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(903,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(903,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(904,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(904,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(904,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(904,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(905,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(905,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(905,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(905,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(906,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(906,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(906,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(906,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(907,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(907,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(907,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(907,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(908,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(908,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(908,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(908,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(909,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(909,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(909,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(909,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(910,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(910,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(910,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(910,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(911,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(911,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(911,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(911,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(912,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(912,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(912,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(912,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(913,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(913,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(913,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(913,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(914,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(914,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(914,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(914,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(915,0,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(915,1,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(915,2,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(915,3,1,0,84.900000,84.900000,84.900000,84.900000,NULL),(924,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(924,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(924,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(924,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(925,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(925,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(925,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(925,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(926,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(926,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(926,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(926,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(927,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(927,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(927,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(927,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(928,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(928,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(928,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(928,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(929,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(929,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(929,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(929,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(930,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(930,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(930,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(930,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(931,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(931,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(931,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(931,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(932,0,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(932,1,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(932,2,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(932,3,1,2,69.900000,69.900000,69.900000,69.900000,NULL),(933,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(933,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(933,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(933,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(934,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(934,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(934,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(934,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(935,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(935,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(935,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(935,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(936,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(936,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(936,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(936,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(937,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(937,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(937,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(937,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(938,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(938,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(938,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(938,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(939,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(939,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(939,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(939,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(940,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(940,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(940,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(940,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(941,0,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(941,1,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(941,2,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(941,3,1,2,74.900000,74.900000,74.900000,74.900000,NULL),(942,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(942,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(942,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(942,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(943,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(943,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(943,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(943,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(944,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(944,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(944,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(944,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(945,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(945,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(945,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(945,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(946,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(946,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(946,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(946,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(947,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(947,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(947,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(947,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(948,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(948,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(948,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(948,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(949,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(949,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(949,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(949,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(950,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(950,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(950,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(950,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(951,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(951,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(951,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(951,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(952,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(952,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(952,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(952,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(953,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(953,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(953,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(953,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(954,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(954,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(954,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(954,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(955,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(955,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(955,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(955,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(956,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(956,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(956,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(956,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(957,0,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(957,1,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(957,2,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(957,3,1,2,185.000000,185.000000,185.000000,185.000000,NULL),(958,0,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(958,1,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(958,2,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(958,3,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(959,0,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(959,1,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(959,2,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(959,3,1,2,59.990000,59.990000,59.990000,59.990000,NULL),(972,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(972,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(972,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(972,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(973,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(973,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(973,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(973,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(974,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(974,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(974,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(974,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(975,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(975,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(975,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(975,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(976,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(976,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(976,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(976,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(977,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(977,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(977,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(977,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(978,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(978,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(978,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(978,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(979,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(979,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(979,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(979,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(980,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(980,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(980,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(980,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(981,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(981,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(981,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(981,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(982,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(982,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(982,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(982,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(983,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(983,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(983,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(983,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(984,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(984,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(984,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(984,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(985,0,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(985,1,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(985,2,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(985,3,1,2,127.000000,127.000000,127.000000,127.000000,NULL),(986,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(986,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(986,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(986,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(987,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(987,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(987,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(987,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(988,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(988,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(988,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(988,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(989,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(989,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(989,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(989,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(990,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(990,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(990,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(990,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(991,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(991,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(991,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(991,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(992,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(992,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(992,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(992,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(993,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(993,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(993,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(993,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(994,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(994,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(994,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(994,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(995,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(995,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(995,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(995,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(996,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(996,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(996,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(996,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(997,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(997,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(997,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(997,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(998,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(998,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(998,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(998,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(999,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(999,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(999,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(999,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1000,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1000,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1000,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1000,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1001,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1001,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1001,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1001,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1002,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1002,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1002,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1002,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1003,0,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1003,1,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1003,2,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1003,3,1,2,119.950000,119.950000,119.950000,119.950000,NULL),(1004,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1004,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1004,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1004,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1005,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1005,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1005,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1005,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1006,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1006,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1006,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1006,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1007,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1007,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1007,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1007,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1008,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1008,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1008,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1008,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1009,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1009,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1009,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1009,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1010,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1010,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1010,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1010,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1011,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1011,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1011,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1011,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1012,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1012,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1012,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1012,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1013,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1013,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1013,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1013,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1014,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1014,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1014,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1014,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1015,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1015,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1015,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1015,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1016,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1016,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1016,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1016,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1017,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1017,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1017,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1017,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1018,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1018,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1018,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1018,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1019,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1019,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1019,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1019,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1020,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1020,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1020,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1020,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1021,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1021,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1021,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1021,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1022,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1022,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1022,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1022,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1023,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1023,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1023,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1023,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1024,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1024,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1024,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1024,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1025,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1025,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1025,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1025,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1026,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1026,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1026,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1026,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1027,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1027,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1027,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1027,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1028,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1028,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1028,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1028,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1029,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1029,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1029,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1029,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1030,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1030,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1030,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1030,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1031,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1031,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1031,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1031,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1032,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1032,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1032,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1032,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1033,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1033,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1033,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1033,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1034,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1034,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1034,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1034,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1035,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1035,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1035,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1035,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1036,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1036,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1036,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1036,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1037,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1037,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1037,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1037,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1038,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1038,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1038,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1038,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1039,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1039,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1039,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1039,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1040,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1040,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1040,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1040,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1041,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1041,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1041,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1041,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1042,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1042,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1042,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1042,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1043,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1043,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1043,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1043,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1044,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1044,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1044,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1044,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1045,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1045,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1045,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1045,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1046,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1046,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1046,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1046,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1047,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1047,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1047,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1047,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1048,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1048,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1048,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1048,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1049,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1049,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1049,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1049,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1050,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1050,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1050,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1050,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1051,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1051,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1051,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1051,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1052,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1052,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1052,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1052,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1053,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1053,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1053,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1053,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1054,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1054,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1054,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1054,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1055,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1055,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1055,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1055,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1056,0,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1056,1,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1056,2,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1056,3,1,2,89.990000,89.990000,89.990000,89.990000,NULL),(1057,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1057,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1057,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1057,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1058,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1058,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1058,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1058,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1059,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1059,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1059,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1059,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1060,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1060,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1060,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1060,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1061,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1061,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1061,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1061,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1062,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1062,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1062,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1062,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1063,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1063,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1063,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1063,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1064,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1064,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1064,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1064,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1065,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1065,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1065,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1065,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1066,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1066,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1066,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1066,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1067,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1067,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1067,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1067,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1068,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1068,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1068,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1068,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1069,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1069,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1069,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1069,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1070,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1070,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1070,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1070,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1071,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1071,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1071,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1071,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1072,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1072,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1072,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1072,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1073,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1073,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1073,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1073,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1074,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1074,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1074,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1074,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1075,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1075,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1075,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1075,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1076,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1076,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1076,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1076,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1077,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1077,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1077,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1077,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1078,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1078,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1078,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1078,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1079,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1079,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1079,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1079,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1080,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1080,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1080,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1080,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1081,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1081,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1081,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1081,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1082,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1082,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1082,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1082,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1083,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1083,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1083,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1083,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1084,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1084,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1084,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1084,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1085,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1085,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1085,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1085,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1086,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1086,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1086,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1086,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1087,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1087,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1087,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1087,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1088,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1088,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1088,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1088,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1089,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1089,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1089,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1089,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1090,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1090,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1090,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1090,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1091,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1091,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1091,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1091,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1092,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1092,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1092,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1092,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1093,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1093,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1093,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1093,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1094,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1094,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1094,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1094,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1095,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1095,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1095,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1095,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1096,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1096,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1096,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1096,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1097,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1097,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1097,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1097,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1098,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1098,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1098,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1098,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1099,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1099,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1099,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1099,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1100,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1100,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1100,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1100,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1101,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1101,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1101,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1101,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1102,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1102,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1102,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1102,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1103,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1103,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1103,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1103,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1104,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1104,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1104,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1104,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1105,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1105,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1105,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1105,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1106,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1106,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1106,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1106,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1107,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1107,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1107,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1107,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1108,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1108,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1108,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1108,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1109,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1109,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1109,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1109,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1110,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1110,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1110,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1110,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1111,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1111,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1111,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1111,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1112,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1112,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1112,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1112,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1113,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1113,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1113,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1113,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1114,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1114,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1114,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1114,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1115,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1115,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1115,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1115,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1116,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1116,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1116,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1116,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1117,0,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1117,1,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1117,2,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1117,3,1,0,102.000000,102.000000,102.000000,102.000000,NULL),(1118,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1118,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1118,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1118,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1119,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1119,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1119,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1119,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1120,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1120,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1120,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1120,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1121,0,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(1121,1,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(1121,2,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(1121,3,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(1122,0,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(1122,1,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(1122,2,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(1122,3,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(1123,0,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(1123,1,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(1123,2,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(1123,3,1,0,66.900000,66.900000,66.900000,66.900000,NULL),(1124,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1124,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1124,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1124,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1125,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1125,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1125,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1125,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1126,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1126,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1126,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1126,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1127,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1127,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1127,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1127,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1128,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1128,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1128,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1128,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1129,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1129,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1129,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1129,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1130,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1130,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1130,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1130,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1131,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1131,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1131,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1131,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1132,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1132,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1132,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1132,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1133,0,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1133,1,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1133,2,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1133,3,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1134,0,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1134,1,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1134,2,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1134,3,1,2,59.900000,59.900000,59.900000,59.900000,NULL),(1135,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1135,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1135,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1135,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1136,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1136,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1136,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1136,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1137,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1137,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1137,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1137,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1138,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1138,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1138,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1138,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1139,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1139,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1139,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1139,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1140,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1140,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1140,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1140,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1141,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1141,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1141,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1141,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1142,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1142,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1142,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1142,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1143,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1143,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1143,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1143,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1144,0,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1144,1,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1144,2,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1144,3,1,2,69.950000,69.950000,69.950000,69.950000,NULL),(1145,0,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(1145,1,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(1145,2,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(1145,3,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(1146,0,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(1146,1,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(1146,2,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(1146,3,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(1147,0,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(1147,1,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(1147,2,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(1147,3,1,2,105.000000,105.000000,105.000000,105.000000,NULL),(1148,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1148,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1148,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1148,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1149,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1149,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1149,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1149,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1150,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1150,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1150,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1150,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1151,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1151,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1151,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1151,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1152,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1152,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1152,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1152,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1153,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1153,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1153,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1153,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1154,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1154,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1154,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1154,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1155,0,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1155,1,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1155,2,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1155,3,1,0,229.000000,229.000000,229.000000,229.000000,NULL),(1156,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1156,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1156,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1156,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1157,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1157,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1157,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1157,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1158,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1158,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1158,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1158,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1159,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1159,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1159,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1159,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1160,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1160,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1160,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1160,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1161,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1161,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1161,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1161,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1162,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1162,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1162,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1162,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1163,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1163,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1163,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1163,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1164,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1164,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1164,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1164,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1165,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1165,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1165,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1165,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1166,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1166,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1166,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1166,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1167,0,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1167,1,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1167,2,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1167,3,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1168,0,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1168,1,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1168,2,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1168,3,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1169,0,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1169,1,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1169,2,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1169,3,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1170,0,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1170,1,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1170,2,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1170,3,1,0,159.000000,159.000000,159.000000,159.000000,NULL),(1171,0,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1171,1,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1171,2,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1171,3,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1172,0,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1172,1,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1172,2,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1172,3,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1173,0,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1173,1,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1173,2,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1173,3,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1174,0,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1174,1,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1174,2,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1174,3,1,0,74.900000,74.900000,74.900000,74.900000,NULL),(1175,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1175,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1175,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1175,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1176,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1176,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1176,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1176,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1177,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1177,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1177,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1177,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1178,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1178,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1178,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1178,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1179,0,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1179,1,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1179,2,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1179,3,1,2,65.950000,65.950000,65.950000,65.950000,NULL),(1180,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1180,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1180,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1180,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1181,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1181,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1181,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1181,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1182,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1182,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1182,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1182,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1183,0,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1183,1,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1183,2,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1183,3,1,0,139.000000,139.000000,139.000000,139.000000,NULL),(1184,0,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(1184,1,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(1184,2,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(1184,3,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(1185,0,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(1185,1,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(1185,2,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(1185,3,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(1186,0,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(1186,1,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(1186,2,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(1186,3,1,2,99.950000,99.950000,99.950000,99.950000,NULL),(1187,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1187,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1187,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1187,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1188,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1188,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1188,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1188,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1189,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1189,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1189,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1189,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1190,0,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1190,1,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1190,2,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1190,3,1,0,239.000000,239.000000,239.000000,239.000000,NULL),(1191,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1191,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1191,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1191,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1192,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1192,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1192,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1192,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1193,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1193,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1193,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1193,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1194,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1194,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1194,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1194,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1195,0,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1195,1,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1195,2,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1195,3,1,2,84.900000,84.900000,84.900000,84.900000,NULL),(1196,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1196,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1196,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1196,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1197,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1197,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1197,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1197,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1198,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1198,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1198,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1198,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1199,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1199,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1199,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1199,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1200,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1200,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1200,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1200,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1201,0,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1201,1,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1201,2,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1201,3,1,2,109.900000,109.900000,109.900000,109.900000,NULL),(1202,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1202,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1202,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1202,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1203,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1203,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1203,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1203,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1204,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1204,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1204,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1204,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1205,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1205,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1205,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1205,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1206,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1206,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1206,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1206,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1207,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1207,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1207,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1207,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1208,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1208,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1208,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1208,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1209,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1209,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1209,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1209,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1210,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1210,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1210,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1210,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1211,0,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(1211,1,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(1211,2,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(1211,3,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(1212,0,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(1212,1,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(1212,2,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(1212,3,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(1213,0,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(1213,1,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(1213,2,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(1213,3,1,0,169.900000,169.900000,169.900000,169.900000,NULL),(1214,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1214,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1214,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1214,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1215,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1215,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1215,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1215,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1216,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1216,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1216,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1216,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1217,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1217,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1217,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1217,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1218,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1218,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1218,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1218,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1219,0,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(1219,1,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(1219,2,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(1219,3,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(1220,0,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(1220,1,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(1220,2,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(1220,3,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(1221,0,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(1221,1,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(1221,2,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(1221,3,1,2,89.950000,89.950000,89.950000,89.950000,NULL),(1222,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1222,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1222,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1222,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1223,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1223,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1223,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1223,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1224,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1224,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1224,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1224,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1225,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1225,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1225,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1225,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1226,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1226,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1226,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1226,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1227,0,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1227,1,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1227,2,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1227,3,1,2,198.000000,198.000000,198.000000,198.000000,NULL),(1228,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1228,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1228,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1228,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1229,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1229,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1229,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1229,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1230,0,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1230,1,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1230,2,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1230,3,1,0,89.900000,89.900000,89.900000,89.900000,NULL),(1231,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1231,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1231,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1231,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1232,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1232,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1232,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1232,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1233,0,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1233,1,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1233,2,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1233,3,1,2,119.000000,119.000000,119.000000,119.000000,NULL),(1234,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1234,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1234,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1234,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1235,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1235,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1235,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1235,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1236,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1236,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1236,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1236,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1237,0,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1237,1,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1237,2,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1237,3,1,0,199.900000,199.900000,199.900000,199.900000,NULL),(1238,0,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1238,1,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1238,2,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1238,3,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1239,0,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1239,1,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1239,2,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1239,3,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1240,0,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1240,1,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1240,2,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1240,3,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1241,0,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1241,1,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1241,2,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1241,3,1,2,59.950000,19.900000,19.900000,19.900000,NULL),(1242,0,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1242,1,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1242,2,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1242,3,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1243,0,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1243,1,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1243,2,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1243,3,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1244,0,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1244,1,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1244,2,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1244,3,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1245,0,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1245,1,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1245,2,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1245,3,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1246,0,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1246,1,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1246,2,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1246,3,1,2,79.950000,12.900000,12.900000,12.900000,NULL),(1247,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1247,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1247,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1247,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1248,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1248,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1248,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1248,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1249,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1249,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1249,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1249,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1250,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1250,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1250,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1250,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1251,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1251,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1251,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1251,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1252,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1252,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1252,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1252,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1253,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1253,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1253,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1253,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1254,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1254,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1254,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1254,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1255,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1255,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1255,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1255,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1256,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1256,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1256,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1256,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1257,0,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1257,1,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1257,2,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1257,3,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1258,0,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1258,1,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1258,2,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1258,3,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1259,0,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1259,1,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1259,2,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1259,3,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1260,0,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1260,1,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1260,2,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1260,3,1,2,89.990000,14.900000,14.900000,14.900000,NULL),(1261,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1261,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1261,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1261,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1262,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1262,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1262,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1262,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1263,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1263,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1263,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1263,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1264,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1264,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1264,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1264,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1265,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1265,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1265,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1265,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1266,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1266,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1266,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1266,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1267,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1267,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1267,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1267,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1268,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1268,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1268,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1268,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1269,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1269,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1269,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1269,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1270,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1270,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1270,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1270,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1271,0,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1271,1,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1271,2,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1271,3,1,2,79.900000,79.900000,79.900000,79.900000,NULL),(1272,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1272,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1272,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1272,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1273,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1273,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1273,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1273,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1274,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1274,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1274,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1274,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1275,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1275,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1275,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1275,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1276,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1276,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1276,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1276,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1277,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1277,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1277,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1277,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1278,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1278,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1278,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1278,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1279,0,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1279,1,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1279,2,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1279,3,1,2,99.900000,99.900000,99.900000,99.900000,NULL),(1280,0,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1280,1,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1280,2,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1280,3,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1281,0,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1281,1,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1281,2,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1281,3,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1282,0,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1282,1,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1282,2,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1282,3,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1283,0,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1283,1,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1283,2,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1283,3,1,2,69.990000,19.900000,19.900000,19.900000,NULL),(1284,0,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(1284,1,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(1284,2,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(1284,3,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(1285,0,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(1285,1,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(1285,2,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(1285,3,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(1286,0,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(1286,1,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(1286,2,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(1286,3,1,0,119.000000,119.000000,119.000000,119.000000,NULL),(1287,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1287,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1287,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1287,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1288,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1288,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1288,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1288,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1289,0,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1289,1,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1289,2,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1289,3,1,0,99.900000,99.900000,99.900000,99.900000,NULL),(1290,0,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(1290,1,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(1290,2,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(1290,3,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(1291,0,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(1291,1,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(1291,2,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(1291,3,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(1292,0,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(1292,1,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(1292,2,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(1292,3,1,2,129.950000,129.950000,129.950000,129.950000,NULL),(1293,0,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(1293,1,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(1293,2,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(1293,3,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(1294,0,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(1294,1,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(1294,2,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(1294,3,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(1295,0,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(1295,1,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(1295,2,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(1295,3,1,2,240.000000,49.900000,49.900000,49.900000,NULL),(1296,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(1296,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(1296,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(1296,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(1297,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(1297,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(1297,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(1297,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(1298,0,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(1298,1,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(1298,2,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(1298,3,1,0,79.900000,79.900000,79.900000,79.900000,NULL),(1299,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1299,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1299,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1299,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1300,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1300,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1300,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1300,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1301,0,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1301,1,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1301,2,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1301,3,1,0,69.900000,69.900000,69.900000,69.900000,NULL),(1302,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1302,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1302,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1302,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1303,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1303,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1303,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1303,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1304,0,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1304,1,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1304,2,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1304,3,1,0,109.900000,109.900000,109.900000,109.900000,NULL),(1305,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1305,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1305,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1305,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1306,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1306,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1306,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1306,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1307,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1307,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1307,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1307,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1308,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1308,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1308,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1308,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1309,0,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(1309,1,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(1309,2,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(1309,3,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(1310,0,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(1310,1,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(1310,2,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(1310,3,1,2,140.000000,140.000000,140.000000,140.000000,NULL),(1311,0,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(1311,1,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(1311,2,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(1311,3,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(1312,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1312,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1312,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1312,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1313,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1313,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1313,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1313,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1314,0,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(1314,1,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(1314,2,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(1314,3,1,2,299.000000,299.000000,299.000000,299.000000,NULL),(1315,0,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(1315,1,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(1315,2,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(1315,3,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(1316,0,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(1316,1,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(1316,2,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(1316,3,1,2,209.000000,209.000000,209.000000,209.000000,NULL),(1317,0,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(1317,1,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(1317,2,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(1317,3,1,2,258.000000,258.000000,258.000000,258.000000,NULL),(1318,0,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1318,1,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1318,2,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1318,3,1,2,169.000000,169.000000,169.000000,169.000000,NULL),(1319,0,1,2,219.000000,219.000000,219.000000,219.000000,NULL),(1319,1,1,2,219.000000,219.000000,219.000000,219.000000,NULL),(1319,2,1,2,219.000000,219.000000,219.000000,219.000000,NULL),(1319,3,1,2,219.000000,219.000000,219.000000,219.000000,NULL),(1320,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1320,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1320,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1320,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1321,0,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1321,1,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1321,2,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1321,3,1,2,102.000000,102.000000,102.000000,102.000000,NULL),(1322,0,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(1322,1,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(1322,2,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(1322,3,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(1323,0,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(1323,1,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(1323,2,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(1323,3,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(1324,0,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(1324,1,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(1324,2,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(1324,3,1,2,283.000000,283.000000,283.000000,283.000000,NULL),(1325,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1325,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1325,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1325,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1326,0,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1326,1,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1326,2,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1326,3,1,2,250.000000,250.000000,250.000000,250.000000,NULL),(1327,0,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(1327,1,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(1327,2,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(1327,3,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(1328,0,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(1328,1,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(1328,2,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(1328,3,1,2,235.000000,235.000000,235.000000,235.000000,NULL),(1329,0,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(1329,1,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(1329,2,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(1329,3,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(1330,0,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(1330,1,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(1330,2,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(1330,3,1,2,111.000000,111.000000,111.000000,111.000000,NULL),(1331,0,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(1331,1,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(1331,2,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(1331,3,1,2,64.000000,64.000000,64.000000,64.000000,NULL),(1332,0,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1332,1,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1332,2,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1332,3,1,2,89.900000,89.900000,89.900000,89.900000,NULL),(1333,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1333,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1333,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1333,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1334,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1334,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1334,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1334,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1335,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1335,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1335,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1335,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1336,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1336,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1336,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1336,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1337,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1337,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1337,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1337,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1338,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1338,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1338,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1338,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1339,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1339,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1339,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1339,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1340,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1340,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1340,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1340,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1341,0,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1341,1,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1341,2,1,0,59.990000,59.990000,59.990000,59.990000,NULL),(1341,3,1,0,59.990000,59.990000,59.990000,59.990000,NULL);
/*!40000 ALTER TABLE `catalog_product_index_price_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned DEFAULT '0' COMMENT 'Tax Class ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_TMP_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_TMP_WEBSITE_ID` (`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_TMP_MIN_PRICE` (`min_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Temp Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_price_tmp`
--

LOCK TABLES `catalog_product_index_price_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_tier_price`
--

DROP TABLE IF EXISTS `catalog_product_index_tier_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_tier_price` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_INDEX_TIER_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CAT_PRD_IDX_TIER_PRICE_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_IDX_TIER_PRICE_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_IDX_TIER_PRICE_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Tier Price Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_tier_price`
--

LOCK TABLES `catalog_product_index_tier_price` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_tier_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_tier_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_website`
--

DROP TABLE IF EXISTS `catalog_product_index_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_website` (
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `default_store_id` smallint(5) unsigned NOT NULL COMMENT 'Default store id for website',
  `website_date` date DEFAULT NULL COMMENT 'Website Date',
  `rate` float DEFAULT '1' COMMENT 'Rate',
  PRIMARY KEY (`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_WEBSITE_WEBSITE_DATE` (`website_date`),
  CONSTRAINT `CAT_PRD_IDX_WS_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Website Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_index_website`
--

LOCK TABLES `catalog_product_index_website` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_website` DISABLE KEYS */;
INSERT INTO `catalog_product_index_website` VALUES (1,1,'2019-03-08',1);
/*!40000 ALTER TABLE `catalog_product_index_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_link`
--

DROP TABLE IF EXISTS `catalog_product_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_link` (
  `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `linked_product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Linked Product ID',
  `link_type_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Link Type ID',
  PRIMARY KEY (`link_id`),
  UNIQUE KEY `CATALOG_PRODUCT_LINK_LINK_TYPE_ID_PRODUCT_ID_LINKED_PRODUCT_ID` (`link_type_id`,`product_id`,`linked_product_id`),
  KEY `CATALOG_PRODUCT_LINK_PRODUCT_ID` (`product_id`),
  KEY `CATALOG_PRODUCT_LINK_LINKED_PRODUCT_ID` (`linked_product_id`),
  CONSTRAINT `CATALOG_PRODUCT_LINK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_LNK_LNKED_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`linked_product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_LNK_LNK_TYPE_ID_CAT_PRD_LNK_TYPE_LNK_TYPE_ID` FOREIGN KEY (`link_type_id`) REFERENCES `catalog_product_link_type` (`link_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2678 DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Product Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_link`
--

LOCK TABLES `catalog_product_link` WRITE;
/*!40000 ALTER TABLE `catalog_product_link` DISABLE KEYS */;
INSERT INTO `catalog_product_link` VALUES (1996,1,2,1),(1997,1,17,1),(1998,1,101,1),(1999,1,103,1),(2000,1,104,1),(1992,2,1,1),(1993,2,101,1),(1994,2,102,1),(1995,2,103,1),(1372,4,5,1),(1373,4,6,1),(1374,4,8,1),(1375,4,16,1),(1937,5,4,1),(1938,5,6,1),(1939,5,8,1),(1940,5,16,1),(1356,6,4,1),(1357,6,5,1),(1358,6,8,1),(1359,6,15,1),(2031,7,10,1),(2032,7,12,1),(2033,7,17,1),(2034,7,24,1),(1941,8,3,1),(1942,8,5,1),(1943,8,559,1),(1944,8,614,1),(1742,9,17,1),(1743,9,24,1),(1744,9,49,1),(1745,9,53,1),(2036,10,7,1),(2035,10,9,1),(2037,10,11,1),(2038,10,12,1),(2052,11,34,1),(2053,11,38,1),(2054,11,42,1),(2055,11,66,1),(2080,12,10,1),(2079,12,17,1),(2081,12,24,1),(2078,12,53,1),(1932,15,8,1),(1929,15,16,1),(1930,15,20,1),(1931,15,25,1),(1371,16,3,1),(1370,16,4,1),(1369,16,5,1),(1368,16,6,1),(2043,17,9,1),(2044,17,10,1),(2046,17,11,1),(2045,17,12,1),(2143,18,26,1),(2142,18,30,1),(2145,18,45,1),(2144,18,46,1),(2119,19,46,1),(2116,19,47,1),(2117,19,51,1),(2118,19,55,1),(1918,20,4,1),(1920,20,5,1),(1919,20,6,1),(1731,22,26,1),(1730,22,30,1),(1733,22,45,1),(1732,22,46,1),(1767,24,10,1),(1764,24,12,1),(1765,24,17,1),(1766,24,49,1),(1364,25,4,1),(1365,25,5,1),(1366,25,6,1),(1367,25,16,1),(2073,26,9,1),(2072,26,19,1),(2070,26,46,1),(2071,26,47,1),(1928,29,8,1),(1927,29,15,1),(1926,29,16,1),(1925,29,20,1),(1748,30,26,1),(1746,30,33,1),(1747,30,34,1),(1749,30,36,1),(1783,31,48,1),(1782,31,58,1),(1781,31,61,1),(1780,31,65,1),(1809,32,44,1),(1807,32,48,1),(1806,32,58,1),(1808,32,61,1),(2027,33,45,1),(2028,33,46,1),(2029,33,47,1),(2030,33,49,1),(1967,34,11,1),(1968,34,18,1),(1969,34,38,1),(1970,34,42,1),(1923,35,3,1),(1922,35,4,1),(1921,35,5,1),(1924,35,8,1),(1975,36,18,1),(1976,36,22,1),(1977,36,33,1),(1978,36,45,1),(1971,38,11,1),(1972,38,33,1),(1973,38,34,1),(1974,38,42,1),(2138,41,50,1),(2139,41,56,1),(2140,41,64,1),(2141,41,70,1),(1958,42,9,1),(1959,42,10,1),(1960,42,11,1),(1961,42,12,1),(1352,43,5,1),(1353,43,6,1),(1354,43,8,1),(1355,43,15,1),(1897,44,32,1),(1896,44,48,1),(1895,44,58,1),(1894,44,61,1),(2149,45,18,1),(2148,45,19,1),(2146,45,22,1),(2147,45,24,1),(1933,46,9,1),(1934,46,10,1),(1935,46,11,1),(1936,46,12,1),(1946,47,9,1),(1945,47,10,1),(1947,47,11,1),(1948,47,12,1),(1787,48,44,1),(1786,48,58,1),(1785,48,61,1),(1784,48,65,1),(1954,49,9,1),(1955,49,10,1),(1956,49,11,1),(1957,49,12,1),(2129,50,70,1),(2130,50,72,1),(2132,50,73,1),(2131,50,77,1),(1949,53,7,1),(1950,53,9,1),(1951,53,10,1),(1952,53,11,1),(1953,53,12,1),(2120,54,60,1),(2121,54,69,1),(2122,54,75,1),(2123,54,82,1),(2124,54,86,1),(1385,55,36,1),(1386,55,38,1),(1388,55,46,1),(1387,55,47,1),(1734,56,64,1),(1735,56,72,1),(1736,56,77,1),(1737,56,80,1),(1718,57,18,1),(1717,57,22,1),(1715,57,45,1),(1716,57,68,1),(1775,58,44,1),(1774,58,48,1),(1773,58,61,1),(1772,58,65,1),(2085,59,80,1),(2084,59,81,1),(2082,59,83,1),(2083,59,87,1),(1711,60,5,1),(1712,60,6,1),(1713,60,8,1),(1714,60,20,1),(1810,61,32,1),(1811,61,44,1),(1812,61,48,1),(1813,61,58,1),(1400,63,78,1),(1399,63,79,1),(1397,63,85,1),(1398,63,88,1),(2077,64,70,1),(2076,64,73,1),(2075,64,77,1),(2074,64,83,1),(1798,65,44,1),(1797,65,48,1),(1796,65,58,1),(1795,65,61,1),(1424,66,33,1),(1423,66,34,1),(1425,66,38,1),(1426,66,42,1),(1390,68,17,1),(1389,68,18,1),(1391,68,19,1),(1392,68,22,1),(2150,69,54,1),(2151,69,60,1),(2152,69,75,1),(2039,70,83,1),(2040,70,87,1),(2041,70,91,1),(2042,70,92,1),(1861,71,33,1),(1860,71,63,1),(1859,71,66,1),(1858,71,68,1),(2065,72,77,1),(2064,72,80,1),(2063,72,87,1),(2062,72,91,1),(2125,73,56,1),(2126,73,70,1),(2128,73,93,1),(2127,73,100,1),(1799,74,31,1),(1800,74,32,1),(1801,74,44,1),(1802,74,48,1),(1803,74,58,1),(1804,74,61,1),(1805,74,65,1),(2112,75,54,1),(2113,75,60,1),(2114,75,69,1),(2115,75,82,1),(1842,76,17,1),(1841,76,18,1),(1840,76,19,1),(1839,76,22,1),(1738,77,72,1),(1741,77,73,1),(1740,77,92,1),(1739,77,95,1),(1384,78,33,1),(1383,78,63,1),(1382,78,66,1),(1381,78,71,1),(1446,79,34,1),(1445,79,36,1),(1444,79,38,1),(1447,79,42,1),(2069,80,70,1),(2068,80,72,1),(2067,80,77,1),(2066,80,83,1),(1039,81,72,1),(1038,81,77,1),(1037,81,83,1),(1036,81,91,1),(2086,82,54,1),(2087,82,60,1),(2088,82,69,1),(2089,82,75,1),(1432,83,50,1),(1431,83,64,1),(1433,83,87,1),(1434,83,91,1),(1719,84,60,1),(1720,84,82,1),(1721,84,86,1),(1396,85,71,1),(1395,85,78,1),(1394,85,79,1),(1393,85,88,1),(1726,86,60,1),(1727,86,69,1),(1728,86,75,1),(1729,86,84,1),(1448,87,73,1),(1449,87,81,1),(1450,87,83,1),(1451,87,92,1),(1429,88,63,1),(1428,88,66,1),(1427,88,68,1),(1430,88,71,1),(1722,89,3,1),(1723,89,4,1),(1724,89,5,1),(1725,89,6,1),(2158,91,72,1),(2157,91,87,1),(2159,91,92,1),(2160,91,95,1),(1440,92,50,1),(1443,92,81,1),(1442,92,87,1),(1441,92,93,1),(1461,93,41,1),(1462,93,64,1),(1463,93,72,1),(1464,93,73,1),(2009,95,50,1),(2008,95,56,1),(2007,95,64,1),(2006,95,70,1),(1988,97,9,1),(1989,97,12,1),(1990,97,22,1),(1991,97,34,1),(1458,98,50,1),(1457,98,56,1),(1459,98,73,1),(1460,98,77,1),(1984,99,22,1),(1985,99,36,1),(1986,99,38,1),(1987,99,42,1),(2001,100,1,1),(2002,100,2,1),(2003,100,41,1),(2004,100,56,1),(2005,100,64,1),(1962,101,1,1),(1963,101,2,1),(1964,101,102,1),(1965,101,103,1),(1966,101,104,1),(1439,102,1,1),(1438,102,2,1),(1437,102,101,1),(1436,102,103,1),(1435,102,104,1),(1452,103,1,1),(1453,103,2,1),(1454,103,101,1),(1455,103,102,1),(1456,103,104,1),(1979,104,1,1),(1980,104,2,1),(1981,104,101,1),(1982,104,102,1),(1983,104,103,1),(2013,105,73,1),(2014,105,77,1),(2012,105,106,1),(2011,105,107,1),(2010,105,108,1),(2018,106,77,1),(2017,106,105,1),(2016,106,107,1),(2015,106,108,1),(2022,107,77,1),(2021,107,105,1),(2019,107,106,1),(2020,107,108,1),(2026,108,77,1),(2025,108,105,1),(2024,108,106,1),(2023,108,107,1),(1758,109,110,1),(1757,109,112,1),(1756,109,113,1),(1755,109,115,1),(1754,109,117,1),(1753,110,112,1),(1752,110,113,1),(1751,110,115,1),(1750,110,117,1),(1814,111,114,1),(1815,111,116,1),(1817,111,118,1),(1816,111,121,1),(1763,112,109,1),(1762,112,110,1),(1761,112,113,1),(1760,112,115,1),(1759,112,117,1),(2111,113,109,1),(2110,113,110,1),(2109,113,112,1),(2108,113,115,1),(2107,113,117,1),(1771,114,111,1),(1770,114,116,1),(1769,114,118,1),(1768,114,121,1),(2096,115,112,1),(2095,115,113,1),(2094,115,117,1),(2093,115,119,1),(2092,115,120,1),(2091,115,122,1),(2090,115,123,1),(1901,116,111,1),(1900,116,114,1),(1899,116,118,1),(1898,116,121,1),(2106,117,109,1),(2105,117,110,1),(2103,117,112,1),(2104,117,113,1),(2102,117,115,1),(2137,119,112,1),(2136,119,113,1),(2135,119,115,1),(2134,119,117,1),(2133,119,120,1),(2056,120,59,1),(2061,120,115,1),(2060,120,117,1),(2059,120,119,1),(2057,120,122,1),(2058,120,123,1),(1792,121,111,1),(1791,121,114,1),(1794,121,116,1),(1793,121,118,1),(2097,122,59,1),(2101,122,117,1),(2100,122,119,1),(2099,122,120,1),(2098,122,123,1),(2047,123,59,1),(2051,123,115,1),(2050,123,117,1),(2049,123,120,1),(2048,123,122,1),(1790,124,125,1),(1789,124,126,1),(1788,124,127,1),(1779,128,124,1),(1778,128,125,1),(1777,128,126,1),(1776,128,127,1),(2169,1351,1583,1),(2170,1351,1735,1),(2171,1351,2084,1),(2172,1351,2343,1),(2272,1413,1597,1),(2273,1413,1946,1),(2274,1413,1972,1),(2191,1464,2084,1),(2192,1464,2132,1),(2193,1464,2300,1),(2194,1464,2542,1),(2176,1495,1597,1),(2177,1495,1643,1),(2178,1495,1972,1),(2187,1526,1413,1),(2188,1526,1561,1),(2189,1526,1643,1),(2190,1526,1991,1),(2203,1535,2284,1),(2204,1535,2424,1),(2205,1535,2431,1),(2206,1535,2542,1),(2195,1561,1413,1),(2196,1561,1643,1),(2197,1561,1961,1),(2198,1561,1991,1),(2211,1568,1709,1),(2212,1568,1777,1),(2213,1568,1910,1),(2214,1568,1920,1),(2218,1583,1656,1),(2219,1583,1735,1),(2220,1583,2542,1),(2275,1596,2029,1),(2276,1596,2065,1),(2277,1596,2145,1),(2278,1596,2410,1),(2268,1597,1643,1),(2269,1597,1946,1),(2270,1597,1972,1),(2271,1597,1991,1),(2225,1604,1630,1),(2226,1604,1817,1),(2227,1604,1875,1),(2228,1604,2517,1),(2234,1630,1756,1),(2235,1630,1808,1),(2236,1630,2010,1),(2237,1630,2389,1),(2215,1643,1413,1),(2216,1643,1495,1),(2217,1643,1597,1),(2246,1656,1351,1),(2247,1656,1583,1),(2248,1656,2132,1),(2249,1656,2284,1),(2221,1677,1903,1),(2222,1677,2029,1),(2223,1677,2065,1),(2224,1677,2145,1),(2229,1699,2017,1),(2230,1699,2029,1),(2231,1699,2065,1),(2232,1699,2145,1),(2233,1699,2410,1),(2255,1709,1568,1),(2256,1709,1777,1),(2257,1709,1888,1),(2258,1709,1910,1),(2259,1709,1920,1),(2238,1725,2029,1),(2239,1725,2065,1),(2240,1725,2145,1),(2241,1725,2410,1),(2265,1735,1464,1),(2266,1735,1583,1),(2267,1735,2284,1),(2242,1756,2029,1),(2243,1756,2065,1),(2244,1756,2145,1),(2245,1756,2410,1),(2260,1777,1568,1),(2261,1777,1709,1),(2262,1777,1888,1),(2263,1777,1910,1),(2264,1777,1920,1),(2279,1787,1756,1),(2280,1787,1808,1),(2281,1787,1866,1),(2282,1787,2389,1),(2319,1808,1756,1),(2320,1808,2065,1),(2321,1808,2309,1),(2322,1808,2389,1),(2287,1817,1604,1),(2288,1817,1787,1),(2289,1817,1840,1),(2290,1817,2524,1),(2291,1840,1604,1),(2292,1840,1787,1),(2293,1840,2517,1),(2294,1840,2524,1),(2323,1866,2010,1),(2324,1866,2309,1),(2325,1866,2320,1),(2326,1866,2440,1),(2295,1875,2050,1),(2296,1875,2252,1),(2297,1875,2309,1),(2298,1875,2440,1),(2327,1888,1568,1),(2328,1888,1709,1),(2329,1888,1777,1),(2330,1888,1910,1),(2331,1888,1920,1),(2332,1892,1756,1),(2333,1892,1866,1),(2334,1892,2389,1),(2335,1892,2440,1),(2336,1896,1808,1),(2337,1896,2145,1),(2338,1896,2410,1),(2339,1896,2440,1),(2299,1903,1596,1),(2300,1903,1677,1),(2301,1903,1866,1),(2302,1903,2389,1),(2344,1910,1568,1),(2345,1910,1709,1),(2346,1910,1777,1),(2347,1910,1920,1),(2348,1920,1568,1),(2349,1920,1777,1),(2350,1920,1888,1),(2351,1920,1910,1),(2352,1920,2050,1),(2307,1943,1561,1),(2308,1943,1597,1),(2309,1943,1643,1),(2310,1943,1946,1),(2311,1946,1561,1),(2312,1946,1597,1),(2313,1946,1643,1),(2314,1946,1972,1),(2340,1961,1597,1),(2341,1961,1946,1),(2342,1961,1972,1),(2343,1961,1991,1),(2353,1972,1597,1),(2354,1972,1643,1),(2355,1972,1946,1),(2356,1972,1991,1),(2362,1991,1597,1),(2363,1991,1946,1),(2364,1991,1972,1),(2650,1996,1596,1),(2653,1996,1677,1),(2651,1996,1903,1),(2652,1996,2410,1),(2381,2001,2055,1),(2384,2001,2077,1),(2383,2001,2190,1),(2382,2001,2234,1),(2389,2010,1596,1),(2390,2010,1677,1),(2391,2010,1725,1),(2392,2010,2320,1),(2409,2017,2029,1),(2410,2017,2050,1),(2411,2017,2145,1),(2412,2017,2350,1),(2385,2020,2032,1),(2386,2020,2135,1),(2387,2020,2138,1),(2388,2020,2255,1),(2405,2029,2017,1),(2406,2029,2065,1),(2407,2029,2145,1),(2408,2029,2410,1),(2393,2032,2020,1),(2394,2032,2135,1),(2395,2032,2138,1),(2396,2032,2255,1),(2421,2050,2029,1),(2422,2050,2065,1),(2423,2050,2145,1),(2424,2050,2410,1),(2401,2055,2001,1),(2402,2055,2077,1),(2403,2055,2190,1),(2404,2055,2234,1),(2430,2060,2072,1),(2431,2060,2157,1),(2432,2060,2178,1),(2433,2060,2185,1),(2434,2060,2204,1),(2439,2065,1630,1),(2440,2065,1756,1),(2441,2065,1808,1),(2442,2065,2389,1),(2447,2072,2060,1),(2448,2072,2157,1),(2449,2072,2178,1),(2450,2072,2185,1),(2451,2072,2204,1),(2452,2072,2291,1),(2417,2077,2001,1),(2418,2077,2055,1),(2419,2077,2190,1),(2420,2077,2234,1),(2457,2084,1351,1),(2458,2084,1583,1),(2459,2084,2098,1),(2460,2084,2424,1),(2425,2089,2001,1),(2426,2089,2077,1),(2427,2089,2190,1),(2428,2089,2212,1),(2429,2089,2234,1),(2461,2098,1656,1),(2462,2098,2084,1),(2463,2098,2366,1),(2464,2098,2424,1),(2435,2105,2001,1),(2436,2105,2055,1),(2437,2105,2190,1),(2438,2105,2234,1),(2468,2116,1596,1),(2469,2116,1677,1),(2470,2116,2252,1),(2471,2116,2410,1),(2475,2123,2197,1),(2476,2123,2229,1),(2477,2123,2417,1),(2478,2123,2424,1),(2483,2132,1656,1),(2484,2132,2366,1),(2485,2132,2424,1),(2486,2132,2542,1),(2664,2135,2020,1),(2662,2135,2032,1),(2663,2135,2138,1),(2665,2135,2255,1),(2453,2138,2020,1),(2454,2138,2032,1),(2455,2138,2135,1),(2456,2138,2255,1),(2490,2145,1699,1),(2491,2145,2029,1),(2492,2145,2050,1),(2493,2145,2350,1),(2467,2149,2171,1),(2466,2149,2207,1),(2465,2149,2222,1),(2498,2157,1583,1),(2499,2157,1656,1),(2500,2157,1777,1),(2501,2157,2098,1),(2502,2168,2245,1),(2503,2168,2268,1),(2504,2168,2500,1),(2505,2168,2533,1),(2472,2171,2149,1),(2473,2171,2207,1),(2474,2171,2222,1),(2513,2178,2060,1),(2514,2178,2072,1),(2515,2178,2185,1),(2516,2178,2204,1),(2517,2178,2219,1),(2518,2178,2291,1),(2519,2178,2357,1),(2520,2185,2060,1),(2521,2185,2072,1),(2522,2185,2157,1),(2523,2185,2204,1),(2524,2185,2291,1),(2479,2190,2001,1),(2480,2190,2055,1),(2481,2190,2105,1),(2482,2190,2234,1),(2529,2197,2123,1),(2530,2197,2229,1),(2531,2197,2417,1),(2532,2197,2424,1),(2537,2204,2178,1),(2538,2204,2219,1),(2539,2204,2357,1),(2540,2204,2373,1),(2541,2204,2396,1),(2487,2207,2149,1),(2488,2207,2171,1),(2489,2207,2222,1),(2494,2212,2055,1),(2495,2212,2105,1),(2496,2212,2190,1),(2497,2212,2234,1),(2542,2219,2178,1),(2543,2219,2204,1),(2544,2219,2357,1),(2545,2219,2373,1),(2546,2219,2396,1),(2506,2222,2149,1),(2507,2222,2171,1),(2508,2222,2207,1),(2552,2229,106,1),(2553,2229,2123,1),(2554,2229,2417,1),(2555,2229,2424,1),(2556,2229,2542,1),(2509,2234,2001,1),(2510,2234,2055,1),(2511,2234,2105,1),(2512,2234,2190,1),(2562,2245,2168,1),(2563,2245,2268,1),(2564,2245,2500,1),(2565,2245,2533,1),(2566,2252,1596,1),(2567,2252,1677,1),(2568,2252,1903,1),(2569,2252,1996,1),(2525,2255,2020,1),(2526,2255,2032,1),(2527,2255,2135,1),(2528,2255,2138,1),(2574,2268,2168,1),(2575,2268,2245,1),(2576,2268,2465,1),(2577,2268,2500,1),(2578,2268,2533,1),(2591,2284,2084,1),(2592,2284,2366,1),(2593,2284,2424,1),(2594,2284,2542,1),(2595,2291,2072,1),(2596,2291,2178,1),(2597,2291,2204,1),(2598,2291,2219,1),(2599,2291,2357,1),(2666,2300,2132,1),(2667,2300,2284,1),(2668,2300,2366,1),(2669,2300,2431,1),(2674,2309,1596,1),(2675,2309,2116,1),(2676,2309,2320,1),(2677,2309,2403,1),(2608,2320,2252,1),(2609,2320,2309,1),(2610,2320,2350,1),(2611,2320,2440,1),(2357,2336,1910,1),(2358,2336,1920,1),(2359,2336,2132,1),(2360,2336,2300,1),(2361,2336,2431,1),(2365,2343,2132,1),(2366,2343,2284,1),(2367,2343,2366,1),(2368,2343,2431,1),(2533,2350,1725,1),(2534,2350,2029,1),(2535,2350,2050,1),(2536,2350,2145,1),(2615,2357,2178,1),(2616,2357,2204,1),(2617,2357,2219,1),(2618,2357,2373,1),(2619,2357,2396,1),(2413,2366,1351,1),(2414,2366,1583,1),(2415,2366,1656,1),(2416,2366,1735,1),(2557,2373,2178,1),(2558,2373,2204,1),(2559,2373,2219,1),(2560,2373,2357,1),(2561,2373,2396,1),(2315,2389,1756,1),(2316,2389,1808,1),(2317,2389,2010,1),(2318,2389,2065,1),(2570,2396,2178,1),(2571,2396,2204,1),(2572,2396,2219,1),(2573,2396,2357,1),(2583,2403,1808,1),(2584,2403,1866,1),(2585,2403,2010,1),(2586,2403,2116,1),(2587,2410,1699,1),(2588,2410,1725,1),(2589,2410,2050,1),(2590,2410,2350,1),(2369,2417,2123,1),(2370,2417,2197,1),(2371,2417,2229,1),(2372,2417,2424,1),(2620,2424,1735,1),(2621,2424,2084,1),(2622,2424,2343,1),(2623,2424,2542,1),(2624,2431,2084,1),(2625,2431,2098,1),(2626,2431,2132,1),(2627,2431,2424,1),(2628,2440,1596,1),(2629,2440,2116,1),(2630,2440,2320,1),(2631,2440,2403,1),(2632,2456,2168,1),(2633,2456,2465,1),(2634,2456,2500,1),(2635,2465,2245,1),(2636,2465,2456,1),(2637,2465,2500,1),(2638,2465,2533,1),(2639,2478,1597,1),(2640,2478,1946,1),(2641,2478,1972,1),(2642,2487,1875,1),(2643,2487,2309,1),(2644,2487,2320,1),(2645,2487,2440,1),(2646,2500,1413,1),(2647,2500,1597,1),(2648,2500,1643,1),(2649,2500,1946,1),(2373,2507,2050,1),(2374,2507,2252,1),(2375,2507,2309,1),(2376,2507,2440,1),(2377,2517,1630,1),(2378,2517,1817,1),(2379,2517,1875,1),(2380,2517,2010,1),(2303,2524,1630,1),(2304,2524,1817,1),(2305,2524,2010,1),(2306,2524,2517,1),(2612,2533,2245,1),(2613,2533,2268,1),(2614,2533,2500,1),(2579,2542,1464,1),(2580,2542,2336,1),(2581,2542,2366,1),(2582,2542,2431,1);
/*!40000 ALTER TABLE `catalog_product_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_link_attribute`
--

DROP TABLE IF EXISTS `catalog_product_link_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_link_attribute` (
  `product_link_attribute_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product Link Attribute ID',
  `link_type_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Link Type ID',
  `product_link_attribute_code` varchar(32) DEFAULT NULL COMMENT 'Product Link Attribute Code',
  `data_type` varchar(32) DEFAULT NULL COMMENT 'Data Type',
  PRIMARY KEY (`product_link_attribute_id`),
  KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_LINK_TYPE_ID` (`link_type_id`),
  CONSTRAINT `CAT_PRD_LNK_ATTR_LNK_TYPE_ID_CAT_PRD_LNK_TYPE_LNK_TYPE_ID` FOREIGN KEY (`link_type_id`) REFERENCES `catalog_product_link_type` (`link_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_link_attribute`
--

LOCK TABLES `catalog_product_link_attribute` WRITE;
/*!40000 ALTER TABLE `catalog_product_link_attribute` DISABLE KEYS */;
INSERT INTO `catalog_product_link_attribute` VALUES (1,1,'position','int'),(2,4,'position','int'),(3,5,'position','int'),(4,3,'position','int'),(5,3,'qty','decimal');
/*!40000 ALTER TABLE `catalog_product_link_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_link_attribute_decimal`
--

DROP TABLE IF EXISTS `catalog_product_link_attribute_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_link_attribute_decimal` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `product_link_attribute_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Product Link Attribute ID',
  `link_id` int(10) unsigned NOT NULL COMMENT 'Link ID',
  `value` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CAT_PRD_LNK_ATTR_DEC_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_DECIMAL_LINK_ID` (`link_id`),
  CONSTRAINT `CAT_PRD_LNK_ATTR_DEC_LNK_ID_CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_AB2EFA9A14F7BCF1D5400056203D14B6` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Decimal Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_link_attribute_decimal`
--

LOCK TABLES `catalog_product_link_attribute_decimal` WRITE;
/*!40000 ALTER TABLE `catalog_product_link_attribute_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_link_attribute_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_link_attribute_int`
--

DROP TABLE IF EXISTS `catalog_product_link_attribute_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_link_attribute_int` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `product_link_attribute_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Product Link Attribute ID',
  `link_id` int(10) unsigned NOT NULL COMMENT 'Link ID',
  `value` int(11) NOT NULL DEFAULT '0' COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CAT_PRD_LNK_ATTR_INT_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_INT_LINK_ID` (`link_id`),
  CONSTRAINT `CAT_PRD_LNK_ATTR_INT_LNK_ID_CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_D6D878F8BA2A4282F8DDED7E6E3DE35C` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2678 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Integer Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_link_attribute_int`
--

LOCK TABLES `catalog_product_link_attribute_int` WRITE;
/*!40000 ALTER TABLE `catalog_product_link_attribute_int` DISABLE KEYS */;
INSERT INTO `catalog_product_link_attribute_int` VALUES (1036,1,1036,1),(1037,1,1037,2),(1038,1,1038,3),(1039,1,1039,4),(1352,1,1352,1),(1353,1,1353,2),(1354,1,1354,3),(1355,1,1355,4),(1356,1,1356,1),(1357,1,1357,2),(1358,1,1358,3),(1359,1,1359,4),(1364,1,1364,1),(1365,1,1365,2),(1366,1,1366,3),(1367,1,1367,4),(1368,1,1368,1),(1369,1,1369,2),(1370,1,1370,3),(1371,1,1371,4),(1372,1,1372,1),(1373,1,1373,2),(1374,1,1374,3),(1375,1,1375,4),(1381,1,1381,1),(1382,1,1382,2),(1383,1,1383,3),(1384,1,1384,4),(1385,1,1385,1),(1386,1,1386,2),(1387,1,1387,3),(1388,1,1388,4),(1389,1,1389,1),(1390,1,1390,2),(1391,1,1391,3),(1392,1,1392,4),(1393,1,1393,1),(1394,1,1394,2),(1395,1,1395,3),(1396,1,1396,4),(1397,1,1397,1),(1398,1,1398,2),(1399,1,1399,3),(1400,1,1400,4),(1423,1,1423,1),(1424,1,1424,2),(1425,1,1425,3),(1426,1,1426,4),(1427,1,1427,1),(1428,1,1428,2),(1429,1,1429,3),(1430,1,1430,4),(1431,1,1431,1),(1432,1,1432,2),(1433,1,1433,3),(1434,1,1434,4),(1435,1,1435,1),(1436,1,1436,2),(1437,1,1437,3),(1438,1,1438,4),(1439,1,1439,5),(1440,1,1440,1),(1441,1,1441,2),(1442,1,1442,3),(1443,1,1443,4),(1444,1,1444,1),(1445,1,1445,2),(1446,1,1446,3),(1447,1,1447,4),(1448,1,1448,1),(1449,1,1449,2),(1450,1,1450,3),(1451,1,1451,4),(1452,1,1452,1),(1453,1,1453,2),(1454,1,1454,3),(1455,1,1455,4),(1456,1,1456,5),(1457,1,1457,1),(1458,1,1458,2),(1459,1,1459,3),(1460,1,1460,4),(1461,1,1461,1),(1462,1,1462,2),(1463,1,1463,3),(1464,1,1464,4),(1711,1,1711,1),(1712,1,1712,2),(1713,1,1713,3),(1714,1,1714,4),(1715,1,1715,1),(1716,1,1716,2),(1717,1,1717,3),(1718,1,1718,4),(1719,1,1719,1),(1720,1,1720,2),(1721,1,1721,3),(1722,1,1722,1),(1723,1,1723,2),(1724,1,1724,3),(1725,1,1725,4),(1726,1,1726,1),(1727,1,1727,2),(1728,1,1728,3),(1729,1,1729,4),(1730,1,1730,1),(1731,1,1731,2),(1732,1,1732,3),(1733,1,1733,4),(1734,1,1734,1),(1735,1,1735,2),(1736,1,1736,3),(1737,1,1737,4),(1738,1,1738,1),(1739,1,1739,2),(1740,1,1740,3),(1741,1,1741,4),(1742,1,1742,1),(1743,1,1743,2),(1744,1,1744,3),(1745,1,1745,4),(1746,1,1746,1),(1747,1,1747,2),(1748,1,1748,3),(1749,1,1749,4),(1750,1,1750,1),(1751,1,1751,2),(1752,1,1752,3),(1753,1,1753,4),(1754,1,1754,1),(1755,1,1755,2),(1756,1,1756,3),(1757,1,1757,4),(1758,1,1758,5),(1759,1,1759,1),(1760,1,1760,2),(1761,1,1761,3),(1762,1,1762,4),(1763,1,1763,5),(1764,1,1764,1),(1765,1,1765,2),(1766,1,1766,3),(1767,1,1767,4),(1768,1,1768,1),(1769,1,1769,2),(1770,1,1770,3),(1771,1,1771,4),(1772,1,1772,1),(1773,1,1773,2),(1774,1,1774,3),(1775,1,1775,4),(1776,1,1776,1),(1777,1,1777,2),(1778,1,1778,3),(1779,1,1779,4),(1780,1,1780,1),(1781,1,1781,2),(1782,1,1782,3),(1783,1,1783,4),(1784,1,1784,1),(1785,1,1785,2),(1786,1,1786,3),(1787,1,1787,4),(1788,1,1788,1),(1789,1,1789,2),(1790,1,1790,3),(1791,1,1791,1),(1792,1,1792,2),(1793,1,1793,3),(1794,1,1794,4),(1795,1,1795,1),(1796,1,1796,2),(1797,1,1797,3),(1798,1,1798,4),(1799,1,1799,1),(1800,1,1800,2),(1801,1,1801,3),(1802,1,1802,4),(1803,1,1803,5),(1804,1,1804,6),(1805,1,1805,7),(1806,1,1806,1),(1807,1,1807,2),(1808,1,1808,3),(1809,1,1809,4),(1810,1,1810,1),(1811,1,1811,2),(1812,1,1812,3),(1813,1,1813,4),(1814,1,1814,1),(1815,1,1815,2),(1816,1,1816,3),(1817,1,1817,4),(1839,1,1839,1),(1840,1,1840,2),(1841,1,1841,3),(1842,1,1842,4),(1858,1,1858,1),(1859,1,1859,2),(1860,1,1860,3),(1861,1,1861,4),(1894,1,1894,1),(1895,1,1895,2),(1896,1,1896,3),(1897,1,1897,4),(1898,1,1898,1),(1899,1,1899,2),(1900,1,1900,3),(1901,1,1901,4),(1918,1,1918,1),(1919,1,1919,2),(1920,1,1920,3),(1921,1,1921,1),(1922,1,1922,2),(1923,1,1923,3),(1924,1,1924,4),(1925,1,1925,1),(1926,1,1926,2),(1927,1,1927,3),(1928,1,1928,4),(1929,1,1929,1),(1930,1,1930,2),(1931,1,1931,3),(1932,1,1932,4),(1933,1,1933,1),(1934,1,1934,2),(1935,1,1935,3),(1936,1,1936,4),(1937,1,1937,1),(1938,1,1938,2),(1939,1,1939,3),(1940,1,1940,4),(1941,1,1941,1),(1942,1,1942,2),(1943,1,1943,3),(1944,1,1944,4),(1945,1,1945,1),(1946,1,1946,2),(1947,1,1947,3),(1948,1,1948,4),(1949,1,1949,1),(1950,1,1950,2),(1951,1,1951,3),(1952,1,1952,4),(1953,1,1953,5),(1954,1,1954,1),(1955,1,1955,2),(1956,1,1956,3),(1957,1,1957,4),(1958,1,1958,1),(1959,1,1959,2),(1960,1,1960,3),(1961,1,1961,4),(1962,1,1962,1),(1963,1,1963,2),(1964,1,1964,3),(1965,1,1965,4),(1966,1,1966,5),(1967,1,1967,1),(1968,1,1968,2),(1969,1,1969,3),(1970,1,1970,4),(1971,1,1971,1),(1972,1,1972,2),(1973,1,1973,3),(1974,1,1974,4),(1975,1,1975,1),(1976,1,1976,2),(1977,1,1977,3),(1978,1,1978,4),(1979,1,1979,1),(1980,1,1980,2),(1981,1,1981,3),(1982,1,1982,4),(1983,1,1983,5),(1984,1,1984,1),(1985,1,1985,2),(1986,1,1986,3),(1987,1,1987,4),(1988,1,1988,1),(1989,1,1989,2),(1990,1,1990,3),(1991,1,1991,4),(1992,1,1992,1),(1993,1,1993,2),(1994,1,1994,3),(1995,1,1995,4),(1996,1,1996,1),(1997,1,1997,2),(1998,1,1998,3),(1999,1,1999,4),(2000,1,2000,5),(2001,1,2001,1),(2002,1,2002,2),(2003,1,2003,3),(2004,1,2004,4),(2005,1,2005,5),(2006,1,2006,1),(2007,1,2007,2),(2008,1,2008,3),(2009,1,2009,4),(2010,1,2010,1),(2011,1,2011,2),(2012,1,2012,3),(2013,1,2013,4),(2014,1,2014,5),(2015,1,2015,1),(2016,1,2016,2),(2017,1,2017,3),(2018,1,2018,4),(2019,1,2019,1),(2020,1,2020,2),(2021,1,2021,3),(2022,1,2022,4),(2023,1,2023,1),(2024,1,2024,2),(2025,1,2025,3),(2026,1,2026,4),(2027,1,2027,1),(2028,1,2028,2),(2029,1,2029,3),(2030,1,2030,4),(2031,1,2031,1),(2032,1,2032,2),(2033,1,2033,3),(2034,1,2034,4),(2035,1,2035,1),(2036,1,2036,2),(2037,1,2037,3),(2038,1,2038,4),(2039,1,2039,1),(2040,1,2040,2),(2041,1,2041,3),(2042,1,2042,4),(2043,1,2043,1),(2044,1,2044,2),(2045,1,2045,3),(2046,1,2046,4),(2047,1,2047,1),(2048,1,2048,2),(2049,1,2049,3),(2050,1,2050,4),(2051,1,2051,5),(2052,1,2052,1),(2053,1,2053,2),(2054,1,2054,3),(2055,1,2055,4),(2056,1,2056,1),(2057,1,2057,2),(2058,1,2058,3),(2059,1,2059,4),(2060,1,2060,5),(2061,1,2061,6),(2062,1,2062,1),(2063,1,2063,2),(2064,1,2064,3),(2065,1,2065,4),(2066,1,2066,1),(2067,1,2067,2),(2068,1,2068,3),(2069,1,2069,4),(2070,1,2070,1),(2071,1,2071,2),(2072,1,2072,3),(2073,1,2073,4),(2074,1,2074,1),(2075,1,2075,2),(2076,1,2076,3),(2077,1,2077,4),(2078,1,2078,1),(2079,1,2079,2),(2080,1,2080,3),(2081,1,2081,4),(2082,1,2082,1),(2083,1,2083,2),(2084,1,2084,3),(2085,1,2085,4),(2086,1,2086,1),(2087,1,2087,2),(2088,1,2088,3),(2089,1,2089,4),(2090,1,2090,1),(2091,1,2091,2),(2092,1,2092,3),(2093,1,2093,4),(2094,1,2094,5),(2095,1,2095,6),(2096,1,2096,7),(2097,1,2097,1),(2098,1,2098,2),(2099,1,2099,3),(2100,1,2100,4),(2101,1,2101,5),(2102,1,2102,1),(2103,1,2103,2),(2104,1,2104,3),(2105,1,2105,4),(2106,1,2106,5),(2107,1,2107,1),(2108,1,2108,2),(2109,1,2109,3),(2110,1,2110,4),(2111,1,2111,5),(2112,1,2112,1),(2113,1,2113,2),(2114,1,2114,3),(2115,1,2115,4),(2116,1,2116,1),(2117,1,2117,2),(2118,1,2118,3),(2119,1,2119,4),(2120,1,2120,1),(2121,1,2121,2),(2122,1,2122,3),(2123,1,2123,4),(2124,1,2124,5),(2125,1,2125,1),(2126,1,2126,2),(2127,1,2127,3),(2128,1,2128,4),(2129,1,2129,1),(2130,1,2130,2),(2131,1,2131,3),(2132,1,2132,4),(2133,1,2133,1),(2134,1,2134,2),(2135,1,2135,3),(2136,1,2136,4),(2137,1,2137,5),(2138,1,2138,1),(2139,1,2139,2),(2140,1,2140,3),(2141,1,2141,4),(2142,1,2142,1),(2143,1,2143,2),(2144,1,2144,3),(2145,1,2145,4),(2146,1,2146,1),(2147,1,2147,2),(2148,1,2148,3),(2149,1,2149,4),(2150,1,2150,1),(2151,1,2151,2),(2152,1,2152,3),(2157,1,2157,1),(2158,1,2158,2),(2159,1,2159,3),(2160,1,2160,4),(2169,1,2169,1),(2170,1,2170,2),(2171,1,2171,3),(2172,1,2172,4),(2176,1,2176,1),(2177,1,2177,2),(2178,1,2178,3),(2187,1,2187,1),(2188,1,2188,2),(2189,1,2189,3),(2190,1,2190,4),(2191,1,2191,1),(2192,1,2192,2),(2193,1,2193,3),(2194,1,2194,4),(2195,1,2195,1),(2196,1,2196,2),(2197,1,2197,3),(2198,1,2198,4),(2203,1,2203,1),(2204,1,2204,2),(2205,1,2205,3),(2206,1,2206,4),(2211,1,2211,1),(2212,1,2212,2),(2213,1,2213,3),(2214,1,2214,4),(2215,1,2215,1),(2216,1,2216,2),(2217,1,2217,3),(2218,1,2218,1),(2219,1,2219,2),(2220,1,2220,3),(2221,1,2221,1),(2222,1,2222,2),(2223,1,2223,3),(2224,1,2224,4),(2225,1,2225,1),(2226,1,2226,2),(2227,1,2227,3),(2228,1,2228,4),(2229,1,2229,1),(2230,1,2230,2),(2231,1,2231,3),(2232,1,2232,4),(2233,1,2233,5),(2234,1,2234,1),(2235,1,2235,2),(2236,1,2236,3),(2237,1,2237,4),(2238,1,2238,1),(2239,1,2239,2),(2240,1,2240,3),(2241,1,2241,4),(2242,1,2242,1),(2243,1,2243,2),(2244,1,2244,3),(2245,1,2245,4),(2246,1,2246,1),(2247,1,2247,2),(2248,1,2248,3),(2249,1,2249,4),(2255,1,2255,1),(2256,1,2256,2),(2257,1,2257,3),(2258,1,2258,4),(2259,1,2259,5),(2260,1,2260,1),(2261,1,2261,2),(2262,1,2262,3),(2263,1,2263,4),(2264,1,2264,5),(2265,1,2265,1),(2266,1,2266,2),(2267,1,2267,3),(2268,1,2268,1),(2269,1,2269,2),(2270,1,2270,3),(2271,1,2271,4),(2272,1,2272,5),(2273,1,2273,6),(2274,1,2274,7),(2275,1,2275,1),(2276,1,2276,2),(2277,1,2277,3),(2278,1,2278,4),(2279,1,2279,1),(2280,1,2280,2),(2281,1,2281,3),(2282,1,2282,4),(2287,1,2287,1),(2288,1,2288,2),(2289,1,2289,3),(2290,1,2290,4),(2291,1,2291,1),(2292,1,2292,2),(2293,1,2293,3),(2294,1,2294,4),(2295,1,2295,1),(2296,1,2296,2),(2297,1,2297,3),(2298,1,2298,4),(2299,1,2299,1),(2300,1,2300,2),(2301,1,2301,3),(2302,1,2302,4),(2303,1,2303,1),(2304,1,2304,2),(2305,1,2305,3),(2306,1,2306,4),(2307,1,2307,1),(2308,1,2308,2),(2309,1,2309,3),(2310,1,2310,4),(2311,1,2311,1),(2312,1,2312,2),(2313,1,2313,3),(2314,1,2314,4),(2315,1,2315,1),(2316,1,2316,2),(2317,1,2317,3),(2318,1,2318,4),(2319,1,2319,1),(2320,1,2320,2),(2321,1,2321,3),(2322,1,2322,4),(2323,1,2323,1),(2324,1,2324,2),(2325,1,2325,3),(2326,1,2326,4),(2327,1,2327,1),(2328,1,2328,2),(2329,1,2329,3),(2330,1,2330,4),(2331,1,2331,5),(2332,1,2332,1),(2333,1,2333,2),(2334,1,2334,3),(2335,1,2335,4),(2336,1,2336,1),(2337,1,2337,2),(2338,1,2338,3),(2339,1,2339,4),(2340,1,2340,1),(2341,1,2341,2),(2342,1,2342,3),(2343,1,2343,4),(2344,1,2344,1),(2345,1,2345,2),(2346,1,2346,3),(2347,1,2347,4),(2348,1,2348,1),(2349,1,2349,2),(2350,1,2350,3),(2351,1,2351,4),(2352,1,2352,5),(2353,1,2353,1),(2354,1,2354,2),(2355,1,2355,3),(2356,1,2356,4),(2357,1,2357,1),(2358,1,2358,2),(2359,1,2359,3),(2360,1,2360,4),(2361,1,2361,5),(2362,1,2362,1),(2363,1,2363,2),(2364,1,2364,3),(2365,1,2365,1),(2366,1,2366,2),(2367,1,2367,3),(2368,1,2368,4),(2369,1,2369,1),(2370,1,2370,2),(2371,1,2371,3),(2372,1,2372,4),(2373,1,2373,1),(2374,1,2374,2),(2375,1,2375,3),(2376,1,2376,4),(2377,1,2377,1),(2378,1,2378,2),(2379,1,2379,3),(2380,1,2380,4),(2381,1,2381,1),(2382,1,2382,2),(2383,1,2383,3),(2384,1,2384,4),(2385,1,2385,1),(2386,1,2386,2),(2387,1,2387,3),(2388,1,2388,4),(2389,1,2389,1),(2390,1,2390,2),(2391,1,2391,3),(2392,1,2392,4),(2393,1,2393,1),(2394,1,2394,2),(2395,1,2395,3),(2396,1,2396,4),(2401,1,2401,1),(2402,1,2402,2),(2403,1,2403,3),(2404,1,2404,4),(2405,1,2405,3),(2406,1,2406,4),(2407,1,2407,5),(2408,1,2408,2),(2409,1,2409,1),(2410,1,2410,2),(2411,1,2411,3),(2412,1,2412,4),(2413,1,2413,1),(2414,1,2414,2),(2415,1,2415,3),(2416,1,2416,4),(2417,1,2417,1),(2418,1,2418,2),(2419,1,2419,3),(2420,1,2420,4),(2421,1,2421,1),(2422,1,2422,2),(2423,1,2423,3),(2424,1,2424,4),(2425,1,2425,1),(2426,1,2426,2),(2427,1,2427,3),(2428,1,2428,4),(2429,1,2429,5),(2430,1,2430,1),(2431,1,2431,2),(2432,1,2432,3),(2433,1,2433,4),(2434,1,2434,5),(2435,1,2435,1),(2436,1,2436,2),(2437,1,2437,3),(2438,1,2438,4),(2439,1,2439,1),(2440,1,2440,2),(2441,1,2441,3),(2442,1,2442,4),(2447,1,2447,1),(2448,1,2448,2),(2449,1,2449,3),(2450,1,2450,4),(2451,1,2451,5),(2452,1,2452,6),(2453,1,2453,1),(2454,1,2454,2),(2455,1,2455,3),(2456,1,2456,4),(2457,1,2457,1),(2458,1,2458,2),(2459,1,2459,3),(2460,1,2460,4),(2461,1,2461,1),(2462,1,2462,2),(2463,1,2463,3),(2464,1,2464,4),(2465,1,2465,1),(2466,1,2466,2),(2467,1,2467,3),(2468,1,2468,1),(2469,1,2469,2),(2470,1,2470,3),(2471,1,2471,4),(2472,1,2472,1),(2473,1,2473,2),(2474,1,2474,3),(2475,1,2475,1),(2476,1,2476,2),(2477,1,2477,3),(2478,1,2478,4),(2479,1,2479,1),(2480,1,2480,2),(2481,1,2481,3),(2482,1,2482,4),(2483,1,2483,1),(2484,1,2484,2),(2485,1,2485,3),(2486,1,2486,4),(2487,1,2487,1),(2488,1,2488,2),(2489,1,2489,3),(2490,1,2490,1),(2491,1,2491,2),(2492,1,2492,3),(2493,1,2493,4),(2494,1,2494,1),(2495,1,2495,2),(2496,1,2496,3),(2497,1,2497,4),(2498,1,2498,1),(2499,1,2499,2),(2500,1,2500,3),(2501,1,2501,4),(2502,1,2502,1),(2503,1,2503,2),(2504,1,2504,3),(2505,1,2505,4),(2506,1,2506,1),(2507,1,2507,2),(2508,1,2508,3),(2509,1,2509,1),(2510,1,2510,2),(2511,1,2511,3),(2512,1,2512,4),(2513,1,2513,1),(2514,1,2514,2),(2515,1,2515,3),(2516,1,2516,4),(2517,1,2517,5),(2518,1,2518,6),(2519,1,2519,7),(2520,1,2520,1),(2521,1,2521,2),(2522,1,2522,3),(2523,1,2523,4),(2524,1,2524,5),(2525,1,2525,1),(2526,1,2526,2),(2527,1,2527,3),(2528,1,2528,4),(2529,1,2529,1),(2530,1,2530,2),(2531,1,2531,3),(2532,1,2532,4),(2533,1,2533,1),(2534,1,2534,2),(2535,1,2535,3),(2536,1,2536,4),(2537,1,2537,1),(2538,1,2538,2),(2539,1,2539,3),(2540,1,2540,4),(2541,1,2541,5),(2542,1,2542,1),(2543,1,2543,2),(2544,1,2544,3),(2545,1,2545,4),(2546,1,2546,5),(2552,1,2552,1),(2553,1,2553,2),(2554,1,2554,3),(2555,1,2555,4),(2556,1,2556,5),(2557,1,2557,1),(2558,1,2558,2),(2559,1,2559,3),(2560,1,2560,4),(2561,1,2561,5),(2562,1,2562,1),(2563,1,2563,2),(2564,1,2564,3),(2565,1,2565,4),(2566,1,2566,1),(2567,1,2567,2),(2568,1,2568,3),(2569,1,2569,4),(2570,1,2570,1),(2571,1,2571,2),(2572,1,2572,3),(2573,1,2573,4),(2574,1,2574,1),(2575,1,2575,2),(2576,1,2576,3),(2577,1,2577,4),(2578,1,2578,5),(2579,1,2579,1),(2580,1,2580,2),(2581,1,2581,3),(2582,1,2582,4),(2583,1,2583,1),(2584,1,2584,2),(2585,1,2585,3),(2586,1,2586,4),(2587,1,2587,1),(2588,1,2588,2),(2589,1,2589,3),(2590,1,2590,4),(2591,1,2591,1),(2592,1,2592,2),(2593,1,2593,3),(2594,1,2594,4),(2595,1,2595,1),(2596,1,2596,2),(2597,1,2597,3),(2598,1,2598,4),(2599,1,2599,5),(2608,1,2608,1),(2609,1,2609,2),(2610,1,2610,3),(2611,1,2611,4),(2612,1,2612,1),(2613,1,2613,2),(2614,1,2614,3),(2615,1,2615,1),(2616,1,2616,2),(2617,1,2617,3),(2618,1,2618,4),(2619,1,2619,5),(2620,1,2620,1),(2621,1,2621,2),(2622,1,2622,3),(2623,1,2623,4),(2624,1,2624,1),(2625,1,2625,2),(2626,1,2626,3),(2627,1,2627,4),(2628,1,2628,1),(2629,1,2629,2),(2630,1,2630,3),(2631,1,2631,4),(2632,1,2632,1),(2633,1,2633,2),(2634,1,2634,3),(2635,1,2635,1),(2636,1,2636,2),(2637,1,2637,3),(2638,1,2638,4),(2639,1,2639,1),(2640,1,2640,2),(2641,1,2641,3),(2642,1,2642,1),(2643,1,2643,2),(2644,1,2644,3),(2645,1,2645,4),(2646,1,2646,1),(2647,1,2647,2),(2648,1,2648,3),(2649,1,2649,4),(2650,1,2650,1),(2651,1,2651,2),(2652,1,2652,3),(2653,1,2653,4),(2662,1,2662,1),(2663,1,2663,2),(2664,1,2664,3),(2665,1,2665,4),(2666,1,2666,1),(2667,1,2667,2),(2668,1,2668,3),(2669,1,2669,4),(2674,1,2674,1),(2675,1,2675,2),(2676,1,2676,3),(2677,1,2677,4);
/*!40000 ALTER TABLE `catalog_product_link_attribute_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_link_attribute_varchar`
--

DROP TABLE IF EXISTS `catalog_product_link_attribute_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_link_attribute_varchar` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `product_link_attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Product Link Attribute ID',
  `link_id` int(10) unsigned NOT NULL COMMENT 'Link ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CAT_PRD_LNK_ATTR_VCHR_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_VARCHAR_LINK_ID` (`link_id`),
  CONSTRAINT `CAT_PRD_LNK_ATTR_VCHR_LNK_ID_CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_DEE9C4DA61CFCC01DFCF50F0D79CEA51` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Varchar Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_link_attribute_varchar`
--

LOCK TABLES `catalog_product_link_attribute_varchar` WRITE;
/*!40000 ALTER TABLE `catalog_product_link_attribute_varchar` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_link_attribute_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_link_type`
--

DROP TABLE IF EXISTS `catalog_product_link_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_link_type` (
  `link_type_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link Type ID',
  `code` varchar(32) DEFAULT NULL COMMENT 'Code',
  PRIMARY KEY (`link_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Type Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_link_type`
--

LOCK TABLES `catalog_product_link_type` WRITE;
/*!40000 ALTER TABLE `catalog_product_link_type` DISABLE KEYS */;
INSERT INTO `catalog_product_link_type` VALUES (1,'relation'),(3,'super'),(4,'up_sell'),(5,'cross_sell');
/*!40000 ALTER TABLE `catalog_product_link_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_option`
--

DROP TABLE IF EXISTS `catalog_product_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_option` (
  `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `type` varchar(50) DEFAULT NULL COMMENT 'Type',
  `is_require` smallint(6) NOT NULL DEFAULT '1' COMMENT 'Is Required',
  `sku` varchar(64) DEFAULT NULL COMMENT 'SKU',
  `max_characters` int(10) unsigned DEFAULT NULL COMMENT 'Max Characters',
  `file_extension` varchar(50) DEFAULT NULL COMMENT 'File Extension',
  `image_size_x` smallint(5) unsigned DEFAULT NULL COMMENT 'Image Size X',
  `image_size_y` smallint(5) unsigned DEFAULT NULL COMMENT 'Image Size Y',
  `sort_order` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`option_id`),
  KEY `CATALOG_PRODUCT_OPTION_PRODUCT_ID` (`product_id`),
  CONSTRAINT `CAT_PRD_OPT_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_option`
--

LOCK TABLES `catalog_product_option` WRITE;
/*!40000 ALTER TABLE `catalog_product_option` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_option_price`
--

DROP TABLE IF EXISTS `catalog_product_option_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_option_price` (
  `option_price_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Price ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Price',
  `price_type` varchar(7) NOT NULL DEFAULT 'fixed' COMMENT 'Price Type',
  PRIMARY KEY (`option_price_id`),
  UNIQUE KEY `CATALOG_PRODUCT_OPTION_PRICE_OPTION_ID_STORE_ID` (`option_id`,`store_id`),
  KEY `CATALOG_PRODUCT_OPTION_PRICE_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_OPTION_PRICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_OPT_PRICE_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Price Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_option_price`
--

LOCK TABLES `catalog_product_option_price` WRITE;
/*!40000 ALTER TABLE `catalog_product_option_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_option_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_option_title`
--

DROP TABLE IF EXISTS `catalog_product_option_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_option_title` (
  `option_title_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Title ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`option_title_id`),
  UNIQUE KEY `CATALOG_PRODUCT_OPTION_TITLE_OPTION_ID_STORE_ID` (`option_id`,`store_id`),
  KEY `CATALOG_PRODUCT_OPTION_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_OPTION_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_OPT_TTL_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Title Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_option_title`
--

LOCK TABLES `catalog_product_option_title` WRITE;
/*!40000 ALTER TABLE `catalog_product_option_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_option_title` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_option_type_price`
--

DROP TABLE IF EXISTS `catalog_product_option_type_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_option_type_price` (
  `option_type_price_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Type Price ID',
  `option_type_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Option Type ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Price',
  `price_type` varchar(7) NOT NULL DEFAULT 'fixed' COMMENT 'Price Type',
  PRIMARY KEY (`option_type_price_id`),
  UNIQUE KEY `CATALOG_PRODUCT_OPTION_TYPE_PRICE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`),
  KEY `CATALOG_PRODUCT_OPTION_TYPE_PRICE_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_OPTION_TYPE_PRICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_B523E3378E8602F376CC415825576B7F` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Price Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_option_type_price`
--

LOCK TABLES `catalog_product_option_type_price` WRITE;
/*!40000 ALTER TABLE `catalog_product_option_type_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_option_type_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_option_type_title`
--

DROP TABLE IF EXISTS `catalog_product_option_type_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_option_type_title` (
  `option_type_title_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Type Title ID',
  `option_type_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Option Type ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`option_type_title_id`),
  UNIQUE KEY `CATALOG_PRODUCT_OPTION_TYPE_TITLE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`),
  KEY `CATALOG_PRODUCT_OPTION_TYPE_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_OPTION_TYPE_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_C085B9CF2C2A302E8043FDEA1937D6A2` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Title Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_option_type_title`
--

LOCK TABLES `catalog_product_option_type_title` WRITE;
/*!40000 ALTER TABLE `catalog_product_option_type_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_option_type_title` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_option_type_value`
--

DROP TABLE IF EXISTS `catalog_product_option_type_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_option_type_value` (
  `option_type_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Type ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID',
  `sku` varchar(64) DEFAULT NULL COMMENT 'SKU',
  `sort_order` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`option_type_id`),
  KEY `CATALOG_PRODUCT_OPTION_TYPE_VALUE_OPTION_ID` (`option_id`),
  CONSTRAINT `CAT_PRD_OPT_TYPE_VAL_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Value Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_option_type_value`
--

LOCK TABLES `catalog_product_option_type_value` WRITE;
/*!40000 ALTER TABLE `catalog_product_option_type_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_option_type_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_relation`
--

DROP TABLE IF EXISTS `catalog_product_relation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_relation` (
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `child_id` int(10) unsigned NOT NULL COMMENT 'Child ID',
  PRIMARY KEY (`parent_id`,`child_id`),
  KEY `CATALOG_PRODUCT_RELATION_CHILD_ID` (`child_id`),
  CONSTRAINT `CAT_PRD_RELATION_CHILD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`child_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_RELATION_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Relation Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_relation`
--

LOCK TABLES `catalog_product_relation` WRITE;
/*!40000 ALTER TABLE `catalog_product_relation` DISABLE KEYS */;
INSERT INTO `catalog_product_relation` VALUES (51,130),(51,131),(7,157),(7,158),(7,159),(9,163),(9,164),(9,165),(10,166),(10,167),(10,168),(10,169),(11,170),(11,171),(12,172),(12,173),(12,174),(17,186),(17,187),(17,188),(17,189),(18,190),(18,191),(18,192),(18,193),(19,194),(19,195),(19,196),(22,203),(22,204),(22,205),(22,206),(24,207),(24,208),(24,209),(26,217),(26,218),(26,219),(26,220),(26,221),(30,228),(30,229),(30,230),(31,231),(31,232),(32,233),(32,234),(33,235),(33,236),(33,237),(33,238),(41,257),(41,258),(41,259),(41,260),(43,265),(43,266),(43,267),(43,268),(43,269),(44,270),(44,271),(45,272),(45,273),(45,274),(45,275),(45,276),(48,285),(48,286),(50,290),(50,291),(50,292),(54,300),(54,301),(54,302),(54,303),(54,304),(54,305),(56,309),(56,310),(56,311),(57,312),(57,313),(57,314),(57,315),(58,316),(58,317),(59,318),(59,319),(59,320),(59,321),(60,322),(60,323),(60,324),(60,325),(60,326),(60,327),(61,328),(61,329),(64,334),(64,335),(64,336),(64,337),(65,338),(65,339),(65,340),(66,341),(66,342),(66,343),(66,344),(66,345),(69,350),(69,351),(69,352),(69,353),(70,354),(70,355),(70,356),(70,357),(71,358),(71,359),(71,360),(72,364),(72,365),(72,366),(72,367),(73,368),(73,369),(73,370),(73,371),(73,372),(73,373),(73,374),(73,375),(74,378),(74,379),(75,380),(75,381),(75,382),(75,383),(75,384),(76,385),(76,386),(76,387),(77,388),(77,389),(77,390),(80,397),(80,398),(80,399),(80,400),(81,401),(81,402),(81,403),(81,404),(81,405),(81,406),(82,407),(82,408),(82,409),(82,410),(82,411),(84,416),(84,417),(84,418),(84,419),(84,420),(84,421),(84,422),(84,423),(84,424),(84,425),(87,437),(87,438),(87,439),(88,440),(88,441),(88,442),(89,449),(89,450),(89,451),(89,452),(89,453),(89,454),(91,455),(91,456),(91,457),(93,461),(93,462),(93,463),(93,464),(95,465),(95,466),(95,467),(98,471),(98,472),(98,473),(98,474),(100,478),(100,479),(100,480),(103,488),(103,489),(103,490),(105,495),(105,496),(105,497),(106,498),(106,499),(106,500),(108,501),(108,502),(108,503),(107,504),(107,505),(107,506),(107,507),(107,508),(107,509),(109,510),(109,511),(109,512),(110,513),(110,514),(110,515),(111,516),(112,517),(112,518),(112,519),(113,520),(113,521),(113,522),(114,523),(115,524),(115,525),(115,526),(116,527),(117,528),(117,529),(117,530),(118,531),(119,532),(119,533),(119,534),(120,535),(120,536),(120,537),(122,538),(122,539),(122,540),(121,541),(123,542),(123,543),(124,544),(125,545),(126,546),(127,547),(128,548),(20,549),(20,550),(20,551),(20,552),(20,553),(20,554),(20,555),(20,556),(20,557),(20,558),(20,559),(20,560),(20,561),(20,562),(20,563),(20,564),(20,565),(20,566),(20,567),(20,568),(20,569),(20,570),(20,571),(20,572),(20,573),(20,574),(20,575),(20,576),(20,577),(20,578),(3,579),(3,580),(3,581),(3,582),(3,583),(3,584),(3,585),(3,586),(3,587),(3,588),(3,589),(3,590),(3,591),(3,592),(3,593),(3,594),(3,595),(3,596),(3,597),(3,598),(3,599),(3,600),(3,601),(3,602),(3,603),(3,604),(3,605),(3,606),(3,607),(3,608),(3,609),(3,610),(3,611),(3,612),(3,613),(35,614),(35,615),(35,616),(35,617),(35,618),(35,619),(35,620),(35,621),(35,622),(35,623),(35,624),(35,625),(35,626),(35,627),(35,628),(35,629),(35,630),(35,631),(35,632),(35,633),(35,634),(35,635),(35,636),(35,637),(35,638),(35,639),(35,640),(35,641),(35,642),(35,643),(29,644),(29,645),(29,646),(29,647),(29,648),(29,649),(29,650),(29,651),(29,652),(29,653),(29,654),(29,655),(29,656),(29,657),(29,658),(29,659),(29,660),(29,661),(29,662),(29,663),(29,664),(29,665),(29,666),(29,667),(29,668),(29,669),(29,670),(29,671),(29,672),(29,673),(15,674),(15,675),(15,676),(15,677),(15,678),(15,679),(15,680),(15,681),(15,682),(15,683),(15,684),(15,685),(15,686),(15,687),(15,688),(15,689),(15,690),(15,691),(15,692),(15,693),(15,694),(15,695),(15,696),(15,697),(15,698),(5,699),(5,700),(5,701),(5,702),(5,703),(5,704),(5,705),(5,706),(5,707),(5,708),(5,709),(5,710),(5,711),(5,712),(5,713),(46,714),(46,715),(46,716),(46,717),(46,718),(46,719),(46,720),(46,721),(46,722),(46,723),(46,724),(46,725),(46,726),(46,727),(46,728),(46,729),(46,730),(46,731),(46,732),(46,733),(8,734),(8,735),(8,736),(8,737),(8,738),(8,739),(8,740),(8,741),(8,742),(8,743),(8,744),(8,745),(8,746),(8,747),(8,748),(47,749),(47,750),(47,751),(47,752),(47,753),(47,754),(47,755),(47,756),(47,757),(47,758),(47,759),(47,760),(47,761),(47,762),(47,763),(47,764),(47,765),(47,766),(47,767),(47,768),(53,769),(53,770),(53,771),(53,772),(53,773),(53,774),(53,775),(53,776),(53,777),(53,778),(53,779),(53,780),(53,781),(53,782),(53,783),(53,784),(53,785),(53,786),(53,787),(53,788),(49,789),(49,790),(49,791),(49,792),(49,793),(49,794),(49,795),(49,796),(49,797),(49,798),(49,799),(49,800),(49,801),(49,802),(49,803),(42,804),(42,805),(42,806),(42,807),(42,808),(42,809),(42,810),(42,811),(42,812),(42,813),(42,814),(42,815),(42,816),(42,817),(42,818),(42,819),(42,820),(42,821),(42,822),(42,823),(101,824),(101,825),(101,826),(101,827),(101,828),(101,829),(101,830),(101,831),(101,832),(101,833),(101,834),(101,835),(101,836),(101,837),(101,838),(101,839),(101,840),(101,841),(101,842),(101,843),(34,844),(34,845),(34,846),(34,847),(34,848),(34,849),(34,850),(34,851),(34,852),(34,853),(34,854),(34,855),(34,856),(34,857),(34,858),(34,859),(34,860),(34,861),(34,862),(34,863),(38,864),(38,865),(38,866),(38,867),(38,868),(38,869),(38,870),(38,871),(38,872),(38,873),(38,874),(38,875),(38,876),(38,877),(38,878),(36,879),(36,880),(36,881),(36,882),(36,883),(36,884),(36,885),(36,886),(36,887),(36,888),(36,889),(36,890),(36,891),(36,892),(36,893),(36,894),(36,895),(36,896),(36,897),(36,898),(36,899),(36,900),(36,901),(36,902),(36,903),(104,904),(104,905),(104,906),(104,907),(104,908),(104,909),(104,910),(104,911),(104,912),(104,913),(104,914),(104,915),(99,930),(99,931),(99,932),(97,939),(97,940),(97,941),(2,942),(2,943),(2,944),(2,945),(2,946),(2,947),(43,948),(43,949),(43,950),(43,951),(43,952),(43,953),(43,954),(43,955),(43,956),(43,957),(6,958),(6,959),(25,972),(25,973),(25,974),(25,975),(25,976),(25,977),(25,978),(25,979),(25,980),(25,981),(25,982),(25,983),(25,984),(25,985),(16,986),(16,987),(16,988),(16,989),(16,990),(16,991),(16,992),(16,993),(16,994),(16,995),(16,996),(16,997),(16,998),(16,999),(16,1000),(16,1001),(16,1002),(16,1003),(4,1004),(4,1005),(4,1006),(4,1007),(4,1008),(4,1009),(4,1010),(4,1011),(4,1012),(4,1013),(1,1014),(1,1015),(1,1016),(1,1017),(1,1018),(1,1019),(1,1020),(1,1021),(1,1022),(78,1023),(78,1024),(78,1025),(78,1026),(78,1027),(78,1028),(55,1029),(55,1030),(55,1031),(55,1032),(55,1033),(55,1034),(68,1035),(68,1036),(68,1037),(68,1038),(68,1039),(68,1040),(68,1041),(68,1042),(85,1043),(85,1044),(85,1045),(85,1046),(85,1047),(85,1048),(63,1049),(63,1050),(63,1051),(63,1052),(63,1053),(63,1054),(63,1055),(63,1056),(79,1057),(79,1058),(79,1059),(79,1060),(79,1061),(79,1062),(92,1063),(92,1064),(92,1065),(92,1066),(92,1067),(92,1068),(102,1069),(102,1070),(102,1071),(102,1072),(102,1073),(102,1074),(83,1075),(83,1076),(83,1077),(83,1078),(83,1079),(83,1080),(83,1081),(83,1082),(66,1083),(66,1084),(66,1085),(66,1086),(66,1087),(88,1088),(88,1089),(88,1090),(83,1091),(83,1092),(83,1093),(83,1094),(102,1095),(102,1096),(102,1097),(92,1098),(92,1099),(92,1100),(79,1101),(79,1102),(79,1103),(87,1104),(87,1105),(87,1106),(103,1107),(103,1108),(103,1109),(98,1110),(98,1111),(98,1112),(98,1113),(93,1114),(93,1115),(93,1116),(93,1117),(91,1118),(91,1119),(91,1120),(100,1121),(100,1122),(100,1123),(95,1124),(95,1125),(95,1126),(76,1127),(76,1128),(76,1129),(71,1130),(71,1131),(71,1132),(51,1133),(51,1134),(71,1135),(71,1136),(71,1137),(108,1138),(108,1139),(108,1140),(33,1141),(33,1142),(33,1143),(33,1144),(7,1145),(7,1146),(7,1147),(10,1148),(10,1149),(10,1150),(10,1151),(70,1152),(70,1153),(70,1154),(70,1155),(17,1156),(17,1157),(17,1158),(17,1159),(123,1160),(123,1161),(11,1162),(11,1163),(120,1164),(120,1165),(120,1166),(72,1167),(72,1168),(72,1169),(72,1170),(80,1171),(80,1172),(80,1173),(80,1174),(26,1175),(26,1176),(26,1177),(26,1178),(26,1179),(64,1180),(64,1181),(64,1182),(64,1183),(12,1184),(12,1185),(12,1186),(59,1187),(59,1188),(59,1189),(59,1190),(82,1191),(82,1192),(82,1193),(82,1194),(82,1195),(115,1196),(115,1197),(115,1198),(122,1199),(122,1200),(122,1201),(106,1202),(106,1203),(106,1204),(117,1205),(117,1206),(117,1207),(113,1208),(113,1209),(113,1210),(105,1211),(105,1212),(105,1213),(75,1214),(75,1215),(75,1216),(75,1217),(75,1218),(19,1219),(19,1220),(19,1221),(54,1222),(54,1223),(54,1224),(54,1225),(54,1226),(54,1227),(50,1228),(50,1229),(50,1230),(119,1231),(119,1232),(119,1233),(41,1234),(41,1235),(41,1236),(41,1237),(18,1238),(18,1239),(18,1240),(18,1241),(45,1242),(45,1243),(45,1244),(45,1245),(45,1246),(69,1247),(69,1248),(69,1249),(69,1250),(60,1251),(60,1252),(60,1253),(60,1254),(60,1255),(60,1256),(57,1257),(57,1258),(57,1259),(57,1260),(84,1261),(84,1262),(84,1263),(84,1264),(84,1265),(89,1266),(89,1267),(89,1268),(89,1269),(89,1270),(89,1271),(86,1272),(86,1273),(86,1274),(86,1275),(86,1276),(86,1277),(86,1278),(86,1279),(22,1280),(22,1281),(22,1282),(22,1283),(56,1284),(56,1285),(56,1286),(77,1287),(77,1288),(77,1289),(9,1290),(9,1291),(9,1292),(30,1293),(30,1294),(30,1295),(110,1296),(110,1297),(110,1298),(109,1299),(109,1300),(109,1301),(112,1302),(112,1303),(112,1304),(24,1305),(24,1306),(24,1307),(114,1308),(58,1309),(58,1310),(128,1311),(31,1312),(31,1313),(127,1314),(48,1315),(48,1316),(126,1317),(125,1318),(124,1319),(121,1320),(118,1321),(65,1322),(65,1323),(65,1324),(74,1325),(74,1326),(32,1327),(32,1328),(61,1329),(61,1330),(111,1331),(116,1332),(44,1343),(44,1344),(1413,1383),(1413,1384),(1413,1385),(1413,1386),(1413,1387),(1413,1388),(1413,1389),(1413,1390),(1413,1391),(1413,1392),(1413,1393),(1413,1394),(1413,1395),(1413,1396),(1413,1397),(1413,1398),(1413,1399),(1413,1400),(1413,1401),(1413,1402),(1413,1403),(1413,1404),(1413,1405),(1413,1406),(1413,1407),(1413,1408),(1413,1409),(1413,1410),(1413,1411),(1413,1412),(1351,1414),(1351,1415),(1351,1416),(1351,1417),(1351,1418),(1351,1419),(1455,1420),(1455,1421),(1455,1422),(1455,1423),(1455,1424),(1455,1425),(1455,1426),(1455,1427),(1455,1428),(1455,1429),(1455,1430),(1455,1431),(1455,1432),(1455,1433),(1455,1434),(1455,1435),(1455,1436),(1455,1437),(1455,1438),(1455,1439),(1455,1440),(1455,1441),(1455,1442),(1455,1443),(1455,1444),(1455,1445),(1455,1446),(1455,1447),(1455,1448),(1455,1449),(1455,1450),(1455,1451),(1455,1452),(1455,1453),(1455,1454),(1464,1456),(1464,1457),(1464,1458),(1464,1459),(1464,1460),(1464,1461),(1464,1462),(1464,1463),(1495,1465),(1495,1466),(1495,1467),(1495,1468),(1495,1469),(1495,1470),(1495,1471),(1495,1472),(1495,1473),(1495,1474),(1495,1475),(1495,1476),(1495,1477),(1495,1478),(1495,1479),(1495,1480),(1495,1481),(1495,1482),(1495,1483),(1495,1484),(1495,1485),(1495,1486),(1495,1487),(1495,1488),(1495,1489),(1495,1490),(1495,1491),(1495,1492),(1495,1493),(1495,1494),(1526,1496),(1526,1497),(1526,1498),(1526,1499),(1526,1500),(1526,1501),(1526,1502),(1526,1503),(1526,1504),(1526,1505),(1526,1506),(1526,1507),(1526,1508),(1526,1509),(1526,1510),(1526,1511),(1526,1512),(1526,1513),(1526,1514),(1526,1515),(1526,1516),(1526,1517),(1526,1518),(1526,1519),(1526,1520),(1526,1521),(1526,1522),(1526,1523),(1526,1524),(1526,1525),(1535,1527),(1535,1528),(1535,1529),(1535,1530),(1535,1531),(1535,1532),(1535,1533),(1535,1534),(1561,1536),(1561,1537),(1561,1538),(1561,1539),(1561,1540),(1561,1541),(1561,1542),(1561,1543),(1561,1544),(1561,1545),(1561,1546),(1561,1547),(1561,1548),(1561,1549),(1561,1550),(1561,1551),(1561,1552),(1561,1553),(1561,1554),(1561,1555),(1561,1556),(1561,1557),(1561,1558),(1561,1559),(1561,1560),(1568,1562),(1568,1563),(1568,1564),(1568,1565),(1568,1566),(1568,1567),(1583,1569),(1583,1570),(1583,1571),(1583,1572),(1596,1573),(1596,1574),(1583,1575),(1596,1576),(1596,1577),(1596,1578),(1583,1579),(1596,1580),(1596,1581),(1596,1582),(1596,1584),(1596,1585),(1596,1586),(1596,1587),(1596,1588),(1596,1589),(1596,1590),(1596,1591),(1596,1592),(1596,1593),(1596,1594),(1596,1595),(1604,1598),(1604,1599),(1604,1600),(1604,1601),(1604,1602),(1604,1603),(1597,1605),(1597,1606),(1597,1607),(1597,1608),(1597,1609),(1597,1610),(1597,1611),(1597,1612),(1597,1613),(1597,1614),(1597,1615),(1597,1616),(1597,1617),(1597,1618),(1597,1619),(1630,1620),(1630,1621),(1630,1622),(1630,1623),(1630,1624),(1630,1625),(1630,1626),(1630,1627),(1630,1628),(1630,1629),(1643,1631),(1643,1632),(1643,1633),(1643,1634),(1643,1635),(1643,1636),(1643,1637),(1643,1638),(1643,1639),(1643,1640),(1643,1641),(1643,1642),(1656,1644),(1656,1645),(1656,1646),(1656,1647),(1656,1648),(1656,1649),(1656,1650),(1656,1651),(1656,1652),(1656,1653),(1656,1654),(1656,1655),(1677,1657),(1677,1658),(1677,1659),(1677,1660),(1677,1661),(1677,1662),(1677,1663),(1677,1664),(1677,1665),(1677,1666),(1677,1667),(1677,1668),(1677,1669),(1677,1670),(1677,1671),(1677,1672),(1677,1673),(1677,1674),(1677,1675),(1677,1676),(1699,1678),(1699,1679),(1699,1680),(1699,1681),(1699,1682),(1699,1683),(1699,1684),(1699,1685),(1699,1686),(1699,1687),(1699,1688),(1699,1689),(1699,1690),(1699,1692),(1699,1693),(1699,1694),(1699,1695),(1699,1696),(1699,1697),(1699,1698),(1709,1700),(1709,1701),(1709,1702),(1709,1703),(1709,1704),(1709,1705),(1709,1706),(1709,1707),(1709,1708),(1725,1710),(1725,1711),(1725,1712),(1725,1713),(1725,1714),(1725,1715),(1725,1716),(1725,1717),(1725,1718),(1725,1719),(1725,1720),(1725,1721),(1725,1722),(1725,1723),(1725,1724),(1735,1726),(1735,1727),(1735,1728),(1735,1729),(1735,1730),(1735,1731),(1735,1732),(1735,1733),(1735,1734),(1756,1736),(1756,1737),(1756,1738),(1756,1739),(1756,1740),(1756,1741),(1756,1742),(1756,1743),(1756,1744),(1756,1745),(1756,1746),(1756,1747),(1756,1748),(1756,1749),(1756,1750),(1756,1751),(1756,1752),(1756,1753),(1756,1754),(1756,1755),(1777,1757),(1777,1758),(1777,1759),(1777,1760),(1777,1761),(1777,1762),(1777,1763),(1777,1764),(1777,1765),(1777,1766),(1777,1767),(1777,1768),(1777,1769),(1777,1770),(1777,1771),(1777,1772),(1777,1773),(1777,1774),(1777,1775),(1777,1776),(1787,1778),(1787,1779),(1787,1780),(1787,1781),(1787,1782),(1787,1783),(1787,1784),(1787,1785),(1787,1786),(1808,1788),(1808,1789),(1808,1790),(1808,1791),(1808,1792),(1808,1793),(1808,1794),(1808,1795),(1808,1796),(1808,1797),(1808,1798),(1808,1799),(1808,1800),(1808,1801),(1808,1802),(1808,1803),(1808,1804),(1808,1805),(1808,1806),(1808,1807),(1817,1809),(1817,1810),(1817,1811),(1817,1812),(1817,1813),(1817,1814),(1817,1815),(1817,1816),(1840,1834),(1840,1835),(1840,1836),(1840,1837),(1840,1838),(1840,1839),(1866,1841),(1866,1842),(1866,1843),(1866,1844),(1866,1845),(1866,1846),(1866,1847),(1866,1848),(1866,1849),(1866,1850),(1866,1851),(1866,1852),(1866,1853),(1866,1854),(1866,1855),(1866,1856),(1866,1857),(1866,1858),(1866,1859),(1866,1860),(1866,1861),(1866,1862),(1866,1863),(1866,1864),(1866,1865),(1875,1867),(1875,1868),(1875,1869),(1875,1870),(1875,1871),(1875,1872),(1875,1873),(1875,1874),(1888,1876),(1888,1877),(1888,1878),(1888,1879),(1888,1880),(1888,1881),(1888,1882),(1888,1883),(1888,1884),(1888,1885),(1888,1886),(1888,1887),(1892,1889),(1892,1890),(1892,1891),(1896,1893),(1896,1894),(1896,1895),(1903,1897),(1903,1898),(1903,1899),(1903,1900),(1903,1901),(1903,1902),(1910,1904),(1910,1905),(1910,1906),(1910,1907),(1910,1908),(1910,1909),(1920,1911),(1920,1912),(1920,1913),(1920,1914),(1920,1915),(1920,1916),(1920,1917),(1920,1918),(1920,1919),(1943,1928),(1943,1929),(1943,1930),(1943,1931),(1943,1932),(1943,1933),(1943,1934),(1943,1935),(1943,1936),(1943,1937),(1943,1938),(1943,1939),(1943,1940),(1943,1941),(1943,1942),(1946,1944),(1946,1945),(1961,1947),(1961,1948),(1961,1949),(1961,1950),(1961,1951),(1961,1952),(1961,1953),(1961,1954),(1961,1955),(1961,1956),(1961,1957),(1961,1958),(1961,1959),(1961,1960),(1972,1962),(1972,1963),(1972,1964),(1972,1965),(1972,1966),(1972,1967),(1972,1968),(1972,1969),(1972,1970),(1972,1971),(1991,1973),(1991,1974),(1991,1975),(1991,1976),(1991,1977),(1991,1978),(1991,1979),(1991,1980),(1991,1981),(1991,1982),(1991,1983),(1991,1984),(1991,1985),(1991,1986),(1991,1987),(1991,1988),(1991,1989),(1991,1990),(1996,1992),(1996,1993),(1996,1994),(1996,1995),(2001,1997),(2001,1998),(2001,1999),(2001,2000),(2010,2002),(2010,2003),(2010,2004),(2010,2005),(2010,2006),(2010,2007),(2010,2008),(2010,2009),(2017,2011),(2017,2012),(2017,2013),(2017,2014),(2017,2015),(2017,2016),(2020,2018),(2020,2019),(2029,2021),(2029,2022),(2029,2023),(2029,2024),(2029,2025),(2029,2026),(2029,2027),(2029,2028),(2032,2030),(2032,2031),(2050,2042),(2050,2043),(2050,2044),(2050,2045),(2050,2046),(2050,2047),(2050,2048),(2050,2049),(2055,2051),(2055,2052),(2055,2053),(2055,2054),(2060,2056),(2060,2057),(2060,2058),(2060,2059),(2065,2061),(2065,2062),(2065,2063),(2065,2064),(2072,2066),(2072,2067),(2072,2068),(2072,2069),(2072,2070),(2072,2071),(2077,2073),(2077,2074),(2077,2075),(2077,2076),(2084,2078),(2084,2079),(2084,2080),(2084,2081),(2084,2082),(2084,2083),(2089,2085),(2089,2086),(2089,2087),(2089,2088),(2098,2090),(2098,2091),(2098,2092),(2098,2093),(2098,2094),(2098,2095),(2098,2096),(2098,2097),(2105,2099),(2105,2100),(2105,2101),(2105,2102),(2105,2103),(2105,2104),(2116,2106),(2116,2107),(2116,2108),(2116,2109),(2116,2110),(2116,2111),(2116,2112),(2116,2113),(2116,2114),(2116,2115),(2123,2117),(2123,2118),(2123,2119),(2123,2120),(2123,2121),(2123,2122),(2132,2124),(2132,2125),(2132,2126),(2132,2127),(2132,2128),(2132,2129),(2132,2130),(2132,2131),(2135,2133),(2135,2134),(2138,2136),(2138,2137),(2145,2139),(2145,2140),(2145,2141),(2145,2142),(2145,2143),(2145,2144),(2149,2146),(2149,2147),(2157,2148),(2157,2150),(2157,2151),(2157,2152),(2157,2153),(2157,2154),(2157,2155),(2157,2156),(2168,2158),(2168,2159),(2168,2160),(2168,2161),(2168,2162),(2168,2163),(2168,2164),(2168,2165),(2168,2166),(2168,2167),(2171,2169),(2171,2170),(2178,2172),(2178,2173),(2178,2174),(2178,2175),(2178,2176),(2178,2177),(2185,2179),(2185,2180),(2185,2181),(2185,2182),(2185,2183),(2185,2184),(2190,2186),(2190,2187),(2190,2188),(2190,2189),(2197,2191),(2197,2192),(2197,2193),(2197,2194),(2197,2195),(2197,2196),(2204,2198),(2204,2199),(2204,2200),(2204,2201),(2204,2202),(2204,2203),(2207,2205),(2207,2206),(2212,2208),(2212,2209),(2212,2210),(2212,2211),(2219,2213),(2219,2214),(2219,2215),(2219,2216),(2219,2217),(2219,2218),(2222,2220),(2222,2221),(2229,2223),(2229,2224),(2229,2225),(2229,2226),(2229,2227),(2229,2228),(2234,2230),(2234,2231),(2234,2232),(2234,2233),(2245,2235),(2245,2236),(2245,2237),(2245,2238),(2245,2239),(2245,2240),(2245,2241),(2245,2242),(2245,2243),(2245,2244),(2252,2246),(2252,2247),(2252,2248),(2252,2249),(2252,2250),(2252,2251),(2255,2253),(2255,2254),(2268,2256),(2268,2257),(2268,2258),(2268,2259),(2268,2260),(2268,2261),(2268,2262),(2268,2263),(2268,2264),(2268,2265),(2268,2266),(2268,2267),(2284,2278),(2284,2279),(2284,2280),(2284,2281),(2284,2282),(2284,2283),(2291,2285),(2291,2286),(2291,2287),(2291,2288),(2291,2289),(2291,2290),(2300,2292),(2300,2293),(2300,2294),(2300,2295),(2300,2296),(2300,2297),(2300,2298),(2300,2299),(2309,2301),(2309,2302),(2309,2303),(2309,2304),(2309,2305),(2309,2306),(2309,2307),(2309,2308),(2320,2310),(2320,2311),(2320,2312),(2320,2313),(2320,2314),(2320,2315),(2320,2316),(2320,2317),(2320,2318),(2320,2319),(2336,2330),(2336,2331),(2336,2332),(2336,2333),(2336,2334),(2336,2335),(2343,2337),(2343,2338),(2343,2339),(2343,2340),(2343,2341),(2343,2342),(2350,2344),(2350,2345),(2350,2346),(2350,2347),(2350,2348),(2350,2349),(2357,2351),(2357,2352),(2357,2353),(2357,2354),(2357,2355),(2357,2356),(2366,2358),(2366,2359),(2366,2360),(2366,2361),(2366,2362),(2366,2363),(2366,2364),(2366,2365),(2373,2367),(2373,2368),(2373,2369),(2373,2370),(2373,2371),(2373,2372),(2389,2374),(2389,2375),(2389,2376),(2389,2377),(2389,2378),(2389,2379),(2389,2380),(2389,2381),(2389,2382),(2389,2383),(2389,2384),(2389,2385),(2389,2386),(2389,2387),(2389,2388),(2396,2390),(2396,2391),(2396,2392),(2396,2393),(2396,2394),(2396,2395),(2403,2397),(2403,2398),(2403,2399),(2403,2400),(2403,2401),(2403,2402),(2410,2404),(2410,2405),(2410,2406),(2410,2407),(2410,2408),(2410,2409),(2417,2411),(2417,2412),(2417,2413),(2417,2414),(2417,2415),(2417,2416),(2424,2418),(2424,2419),(2424,2420),(2424,2421),(2424,2422),(2424,2423),(2431,2425),(2431,2426),(2431,2427),(2431,2428),(2431,2429),(2431,2430),(2440,2432),(2440,2433),(2440,2434),(2440,2435),(2440,2436),(2440,2437),(2440,2438),(2440,2439),(2456,2441),(2456,2442),(2456,2443),(2456,2444),(2456,2445),(2456,2446),(2456,2447),(2456,2448),(2456,2449),(2456,2450),(2456,2451),(2456,2452),(2456,2453),(2456,2454),(2456,2455),(2465,2457),(2465,2458),(2465,2459),(2465,2460),(2465,2461),(2465,2462),(2465,2463),(2465,2464),(2478,2466),(2478,2467),(2478,2468),(2478,2469),(2478,2470),(2478,2471),(2478,2472),(2478,2473),(2478,2474),(2478,2475),(2478,2476),(2478,2477),(2487,2479),(2487,2480),(2487,2481),(2487,2482),(2487,2483),(2487,2484),(2487,2485),(2487,2486),(2500,2488),(2500,2489),(2500,2490),(2500,2491),(2500,2492),(2500,2493),(2500,2494),(2500,2495),(2500,2496),(2500,2497),(2500,2498),(2500,2499),(2507,2501),(2507,2502),(2507,2503),(2507,2504),(2507,2505),(2507,2506),(2517,2508),(2517,2509),(2517,2510),(2517,2511),(2517,2512),(2517,2513),(2517,2514),(2517,2515),(2517,2516),(2524,2518),(2524,2519),(2524,2520),(2524,2521),(2524,2522),(2524,2523),(2533,2525),(2533,2526),(2533,2527),(2533,2528),(2533,2529),(2533,2530),(2533,2531),(2533,2532),(2542,2534),(2542,2535),(2542,2536),(2542,2537),(2542,2538),(2542,2539),(2542,2540),(2542,2541);
/*!40000 ALTER TABLE `catalog_product_relation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_super_attribute`
--

DROP TABLE IF EXISTS `catalog_product_super_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_super_attribute` (
  `product_super_attribute_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product Super Attribute ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `position` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Position',
  PRIMARY KEY (`product_super_attribute_id`),
  UNIQUE KEY `CATALOG_PRODUCT_SUPER_ATTRIBUTE_PRODUCT_ID_ATTRIBUTE_ID` (`product_id`,`attribute_id`),
  CONSTRAINT `CAT_PRD_SPR_ATTR_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=458 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Attribute Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_super_attribute`
--

LOCK TABLES `catalog_product_super_attribute` WRITE;
/*!40000 ALTER TABLE `catalog_product_super_attribute` DISABLE KEYS */;
INSERT INTO `catalog_product_super_attribute` VALUES (1,51,93,0),(2,51,212,1),(3,1,93,0),(4,1,212,1),(5,2,93,0),(6,2,212,1),(7,3,93,0),(8,3,208,1),(9,4,93,1),(10,4,208,0),(11,5,93,1),(12,5,208,0),(13,6,93,0),(14,6,208,1),(15,7,93,0),(16,7,212,1),(17,8,93,0),(18,8,208,1),(19,9,93,0),(20,9,212,1),(21,10,93,0),(22,10,212,1),(23,11,93,0),(24,11,212,1),(25,12,93,0),(26,12,212,1),(27,15,93,1),(28,15,208,0),(31,17,93,0),(32,17,212,1),(33,18,93,0),(34,18,212,1),(35,19,93,0),(36,19,212,1),(37,20,93,0),(38,20,208,1),(39,22,93,1),(40,22,212,0),(41,24,93,0),(42,24,212,1),(43,25,93,0),(44,25,208,1),(45,26,93,0),(46,26,212,1),(47,29,93,0),(48,29,208,1),(49,30,93,0),(50,30,212,1),(51,31,93,1),(52,31,212,0),(53,32,93,0),(54,32,212,1),(55,33,93,0),(56,33,212,1),(57,34,93,0),(58,34,212,1),(59,35,93,1),(60,35,208,0),(61,36,93,0),(62,36,212,1),(63,38,93,0),(64,38,212,1),(65,41,93,0),(66,41,212,1),(67,42,93,0),(68,42,212,1),(69,43,93,0),(70,43,208,1),(71,44,93,1),(72,44,212,0),(73,45,93,1),(74,45,212,0),(75,46,93,0),(76,46,212,1),(77,47,93,0),(78,47,212,1),(79,48,93,0),(80,48,212,1),(81,49,93,0),(82,49,212,1),(83,50,93,0),(84,50,212,1),(85,53,93,0),(86,53,212,1),(87,54,93,0),(88,54,208,1),(89,55,93,0),(90,55,212,1),(91,56,93,0),(92,56,212,1),(93,57,93,1),(94,57,212,0),(95,58,93,0),(96,58,212,1),(97,59,93,0),(98,59,212,1),(99,60,93,0),(100,60,208,1),(101,61,93,0),(102,61,212,1),(103,63,93,0),(104,63,212,1),(105,64,93,0),(106,64,212,1),(107,65,93,0),(108,65,212,1),(109,66,93,0),(110,66,212,1),(111,68,93,0),(112,68,212,1),(113,69,93,0),(114,69,208,1),(115,70,93,0),(116,70,212,1),(117,71,93,0),(118,71,212,1),(119,72,93,0),(120,72,212,1),(121,73,93,0),(122,73,212,1),(123,74,93,0),(124,74,212,1),(125,75,93,0),(126,75,208,1),(127,76,93,0),(128,76,212,1),(129,77,93,0),(130,77,212,1),(131,78,93,1),(132,78,212,0),(133,79,93,0),(134,79,212,1),(135,80,93,0),(136,80,212,1),(137,81,93,0),(138,81,212,1),(139,82,93,1),(140,82,208,0),(141,83,93,0),(142,83,212,1),(143,84,93,0),(144,84,208,1),(145,85,93,0),(146,85,212,1),(147,86,93,1),(148,86,208,0),(149,87,93,0),(150,87,212,1),(151,88,93,0),(152,88,212,1),(153,89,93,0),(154,89,208,1),(155,91,93,0),(156,91,212,1),(157,92,93,0),(158,92,212,1),(159,93,93,0),(160,93,212,1),(161,95,93,0),(162,95,212,1),(163,97,93,0),(164,97,212,1),(165,98,93,0),(166,98,212,1),(167,99,93,0),(168,99,212,1),(169,100,93,0),(170,100,212,1),(171,101,93,0),(172,101,212,1),(173,102,93,0),(174,102,212,1),(175,103,93,0),(176,103,212,1),(177,104,93,0),(178,104,212,1),(179,105,93,0),(180,105,212,1),(181,106,93,0),(182,106,212,1),(183,108,93,1),(184,108,212,0),(185,107,93,0),(186,107,212,1),(187,109,93,0),(188,109,212,1),(189,110,93,0),(190,110,212,1),(191,111,93,0),(192,111,212,1),(193,112,93,0),(194,112,212,1),(195,113,93,0),(196,113,212,1),(197,114,93,0),(198,114,212,1),(199,115,93,0),(200,115,212,1),(201,116,93,0),(202,116,212,1),(203,117,93,0),(204,117,212,1),(205,118,93,0),(206,118,212,1),(207,119,93,0),(208,119,212,1),(209,120,93,0),(210,120,212,1),(211,122,93,0),(212,122,212,1),(213,121,93,0),(214,121,212,1),(215,123,93,0),(216,123,212,1),(217,124,93,0),(218,125,93,0),(219,126,93,0),(220,127,93,0),(221,128,93,0),(222,16,93,0),(223,16,208,1),(230,1413,93,0),(231,1413,208,1),(232,1351,93,0),(233,1351,212,1),(234,1455,93,0),(235,1455,208,1),(236,1464,93,0),(237,1464,212,1),(238,1495,93,0),(239,1495,208,1),(240,1526,93,0),(241,1526,208,1),(242,1535,93,0),(243,1535,212,1),(244,1561,93,1),(245,1561,208,0),(246,1568,93,0),(247,1568,212,1),(248,1583,93,0),(249,1583,212,1),(250,1596,93,0),(251,1596,212,1),(252,1604,93,0),(253,1604,212,1),(254,1597,93,1),(255,1597,208,0),(256,1630,93,0),(257,1630,212,1),(258,1643,93,0),(259,1643,208,1),(260,1656,93,0),(261,1656,212,1),(262,1677,93,1),(263,1677,212,0),(264,1699,93,1),(265,1699,212,0),(266,1709,93,0),(267,1709,212,1),(268,1725,93,0),(269,1725,212,1),(270,1735,93,0),(271,1735,212,1),(272,1756,93,0),(273,1756,212,1),(274,1777,93,1),(275,1777,212,0),(276,1787,93,0),(277,1787,212,1),(278,1808,93,0),(279,1808,212,1),(280,1817,93,0),(281,1817,212,1),(284,1840,93,0),(285,1840,212,1),(286,1866,93,0),(287,1866,212,1),(288,1875,93,0),(289,1875,212,1),(290,1888,93,1),(291,1888,212,0),(292,1892,93,1),(293,1892,212,0),(294,1896,93,0),(295,1896,212,1),(296,1903,93,0),(297,1903,212,1),(298,1910,93,0),(299,1910,212,1),(300,1920,93,0),(301,1920,212,1),(304,1943,93,1),(305,1943,208,0),(306,1946,93,0),(307,1946,208,1),(308,1961,93,0),(309,1961,208,1),(310,1972,93,0),(311,1972,208,1),(312,1991,93,1),(313,1991,208,0),(314,1996,93,0),(315,1996,212,1),(316,2001,93,0),(317,2001,212,1),(318,2010,93,0),(319,2010,212,1),(320,2017,93,0),(321,2017,212,1),(322,2020,93,0),(323,2020,212,1),(324,2029,93,0),(325,2029,212,1),(326,2032,93,0),(327,2032,212,1),(330,2050,93,0),(331,2050,212,1),(332,2055,93,0),(333,2055,212,1),(334,2060,93,1),(335,2060,212,0),(336,2065,93,0),(337,2065,212,1),(338,2072,93,0),(339,2072,212,1),(340,2077,93,0),(341,2077,212,1),(342,2084,93,0),(343,2084,212,1),(344,2089,93,0),(345,2089,212,1),(346,2098,93,0),(347,2098,212,1),(348,2105,93,0),(349,2105,212,1),(350,2116,93,0),(351,2116,212,1),(352,2123,93,0),(353,2123,212,1),(354,2132,93,0),(355,2132,212,1),(356,2135,93,0),(357,2135,212,1),(358,2138,93,0),(359,2138,212,1),(360,2145,93,0),(361,2145,212,1),(362,2149,93,0),(363,2157,93,0),(364,2157,212,1),(365,2168,93,0),(366,2168,208,1),(367,2171,93,0),(368,2178,93,0),(369,2178,212,1),(370,2185,93,0),(371,2185,212,1),(372,2190,93,0),(373,2190,212,1),(374,2197,93,0),(375,2197,212,1),(376,2204,93,0),(377,2204,212,1),(378,2207,93,0),(379,2212,93,0),(380,2212,212,1),(381,2219,93,0),(382,2219,212,1),(383,2222,93,0),(384,2229,93,1),(385,2229,212,0),(386,2234,93,0),(387,2234,212,1),(388,2245,93,0),(389,2245,208,1),(390,2252,93,0),(391,2252,212,1),(392,2255,93,0),(393,2255,212,1),(394,2268,93,0),(395,2268,208,1),(398,2284,93,0),(399,2284,212,1),(400,2291,93,0),(401,2291,212,1),(402,2300,93,1),(403,2300,212,0),(404,2309,93,0),(405,2309,212,1),(406,2320,93,0),(407,2320,212,1),(410,2336,93,0),(411,2336,212,1),(412,2343,93,0),(413,2343,212,1),(414,2350,93,0),(415,2350,212,1),(416,2357,93,0),(417,2357,212,1),(418,2366,93,1),(419,2366,212,0),(420,2373,93,0),(421,2373,212,1),(422,2389,93,0),(423,2389,212,1),(424,2396,93,0),(425,2396,212,1),(426,2403,93,0),(427,2403,212,1),(428,2410,93,0),(429,2410,212,1),(430,2417,93,0),(431,2417,212,1),(432,2424,93,0),(433,2424,212,1),(434,2431,93,0),(435,2431,212,1),(436,2440,93,0),(437,2440,212,1),(438,2456,93,0),(439,2456,208,1),(440,2465,93,0),(441,2465,208,1),(442,2478,93,0),(443,2478,208,1),(444,2487,93,0),(445,2487,212,1),(446,2500,93,0),(447,2500,208,1),(448,2507,93,0),(449,2507,212,1),(450,2517,93,0),(451,2517,212,1),(452,2524,93,0),(453,2524,212,1),(454,2533,93,0),(455,2533,208,1),(456,2542,93,0),(457,2542,212,1);
/*!40000 ALTER TABLE `catalog_product_super_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_super_attribute_label`
--

DROP TABLE IF EXISTS `catalog_product_super_attribute_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_super_attribute_label` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `product_super_attribute_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product Super Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `use_default` smallint(5) unsigned DEFAULT '0' COMMENT 'Use Default Value',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CAT_PRD_SPR_ATTR_LBL_PRD_SPR_ATTR_ID_STORE_ID` (`product_super_attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_SUPER_ATTRIBUTE_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_SUPER_ATTRIBUTE_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_309442281DF7784210ED82B2CC51E5D5` FOREIGN KEY (`product_super_attribute_id`) REFERENCES `catalog_product_super_attribute` (`product_super_attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=458 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Attribute Label Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_super_attribute_label`
--

LOCK TABLES `catalog_product_super_attribute_label` WRITE;
/*!40000 ALTER TABLE `catalog_product_super_attribute_label` DISABLE KEYS */;
INSERT INTO `catalog_product_super_attribute_label` VALUES (1,1,0,0,'Color'),(2,2,0,0,'Size'),(3,3,0,0,'Color'),(4,4,0,0,'Size'),(5,5,0,0,'Color'),(6,6,0,0,'Size'),(7,7,0,0,'Color'),(8,8,0,0,'Shoes size'),(9,9,0,0,'Color'),(10,10,0,0,'Shoes size'),(11,11,0,0,'Color'),(12,12,0,0,'Shoes size'),(13,13,0,0,'Color'),(14,14,0,0,'Shoes size'),(15,15,0,0,'Color'),(16,16,0,0,'Size'),(17,17,0,0,'Color'),(18,18,0,0,'Shoes size'),(19,19,0,0,'Color'),(20,20,0,0,'Size'),(21,21,0,0,'Color'),(22,22,0,0,'Size'),(23,23,0,0,'Color'),(24,24,0,0,'Size'),(25,25,0,0,'Color'),(26,26,0,0,'Size'),(27,27,0,0,'Color'),(28,28,0,0,'Shoes size'),(31,31,0,0,'Color'),(32,32,0,0,'Size'),(33,33,0,0,'Color'),(34,34,0,0,'Size'),(35,35,0,0,'Color'),(36,36,0,0,'Size'),(37,37,0,0,'Color'),(38,38,0,0,'Shoes size'),(39,39,0,0,'Color'),(40,40,0,0,'Size'),(41,41,0,0,'Color'),(42,42,0,0,'Size'),(43,43,0,0,'Color'),(44,44,0,0,'Shoes size'),(45,45,0,0,'Color'),(46,46,0,0,'Size'),(47,47,0,0,'Color'),(48,48,0,0,'Shoes size'),(49,49,0,0,'Color'),(50,50,0,0,'Size'),(51,51,0,0,'Color'),(52,52,0,0,'Size'),(53,53,0,0,'Color'),(54,54,0,0,'Size'),(55,55,0,0,'Color'),(56,56,0,0,'Size'),(57,57,0,0,'Color'),(58,58,0,0,'Size'),(59,59,0,0,'Color'),(60,60,0,0,'Shoes size'),(61,61,0,0,'Color'),(62,62,0,0,'Size'),(63,63,0,0,'Color'),(64,64,0,0,'Size'),(65,65,0,0,'Color'),(66,66,0,0,'Size'),(67,67,0,0,'Color'),(68,68,0,0,'Size'),(69,69,0,0,'Color'),(70,70,0,0,'Shoes size'),(71,71,0,0,'Color'),(72,72,0,0,'Size'),(73,73,0,0,'Color'),(74,74,0,0,'Size'),(75,75,0,0,'Color'),(76,76,0,0,'Size'),(77,77,0,0,'Color'),(78,78,0,0,'Size'),(79,79,0,0,'Color'),(80,80,0,0,'Size'),(81,81,0,0,'Color'),(82,82,0,0,'Size'),(83,83,0,0,'Color'),(84,84,0,0,'Size'),(85,85,0,0,'Color'),(86,86,0,0,'Size'),(87,87,0,0,'Color'),(88,88,0,0,'Shoes size'),(89,89,0,0,'Color'),(90,90,0,0,'Size'),(91,91,0,0,'Color'),(92,92,0,0,'Size'),(93,93,0,0,'Color'),(94,94,0,0,'Size'),(95,95,0,0,'Color'),(96,96,0,0,'Size'),(97,97,0,0,'Color'),(98,98,0,0,'Size'),(99,99,0,0,'Color'),(100,100,0,0,'Shoes size'),(101,101,0,0,'Color'),(102,102,0,0,'Size'),(103,103,0,0,'Color'),(104,104,0,0,'Size'),(105,105,0,0,'Color'),(106,106,0,0,'Size'),(107,107,0,0,'Color'),(108,108,0,0,'Size'),(109,109,0,0,'Color'),(110,110,0,0,'Size'),(111,111,0,0,'Color'),(112,112,0,0,'Size'),(113,113,0,0,'Color'),(114,114,0,0,'Shoes size'),(115,115,0,0,'Color'),(116,116,0,0,'Size'),(117,117,0,0,'Color'),(118,118,0,0,'Size'),(119,119,0,0,'Color'),(120,120,0,0,'Size'),(121,121,0,0,'Color'),(122,122,0,0,'Size'),(123,123,0,0,'Color'),(124,124,0,0,'Size'),(125,125,0,0,'Color'),(126,126,0,0,'Shoes size'),(127,127,0,0,'Color'),(128,128,0,0,'Size'),(129,129,0,0,'Color'),(130,130,0,0,'Size'),(131,131,0,0,'Color'),(132,132,0,0,'Size'),(133,133,0,0,'Color'),(134,134,0,0,'Size'),(135,135,0,0,'Color'),(136,136,0,0,'Size'),(137,137,0,0,'Color'),(138,138,0,0,'Size'),(139,139,0,0,'Color'),(140,140,0,0,'Shoes size'),(141,141,0,0,'Color'),(142,142,0,0,'Size'),(143,143,0,0,'Color'),(144,144,0,0,'Shoes size'),(145,145,0,0,'Color'),(146,146,0,0,'Size'),(147,147,0,0,'Color'),(148,148,0,0,'Shoes size'),(149,149,0,0,'Color'),(150,150,0,0,'Size'),(151,151,0,0,'Color'),(152,152,0,0,'Size'),(153,153,0,0,'Color'),(154,154,0,0,'Shoes size'),(155,155,0,0,'Color'),(156,156,0,0,'Size'),(157,157,0,0,'Color'),(158,158,0,0,'Size'),(159,159,0,0,'Color'),(160,160,0,0,'Size'),(161,161,0,0,'Color'),(162,162,0,0,'Size'),(163,163,0,0,'Color'),(164,164,0,0,'Size'),(165,165,0,0,'Color'),(166,166,0,0,'Size'),(167,167,0,0,'Color'),(168,168,0,0,'Size'),(169,169,0,0,'Color'),(170,170,0,0,'Size'),(171,171,0,0,'Color'),(172,172,0,0,'Size'),(173,173,0,0,'Color'),(174,174,0,0,'Size'),(175,175,0,0,'Color'),(176,176,0,0,'Size'),(177,177,0,0,'Color'),(178,178,0,0,'Size'),(179,179,0,0,'Color'),(180,180,0,0,'Size'),(181,181,0,0,'Color'),(182,182,0,0,'Size'),(183,183,0,0,'Color'),(184,184,0,0,'Size'),(185,185,0,0,'Color'),(186,186,0,0,'Size'),(187,187,0,0,'Color'),(188,188,0,0,'Size'),(189,189,0,0,'Color'),(190,190,0,0,'Size'),(191,191,0,0,'Color'),(192,192,0,0,'Size'),(193,193,0,0,'Color'),(194,194,0,0,'Size'),(195,195,0,0,'Color'),(196,196,0,0,'Size'),(197,197,0,0,'Color'),(198,198,0,0,'Size'),(199,199,0,0,'Color'),(200,200,0,0,'Size'),(201,201,0,0,'Color'),(202,202,0,0,'Size'),(203,203,0,0,'Color'),(204,204,0,0,'Size'),(205,205,0,0,'Color'),(206,206,0,0,'Size'),(207,207,0,0,'Color'),(208,208,0,0,'Size'),(209,209,0,0,'Color'),(210,210,0,0,'Size'),(211,211,0,0,'Color'),(212,212,0,0,'Size'),(213,213,0,0,'Color'),(214,214,0,0,'Size'),(215,215,0,0,'Color'),(216,216,0,0,'Size'),(217,217,0,0,'Color'),(218,218,0,0,'Color'),(219,219,0,0,'Color'),(220,220,0,0,'Color'),(221,221,0,0,'Color'),(222,222,0,0,'Color'),(223,223,0,0,'Shoes size'),(230,230,0,0,'Color'),(231,231,0,0,'Shoes size'),(232,232,0,0,'Color'),(233,233,0,0,'Size'),(234,234,0,0,'Color'),(235,235,0,0,'Shoes size'),(236,236,0,0,'Color'),(237,237,0,0,'Size'),(238,238,0,0,'Color'),(239,239,0,0,'Shoes size'),(240,240,0,0,'Color'),(241,241,0,0,'Shoes size'),(242,242,0,0,'Color'),(243,243,0,0,'Size'),(244,244,0,0,'Color'),(245,245,0,0,'Shoes size'),(246,246,0,0,'Color'),(247,247,0,0,'Size'),(248,248,0,0,'Color'),(249,249,0,0,'Size'),(250,250,0,0,'Color'),(251,251,0,0,'Size'),(252,252,0,0,'Color'),(253,253,0,0,'Size'),(254,254,0,0,'Color'),(255,255,0,0,'Shoes size'),(256,256,0,0,'Color'),(257,257,0,0,'Size'),(258,258,0,0,'Color'),(259,259,0,0,'Shoes size'),(260,260,0,0,'Color'),(261,261,0,0,'Size'),(262,262,0,0,'Color'),(263,263,0,0,'Size'),(264,264,0,0,'Color'),(265,265,0,0,'Size'),(266,266,0,0,'Color'),(267,267,0,0,'Size'),(268,268,0,0,'Color'),(269,269,0,0,'Size'),(270,270,0,0,'Color'),(271,271,0,0,'Size'),(272,272,0,0,'Color'),(273,273,0,0,'Size'),(274,274,0,0,'Color'),(275,275,0,0,'Size'),(276,276,0,0,'Color'),(277,277,0,0,'Size'),(278,278,0,0,'Color'),(279,279,0,0,'Size'),(280,280,0,0,'Color'),(281,281,0,0,'Size'),(284,284,0,0,'Color'),(285,285,0,0,'Size'),(286,286,0,0,'Color'),(287,287,0,0,'Size'),(288,288,0,0,'Color'),(289,289,0,0,'Size'),(290,290,0,0,'Color'),(291,291,0,0,'Size'),(292,292,0,0,'Color'),(293,293,0,0,'Size'),(294,294,0,0,'Color'),(295,295,0,0,'Size'),(296,296,0,0,'Color'),(297,297,0,0,'Size'),(298,298,0,0,'Color'),(299,299,0,0,'Size'),(300,300,0,0,'Color'),(301,301,0,0,'Size'),(304,304,0,0,'Color'),(305,305,0,0,'Shoes size'),(306,306,0,0,'Color'),(307,307,0,0,'Shoes size'),(308,308,0,0,'Color'),(309,309,0,0,'Shoes size'),(310,310,0,0,'Color'),(311,311,0,0,'Shoes size'),(312,312,0,0,'Color'),(313,313,0,0,'Shoes size'),(314,314,0,0,'Color'),(315,315,0,0,'Size'),(316,316,0,0,'Color'),(317,317,0,0,'Size'),(318,318,0,0,'Color'),(319,319,0,0,'Size'),(320,320,0,0,'Color'),(321,321,0,0,'Size'),(322,322,0,0,'Color'),(323,323,0,0,'Size'),(324,324,0,0,'Color'),(325,325,0,0,'Size'),(326,326,0,0,'Color'),(327,327,0,0,'Size'),(330,330,0,0,'Color'),(331,331,0,0,'Size'),(332,332,0,0,'Color'),(333,333,0,0,'Size'),(334,334,0,0,'Color'),(335,335,0,0,'Size'),(336,336,0,0,'Color'),(337,337,0,0,'Size'),(338,338,0,0,'Color'),(339,339,0,0,'Size'),(340,340,0,0,'Color'),(341,341,0,0,'Size'),(342,342,0,0,'Color'),(343,343,0,0,'Size'),(344,344,0,0,'Color'),(345,345,0,0,'Size'),(346,346,0,0,'Color'),(347,347,0,0,'Size'),(348,348,0,0,'Color'),(349,349,0,0,'Size'),(350,350,0,0,'Color'),(351,351,0,0,'Size'),(352,352,0,0,'Color'),(353,353,0,0,'Size'),(354,354,0,0,'Color'),(355,355,0,0,'Size'),(356,356,0,0,'Color'),(357,357,0,0,'Size'),(358,358,0,0,'Color'),(359,359,0,0,'Size'),(360,360,0,0,'Color'),(361,361,0,0,'Size'),(362,362,0,0,'Color'),(363,363,0,0,'Color'),(364,364,0,0,'Size'),(365,365,0,0,'Color'),(366,366,0,0,'Shoes size'),(367,367,0,0,'Color'),(368,368,0,0,'Color'),(369,369,0,0,'Size'),(370,370,0,0,'Color'),(371,371,0,0,'Size'),(372,372,0,0,'Color'),(373,373,0,0,'Size'),(374,374,0,0,'Color'),(375,375,0,0,'Size'),(376,376,0,0,'Color'),(377,377,0,0,'Size'),(378,378,0,0,'Color'),(379,379,0,0,'Color'),(380,380,0,0,'Size'),(381,381,0,0,'Color'),(382,382,0,0,'Size'),(383,383,0,0,'Color'),(384,384,0,0,'Color'),(385,385,0,0,'Size'),(386,386,0,0,'Color'),(387,387,0,0,'Size'),(388,388,0,0,'Color'),(389,389,0,0,'Shoes size'),(390,390,0,0,'Color'),(391,391,0,0,'Size'),(392,392,0,0,'Color'),(393,393,0,0,'Size'),(394,394,0,0,'Color'),(395,395,0,0,'Shoes size'),(398,398,0,0,'Color'),(399,399,0,0,'Size'),(400,400,0,0,'Color'),(401,401,0,0,'Size'),(402,402,0,0,'Color'),(403,403,0,0,'Size'),(404,404,0,0,'Color'),(405,405,0,0,'Size'),(406,406,0,0,'Color'),(407,407,0,0,'Size'),(410,410,0,0,'Color'),(411,411,0,0,'Size'),(412,412,0,0,'Color'),(413,413,0,0,'Size'),(414,414,0,0,'Color'),(415,415,0,0,'Size'),(416,416,0,0,'Color'),(417,417,0,0,'Size'),(418,418,0,0,'Color'),(419,419,0,0,'Size'),(420,420,0,0,'Color'),(421,421,0,0,'Size'),(422,422,0,0,'Color'),(423,423,0,0,'Size'),(424,424,0,0,'Color'),(425,425,0,0,'Size'),(426,426,0,0,'Color'),(427,427,0,0,'Size'),(428,428,0,0,'Color'),(429,429,0,0,'Size'),(430,430,0,0,'Color'),(431,431,0,0,'Size'),(432,432,0,0,'Color'),(433,433,0,0,'Size'),(434,434,0,0,'Color'),(435,435,0,0,'Size'),(436,436,0,0,'Color'),(437,437,0,0,'Size'),(438,438,0,0,'Color'),(439,439,0,0,'Shoes size'),(440,440,0,0,'Color'),(441,441,0,0,'Shoes size'),(442,442,0,0,'Color'),(443,443,0,0,'Shoes size'),(444,444,0,0,'Color'),(445,445,0,0,'Size'),(446,446,0,0,'Color'),(447,447,0,0,'Shoes size'),(448,448,0,0,'Color'),(449,449,0,0,'Size'),(450,450,0,0,'Color'),(451,451,0,0,'Size'),(452,452,0,0,'Color'),(453,453,0,0,'Size'),(454,454,0,0,'Color'),(455,455,0,0,'Shoes size'),(456,456,0,0,'Color'),(457,457,0,0,'Size');
/*!40000 ALTER TABLE `catalog_product_super_attribute_label` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_super_link`
--

DROP TABLE IF EXISTS `catalog_product_super_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_super_link` (
  `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `parent_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Parent ID',
  PRIMARY KEY (`link_id`),
  UNIQUE KEY `CATALOG_PRODUCT_SUPER_LINK_PRODUCT_ID_PARENT_ID` (`product_id`,`parent_id`),
  KEY `CATALOG_PRODUCT_SUPER_LINK_PARENT_ID` (`parent_id`),
  CONSTRAINT `CAT_PRD_SPR_LNK_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_SPR_LNK_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2296 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Link Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_super_link`
--

LOCK TABLES `catalog_product_super_link` WRITE;
/*!40000 ALTER TABLE `catalog_product_super_link` DISABLE KEYS */;
INSERT INTO `catalog_product_super_link` VALUES (2,130,51),(3,131,51),(29,157,7),(30,158,7),(31,159,7),(35,163,9),(36,164,9),(37,165,9),(38,166,10),(39,167,10),(40,168,10),(41,169,10),(42,170,11),(43,171,11),(44,172,12),(45,173,12),(46,174,12),(58,186,17),(59,187,17),(60,188,17),(61,189,17),(62,190,18),(63,191,18),(64,192,18),(65,193,18),(66,194,19),(67,195,19),(68,196,19),(75,203,22),(76,204,22),(77,205,22),(78,206,22),(79,207,24),(80,208,24),(81,209,24),(89,217,26),(90,218,26),(91,219,26),(92,220,26),(93,221,26),(100,228,30),(101,229,30),(102,230,30),(103,231,31),(104,232,31),(105,233,32),(106,234,32),(107,235,33),(108,236,33),(109,237,33),(110,238,33),(129,257,41),(130,258,41),(131,259,41),(132,260,41),(137,265,43),(138,266,43),(139,267,43),(140,268,43),(141,269,43),(142,270,44),(143,271,44),(144,272,45),(145,273,45),(146,274,45),(147,275,45),(148,276,45),(157,285,48),(158,286,48),(162,290,50),(163,291,50),(164,292,50),(172,300,54),(173,301,54),(174,302,54),(175,303,54),(176,304,54),(177,305,54),(181,309,56),(182,310,56),(183,311,56),(184,312,57),(185,313,57),(186,314,57),(187,315,57),(188,316,58),(189,317,58),(190,318,59),(191,319,59),(192,320,59),(193,321,59),(194,322,60),(195,323,60),(196,324,60),(197,325,60),(198,326,60),(199,327,60),(200,328,61),(201,329,61),(206,334,64),(207,335,64),(208,336,64),(209,337,64),(210,338,65),(211,339,65),(212,340,65),(213,341,66),(214,342,66),(215,343,66),(216,344,66),(217,345,66),(222,350,69),(223,351,69),(224,352,69),(225,353,69),(226,354,70),(227,355,70),(228,356,70),(229,357,70),(230,358,71),(231,359,71),(232,360,71),(236,364,72),(237,365,72),(238,366,72),(239,367,72),(240,368,73),(241,369,73),(242,370,73),(243,371,73),(244,372,73),(245,373,73),(246,374,73),(247,375,73),(250,378,74),(251,379,74),(252,380,75),(253,381,75),(254,382,75),(255,383,75),(256,384,75),(257,385,76),(258,386,76),(259,387,76),(260,388,77),(261,389,77),(262,390,77),(269,397,80),(270,398,80),(271,399,80),(272,400,80),(273,401,81),(274,402,81),(275,403,81),(276,404,81),(277,405,81),(278,406,81),(279,407,82),(280,408,82),(281,409,82),(282,410,82),(283,411,82),(288,416,84),(289,417,84),(290,418,84),(291,419,84),(292,420,84),(293,421,84),(294,422,84),(295,423,84),(296,424,84),(297,425,84),(309,437,87),(310,438,87),(311,439,87),(312,440,88),(313,441,88),(314,442,88),(321,449,89),(322,450,89),(323,451,89),(324,452,89),(325,453,89),(326,454,89),(327,455,91),(328,456,91),(329,457,91),(333,461,93),(334,462,93),(335,463,93),(336,464,93),(337,465,95),(338,466,95),(339,467,95),(343,471,98),(344,472,98),(345,473,98),(346,474,98),(350,478,100),(351,479,100),(352,480,100),(360,488,103),(361,489,103),(362,490,103),(367,495,105),(368,496,105),(369,497,105),(370,498,106),(371,499,106),(372,500,106),(373,501,108),(374,502,108),(375,503,108),(376,504,107),(377,505,107),(378,506,107),(379,507,107),(380,508,107),(381,509,107),(382,510,109),(383,511,109),(384,512,109),(385,513,110),(386,514,110),(387,515,110),(388,516,111),(389,517,112),(390,518,112),(391,519,112),(392,520,113),(393,521,113),(394,522,113),(395,523,114),(396,524,115),(397,525,115),(398,526,115),(399,527,116),(400,528,117),(401,529,117),(402,530,117),(403,531,118),(404,532,119),(405,533,119),(406,534,119),(407,535,120),(408,536,120),(409,537,120),(410,538,122),(411,539,122),(412,540,122),(413,541,121),(414,542,123),(415,543,123),(416,544,124),(417,545,125),(418,546,126),(419,547,127),(420,548,128),(421,549,20),(422,550,20),(423,551,20),(424,552,20),(425,553,20),(426,554,20),(427,555,20),(428,556,20),(429,557,20),(430,558,20),(431,559,20),(432,560,20),(433,561,20),(434,562,20),(435,563,20),(436,564,20),(437,565,20),(438,566,20),(439,567,20),(440,568,20),(441,569,20),(442,570,20),(443,571,20),(444,572,20),(445,573,20),(446,574,20),(447,575,20),(448,576,20),(449,577,20),(450,578,20),(451,579,3),(452,580,3),(453,581,3),(454,582,3),(455,583,3),(456,584,3),(457,585,3),(458,586,3),(459,587,3),(460,588,3),(461,589,3),(462,590,3),(463,591,3),(464,592,3),(465,593,3),(466,594,3),(467,595,3),(468,596,3),(469,597,3),(470,598,3),(471,599,3),(472,600,3),(473,601,3),(474,602,3),(475,603,3),(476,604,3),(477,605,3),(478,606,3),(479,607,3),(480,608,3),(481,609,3),(482,610,3),(483,611,3),(484,612,3),(485,613,3),(486,614,35),(487,615,35),(488,616,35),(489,617,35),(490,618,35),(491,619,35),(492,620,35),(493,621,35),(494,622,35),(495,623,35),(496,624,35),(497,625,35),(498,626,35),(499,627,35),(500,628,35),(501,629,35),(502,630,35),(503,631,35),(504,632,35),(505,633,35),(506,634,35),(507,635,35),(508,636,35),(509,637,35),(510,638,35),(511,639,35),(512,640,35),(513,641,35),(514,642,35),(515,643,35),(516,644,29),(517,645,29),(518,646,29),(519,647,29),(520,648,29),(521,649,29),(522,650,29),(523,651,29),(524,652,29),(525,653,29),(526,654,29),(527,655,29),(528,656,29),(529,657,29),(530,658,29),(531,659,29),(532,660,29),(533,661,29),(534,662,29),(535,663,29),(536,664,29),(537,665,29),(538,666,29),(539,667,29),(540,668,29),(541,669,29),(542,670,29),(543,671,29),(544,672,29),(545,673,29),(546,674,15),(547,675,15),(548,676,15),(549,677,15),(550,678,15),(551,679,15),(552,680,15),(553,681,15),(554,682,15),(555,683,15),(556,684,15),(557,685,15),(558,686,15),(559,687,15),(560,688,15),(561,689,15),(562,690,15),(563,691,15),(564,692,15),(565,693,15),(566,694,15),(567,695,15),(568,696,15),(569,697,15),(570,698,15),(571,699,5),(572,700,5),(573,701,5),(574,702,5),(575,703,5),(576,704,5),(577,705,5),(578,706,5),(579,707,5),(580,708,5),(581,709,5),(582,710,5),(583,711,5),(584,712,5),(585,713,5),(586,714,46),(587,715,46),(588,716,46),(589,717,46),(590,718,46),(591,719,46),(592,720,46),(593,721,46),(594,722,46),(595,723,46),(596,724,46),(597,725,46),(598,726,46),(599,727,46),(600,728,46),(601,729,46),(602,730,46),(603,731,46),(604,732,46),(605,733,46),(606,734,8),(607,735,8),(608,736,8),(609,737,8),(610,738,8),(611,739,8),(612,740,8),(613,741,8),(614,742,8),(615,743,8),(616,744,8),(617,745,8),(618,746,8),(619,747,8),(620,748,8),(621,749,47),(622,750,47),(623,751,47),(624,752,47),(625,753,47),(626,754,47),(627,755,47),(628,756,47),(629,757,47),(630,758,47),(631,759,47),(632,760,47),(633,761,47),(634,762,47),(635,763,47),(636,764,47),(637,765,47),(638,766,47),(639,767,47),(640,768,47),(641,769,53),(642,770,53),(643,771,53),(644,772,53),(645,773,53),(646,774,53),(647,775,53),(648,776,53),(649,777,53),(650,778,53),(651,779,53),(652,780,53),(653,781,53),(654,782,53),(655,783,53),(656,784,53),(657,785,53),(658,786,53),(659,787,53),(660,788,53),(661,789,49),(662,790,49),(663,791,49),(664,792,49),(665,793,49),(666,794,49),(667,795,49),(668,796,49),(669,797,49),(670,798,49),(671,799,49),(672,800,49),(673,801,49),(674,802,49),(675,803,49),(676,804,42),(677,805,42),(678,806,42),(679,807,42),(680,808,42),(681,809,42),(682,810,42),(683,811,42),(684,812,42),(685,813,42),(686,814,42),(687,815,42),(688,816,42),(689,817,42),(690,818,42),(691,819,42),(692,820,42),(693,821,42),(694,822,42),(695,823,42),(696,824,101),(697,825,101),(698,826,101),(699,827,101),(700,828,101),(701,829,101),(702,830,101),(703,831,101),(704,832,101),(705,833,101),(706,834,101),(707,835,101),(708,836,101),(709,837,101),(710,838,101),(711,839,101),(712,840,101),(713,841,101),(714,842,101),(715,843,101),(716,844,34),(717,845,34),(718,846,34),(719,847,34),(720,848,34),(721,849,34),(722,850,34),(723,851,34),(724,852,34),(725,853,34),(726,854,34),(727,855,34),(728,856,34),(729,857,34),(730,858,34),(731,859,34),(732,860,34),(733,861,34),(734,862,34),(735,863,34),(736,864,38),(737,865,38),(738,866,38),(739,867,38),(740,868,38),(741,869,38),(742,870,38),(743,871,38),(744,872,38),(745,873,38),(746,874,38),(747,875,38),(748,876,38),(749,877,38),(750,878,38),(751,879,36),(752,880,36),(753,881,36),(754,882,36),(755,883,36),(756,884,36),(757,885,36),(758,886,36),(759,887,36),(760,888,36),(761,889,36),(762,890,36),(763,891,36),(764,892,36),(765,893,36),(766,894,36),(767,895,36),(768,896,36),(769,897,36),(770,898,36),(771,899,36),(772,900,36),(773,901,36),(774,902,36),(775,903,36),(776,904,104),(777,905,104),(778,906,104),(779,907,104),(780,908,104),(781,909,104),(782,910,104),(783,911,104),(784,912,104),(785,913,104),(786,914,104),(787,915,104),(802,930,99),(803,931,99),(804,932,99),(811,939,97),(812,940,97),(813,941,97),(814,942,2),(815,943,2),(816,944,2),(817,945,2),(818,946,2),(819,947,2),(820,948,43),(821,949,43),(822,950,43),(823,951,43),(824,952,43),(825,953,43),(826,954,43),(827,955,43),(828,956,43),(829,957,43),(830,958,6),(831,959,6),(844,972,25),(845,973,25),(846,974,25),(847,975,25),(848,976,25),(849,977,25),(850,978,25),(851,979,25),(852,980,25),(853,981,25),(854,982,25),(855,983,25),(856,984,25),(857,985,25),(858,986,16),(859,987,16),(860,988,16),(861,989,16),(862,990,16),(863,991,16),(864,992,16),(865,993,16),(866,994,16),(867,995,16),(868,996,16),(869,997,16),(870,998,16),(871,999,16),(872,1000,16),(873,1001,16),(874,1002,16),(875,1003,16),(876,1004,4),(877,1005,4),(878,1006,4),(879,1007,4),(880,1008,4),(881,1009,4),(882,1010,4),(883,1011,4),(884,1012,4),(885,1013,4),(886,1014,1),(887,1015,1),(888,1016,1),(889,1017,1),(890,1018,1),(891,1019,1),(892,1020,1),(893,1021,1),(894,1022,1),(895,1023,78),(896,1024,78),(897,1025,78),(898,1026,78),(899,1027,78),(900,1028,78),(901,1029,55),(902,1030,55),(903,1031,55),(904,1032,55),(905,1033,55),(906,1034,55),(907,1035,68),(908,1036,68),(909,1037,68),(910,1038,68),(911,1039,68),(912,1040,68),(913,1041,68),(914,1042,68),(915,1043,85),(916,1044,85),(917,1045,85),(918,1046,85),(919,1047,85),(920,1048,85),(921,1049,63),(922,1050,63),(923,1051,63),(924,1052,63),(925,1053,63),(926,1054,63),(927,1055,63),(928,1056,63),(929,1057,79),(930,1058,79),(931,1059,79),(932,1060,79),(933,1061,79),(934,1062,79),(935,1063,92),(936,1064,92),(937,1065,92),(938,1066,92),(939,1067,92),(940,1068,92),(941,1069,102),(942,1070,102),(943,1071,102),(944,1072,102),(945,1073,102),(946,1074,102),(947,1075,83),(948,1076,83),(949,1077,83),(950,1078,83),(951,1079,83),(952,1080,83),(953,1081,83),(954,1082,83),(955,1083,66),(956,1084,66),(957,1085,66),(958,1086,66),(959,1087,66),(960,1088,88),(961,1089,88),(962,1090,88),(963,1091,83),(964,1092,83),(965,1093,83),(966,1094,83),(967,1095,102),(968,1096,102),(969,1097,102),(970,1098,92),(971,1099,92),(972,1100,92),(973,1101,79),(974,1102,79),(975,1103,79),(976,1104,87),(977,1105,87),(978,1106,87),(979,1107,103),(980,1108,103),(981,1109,103),(982,1110,98),(983,1111,98),(984,1112,98),(985,1113,98),(986,1114,93),(987,1115,93),(988,1116,93),(989,1117,93),(990,1118,91),(991,1119,91),(992,1120,91),(993,1121,100),(994,1122,100),(995,1123,100),(996,1124,95),(997,1125,95),(998,1126,95),(999,1127,76),(1000,1128,76),(1001,1129,76),(1002,1130,71),(1003,1131,71),(1004,1132,71),(1005,1133,51),(1006,1134,51),(1007,1135,71),(1008,1136,71),(1009,1137,71),(1010,1138,108),(1011,1139,108),(1012,1140,108),(1013,1141,33),(1014,1142,33),(1015,1143,33),(1016,1144,33),(1017,1145,7),(1018,1146,7),(1019,1147,7),(1020,1148,10),(1021,1149,10),(1022,1150,10),(1023,1151,10),(1024,1152,70),(1025,1153,70),(1026,1154,70),(1027,1155,70),(1028,1156,17),(1029,1157,17),(1030,1158,17),(1031,1159,17),(1032,1160,123),(1033,1161,123),(1034,1162,11),(1035,1163,11),(1036,1164,120),(1037,1165,120),(1038,1166,120),(1039,1167,72),(1040,1168,72),(1041,1169,72),(1042,1170,72),(1043,1171,80),(1044,1172,80),(1045,1173,80),(1046,1174,80),(1047,1175,26),(1048,1176,26),(1049,1177,26),(1050,1178,26),(1051,1179,26),(1052,1180,64),(1053,1181,64),(1054,1182,64),(1055,1183,64),(1056,1184,12),(1057,1185,12),(1058,1186,12),(1059,1187,59),(1060,1188,59),(1061,1189,59),(1062,1190,59),(1063,1191,82),(1064,1192,82),(1065,1193,82),(1066,1194,82),(1067,1195,82),(1068,1196,115),(1069,1197,115),(1070,1198,115),(1071,1199,122),(1072,1200,122),(1073,1201,122),(1074,1202,106),(1075,1203,106),(1076,1204,106),(1077,1205,117),(1078,1206,117),(1079,1207,117),(1080,1208,113),(1081,1209,113),(1082,1210,113),(1083,1211,105),(1084,1212,105),(1085,1213,105),(1086,1214,75),(1087,1215,75),(1088,1216,75),(1089,1217,75),(1090,1218,75),(1091,1219,19),(1092,1220,19),(1093,1221,19),(1094,1222,54),(1095,1223,54),(1096,1224,54),(1097,1225,54),(1098,1226,54),(1099,1227,54),(1100,1228,50),(1101,1229,50),(1102,1230,50),(1103,1231,119),(1104,1232,119),(1105,1233,119),(1106,1234,41),(1107,1235,41),(1108,1236,41),(1109,1237,41),(1110,1238,18),(1111,1239,18),(1112,1240,18),(1113,1241,18),(1114,1242,45),(1115,1243,45),(1116,1244,45),(1117,1245,45),(1118,1246,45),(1119,1247,69),(1120,1248,69),(1121,1249,69),(1122,1250,69),(1123,1251,60),(1124,1252,60),(1125,1253,60),(1126,1254,60),(1127,1255,60),(1128,1256,60),(1129,1257,57),(1130,1258,57),(1131,1259,57),(1132,1260,57),(1133,1261,84),(1134,1262,84),(1135,1263,84),(1136,1264,84),(1137,1265,84),(1138,1266,89),(1139,1267,89),(1140,1268,89),(1141,1269,89),(1142,1270,89),(1143,1271,89),(1144,1272,86),(1145,1273,86),(1146,1274,86),(1147,1275,86),(1148,1276,86),(1149,1277,86),(1150,1278,86),(1151,1279,86),(1152,1280,22),(1153,1281,22),(1154,1282,22),(1155,1283,22),(1156,1284,56),(1157,1285,56),(1158,1286,56),(1159,1287,77),(1160,1288,77),(1161,1289,77),(1162,1290,9),(1163,1291,9),(1164,1292,9),(1165,1293,30),(1166,1294,30),(1167,1295,30),(1168,1296,110),(1169,1297,110),(1170,1298,110),(1171,1299,109),(1172,1300,109),(1173,1301,109),(1174,1302,112),(1175,1303,112),(1176,1304,112),(1177,1305,24),(1178,1306,24),(1179,1307,24),(1180,1308,114),(1181,1309,58),(1182,1310,58),(1183,1311,128),(1184,1312,31),(1185,1313,31),(1186,1314,127),(1187,1315,48),(1188,1316,48),(1189,1317,126),(1190,1318,125),(1191,1319,124),(1192,1320,121),(1193,1321,118),(1194,1322,65),(1195,1323,65),(1196,1324,65),(1197,1325,74),(1198,1326,74),(1199,1327,32),(1200,1328,32),(1201,1329,61),(1202,1330,61),(1203,1331,111),(1204,1332,116),(1214,1343,44),(1215,1344,44),(1252,1383,1413),(1253,1384,1413),(1254,1385,1413),(1255,1386,1413),(1256,1387,1413),(1257,1388,1413),(1258,1389,1413),(1259,1390,1413),(1260,1391,1413),(1261,1392,1413),(1262,1393,1413),(1263,1394,1413),(1264,1395,1413),(1265,1396,1413),(1266,1397,1413),(1267,1398,1413),(1268,1399,1413),(1269,1400,1413),(1270,1401,1413),(1271,1402,1413),(1272,1403,1413),(1273,1404,1413),(1274,1405,1413),(1275,1406,1413),(1276,1407,1413),(1277,1408,1413),(1278,1409,1413),(1279,1410,1413),(1280,1411,1413),(1281,1412,1413),(1282,1414,1351),(1283,1415,1351),(1284,1416,1351),(1285,1417,1351),(1286,1418,1351),(1287,1419,1351),(1288,1420,1455),(1289,1421,1455),(1290,1422,1455),(1291,1423,1455),(1292,1424,1455),(1293,1425,1455),(1294,1426,1455),(1295,1427,1455),(1296,1428,1455),(1297,1429,1455),(1298,1430,1455),(1299,1431,1455),(1300,1432,1455),(1301,1433,1455),(1302,1434,1455),(1303,1435,1455),(1304,1436,1455),(1305,1437,1455),(1306,1438,1455),(1307,1439,1455),(1308,1440,1455),(1309,1441,1455),(1310,1442,1455),(1311,1443,1455),(1312,1444,1455),(1313,1445,1455),(1314,1446,1455),(1315,1447,1455),(1316,1448,1455),(1317,1449,1455),(1318,1450,1455),(1319,1451,1455),(1320,1452,1455),(1321,1453,1455),(1322,1454,1455),(1323,1456,1464),(1324,1457,1464),(1325,1458,1464),(1326,1459,1464),(1327,1460,1464),(1328,1461,1464),(1329,1462,1464),(1330,1463,1464),(1331,1465,1495),(1332,1466,1495),(1333,1467,1495),(1334,1468,1495),(1335,1469,1495),(1336,1470,1495),(1337,1471,1495),(1338,1472,1495),(1339,1473,1495),(1340,1474,1495),(1341,1475,1495),(1342,1476,1495),(1343,1477,1495),(1344,1478,1495),(1345,1479,1495),(1346,1480,1495),(1347,1481,1495),(1348,1482,1495),(1349,1483,1495),(1350,1484,1495),(1351,1485,1495),(1352,1486,1495),(1353,1487,1495),(1354,1488,1495),(1355,1489,1495),(1356,1490,1495),(1357,1491,1495),(1358,1492,1495),(1359,1493,1495),(1360,1494,1495),(1361,1496,1526),(1362,1497,1526),(1363,1498,1526),(1364,1499,1526),(1365,1500,1526),(1366,1501,1526),(1367,1502,1526),(1368,1503,1526),(1369,1504,1526),(1370,1505,1526),(1371,1506,1526),(1372,1507,1526),(1373,1508,1526),(1374,1509,1526),(1375,1510,1526),(1376,1511,1526),(1377,1512,1526),(1378,1513,1526),(1379,1514,1526),(1380,1515,1526),(1381,1516,1526),(1382,1517,1526),(1383,1518,1526),(1384,1519,1526),(1385,1520,1526),(1386,1521,1526),(1387,1522,1526),(1388,1523,1526),(1389,1524,1526),(1390,1525,1526),(1391,1527,1535),(1392,1528,1535),(1393,1529,1535),(1394,1530,1535),(1395,1531,1535),(1396,1532,1535),(1397,1533,1535),(1398,1534,1535),(1399,1536,1561),(1400,1537,1561),(1401,1538,1561),(1402,1539,1561),(1403,1540,1561),(1404,1541,1561),(1405,1542,1561),(1406,1543,1561),(1407,1544,1561),(1408,1545,1561),(1409,1546,1561),(1410,1547,1561),(1411,1548,1561),(1412,1549,1561),(1413,1550,1561),(1414,1551,1561),(1415,1552,1561),(1416,1553,1561),(1417,1554,1561),(1418,1555,1561),(1419,1556,1561),(1420,1557,1561),(1421,1558,1561),(1422,1559,1561),(1423,1560,1561),(1424,1562,1568),(1425,1563,1568),(1426,1564,1568),(1427,1565,1568),(1428,1566,1568),(1429,1567,1568),(1430,1569,1583),(1431,1570,1583),(1432,1571,1583),(1433,1572,1583),(1436,1573,1596),(1437,1574,1596),(1434,1575,1583),(1438,1576,1596),(1439,1577,1596),(1440,1578,1596),(1435,1579,1583),(1441,1580,1596),(1442,1581,1596),(1443,1582,1596),(1444,1584,1596),(1445,1585,1596),(1446,1586,1596),(1447,1587,1596),(1448,1588,1596),(1449,1589,1596),(1450,1590,1596),(1451,1591,1596),(1452,1592,1596),(1453,1593,1596),(1454,1594,1596),(1455,1595,1596),(1456,1598,1604),(1457,1599,1604),(1458,1600,1604),(1459,1601,1604),(1460,1602,1604),(1461,1603,1604),(1462,1605,1597),(1463,1606,1597),(1464,1607,1597),(1465,1608,1597),(1466,1609,1597),(1467,1610,1597),(1468,1611,1597),(1469,1612,1597),(1470,1613,1597),(1471,1614,1597),(1472,1615,1597),(1473,1616,1597),(1474,1617,1597),(1475,1618,1597),(1476,1619,1597),(1477,1620,1630),(1478,1621,1630),(1479,1622,1630),(1480,1623,1630),(1481,1624,1630),(1482,1625,1630),(1483,1626,1630),(1484,1627,1630),(1485,1628,1630),(1486,1629,1630),(1487,1631,1643),(1488,1632,1643),(1489,1633,1643),(1490,1634,1643),(1491,1635,1643),(1492,1636,1643),(1493,1637,1643),(1494,1638,1643),(1495,1639,1643),(1496,1640,1643),(1497,1641,1643),(1498,1642,1643),(1499,1644,1656),(1500,1645,1656),(1501,1646,1656),(1502,1647,1656),(1503,1648,1656),(1504,1649,1656),(1505,1650,1656),(1506,1651,1656),(1507,1652,1656),(1508,1653,1656),(1509,1654,1656),(1510,1655,1656),(1511,1657,1677),(1512,1658,1677),(1513,1659,1677),(1514,1660,1677),(1515,1661,1677),(1516,1662,1677),(1517,1663,1677),(1518,1664,1677),(1519,1665,1677),(1520,1666,1677),(1521,1667,1677),(1522,1668,1677),(1523,1669,1677),(1524,1670,1677),(1525,1671,1677),(1526,1672,1677),(1527,1673,1677),(1528,1674,1677),(1529,1675,1677),(1530,1676,1677),(1531,1678,1699),(1532,1679,1699),(1533,1680,1699),(1534,1681,1699),(1535,1682,1699),(1536,1683,1699),(1537,1684,1699),(1538,1685,1699),(1539,1686,1699),(1540,1687,1699),(1541,1688,1699),(1542,1689,1699),(1543,1690,1699),(1544,1692,1699),(1545,1693,1699),(1546,1694,1699),(1547,1695,1699),(1548,1696,1699),(1549,1697,1699),(1550,1698,1699),(1551,1700,1709),(1552,1701,1709),(1553,1702,1709),(1554,1703,1709),(1555,1704,1709),(1556,1705,1709),(1557,1706,1709),(1558,1707,1709),(1559,1708,1709),(1560,1710,1725),(1561,1711,1725),(1562,1712,1725),(1563,1713,1725),(1564,1714,1725),(1565,1715,1725),(1566,1716,1725),(1567,1717,1725),(1568,1718,1725),(1569,1719,1725),(1570,1720,1725),(1571,1721,1725),(1572,1722,1725),(1573,1723,1725),(1574,1724,1725),(1575,1726,1735),(1576,1727,1735),(1577,1728,1735),(1578,1729,1735),(1579,1730,1735),(1580,1731,1735),(1581,1732,1735),(1582,1733,1735),(1583,1734,1735),(1584,1736,1756),(1585,1737,1756),(1586,1738,1756),(1587,1739,1756),(1588,1740,1756),(1589,1741,1756),(1590,1742,1756),(1591,1743,1756),(1592,1744,1756),(1593,1745,1756),(1594,1746,1756),(1595,1747,1756),(1596,1748,1756),(1597,1749,1756),(1598,1750,1756),(1599,1751,1756),(1600,1752,1756),(1601,1753,1756),(1602,1754,1756),(1603,1755,1756),(1604,1757,1777),(1605,1758,1777),(1606,1759,1777),(1607,1760,1777),(1608,1761,1777),(1609,1762,1777),(1610,1763,1777),(1611,1764,1777),(1612,1765,1777),(1613,1766,1777),(1614,1767,1777),(1615,1768,1777),(1616,1769,1777),(1617,1770,1777),(1618,1771,1777),(1619,1772,1777),(1620,1773,1777),(1621,1774,1777),(1622,1775,1777),(1623,1776,1777),(1624,1778,1787),(1625,1779,1787),(1626,1780,1787),(1627,1781,1787),(1628,1782,1787),(1629,1783,1787),(1630,1784,1787),(1631,1785,1787),(1632,1786,1787),(1633,1788,1808),(1634,1789,1808),(1635,1790,1808),(1636,1791,1808),(1637,1792,1808),(1638,1793,1808),(1639,1794,1808),(1640,1795,1808),(1641,1796,1808),(1642,1797,1808),(1643,1798,1808),(1644,1799,1808),(1645,1800,1808),(1646,1801,1808),(1647,1802,1808),(1648,1803,1808),(1649,1804,1808),(1650,1805,1808),(1651,1806,1808),(1652,1807,1808),(1653,1809,1817),(1654,1810,1817),(1655,1811,1817),(1656,1812,1817),(1657,1813,1817),(1658,1814,1817),(1659,1815,1817),(1660,1816,1817),(1676,1834,1840),(1677,1835,1840),(1678,1836,1840),(1679,1837,1840),(1680,1838,1840),(1681,1839,1840),(1682,1841,1866),(1683,1842,1866),(1684,1843,1866),(1685,1844,1866),(1686,1845,1866),(1687,1846,1866),(1688,1847,1866),(1689,1848,1866),(1690,1849,1866),(1691,1850,1866),(1692,1851,1866),(1693,1852,1866),(1694,1853,1866),(1695,1854,1866),(1696,1855,1866),(1697,1856,1866),(1698,1857,1866),(1699,1858,1866),(1700,1859,1866),(1701,1860,1866),(1702,1861,1866),(1703,1862,1866),(1704,1863,1866),(1705,1864,1866),(1706,1865,1866),(1707,1867,1875),(1708,1868,1875),(1709,1869,1875),(1710,1870,1875),(1711,1871,1875),(1712,1872,1875),(1713,1873,1875),(1714,1874,1875),(1715,1876,1888),(1716,1877,1888),(1717,1878,1888),(1718,1879,1888),(1719,1880,1888),(1720,1881,1888),(1721,1882,1888),(1722,1883,1888),(1723,1884,1888),(1724,1885,1888),(1725,1886,1888),(1726,1887,1888),(1727,1889,1892),(1728,1890,1892),(1729,1891,1892),(1730,1893,1896),(1731,1894,1896),(1732,1895,1896),(1733,1897,1903),(1734,1898,1903),(1735,1899,1903),(1736,1900,1903),(1737,1901,1903),(1738,1902,1903),(1739,1904,1910),(1740,1905,1910),(1741,1906,1910),(1742,1907,1910),(1743,1908,1910),(1744,1909,1910),(1745,1911,1920),(1746,1912,1920),(1747,1913,1920),(1748,1914,1920),(1749,1915,1920),(1750,1916,1920),(1751,1917,1920),(1752,1918,1920),(1753,1919,1920),(1760,1928,1943),(1761,1929,1943),(1762,1930,1943),(1763,1931,1943),(1764,1932,1943),(1765,1933,1943),(1766,1934,1943),(1767,1935,1943),(1768,1936,1943),(1769,1937,1943),(1770,1938,1943),(1771,1939,1943),(1772,1940,1943),(1773,1941,1943),(1774,1942,1943),(1775,1944,1946),(1776,1945,1946),(1777,1947,1961),(1778,1948,1961),(1779,1949,1961),(1780,1950,1961),(1781,1951,1961),(1782,1952,1961),(1783,1953,1961),(1784,1954,1961),(1785,1955,1961),(1786,1956,1961),(1787,1957,1961),(1788,1958,1961),(1789,1959,1961),(1790,1960,1961),(1791,1962,1972),(1792,1963,1972),(1793,1964,1972),(1794,1965,1972),(1795,1966,1972),(1796,1967,1972),(1797,1968,1972),(1798,1969,1972),(1799,1970,1972),(1800,1971,1972),(1801,1973,1991),(1802,1974,1991),(1803,1975,1991),(1804,1976,1991),(1805,1977,1991),(1806,1978,1991),(1807,1979,1991),(1808,1980,1991),(1809,1981,1991),(1810,1982,1991),(1811,1983,1991),(1812,1984,1991),(1813,1985,1991),(1814,1986,1991),(1815,1987,1991),(1816,1988,1991),(1817,1989,1991),(1818,1990,1991),(1819,1992,1996),(1820,1993,1996),(1821,1994,1996),(1822,1995,1996),(1823,1997,2001),(1824,1998,2001),(1825,1999,2001),(1826,2000,2001),(1827,2002,2010),(1828,2003,2010),(1829,2004,2010),(1830,2005,2010),(1831,2006,2010),(1832,2007,2010),(1833,2008,2010),(1834,2009,2010),(1835,2011,2017),(1836,2012,2017),(1837,2013,2017),(1838,2014,2017),(1839,2015,2017),(1840,2016,2017),(1841,2018,2020),(1842,2019,2020),(1843,2021,2029),(1844,2022,2029),(1845,2023,2029),(1846,2024,2029),(1847,2025,2029),(1848,2026,2029),(1849,2027,2029),(1850,2028,2029),(1851,2030,2032),(1852,2031,2032),(1861,2042,2050),(1862,2043,2050),(1863,2044,2050),(1864,2045,2050),(1865,2046,2050),(1866,2047,2050),(1867,2048,2050),(1868,2049,2050),(1869,2051,2055),(1870,2052,2055),(1871,2053,2055),(1872,2054,2055),(1873,2056,2060),(1874,2057,2060),(1875,2058,2060),(1876,2059,2060),(1877,2061,2065),(1878,2062,2065),(1879,2063,2065),(1880,2064,2065),(1881,2066,2072),(1882,2067,2072),(1883,2068,2072),(1884,2069,2072),(1885,2070,2072),(1886,2071,2072),(1887,2073,2077),(1888,2074,2077),(1889,2075,2077),(1890,2076,2077),(1891,2078,2084),(1892,2079,2084),(1893,2080,2084),(1894,2081,2084),(1895,2082,2084),(1896,2083,2084),(1897,2085,2089),(1898,2086,2089),(1899,2087,2089),(1900,2088,2089),(1901,2090,2098),(1902,2091,2098),(1903,2092,2098),(1904,2093,2098),(1905,2094,2098),(1906,2095,2098),(1907,2096,2098),(1908,2097,2098),(1909,2099,2105),(1910,2100,2105),(1911,2101,2105),(1912,2102,2105),(1913,2103,2105),(1914,2104,2105),(1915,2106,2116),(1916,2107,2116),(1917,2108,2116),(1918,2109,2116),(1919,2110,2116),(1920,2111,2116),(1921,2112,2116),(1922,2113,2116),(1923,2114,2116),(1924,2115,2116),(1925,2117,2123),(1926,2118,2123),(1927,2119,2123),(1928,2120,2123),(1929,2121,2123),(1930,2122,2123),(1931,2124,2132),(1932,2125,2132),(1933,2126,2132),(1934,2127,2132),(1935,2128,2132),(1936,2129,2132),(1937,2130,2132),(1938,2131,2132),(1939,2133,2135),(1940,2134,2135),(1941,2136,2138),(1942,2137,2138),(1943,2139,2145),(1944,2140,2145),(1945,2141,2145),(1946,2142,2145),(1947,2143,2145),(1948,2144,2145),(1949,2146,2149),(1950,2147,2149),(1951,2148,2157),(1952,2150,2157),(1953,2151,2157),(1954,2152,2157),(1955,2153,2157),(1956,2154,2157),(1957,2155,2157),(1958,2156,2157),(1959,2158,2168),(1960,2159,2168),(1961,2160,2168),(1962,2161,2168),(1963,2162,2168),(1964,2163,2168),(1965,2164,2168),(1966,2165,2168),(1967,2166,2168),(1968,2167,2168),(1969,2169,2171),(1970,2170,2171),(1971,2172,2178),(1972,2173,2178),(1973,2174,2178),(1974,2175,2178),(1975,2176,2178),(1976,2177,2178),(1977,2179,2185),(1978,2180,2185),(1979,2181,2185),(1980,2182,2185),(1981,2183,2185),(1982,2184,2185),(1983,2186,2190),(1984,2187,2190),(1985,2188,2190),(1986,2189,2190),(1987,2191,2197),(1988,2192,2197),(1989,2193,2197),(1990,2194,2197),(1991,2195,2197),(1992,2196,2197),(1993,2198,2204),(1994,2199,2204),(1995,2200,2204),(1996,2201,2204),(1997,2202,2204),(1998,2203,2204),(1999,2205,2207),(2000,2206,2207),(2001,2208,2212),(2002,2209,2212),(2003,2210,2212),(2004,2211,2212),(2005,2213,2219),(2006,2214,2219),(2007,2215,2219),(2008,2216,2219),(2009,2217,2219),(2010,2218,2219),(2011,2220,2222),(2012,2221,2222),(2013,2223,2229),(2014,2224,2229),(2015,2225,2229),(2016,2226,2229),(2017,2227,2229),(2018,2228,2229),(2019,2230,2234),(2020,2231,2234),(2021,2232,2234),(2022,2233,2234),(2023,2235,2245),(2024,2236,2245),(2025,2237,2245),(2026,2238,2245),(2027,2239,2245),(2028,2240,2245),(2029,2241,2245),(2030,2242,2245),(2031,2243,2245),(2032,2244,2245),(2033,2246,2252),(2034,2247,2252),(2035,2248,2252),(2036,2249,2252),(2037,2250,2252),(2038,2251,2252),(2039,2253,2255),(2040,2254,2255),(2041,2256,2268),(2042,2257,2268),(2043,2258,2268),(2044,2259,2268),(2045,2260,2268),(2046,2261,2268),(2047,2262,2268),(2048,2263,2268),(2049,2264,2268),(2050,2265,2268),(2051,2266,2268),(2052,2267,2268),(2061,2278,2284),(2062,2279,2284),(2063,2280,2284),(2064,2281,2284),(2065,2282,2284),(2066,2283,2284),(2067,2285,2291),(2068,2286,2291),(2069,2287,2291),(2070,2288,2291),(2071,2289,2291),(2072,2290,2291),(2073,2292,2300),(2074,2293,2300),(2075,2294,2300),(2076,2295,2300),(2077,2296,2300),(2078,2297,2300),(2079,2298,2300),(2080,2299,2300),(2081,2301,2309),(2082,2302,2309),(2083,2303,2309),(2084,2304,2309),(2085,2305,2309),(2086,2306,2309),(2087,2307,2309),(2088,2308,2309),(2089,2310,2320),(2090,2311,2320),(2091,2312,2320),(2092,2313,2320),(2093,2314,2320),(2094,2315,2320),(2095,2316,2320),(2096,2317,2320),(2097,2318,2320),(2098,2319,2320),(2107,2330,2336),(2108,2331,2336),(2109,2332,2336),(2110,2333,2336),(2111,2334,2336),(2112,2335,2336),(2113,2337,2343),(2114,2338,2343),(2115,2339,2343),(2116,2340,2343),(2117,2341,2343),(2118,2342,2343),(2119,2344,2350),(2120,2345,2350),(2121,2346,2350),(2122,2347,2350),(2123,2348,2350),(2124,2349,2350),(2125,2351,2357),(2126,2352,2357),(2127,2353,2357),(2128,2354,2357),(2129,2355,2357),(2130,2356,2357),(2131,2358,2366),(2132,2359,2366),(2133,2360,2366),(2134,2361,2366),(2135,2362,2366),(2136,2363,2366),(2137,2364,2366),(2138,2365,2366),(2139,2367,2373),(2140,2368,2373),(2141,2369,2373),(2142,2370,2373),(2143,2371,2373),(2144,2372,2373),(2145,2374,2389),(2146,2375,2389),(2147,2376,2389),(2148,2377,2389),(2149,2378,2389),(2150,2379,2389),(2151,2380,2389),(2152,2381,2389),(2153,2382,2389),(2154,2383,2389),(2155,2384,2389),(2156,2385,2389),(2157,2386,2389),(2158,2387,2389),(2159,2388,2389),(2160,2390,2396),(2161,2391,2396),(2162,2392,2396),(2163,2393,2396),(2164,2394,2396),(2165,2395,2396),(2166,2397,2403),(2167,2398,2403),(2168,2399,2403),(2169,2400,2403),(2170,2401,2403),(2171,2402,2403),(2172,2404,2410),(2173,2405,2410),(2174,2406,2410),(2175,2407,2410),(2176,2408,2410),(2177,2409,2410),(2178,2411,2417),(2179,2412,2417),(2180,2413,2417),(2181,2414,2417),(2182,2415,2417),(2183,2416,2417),(2184,2418,2424),(2185,2419,2424),(2186,2420,2424),(2187,2421,2424),(2188,2422,2424),(2189,2423,2424),(2190,2425,2431),(2191,2426,2431),(2192,2427,2431),(2193,2428,2431),(2194,2429,2431),(2195,2430,2431),(2196,2432,2440),(2197,2433,2440),(2198,2434,2440),(2199,2435,2440),(2200,2436,2440),(2201,2437,2440),(2202,2438,2440),(2203,2439,2440),(2204,2441,2456),(2205,2442,2456),(2206,2443,2456),(2207,2444,2456),(2208,2445,2456),(2209,2446,2456),(2210,2447,2456),(2211,2448,2456),(2212,2449,2456),(2213,2450,2456),(2214,2451,2456),(2215,2452,2456),(2216,2453,2456),(2217,2454,2456),(2218,2455,2456),(2219,2457,2465),(2220,2458,2465),(2221,2459,2465),(2222,2460,2465),(2223,2461,2465),(2224,2462,2465),(2225,2463,2465),(2226,2464,2465),(2227,2466,2478),(2228,2467,2478),(2229,2468,2478),(2230,2469,2478),(2231,2470,2478),(2232,2471,2478),(2233,2472,2478),(2234,2473,2478),(2235,2474,2478),(2236,2475,2478),(2237,2476,2478),(2238,2477,2478),(2239,2479,2487),(2240,2480,2487),(2241,2481,2487),(2242,2482,2487),(2243,2483,2487),(2244,2484,2487),(2245,2485,2487),(2246,2486,2487),(2247,2488,2500),(2248,2489,2500),(2249,2490,2500),(2250,2491,2500),(2251,2492,2500),(2252,2493,2500),(2253,2494,2500),(2254,2495,2500),(2255,2496,2500),(2256,2497,2500),(2257,2498,2500),(2258,2499,2500),(2259,2501,2507),(2260,2502,2507),(2261,2503,2507),(2262,2504,2507),(2263,2505,2507),(2264,2506,2507),(2265,2508,2517),(2266,2509,2517),(2267,2510,2517),(2268,2511,2517),(2269,2512,2517),(2270,2513,2517),(2271,2514,2517),(2272,2515,2517),(2273,2516,2517),(2274,2518,2524),(2275,2519,2524),(2276,2520,2524),(2277,2521,2524),(2278,2522,2524),(2279,2523,2524),(2280,2525,2533),(2281,2526,2533),(2282,2527,2533),(2283,2528,2533),(2284,2529,2533),(2285,2530,2533),(2286,2531,2533),(2287,2532,2533),(2288,2534,2542),(2289,2535,2542),(2290,2536,2542),(2291,2537,2542),(2292,2538,2542),(2293,2539,2542),(2294,2540,2542),(2295,2541,2542);
/*!40000 ALTER TABLE `catalog_product_super_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_website`
--

DROP TABLE IF EXISTS `catalog_product_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_website` (
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  PRIMARY KEY (`product_id`,`website_id`),
  KEY `CATALOG_PRODUCT_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CATALOG_PRODUCT_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_WS_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Website Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_website`
--

LOCK TABLES `catalog_product_website` WRITE;
/*!40000 ALTER TABLE `catalog_product_website` DISABLE KEYS */;
INSERT INTO `catalog_product_website` VALUES (1,1),(2,1),(3,1),(4,1),(5,1),(6,1),(7,1),(8,1),(9,1),(10,1),(11,1),(12,1),(15,1),(16,1),(17,1),(18,1),(19,1),(20,1),(22,1),(24,1),(25,1),(26,1),(29,1),(30,1),(31,1),(32,1),(33,1),(34,1),(35,1),(36,1),(38,1),(41,1),(42,1),(43,1),(44,1),(45,1),(46,1),(47,1),(48,1),(49,1),(50,1),(51,1),(53,1),(54,1),(55,1),(56,1),(57,1),(58,1),(59,1),(60,1),(61,1),(63,1),(64,1),(65,1),(66,1),(68,1),(69,1),(70,1),(71,1),(72,1),(73,1),(74,1),(75,1),(76,1),(77,1),(78,1),(79,1),(80,1),(81,1),(82,1),(83,1),(84,1),(85,1),(86,1),(87,1),(88,1),(89,1),(91,1),(92,1),(93,1),(95,1),(97,1),(98,1),(99,1),(100,1),(101,1),(102,1),(103,1),(104,1),(105,1),(106,1),(107,1),(108,1),(109,1),(110,1),(111,1),(112,1),(113,1),(114,1),(115,1),(116,1),(117,1),(118,1),(119,1),(120,1),(121,1),(122,1),(123,1),(124,1),(125,1),(126,1),(127,1),(128,1),(129,1),(130,1),(131,1),(132,1),(133,1),(134,1),(135,1),(136,1),(137,1),(138,1),(139,1),(140,1),(141,1),(142,1),(143,1),(144,1),(145,1),(146,1),(147,1),(148,1),(149,1),(150,1),(151,1),(152,1),(153,1),(154,1),(155,1),(156,1),(157,1),(158,1),(159,1),(160,1),(161,1),(162,1),(163,1),(164,1),(165,1),(166,1),(167,1),(168,1),(169,1),(170,1),(171,1),(172,1),(173,1),(174,1),(175,1),(176,1),(177,1),(178,1),(179,1),(180,1),(181,1),(182,1),(183,1),(184,1),(185,1),(186,1),(187,1),(188,1),(189,1),(190,1),(191,1),(192,1),(193,1),(194,1),(195,1),(196,1),(197,1),(198,1),(199,1),(200,1),(201,1),(202,1),(203,1),(204,1),(205,1),(206,1),(207,1),(208,1),(209,1),(210,1),(211,1),(212,1),(213,1),(214,1),(215,1),(216,1),(217,1),(218,1),(219,1),(220,1),(221,1),(222,1),(223,1),(224,1),(225,1),(226,1),(227,1),(228,1),(229,1),(230,1),(231,1),(232,1),(233,1),(234,1),(235,1),(236,1),(237,1),(238,1),(239,1),(240,1),(241,1),(242,1),(243,1),(244,1),(245,1),(246,1),(247,1),(248,1),(249,1),(250,1),(251,1),(252,1),(253,1),(254,1),(255,1),(256,1),(257,1),(258,1),(259,1),(260,1),(261,1),(262,1),(263,1),(264,1),(265,1),(266,1),(267,1),(268,1),(269,1),(270,1),(271,1),(272,1),(273,1),(274,1),(275,1),(276,1),(277,1),(278,1),(279,1),(280,1),(281,1),(282,1),(283,1),(284,1),(285,1),(286,1),(287,1),(288,1),(289,1),(290,1),(291,1),(292,1),(293,1),(294,1),(295,1),(296,1),(297,1),(298,1),(299,1),(300,1),(301,1),(302,1),(303,1),(304,1),(305,1),(306,1),(307,1),(308,1),(309,1),(310,1),(311,1),(312,1),(313,1),(314,1),(315,1),(316,1),(317,1),(318,1),(319,1),(320,1),(321,1),(322,1),(323,1),(324,1),(325,1),(326,1),(327,1),(328,1),(329,1),(330,1),(331,1),(332,1),(333,1),(334,1),(335,1),(336,1),(337,1),(338,1),(339,1),(340,1),(341,1),(342,1),(343,1),(344,1),(345,1),(346,1),(347,1),(348,1),(349,1),(350,1),(351,1),(352,1),(353,1),(354,1),(355,1),(356,1),(357,1),(358,1),(359,1),(360,1),(361,1),(362,1),(363,1),(364,1),(365,1),(366,1),(367,1),(368,1),(369,1),(370,1),(371,1),(372,1),(373,1),(374,1),(375,1),(376,1),(377,1),(378,1),(379,1),(380,1),(381,1),(382,1),(383,1),(384,1),(385,1),(386,1),(387,1),(388,1),(389,1),(390,1),(391,1),(392,1),(393,1),(394,1),(395,1),(396,1),(397,1),(398,1),(399,1),(400,1),(401,1),(402,1),(403,1),(404,1),(405,1),(406,1),(407,1),(408,1),(409,1),(410,1),(411,1),(412,1),(413,1),(414,1),(415,1),(416,1),(417,1),(418,1),(419,1),(420,1),(421,1),(422,1),(423,1),(424,1),(425,1),(426,1),(427,1),(428,1),(429,1),(430,1),(431,1),(432,1),(433,1),(434,1),(435,1),(436,1),(437,1),(438,1),(439,1),(440,1),(441,1),(442,1),(443,1),(444,1),(445,1),(446,1),(447,1),(448,1),(449,1),(450,1),(451,1),(452,1),(453,1),(454,1),(455,1),(456,1),(457,1),(458,1),(459,1),(460,1),(461,1),(462,1),(463,1),(464,1),(465,1),(466,1),(467,1),(468,1),(469,1),(470,1),(471,1),(472,1),(473,1),(474,1),(475,1),(476,1),(477,1),(478,1),(479,1),(480,1),(481,1),(482,1),(483,1),(484,1),(485,1),(486,1),(487,1),(488,1),(489,1),(490,1),(491,1),(492,1),(493,1),(494,1),(495,1),(496,1),(497,1),(498,1),(499,1),(500,1),(501,1),(502,1),(503,1),(504,1),(505,1),(506,1),(507,1),(508,1),(509,1),(510,1),(511,1),(512,1),(513,1),(514,1),(515,1),(516,1),(517,1),(518,1),(519,1),(520,1),(521,1),(522,1),(523,1),(524,1),(525,1),(526,1),(527,1),(528,1),(529,1),(530,1),(531,1),(532,1),(533,1),(534,1),(535,1),(536,1),(537,1),(538,1),(539,1),(540,1),(541,1),(542,1),(543,1),(544,1),(545,1),(546,1),(547,1),(548,1),(549,1),(550,1),(551,1),(552,1),(553,1),(554,1),(555,1),(556,1),(557,1),(558,1),(559,1),(560,1),(561,1),(562,1),(563,1),(564,1),(565,1),(566,1),(567,1),(568,1),(569,1),(570,1),(571,1),(572,1),(573,1),(574,1),(575,1),(576,1),(577,1),(578,1),(579,1),(580,1),(581,1),(582,1),(583,1),(584,1),(585,1),(586,1),(587,1),(588,1),(589,1),(590,1),(591,1),(592,1),(593,1),(594,1),(595,1),(596,1),(597,1),(598,1),(599,1),(600,1),(601,1),(602,1),(603,1),(604,1),(605,1),(606,1),(607,1),(608,1),(609,1),(610,1),(611,1),(612,1),(613,1),(614,1),(615,1),(616,1),(617,1),(618,1),(619,1),(620,1),(621,1),(622,1),(623,1),(624,1),(625,1),(626,1),(627,1),(628,1),(629,1),(630,1),(631,1),(632,1),(633,1),(634,1),(635,1),(636,1),(637,1),(638,1),(639,1),(640,1),(641,1),(642,1),(643,1),(644,1),(645,1),(646,1),(647,1),(648,1),(649,1),(650,1),(651,1),(652,1),(653,1),(654,1),(655,1),(656,1),(657,1),(658,1),(659,1),(660,1),(661,1),(662,1),(663,1),(664,1),(665,1),(666,1),(667,1),(668,1),(669,1),(670,1),(671,1),(672,1),(673,1),(674,1),(675,1),(676,1),(677,1),(678,1),(679,1),(680,1),(681,1),(682,1),(683,1),(684,1),(685,1),(686,1),(687,1),(688,1),(689,1),(690,1),(691,1),(692,1),(693,1),(694,1),(695,1),(696,1),(697,1),(698,1),(699,1),(700,1),(701,1),(702,1),(703,1),(704,1),(705,1),(706,1),(707,1),(708,1),(709,1),(710,1),(711,1),(712,1),(713,1),(714,1),(715,1),(716,1),(717,1),(718,1),(719,1),(720,1),(721,1),(722,1),(723,1),(724,1),(725,1),(726,1),(727,1),(728,1),(729,1),(730,1),(731,1),(732,1),(733,1),(734,1),(735,1),(736,1),(737,1),(738,1),(739,1),(740,1),(741,1),(742,1),(743,1),(744,1),(745,1),(746,1),(747,1),(748,1),(749,1),(750,1),(751,1),(752,1),(753,1),(754,1),(755,1),(756,1),(757,1),(758,1),(759,1),(760,1),(761,1),(762,1),(763,1),(764,1),(765,1),(766,1),(767,1),(768,1),(769,1),(770,1),(771,1),(772,1),(773,1),(774,1),(775,1),(776,1),(777,1),(778,1),(779,1),(780,1),(781,1),(782,1),(783,1),(784,1),(785,1),(786,1),(787,1),(788,1),(789,1),(790,1),(791,1),(792,1),(793,1),(794,1),(795,1),(796,1),(797,1),(798,1),(799,1),(800,1),(801,1),(802,1),(803,1),(804,1),(805,1),(806,1),(807,1),(808,1),(809,1),(810,1),(811,1),(812,1),(813,1),(814,1),(815,1),(816,1),(817,1),(818,1),(819,1),(820,1),(821,1),(822,1),(823,1),(824,1),(825,1),(826,1),(827,1),(828,1),(829,1),(830,1),(831,1),(832,1),(833,1),(834,1),(835,1),(836,1),(837,1),(838,1),(839,1),(840,1),(841,1),(842,1),(843,1),(844,1),(845,1),(846,1),(847,1),(848,1),(849,1),(850,1),(851,1),(852,1),(853,1),(854,1),(855,1),(856,1),(857,1),(858,1),(859,1),(860,1),(861,1),(862,1),(863,1),(864,1),(865,1),(866,1),(867,1),(868,1),(869,1),(870,1),(871,1),(872,1),(873,1),(874,1),(875,1),(876,1),(877,1),(878,1),(879,1),(880,1),(881,1),(882,1),(883,1),(884,1),(885,1),(886,1),(887,1),(888,1),(889,1),(890,1),(891,1),(892,1),(893,1),(894,1),(895,1),(896,1),(897,1),(898,1),(899,1),(900,1),(901,1),(902,1),(903,1),(904,1),(905,1),(906,1),(907,1),(908,1),(909,1),(910,1),(911,1),(912,1),(913,1),(914,1),(915,1),(924,1),(925,1),(926,1),(927,1),(928,1),(929,1),(930,1),(931,1),(932,1),(933,1),(934,1),(935,1),(936,1),(937,1),(938,1),(939,1),(940,1),(941,1),(942,1),(943,1),(944,1),(945,1),(946,1),(947,1),(948,1),(949,1),(950,1),(951,1),(952,1),(953,1),(954,1),(955,1),(956,1),(957,1),(958,1),(959,1),(972,1),(973,1),(974,1),(975,1),(976,1),(977,1),(978,1),(979,1),(980,1),(981,1),(982,1),(983,1),(984,1),(985,1),(986,1),(987,1),(988,1),(989,1),(990,1),(991,1),(992,1),(993,1),(994,1),(995,1),(996,1),(997,1),(998,1),(999,1),(1000,1),(1001,1),(1002,1),(1003,1),(1004,1),(1005,1),(1006,1),(1007,1),(1008,1),(1009,1),(1010,1),(1011,1),(1012,1),(1013,1),(1014,1),(1015,1),(1016,1),(1017,1),(1018,1),(1019,1),(1020,1),(1021,1),(1022,1),(1023,1),(1024,1),(1025,1),(1026,1),(1027,1),(1028,1),(1029,1),(1030,1),(1031,1),(1032,1),(1033,1),(1034,1),(1035,1),(1036,1),(1037,1),(1038,1),(1039,1),(1040,1),(1041,1),(1042,1),(1043,1),(1044,1),(1045,1),(1046,1),(1047,1),(1048,1),(1049,1),(1050,1),(1051,1),(1052,1),(1053,1),(1054,1),(1055,1),(1056,1),(1057,1),(1058,1),(1059,1),(1060,1),(1061,1),(1062,1),(1063,1),(1064,1),(1065,1),(1066,1),(1067,1),(1068,1),(1069,1),(1070,1),(1071,1),(1072,1),(1073,1),(1074,1),(1075,1),(1076,1),(1077,1),(1078,1),(1079,1),(1080,1),(1081,1),(1082,1),(1083,1),(1084,1),(1085,1),(1086,1),(1087,1),(1088,1),(1089,1),(1090,1),(1091,1),(1092,1),(1093,1),(1094,1),(1095,1),(1096,1),(1097,1),(1098,1),(1099,1),(1100,1),(1101,1),(1102,1),(1103,1),(1104,1),(1105,1),(1106,1),(1107,1),(1108,1),(1109,1),(1110,1),(1111,1),(1112,1),(1113,1),(1114,1),(1115,1),(1116,1),(1117,1),(1118,1),(1119,1),(1120,1),(1121,1),(1122,1),(1123,1),(1124,1),(1125,1),(1126,1),(1127,1),(1128,1),(1129,1),(1130,1),(1131,1),(1132,1),(1133,1),(1134,1),(1135,1),(1136,1),(1137,1),(1138,1),(1139,1),(1140,1),(1141,1),(1142,1),(1143,1),(1144,1),(1145,1),(1146,1),(1147,1),(1148,1),(1149,1),(1150,1),(1151,1),(1152,1),(1153,1),(1154,1),(1155,1),(1156,1),(1157,1),(1158,1),(1159,1),(1160,1),(1161,1),(1162,1),(1163,1),(1164,1),(1165,1),(1166,1),(1167,1),(1168,1),(1169,1),(1170,1),(1171,1),(1172,1),(1173,1),(1174,1),(1175,1),(1176,1),(1177,1),(1178,1),(1179,1),(1180,1),(1181,1),(1182,1),(1183,1),(1184,1),(1185,1),(1186,1),(1187,1),(1188,1),(1189,1),(1190,1),(1191,1),(1192,1),(1193,1),(1194,1),(1195,1),(1196,1),(1197,1),(1198,1),(1199,1),(1200,1),(1201,1),(1202,1),(1203,1),(1204,1),(1205,1),(1206,1),(1207,1),(1208,1),(1209,1),(1210,1),(1211,1),(1212,1),(1213,1),(1214,1),(1215,1),(1216,1),(1217,1),(1218,1),(1219,1),(1220,1),(1221,1),(1222,1),(1223,1),(1224,1),(1225,1),(1226,1),(1227,1),(1228,1),(1229,1),(1230,1),(1231,1),(1232,1),(1233,1),(1234,1),(1235,1),(1236,1),(1237,1),(1238,1),(1239,1),(1240,1),(1241,1),(1242,1),(1243,1),(1244,1),(1245,1),(1246,1),(1247,1),(1248,1),(1249,1),(1250,1),(1251,1),(1252,1),(1253,1),(1254,1),(1255,1),(1256,1),(1257,1),(1258,1),(1259,1),(1260,1),(1261,1),(1262,1),(1263,1),(1264,1),(1265,1),(1266,1),(1267,1),(1268,1),(1269,1),(1270,1),(1271,1),(1272,1),(1273,1),(1274,1),(1275,1),(1276,1),(1277,1),(1278,1),(1279,1),(1280,1),(1281,1),(1282,1),(1283,1),(1284,1),(1285,1),(1286,1),(1287,1),(1288,1),(1289,1),(1290,1),(1291,1),(1292,1),(1293,1),(1294,1),(1295,1),(1296,1),(1297,1),(1298,1),(1299,1),(1300,1),(1301,1),(1302,1),(1303,1),(1304,1),(1305,1),(1306,1),(1307,1),(1308,1),(1309,1),(1310,1),(1311,1),(1312,1),(1313,1),(1314,1),(1315,1),(1316,1),(1317,1),(1318,1),(1319,1),(1320,1),(1321,1),(1322,1),(1323,1),(1324,1),(1325,1),(1326,1),(1327,1),(1328,1),(1329,1),(1330,1),(1331,1),(1332,1),(1333,1),(1334,1),(1335,1),(1336,1),(1337,1),(1338,1),(1339,1),(1340,1),(1341,1),(1343,1),(1344,1),(1345,1),(1346,1),(1347,1),(1348,1),(1349,1),(1350,1),(1351,1),(1352,1),(1353,1),(1354,1),(1355,1),(1356,1),(1357,1),(1358,1),(1359,1),(1360,1),(1361,1),(1362,1),(1363,1),(1364,1),(1365,1),(1366,1),(1367,1),(1368,1),(1369,1),(1370,1),(1371,1),(1372,1),(1373,1),(1374,1),(1375,1),(1376,1),(1377,1),(1378,1),(1379,1),(1380,1),(1381,1),(1383,1),(1384,1),(1385,1),(1386,1),(1387,1),(1388,1),(1389,1),(1390,1),(1391,1),(1392,1),(1393,1),(1394,1),(1395,1),(1396,1),(1397,1),(1398,1),(1399,1),(1400,1),(1401,1),(1402,1),(1403,1),(1404,1),(1405,1),(1406,1),(1407,1),(1408,1),(1409,1),(1410,1),(1411,1),(1412,1),(1413,1),(1414,1),(1415,1),(1416,1),(1417,1),(1418,1),(1419,1),(1420,1),(1421,1),(1422,1),(1423,1),(1424,1),(1425,1),(1426,1),(1427,1),(1428,1),(1429,1),(1430,1),(1431,1),(1432,1),(1433,1),(1434,1),(1435,1),(1436,1),(1437,1),(1438,1),(1439,1),(1440,1),(1441,1),(1442,1),(1443,1),(1444,1),(1445,1),(1446,1),(1447,1),(1448,1),(1449,1),(1450,1),(1451,1),(1452,1),(1453,1),(1454,1),(1455,1),(1456,1),(1457,1),(1458,1),(1459,1),(1460,1),(1461,1),(1462,1),(1463,1),(1464,1),(1465,1),(1466,1),(1467,1),(1468,1),(1469,1),(1470,1),(1471,1),(1472,1),(1473,1),(1474,1),(1475,1),(1476,1),(1477,1),(1478,1),(1479,1),(1480,1),(1481,1),(1482,1),(1483,1),(1484,1),(1485,1),(1486,1),(1487,1),(1488,1),(1489,1),(1490,1),(1491,1),(1492,1),(1493,1),(1494,1),(1495,1),(1496,1),(1497,1),(1498,1),(1499,1),(1500,1),(1501,1),(1502,1),(1503,1),(1504,1),(1505,1),(1506,1),(1507,1),(1508,1),(1509,1),(1510,1),(1511,1),(1512,1),(1513,1),(1514,1),(1515,1),(1516,1),(1517,1),(1518,1),(1519,1),(1520,1),(1521,1),(1522,1),(1523,1),(1524,1),(1525,1),(1526,1),(1527,1),(1528,1),(1529,1),(1530,1),(1531,1),(1532,1),(1533,1),(1534,1),(1535,1),(1536,1),(1537,1),(1538,1),(1539,1),(1540,1),(1541,1),(1542,1),(1543,1),(1544,1),(1545,1),(1546,1),(1547,1),(1548,1),(1549,1),(1550,1),(1551,1),(1552,1),(1553,1),(1554,1),(1555,1),(1556,1),(1557,1),(1558,1),(1559,1),(1560,1),(1561,1),(1562,1),(1563,1),(1564,1),(1565,1),(1566,1),(1567,1),(1568,1),(1569,1),(1570,1),(1571,1),(1572,1),(1573,1),(1574,1),(1575,1),(1576,1),(1577,1),(1578,1),(1579,1),(1580,1),(1581,1),(1582,1),(1583,1),(1584,1),(1585,1),(1586,1),(1587,1),(1588,1),(1589,1),(1590,1),(1591,1),(1592,1),(1593,1),(1594,1),(1595,1),(1596,1),(1597,1),(1598,1),(1599,1),(1600,1),(1601,1),(1602,1),(1603,1),(1604,1),(1605,1),(1606,1),(1607,1),(1608,1),(1609,1),(1610,1),(1611,1),(1612,1),(1613,1),(1614,1),(1615,1),(1616,1),(1617,1),(1618,1),(1619,1),(1620,1),(1621,1),(1622,1),(1623,1),(1624,1),(1625,1),(1626,1),(1627,1),(1628,1),(1629,1),(1630,1),(1631,1),(1632,1),(1633,1),(1634,1),(1635,1),(1636,1),(1637,1),(1638,1),(1639,1),(1640,1),(1641,1),(1642,1),(1643,1),(1644,1),(1645,1),(1646,1),(1647,1),(1648,1),(1649,1),(1650,1),(1651,1),(1652,1),(1653,1),(1654,1),(1655,1),(1656,1),(1657,1),(1658,1),(1659,1),(1660,1),(1661,1),(1662,1),(1663,1),(1664,1),(1665,1),(1666,1),(1667,1),(1668,1),(1669,1),(1670,1),(1671,1),(1672,1),(1673,1),(1674,1),(1675,1),(1676,1),(1677,1),(1678,1),(1679,1),(1680,1),(1681,1),(1682,1),(1683,1),(1684,1),(1685,1),(1686,1),(1687,1),(1688,1),(1689,1),(1690,1),(1692,1),(1693,1),(1694,1),(1695,1),(1696,1),(1697,1),(1698,1),(1699,1),(1700,1),(1701,1),(1702,1),(1703,1),(1704,1),(1705,1),(1706,1),(1707,1),(1708,1),(1709,1),(1710,1),(1711,1),(1712,1),(1713,1),(1714,1),(1715,1),(1716,1),(1717,1),(1718,1),(1719,1),(1720,1),(1721,1),(1722,1),(1723,1),(1724,1),(1725,1),(1726,1),(1727,1),(1728,1),(1729,1),(1730,1),(1731,1),(1732,1),(1733,1),(1734,1),(1735,1),(1736,1),(1737,1),(1738,1),(1739,1),(1740,1),(1741,1),(1742,1),(1743,1),(1744,1),(1745,1),(1746,1),(1747,1),(1748,1),(1749,1),(1750,1),(1751,1),(1752,1),(1753,1),(1754,1),(1755,1),(1756,1),(1757,1),(1758,1),(1759,1),(1760,1),(1761,1),(1762,1),(1763,1),(1764,1),(1765,1),(1766,1),(1767,1),(1768,1),(1769,1),(1770,1),(1771,1),(1772,1),(1773,1),(1774,1),(1775,1),(1776,1),(1777,1),(1778,1),(1779,1),(1780,1),(1781,1),(1782,1),(1783,1),(1784,1),(1785,1),(1786,1),(1787,1),(1788,1),(1789,1),(1790,1),(1791,1),(1792,1),(1793,1),(1794,1),(1795,1),(1796,1),(1797,1),(1798,1),(1799,1),(1800,1),(1801,1),(1802,1),(1803,1),(1804,1),(1805,1),(1806,1),(1807,1),(1808,1),(1809,1),(1810,1),(1811,1),(1812,1),(1813,1),(1814,1),(1815,1),(1816,1),(1817,1),(1834,1),(1835,1),(1836,1),(1837,1),(1838,1),(1839,1),(1840,1),(1841,1),(1842,1),(1843,1),(1844,1),(1845,1),(1846,1),(1847,1),(1848,1),(1849,1),(1850,1),(1851,1),(1852,1),(1853,1),(1854,1),(1855,1),(1856,1),(1857,1),(1858,1),(1859,1),(1860,1),(1861,1),(1862,1),(1863,1),(1864,1),(1865,1),(1866,1),(1867,1),(1868,1),(1869,1),(1870,1),(1871,1),(1872,1),(1873,1),(1874,1),(1875,1),(1876,1),(1877,1),(1878,1),(1879,1),(1880,1),(1881,1),(1882,1),(1883,1),(1884,1),(1885,1),(1886,1),(1887,1),(1888,1),(1889,1),(1890,1),(1891,1),(1892,1),(1893,1),(1894,1),(1895,1),(1896,1),(1897,1),(1898,1),(1899,1),(1900,1),(1901,1),(1902,1),(1903,1),(1904,1),(1905,1),(1906,1),(1907,1),(1908,1),(1909,1),(1910,1),(1911,1),(1912,1),(1913,1),(1914,1),(1915,1),(1916,1),(1917,1),(1918,1),(1919,1),(1920,1),(1928,1),(1929,1),(1930,1),(1931,1),(1932,1),(1933,1),(1934,1),(1935,1),(1936,1),(1937,1),(1938,1),(1939,1),(1940,1),(1941,1),(1942,1),(1943,1),(1944,1),(1945,1),(1946,1),(1947,1),(1948,1),(1949,1),(1950,1),(1951,1),(1952,1),(1953,1),(1954,1),(1955,1),(1956,1),(1957,1),(1958,1),(1959,1),(1960,1),(1961,1),(1962,1),(1963,1),(1964,1),(1965,1),(1966,1),(1967,1),(1968,1),(1969,1),(1970,1),(1971,1),(1972,1),(1973,1),(1974,1),(1975,1),(1976,1),(1977,1),(1978,1),(1979,1),(1980,1),(1981,1),(1982,1),(1983,1),(1984,1),(1985,1),(1986,1),(1987,1),(1988,1),(1989,1),(1990,1),(1991,1),(1992,1),(1993,1),(1994,1),(1995,1),(1996,1),(1997,1),(1998,1),(1999,1),(2000,1),(2001,1),(2002,1),(2003,1),(2004,1),(2005,1),(2006,1),(2007,1),(2008,1),(2009,1),(2010,1),(2011,1),(2012,1),(2013,1),(2014,1),(2015,1),(2016,1),(2017,1),(2018,1),(2019,1),(2020,1),(2021,1),(2022,1),(2023,1),(2024,1),(2025,1),(2026,1),(2027,1),(2028,1),(2029,1),(2030,1),(2031,1),(2032,1),(2042,1),(2043,1),(2044,1),(2045,1),(2046,1),(2047,1),(2048,1),(2049,1),(2050,1),(2051,1),(2052,1),(2053,1),(2054,1),(2055,1),(2056,1),(2057,1),(2058,1),(2059,1),(2060,1),(2061,1),(2062,1),(2063,1),(2064,1),(2065,1),(2066,1),(2067,1),(2068,1),(2069,1),(2070,1),(2071,1),(2072,1),(2073,1),(2074,1),(2075,1),(2076,1),(2077,1),(2078,1),(2079,1),(2080,1),(2081,1),(2082,1),(2083,1),(2084,1),(2085,1),(2086,1),(2087,1),(2088,1),(2089,1),(2090,1),(2091,1),(2092,1),(2093,1),(2094,1),(2095,1),(2096,1),(2097,1),(2098,1),(2099,1),(2100,1),(2101,1),(2102,1),(2103,1),(2104,1),(2105,1),(2106,1),(2107,1),(2108,1),(2109,1),(2110,1),(2111,1),(2112,1),(2113,1),(2114,1),(2115,1),(2116,1),(2117,1),(2118,1),(2119,1),(2120,1),(2121,1),(2122,1),(2123,1),(2124,1),(2125,1),(2126,1),(2127,1),(2128,1),(2129,1),(2130,1),(2131,1),(2132,1),(2133,1),(2134,1),(2135,1),(2136,1),(2137,1),(2138,1),(2139,1),(2140,1),(2141,1),(2142,1),(2143,1),(2144,1),(2145,1),(2146,1),(2147,1),(2148,1),(2149,1),(2150,1),(2151,1),(2152,1),(2153,1),(2154,1),(2155,1),(2156,1),(2157,1),(2158,1),(2159,1),(2160,1),(2161,1),(2162,1),(2163,1),(2164,1),(2165,1),(2166,1),(2167,1),(2168,1),(2169,1),(2170,1),(2171,1),(2172,1),(2173,1),(2174,1),(2175,1),(2176,1),(2177,1),(2178,1),(2179,1),(2180,1),(2181,1),(2182,1),(2183,1),(2184,1),(2185,1),(2186,1),(2187,1),(2188,1),(2189,1),(2190,1),(2191,1),(2192,1),(2193,1),(2194,1),(2195,1),(2196,1),(2197,1),(2198,1),(2199,1),(2200,1),(2201,1),(2202,1),(2203,1),(2204,1),(2205,1),(2206,1),(2207,1),(2208,1),(2209,1),(2210,1),(2211,1),(2212,1),(2213,1),(2214,1),(2215,1),(2216,1),(2217,1),(2218,1),(2219,1),(2220,1),(2221,1),(2222,1),(2223,1),(2224,1),(2225,1),(2226,1),(2227,1),(2228,1),(2229,1),(2230,1),(2231,1),(2232,1),(2233,1),(2234,1),(2235,1),(2236,1),(2237,1),(2238,1),(2239,1),(2240,1),(2241,1),(2242,1),(2243,1),(2244,1),(2245,1),(2246,1),(2247,1),(2248,1),(2249,1),(2250,1),(2251,1),(2252,1),(2253,1),(2254,1),(2255,1),(2256,1),(2257,1),(2258,1),(2259,1),(2260,1),(2261,1),(2262,1),(2263,1),(2264,1),(2265,1),(2266,1),(2267,1),(2268,1),(2278,1),(2279,1),(2280,1),(2281,1),(2282,1),(2283,1),(2284,1),(2285,1),(2286,1),(2287,1),(2288,1),(2289,1),(2290,1),(2291,1),(2292,1),(2293,1),(2294,1),(2295,1),(2296,1),(2297,1),(2298,1),(2299,1),(2300,1),(2301,1),(2302,1),(2303,1),(2304,1),(2305,1),(2306,1),(2307,1),(2308,1),(2309,1),(2310,1),(2311,1),(2312,1),(2313,1),(2314,1),(2315,1),(2316,1),(2317,1),(2318,1),(2319,1),(2320,1),(2330,1),(2331,1),(2332,1),(2333,1),(2334,1),(2335,1),(2336,1),(2337,1),(2338,1),(2339,1),(2340,1),(2341,1),(2342,1),(2343,1),(2344,1),(2345,1),(2346,1),(2347,1),(2348,1),(2349,1),(2350,1),(2351,1),(2352,1),(2353,1),(2354,1),(2355,1),(2356,1),(2357,1),(2358,1),(2359,1),(2360,1),(2361,1),(2362,1),(2363,1),(2364,1),(2365,1),(2366,1),(2367,1),(2368,1),(2369,1),(2370,1),(2371,1),(2372,1),(2373,1),(2374,1),(2375,1),(2376,1),(2377,1),(2378,1),(2379,1),(2380,1),(2381,1),(2382,1),(2383,1),(2384,1),(2385,1),(2386,1),(2387,1),(2388,1),(2389,1),(2390,1),(2391,1),(2392,1),(2393,1),(2394,1),(2395,1),(2396,1),(2397,1),(2398,1),(2399,1),(2400,1),(2401,1),(2402,1),(2403,1),(2404,1),(2405,1),(2406,1),(2407,1),(2408,1),(2409,1),(2410,1),(2411,1),(2412,1),(2413,1),(2414,1),(2415,1),(2416,1),(2417,1),(2418,1),(2419,1),(2420,1),(2421,1),(2422,1),(2423,1),(2424,1),(2425,1),(2426,1),(2427,1),(2428,1),(2429,1),(2430,1),(2431,1),(2432,1),(2433,1),(2434,1),(2435,1),(2436,1),(2437,1),(2438,1),(2439,1),(2440,1),(2441,1),(2442,1),(2443,1),(2444,1),(2445,1),(2446,1),(2447,1),(2448,1),(2449,1),(2450,1),(2451,1),(2452,1),(2453,1),(2454,1),(2455,1),(2456,1),(2457,1),(2458,1),(2459,1),(2460,1),(2461,1),(2462,1),(2463,1),(2464,1),(2465,1),(2466,1),(2467,1),(2468,1),(2469,1),(2470,1),(2471,1),(2472,1),(2473,1),(2474,1),(2475,1),(2476,1),(2477,1),(2478,1),(2479,1),(2480,1),(2481,1),(2482,1),(2483,1),(2484,1),(2485,1),(2486,1),(2487,1),(2488,1),(2489,1),(2490,1),(2491,1),(2492,1),(2493,1),(2494,1),(2495,1),(2496,1),(2497,1),(2498,1),(2499,1),(2500,1),(2501,1),(2502,1),(2503,1),(2504,1),(2505,1),(2506,1),(2507,1),(2508,1),(2509,1),(2510,1),(2511,1),(2512,1),(2513,1),(2514,1),(2515,1),(2516,1),(2517,1),(2518,1),(2519,1),(2520,1),(2521,1),(2522,1),(2523,1),(2524,1),(2525,1),(2526,1),(2527,1),(2528,1),(2529,1),(2530,1),(2531,1),(2532,1),(2533,1),(2534,1),(2535,1),(2536,1),(2537,1),(2538,1),(2539,1),(2540,1),(2541,1),(2542,1);
/*!40000 ALTER TABLE `catalog_product_website` ENABLE KEYS */;
UNLOCK TABLES;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_website_after_insert AFTER INSERT ON catalog_product_website FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (NEW.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_website_after_update AFTER UPDATE ON catalog_product_website FOR EACH ROW
BEGIN
IF (NEW.`product_id` <=> OLD.`product_id` OR NEW.`website_id` <=> OLD.`website_id`) THEN INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_catalog_product_website_after_delete AFTER DELETE ON catalog_product_website FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_remove_cl` (`entity_id`) VALUES (OLD.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

--
-- Table structure for table `catalog_url_rewrite_product_category`
--

DROP TABLE IF EXISTS `catalog_url_rewrite_product_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_url_rewrite_product_category` (
  `url_rewrite_id` int(10) unsigned NOT NULL COMMENT 'url_rewrite_id',
  `category_id` int(10) unsigned NOT NULL COMMENT 'category_id',
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_id',
  KEY `CAT_URL_REWRITE_PRD_CTGR_PRD_ID_CAT_PRD_ENTT_ENTT_ID` (`product_id`),
  KEY `FK_BB79E64705D7F17FE181F23144528FC8` (`url_rewrite_id`),
  KEY `CATALOG_URL_REWRITE_PRODUCT_CATEGORY_CATEGORY_ID_PRODUCT_ID` (`category_id`,`product_id`),
  CONSTRAINT `CAT_URL_REWRITE_PRD_CTGR_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_URL_REWRITE_PRD_CTGR_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_BB79E64705D7F17FE181F23144528FC8` FOREIGN KEY (`url_rewrite_id`) REFERENCES `url_rewrite` (`url_rewrite_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='url_rewrite_relation';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_url_rewrite_product_category`
--

LOCK TABLES `catalog_url_rewrite_product_category` WRITE;
/*!40000 ALTER TABLE `catalog_url_rewrite_product_category` DISABLE KEYS */;
INSERT INTO `catalog_url_rewrite_product_category` VALUES (1714,20,1),(1715,22,1),(1720,2,1),(1722,20,2),(1723,22,2),(1728,2,2),(1730,20,3),(1731,24,3),(1735,2,3),(1737,20,4),(1738,24,4),(1742,2,4),(1744,20,5),(1745,24,5),(1749,2,5),(1751,20,6),(1752,24,6),(1756,2,6),(1758,20,8),(1759,24,8),(1763,2,8),(1765,20,15),(1766,24,15),(1770,2,15),(1772,20,16),(1773,24,16),(1777,2,16),(1779,20,20),(1780,24,20),(1784,2,20),(1786,20,25),(1787,24,25),(1791,2,25),(1793,20,29),(1794,24,29),(1798,2,29),(1800,20,34),(1801,25,34),(1805,2,34),(1807,20,35),(1808,24,35),(1812,2,35),(1814,20,36),(1815,25,36),(1819,2,36),(1821,20,38),(1822,25,38),(1826,2,38),(1828,20,42),(1829,25,42),(1833,2,42),(1835,20,43),(1836,24,43),(1840,2,43),(1842,20,46),(1843,25,46),(1847,2,46),(1849,20,47),(1850,25,47),(1854,2,47),(1856,20,49),(1857,25,49),(1861,2,49),(1863,20,51),(1864,25,51),(1868,2,51),(1870,20,53),(1871,25,53),(1875,2,53),(1877,20,55),(1878,25,55),(1882,2,55),(1884,20,63),(1885,26,63),(1889,2,63),(1891,20,66),(1892,26,66),(1896,2,66),(1898,20,68),(1899,26,68),(1903,2,68),(1905,20,71),(1906,26,71),(1910,2,71),(1912,20,76),(1913,26,76),(1917,2,76),(1919,20,78),(1920,25,78),(1924,2,78),(1926,20,79),(1927,26,79),(1931,2,79),(1933,20,83),(1934,23,83),(1939,2,83),(1941,20,85),(1942,26,85),(1946,2,85),(1948,20,87),(1949,23,87),(1954,2,87),(1956,20,88),(1957,26,88),(1961,2,88),(1963,20,91),(1964,23,91),(1969,2,91),(1971,20,92),(1972,23,92),(1977,2,92),(1979,20,93),(1980,23,93),(1985,2,93),(1987,20,95),(1988,23,95),(1993,2,95),(1995,20,97),(1996,26,97),(2000,2,97),(2002,20,98),(2003,23,98),(2008,2,98),(2010,20,99),(2011,26,99),(2015,2,99),(2017,20,100),(2018,23,100),(2023,2,100),(2025,20,101),(2026,22,101),(2031,2,101),(2033,20,102),(2034,22,102),(2039,2,102),(2041,20,103),(2042,22,103),(2047,2,103),(2049,20,104),(2050,22,104),(2055,2,104),(2076,2,110),(2071,2,109),(2073,27,110),(2068,27,109),(2074,28,110),(2069,28,109),(2086,2,105),(2093,2,106),(2100,2,107),(2107,2,108),(2081,27,105),(2088,27,106),(2095,27,107),(2102,27,108),(2082,29,105),(2089,29,106),(2096,29,107),(2103,29,108),(2124,2,50),(2187,2,81),(2131,2,56),(2138,2,59),(2145,2,64),(2152,2,70),(2159,2,72),(2166,2,73),(2173,2,77),(2180,2,80),(2117,2,41),(2119,27,50),(2182,27,81),(2126,27,56),(2133,27,59),(2140,27,64),(2147,27,70),(2154,27,72),(2161,27,73),(2168,27,77),(2175,27,80),(2112,27,41),(2120,30,50),(2183,30,81),(2127,30,56),(2134,30,59),(2141,30,64),(2148,30,70),(2155,30,72),(2162,30,73),(2169,30,77),(2176,30,80),(2113,30,41),(2197,2,7),(2211,2,10),(2232,2,17),(2218,2,11),(2253,2,26),(2225,2,12),(2239,2,19),(2204,2,9),(2246,2,24),(2192,27,7),(2206,27,10),(2227,27,17),(2213,27,11),(2248,27,26),(2220,27,12),(2234,27,19),(2199,27,9),(2193,31,7),(2207,31,10),(2228,31,17),(2214,31,11),(2249,31,26),(2221,31,12),(2235,31,19),(2200,31,9),(2242,31,24),(2241,27,24),(2284,2,57),(2263,2,18),(2270,2,22),(2277,2,30),(2279,27,57),(2258,27,18),(2265,27,22),(2272,27,30),(2280,32,57),(2259,32,18),(2266,32,22),(2273,32,30),(2301,2,60),(2308,2,69),(2315,2,75),(2322,2,82),(2329,2,84),(2336,2,86),(2343,2,89),(2294,2,54),(2296,27,60),(2303,27,69),(2310,27,75),(2317,27,82),(2324,27,84),(2331,27,86),(2338,27,89),(2289,27,54),(2297,33,60),(2304,33,69),(2311,33,75),(2318,33,82),(2325,33,84),(2332,33,86),(2339,33,89),(2290,33,54),(2401,2,112),(2399,27,112),(2400,28,112),(2405,2,113),(2403,27,113),(2404,28,113),(2413,2,115),(2411,27,115),(2412,28,115),(2418,2,117),(2416,27,117),(2417,28,117),(2562,2,120),(2560,27,120),(2561,28,120),(2566,2,119),(2564,27,119),(2565,28,119),(2570,2,123),(2568,27,123),(2569,28,123),(2574,2,122),(2572,27,122),(2573,28,122),(2578,2,45),(2576,27,45),(2577,32,45),(2582,2,33),(2580,27,33),(2581,32,33),(2625,2,31),(2621,36,31),(2620,35,31),(2632,2,32),(2628,36,32),(2627,35,32),(2639,2,48),(2635,36,48),(2634,35,48),(2646,2,58),(2642,36,58),(2641,35,58),(2653,2,61),(2649,36,61),(2648,35,61),(2660,2,65),(2656,36,65),(2655,35,65),(2667,2,74),(2663,36,74),(2662,35,74),(2674,2,111),(2670,38,111),(2669,35,111),(2680,2,114),(2677,38,114),(2676,35,114),(2687,2,118),(2684,38,118),(2683,35,118),(2693,2,121),(2690,38,121),(2689,35,121),(2699,2,124),(2696,37,124),(2695,35,124),(2703,2,125),(2702,37,125),(2701,35,125),(2707,2,126),(2706,37,126),(2705,35,126),(2713,2,127),(2710,37,127),(2709,35,127),(2717,2,128),(2716,37,128),(2715,35,128),(2721,2,523),(2720,38,523),(2719,35,523),(2725,2,545),(2724,37,545),(2723,35,545),(2744,2,1351),(2740,23,1351),(2739,20,1351),(2749,2,1413),(2748,24,1413),(2747,20,1413),(2753,2,1455),(2752,24,1455),(2751,20,1455),(2757,2,1464),(2756,23,1464),(2755,20,1464),(2761,2,1495),(2760,24,1495),(2759,20,1495),(2765,2,1526),(2764,24,1526),(2763,20,1526),(2769,2,1535),(2768,23,1535),(2767,20,1535),(2773,2,1561),(2772,24,1561),(2771,20,1561),(2777,2,1568),(2776,22,1568),(2775,20,1568),(2781,2,1583),(2780,23,1583),(2779,20,1583),(2785,2,1596),(2784,25,1596),(2783,20,1596),(2789,2,1597),(2788,24,1597),(2787,20,1597),(2793,2,1604),(2792,26,1604),(2791,20,1604),(2797,2,1630),(2796,26,1630),(2795,20,1630),(2801,2,1643),(2800,24,1643),(2799,20,1643),(2805,2,1656),(2804,23,1656),(2803,20,1656),(2809,2,1677),(2808,25,1677),(2807,20,1677),(2813,2,1699),(2812,25,1699),(2811,20,1699),(2817,2,1709),(2816,22,1709),(2815,20,1709),(2821,2,1725),(2820,25,1725),(2819,20,1725),(2825,2,1735),(2824,23,1735),(2823,20,1735),(2829,2,1756),(2828,25,1756),(2827,20,1756),(2833,2,1777),(2832,22,1777),(2831,20,1777),(2837,2,1787),(2836,26,1787),(2835,20,1787),(2841,2,1808),(2840,25,1808),(2839,20,1808),(2845,2,1817),(2844,26,1817),(2843,20,1817),(2853,2,1840),(2852,26,1840),(2851,20,1840),(2857,2,1866),(2856,25,1866),(2855,20,1866),(2861,2,1875),(2860,26,1875),(2859,20,1875),(2865,2,1888),(2864,22,1888),(2863,20,1888),(2869,2,1892),(2868,26,1892),(2867,20,1892),(2873,2,1896),(2872,26,1896),(2871,20,1896),(2877,2,1903),(2876,25,1903),(2875,20,1903),(2881,2,1910),(2880,22,1910),(2879,20,1910),(2885,2,1920),(2884,22,1920),(2883,20,1920),(2893,2,1943),(2892,24,1943),(2891,20,1943),(2897,2,1946),(2896,24,1946),(2895,20,1946),(2901,2,1961),(2900,24,1961),(2899,20,1961),(2905,2,1972),(2904,24,1972),(2903,20,1972),(2909,2,1991),(2908,24,1991),(2907,20,1991),(2913,2,44),(2912,36,44),(2911,35,44),(2917,2,1996),(2916,25,1996),(2915,20,1996),(2921,2,2001),(2920,36,2001),(2919,35,2001),(2925,2,2010),(2923,27,2010),(2924,32,2010),(2929,2,116),(2928,38,116),(2927,35,116),(2933,2,2017),(2931,27,2017),(2932,31,2017),(2937,2,2020),(2936,38,2020),(2935,35,2020),(2941,2,2029),(2939,27,2029),(2940,31,2029),(2945,2,2032),(2944,38,2032),(2943,35,2032),(2953,2,2050),(2951,27,2050),(2952,31,2050),(2957,2,2055),(2956,36,2055),(2955,35,2055),(2961,2,2060),(2959,27,2060),(2960,28,2060),(2965,2,2065),(2963,27,2065),(2964,31,2065),(2969,2,2072),(2967,27,2072),(2968,28,2072),(2973,2,2077),(2972,36,2077),(2971,35,2077),(2977,2,2084),(2975,27,2084),(2976,30,2084),(2981,2,2089),(2980,36,2089),(2979,35,2089),(2985,2,2098),(2983,27,2098),(2984,30,2098),(2989,2,2105),(2988,36,2105),(2987,35,2105),(2993,2,2116),(2991,27,2116),(2992,31,2116),(2997,2,2123),(2995,27,2123),(2996,29,2123),(3001,2,2132),(2999,27,2132),(3000,30,2132),(3005,2,2135),(3004,38,2135),(3003,35,2135),(3009,2,2138),(3008,38,2138),(3007,35,2138),(3013,2,2145),(3011,27,2145),(3012,31,2145),(3017,2,2149),(3016,37,2149),(3015,35,2149),(3021,2,2157),(3019,27,2157),(3020,30,2157),(3025,2,2168),(3023,27,2168),(3024,33,2168),(3029,2,2171),(3028,37,2171),(3027,35,2171),(3033,2,2178),(3031,27,2178),(3032,28,2178),(3037,2,2185),(3035,27,2185),(3036,28,2185),(3041,2,2190),(3040,36,2190),(3039,35,2190),(3045,2,2197),(3043,27,2197),(3044,29,2197),(3049,2,2204),(3047,27,2204),(3048,28,2204),(3053,2,2207),(3052,37,2207),(3051,35,2207),(3057,2,2212),(3056,36,2212),(3055,35,2212),(3061,2,2219),(3059,27,2219),(3060,28,2219),(3065,2,2222),(3064,37,2222),(3063,35,2222),(3069,2,2229),(3067,27,2229),(3068,29,2229),(3073,2,2234),(3072,36,2234),(3071,35,2234),(3077,2,2245),(3075,27,2245),(3076,33,2245),(3081,2,2252),(3079,27,2252),(3080,31,2252),(3085,2,2255),(3084,38,2255),(3083,35,2255),(3089,2,2268),(3087,27,2268),(3088,33,2268),(3097,2,2284),(3095,27,2284),(3096,30,2284),(3101,2,2291),(3099,27,2291),(3100,28,2291),(3105,2,2300),(3103,27,2300),(3104,30,2300),(3109,2,2309),(3107,27,2309),(3108,32,2309),(3113,2,2320),(3111,27,2320),(3112,32,2320),(3121,2,2336),(3120,23,2336),(3119,20,2336),(3125,2,2343),(3124,23,2343),(3123,20,2343),(3129,2,2350),(3127,27,2350),(3128,31,2350),(3133,2,2357),(3131,27,2357),(3132,28,2357),(3137,2,2366),(3135,27,2366),(3136,30,2366),(3141,2,2373),(3139,27,2373),(3140,28,2373),(3145,2,2389),(3144,25,2389),(3143,20,2389),(3149,2,2396),(3147,27,2396),(3148,28,2396),(3153,2,2403),(3151,27,2403),(3152,32,2403),(3157,2,2410),(3155,27,2410),(3156,31,2410),(3161,2,2417),(3159,27,2417),(3160,29,2417),(3165,2,2424),(3163,27,2424),(3164,30,2424),(3169,2,2431),(3167,27,2431),(3168,30,2431),(3173,2,2440),(3171,27,2440),(3172,32,2440),(3177,2,2456),(3175,27,2456),(3176,33,2456),(3181,2,2465),(3179,27,2465),(3180,33,2465),(3185,2,2478),(3183,27,2478),(3184,33,2478),(3189,2,2487),(3187,27,2487),(3188,32,2487),(3193,2,2500),(3191,27,2500),(3192,33,2500),(3197,2,2507),(3196,26,2507),(3195,20,2507),(3201,2,2517),(3200,26,2517),(3199,20,2517),(3205,2,2524),(3204,25,2524),(3203,20,2524),(3209,2,2533),(3207,27,2533),(3208,33,2533),(3213,2,2542),(3211,27,2542),(3212,30,2542);
/*!40000 ALTER TABLE `catalog_url_rewrite_product_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cataloginventory_stock`
--

DROP TABLE IF EXISTS `cataloginventory_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cataloginventory_stock` (
  `stock_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Stock Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `stock_name` varchar(255) DEFAULT NULL COMMENT 'Stock Name',
  PRIMARY KEY (`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cataloginventory_stock`
--

LOCK TABLES `cataloginventory_stock` WRITE;
/*!40000 ALTER TABLE `cataloginventory_stock` DISABLE KEYS */;
INSERT INTO `cataloginventory_stock` VALUES (1,0,'Default');
/*!40000 ALTER TABLE `cataloginventory_stock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cataloginventory_stock_item`
--

DROP TABLE IF EXISTS `cataloginventory_stock_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cataloginventory_stock_item` (
  `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item Id',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product Id',
  `stock_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Stock Id',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `min_qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Min Qty',
  `use_config_min_qty` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Min Qty',
  `is_qty_decimal` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Qty Decimal',
  `backorders` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Backorders',
  `use_config_backorders` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Backorders',
  `min_sale_qty` decimal(12,4) NOT NULL DEFAULT '1.0000' COMMENT 'Min Sale Qty',
  `use_config_min_sale_qty` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Min Sale Qty',
  `max_sale_qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Max Sale Qty',
  `use_config_max_sale_qty` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Max Sale Qty',
  `is_in_stock` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is In Stock',
  `low_stock_date` timestamp NULL DEFAULT NULL COMMENT 'Low Stock Date',
  `notify_stock_qty` decimal(12,4) DEFAULT NULL COMMENT 'Notify Stock Qty',
  `use_config_notify_stock_qty` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Notify Stock Qty',
  `manage_stock` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Manage Stock',
  `use_config_manage_stock` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Manage Stock',
  `stock_status_changed_auto` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Stock Status Changed Automatically',
  `use_config_qty_increments` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Qty Increments',
  `qty_increments` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty Increments',
  `use_config_enable_qty_inc` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Enable Qty Increments',
  `enable_qty_increments` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Enable Qty Increments',
  `is_decimal_divided` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Divided into Multiple Boxes for Shipping',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  PRIMARY KEY (`item_id`),
  UNIQUE KEY `CATALOGINVENTORY_STOCK_ITEM_PRODUCT_ID_STOCK_ID` (`product_id`,`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_ITEM_WEBSITE_ID` (`website_id`),
  KEY `CATALOGINVENTORY_STOCK_ITEM_STOCK_ID` (`stock_id`),
  CONSTRAINT `CATINV_STOCK_ITEM_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CATINV_STOCK_ITEM_STOCK_ID_CATINV_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `cataloginventory_stock` (`stock_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2605 DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cataloginventory_stock_item`
--

LOCK TABLES `cataloginventory_stock_item` WRITE;
/*!40000 ALTER TABLE `cataloginventory_stock_item` DISABLE KEYS */;
INSERT INTO `cataloginventory_stock_item` VALUES (1,1,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2,2,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(3,3,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(4,4,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(5,5,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(6,6,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(7,7,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(8,8,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(9,9,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(10,10,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(11,11,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(12,12,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(15,15,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(16,16,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(17,17,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(18,18,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(19,19,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(20,20,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(22,22,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(24,24,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(25,25,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(26,26,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(29,29,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(30,30,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(31,31,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(32,32,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(33,33,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(34,34,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(35,35,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(36,36,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(38,38,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(41,41,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(42,42,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(43,43,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(44,44,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(45,45,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(46,46,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(47,47,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(48,48,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(49,49,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(50,50,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(51,51,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(53,53,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(54,54,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(55,55,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(56,56,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(57,57,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(58,58,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(59,59,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(60,60,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(61,61,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(63,63,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(64,64,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(65,65,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(66,66,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(68,68,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(69,69,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(73,70,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(74,71,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(75,72,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(76,73,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(77,74,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(78,75,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(79,76,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(80,77,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(81,78,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(82,79,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(83,80,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(84,81,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(86,82,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(87,83,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(88,84,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(90,85,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(91,86,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(92,87,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(93,88,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(94,89,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(97,91,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(98,92,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(99,93,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(101,95,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(111,97,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(117,98,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(120,99,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(125,100,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(143,101,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(149,102,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(163,103,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(165,104,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(166,105,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(167,106,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-12-03 12:28:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(168,107,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-12-03 12:27:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(169,108,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-12-03 12:26:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(170,109,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-11-30 21:02:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(171,110,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-11-30 21:01:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(172,111,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-11-30 21:08:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(174,112,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-11-30 21:47:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(175,113,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-11-30 21:00:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(176,114,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-11-30 21:09:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(177,115,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-12-03 09:32:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(178,116,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-11-30 21:07:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(179,117,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-11-30 21:47:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(180,118,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-11-30 20:58:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(181,119,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(182,120,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-12-03 10:20:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(183,121,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-11-30 21:08:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(184,122,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-12-03 10:15:12',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(185,123,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-12-03 16:20:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(186,124,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-11-30 22:11:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(187,125,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-12-02 12:50:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(188,126,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-12-02 12:50:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(189,127,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-12-03 13:19:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(190,128,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2018-12-03 09:35:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(191,129,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 08:12:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(192,130,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(193,131,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(194,132,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 14:39:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(195,133,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 14:39:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(196,134,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 14:39:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(197,135,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 14:54:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(198,136,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 14:54:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(199,137,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 14:54:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(200,138,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-07 13:06:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(201,139,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-07 13:06:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(202,140,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-07 13:05:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(203,141,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-07 13:05:19',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(204,142,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-07 13:05:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(205,143,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-07 13:05:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(206,144,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-07 13:05:12',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(207,145,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 16:20:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(208,146,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 16:20:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(209,147,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 16:20:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(210,148,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 16:20:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(211,149,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 16:20:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(212,150,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 16:22:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(213,151,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 16:22:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(214,152,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 16:22:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(215,153,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 16:23:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(216,154,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 16:23:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(217,155,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 16:23:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(218,156,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 16:23:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(219,157,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(220,158,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(221,159,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(222,160,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 16:27:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(223,161,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 16:27:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(224,162,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-08 16:27:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(225,163,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(226,164,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(227,165,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(228,166,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(229,167,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(230,168,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(231,169,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(232,170,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(233,171,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(234,172,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(235,173,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(236,174,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(237,175,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:52:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(238,176,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:52:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(239,177,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:52:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(240,178,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:52:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(241,179,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:52:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(242,180,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:53:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(243,181,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:53:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(244,182,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:53:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(245,183,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:53:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(246,184,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:53:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(247,185,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:53:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(248,186,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(249,187,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(250,188,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(251,189,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(252,190,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(253,191,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(254,192,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(255,193,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(256,194,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(257,195,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(258,196,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(259,197,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:55:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(260,198,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:55:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(261,199,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:55:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(262,200,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:55:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(263,201,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:55:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(264,202,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:55:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(265,203,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(266,204,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(267,205,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(268,206,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(269,207,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(270,208,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(271,209,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(272,210,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:58:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(273,211,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:58:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(274,212,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:58:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(275,213,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:58:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(276,214,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:58:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(277,215,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:58:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(278,216,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 06:58:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(279,217,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(280,218,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(281,219,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(282,220,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(283,221,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(284,222,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:00:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(285,223,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:00:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(286,224,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:00:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(287,225,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:00:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(288,226,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:00:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(289,227,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:00:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(290,228,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(291,229,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(292,230,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(293,231,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(294,232,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(295,233,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(296,234,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(297,235,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(298,236,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(299,237,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(300,238,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(301,239,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:03:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(302,240,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:03:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(303,241,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:03:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(304,242,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:03:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(305,243,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:04:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(306,244,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:04:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(307,245,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:04:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(308,246,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:04:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(309,247,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:04:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(310,248,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:04:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(311,249,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:05:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(312,250,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:05:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(313,251,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:05:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(314,252,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:05:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(315,253,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:05:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(316,254,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:05:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(317,255,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:05:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(318,256,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:05:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(319,257,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(320,258,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(321,259,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(322,260,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(323,261,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:06:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(324,262,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:06:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(325,263,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:06:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(326,264,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:06:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(327,265,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(328,266,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(329,267,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(330,268,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(331,269,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(332,270,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(333,271,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(334,272,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(335,273,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(336,274,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(337,275,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(338,276,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(339,277,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:10:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(340,278,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:10:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(341,279,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:10:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(342,280,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:10:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(343,281,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:10:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(344,282,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:10:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(345,283,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:10:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(346,284,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:10:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(347,285,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(348,286,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(349,287,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:12:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(350,288,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:12:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(351,289,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:12:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(352,290,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(353,291,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(354,292,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(355,293,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:12:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(356,294,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:12:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(357,295,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:12:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(358,296,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:13:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(359,297,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:13:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(360,298,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:13:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(361,299,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:13:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(362,300,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(363,301,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(364,302,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(365,303,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(366,304,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(367,305,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(368,306,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:16:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(369,307,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:16:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(370,308,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:16:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(371,309,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(372,310,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(373,311,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(374,312,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(375,313,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(376,314,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(377,315,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(378,316,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(379,317,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(380,318,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(381,319,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(382,320,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(383,321,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(384,322,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(385,323,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(386,324,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(387,325,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(388,326,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(389,327,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(390,328,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(391,329,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(392,330,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:26:13',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(393,331,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:26:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(394,332,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:26:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(395,333,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:26:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(396,334,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(397,335,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(398,336,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(399,337,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(400,338,1,58.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(401,339,1,58.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(402,340,1,58.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(403,341,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(404,342,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(405,343,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(406,344,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(407,345,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(408,346,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:28:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(409,347,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:28:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(410,348,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:28:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(411,349,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:28:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(412,350,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(413,351,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(414,352,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(415,353,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(416,354,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(417,355,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(418,356,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(419,357,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(420,358,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(421,359,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(422,360,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(423,361,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:31:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(424,362,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:31:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(425,363,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:31:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(426,364,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(427,365,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(428,366,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(429,367,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(430,368,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(431,369,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(432,370,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(433,371,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(434,372,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(435,373,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(436,374,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(437,375,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(438,376,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:33:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(439,377,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:33:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(440,378,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(441,379,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(442,380,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(443,381,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(444,382,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(445,383,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(446,384,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(447,385,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(448,386,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(449,387,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(450,388,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(451,389,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(452,390,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(453,391,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:37:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(454,392,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:37:26',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(455,393,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:37:26',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(456,394,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(457,395,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:38:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(458,396,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:38:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(459,397,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(460,398,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(461,399,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(462,400,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(463,401,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:40:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(464,402,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:40:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(465,403,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:40:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(466,404,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:40:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(467,405,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:40:23',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(468,406,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:40:23',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(469,407,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(470,408,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(471,409,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(472,410,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(473,411,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(474,412,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:41:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(475,413,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:41:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(476,414,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:41:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(477,415,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:41:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(478,416,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(479,417,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(480,418,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(481,419,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(482,420,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(483,421,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(484,422,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(485,423,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(486,424,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(487,425,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(488,426,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:42:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(489,427,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:42:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(490,428,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:42:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(491,429,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:42:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(492,430,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:42:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(493,431,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:42:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(494,432,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:42:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(495,433,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:42:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(496,434,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:42:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(497,435,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:42:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(498,436,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:42:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(499,437,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(500,438,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(501,439,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(502,440,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(503,441,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(504,442,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(505,443,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:44:08',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(506,444,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:44:08',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(507,445,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:44:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(508,446,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:44:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(509,447,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:44:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(510,448,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:44:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(511,449,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(512,450,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(513,451,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(514,452,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(515,453,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(516,454,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(517,455,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(518,456,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(519,457,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(520,458,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:45:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(521,459,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:45:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(522,460,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:45:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(523,461,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(524,462,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(525,463,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(526,464,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(527,465,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(528,466,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(529,467,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(530,468,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:46:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(531,469,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:46:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(532,470,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:46:19',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(533,471,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(534,472,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(535,473,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(536,474,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(537,475,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:47:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(538,476,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:47:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(539,477,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:47:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(540,478,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(541,479,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(542,480,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(543,481,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:51:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(544,482,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:51:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(545,483,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:51:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(546,484,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:51:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(547,485,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:52:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(548,486,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:52:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(549,487,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:52:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(550,488,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(551,489,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(552,490,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(553,491,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:53:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(554,492,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:53:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(555,493,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:53:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(556,494,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-02-11 07:53:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(557,495,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(558,496,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(559,497,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(560,498,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(561,499,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(562,500,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(563,501,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(564,502,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(565,503,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(566,504,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(567,505,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(568,506,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(569,507,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(570,508,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(571,509,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(572,510,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(573,511,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(574,512,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(575,513,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(576,514,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(577,515,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(578,516,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(579,517,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(580,518,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(581,519,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(582,520,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(583,521,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(584,522,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(585,523,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(586,524,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(587,525,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(588,526,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(589,527,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(590,528,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(591,529,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(592,530,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(593,531,1,60.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(594,532,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(595,533,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(596,534,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(597,535,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(598,536,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(599,537,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(600,538,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(601,539,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(602,540,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(603,541,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(604,542,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(605,543,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(606,544,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(607,545,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(608,546,1,58.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(609,547,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(610,548,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(611,549,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(612,550,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(613,551,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(614,552,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(615,553,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(616,554,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(617,555,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(618,556,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(619,557,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(620,558,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(621,559,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(622,560,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(623,561,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(624,562,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(625,563,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(626,564,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(627,565,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(628,566,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(629,567,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(630,568,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(631,569,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(632,570,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(633,571,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(634,572,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(635,573,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(636,574,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(637,575,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(638,576,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(639,577,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(640,578,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(641,579,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(642,580,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(643,581,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(644,582,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(645,583,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(646,584,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(647,585,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(648,586,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(649,587,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(650,588,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(651,589,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(652,590,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(653,591,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(654,592,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(655,593,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(656,594,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(657,595,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(658,596,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(659,597,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(660,598,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(661,599,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(662,600,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(663,601,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(664,602,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(665,603,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(666,604,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(667,605,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(668,606,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(669,607,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(670,608,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(671,609,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(672,610,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(673,611,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(674,612,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(675,613,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(676,614,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(677,615,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(678,616,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(679,617,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(680,618,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(681,619,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(682,620,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(683,621,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(684,622,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(685,623,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(686,624,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(687,625,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(688,626,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(689,627,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(690,628,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(691,629,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(692,630,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(693,631,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(694,632,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(695,633,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(696,634,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(697,635,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(698,636,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(699,637,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(700,638,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(701,639,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(702,640,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(703,641,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(704,642,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(705,643,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(706,644,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(707,645,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(708,646,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(709,647,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(710,648,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(711,649,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(712,650,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(713,651,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(714,652,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(715,653,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(716,654,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(717,655,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(718,656,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(719,657,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(720,658,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(721,659,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(722,660,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(723,661,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(724,662,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(725,663,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(726,664,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(727,665,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(728,666,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(729,667,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(730,668,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(731,669,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(732,670,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(733,671,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(734,672,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(735,673,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(736,674,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(737,675,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(738,676,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(739,677,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(740,678,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(741,679,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(742,680,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(743,681,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(744,682,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(745,683,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(746,684,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(747,685,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(748,686,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(749,687,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(750,688,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(751,689,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(752,690,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(753,691,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(754,692,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(755,693,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(756,694,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(757,695,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(758,696,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(759,697,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(760,698,1,78.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(761,699,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(762,700,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(763,701,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(764,702,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(765,703,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(766,704,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(767,705,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(768,706,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(769,707,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(770,708,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(771,709,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(772,710,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(773,711,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(774,712,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(775,713,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(776,714,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(777,715,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(778,716,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(779,717,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(780,718,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(781,719,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(782,720,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(783,721,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(784,722,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(785,723,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(786,724,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(787,725,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(788,726,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(789,727,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(790,728,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(791,729,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(792,730,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(793,731,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(794,732,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(795,733,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(796,734,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(797,735,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(798,736,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(799,737,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(800,738,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(801,739,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(802,740,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(803,741,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(804,742,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(805,743,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(806,744,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(807,745,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(808,746,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(809,747,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(810,748,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(811,749,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(812,750,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(813,751,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(814,752,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(815,753,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(816,754,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(817,755,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(818,756,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(819,757,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(820,758,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(821,759,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(822,760,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(823,761,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(824,762,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(825,763,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(826,764,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(827,765,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(828,766,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(829,767,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(830,768,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(831,769,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(832,770,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(833,771,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(834,772,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(835,773,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(836,774,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(837,775,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(838,776,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(839,777,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(840,778,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(841,779,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(842,780,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(843,781,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(844,782,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(845,783,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(846,784,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(847,785,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(848,786,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(849,787,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(850,788,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(851,789,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(852,790,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(853,791,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(854,792,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(855,793,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(856,794,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(857,795,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(858,796,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(859,797,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(860,798,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(861,799,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(862,800,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(863,801,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(864,802,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(865,803,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(866,804,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(867,805,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(868,806,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(869,807,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(870,808,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(871,809,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(872,810,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(873,811,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(874,812,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(875,813,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(876,814,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(877,815,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(878,816,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(879,817,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(880,818,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(881,819,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(882,820,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(883,821,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(884,822,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(885,823,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(886,824,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(887,825,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(888,826,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(889,827,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(890,828,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(891,829,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(892,830,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(893,831,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(894,832,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(895,833,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(896,834,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(897,835,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(898,836,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(899,837,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(900,838,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(901,839,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(902,840,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(903,841,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(904,842,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(905,843,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(906,844,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(907,845,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(908,846,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(909,847,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(910,848,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(911,849,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(912,850,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(913,851,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(914,852,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(915,853,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(916,854,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(917,855,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(918,856,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(919,857,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(920,858,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(921,859,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(922,860,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(923,861,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(924,862,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(925,863,1,36.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(926,864,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(927,865,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(928,866,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(929,867,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(930,868,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(931,869,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(932,870,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(933,871,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(934,872,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(935,873,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(936,874,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(937,875,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(938,876,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(939,877,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(940,878,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(941,879,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(942,880,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(943,881,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(944,882,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(945,883,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(946,884,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(947,885,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(948,886,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(949,887,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(950,888,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(951,889,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(952,890,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(953,891,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(954,892,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(955,893,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(956,894,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(957,895,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(958,896,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(959,897,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(960,898,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(961,899,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(962,900,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(963,901,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(964,902,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(965,903,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(966,904,1,80.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(967,905,1,80.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(968,906,1,80.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(969,907,1,80.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(970,908,1,80.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(971,909,1,80.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(972,910,1,80.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(973,911,1,80.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(974,912,1,80.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(975,913,1,80.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(976,914,1,80.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(977,915,1,80.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(986,924,1,23.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(987,925,1,23.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(988,926,1,23.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(989,927,1,23.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(990,928,1,23.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(991,929,1,23.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(992,930,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(993,931,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(994,932,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(995,933,1,576.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(996,934,1,576.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(997,935,1,576.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(998,936,1,576.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(999,937,1,576.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1000,938,1,576.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1001,939,1,25.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1002,940,1,25.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1003,941,1,25.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1004,942,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1005,943,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1006,944,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1007,945,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1008,946,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1009,947,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1010,948,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1011,949,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1012,950,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1013,951,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1014,952,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1015,953,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1016,954,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1017,955,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1018,956,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1019,957,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1020,958,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1021,959,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1034,972,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1035,973,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1036,974,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1037,975,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1038,976,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1039,977,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1040,978,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1041,979,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1042,980,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1043,981,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1044,982,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1045,983,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1046,984,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1047,985,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1048,986,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1049,987,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1050,988,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1051,989,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1052,990,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1053,991,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1054,992,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1055,993,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1056,994,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1057,995,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1058,996,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1059,997,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1060,998,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1061,999,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1062,1000,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1063,1001,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1064,1002,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1065,1003,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1066,1004,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1067,1005,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1068,1006,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1069,1007,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1070,1008,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1071,1009,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1072,1010,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1073,1011,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1074,1012,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1075,1013,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1076,1014,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1077,1015,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1078,1016,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1079,1017,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1080,1018,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1081,1019,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1082,1020,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1083,1021,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1084,1022,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1085,1023,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1086,1024,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1087,1025,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1088,1026,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1089,1027,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1090,1028,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1091,1029,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1092,1030,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1093,1031,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1094,1032,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1095,1033,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1096,1034,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1097,1035,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1098,1036,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1099,1037,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1100,1038,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1101,1039,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1102,1040,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1103,1041,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1104,1042,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1105,1043,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1106,1044,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1107,1045,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1108,1046,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1109,1047,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1110,1048,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1111,1049,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1112,1050,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1113,1051,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1114,1052,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1115,1053,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1116,1054,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1117,1055,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1118,1056,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1119,1057,1,46.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1120,1058,1,46.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1121,1059,1,46.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1122,1060,1,46.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1123,1061,1,46.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1124,1062,1,46.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1125,1063,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1126,1064,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1127,1065,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1128,1066,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1129,1067,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1130,1068,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1131,1069,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1132,1070,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1133,1071,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1134,1072,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1135,1073,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1136,1074,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1137,1075,1,54.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1138,1076,1,54.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1139,1077,1,54.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1140,1078,1,54.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1141,1079,1,54.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1142,1080,1,54.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1143,1081,1,54.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1144,1082,1,54.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1145,1083,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1146,1084,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1147,1085,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1148,1086,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1149,1087,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1150,1088,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1151,1089,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1152,1090,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1153,1091,1,54.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1154,1092,1,54.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1155,1093,1,54.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1156,1094,1,54.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1157,1095,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1158,1096,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1159,1097,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1160,1098,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1161,1099,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1162,1100,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1163,1101,1,46.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1164,1102,1,46.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1165,1103,1,46.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1166,1104,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1167,1105,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1168,1106,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1169,1107,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1170,1108,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1171,1109,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1172,1110,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1173,1111,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1174,1112,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1175,1113,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1176,1114,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1177,1115,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1178,1116,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1179,1117,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1180,1118,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1181,1119,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1182,1120,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1183,1121,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1184,1122,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1185,1123,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1186,1124,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1187,1125,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1188,1126,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1189,1127,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1190,1128,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1191,1129,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1192,1130,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1193,1131,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1194,1132,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1195,1133,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1196,1134,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1197,1135,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1198,1136,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1199,1137,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1200,1138,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1201,1139,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1202,1140,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1203,1141,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1204,1142,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1205,1143,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1206,1144,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1207,1145,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1208,1146,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1209,1147,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1210,1148,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1211,1149,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1212,1150,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1213,1151,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1214,1152,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1215,1153,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1216,1154,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1217,1155,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1218,1156,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1219,1157,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1220,1158,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1221,1159,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1222,1160,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1223,1161,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1224,1162,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1225,1163,1,35.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1226,1164,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1227,1165,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1228,1166,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1229,1167,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1230,1168,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1231,1169,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1232,1170,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1233,1171,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1234,1172,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1235,1173,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1236,1174,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1237,1175,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1238,1176,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1239,1177,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1240,1178,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1241,1179,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1242,1180,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1243,1181,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1244,1182,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1245,1183,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1246,1184,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1247,1185,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1248,1186,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1249,1187,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1250,1188,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1251,1189,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1252,1190,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1253,1191,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1254,1192,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1255,1193,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1256,1194,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1257,1195,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1258,1196,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1259,1197,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1260,1198,1,34.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1261,1199,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1262,1200,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1263,1201,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1264,1202,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1265,1203,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1266,1204,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1267,1205,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1268,1206,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1269,1207,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1270,1208,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1271,1209,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1272,1210,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1273,1211,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1274,1212,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1275,1213,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1276,1214,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1277,1215,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1278,1216,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1279,1217,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1280,1218,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1281,1219,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1282,1220,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1283,1221,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1284,1222,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1285,1223,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1286,1224,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1287,1225,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1288,1226,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1289,1227,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1290,1228,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1291,1229,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1292,1230,1,65.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1293,1231,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1294,1232,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1295,1233,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1296,1234,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1297,1235,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1298,1236,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1299,1237,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1300,1238,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1301,1239,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1302,1240,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1303,1241,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1304,1242,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1305,1243,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1306,1244,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1307,1245,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1308,1246,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1309,1247,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1310,1248,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1311,1249,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1312,1250,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1313,1251,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1314,1252,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1315,1253,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1316,1254,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1317,1255,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1318,1256,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1319,1257,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1320,1258,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1321,1259,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1322,1260,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1323,1261,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1324,1262,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1325,1263,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1326,1264,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1327,1265,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1328,1266,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1329,1267,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1330,1268,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1331,1269,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1332,1270,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1333,1271,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1334,1272,1,66.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1335,1273,1,66.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1336,1274,1,66.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1337,1275,1,66.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1338,1276,1,66.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1339,1277,1,66.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1340,1278,1,66.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1341,1279,1,66.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1342,1280,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1343,1281,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1344,1282,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1345,1283,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1346,1284,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1347,1285,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1348,1286,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1349,1287,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1350,1288,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1351,1289,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1352,1290,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1353,1291,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1354,1292,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1355,1293,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1356,1294,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1357,1295,1,55.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1358,1296,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1359,1297,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1360,1298,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1361,1299,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1362,1300,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1363,1301,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1364,1302,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1365,1303,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1366,1304,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1367,1305,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1368,1306,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1369,1307,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1370,1308,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1371,1309,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1372,1310,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1373,1311,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1374,1312,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1375,1313,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1376,1314,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1377,1315,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1378,1316,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1379,1317,1,58.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1380,1318,1,56.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1381,1319,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1382,1320,1,68.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1383,1321,1,60.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1384,1322,1,58.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1385,1323,1,58.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1386,1324,1,58.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1387,1325,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1388,1326,1,45.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1389,1327,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1390,1328,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1391,1329,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1392,1330,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1393,1331,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1394,1332,1,57.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1395,1333,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:04:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1396,1334,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:04:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1397,1335,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:04:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1398,1336,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:04:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1399,1337,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:04:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1400,1338,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:04:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1401,1339,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:04:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1402,1340,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:04:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1403,1341,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:04:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1405,1343,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1406,1344,1,67.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1407,1345,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:21:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1408,1346,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:21:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1409,1347,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:21:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1410,1348,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:21:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1411,1349,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:21:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1412,1350,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:21:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1413,1351,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 12:24:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1414,1352,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1415,1353,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1416,1354,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1417,1355,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1418,1356,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1419,1357,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1420,1358,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1421,1359,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1422,1360,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1423,1361,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1424,1362,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1425,1363,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1426,1364,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1427,1365,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1428,1366,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1429,1367,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1430,1368,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1431,1369,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1432,1370,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1433,1371,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1434,1372,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1435,1373,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1436,1374,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1437,1375,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1438,1376,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1439,1377,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1440,1378,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1441,1379,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1442,1380,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1443,1381,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 10:48:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1445,1383,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1446,1384,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1447,1385,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1448,1386,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1449,1387,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1450,1388,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1451,1389,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1452,1390,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1453,1391,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1454,1392,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1455,1393,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1456,1394,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1457,1395,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1458,1396,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1459,1397,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1460,1398,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1461,1399,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:56',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1462,1400,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1463,1401,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:18:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1464,1402,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:19:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1465,1403,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:19:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1466,1404,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:19:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1467,1405,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:19:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1468,1406,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:19:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1469,1407,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:19:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1470,1408,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:19:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1471,1409,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:19:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1472,1410,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:19:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1473,1411,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:19:11',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1474,1412,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 11:19:12',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1475,1413,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1476,1414,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 13:08:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1477,1415,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 13:08:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1478,1416,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 13:08:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1479,1417,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 13:08:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1480,1418,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 13:08:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1481,1419,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 13:08:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1482,1420,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:31:11',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1483,1421,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:31:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1484,1422,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:31:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1485,1423,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:31:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1486,1424,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:31:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1487,1425,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:31:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1488,1426,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:31:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1489,1427,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:31:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1490,1428,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:31:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1491,1429,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:31:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1492,1430,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:31:56',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1493,1431,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1494,1432,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1495,1433,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1496,1434,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1497,1435,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1498,1436,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1499,1437,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1500,1438,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1501,1439,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1502,1440,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1503,1441,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1504,1442,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1505,1443,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1506,1444,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1507,1445,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:55',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1508,1446,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:32:59',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1509,1447,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:33:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1510,1448,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:33:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1511,1449,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:33:13',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1512,1450,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:33:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1513,1451,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:33:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1514,1452,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:33:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1515,1453,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:33:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1516,1454,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:33:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1517,1455,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1518,1456,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:43:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1519,1457,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:43:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1520,1458,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:43:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1521,1459,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:43:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1522,1460,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:43:55',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1523,1461,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:43:59',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1524,1462,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:44:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1525,1463,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:44:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1526,1464,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1527,1465,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:51:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1528,1466,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:51:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1529,1467,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:51:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1530,1468,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:51:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1531,1469,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:51:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1532,1470,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:51:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1533,1471,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:51:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1534,1472,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:51:56',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1535,1473,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:51:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1536,1474,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:51:59',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1537,1475,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1538,1476,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1539,1477,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1540,1478,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1541,1479,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:08',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1542,1480,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1543,1481,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:12',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1544,1482,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1545,1483,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:19',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1546,1484,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1547,1485,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1548,1486,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1549,1487,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1550,1488,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1551,1489,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1552,1490,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1553,1491,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1554,1492,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1555,1493,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1556,1494,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 12:52:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1557,1495,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1558,1496,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:12:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1559,1497,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:12:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1560,1498,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:12:59',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1561,1499,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1562,1500,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1563,1501,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1564,1502,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:08',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1565,1503,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1566,1504,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:12',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1567,1505,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1568,1506,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1569,1507,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1570,1508,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1571,1509,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1572,1510,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1573,1511,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:26',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1574,1512,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1575,1513,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1576,1514,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1577,1515,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1578,1516,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1579,1517,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1580,1518,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1581,1519,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1582,1520,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1583,1521,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1584,1522,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:56',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1585,1523,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:13:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1586,1524,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:14:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1587,1525,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:14:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1588,1526,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1589,1527,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:16:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1590,1528,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:16:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1591,1529,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:16:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1592,1530,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:16:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1593,1531,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:16:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1594,1532,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:16:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1595,1533,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:16:55',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1596,1534,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:16:59',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1597,1535,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1598,1536,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:25:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1599,1537,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:25:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1600,1538,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:25:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1601,1539,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:25:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1602,1540,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:25:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1603,1541,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:25:56',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1604,1542,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:25:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1605,1543,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1606,1544,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1607,1545,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1608,1546,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1609,1547,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1610,1548,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:11',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1611,1549,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:13',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1612,1550,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1613,1551,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:19',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1614,1552,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1615,1553,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:23',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1616,1554,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1617,1555,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:26',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1618,1556,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1619,1557,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1620,1558,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1621,1559,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1622,1560,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:26:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1623,1561,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1624,1562,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:28:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1625,1563,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:28:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1626,1564,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:28:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1627,1565,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:28:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1628,1566,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:28:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1629,1567,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:28:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1630,1568,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1631,1569,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:37:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1632,1570,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:37:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1633,1571,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:37:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1634,1572,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:37:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1635,1573,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:37:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1636,1574,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:37:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1637,1575,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1638,1576,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1639,1577,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1640,1578,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1641,1579,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:08',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1642,1580,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1643,1581,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:12',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1644,1582,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1645,1583,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1646,1584,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1647,1585,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1648,1586,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1649,1587,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:26',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1650,1588,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1651,1589,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1652,1590,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1653,1591,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1654,1592,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1655,1593,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1656,1594,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1657,1595,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 13:38:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1658,1596,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1659,1597,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:06:08',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1660,1598,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:10:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1661,1599,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:10:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1662,1600,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:10:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1663,1601,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:10:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1664,1602,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:10:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1665,1603,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:10:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1666,1604,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1667,1605,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:14:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1668,1606,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:15:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1669,1607,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:15:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1670,1608,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:15:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1671,1609,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:15:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1672,1610,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:15:12',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1673,1611,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:15:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1674,1612,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:15:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1675,1613,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:15:19',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1676,1614,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:15:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1677,1615,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:15:23',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1678,1616,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:15:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1679,1617,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:15:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1680,1618,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:15:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1681,1619,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,'2019-03-06 14:15:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1682,1620,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:20:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1683,1621,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:20:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1684,1622,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:20:55',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1685,1623,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:20:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1686,1624,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:21:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1687,1625,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:21:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1688,1626,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:21:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1689,1627,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:21:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1690,1628,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:21:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1691,1629,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:21:08',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1692,1630,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1693,1631,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:24:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1694,1632,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:24:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1695,1633,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:24:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1696,1634,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:24:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1697,1635,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:24:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1698,1636,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:24:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1699,1637,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:24:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1700,1638,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:24:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1701,1639,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:24:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1702,1640,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:24:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1703,1641,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:24:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1704,1642,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:24:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1705,1643,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1706,1644,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:31:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1707,1645,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:31:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1708,1646,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:31:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1709,1647,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:31:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1710,1648,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:31:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1711,1649,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:31:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1712,1650,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:31:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1713,1651,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:31:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1714,1652,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:31:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1715,1653,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:31:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1716,1654,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:31:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1717,1655,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:31:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1718,1656,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1719,1657,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:34:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1720,1658,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:34:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1721,1659,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:34:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1722,1660,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:34:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1723,1661,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:34:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1724,1662,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:34:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1725,1663,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:34:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1726,1664,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:34:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1727,1665,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:34:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1728,1666,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:34:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1729,1667,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:34:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1730,1668,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:34:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1731,1669,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:34:55',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1732,1670,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:34:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1733,1671,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:34:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1734,1672,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:35:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1735,1673,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:35:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1736,1674,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:35:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1737,1675,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:35:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1738,1676,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:35:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1739,1677,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1740,1678,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1741,1679,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1742,1680,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1743,1681,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1744,1682,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1745,1683,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1746,1684,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1747,1685,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1748,1686,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1749,1687,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1750,1688,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1751,1689,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1752,1690,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1753,1692,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1755,1693,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1756,1694,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:41:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1757,1695,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:42:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1758,1696,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:42:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1759,1697,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:42:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1760,1698,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:42:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1761,1699,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1762,1700,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:47:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1763,1701,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:47:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1764,1702,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:47:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1765,1703,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:47:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1766,1704,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:47:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1767,1705,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:47:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1768,1706,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:47:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1769,1707,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:47:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1770,1708,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:47:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1771,1709,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1772,1710,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:51:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1773,1711,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:51:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1774,1712,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:51:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1775,1713,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:51:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1776,1714,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:51:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1777,1715,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:51:23',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1778,1716,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:51:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1779,1717,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:51:26',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1780,1718,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:51:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1781,1719,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:51:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1782,1720,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:51:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1783,1721,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:51:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1784,1722,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:51:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1785,1723,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:51:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1786,1724,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:51:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1787,1725,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1788,1726,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:56:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1789,1727,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:56:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1790,1728,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:56:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1791,1729,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:56:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1792,1730,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:56:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1793,1731,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:56:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1794,1732,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:56:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1795,1733,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:56:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1796,1734,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 14:57:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1797,1735,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1798,1736,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1799,1737,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1800,1738,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1801,1739,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1802,1740,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1803,1741,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1804,1742,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1805,1743,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1806,1744,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1807,1745,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1808,1746,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1809,1747,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1810,1748,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1811,1749,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1812,1750,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1813,1751,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1814,1752,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1815,1753,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1816,1754,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1817,1755,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:00:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1818,1756,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1819,1757,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:17:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1820,1758,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:17:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1821,1759,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:17:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1822,1760,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:17:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1823,1761,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:17:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1824,1762,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:18:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1825,1763,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:18:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1826,1764,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:18:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1827,1765,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:18:13',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1828,1766,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:18:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1829,1767,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:18:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1830,1768,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:18:26',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1831,1769,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:18:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1832,1770,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:18:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1833,1771,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:18:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1834,1772,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:18:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1835,1773,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:18:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1836,1774,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:18:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1837,1775,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:18:55',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1838,1776,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:18:59',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1839,1777,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1840,1778,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:19:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1841,1779,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:19:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1842,1780,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:19:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1843,1781,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:19:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1844,1782,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:19:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1845,1783,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:19:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1846,1784,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:19:56',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1847,1785,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:19:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1848,1786,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:19:59',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1849,1787,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1850,1788,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:24:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1851,1789,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:24:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1852,1790,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:24:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1853,1791,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:24:56',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1854,1792,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:24:59',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1855,1793,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:25:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1856,1794,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:25:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1857,1795,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:25:08',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1858,1796,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:25:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1859,1797,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:25:13',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1860,1798,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:25:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1861,1799,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:25:19',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1862,1800,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:25:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1863,1801,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:25:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1864,1802,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:25:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1865,1803,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:25:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1866,1804,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:25:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1867,1805,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:25:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1868,1806,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:25:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1869,1807,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:25:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1870,1808,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1871,1809,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:30:56',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1872,1810,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:30:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1873,1811,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:31:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1874,1812,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:31:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1875,1813,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:31:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1876,1814,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:31:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1877,1815,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:31:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1878,1816,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:31:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1879,1817,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1896,1834,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:40:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1897,1835,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:40:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1898,1836,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:40:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1899,1837,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:40:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1900,1838,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:40:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1901,1839,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:40:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1902,1840,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1903,1841,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:44:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1904,1842,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:44:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1905,1843,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:44:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1906,1844,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:44:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1907,1845,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:44:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1908,1846,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:44:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1909,1847,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:44:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1910,1848,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:44:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1911,1849,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:44:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1912,1850,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:44:56',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1913,1851,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:44:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1914,1852,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:45:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1915,1853,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:45:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1916,1854,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:45:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1917,1855,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:45:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1918,1856,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:45:11',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1919,1857,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:45:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1920,1858,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:45:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1921,1859,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:45:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1922,1860,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:45:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1923,1861,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:45:23',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1924,1862,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:45:26',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1925,1863,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:45:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1926,1864,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:45:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1927,1865,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:45:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1928,1866,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1929,1867,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:50:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1930,1868,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:50:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1931,1869,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:50:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1932,1870,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:50:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1933,1871,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:50:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1934,1872,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:50:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1935,1873,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:50:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1936,1874,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:50:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1937,1875,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1938,1876,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:52:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1939,1877,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:52:11',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1940,1878,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:52:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1941,1879,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:52:19',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1942,1880,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:52:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1943,1881,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:52:26',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1944,1882,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:52:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1945,1883,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:52:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1946,1884,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:52:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1947,1885,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:52:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1948,1886,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:52:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1949,1887,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:52:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1950,1888,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1951,1889,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:57:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1952,1890,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:57:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1953,1891,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 15:57:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1954,1892,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1955,1893,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:01:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1956,1894,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:01:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1957,1895,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:01:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1958,1896,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1959,1897,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:01:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1960,1898,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:01:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1961,1899,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:01:55',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1962,1900,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:01:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1963,1901,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:01:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1964,1902,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:01:59',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1965,1903,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1966,1904,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:06:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1967,1905,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:06:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1968,1906,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:06:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1969,1907,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:06:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1970,1908,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:06:12',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1971,1909,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:06:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1972,1910,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1973,1911,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:11:13',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1974,1912,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:11:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1975,1913,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:11:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1976,1914,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:11:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1977,1915,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:11:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1978,1916,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:11:26',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1979,1917,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:11:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1980,1918,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:11:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1981,1919,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:11:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1982,1920,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1990,1928,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:35:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1991,1929,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:35:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1992,1930,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:35:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1993,1931,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:35:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1994,1932,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:35:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1995,1933,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:35:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1996,1934,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:35:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1997,1935,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:35:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1998,1936,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:35:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(1999,1937,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:35:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2000,1938,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:35:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2001,1939,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:35:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2002,1940,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:35:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2003,1941,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:35:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2004,1942,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:35:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2005,1943,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2006,1944,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:42:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2007,1945,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:42:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2008,1946,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2009,1947,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:50:12',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2010,1948,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:50:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2011,1949,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:50:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2012,1950,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:50:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2013,1951,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:50:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2014,1952,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:50:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2015,1953,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:50:19',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2016,1954,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:50:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2017,1955,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:50:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2018,1956,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:50:23',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2019,1957,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:50:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2020,1958,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:50:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2021,1959,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:50:26',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2022,1960,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:50:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2023,1961,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2024,1962,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:58:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2025,1963,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:58:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2026,1964,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:58:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2027,1965,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:58:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2028,1966,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:58:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2029,1967,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:58:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2030,1968,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:58:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2031,1969,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:58:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2032,1970,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:58:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2033,1971,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 16:58:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2034,1972,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2035,1973,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2036,1974,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2037,1975,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2038,1976,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2039,1977,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2040,1978,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2041,1979,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2042,1980,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2043,1981,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2044,1982,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2045,1983,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2046,1984,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2047,1985,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2048,1986,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2049,1987,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:55',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2050,1988,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:56',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2051,1989,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2052,1990,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-06 17:08:59',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2053,1991,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2054,1992,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:06:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2055,1993,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:06:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2056,1994,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:06:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2057,1995,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:06:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2058,1996,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2059,1997,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:11:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2060,1998,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:11:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2061,1999,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:11:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2062,2000,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:11:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2063,2001,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2064,2002,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:14:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2065,2003,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:14:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2066,2004,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:14:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2067,2005,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:14:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2068,2006,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:15:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2069,2007,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:15:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2070,2008,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:15:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2071,2009,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:15:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2072,2010,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2073,2011,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:19:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2074,2012,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:19:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2075,2013,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:19:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2076,2014,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:19:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2077,2015,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:19:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2078,2016,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:19:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2079,2017,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2080,2018,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:23:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2081,2019,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:23:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2082,2020,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2083,2021,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:24:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2084,2022,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:24:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2085,2023,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:24:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2086,2024,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:24:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2087,2025,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:24:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2088,2026,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:24:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2089,2027,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:24:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2090,2028,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:24:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2091,2029,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2092,2030,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:29:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2093,2031,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:29:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2094,2032,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2104,2042,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:36:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2105,2043,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:36:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2106,2044,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:36:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2107,2045,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:36:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2108,2046,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:36:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2109,2047,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:36:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2110,2048,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:36:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2111,2049,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:36:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2112,2050,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2113,2051,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:38:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2114,2052,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:38:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2115,2053,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:38:55',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2116,2054,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:38:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2117,2055,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2118,2056,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:40:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2119,2057,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:40:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2120,2058,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:40:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2121,2059,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:40:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2122,2060,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2123,2061,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:45:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2124,2062,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:45:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2125,2063,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:45:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2126,2064,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:45:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2127,2065,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2128,2066,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:49:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2129,2067,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:49:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2130,2068,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:49:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2131,2069,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:49:08',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2132,2070,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:49:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2133,2071,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:49:11',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2134,2072,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2135,2073,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:50:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2136,2074,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:50:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2137,2075,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:50:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2138,2076,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:50:08',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2139,2077,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2140,2078,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:53:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2141,2079,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:53:11',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2142,2080,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:53:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2143,2081,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:53:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2144,2082,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:53:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2145,2083,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:53:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2146,2084,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2147,2085,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:56:19',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2148,2086,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:56:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2149,2087,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:56:23',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2150,2088,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:56:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2151,2089,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2152,2090,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:57:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2153,2091,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:57:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2154,2092,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:57:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2155,2093,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:57:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2156,2094,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:57:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2157,2095,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:57:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2158,2096,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:57:56',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2159,2097,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 08:58:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2160,2098,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2161,2099,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:04:08',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2162,2100,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:04:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2163,2101,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:04:11',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2164,2102,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:04:13',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2165,2103,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:04:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2166,2104,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:04:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2167,2105,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2168,2106,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:05:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2169,2107,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:05:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2170,2108,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:05:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2171,2109,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:05:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2172,2110,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:05:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2173,2111,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:05:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2174,2112,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:05:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2175,2113,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:05:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2176,2114,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:05:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2177,2115,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:05:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2178,2116,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2179,2117,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:12:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2180,2118,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:12:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2181,2119,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:12:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2182,2120,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:12:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2183,2121,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:12:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2184,2122,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:12:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2185,2123,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2186,2124,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:18:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2187,2125,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:18:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2188,2126,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:18:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2189,2127,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:18:11',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2190,2128,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:18:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2191,2129,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:18:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2192,2130,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:18:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2193,2131,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:18:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2194,2132,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2195,2133,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:19:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2196,2134,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:19:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2197,2135,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2198,2136,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:23:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2199,2137,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:23:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2200,2138,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2201,2139,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:24:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2202,2140,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:24:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2203,2141,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:24:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2204,2142,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:24:55',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2205,2143,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:24:59',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2206,2144,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:25:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2207,2145,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2208,2146,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:29:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2209,2147,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:29:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2210,2148,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:29:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2211,2149,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2212,2150,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:29:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2213,2151,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:29:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2214,2152,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:29:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2215,2153,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:29:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2216,2154,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:29:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2217,2155,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:29:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2218,2156,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:29:56',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2219,2157,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2220,2158,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:33:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2221,2159,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:33:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2222,2160,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:33:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2223,2161,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:33:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2224,2162,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:33:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2225,2163,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:33:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2226,2164,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:33:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2227,2165,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:33:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2228,2166,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:33:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2229,2167,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:33:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2230,2168,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2231,2169,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:35:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2232,2170,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:35:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2233,2171,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2234,2172,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:37:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2235,2173,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:37:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2236,2174,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:37:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2237,2175,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:37:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2238,2176,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:37:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2239,2177,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:37:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2240,2178,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2241,2179,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:40:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2242,2180,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:40:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2243,2181,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:40:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2244,2182,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:40:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2245,2183,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:40:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2246,2184,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:40:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2247,2185,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2248,2186,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:41:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2249,2187,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:41:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2250,2188,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:41:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2251,2189,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:41:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2252,2190,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2253,2191,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:48:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2254,2192,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:48:08',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2255,2193,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:48:12',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2256,2194,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:48:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2257,2195,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:48:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2258,2196,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:48:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2259,2197,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2260,2198,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:52:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2261,2199,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:52:12',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2262,2200,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:52:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2263,2201,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:52:19',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2264,2202,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:52:23',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2265,2203,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 09:52:26',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2266,2204,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2267,2205,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:10:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2268,2206,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:10:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2269,2207,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2270,2208,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:16:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2271,2209,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:16:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2272,2210,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:16:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2273,2211,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:16:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2274,2212,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2275,2213,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:21:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2276,2214,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:21:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2277,2215,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:21:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2278,2216,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:21:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2279,2217,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:21:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2280,2218,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:21:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2281,2219,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2282,2220,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:23:23',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2283,2221,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:23:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2284,2222,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2285,2223,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:26:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2286,2224,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:26:08',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2287,2225,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:26:11',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2288,2226,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:26:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2289,2227,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:26:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2290,2228,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:26:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2291,2229,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2292,2230,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:30:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2293,2231,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:30:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2294,2232,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:30:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2295,2233,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:30:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2296,2234,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2297,2235,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:31:13',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2298,2236,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:31:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2299,2237,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:31:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2300,2238,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:31:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2301,2239,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:31:19',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2302,2240,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:31:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2303,2241,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:31:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2304,2242,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:31:23',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2305,2243,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:31:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2306,2244,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:31:26',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2307,2245,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2308,2246,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:34:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2309,2247,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:34:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2310,2248,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:34:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2311,2249,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:34:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2312,2250,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:34:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2313,2251,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:34:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2314,2252,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2315,2253,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:42:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2316,2254,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:42:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2317,2255,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2318,2256,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:42:56',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2319,2257,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:42:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2320,2258,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:42:59',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2321,2259,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:43:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2322,2260,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:43:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2323,2261,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:43:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2324,2262,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:43:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2325,2263,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:43:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2326,2264,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:43:08',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2327,2265,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:43:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2328,2266,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:43:11',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2329,2267,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:43:12',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2330,2268,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2340,2278,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:50:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2341,2279,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:50:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2342,2280,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:50:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2343,2281,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:51:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2344,2282,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:51:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2345,2283,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:51:08',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2346,2284,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2347,2285,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:55:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2348,2286,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:55:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2349,2287,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:55:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2350,2288,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:55:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2351,2289,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:55:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2352,2290,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 10:55:55',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2353,2291,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2354,2292,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:03:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2355,2293,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:03:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2356,2294,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:03:12',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2357,2295,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:03:16',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2358,2296,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:03:19',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2359,2297,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:03:23',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2360,2298,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:03:26',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2361,2299,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:03:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2362,2300,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2363,2301,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:07:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2364,2302,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:07:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2365,2303,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:07:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2366,2304,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:07:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2367,2305,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:07:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2368,2306,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:07:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2369,2307,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:07:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2370,2308,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:07:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2371,2309,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2372,2310,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:14:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2373,2311,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:14:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2374,2312,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:14:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2375,2313,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:14:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2376,2314,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:14:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2377,2315,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:14:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2378,2316,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:14:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2379,2317,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:14:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2380,2318,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:14:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2381,2319,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:14:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2382,2320,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2392,2330,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:28:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2393,2331,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:28:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2394,2332,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:28:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2395,2333,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:28:57',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2396,2334,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:29:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2397,2335,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:29:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2398,2336,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2399,2337,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:36:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2400,2338,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:36:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2401,2339,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:36:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2402,2340,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:36:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2403,2341,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:36:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2404,2342,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:36:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2405,2343,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2406,2344,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:38:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2407,2345,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:38:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2408,2346,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:38:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2409,2347,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:38:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2410,2348,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:38:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2411,2349,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:38:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2412,2350,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2413,2351,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:43:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2414,2352,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:43:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2415,2353,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:43:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2416,2354,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:43:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2417,2355,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:43:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2418,2356,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:44:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2419,2357,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2420,2358,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:48:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2421,2359,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:48:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2422,2360,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:48:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2423,2361,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:48:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2424,2362,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:48:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2425,2363,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:48:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2426,2364,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:48:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2427,2365,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:48:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2428,2366,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2429,2367,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:49:13',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2430,2368,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:49:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2431,2369,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:49:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2432,2370,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:49:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2433,2371,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:49:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2434,2372,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:49:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2435,2373,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2436,2374,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:56:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2437,2375,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:56:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2438,2376,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:56:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2439,2377,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:56:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2440,2378,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:56:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2441,2379,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:56:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2442,2380,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:56:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2443,2381,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:56:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2444,2382,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:56:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2445,2383,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:56:41',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2446,2384,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:56:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2447,2385,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:56:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2448,2386,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:56:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2449,2387,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:56:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2450,2388,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:56:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2451,2389,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2452,2390,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:57:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2453,2391,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:57:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2454,2392,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:57:13',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2455,2393,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:57:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2456,2394,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:57:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2457,2395,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 11:57:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2458,2396,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2459,2397,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:24:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2460,2398,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:24:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2461,2399,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:24:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2462,2400,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:24:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2463,2401,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:24:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2464,2402,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:24:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2465,2403,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2466,2404,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:29:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2467,2405,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:29:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2468,2406,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:29:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2469,2407,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:29:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2470,2408,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:29:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2471,2409,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:29:55',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2472,2410,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2473,2411,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:32:19',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2474,2412,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:32:23',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2475,2413,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:32:26',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2476,2414,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:32:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2477,2415,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:32:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2478,2416,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:32:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2479,2417,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2480,2418,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:34:33',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2481,2419,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:34:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2482,2420,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:34:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2483,2421,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:34:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2484,2422,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:34:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2485,2423,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:34:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2486,2424,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2487,2425,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:42:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2488,2426,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:42:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2489,2427,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:42:55',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2490,2428,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:42:59',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2491,2429,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:43:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2492,2430,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:43:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2493,2431,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2494,2432,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:49:38',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2495,2433,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:49:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2496,2434,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:49:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2497,2435,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:49:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2498,2436,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:49:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2499,2437,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:49:56',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2500,2438,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:50:00',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2501,2439,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:50:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2502,2440,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2503,2441,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:59:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2504,2442,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:59:44',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2505,2443,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:59:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2506,2444,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:59:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2507,2445,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:59:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2508,2446,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:59:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2509,2447,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:59:52',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2510,2448,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:59:53',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2511,2449,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:59:55',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2512,2450,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:59:56',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2513,2451,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:59:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2514,2452,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 12:59:59',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2515,2453,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:00:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2516,2454,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:00:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2517,2455,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:00:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2518,2456,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2519,2457,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:05:59',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2520,2458,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:06:01',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2521,2459,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:06:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2522,2460,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:06:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2523,2461,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:06:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2524,2462,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:06:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2525,2463,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:06:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2526,2464,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:06:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2527,2465,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2528,2466,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:12:03',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2529,2467,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:12:04',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2530,2468,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:12:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2531,2469,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:12:07',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2532,2470,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:12:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2533,2471,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:12:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2534,2472,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:12:12',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2535,2473,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:12:14',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2536,2474,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:12:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2537,2475,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:12:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2538,2476,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:12:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2539,2477,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:12:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2540,2478,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2541,2479,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:35:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2542,2480,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:35:50',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2543,2481,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:35:54',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2544,2482,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:35:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2545,2483,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:36:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2546,2484,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:36:05',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2547,2485,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:36:09',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2548,2486,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:36:12',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2549,2487,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2550,2488,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:41:34',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2551,2489,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:41:36',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2552,2490,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:41:37',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2553,2491,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:41:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2554,2492,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:41:40',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2555,2493,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:41:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2556,2494,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:41:43',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2557,2495,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:41:45',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2558,2496,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:41:46',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2559,2497,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:41:48',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2560,2498,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:41:49',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2561,2499,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:41:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2562,2500,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2563,2501,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:47:11',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2564,2502,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:47:15',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2565,2503,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:47:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2566,2504,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:47:22',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2567,2505,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:47:25',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2568,2506,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:47:29',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2569,2507,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2570,2508,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:53:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2571,2509,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:53:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2572,2510,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:53:55',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2573,2511,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:53:58',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2574,2512,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:54:02',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2575,2513,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:54:06',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2576,2514,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:54:10',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2577,2515,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:54:13',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2578,2516,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 13:54:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2579,2517,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2580,2518,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:15:32',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2581,2519,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:15:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2582,2520,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:15:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2583,2521,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:15:42',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2584,2522,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:15:47',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2585,2523,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:15:51',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2586,2524,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2587,2525,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:30:18',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2588,2526,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:30:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2589,2527,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:30:21',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2590,2528,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:30:23',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2591,2529,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:30:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2592,2530,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:30:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2593,2531,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:30:28',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2594,2532,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:30:30',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2595,2533,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2596,2534,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:34:13',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2597,2535,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:34:17',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2598,2536,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:34:20',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2599,2537,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:34:24',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2600,2538,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:34:27',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2601,2539,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:34:31',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2602,2540,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:34:35',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2603,2541,1,NULL,0.0000,1,0,0,1,1.0000,1,10000.0000,1,0,'2019-03-07 14:34:39',1.0000,1,0,1,0,1,1.0000,1,0,0,0),(2604,2542,1,0.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,0,1,0,1,1.0000,1,0,0,0);
/*!40000 ALTER TABLE `cataloginventory_stock_item` ENABLE KEYS */;
UNLOCK TABLES;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_cataloginventory_stock_item_after_insert AFTER INSERT ON cataloginventory_stock_item FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_cataloginventory_stock_item_after_update AFTER UPDATE ON cataloginventory_stock_item FOR EACH ROW
BEGIN
IF (NEW.`item_id` <=> OLD.`item_id` OR NEW.`product_id` <=> OLD.`product_id` OR NEW.`stock_id` <=> OLD.`stock_id` OR NEW.`qty` <=> OLD.`qty` OR NEW.`min_qty` <=> OLD.`min_qty` OR NEW.`use_config_min_qty` <=> OLD.`use_config_min_qty` OR NEW.`is_qty_decimal` <=> OLD.`is_qty_decimal` OR NEW.`backorders` <=> OLD.`backorders` OR NEW.`use_config_backorders` <=> OLD.`use_config_backorders` OR NEW.`min_sale_qty` <=> OLD.`min_sale_qty` OR NEW.`use_config_min_sale_qty` <=> OLD.`use_config_min_sale_qty` OR NEW.`max_sale_qty` <=> OLD.`max_sale_qty` OR NEW.`use_config_max_sale_qty` <=> OLD.`use_config_max_sale_qty` OR NEW.`is_in_stock` <=> OLD.`is_in_stock` OR NEW.`low_stock_date` <=> OLD.`low_stock_date` OR NEW.`notify_stock_qty` <=> OLD.`notify_stock_qty` OR NEW.`use_config_notify_stock_qty` <=> OLD.`use_config_notify_stock_qty` OR NEW.`manage_stock` <=> OLD.`manage_stock` OR NEW.`use_config_manage_stock` <=> OLD.`use_config_manage_stock` OR NEW.`stock_status_changed_auto` <=> OLD.`stock_status_changed_auto` OR NEW.`use_config_qty_increments` <=> OLD.`use_config_qty_increments` OR NEW.`qty_increments` <=> OLD.`qty_increments` OR NEW.`use_config_enable_qty_inc` <=> OLD.`use_config_enable_qty_inc` OR NEW.`enable_qty_increments` <=> OLD.`enable_qty_increments` OR NEW.`is_decimal_divided` <=> OLD.`is_decimal_divided` OR NEW.`website_id` <=> OLD.`website_id`) THEN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`product_id`); END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection  = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = '' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`magento`@`%`*/ /*!50003 TRIGGER trg_cataloginventory_stock_item_after_delete AFTER DELETE ON cataloginventory_stock_item FOR EACH ROW
BEGIN
INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (OLD.`product_id`);
END */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

--
-- Table structure for table `cataloginventory_stock_status`
--

DROP TABLE IF EXISTS `cataloginventory_stock_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cataloginventory_stock_status` (
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock Id',
  `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty',
  `stock_status` smallint(5) unsigned NOT NULL COMMENT 'Stock Status',
  PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_ID` (`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_WEBSITE_ID` (`website_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_STATUS` (`stock_status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cataloginventory_stock_status`
--

LOCK TABLES `cataloginventory_stock_status` WRITE;
/*!40000 ALTER TABLE `cataloginventory_stock_status` DISABLE KEYS */;
INSERT INTO `cataloginventory_stock_status` VALUES (1333,0,1,0.0000,1),(1334,0,1,0.0000,1),(1335,0,1,0.0000,1),(1336,0,1,0.0000,1),(1337,0,1,0.0000,1),(1338,0,1,0.0000,1),(1339,0,1,0.0000,1),(1340,0,1,0.0000,1),(1341,0,1,0.0000,1),(1345,0,1,0.0000,1),(1346,0,1,0.0000,1),(1347,0,1,0.0000,1),(1348,0,1,0.0000,1),(1349,0,1,0.0000,1),(1350,0,1,0.0000,1),(1351,0,1,0.0000,1),(1352,0,1,0.0000,1),(1353,0,1,0.0000,1),(1354,0,1,0.0000,1),(1355,0,1,0.0000,1),(1356,0,1,0.0000,1),(1357,0,1,0.0000,1),(1358,0,1,0.0000,1),(1359,0,1,0.0000,1),(1360,0,1,0.0000,1),(1361,0,1,0.0000,1),(1362,0,1,0.0000,1),(1363,0,1,0.0000,1),(1364,0,1,0.0000,1),(1365,0,1,0.0000,1),(1366,0,1,0.0000,1),(1367,0,1,0.0000,1),(1368,0,1,0.0000,1),(1369,0,1,0.0000,1),(1370,0,1,0.0000,1),(1371,0,1,0.0000,1),(1372,0,1,0.0000,1),(1373,0,1,0.0000,1),(1374,0,1,0.0000,1),(1375,0,1,0.0000,1),(1376,0,1,0.0000,1),(1377,0,1,0.0000,1),(1378,0,1,0.0000,1),(1379,0,1,0.0000,1),(1380,0,1,0.0000,1),(1381,0,1,0.0000,1),(1383,0,1,0.0000,1),(1384,0,1,0.0000,1),(1385,0,1,0.0000,1),(1386,0,1,0.0000,1),(1387,0,1,0.0000,1),(1388,0,1,0.0000,1),(1389,0,1,0.0000,1),(1390,0,1,0.0000,1),(1391,0,1,0.0000,1),(1392,0,1,0.0000,1),(1393,0,1,0.0000,1),(1394,0,1,0.0000,1),(1395,0,1,0.0000,1),(1396,0,1,0.0000,1),(1397,0,1,0.0000,1),(1398,0,1,0.0000,1),(1399,0,1,0.0000,1),(1400,0,1,0.0000,1),(1401,0,1,0.0000,1),(1402,0,1,0.0000,1),(1403,0,1,0.0000,1),(1404,0,1,0.0000,1),(1405,0,1,0.0000,1),(1406,0,1,0.0000,1),(1407,0,1,0.0000,1),(1408,0,1,0.0000,1),(1409,0,1,0.0000,1),(1410,0,1,0.0000,1),(1411,0,1,0.0000,1),(1412,0,1,0.0000,1),(1413,0,1,0.0000,1),(1414,0,1,0.0000,1),(1415,0,1,0.0000,1),(1416,0,1,0.0000,1),(1417,0,1,0.0000,1),(1418,0,1,0.0000,1),(1419,0,1,0.0000,1),(1420,0,1,0.0000,1),(1421,0,1,0.0000,1),(1422,0,1,0.0000,1),(1423,0,1,0.0000,1),(1424,0,1,0.0000,1),(1425,0,1,0.0000,1),(1426,0,1,0.0000,1),(1427,0,1,0.0000,1),(1428,0,1,0.0000,1),(1429,0,1,0.0000,1),(1430,0,1,0.0000,1),(1431,0,1,0.0000,1),(1432,0,1,0.0000,1),(1433,0,1,0.0000,1),(1434,0,1,0.0000,1),(1435,0,1,0.0000,1),(1436,0,1,0.0000,1),(1437,0,1,0.0000,1),(1438,0,1,0.0000,1),(1439,0,1,0.0000,1),(1440,0,1,0.0000,1),(1441,0,1,0.0000,1),(1442,0,1,0.0000,1),(1443,0,1,0.0000,1),(1444,0,1,0.0000,1),(1445,0,1,0.0000,1),(1446,0,1,0.0000,1),(1447,0,1,0.0000,1),(1448,0,1,0.0000,1),(1449,0,1,0.0000,1),(1450,0,1,0.0000,1),(1451,0,1,0.0000,1),(1452,0,1,0.0000,1),(1453,0,1,0.0000,1),(1454,0,1,0.0000,1),(1455,0,1,0.0000,1),(1456,0,1,0.0000,1),(1457,0,1,0.0000,1),(1458,0,1,0.0000,1),(1459,0,1,0.0000,1),(1460,0,1,0.0000,1),(1461,0,1,0.0000,1),(1462,0,1,0.0000,1),(1463,0,1,0.0000,1),(1464,0,1,0.0000,1),(1465,0,1,0.0000,1),(1466,0,1,0.0000,1),(1467,0,1,0.0000,1),(1468,0,1,0.0000,1),(1469,0,1,0.0000,1),(1470,0,1,0.0000,1),(1471,0,1,0.0000,1),(1472,0,1,0.0000,1),(1473,0,1,0.0000,1),(1474,0,1,0.0000,1),(1475,0,1,0.0000,1),(1476,0,1,0.0000,1),(1477,0,1,0.0000,1),(1478,0,1,0.0000,1),(1479,0,1,0.0000,1),(1480,0,1,0.0000,1),(1481,0,1,0.0000,1),(1482,0,1,0.0000,1),(1483,0,1,0.0000,1),(1484,0,1,0.0000,1),(1485,0,1,0.0000,1),(1486,0,1,0.0000,1),(1487,0,1,0.0000,1),(1488,0,1,0.0000,1),(1489,0,1,0.0000,1),(1490,0,1,0.0000,1),(1491,0,1,0.0000,1),(1492,0,1,0.0000,1),(1493,0,1,0.0000,1),(1494,0,1,0.0000,1),(1495,0,1,0.0000,1),(1496,0,1,0.0000,1),(1497,0,1,0.0000,1),(1498,0,1,0.0000,1),(1499,0,1,0.0000,1),(1500,0,1,0.0000,1),(1501,0,1,0.0000,1),(1502,0,1,0.0000,1),(1503,0,1,0.0000,1),(1504,0,1,0.0000,1),(1505,0,1,0.0000,1),(1506,0,1,0.0000,1),(1507,0,1,0.0000,1),(1508,0,1,0.0000,1),(1509,0,1,0.0000,1),(1510,0,1,0.0000,1),(1511,0,1,0.0000,1),(1512,0,1,0.0000,1),(1513,0,1,0.0000,1),(1514,0,1,0.0000,1),(1515,0,1,0.0000,1),(1516,0,1,0.0000,1),(1517,0,1,0.0000,1),(1518,0,1,0.0000,1),(1519,0,1,0.0000,1),(1520,0,1,0.0000,1),(1521,0,1,0.0000,1),(1522,0,1,0.0000,1),(1523,0,1,0.0000,1),(1524,0,1,0.0000,1),(1525,0,1,0.0000,1),(1526,0,1,0.0000,1),(1527,0,1,0.0000,1),(1528,0,1,0.0000,1),(1529,0,1,0.0000,1),(1530,0,1,0.0000,1),(1531,0,1,0.0000,1),(1532,0,1,0.0000,1),(1533,0,1,0.0000,1),(1534,0,1,0.0000,1),(1535,0,1,0.0000,1),(1536,0,1,0.0000,1),(1537,0,1,0.0000,1),(1538,0,1,0.0000,1),(1539,0,1,0.0000,1),(1540,0,1,0.0000,1),(1541,0,1,0.0000,1),(1542,0,1,0.0000,1),(1543,0,1,0.0000,1),(1544,0,1,0.0000,1),(1545,0,1,0.0000,1),(1546,0,1,0.0000,1),(1547,0,1,0.0000,1),(1548,0,1,0.0000,1),(1549,0,1,0.0000,1),(1550,0,1,0.0000,1),(1551,0,1,0.0000,1),(1552,0,1,0.0000,1),(1553,0,1,0.0000,1),(1554,0,1,0.0000,1),(1555,0,1,0.0000,1),(1556,0,1,0.0000,1),(1557,0,1,0.0000,1),(1558,0,1,0.0000,1),(1559,0,1,0.0000,1),(1560,0,1,0.0000,1),(1561,0,1,0.0000,1),(1562,0,1,0.0000,1),(1563,0,1,0.0000,1),(1564,0,1,0.0000,1),(1565,0,1,0.0000,1),(1566,0,1,0.0000,1),(1567,0,1,0.0000,1),(1568,0,1,0.0000,1),(1569,0,1,0.0000,1),(1570,0,1,0.0000,1),(1571,0,1,0.0000,1),(1572,0,1,0.0000,1),(1573,0,1,0.0000,1),(1574,0,1,0.0000,1),(1575,0,1,0.0000,1),(1576,0,1,0.0000,1),(1577,0,1,0.0000,1),(1578,0,1,0.0000,1),(1579,0,1,0.0000,1),(1580,0,1,0.0000,1),(1581,0,1,0.0000,1),(1582,0,1,0.0000,1),(1583,0,1,0.0000,1),(1584,0,1,0.0000,1),(1585,0,1,0.0000,1),(1586,0,1,0.0000,1),(1587,0,1,0.0000,1),(1588,0,1,0.0000,1),(1589,0,1,0.0000,1),(1590,0,1,0.0000,1),(1591,0,1,0.0000,1),(1592,0,1,0.0000,1),(1593,0,1,0.0000,1),(1594,0,1,0.0000,1),(1595,0,1,0.0000,1),(1596,0,1,0.0000,1),(1597,0,1,0.0000,1),(1598,0,1,0.0000,1),(1599,0,1,0.0000,1),(1600,0,1,0.0000,1),(1601,0,1,0.0000,1),(1602,0,1,0.0000,1),(1603,0,1,0.0000,1),(1604,0,1,0.0000,1),(1605,0,1,0.0000,1),(1606,0,1,0.0000,1),(1607,0,1,0.0000,1),(1608,0,1,0.0000,1),(1609,0,1,0.0000,1),(1610,0,1,0.0000,1),(1611,0,1,0.0000,1),(1612,0,1,0.0000,1),(1613,0,1,0.0000,1),(1614,0,1,0.0000,1),(1615,0,1,0.0000,1),(1616,0,1,0.0000,1),(1617,0,1,0.0000,1),(1618,0,1,0.0000,1),(1619,0,1,0.0000,1),(1620,0,1,0.0000,1),(1621,0,1,0.0000,1),(1622,0,1,0.0000,1),(1623,0,1,0.0000,1),(1624,0,1,0.0000,1),(1625,0,1,0.0000,1),(1626,0,1,0.0000,1),(1627,0,1,0.0000,1),(1628,0,1,0.0000,1),(1629,0,1,0.0000,1),(1630,0,1,0.0000,1),(1631,0,1,0.0000,1),(1632,0,1,0.0000,1),(1633,0,1,0.0000,1),(1634,0,1,0.0000,1),(1635,0,1,0.0000,1),(1636,0,1,0.0000,1),(1637,0,1,0.0000,1),(1638,0,1,0.0000,1),(1639,0,1,0.0000,1),(1640,0,1,0.0000,1),(1641,0,1,0.0000,1),(1642,0,1,0.0000,1),(1643,0,1,0.0000,1),(1644,0,1,0.0000,1),(1645,0,1,0.0000,1),(1646,0,1,0.0000,1),(1647,0,1,0.0000,1),(1648,0,1,0.0000,1),(1649,0,1,0.0000,1),(1650,0,1,0.0000,1),(1651,0,1,0.0000,1),(1652,0,1,0.0000,1),(1653,0,1,0.0000,1),(1654,0,1,0.0000,1),(1655,0,1,0.0000,1),(1656,0,1,0.0000,1),(1657,0,1,0.0000,1),(1658,0,1,0.0000,1),(1659,0,1,0.0000,1),(1660,0,1,0.0000,1),(1661,0,1,0.0000,1),(1662,0,1,0.0000,1),(1663,0,1,0.0000,1),(1664,0,1,0.0000,1),(1665,0,1,0.0000,1),(1666,0,1,0.0000,1),(1667,0,1,0.0000,1),(1668,0,1,0.0000,1),(1669,0,1,0.0000,1),(1670,0,1,0.0000,1),(1671,0,1,0.0000,1),(1672,0,1,0.0000,1),(1673,0,1,0.0000,1),(1674,0,1,0.0000,1),(1675,0,1,0.0000,1),(1676,0,1,0.0000,1),(1677,0,1,0.0000,1),(1678,0,1,0.0000,1),(1679,0,1,0.0000,1),(1680,0,1,0.0000,1),(1681,0,1,0.0000,1),(1682,0,1,0.0000,1),(1683,0,1,0.0000,1),(1684,0,1,0.0000,1),(1685,0,1,0.0000,1),(1686,0,1,0.0000,1),(1687,0,1,0.0000,1),(1688,0,1,0.0000,1),(1689,0,1,0.0000,1),(1690,0,1,0.0000,1),(1692,0,1,0.0000,1),(1693,0,1,0.0000,1),(1694,0,1,0.0000,1),(1695,0,1,0.0000,1),(1696,0,1,0.0000,1),(1697,0,1,0.0000,1),(1698,0,1,0.0000,1),(1699,0,1,0.0000,1),(1700,0,1,0.0000,1),(1701,0,1,0.0000,1),(1702,0,1,0.0000,1),(1703,0,1,0.0000,1),(1704,0,1,0.0000,1),(1705,0,1,0.0000,1),(1706,0,1,0.0000,1),(1707,0,1,0.0000,1),(1708,0,1,0.0000,1),(1709,0,1,0.0000,1),(1710,0,1,0.0000,1),(1711,0,1,0.0000,1),(1712,0,1,0.0000,1),(1713,0,1,0.0000,1),(1714,0,1,0.0000,1),(1715,0,1,0.0000,1),(1716,0,1,0.0000,1),(1717,0,1,0.0000,1),(1718,0,1,0.0000,1),(1719,0,1,0.0000,1),(1720,0,1,0.0000,1),(1721,0,1,0.0000,1),(1722,0,1,0.0000,1),(1723,0,1,0.0000,1),(1724,0,1,0.0000,1),(1725,0,1,0.0000,1),(1726,0,1,0.0000,1),(1727,0,1,0.0000,1),(1728,0,1,0.0000,1),(1729,0,1,0.0000,1),(1730,0,1,0.0000,1),(1731,0,1,0.0000,1),(1732,0,1,0.0000,1),(1733,0,1,0.0000,1),(1734,0,1,0.0000,1),(1735,0,1,0.0000,1),(1736,0,1,0.0000,1),(1737,0,1,0.0000,1),(1738,0,1,0.0000,1),(1739,0,1,0.0000,1),(1740,0,1,0.0000,1),(1741,0,1,0.0000,1),(1742,0,1,0.0000,1),(1743,0,1,0.0000,1),(1744,0,1,0.0000,1),(1745,0,1,0.0000,1),(1746,0,1,0.0000,1),(1747,0,1,0.0000,1),(1748,0,1,0.0000,1),(1749,0,1,0.0000,1),(1750,0,1,0.0000,1),(1751,0,1,0.0000,1),(1752,0,1,0.0000,1),(1753,0,1,0.0000,1),(1754,0,1,0.0000,1),(1755,0,1,0.0000,1),(1756,0,1,0.0000,1),(1757,0,1,0.0000,1),(1758,0,1,0.0000,1),(1759,0,1,0.0000,1),(1760,0,1,0.0000,1),(1761,0,1,0.0000,1),(1762,0,1,0.0000,1),(1763,0,1,0.0000,1),(1764,0,1,0.0000,1),(1765,0,1,0.0000,1),(1766,0,1,0.0000,1),(1767,0,1,0.0000,1),(1768,0,1,0.0000,1),(1769,0,1,0.0000,1),(1770,0,1,0.0000,1),(1771,0,1,0.0000,1),(1772,0,1,0.0000,1),(1773,0,1,0.0000,1),(1774,0,1,0.0000,1),(1775,0,1,0.0000,1),(1776,0,1,0.0000,1),(1777,0,1,0.0000,1),(1778,0,1,0.0000,1),(1779,0,1,0.0000,1),(1780,0,1,0.0000,1),(1781,0,1,0.0000,1),(1782,0,1,0.0000,1),(1783,0,1,0.0000,1),(1784,0,1,0.0000,1),(1785,0,1,0.0000,1),(1786,0,1,0.0000,1),(1787,0,1,0.0000,1),(1788,0,1,0.0000,1),(1789,0,1,0.0000,1),(1790,0,1,0.0000,1),(1791,0,1,0.0000,1),(1792,0,1,0.0000,1),(1793,0,1,0.0000,1),(1794,0,1,0.0000,1),(1795,0,1,0.0000,1),(1796,0,1,0.0000,1),(1797,0,1,0.0000,1),(1798,0,1,0.0000,1),(1799,0,1,0.0000,1),(1800,0,1,0.0000,1),(1801,0,1,0.0000,1),(1802,0,1,0.0000,1),(1803,0,1,0.0000,1),(1804,0,1,0.0000,1),(1805,0,1,0.0000,1),(1806,0,1,0.0000,1),(1807,0,1,0.0000,1),(1808,0,1,0.0000,1),(1809,0,1,0.0000,1),(1810,0,1,0.0000,1),(1811,0,1,0.0000,1),(1812,0,1,0.0000,1),(1813,0,1,0.0000,1),(1814,0,1,0.0000,1),(1815,0,1,0.0000,1),(1816,0,1,0.0000,1),(1817,0,1,0.0000,1),(1818,0,1,0.0000,1),(1819,0,1,0.0000,1),(1820,0,1,0.0000,1),(1821,0,1,0.0000,1),(1822,0,1,0.0000,1),(1823,0,1,0.0000,1),(1824,0,1,0.0000,1),(1825,0,1,0.0000,1),(1826,0,1,0.0000,1),(1827,0,1,0.0000,1),(1828,0,1,0.0000,1),(1829,0,1,0.0000,1),(1830,0,1,0.0000,1),(1831,0,1,0.0000,1),(1832,0,1,0.0000,1),(1834,0,1,0.0000,1),(1835,0,1,0.0000,1),(1836,0,1,0.0000,1),(1837,0,1,0.0000,1),(1838,0,1,0.0000,1),(1839,0,1,0.0000,1),(1840,0,1,0.0000,1),(1841,0,1,0.0000,1),(1842,0,1,0.0000,1),(1843,0,1,0.0000,1),(1844,0,1,0.0000,1),(1845,0,1,0.0000,1),(1846,0,1,0.0000,1),(1847,0,1,0.0000,1),(1848,0,1,0.0000,1),(1849,0,1,0.0000,1),(1850,0,1,0.0000,1),(1851,0,1,0.0000,1),(1852,0,1,0.0000,1),(1853,0,1,0.0000,1),(1854,0,1,0.0000,1),(1855,0,1,0.0000,1),(1856,0,1,0.0000,1),(1857,0,1,0.0000,1),(1858,0,1,0.0000,1),(1859,0,1,0.0000,1),(1860,0,1,0.0000,1),(1861,0,1,0.0000,1),(1862,0,1,0.0000,1),(1863,0,1,0.0000,1),(1864,0,1,0.0000,1),(1865,0,1,0.0000,1),(1866,0,1,0.0000,1),(1867,0,1,0.0000,1),(1868,0,1,0.0000,1),(1869,0,1,0.0000,1),(1870,0,1,0.0000,1),(1871,0,1,0.0000,1),(1872,0,1,0.0000,1),(1873,0,1,0.0000,1),(1874,0,1,0.0000,1),(1875,0,1,0.0000,1),(1876,0,1,0.0000,1),(1877,0,1,0.0000,1),(1878,0,1,0.0000,1),(1879,0,1,0.0000,1),(1880,0,1,0.0000,1),(1881,0,1,0.0000,1),(1882,0,1,0.0000,1),(1883,0,1,0.0000,1),(1884,0,1,0.0000,1),(1885,0,1,0.0000,1),(1886,0,1,0.0000,1),(1887,0,1,0.0000,1),(1888,0,1,0.0000,1),(1889,0,1,0.0000,1),(1890,0,1,0.0000,1),(1891,0,1,0.0000,1),(1892,0,1,0.0000,1),(1893,0,1,0.0000,1),(1894,0,1,0.0000,1),(1895,0,1,0.0000,1),(1896,0,1,0.0000,1),(1897,0,1,0.0000,1),(1898,0,1,0.0000,1),(1899,0,1,0.0000,1),(1900,0,1,0.0000,1),(1901,0,1,0.0000,1),(1902,0,1,0.0000,1),(1903,0,1,0.0000,1),(1904,0,1,0.0000,1),(1905,0,1,0.0000,1),(1906,0,1,0.0000,1),(1907,0,1,0.0000,1),(1908,0,1,0.0000,1),(1909,0,1,0.0000,1),(1910,0,1,0.0000,1),(1911,0,1,0.0000,1),(1912,0,1,0.0000,1),(1913,0,1,0.0000,1),(1914,0,1,0.0000,1),(1915,0,1,0.0000,1),(1916,0,1,0.0000,1),(1917,0,1,0.0000,1),(1918,0,1,0.0000,1),(1919,0,1,0.0000,1),(1920,0,1,0.0000,1),(1921,0,1,0.0000,1),(1922,0,1,0.0000,1),(1923,0,1,0.0000,1),(1924,0,1,0.0000,1),(1925,0,1,0.0000,1),(1926,0,1,0.0000,1),(1927,0,1,0.0000,1),(1928,0,1,0.0000,1),(1929,0,1,0.0000,1),(1930,0,1,0.0000,1),(1931,0,1,0.0000,1),(1932,0,1,0.0000,1),(1933,0,1,0.0000,1),(1934,0,1,0.0000,1),(1935,0,1,0.0000,1),(1936,0,1,0.0000,1),(1937,0,1,0.0000,1),(1938,0,1,0.0000,1),(1939,0,1,0.0000,1),(1940,0,1,0.0000,1),(1941,0,1,0.0000,1),(1942,0,1,0.0000,1),(1943,0,1,0.0000,1),(1944,0,1,0.0000,1),(1945,0,1,0.0000,1),(1946,0,1,0.0000,1),(1947,0,1,0.0000,1),(1948,0,1,0.0000,1),(1949,0,1,0.0000,1),(1950,0,1,0.0000,1),(1951,0,1,0.0000,1),(1952,0,1,0.0000,1),(1953,0,1,0.0000,1),(1954,0,1,0.0000,1),(1955,0,1,0.0000,1),(1956,0,1,0.0000,1),(1957,0,1,0.0000,1),(1958,0,1,0.0000,1),(1959,0,1,0.0000,1),(1960,0,1,0.0000,1),(1961,0,1,0.0000,1),(1962,0,1,0.0000,1),(1963,0,1,0.0000,1),(1964,0,1,0.0000,1),(1965,0,1,0.0000,1),(1966,0,1,0.0000,1),(1967,0,1,0.0000,1),(1968,0,1,0.0000,1),(1969,0,1,0.0000,1),(1970,0,1,0.0000,1),(1971,0,1,0.0000,1),(1972,0,1,0.0000,1),(1973,0,1,0.0000,1),(1974,0,1,0.0000,1),(1975,0,1,0.0000,1),(1976,0,1,0.0000,1),(1977,0,1,0.0000,1),(1978,0,1,0.0000,1),(1979,0,1,0.0000,1),(1980,0,1,0.0000,1),(1981,0,1,0.0000,1),(1982,0,1,0.0000,1),(1983,0,1,0.0000,1),(1984,0,1,0.0000,1),(1985,0,1,0.0000,1),(1986,0,1,0.0000,1),(1987,0,1,0.0000,1),(1988,0,1,0.0000,1),(1989,0,1,0.0000,1),(1990,0,1,0.0000,1),(1991,0,1,0.0000,1),(1992,0,1,0.0000,1),(1993,0,1,0.0000,1),(1994,0,1,0.0000,1),(1995,0,1,0.0000,1),(1996,0,1,0.0000,1),(1997,0,1,0.0000,1),(1998,0,1,0.0000,1),(1999,0,1,0.0000,1),(2000,0,1,0.0000,1),(2001,0,1,0.0000,1),(2002,0,1,0.0000,1),(2003,0,1,0.0000,1),(2004,0,1,0.0000,1),(2005,0,1,0.0000,1),(2006,0,1,0.0000,1),(2007,0,1,0.0000,1),(2008,0,1,0.0000,1),(2009,0,1,0.0000,1),(2010,0,1,0.0000,1),(2011,0,1,0.0000,1),(2012,0,1,0.0000,1),(2013,0,1,0.0000,1),(2014,0,1,0.0000,1),(2015,0,1,0.0000,1),(2016,0,1,0.0000,1),(2017,0,1,0.0000,1),(2018,0,1,0.0000,1),(2019,0,1,0.0000,1),(2020,0,1,0.0000,1),(2021,0,1,0.0000,1),(2022,0,1,0.0000,1),(2023,0,1,0.0000,1),(2024,0,1,0.0000,1),(2025,0,1,0.0000,1),(2026,0,1,0.0000,1),(2027,0,1,0.0000,1),(2028,0,1,0.0000,1),(2029,0,1,0.0000,1),(2030,0,1,0.0000,1),(2031,0,1,0.0000,1),(2032,0,1,0.0000,1),(2033,0,1,0.0000,1),(2034,0,1,0.0000,1),(2035,0,1,0.0000,1),(2036,0,1,0.0000,1),(2037,0,1,0.0000,1),(2038,0,1,0.0000,1),(2039,0,1,0.0000,1),(2040,0,1,0.0000,1),(2042,0,1,0.0000,1),(2043,0,1,0.0000,1),(2044,0,1,0.0000,1),(2045,0,1,0.0000,1),(2046,0,1,0.0000,1),(2047,0,1,0.0000,1),(2048,0,1,0.0000,1),(2049,0,1,0.0000,1),(2050,0,1,0.0000,1),(2051,0,1,0.0000,1),(2052,0,1,0.0000,1),(2053,0,1,0.0000,1),(2054,0,1,0.0000,1),(2055,0,1,0.0000,1),(2056,0,1,0.0000,1),(2057,0,1,0.0000,1),(2058,0,1,0.0000,1),(2059,0,1,0.0000,1),(2060,0,1,0.0000,1),(2061,0,1,0.0000,1),(2062,0,1,0.0000,1),(2063,0,1,0.0000,1),(2064,0,1,0.0000,1),(2065,0,1,0.0000,1),(2066,0,1,0.0000,1),(2067,0,1,0.0000,1),(2068,0,1,0.0000,1),(2069,0,1,0.0000,1),(2070,0,1,0.0000,1),(2071,0,1,0.0000,1),(2072,0,1,0.0000,1),(2073,0,1,0.0000,1),(2074,0,1,0.0000,1),(2075,0,1,0.0000,1),(2076,0,1,0.0000,1),(2077,0,1,0.0000,1),(2078,0,1,0.0000,1),(2079,0,1,0.0000,1),(2080,0,1,0.0000,1),(2081,0,1,0.0000,1),(2082,0,1,0.0000,1),(2083,0,1,0.0000,1),(2084,0,1,0.0000,1),(2085,0,1,0.0000,1),(2086,0,1,0.0000,1),(2087,0,1,0.0000,1),(2088,0,1,0.0000,1),(2089,0,1,0.0000,1),(2090,0,1,0.0000,1),(2091,0,1,0.0000,1),(2092,0,1,0.0000,1),(2093,0,1,0.0000,1),(2094,0,1,0.0000,1),(2095,0,1,0.0000,1),(2096,0,1,0.0000,1),(2097,0,1,0.0000,1),(2098,0,1,0.0000,1),(2099,0,1,0.0000,1),(2100,0,1,0.0000,1),(2101,0,1,0.0000,1),(2102,0,1,0.0000,1),(2103,0,1,0.0000,1),(2104,0,1,0.0000,1),(2105,0,1,0.0000,1),(2106,0,1,0.0000,1),(2107,0,1,0.0000,1),(2108,0,1,0.0000,1),(2109,0,1,0.0000,1),(2110,0,1,0.0000,1),(2111,0,1,0.0000,1),(2112,0,1,0.0000,1),(2113,0,1,0.0000,1),(2114,0,1,0.0000,1),(2115,0,1,0.0000,1),(2116,0,1,0.0000,1),(2117,0,1,0.0000,1),(2118,0,1,0.0000,1),(2119,0,1,0.0000,1),(2120,0,1,0.0000,1),(2121,0,1,0.0000,1),(2122,0,1,0.0000,1),(2123,0,1,0.0000,1),(2124,0,1,0.0000,1),(2125,0,1,0.0000,1),(2126,0,1,0.0000,1),(2127,0,1,0.0000,1),(2128,0,1,0.0000,1),(2129,0,1,0.0000,1),(2130,0,1,0.0000,1),(2131,0,1,0.0000,1),(2132,0,1,0.0000,1),(2133,0,1,0.0000,1),(2134,0,1,0.0000,1),(2135,0,1,0.0000,1),(2136,0,1,0.0000,1),(2137,0,1,0.0000,1),(2138,0,1,0.0000,1),(2139,0,1,0.0000,1),(2140,0,1,0.0000,1),(2141,0,1,0.0000,1),(2142,0,1,0.0000,1),(2143,0,1,0.0000,1),(2144,0,1,0.0000,1),(2145,0,1,0.0000,1),(2146,0,1,0.0000,1),(2147,0,1,0.0000,1),(2148,0,1,0.0000,1),(2149,0,1,0.0000,1),(2150,0,1,0.0000,1),(2151,0,1,0.0000,1),(2152,0,1,0.0000,1),(2153,0,1,0.0000,1),(2154,0,1,0.0000,1),(2155,0,1,0.0000,1),(2156,0,1,0.0000,1),(2157,0,1,0.0000,1),(2158,0,1,0.0000,1),(2159,0,1,0.0000,1),(2160,0,1,0.0000,1),(2161,0,1,0.0000,1),(2162,0,1,0.0000,1),(2163,0,1,0.0000,1),(2164,0,1,0.0000,1),(2165,0,1,0.0000,1),(2166,0,1,0.0000,1),(2167,0,1,0.0000,1),(2168,0,1,0.0000,1),(2169,0,1,0.0000,1),(2170,0,1,0.0000,1),(2171,0,1,0.0000,1),(2172,0,1,0.0000,1),(2173,0,1,0.0000,1),(2174,0,1,0.0000,1),(2175,0,1,0.0000,1),(2176,0,1,0.0000,1),(2177,0,1,0.0000,1),(2178,0,1,0.0000,1),(2179,0,1,0.0000,1),(2180,0,1,0.0000,1),(2181,0,1,0.0000,1),(2182,0,1,0.0000,1),(2183,0,1,0.0000,1),(2184,0,1,0.0000,1),(2185,0,1,0.0000,1),(2186,0,1,0.0000,1),(2187,0,1,0.0000,1),(2188,0,1,0.0000,1),(2189,0,1,0.0000,1),(2190,0,1,0.0000,1),(2191,0,1,0.0000,1),(2192,0,1,0.0000,1),(2193,0,1,0.0000,1),(2194,0,1,0.0000,1),(2195,0,1,0.0000,1),(2196,0,1,0.0000,1),(2197,0,1,0.0000,1),(2198,0,1,0.0000,1),(2199,0,1,0.0000,1),(2200,0,1,0.0000,1),(2201,0,1,0.0000,1),(2202,0,1,0.0000,1),(2203,0,1,0.0000,1),(2204,0,1,0.0000,1),(2205,0,1,0.0000,1),(2206,0,1,0.0000,1),(2207,0,1,0.0000,1),(2208,0,1,0.0000,1),(2209,0,1,0.0000,1),(2210,0,1,0.0000,1),(2211,0,1,0.0000,1),(2212,0,1,0.0000,1),(2213,0,1,0.0000,1),(2214,0,1,0.0000,1),(2215,0,1,0.0000,1),(2216,0,1,0.0000,1),(2217,0,1,0.0000,1),(2218,0,1,0.0000,1),(2219,0,1,0.0000,1),(2220,0,1,0.0000,1),(2221,0,1,0.0000,1),(2222,0,1,0.0000,1),(2223,0,1,0.0000,1),(2224,0,1,0.0000,1),(2225,0,1,0.0000,1),(2226,0,1,0.0000,1),(2227,0,1,0.0000,1),(2228,0,1,0.0000,1),(2229,0,1,0.0000,1),(2230,0,1,0.0000,1),(2231,0,1,0.0000,1),(2232,0,1,0.0000,1),(2233,0,1,0.0000,1),(2234,0,1,0.0000,1),(2235,0,1,0.0000,1),(2236,0,1,0.0000,1),(2237,0,1,0.0000,1),(2238,0,1,0.0000,1),(2239,0,1,0.0000,1),(2240,0,1,0.0000,1),(2241,0,1,0.0000,1),(2242,0,1,0.0000,1),(2243,0,1,0.0000,1),(2244,0,1,0.0000,1),(2245,0,1,0.0000,1),(2246,0,1,0.0000,1),(2247,0,1,0.0000,1),(2248,0,1,0.0000,1),(2249,0,1,0.0000,1),(2250,0,1,0.0000,1),(2251,0,1,0.0000,1),(2252,0,1,0.0000,1),(2253,0,1,0.0000,1),(2254,0,1,0.0000,1),(2255,0,1,0.0000,1),(2256,0,1,0.0000,1),(2257,0,1,0.0000,1),(2258,0,1,0.0000,1),(2259,0,1,0.0000,1),(2260,0,1,0.0000,1),(2261,0,1,0.0000,1),(2262,0,1,0.0000,1),(2263,0,1,0.0000,1),(2264,0,1,0.0000,1),(2265,0,1,0.0000,1),(2266,0,1,0.0000,1),(2267,0,1,0.0000,1),(2268,0,1,0.0000,1),(2269,0,1,0.0000,1),(2270,0,1,0.0000,1),(2271,0,1,0.0000,1),(2272,0,1,0.0000,1),(2273,0,1,0.0000,1),(2274,0,1,0.0000,1),(2275,0,1,0.0000,1),(2276,0,1,0.0000,1),(2278,0,1,0.0000,1),(2279,0,1,0.0000,1),(2280,0,1,0.0000,1),(2281,0,1,0.0000,1),(2282,0,1,0.0000,1),(2283,0,1,0.0000,1),(2284,0,1,0.0000,1),(2285,0,1,0.0000,1),(2286,0,1,0.0000,1),(2287,0,1,0.0000,1),(2288,0,1,0.0000,1),(2289,0,1,0.0000,1),(2290,0,1,0.0000,1),(2291,0,1,0.0000,1),(2292,0,1,0.0000,1),(2293,0,1,0.0000,1),(2294,0,1,0.0000,1),(2295,0,1,0.0000,1),(2296,0,1,0.0000,1),(2297,0,1,0.0000,1),(2298,0,1,0.0000,1),(2299,0,1,0.0000,1),(2300,0,1,0.0000,1),(2301,0,1,0.0000,1),(2302,0,1,0.0000,1),(2303,0,1,0.0000,1),(2304,0,1,0.0000,1),(2305,0,1,0.0000,1),(2306,0,1,0.0000,1),(2307,0,1,0.0000,1),(2308,0,1,0.0000,1),(2309,0,1,0.0000,1),(2310,0,1,0.0000,1),(2311,0,1,0.0000,1),(2312,0,1,0.0000,1),(2313,0,1,0.0000,1),(2314,0,1,0.0000,1),(2315,0,1,0.0000,1),(2316,0,1,0.0000,1),(2317,0,1,0.0000,1),(2318,0,1,0.0000,1),(2319,0,1,0.0000,1),(2320,0,1,0.0000,1),(2321,0,1,0.0000,1),(2322,0,1,0.0000,1),(2323,0,1,0.0000,1),(2324,0,1,0.0000,1),(2325,0,1,0.0000,1),(2326,0,1,0.0000,1),(2327,0,1,0.0000,1),(2328,0,1,0.0000,1),(2330,0,1,0.0000,1),(2331,0,1,0.0000,1),(2332,0,1,0.0000,1),(2333,0,1,0.0000,1),(2334,0,1,0.0000,1),(2335,0,1,0.0000,1),(2336,0,1,0.0000,1),(2337,0,1,0.0000,1),(2338,0,1,0.0000,1),(2339,0,1,0.0000,1),(2340,0,1,0.0000,1),(2341,0,1,0.0000,1),(2342,0,1,0.0000,1),(2343,0,1,0.0000,1),(2344,0,1,0.0000,1),(2345,0,1,0.0000,1),(2346,0,1,0.0000,1),(2347,0,1,0.0000,1),(2348,0,1,0.0000,1),(2349,0,1,0.0000,1),(2350,0,1,0.0000,1),(2351,0,1,0.0000,1),(2352,0,1,0.0000,1),(2353,0,1,0.0000,1),(2354,0,1,0.0000,1),(2355,0,1,0.0000,1),(2356,0,1,0.0000,1),(2357,0,1,0.0000,1),(2358,0,1,0.0000,1),(2359,0,1,0.0000,1),(2360,0,1,0.0000,1),(2361,0,1,0.0000,1),(2362,0,1,0.0000,1),(2363,0,1,0.0000,1),(2364,0,1,0.0000,1),(2365,0,1,0.0000,1),(2366,0,1,0.0000,1),(2367,0,1,0.0000,1),(2368,0,1,0.0000,1),(2369,0,1,0.0000,1),(2370,0,1,0.0000,1),(2371,0,1,0.0000,1),(2372,0,1,0.0000,1),(2373,0,1,0.0000,1),(2374,0,1,0.0000,1),(2375,0,1,0.0000,1),(2376,0,1,0.0000,1),(2377,0,1,0.0000,1),(2378,0,1,0.0000,1),(2379,0,1,0.0000,1),(2380,0,1,0.0000,1),(2381,0,1,0.0000,1),(2382,0,1,0.0000,1),(2383,0,1,0.0000,1),(2384,0,1,0.0000,1),(2385,0,1,0.0000,1),(2386,0,1,0.0000,1),(2387,0,1,0.0000,1),(2388,0,1,0.0000,1),(2389,0,1,0.0000,1),(2390,0,1,0.0000,1),(2391,0,1,0.0000,1),(2392,0,1,0.0000,1),(2393,0,1,0.0000,1),(2394,0,1,0.0000,1),(2395,0,1,0.0000,1),(2396,0,1,0.0000,1),(2397,0,1,0.0000,1),(2398,0,1,0.0000,1),(2399,0,1,0.0000,1),(2400,0,1,0.0000,1),(2401,0,1,0.0000,1),(2402,0,1,0.0000,1),(2403,0,1,0.0000,1),(2404,0,1,0.0000,1),(2405,0,1,0.0000,1),(2406,0,1,0.0000,1),(2407,0,1,0.0000,1),(2408,0,1,0.0000,1),(2409,0,1,0.0000,1),(2410,0,1,0.0000,1),(2411,0,1,0.0000,1),(2412,0,1,0.0000,1),(2413,0,1,0.0000,1),(2414,0,1,0.0000,1),(2415,0,1,0.0000,1),(2416,0,1,0.0000,1),(2417,0,1,0.0000,1),(2418,0,1,0.0000,1),(2419,0,1,0.0000,1),(2420,0,1,0.0000,1),(2421,0,1,0.0000,1),(2422,0,1,0.0000,1),(2423,0,1,0.0000,1),(2424,0,1,0.0000,1),(2425,0,1,0.0000,1),(2426,0,1,0.0000,1),(2427,0,1,0.0000,1),(2428,0,1,0.0000,1),(2429,0,1,0.0000,1),(2430,0,1,0.0000,1),(2431,0,1,0.0000,1),(2432,0,1,0.0000,1),(2433,0,1,0.0000,1),(2434,0,1,0.0000,1),(2435,0,1,0.0000,1),(2436,0,1,0.0000,1),(2437,0,1,0.0000,1),(2438,0,1,0.0000,1),(2439,0,1,0.0000,1),(2440,0,1,0.0000,1),(2441,0,1,0.0000,1),(2442,0,1,0.0000,1),(2443,0,1,0.0000,1),(2444,0,1,0.0000,1),(2445,0,1,0.0000,1),(2446,0,1,0.0000,1),(2447,0,1,0.0000,1),(2448,0,1,0.0000,1),(2449,0,1,0.0000,1),(2450,0,1,0.0000,1),(2451,0,1,0.0000,1),(2452,0,1,0.0000,1),(2453,0,1,0.0000,1),(2454,0,1,0.0000,1),(2455,0,1,0.0000,1),(2456,0,1,0.0000,1),(2457,0,1,0.0000,1),(2458,0,1,0.0000,1),(2459,0,1,0.0000,1),(2460,0,1,0.0000,1),(2461,0,1,0.0000,1),(2462,0,1,0.0000,1),(2463,0,1,0.0000,1),(2464,0,1,0.0000,1),(2465,0,1,0.0000,1),(2466,0,1,0.0000,1),(2467,0,1,0.0000,1),(2468,0,1,0.0000,1),(2469,0,1,0.0000,1),(2470,0,1,0.0000,1),(2471,0,1,0.0000,1),(2472,0,1,0.0000,1),(2473,0,1,0.0000,1),(2474,0,1,0.0000,1),(2475,0,1,0.0000,1),(2476,0,1,0.0000,1),(2477,0,1,0.0000,1),(2478,0,1,0.0000,1),(2479,0,1,0.0000,1),(2480,0,1,0.0000,1),(2481,0,1,0.0000,1),(2482,0,1,0.0000,1),(2483,0,1,0.0000,1),(2484,0,1,0.0000,1),(2485,0,1,0.0000,1),(2486,0,1,0.0000,1),(2487,0,1,0.0000,1),(2488,0,1,0.0000,1),(2489,0,1,0.0000,1),(2490,0,1,0.0000,1),(2491,0,1,0.0000,1),(2492,0,1,0.0000,1),(2493,0,1,0.0000,1),(2494,0,1,0.0000,1),(2495,0,1,0.0000,1),(2496,0,1,0.0000,1),(2497,0,1,0.0000,1),(2498,0,1,0.0000,1),(2499,0,1,0.0000,1),(2500,0,1,0.0000,1),(2501,0,1,0.0000,1),(2502,0,1,0.0000,1),(2503,0,1,0.0000,1),(2504,0,1,0.0000,1),(2505,0,1,0.0000,1),(2506,0,1,0.0000,1),(2507,0,1,0.0000,1),(2508,0,1,0.0000,1),(2509,0,1,0.0000,1),(2510,0,1,0.0000,1),(2511,0,1,0.0000,1),(2512,0,1,0.0000,1),(2513,0,1,0.0000,1),(2514,0,1,0.0000,1),(2515,0,1,0.0000,1),(2516,0,1,0.0000,1),(2517,0,1,0.0000,1),(2518,0,1,0.0000,1),(2519,0,1,0.0000,1),(2520,0,1,0.0000,1),(2521,0,1,0.0000,1),(2522,0,1,0.0000,1),(2523,0,1,0.0000,1),(2524,0,1,0.0000,1),(2525,0,1,0.0000,1),(2526,0,1,0.0000,1),(2527,0,1,0.0000,1),(2528,0,1,0.0000,1),(2529,0,1,0.0000,1),(2530,0,1,0.0000,1),(2531,0,1,0.0000,1),(2532,0,1,0.0000,1),(2533,0,1,0.0000,1),(2534,0,1,0.0000,1),(2535,0,1,0.0000,1),(2536,0,1,0.0000,1),(2537,0,1,0.0000,1),(2538,0,1,0.0000,1),(2539,0,1,0.0000,1),(2540,0,1,0.0000,1),(2541,0,1,0.0000,1),(2542,0,1,0.0000,1);
/*!40000 ALTER TABLE `cataloginventory_stock_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cataloginventory_stock_status_idx`
--

DROP TABLE IF EXISTS `cataloginventory_stock_status_idx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cataloginventory_stock_status_idx` (
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock Id',
  `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty',
  `stock_status` smallint(5) unsigned NOT NULL COMMENT 'Stock Status',
  PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_IDX_STOCK_ID` (`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_IDX_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status Indexer Idx';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cataloginventory_stock_status_idx`
--

LOCK TABLES `cataloginventory_stock_status_idx` WRITE;
/*!40000 ALTER TABLE `cataloginventory_stock_status_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `cataloginventory_stock_status_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cataloginventory_stock_status_replica`
--

DROP TABLE IF EXISTS `cataloginventory_stock_status_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cataloginventory_stock_status_replica` (
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock Id',
  `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty',
  `stock_status` smallint(5) unsigned NOT NULL COMMENT 'Stock Status',
  PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_ID` (`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_WEBSITE_ID` (`website_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_STATUS` (`stock_status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cataloginventory_stock_status_replica`
--

LOCK TABLES `cataloginventory_stock_status_replica` WRITE;
/*!40000 ALTER TABLE `cataloginventory_stock_status_replica` DISABLE KEYS */;
INSERT INTO `cataloginventory_stock_status_replica` VALUES (1,0,1,0.0000,1),(2,0,1,0.0000,1),(3,0,1,0.0000,1),(4,0,1,0.0000,1),(5,0,1,0.0000,1),(6,0,1,0.0000,1),(7,0,1,0.0000,1),(8,0,1,0.0000,1),(9,0,1,0.0000,1),(10,0,1,0.0000,1),(11,0,1,0.0000,1),(12,0,1,0.0000,1),(15,0,1,0.0000,1),(16,0,1,0.0000,1),(17,0,1,0.0000,1),(18,0,1,0.0000,1),(19,0,1,0.0000,1),(20,0,1,0.0000,1),(22,0,1,0.0000,1),(24,0,1,0.0000,1),(25,0,1,0.0000,1),(26,0,1,0.0000,1),(29,0,1,0.0000,1),(30,0,1,0.0000,1),(31,0,1,0.0000,1),(32,0,1,0.0000,1),(33,0,1,0.0000,1),(34,0,1,0.0000,1),(35,0,1,0.0000,1),(36,0,1,0.0000,1),(38,0,1,0.0000,1),(41,0,1,0.0000,1),(42,0,1,0.0000,1),(43,0,1,0.0000,1),(44,0,1,0.0000,1),(45,0,1,0.0000,1),(46,0,1,0.0000,1),(47,0,1,0.0000,1),(48,0,1,0.0000,1),(49,0,1,0.0000,1),(50,0,1,0.0000,1),(51,0,1,0.0000,1),(53,0,1,0.0000,1),(54,0,1,0.0000,1),(55,0,1,0.0000,1),(56,0,1,0.0000,1),(57,0,1,0.0000,1),(58,0,1,0.0000,1),(59,0,1,0.0000,1),(60,0,1,0.0000,1),(61,0,1,0.0000,1),(63,0,1,0.0000,1),(64,0,1,0.0000,1),(65,0,1,0.0000,1),(66,0,1,0.0000,1),(68,0,1,0.0000,1),(69,0,1,0.0000,1),(70,0,1,0.0000,1),(71,0,1,0.0000,1),(72,0,1,0.0000,1),(73,0,1,0.0000,1),(74,0,1,0.0000,1),(75,0,1,0.0000,1),(76,0,1,0.0000,1),(77,0,1,0.0000,1),(78,0,1,0.0000,1),(79,0,1,0.0000,1),(80,0,1,0.0000,1),(82,0,1,0.0000,1),(83,0,1,0.0000,1),(84,0,1,0.0000,1),(85,0,1,0.0000,1),(86,0,1,0.0000,1),(87,0,1,0.0000,1),(88,0,1,0.0000,1),(89,0,1,0.0000,1),(91,0,1,0.0000,1),(92,0,1,0.0000,1),(93,0,1,0.0000,1),(95,0,1,0.0000,1),(97,0,1,0.0000,1),(98,0,1,0.0000,1),(99,0,1,0.0000,1),(100,0,1,0.0000,1),(101,0,1,0.0000,1),(102,0,1,0.0000,1),(103,0,1,0.0000,1),(104,0,1,0.0000,1),(105,0,1,0.0000,1),(106,0,1,0.0000,1),(107,0,1,0.0000,1),(108,0,1,0.0000,1),(109,0,1,0.0000,1),(110,0,1,0.0000,1),(111,0,1,0.0000,1),(112,0,1,0.0000,1),(113,0,1,0.0000,1),(114,0,1,0.0000,1),(115,0,1,0.0000,1),(116,0,1,0.0000,1),(117,0,1,0.0000,1),(118,0,1,0.0000,1),(119,0,1,0.0000,1),(120,0,1,0.0000,1),(121,0,1,0.0000,1),(122,0,1,0.0000,1),(123,0,1,0.0000,1),(124,0,1,0.0000,1),(125,0,1,0.0000,1),(126,0,1,0.0000,1),(127,0,1,0.0000,1),(128,0,1,0.0000,1),(129,0,1,0.0000,1),(130,0,1,45.0000,1),(131,0,1,45.0000,1),(132,0,1,0.0000,1),(133,0,1,0.0000,1),(134,0,1,0.0000,1),(135,0,1,0.0000,1),(136,0,1,0.0000,1),(137,0,1,0.0000,1),(138,0,1,0.0000,1),(139,0,1,0.0000,1),(140,0,1,0.0000,1),(141,0,1,0.0000,1),(142,0,1,0.0000,1),(143,0,1,0.0000,1),(144,0,1,0.0000,1),(145,0,1,0.0000,1),(146,0,1,0.0000,1),(147,0,1,0.0000,1),(148,0,1,0.0000,1),(149,0,1,0.0000,1),(150,0,1,0.0000,1),(151,0,1,0.0000,1),(152,0,1,0.0000,1),(153,0,1,0.0000,1),(154,0,1,0.0000,1),(155,0,1,0.0000,1),(156,0,1,0.0000,1),(157,0,1,56.0000,1),(158,0,1,56.0000,1),(159,0,1,56.0000,1),(160,0,1,0.0000,1),(161,0,1,0.0000,1),(162,0,1,0.0000,1),(163,0,1,56.0000,1),(164,0,1,56.0000,1),(165,0,1,56.0000,1),(166,0,1,45.0000,1),(167,0,1,45.0000,1),(168,0,1,45.0000,1),(169,0,1,45.0000,1),(170,0,1,35.0000,1),(171,0,1,35.0000,1),(172,0,1,56.0000,1),(173,0,1,56.0000,1),(174,0,1,56.0000,1),(175,0,1,0.0000,1),(176,0,1,0.0000,1),(177,0,1,0.0000,1),(178,0,1,0.0000,1),(179,0,1,0.0000,1),(180,0,1,0.0000,1),(181,0,1,0.0000,1),(182,0,1,0.0000,1),(183,0,1,0.0000,1),(184,0,1,0.0000,1),(185,0,1,0.0000,1),(186,0,1,45.0000,1),(187,0,1,45.0000,1),(188,0,1,45.0000,1),(189,0,1,45.0000,1),(190,0,1,67.0000,1),(191,0,1,67.0000,1),(192,0,1,67.0000,1),(193,0,1,67.0000,1),(194,0,1,55.0000,1),(195,0,1,55.0000,1),(196,0,1,55.0000,1),(197,0,1,0.0000,1),(198,0,1,0.0000,1),(199,0,1,0.0000,1),(200,0,1,0.0000,1),(201,0,1,0.0000,1),(202,0,1,0.0000,1),(203,0,1,67.0000,1),(204,0,1,67.0000,1),(205,0,1,67.0000,1),(206,0,1,67.0000,1),(207,0,1,56.0000,1),(208,0,1,56.0000,1),(209,0,1,56.0000,1),(210,0,1,0.0000,1),(211,0,1,0.0000,1),(212,0,1,0.0000,1),(213,0,1,0.0000,1),(214,0,1,0.0000,1),(215,0,1,0.0000,1),(216,0,1,0.0000,1),(217,0,1,56.0000,1),(218,0,1,56.0000,1),(219,0,1,56.0000,1),(220,0,1,56.0000,1),(221,0,1,56.0000,1),(222,0,1,0.0000,1),(223,0,1,0.0000,1),(224,0,1,0.0000,1),(225,0,1,0.0000,1),(226,0,1,0.0000,1),(227,0,1,0.0000,1),(228,0,1,55.0000,1),(229,0,1,55.0000,1),(230,0,1,55.0000,1),(231,0,1,57.0000,1),(232,0,1,57.0000,1),(233,0,1,57.0000,1),(234,0,1,57.0000,1),(235,0,1,56.0000,1),(236,0,1,56.0000,1),(237,0,1,56.0000,1),(238,0,1,56.0000,1),(239,0,1,0.0000,1),(240,0,1,0.0000,1),(241,0,1,0.0000,1),(242,0,1,0.0000,1),(243,0,1,0.0000,1),(244,0,1,0.0000,1),(245,0,1,0.0000,1),(246,0,1,0.0000,1),(247,0,1,0.0000,1),(248,0,1,0.0000,1),(249,0,1,0.0000,1),(250,0,1,0.0000,1),(251,0,1,0.0000,1),(252,0,1,0.0000,1),(253,0,1,0.0000,1),(254,0,1,0.0000,1),(255,0,1,0.0000,1),(256,0,1,0.0000,1),(257,0,1,67.0000,1),(258,0,1,67.0000,1),(259,0,1,67.0000,1),(260,0,1,67.0000,1),(261,0,1,0.0000,1),(262,0,1,0.0000,1),(263,0,1,0.0000,1),(264,0,1,0.0000,1),(265,0,1,67.0000,1),(266,0,1,67.0000,1),(267,0,1,67.0000,1),(268,0,1,67.0000,1),(269,0,1,67.0000,1),(270,0,1,0.0000,1),(271,0,1,0.0000,1),(272,0,1,67.0000,1),(273,0,1,67.0000,1),(274,0,1,67.0000,1),(275,0,1,67.0000,1),(276,0,1,67.0000,1),(277,0,1,0.0000,1),(278,0,1,0.0000,1),(279,0,1,0.0000,1),(280,0,1,0.0000,1),(281,0,1,0.0000,1),(282,0,1,0.0000,1),(283,0,1,0.0000,1),(284,0,1,0.0000,1),(285,0,1,56.0000,1),(286,0,1,56.0000,1),(287,0,1,0.0000,1),(288,0,1,0.0000,1),(289,0,1,0.0000,1),(290,0,1,65.0000,1),(291,0,1,65.0000,1),(292,0,1,65.0000,1),(293,0,1,0.0000,1),(294,0,1,0.0000,1),(295,0,1,0.0000,1),(296,0,1,0.0000,1),(297,0,1,0.0000,1),(298,0,1,0.0000,1),(299,0,1,0.0000,1),(300,0,1,65.0000,1),(301,0,1,65.0000,1),(302,0,1,65.0000,1),(303,0,1,65.0000,1),(304,0,1,65.0000,1),(305,0,1,65.0000,1),(306,0,1,0.0000,1),(307,0,1,0.0000,1),(308,0,1,0.0000,1),(309,0,1,55.0000,1),(310,0,1,55.0000,1),(311,0,1,55.0000,1),(312,0,1,45.0000,1),(313,0,1,45.0000,1),(314,0,1,45.0000,1),(315,0,1,45.0000,1),(316,0,1,56.0000,1),(317,0,1,56.0000,1),(318,0,1,45.0000,1),(319,0,1,45.0000,1),(320,0,1,45.0000,1),(321,0,1,45.0000,1),(322,0,1,56.0000,1),(323,0,1,56.0000,1),(324,0,1,56.0000,1),(325,0,1,56.0000,1),(326,0,1,56.0000,1),(327,0,1,56.0000,1),(328,0,1,57.0000,1),(329,0,1,57.0000,1),(330,0,1,0.0000,1),(331,0,1,0.0000,1),(332,0,1,0.0000,1),(333,0,1,0.0000,1),(334,0,1,45.0000,1),(335,0,1,45.0000,1),(336,0,1,45.0000,1),(337,0,1,45.0000,1),(338,0,1,58.0000,1),(339,0,1,58.0000,1),(340,0,1,58.0000,1),(341,0,1,45.0000,1),(342,0,1,45.0000,1),(343,0,1,45.0000,1),(344,0,1,45.0000,1),(345,0,1,45.0000,1),(346,0,1,0.0000,1),(347,0,1,0.0000,1),(348,0,1,0.0000,1),(349,0,1,0.0000,1),(350,0,1,56.0000,1),(351,0,1,56.0000,1),(352,0,1,56.0000,1),(353,0,1,56.0000,1),(354,0,1,56.0000,1),(355,0,1,56.0000,1),(356,0,1,56.0000,1),(357,0,1,56.0000,1),(358,0,1,56.0000,1),(359,0,1,56.0000,1),(360,0,1,56.0000,1),(361,0,1,0.0000,1),(362,0,1,0.0000,1),(363,0,1,0.0000,1),(364,0,1,45.0000,1),(365,0,1,45.0000,1),(366,0,1,45.0000,1),(367,0,1,45.0000,1),(368,0,1,67.0000,1),(369,0,1,67.0000,1),(370,0,1,67.0000,1),(371,0,1,67.0000,1),(372,0,1,67.0000,1),(373,0,1,67.0000,1),(374,0,1,67.0000,1),(375,0,1,67.0000,1),(376,0,1,0.0000,1),(377,0,1,0.0000,1),(378,0,1,45.0000,1),(379,0,1,45.0000,1),(380,0,1,45.0000,1),(381,0,1,45.0000,1),(382,0,1,45.0000,1),(383,0,1,45.0000,1),(384,0,1,45.0000,1),(385,0,1,45.0000,1),(386,0,1,45.0000,1),(387,0,1,45.0000,1),(388,0,1,56.0000,1),(389,0,1,56.0000,1),(390,0,1,56.0000,1),(391,0,1,0.0000,1),(392,0,1,0.0000,1),(393,0,1,0.0000,1),(394,0,1,0.0000,1),(395,0,1,0.0000,1),(396,0,1,0.0000,1),(397,0,1,56.0000,1),(398,0,1,56.0000,1),(399,0,1,56.0000,1),(400,0,1,56.0000,1),(401,0,1,0.0000,1),(402,0,1,0.0000,1),(403,0,1,0.0000,1),(404,0,1,0.0000,1),(405,0,1,0.0000,1),(406,0,1,0.0000,1),(407,0,1,45.0000,1),(408,0,1,45.0000,1),(409,0,1,45.0000,1),(410,0,1,45.0000,1),(411,0,1,45.0000,1),(412,0,1,0.0000,1),(413,0,1,0.0000,1),(414,0,1,0.0000,1),(415,0,1,0.0000,1),(416,0,1,56.0000,1),(417,0,1,56.0000,1),(418,0,1,56.0000,1),(419,0,1,56.0000,1),(420,0,1,56.0000,1),(421,0,1,56.0000,1),(422,0,1,56.0000,1),(423,0,1,56.0000,1),(424,0,1,56.0000,1),(425,0,1,56.0000,1),(426,0,1,0.0000,1),(427,0,1,0.0000,1),(428,0,1,0.0000,1),(429,0,1,0.0000,1),(430,0,1,0.0000,1),(431,0,1,0.0000,1),(432,0,1,0.0000,1),(433,0,1,0.0000,1),(434,0,1,0.0000,1),(435,0,1,0.0000,1),(436,0,1,0.0000,1),(437,0,1,65.0000,1),(438,0,1,65.0000,1),(439,0,1,65.0000,1),(440,0,1,45.0000,1),(441,0,1,45.0000,1),(442,0,1,45.0000,1),(443,0,1,0.0000,1),(444,0,1,0.0000,1),(445,0,1,0.0000,1),(446,0,1,0.0000,1),(447,0,1,0.0000,1),(448,0,1,0.0000,1),(449,0,1,67.0000,1),(450,0,1,67.0000,1),(451,0,1,67.0000,1),(452,0,1,67.0000,1),(453,0,1,67.0000,1),(454,0,1,67.0000,1),(455,0,1,45.0000,1),(456,0,1,45.0000,1),(457,0,1,45.0000,1),(458,0,1,0.0000,1),(459,0,1,0.0000,1),(460,0,1,0.0000,1),(461,0,1,56.0000,1),(462,0,1,56.0000,1),(463,0,1,56.0000,1),(464,0,1,56.0000,1),(465,0,1,45.0000,1),(466,0,1,45.0000,1),(467,0,1,45.0000,1),(468,0,1,0.0000,1),(469,0,1,0.0000,1),(470,0,1,0.0000,1),(471,0,1,56.0000,1),(472,0,1,56.0000,1),(473,0,1,56.0000,1),(474,0,1,56.0000,1),(475,0,1,0.0000,1),(476,0,1,0.0000,1),(477,0,1,0.0000,1),(478,0,1,45.0000,1),(479,0,1,45.0000,1),(480,0,1,45.0000,1),(481,0,1,0.0000,1),(482,0,1,0.0000,1),(483,0,1,0.0000,1),(484,0,1,0.0000,1),(485,0,1,0.0000,1),(486,0,1,0.0000,1),(487,0,1,0.0000,1),(488,0,1,34.0000,1),(489,0,1,34.0000,1),(490,0,1,34.0000,1),(491,0,1,0.0000,1),(492,0,1,0.0000,1),(493,0,1,0.0000,1),(494,0,1,0.0000,1),(495,0,1,45.0000,1),(496,0,1,45.0000,1),(497,0,1,45.0000,1),(498,0,1,45.0000,1),(499,0,1,45.0000,1),(500,0,1,45.0000,1),(501,0,1,45.0000,1),(502,0,1,45.0000,1),(503,0,1,45.0000,1),(504,0,1,34.0000,1),(505,0,1,34.0000,1),(506,0,1,34.0000,1),(507,0,1,34.0000,1),(508,0,1,34.0000,1),(509,0,1,34.0000,1),(510,0,1,45.0000,1),(511,0,1,45.0000,1),(512,0,1,45.0000,1),(513,0,1,56.0000,1),(514,0,1,56.0000,1),(515,0,1,56.0000,1),(516,0,1,67.0000,1),(517,0,1,56.0000,1),(518,0,1,56.0000,1),(519,0,1,56.0000,1),(520,0,1,45.0000,1),(521,0,1,45.0000,1),(522,0,1,45.0000,1),(523,0,1,45.0000,1),(524,0,1,34.0000,1),(525,0,1,34.0000,1),(526,0,1,34.0000,1),(527,0,1,57.0000,1),(528,0,1,65.0000,1),(529,0,1,65.0000,1),(530,0,1,65.0000,1),(531,0,1,60.0000,1),(532,0,1,67.0000,1),(533,0,1,67.0000,1),(534,0,1,67.0000,1),(535,0,1,34.0000,1),(536,0,1,34.0000,1),(537,0,1,34.0000,1),(538,0,1,56.0000,1),(539,0,1,56.0000,1),(540,0,1,56.0000,1),(541,0,1,68.0000,1),(542,0,1,56.0000,1),(543,0,1,56.0000,1),(544,0,1,57.0000,1),(545,0,1,56.0000,1),(546,0,1,58.0000,1),(547,0,1,56.0000,1),(548,0,1,45.0000,1),(549,0,1,45.0000,1),(550,0,1,45.0000,1),(551,0,1,45.0000,1),(552,0,1,45.0000,1),(553,0,1,45.0000,1),(554,0,1,45.0000,1),(555,0,1,45.0000,1),(556,0,1,45.0000,1),(557,0,1,45.0000,1),(558,0,1,45.0000,1),(559,0,1,45.0000,1),(560,0,1,45.0000,1),(561,0,1,45.0000,1),(562,0,1,45.0000,1),(563,0,1,45.0000,1),(564,0,1,45.0000,1),(565,0,1,45.0000,1),(566,0,1,45.0000,1),(567,0,1,45.0000,1),(568,0,1,45.0000,1),(569,0,1,45.0000,1),(570,0,1,45.0000,1),(571,0,1,45.0000,1),(572,0,1,45.0000,1),(573,0,1,45.0000,1),(574,0,1,45.0000,1),(575,0,1,45.0000,1),(576,0,1,45.0000,1),(577,0,1,45.0000,1),(578,0,1,45.0000,1),(579,0,1,68.0000,1),(580,0,1,68.0000,1),(581,0,1,68.0000,1),(582,0,1,68.0000,1),(583,0,1,68.0000,1),(584,0,1,68.0000,1),(585,0,1,68.0000,1),(586,0,1,68.0000,1),(587,0,1,68.0000,1),(588,0,1,68.0000,1),(589,0,1,68.0000,1),(590,0,1,68.0000,1),(591,0,1,68.0000,1),(592,0,1,68.0000,1),(593,0,1,68.0000,1),(594,0,1,68.0000,1),(595,0,1,68.0000,1),(596,0,1,68.0000,1),(597,0,1,68.0000,1),(598,0,1,68.0000,1),(599,0,1,68.0000,1),(600,0,1,68.0000,1),(601,0,1,68.0000,1),(602,0,1,68.0000,1),(603,0,1,68.0000,1),(604,0,1,68.0000,1),(605,0,1,68.0000,1),(606,0,1,68.0000,1),(607,0,1,68.0000,1),(608,0,1,68.0000,1),(609,0,1,68.0000,1),(610,0,1,68.0000,1),(611,0,1,68.0000,1),(612,0,1,68.0000,1),(613,0,1,68.0000,1),(614,0,1,55.0000,1),(615,0,1,55.0000,1),(616,0,1,55.0000,1),(617,0,1,55.0000,1),(618,0,1,55.0000,1),(619,0,1,55.0000,1),(620,0,1,55.0000,1),(621,0,1,55.0000,1),(622,0,1,55.0000,1),(623,0,1,55.0000,1),(624,0,1,55.0000,1),(625,0,1,55.0000,1),(626,0,1,55.0000,1),(627,0,1,55.0000,1),(628,0,1,55.0000,1),(629,0,1,55.0000,1),(630,0,1,55.0000,1),(631,0,1,55.0000,1),(632,0,1,55.0000,1),(633,0,1,55.0000,1),(634,0,1,55.0000,1),(635,0,1,55.0000,1),(636,0,1,55.0000,1),(637,0,1,55.0000,1),(638,0,1,55.0000,1),(639,0,1,55.0000,1),(640,0,1,55.0000,1),(641,0,1,55.0000,1),(642,0,1,55.0000,1),(643,0,1,55.0000,1),(644,0,1,65.0000,1),(645,0,1,65.0000,1),(646,0,1,65.0000,1),(647,0,1,65.0000,1),(648,0,1,65.0000,1),(649,0,1,65.0000,1),(650,0,1,65.0000,1),(651,0,1,65.0000,1),(652,0,1,65.0000,1),(653,0,1,65.0000,1),(654,0,1,65.0000,1),(655,0,1,65.0000,1),(656,0,1,65.0000,1),(657,0,1,65.0000,1),(658,0,1,65.0000,1),(659,0,1,65.0000,1),(660,0,1,65.0000,1),(661,0,1,65.0000,1),(662,0,1,65.0000,1),(663,0,1,65.0000,1),(664,0,1,65.0000,1),(665,0,1,65.0000,1),(666,0,1,65.0000,1),(667,0,1,65.0000,1),(668,0,1,65.0000,1),(669,0,1,65.0000,1),(670,0,1,65.0000,1),(671,0,1,65.0000,1),(672,0,1,65.0000,1),(673,0,1,65.0000,1),(674,0,1,78.0000,1),(675,0,1,78.0000,1),(676,0,1,78.0000,1),(677,0,1,78.0000,1),(678,0,1,78.0000,1),(679,0,1,78.0000,1),(680,0,1,78.0000,1),(681,0,1,78.0000,1),(682,0,1,78.0000,1),(683,0,1,78.0000,1),(684,0,1,78.0000,1),(685,0,1,78.0000,1),(686,0,1,78.0000,1),(687,0,1,78.0000,1),(688,0,1,78.0000,1),(689,0,1,78.0000,1),(690,0,1,78.0000,1),(691,0,1,78.0000,1),(692,0,1,78.0000,1),(693,0,1,78.0000,1),(694,0,1,78.0000,1),(695,0,1,78.0000,1),(696,0,1,78.0000,1),(697,0,1,78.0000,1),(698,0,1,78.0000,1),(699,0,1,56.0000,1),(700,0,1,56.0000,1),(701,0,1,56.0000,1),(702,0,1,56.0000,1),(703,0,1,56.0000,1),(704,0,1,56.0000,1),(705,0,1,56.0000,1),(706,0,1,56.0000,1),(707,0,1,56.0000,1),(708,0,1,56.0000,1),(709,0,1,56.0000,1),(710,0,1,56.0000,1),(711,0,1,56.0000,1),(712,0,1,56.0000,1),(713,0,1,56.0000,1),(714,0,1,56.0000,1),(715,0,1,56.0000,1),(716,0,1,56.0000,1),(717,0,1,56.0000,1),(718,0,1,56.0000,1),(719,0,1,56.0000,1),(720,0,1,56.0000,1),(721,0,1,56.0000,1),(722,0,1,56.0000,1),(723,0,1,56.0000,1),(724,0,1,56.0000,1),(725,0,1,56.0000,1),(726,0,1,56.0000,1),(727,0,1,56.0000,1),(728,0,1,56.0000,1),(729,0,1,56.0000,1),(730,0,1,56.0000,1),(731,0,1,56.0000,1),(732,0,1,56.0000,1),(733,0,1,56.0000,1),(734,0,1,35.0000,1),(735,0,1,35.0000,1),(736,0,1,35.0000,1),(737,0,1,35.0000,1),(738,0,1,35.0000,1),(739,0,1,35.0000,1),(740,0,1,35.0000,1),(741,0,1,35.0000,1),(742,0,1,35.0000,1),(743,0,1,35.0000,1),(744,0,1,35.0000,1),(745,0,1,35.0000,1),(746,0,1,35.0000,1),(747,0,1,35.0000,1),(748,0,1,35.0000,1),(749,0,1,56.0000,1),(750,0,1,56.0000,1),(751,0,1,56.0000,1),(752,0,1,56.0000,1),(753,0,1,56.0000,1),(754,0,1,56.0000,1),(755,0,1,56.0000,1),(756,0,1,56.0000,1),(757,0,1,56.0000,1),(758,0,1,56.0000,1),(759,0,1,56.0000,1),(760,0,1,56.0000,1),(761,0,1,56.0000,1),(762,0,1,56.0000,1),(763,0,1,56.0000,1),(764,0,1,56.0000,1),(765,0,1,56.0000,1),(766,0,1,56.0000,1),(767,0,1,56.0000,1),(768,0,1,56.0000,1),(769,0,1,35.0000,1),(770,0,1,35.0000,1),(771,0,1,35.0000,1),(772,0,1,35.0000,1),(773,0,1,35.0000,1),(774,0,1,35.0000,1),(775,0,1,35.0000,1),(776,0,1,35.0000,1),(777,0,1,35.0000,1),(778,0,1,35.0000,1),(779,0,1,35.0000,1),(780,0,1,35.0000,1),(781,0,1,35.0000,1),(782,0,1,35.0000,1),(783,0,1,35.0000,1),(784,0,1,35.0000,1),(785,0,1,35.0000,1),(786,0,1,35.0000,1),(787,0,1,35.0000,1),(788,0,1,35.0000,1),(789,0,1,45.0000,1),(790,0,1,45.0000,1),(791,0,1,45.0000,1),(792,0,1,45.0000,1),(793,0,1,45.0000,1),(794,0,1,45.0000,1),(795,0,1,45.0000,1),(796,0,1,45.0000,1),(797,0,1,45.0000,1),(798,0,1,45.0000,1),(799,0,1,45.0000,1),(800,0,1,45.0000,1),(801,0,1,45.0000,1),(802,0,1,45.0000,1),(803,0,1,45.0000,1),(804,0,1,45.0000,1),(805,0,1,45.0000,1),(806,0,1,45.0000,1),(807,0,1,45.0000,1),(808,0,1,45.0000,1),(809,0,1,45.0000,1),(810,0,1,45.0000,1),(811,0,1,45.0000,1),(812,0,1,45.0000,1),(813,0,1,45.0000,1),(814,0,1,45.0000,1),(815,0,1,45.0000,1),(816,0,1,45.0000,1),(817,0,1,45.0000,1),(818,0,1,45.0000,1),(819,0,1,45.0000,1),(820,0,1,45.0000,1),(821,0,1,45.0000,1),(822,0,1,45.0000,1),(823,0,1,45.0000,1),(824,0,1,67.0000,1),(825,0,1,67.0000,1),(826,0,1,67.0000,1),(827,0,1,67.0000,1),(828,0,1,67.0000,1),(829,0,1,67.0000,1),(830,0,1,67.0000,1),(831,0,1,67.0000,1),(832,0,1,67.0000,1),(833,0,1,67.0000,1),(834,0,1,67.0000,1),(835,0,1,67.0000,1),(836,0,1,67.0000,1),(837,0,1,67.0000,1),(838,0,1,67.0000,1),(839,0,1,67.0000,1),(840,0,1,67.0000,1),(841,0,1,67.0000,1),(842,0,1,67.0000,1),(843,0,1,67.0000,1),(844,0,1,36.0000,1),(845,0,1,36.0000,1),(846,0,1,36.0000,1),(847,0,1,36.0000,1),(848,0,1,36.0000,1),(849,0,1,36.0000,1),(850,0,1,36.0000,1),(851,0,1,36.0000,1),(852,0,1,36.0000,1),(853,0,1,36.0000,1),(854,0,1,36.0000,1),(855,0,1,36.0000,1),(856,0,1,36.0000,1),(857,0,1,36.0000,1),(858,0,1,36.0000,1),(859,0,1,36.0000,1),(860,0,1,36.0000,1),(861,0,1,36.0000,1),(862,0,1,36.0000,1),(863,0,1,36.0000,1),(864,0,1,34.0000,1),(865,0,1,34.0000,1),(866,0,1,34.0000,1),(867,0,1,34.0000,1),(868,0,1,34.0000,1),(869,0,1,34.0000,1),(870,0,1,34.0000,1),(871,0,1,34.0000,1),(872,0,1,34.0000,1),(873,0,1,34.0000,1),(874,0,1,34.0000,1),(875,0,1,34.0000,1),(876,0,1,34.0000,1),(877,0,1,34.0000,1),(878,0,1,34.0000,1),(879,0,1,45.0000,1),(880,0,1,45.0000,1),(881,0,1,45.0000,1),(882,0,1,45.0000,1),(883,0,1,45.0000,1),(884,0,1,45.0000,1),(885,0,1,45.0000,1),(886,0,1,45.0000,1),(887,0,1,45.0000,1),(888,0,1,45.0000,1),(889,0,1,45.0000,1),(890,0,1,45.0000,1),(891,0,1,45.0000,1),(892,0,1,45.0000,1),(893,0,1,45.0000,1),(894,0,1,45.0000,1),(895,0,1,45.0000,1),(896,0,1,45.0000,1),(897,0,1,45.0000,1),(898,0,1,45.0000,1),(899,0,1,45.0000,1),(900,0,1,45.0000,1),(901,0,1,45.0000,1),(902,0,1,45.0000,1),(903,0,1,45.0000,1),(904,0,1,80.0000,1),(905,0,1,80.0000,1),(906,0,1,80.0000,1),(907,0,1,80.0000,1),(908,0,1,80.0000,1),(909,0,1,80.0000,1),(910,0,1,80.0000,1),(911,0,1,80.0000,1),(912,0,1,80.0000,1),(913,0,1,80.0000,1),(914,0,1,80.0000,1),(915,0,1,80.0000,1),(924,0,1,23.0000,1),(925,0,1,23.0000,1),(926,0,1,23.0000,1),(927,0,1,23.0000,1),(928,0,1,23.0000,1),(929,0,1,23.0000,1),(930,0,1,34.0000,1),(931,0,1,34.0000,1),(932,0,1,34.0000,1),(933,0,1,576.0000,1),(934,0,1,576.0000,1),(935,0,1,576.0000,1),(936,0,1,576.0000,1),(937,0,1,576.0000,1),(938,0,1,576.0000,1),(939,0,1,25.0000,1),(940,0,1,25.0000,1),(941,0,1,25.0000,1),(942,0,1,34.0000,1),(943,0,1,34.0000,1),(944,0,1,34.0000,1),(945,0,1,34.0000,1),(946,0,1,34.0000,1),(947,0,1,34.0000,1),(948,0,1,67.0000,1),(949,0,1,67.0000,1),(950,0,1,67.0000,1),(951,0,1,67.0000,1),(952,0,1,67.0000,1),(953,0,1,67.0000,1),(954,0,1,67.0000,1),(955,0,1,67.0000,1),(956,0,1,67.0000,1),(957,0,1,67.0000,1),(958,0,1,45.0000,1),(959,0,1,45.0000,1),(972,0,1,34.0000,1),(973,0,1,34.0000,1),(974,0,1,34.0000,1),(975,0,1,34.0000,1),(976,0,1,34.0000,1),(977,0,1,34.0000,1),(978,0,1,34.0000,1),(979,0,1,34.0000,1),(980,0,1,34.0000,1),(981,0,1,34.0000,1),(982,0,1,34.0000,1),(983,0,1,34.0000,1),(984,0,1,34.0000,1),(985,0,1,34.0000,1),(986,0,1,56.0000,1),(987,0,1,56.0000,1),(988,0,1,56.0000,1),(989,0,1,56.0000,1),(990,0,1,56.0000,1),(991,0,1,56.0000,1),(992,0,1,56.0000,1),(993,0,1,56.0000,1),(994,0,1,56.0000,1),(995,0,1,56.0000,1),(996,0,1,56.0000,1),(997,0,1,56.0000,1),(998,0,1,56.0000,1),(999,0,1,56.0000,1),(1000,0,1,56.0000,1),(1001,0,1,56.0000,1),(1002,0,1,56.0000,1),(1003,0,1,56.0000,1),(1004,0,1,45.0000,1),(1005,0,1,45.0000,1),(1006,0,1,45.0000,1),(1007,0,1,45.0000,1),(1008,0,1,45.0000,1),(1009,0,1,45.0000,1),(1010,0,1,45.0000,1),(1011,0,1,45.0000,1),(1012,0,1,45.0000,1),(1013,0,1,45.0000,1),(1014,0,1,45.0000,1),(1015,0,1,45.0000,1),(1016,0,1,45.0000,1),(1017,0,1,45.0000,1),(1018,0,1,45.0000,1),(1019,0,1,45.0000,1),(1020,0,1,45.0000,1),(1021,0,1,45.0000,1),(1022,0,1,45.0000,1),(1023,0,1,67.0000,1),(1024,0,1,67.0000,1),(1025,0,1,67.0000,1),(1026,0,1,67.0000,1),(1027,0,1,67.0000,1),(1028,0,1,67.0000,1),(1029,0,1,45.0000,1),(1030,0,1,45.0000,1),(1031,0,1,45.0000,1),(1032,0,1,45.0000,1),(1033,0,1,45.0000,1),(1034,0,1,45.0000,1),(1035,0,1,45.0000,1),(1036,0,1,45.0000,1),(1037,0,1,45.0000,1),(1038,0,1,45.0000,1),(1039,0,1,45.0000,1),(1040,0,1,45.0000,1),(1041,0,1,45.0000,1),(1042,0,1,45.0000,1),(1043,0,1,56.0000,1),(1044,0,1,56.0000,1),(1045,0,1,56.0000,1),(1046,0,1,56.0000,1),(1047,0,1,56.0000,1),(1048,0,1,56.0000,1),(1049,0,1,56.0000,1),(1050,0,1,56.0000,1),(1051,0,1,56.0000,1),(1052,0,1,56.0000,1),(1053,0,1,56.0000,1),(1054,0,1,56.0000,1),(1055,0,1,56.0000,1),(1056,0,1,56.0000,1),(1057,0,1,46.0000,1),(1058,0,1,46.0000,1),(1059,0,1,46.0000,1),(1060,0,1,46.0000,1),(1061,0,1,46.0000,1),(1062,0,1,46.0000,1),(1063,0,1,45.0000,1),(1064,0,1,45.0000,1),(1065,0,1,45.0000,1),(1066,0,1,45.0000,1),(1067,0,1,45.0000,1),(1068,0,1,45.0000,1),(1069,0,1,56.0000,1),(1070,0,1,56.0000,1),(1071,0,1,56.0000,1),(1072,0,1,56.0000,1),(1073,0,1,56.0000,1),(1074,0,1,56.0000,1),(1075,0,1,54.0000,1),(1076,0,1,54.0000,1),(1077,0,1,54.0000,1),(1078,0,1,54.0000,1),(1079,0,1,54.0000,1),(1080,0,1,54.0000,1),(1081,0,1,54.0000,1),(1082,0,1,54.0000,1),(1083,0,1,45.0000,1),(1084,0,1,45.0000,1),(1085,0,1,45.0000,1),(1086,0,1,45.0000,1),(1087,0,1,45.0000,1),(1088,0,1,45.0000,1),(1089,0,1,45.0000,1),(1090,0,1,45.0000,1),(1091,0,1,54.0000,1),(1092,0,1,54.0000,1),(1093,0,1,54.0000,1),(1094,0,1,54.0000,1),(1095,0,1,56.0000,1),(1096,0,1,56.0000,1),(1097,0,1,56.0000,1),(1098,0,1,45.0000,1),(1099,0,1,45.0000,1),(1100,0,1,45.0000,1),(1101,0,1,46.0000,1),(1102,0,1,46.0000,1),(1103,0,1,46.0000,1),(1104,0,1,65.0000,1),(1105,0,1,65.0000,1),(1106,0,1,65.0000,1),(1107,0,1,34.0000,1),(1108,0,1,34.0000,1),(1109,0,1,34.0000,1),(1110,0,1,56.0000,1),(1111,0,1,56.0000,1),(1112,0,1,56.0000,1),(1113,0,1,56.0000,1),(1114,0,1,56.0000,1),(1115,0,1,56.0000,1),(1116,0,1,56.0000,1),(1117,0,1,56.0000,1),(1118,0,1,45.0000,1),(1119,0,1,45.0000,1),(1120,0,1,45.0000,1),(1121,0,1,45.0000,1),(1122,0,1,45.0000,1),(1123,0,1,45.0000,1),(1124,0,1,45.0000,1),(1125,0,1,45.0000,1),(1126,0,1,45.0000,1),(1127,0,1,45.0000,1),(1128,0,1,45.0000,1),(1129,0,1,45.0000,1),(1130,0,1,56.0000,1),(1131,0,1,56.0000,1),(1132,0,1,56.0000,1),(1133,0,1,45.0000,1),(1134,0,1,45.0000,1),(1135,0,1,56.0000,1),(1136,0,1,56.0000,1),(1137,0,1,56.0000,1),(1138,0,1,45.0000,1),(1139,0,1,45.0000,1),(1140,0,1,45.0000,1),(1141,0,1,56.0000,1),(1142,0,1,56.0000,1),(1143,0,1,56.0000,1),(1144,0,1,56.0000,1),(1145,0,1,56.0000,1),(1146,0,1,56.0000,1),(1147,0,1,56.0000,1),(1148,0,1,45.0000,1),(1149,0,1,45.0000,1),(1150,0,1,45.0000,1),(1151,0,1,45.0000,1),(1152,0,1,56.0000,1),(1153,0,1,56.0000,1),(1154,0,1,56.0000,1),(1155,0,1,56.0000,1),(1156,0,1,45.0000,1),(1157,0,1,45.0000,1),(1158,0,1,45.0000,1),(1159,0,1,45.0000,1),(1160,0,1,56.0000,1),(1161,0,1,56.0000,1),(1162,0,1,35.0000,1),(1163,0,1,35.0000,1),(1164,0,1,34.0000,1),(1165,0,1,34.0000,1),(1166,0,1,34.0000,1),(1167,0,1,45.0000,1),(1168,0,1,45.0000,1),(1169,0,1,45.0000,1),(1170,0,1,45.0000,1),(1171,0,1,56.0000,1),(1172,0,1,56.0000,1),(1173,0,1,56.0000,1),(1174,0,1,56.0000,1),(1175,0,1,56.0000,1),(1176,0,1,56.0000,1),(1177,0,1,56.0000,1),(1178,0,1,56.0000,1),(1179,0,1,56.0000,1),(1180,0,1,45.0000,1),(1181,0,1,45.0000,1),(1182,0,1,45.0000,1),(1183,0,1,45.0000,1),(1184,0,1,56.0000,1),(1185,0,1,56.0000,1),(1186,0,1,56.0000,1),(1187,0,1,45.0000,1),(1188,0,1,45.0000,1),(1189,0,1,45.0000,1),(1190,0,1,45.0000,1),(1191,0,1,45.0000,1),(1192,0,1,45.0000,1),(1193,0,1,45.0000,1),(1194,0,1,45.0000,1),(1195,0,1,45.0000,1),(1196,0,1,34.0000,1),(1197,0,1,34.0000,1),(1198,0,1,34.0000,1),(1199,0,1,56.0000,1),(1200,0,1,56.0000,1),(1201,0,1,56.0000,1),(1202,0,1,45.0000,1),(1203,0,1,45.0000,1),(1204,0,1,45.0000,1),(1205,0,1,65.0000,1),(1206,0,1,65.0000,1),(1207,0,1,65.0000,1),(1208,0,1,45.0000,1),(1209,0,1,45.0000,1),(1210,0,1,45.0000,1),(1211,0,1,45.0000,1),(1212,0,1,45.0000,1),(1213,0,1,45.0000,1),(1214,0,1,45.0000,1),(1215,0,1,45.0000,1),(1216,0,1,45.0000,1),(1217,0,1,45.0000,1),(1218,0,1,45.0000,1),(1219,0,1,55.0000,1),(1220,0,1,55.0000,1),(1221,0,1,55.0000,1),(1222,0,1,65.0000,1),(1223,0,1,65.0000,1),(1224,0,1,65.0000,1),(1225,0,1,65.0000,1),(1226,0,1,65.0000,1),(1227,0,1,65.0000,1),(1228,0,1,65.0000,1),(1229,0,1,65.0000,1),(1230,0,1,65.0000,1),(1231,0,1,67.0000,1),(1232,0,1,67.0000,1),(1233,0,1,67.0000,1),(1234,0,1,67.0000,1),(1235,0,1,67.0000,1),(1236,0,1,67.0000,1),(1237,0,1,67.0000,1),(1238,0,1,67.0000,1),(1239,0,1,67.0000,1),(1240,0,1,67.0000,1),(1241,0,1,67.0000,1),(1242,0,1,67.0000,1),(1243,0,1,67.0000,1),(1244,0,1,67.0000,1),(1245,0,1,67.0000,1),(1246,0,1,67.0000,1),(1247,0,1,56.0000,1),(1248,0,1,56.0000,1),(1249,0,1,56.0000,1),(1250,0,1,56.0000,1),(1251,0,1,56.0000,1),(1252,0,1,56.0000,1),(1253,0,1,56.0000,1),(1254,0,1,56.0000,1),(1255,0,1,56.0000,1),(1256,0,1,56.0000,1),(1257,0,1,45.0000,1),(1258,0,1,45.0000,1),(1259,0,1,45.0000,1),(1260,0,1,45.0000,1),(1261,0,1,56.0000,1),(1262,0,1,56.0000,1),(1263,0,1,56.0000,1),(1264,0,1,56.0000,1),(1265,0,1,56.0000,1),(1266,0,1,67.0000,1),(1267,0,1,67.0000,1),(1268,0,1,67.0000,1),(1269,0,1,67.0000,1),(1270,0,1,67.0000,1),(1271,0,1,67.0000,1),(1272,0,1,66.0000,1),(1273,0,1,66.0000,1),(1274,0,1,66.0000,1),(1275,0,1,66.0000,1),(1276,0,1,66.0000,1),(1277,0,1,66.0000,1),(1278,0,1,66.0000,1),(1279,0,1,66.0000,1),(1280,0,1,67.0000,1),(1281,0,1,67.0000,1),(1282,0,1,67.0000,1),(1283,0,1,67.0000,1),(1284,0,1,55.0000,1),(1285,0,1,55.0000,1),(1286,0,1,55.0000,1),(1287,0,1,56.0000,1),(1288,0,1,56.0000,1),(1289,0,1,56.0000,1),(1290,0,1,56.0000,1),(1291,0,1,56.0000,1),(1292,0,1,56.0000,1),(1293,0,1,55.0000,1),(1294,0,1,55.0000,1),(1295,0,1,55.0000,1),(1296,0,1,56.0000,1),(1297,0,1,56.0000,1),(1298,0,1,56.0000,1),(1299,0,1,45.0000,1),(1300,0,1,45.0000,1),(1301,0,1,45.0000,1),(1302,0,1,56.0000,1),(1303,0,1,56.0000,1),(1304,0,1,56.0000,1),(1305,0,1,56.0000,1),(1306,0,1,56.0000,1),(1307,0,1,56.0000,1),(1308,0,1,45.0000,1),(1309,0,1,56.0000,1),(1310,0,1,56.0000,1),(1311,0,1,45.0000,1),(1312,0,1,57.0000,1),(1313,0,1,57.0000,1),(1314,0,1,56.0000,1),(1315,0,1,56.0000,1),(1316,0,1,56.0000,1),(1317,0,1,58.0000,1),(1318,0,1,56.0000,1),(1319,0,1,57.0000,1),(1320,0,1,68.0000,1),(1321,0,1,60.0000,1),(1322,0,1,58.0000,1),(1323,0,1,58.0000,1),(1324,0,1,58.0000,1),(1325,0,1,45.0000,1),(1326,0,1,45.0000,1),(1327,0,1,57.0000,1),(1328,0,1,57.0000,1),(1329,0,1,57.0000,1),(1330,0,1,57.0000,1),(1331,0,1,67.0000,1),(1332,0,1,57.0000,1),(1333,0,1,0.0000,1),(1334,0,1,0.0000,1),(1335,0,1,0.0000,1),(1336,0,1,0.0000,1),(1337,0,1,0.0000,1),(1338,0,1,0.0000,1),(1339,0,1,0.0000,1),(1340,0,1,0.0000,1),(1341,0,1,0.0000,1);
/*!40000 ALTER TABLE `cataloginventory_stock_status_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cataloginventory_stock_status_tmp`
--

DROP TABLE IF EXISTS `cataloginventory_stock_status_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cataloginventory_stock_status_tmp` (
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock Id',
  `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty',
  `stock_status` smallint(5) unsigned NOT NULL COMMENT 'Stock Status',
  PRIMARY KEY (`product_id`,`website_id`,`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_TMP_STOCK_ID` (`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_TMP_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status Indexer Tmp';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cataloginventory_stock_status_tmp`
--

LOCK TABLES `cataloginventory_stock_status_tmp` WRITE;
/*!40000 ALTER TABLE `cataloginventory_stock_status_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `cataloginventory_stock_status_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogrule`
--

DROP TABLE IF EXISTS `catalogrule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogrule` (
  `rule_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text COMMENT 'Description',
  `from_date` date DEFAULT NULL COMMENT 'From',
  `to_date` date DEFAULT NULL COMMENT 'To',
  `is_active` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Is Active',
  `conditions_serialized` mediumtext COMMENT 'Conditions Serialized',
  `actions_serialized` mediumtext COMMENT 'Actions Serialized',
  `stop_rules_processing` smallint(6) NOT NULL DEFAULT '1' COMMENT 'Stop Rules Processing',
  `sort_order` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `simple_action` varchar(32) DEFAULT NULL COMMENT 'Simple Action',
  `discount_amount` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Discount Amount',
  PRIMARY KEY (`rule_id`),
  KEY `CATALOGRULE_IS_ACTIVE_SORT_ORDER_TO_DATE_FROM_DATE` (`is_active`,`sort_order`,`to_date`,`from_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule`
--

LOCK TABLES `catalogrule` WRITE;
/*!40000 ALTER TABLE `catalogrule` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogrule_customer_group`
--

DROP TABLE IF EXISTS `catalogrule_customer_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogrule_customer_group` (
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group Id',
  PRIMARY KEY (`rule_id`,`customer_group_id`),
  KEY `CATALOGRULE_CUSTOMER_GROUP_CUSTOMER_GROUP_ID` (`customer_group_id`),
  CONSTRAINT `CATALOGRULE_CUSTOMER_GROUP_RULE_ID_CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `catalogrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `CATRULE_CSTR_GROUP_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Rules To Customer Groups Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_customer_group`
--

LOCK TABLES `catalogrule_customer_group` WRITE;
/*!40000 ALTER TABLE `catalogrule_customer_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_customer_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogrule_group_website`
--

DROP TABLE IF EXISTS `catalogrule_group_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogrule_group_website` (
  `rule_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Rule ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group Id',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website Id',
  PRIMARY KEY (`rule_id`,`customer_group_id`,`website_id`),
  KEY `CATALOGRULE_GROUP_WEBSITE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Group Website';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_group_website`
--

LOCK TABLES `catalogrule_group_website` WRITE;
/*!40000 ALTER TABLE `catalogrule_group_website` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_group_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogrule_group_website_replica`
--

DROP TABLE IF EXISTS `catalogrule_group_website_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogrule_group_website_replica` (
  `rule_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Rule ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group Id',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website Id',
  PRIMARY KEY (`rule_id`,`customer_group_id`,`website_id`),
  KEY `CATALOGRULE_GROUP_WEBSITE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Group Website';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_group_website_replica`
--

LOCK TABLES `catalogrule_group_website_replica` WRITE;
/*!40000 ALTER TABLE `catalogrule_group_website_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_group_website_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogrule_product`
--

DROP TABLE IF EXISTS `catalogrule_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogrule_product` (
  `rule_product_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product Id',
  `rule_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Rule ID',
  `from_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'From Time',
  `to_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'To time',
  `customer_group_id` int(11) DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product Id',
  `action_operator` varchar(10) DEFAULT 'to_fixed' COMMENT 'Action Operator',
  `action_amount` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Action Amount',
  `action_stop` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Action Stop',
  `sort_order` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  PRIMARY KEY (`rule_product_id`),
  UNIQUE KEY `UNQ_EAA51B56FF092A0DCB795D1CEF812B7B` (`rule_id`,`from_time`,`to_time`,`website_id`,`customer_group_id`,`product_id`,`sort_order`),
  KEY `CATALOGRULE_PRODUCT_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_PRODUCT_WEBSITE_ID` (`website_id`),
  KEY `CATALOGRULE_PRODUCT_FROM_TIME` (`from_time`),
  KEY `CATALOGRULE_PRODUCT_TO_TIME` (`to_time`),
  KEY `CATALOGRULE_PRODUCT_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_product`
--

LOCK TABLES `catalogrule_product` WRITE;
/*!40000 ALTER TABLE `catalogrule_product` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogrule_product_price`
--

DROP TABLE IF EXISTS `catalogrule_product_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogrule_product_price` (
  `rule_product_price_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product PriceId',
  `rule_date` date NOT NULL COMMENT 'Rule Date',
  `customer_group_id` int(11) DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product Id',
  `rule_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Rule Price',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `latest_start_date` date DEFAULT NULL COMMENT 'Latest StartDate',
  `earliest_end_date` date DEFAULT NULL COMMENT 'Earliest EndDate',
  PRIMARY KEY (`rule_product_price_id`),
  UNIQUE KEY `CATRULE_PRD_PRICE_RULE_DATE_WS_ID_CSTR_GROUP_ID_PRD_ID` (`rule_date`,`website_id`,`customer_group_id`,`product_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID` (`website_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product Price';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_product_price`
--

LOCK TABLES `catalogrule_product_price` WRITE;
/*!40000 ALTER TABLE `catalogrule_product_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_product_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogrule_product_price_replica`
--

DROP TABLE IF EXISTS `catalogrule_product_price_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogrule_product_price_replica` (
  `rule_product_price_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product PriceId',
  `rule_date` date NOT NULL COMMENT 'Rule Date',
  `customer_group_id` int(11) DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product Id',
  `rule_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Rule Price',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `latest_start_date` date DEFAULT NULL COMMENT 'Latest StartDate',
  `earliest_end_date` date DEFAULT NULL COMMENT 'Earliest EndDate',
  PRIMARY KEY (`rule_product_price_id`),
  UNIQUE KEY `CATRULE_PRD_PRICE_RULE_DATE_WS_ID_CSTR_GROUP_ID_PRD_ID` (`rule_date`,`website_id`,`customer_group_id`,`product_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID` (`website_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product Price';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_product_price_replica`
--

LOCK TABLES `catalogrule_product_price_replica` WRITE;
/*!40000 ALTER TABLE `catalogrule_product_price_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_product_price_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogrule_product_replica`
--

DROP TABLE IF EXISTS `catalogrule_product_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogrule_product_replica` (
  `rule_product_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product Id',
  `rule_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Rule ID',
  `from_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'From Time',
  `to_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'To time',
  `customer_group_id` int(11) DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product Id',
  `action_operator` varchar(10) DEFAULT 'to_fixed' COMMENT 'Action Operator',
  `action_amount` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Action Amount',
  `action_stop` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Action Stop',
  `sort_order` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  PRIMARY KEY (`rule_product_id`),
  UNIQUE KEY `UNQ_EAA51B56FF092A0DCB795D1CEF812B7B` (`rule_id`,`from_time`,`to_time`,`website_id`,`customer_group_id`,`product_id`,`sort_order`),
  KEY `CATALOGRULE_PRODUCT_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_PRODUCT_WEBSITE_ID` (`website_id`),
  KEY `CATALOGRULE_PRODUCT_FROM_TIME` (`from_time`),
  KEY `CATALOGRULE_PRODUCT_TO_TIME` (`to_time`),
  KEY `CATALOGRULE_PRODUCT_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_product_replica`
--

LOCK TABLES `catalogrule_product_replica` WRITE;
/*!40000 ALTER TABLE `catalogrule_product_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_product_replica` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogrule_website`
--

DROP TABLE IF EXISTS `catalogrule_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogrule_website` (
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  PRIMARY KEY (`rule_id`,`website_id`),
  KEY `CATALOGRULE_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CATALOGRULE_WEBSITE_RULE_ID_CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `catalogrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `CATALOGRULE_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Rules To Websites Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_website`
--

LOCK TABLES `catalogrule_website` WRITE;
/*!40000 ALTER TABLE `catalogrule_website` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogsearch_fulltext_scope1`
--

DROP TABLE IF EXISTS `catalogsearch_fulltext_scope1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogsearch_fulltext_scope1` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `attribute_id` int(10) unsigned NOT NULL COMMENT 'Attribute_id',
  `data_index` longtext COMMENT 'Data index',
  PRIMARY KEY (`entity_id`,`attribute_id`),
  FULLTEXT KEY `FTI_FULLTEXT_DATA_INDEX` (`data_index`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='catalogsearch_fulltext_scope1';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogsearch_fulltext_scope1`
--

LOCK TABLES `catalogsearch_fulltext_scope1` WRITE;
/*!40000 ALTER TABLE `catalogsearch_fulltext_scope1` DISABLE KEYS */;
INSERT INTO `catalogsearch_fulltext_scope1` VALUES (1351,73,'People of Shibuya Transitional Jacket | People of Shibuya Transitional Jacket-brown-Extra small size | People of Shibuya Transitional Jacket-brown-Small size | People of Shibuya Transitional Jacket-brown-Medium size | People of Shibuya Transitional Jacket-red-Extra small size | People of Shibuya Transitional Jacket-red-Small size | People of Shibuya Transitional Jacket-red-Medium size'),(1351,74,'n31091479'),(1351,75,'People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket. Cut: lightly fitted, ribbed waistband Measurements for size EU 50: garment length 66 cm (26″) Collar: Chin guard, stand-up collar Fastening: continuous two-way zip Exterior pockets: zip pocket(s) Lining: lined Extras: water resistant zips, air vents under the arms Outer material: 89% polyester, 11% elastane Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall. | People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket. Cut: lightly fitted, ribbed waistband Measurements for size EU 50: garment length 66 cm (26″) Collar: Chin guard, stand-up collar Fastening: continuous two-way zip Exterior pockets: zip pocket(s) Lining: lined Extras: water resistant zips, air vents under the arms Outer material: 89% polyester, 11% elastane Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall. | People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket. Cut: lightly fitted, ribbed waistband Measurements for size EU 50: garment length 66 cm (26″) Collar: Chin guard, stand-up collar Fastening: continuous two-way zip Exterior pockets: zip pocket(s) Lining: lined Extras: water resistant zips, air vents under the arms Outer material: 89% polyester, 11% elastane Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall. | People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket. Cut: lightly fitted, ribbed waistband Measurements for size EU 50: garment length 66 cm (26″) Collar: Chin guard, stand-up collar Fastening: continuous two-way zip Exterior pockets: zip pocket(s) Lining: lined Extras: water resistant zips, air vents under the arms Outer material: 89% polyester, 11% elastane Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall. | People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket. Cut: lightly fitted, ribbed waistband Measurements for size EU 50: garment length 66 cm (26″) Collar: Chin guard, stand-up collar Fastening: continuous two-way zip Exterior pockets: zip pocket(s) Lining: lined Extras: water resistant zips, air vents under the arms Outer material: 89% polyester, 11% elastane Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall. | People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket. Cut: lightly fitted, ribbed waistband Measurements for size EU 50: garment length 66 cm (26″) Collar: Chin guard, stand-up collar Fastening: continuous two-way zip Exterior pockets: zip pocket(s) Lining: lined Extras: water resistant zips, air vents under the arms Outer material: 89% polyester, 11% elastane Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall. | People of Shibuya bomber jacket with techno fabric and turtleneck. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket. Cut: lightly fitted, ribbed waistband Measurements for size EU 50: garment length 66 cm (26″) Collar: Chin guard, stand-up collar Fastening: continuous two-way zip Exterior pockets: zip pocket(s) Lining: lined Extras: water resistant zips, air vents under the arms Outer material: 89% polyester, 11% elastane Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall.'),(1351,76,'Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket. | Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket. | Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket. | Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket. | Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket. | Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket. | Jacket with adjustable hood and long sleeves. Featuring cuffs with adjustable tabs and interior ribbing, detachable interior lining in contrast faux shearling and front patch zip pockets on the chest and hip. Zip-up front hidden by a snap-button placket.'),(1351,93,'Brow Brow Brow Red | Red | Red'),(1413,73,'Maschi Lace-up Boots | n I Maschi Lace-up Boots-grey-EU 41 | n I Maschi Lace-up Boots-grey-EU 44 | n I Maschi Lace-up Boots-grey-EU 40 | n I Maschi Lace-up Boots-grey-EU 43 | n I Maschi Lace-up Boots-grey-EU 39 | n I Maschi Lace-up Boots-grey-EU 42 | n I Maschi Lace-up Boots-blue-EU 41 | n I Maschi Lace-up Boots-blue-EU 44 | n I Maschi Lace-up Boots-blue-EU 40 | n I Maschi Lace-up Boots-blue-EU 43 | n I Maschi Lace-up Boots-blue-EU 39 | n I Maschi Lace-up Boots-blue-EU 42 | n I Maschi Lace-up Boots-white-EU 41 | n I Maschi Lace-up Boots-white-EU 44 | n I Maschi Lace-up Boots-white-EU 40 | n I Maschi Lace-up Boots-white-EU 43 | n I Maschi Lace-up Boots-white-EU 39 | n I Maschi Lace-up Boots-white-EU 42 | n I Maschi Lace-up Boots-black-EU 41 | n I Maschi Lace-up Boots-black-EU 44 | n I Maschi Lace-up Boots-black-EU 40 | n I Maschi Lace-up Boots-black-EU 43 | n I Maschi Lace-up Boots-black-EU 39 | n I Maschi Lace-up Boots-black-EU 42 | n I Maschi Lace-up Boots-red-EU 41 | n I Maschi Lace-up Boots-red-EU 44 | n I Maschi Lace-up Boots-red-EU 40 | n I Maschi Lace-up Boots-red-EU 43 | n I Maschi Lace-up Boots-red-EU 39 | n I Maschi Lace-up Boots-red-EU 42'),(1413,74,'n30807043'),(1413,75,'Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic | Modern with classic Budapest style pattern lace-up boots by I Maschi made out of leather. Details: Sweet looks from the ground up Mid rise Lace-up fastening Pull tab Round toe Textured sole Extras: suede, Budapest style pattern Outer material: leather Inner material: leather Outsole: synthetic'),(1413,76,'I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style patter I Maschi suede leather lace-up boots with Budapest style pattern'),(1413,93,'Grey | Grey | Grey | Grey | Grey | Grey | Blue | Blue | Blue | Blue | Blue | Blue | White | White | White | White | White | White | Black | Black | Black | Black | Black | Black | Red | Red | Red | Red | Red | Red'),(1455,73,'Grey Sneakers | n Grey Sneakers-red-EU 45 | n Grey Sneakers-red-EU 43 | n Grey Sneakers-red-EU 42 | n Grey Sneakers-red-EU 41 | n Grey Sneakers-red-EU 40 | n Grey Sneakers-red-EU 38 | n Grey Sneakers-red-EU 37 | n Grey Sneakers-blue-EU 45 | n Grey Sneakers-blue-EU 43 | n Grey Sneakers-blue-EU 42 | n Grey Sneakers-blue-EU 41 | n Grey Sneakers-blue-EU 40 | n Grey Sneakers-blue-EU 38 | n Grey Sneakers-blue-EU 37 | n Grey Sneakers-white-EU 45 | n Grey Sneakers-white-EU 43 | n Grey Sneakers-white-EU 42 | n Grey Sneakers-white-EU 41 | n Grey Sneakers-white-EU 40 | n Grey Sneakers-white-EU 38 | n Grey Sneakers-white-EU 37 | n Grey Sneakers-brown-EU 45 | n Grey Sneakers-brown-EU 43 | n Grey Sneakers-brown-EU 42 | n Grey Sneakers-brown-EU 41 | n Grey Sneakers-brown-EU 40 | n Grey Sneakers-brown-EU 38 | n Grey Sneakers-brown-EU 37 | n Grey Sneakers-black-EU 45 | n Grey Sneakers-black-EU 43 | n Grey Sneakers-black-EU 42 | n Grey Sneakers-black-EU 41 | n Grey Sneakers-black-EU 40 | n Grey Sneakers-black-EU 38 | n Grey Sneakers-black-EU 37'),(1455,74,'n31091133'),(1455,75,'A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic | A 1970s style first worn by B-ball stars, the Nizza offers a lightweight textile alternative to traditional leather looks. These low-top shoes offer signature Nizza style. They use naturally breathable canvas for the upper and shoe lining. The toe bumper echoes the rubber toe cap of the original design. Extras: lacing, logo appliqué(s), leather detailingInner material: textileOutsole: synthetic'),(1455,76,'Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers | Adidas Nizza white low top sneakers'),(1455,93,'Red | Red | Red | Red | Red | Red | Red | Blue | Blue | Blue | Blue | Blue | Blue | Blue | White | White | White | White | White | White | White | Brow Brow Brow Brow Brow Brow Brow Black | Black | Black | Black | Black | Black | Black'),(1464,73,'Puma Transitional Jacket | Puma Transitional Jacket-white-Small size | Puma Transitional Jacket-white-Medium size | Puma Transitional Jacket-white-Large size | Puma Transitional Jacket-white-Extra large size | Puma Transitional Jacket-blue-Small size | Puma Transitional Jacket-blue-Medium size | Puma Transitional Jacket-blue-Large size | Puma Transitional Jacket-blue-Extra large size'),(1464,74,'n31219211'),(1464,75,'BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear. Line: Puma x Big Sean Cut: straight, drawstring hem Measurements for size EU M: garment length 74 cm (29″) Collar: turn-down collar Fastening: continuous snap fastener placket Sleeve: elasticated cuffs Exterior pockets: welt pocket(s) Lining: lined Extras: satin, subtle sheen, contrast piping, embroidered logo(s) Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear. Line: Puma x Big Sean Cut: straight, drawstring hem Measurements for size EU M: garment length 74 cm (29″) Collar: turn-down collar Fastening: continuous snap fastener placket Sleeve: elasticated cuffs Exterior pockets: welt pocket(s) Lining: lined Extras: satin, subtle sheen, contrast piping, embroidered logo(s) Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear. Line: Puma x Big Sean Cut: straight, drawstring hem Measurements for size EU M: garment length 74 cm (29″) Collar: turn-down collar Fastening: continuous snap fastener placket Sleeve: elasticated cuffs Exterior pockets: welt pocket(s) Lining: lined Extras: satin, subtle sheen, contrast piping, embroidered logo(s) Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear. Line: Puma x Big Sean Cut: straight, drawstring hem Measurements for size EU M: garment length 74 cm (29″) Collar: turn-down collar Fastening: continuous snap fastener placket Sleeve: elasticated cuffs Exterior pockets: welt pocket(s) Lining: lined Extras: satin, subtle sheen, contrast piping, embroidered logo(s) Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear. Line: Puma x Big Sean Cut: straight, drawstring hem Measurements for size EU M: garment length 74 cm (29″) Collar: turn-down collar Fastening: continuous snap fastener placket Sleeve: elasticated cuffs Exterior pockets: welt pocket(s) Lining: lined Extras: satin, subtle sheen, contrast piping, embroidered logo(s) Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear. Line: Puma x Big Sean Cut: straight, drawstring hem Measurements for size EU M: garment length 74 cm (29″) Collar: turn-down collar Fastening: continuous snap fastener placket Sleeve: elasticated cuffs Exterior pockets: welt pocket(s) Lining: lined Extras: satin, subtle sheen, contrast piping, embroidered logo(s) Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear. Line: Puma x Big Sean Cut: straight, drawstring hem Measurements for size EU M: garment length 74 cm (29″) Collar: turn-down collar Fastening: continuous snap fastener placket Sleeve: elasticated cuffs Exterior pockets: welt pocket(s) Lining: lined Extras: satin, subtle sheen, contrast piping, embroidered logo(s) Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear. Line: Puma x Big Sean Cut: straight, drawstring hem Measurements for size EU M: garment length 74 cm (29″) Collar: turn-down collar Fastening: continuous snap fastener placket Sleeve: elasticated cuffs Exterior pockets: welt pocket(s) Lining: lined Extras: satin, subtle sheen, contrast piping, embroidered logo(s) Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | BIG SEAN loves his home town. He’s proud to represent, and to spread the good Detroit-style word, all the world round. The PUMA x BIG SEAN T7 track jacket (and don’t overlook the coordinating track pants) represents Detroit – and a little bit of Bronx – hip-hop street style. Serious, luxurious knits are rendered and blended here. A true fusion of classic looks, contemporary fabrics and total comfort in old-school style track gear. Line: Puma x Big Sean Cut: straight, drawstring hem Measurements for size EU M: garment length 74 cm (29″) Collar: turn-down collar Fastening: continuous snap fastener placket Sleeve: elasticated cuffs Exterior pockets: welt pocket(s) Lining: lined Extras: satin, subtle sheen, contrast piping, embroidered logo(s) Material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall.'),(1464,76,'Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior. | Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior. | Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior. | Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior. | Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior. | Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior. | Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior. | Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior. | Hooded parka with a high collar and full sleeves. Featuring side zip pockets, a technical fabric interior.'),(1464,93,'White | White | White | White | Blue | Blue | Blue | Blue'),(1495,73,'Timberland Lace-ups | n Timberland Lace-ups-grey-EU 44 | n Timberland Lace-ups-grey-EU 40 | n Timberland Lace-ups-grey-EU 39 | n Timberland Lace-ups-grey-EU 42 | n Timberland Lace-ups-grey-EU 45 | n Timberland Lace-ups-grey-EU 43 | n Timberland Lace-ups-blue-EU 44 | n Timberland Lace-ups-blue-EU 40 | n Timberland Lace-ups-blue-EU 39 | n Timberland Lace-ups-blue-EU 42 | n Timberland Lace-ups-blue-EU 45 | n Timberland Lace-ups-blue-EU 43 | n Timberland Lace-ups-white-EU 44 | n Timberland Lace-ups-white-EU 40 | n Timberland Lace-ups-white-EU 39 | n Timberland Lace-ups-white-EU 42 | n Timberland Lace-ups-white-EU 45 | n Timberland Lace-ups-white-EU 43 | n Timberland Lace-ups-black-EU 44 | n Timberland Lace-ups-black-EU 40 | n Timberland Lace-ups-black-EU 39 | n Timberland Lace-ups-black-EU 42 | n Timberland Lace-ups-black-EU 45 | n Timberland Lace-ups-black-EU 43 | n Timberland Lace-ups-red-EU 44 | n Timberland Lace-ups-red-EU 40 | n Timberland Lace-ups-red-EU 39 | n Timberland Lace-ups-red-EU 42 | n Timberland Lace-ups-red-EU 45 | n Timberland Lace-ups-red-EU 43'),(1495,74,'n30986434'),(1495,75,'You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic | You won\'t believe how light our lace-ups are, but they aren\'t lightweights when it comes to looking amazing. Perfectly tanned leathers and amazingly comfy outsoles mean that each step looks and feels better than the last. Cool, comfy menʼs lace-up shoes built for the everyday walkings, ready to wear with any outfit. Extras: logo appliqué(s), leather detailing, lacingOuter material: leather, textileInner material: textileOutsole: synthetic'),(1495,76,'Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups | Timberland textile ice colour lace-ups'),(1495,93,'Grey | Grey | Grey | Grey | Grey | Grey | Blue | Blue | Blue | Blue | Blue | Blue | White | White | White | White | White | White | Black | Black | Black | Black | Black | Black | Red | Red | Red | Red | Red | Red'),(1526,73,'Cat Lace-up Boots | n Cat Lace-up Boots-black-EU 36 | n Cat Lace-up Boots-black-EU 39 | n Cat Lace-up Boots-black-EU 37 | n Cat Lace-up Boots-black-EU 40 | n Cat Lace-up Boots-black-EU 38 | n Cat Lace-up Boots-black-EU 41 | n Cat Lace-up Boots-white-EU 36 | n Cat Lace-up Boots-white-EU 39 | n Cat Lace-up Boots-white-EU 37 | n Cat Lace-up Boots-white-EU 40 | n Cat Lace-up Boots-white-EU 38 | n Cat Lace-up Boots-white-EU 41 | n Cat Lace-up Boots-blue-EU 36 | n Cat Lace-up Boots-blue-EU 39 | n Cat Lace-up Boots-blue-EU 37 | n Cat Lace-up Boots-blue-EU 40 | n Cat Lace-up Boots-blue-EU 38 | n Cat Lace-up Boots-blue-EU 41 | n Cat Lace-up Boots-red-EU 36 | n Cat Lace-up Boots-red-EU 39 | n Cat Lace-up Boots-red-EU 37 | n Cat Lace-up Boots-red-EU 40 | n Cat Lace-up Boots-red-EU 38 | n Cat Lace-up Boots-red-EU 41 | n Cat Lace-up Boots-brown-EU 36 | n Cat Lace-up Boots-brown-EU 39 | n Cat Lace-up Boots-brown-EU 37 | n Cat Lace-up Boots-brown-EU 40 | n Cat Lace-up Boots-brown-EU 38 | n Cat Lace-up Boots-brown-EU 41'),(1526,74,'n31149594'),(1526,75,'The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic | The Whiston is one tough mudder of a work boot. Featuring traditional styling and a durable rubber outsole, this classic, lace-to-toe boot is a solid contender. Made of nubuck leather by Caterpillar brand providing protection and long-term durability. The outsole is both durable and protective, reducing the risk of slips and falls on low traction surfaces, including oil. Durable and light half boots.Extras: Nubuck leather, embossed logoOuter material: leatherInner material: textileOutsole: synthetic'),(1526,76,'Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat | Men\'s Lace-up nubuck leather half work boots by Cat'),(1526,93,'Black | Black | Black | Black | Black | Black | White | White | White | White | White | White | Blue | Blue | Blue | Blue | Blue | Blue | Red | Red | Red | Red | Red | Red | Brow Brow Brow Brow Brow Brown'),(1535,73,'Steinbock Transitional Jacket |  Steinbock Transitional Jacket-brown-Extra small size |  Steinbock Transitional Jacket-brown-Small size |  Steinbock Transitional Jacket-brown-Extra large size |  Steinbock Transitional Jacket-brown-Medium size |  Steinbock Transitional Jacket-white-Extra small size |  Steinbock Transitional Jacket-white-Small size |  Steinbock Transitional Jacket-white-Extra large size |  Steinbock Transitional Jacket-white-Medium size'),(1535,74,'n31176055'),(1535,75,'Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space. Cut: straight Measurements for size EU 50: garment length 70 cm (27.5″), sleeve length 66 cm (26″) Collar: Stand-up collar with integrated hood Fastening: full length zip fastener Exterior pockets: zip pocket(s) Interior pockets: inside pockets left and right Lining: lined and padded Material: 90% polyester, 10% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall. | Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space. Cut: straight Measurements for size EU 50: garment length 70 cm (27.5″), sleeve length 66 cm (26″) Collar: Stand-up collar with integrated hood Fastening: full length zip fastener Exterior pockets: zip pocket(s) Interior pockets: inside pockets left and right Lining: lined and padded Material: 90% polyester, 10% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall. | Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space. Cut: straight Measurements for size EU 50: garment length 70 cm (27.5″), sleeve length 66 cm (26″) Collar: Stand-up collar with integrated hood Fastening: full length zip fastener Exterior pockets: zip pocket(s) Interior pockets: inside pockets left and right Lining: lined and padded Material: 90% polyester, 10% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall. | Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space. Cut: straight Measurements for size EU 50: garment length 70 cm (27.5″), sleeve length 66 cm (26″) Collar: Stand-up collar with integrated hood Fastening: full length zip fastener Exterior pockets: zip pocket(s) Interior pockets: inside pockets left and right Lining: lined and padded Material: 90% polyester, 10% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall. | Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space. Cut: straight Measurements for size EU 50: garment length 70 cm (27.5″), sleeve length 66 cm (26″) Collar: Stand-up collar with integrated hood Fastening: full length zip fastener Exterior pockets: zip pocket(s) Interior pockets: inside pockets left and right Lining: lined and padded Material: 90% polyester, 10% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall. | Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space. Cut: straight Measurements for size EU 50: garment length 70 cm (27.5″), sleeve length 66 cm (26″) Collar: Stand-up collar with integrated hood Fastening: full length zip fastener Exterior pockets: zip pocket(s) Interior pockets: inside pockets left and right Lining: lined and padded Material: 90% polyester, 10% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall. | Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space. Cut: straight Measurements for size EU 50: garment length 70 cm (27.5″), sleeve length 66 cm (26″) Collar: Stand-up collar with integrated hood Fastening: full length zip fastener Exterior pockets: zip pocket(s) Interior pockets: inside pockets left and right Lining: lined and padded Material: 90% polyester, 10% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall. | Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space. Cut: straight Measurements for size EU 50: garment length 70 cm (27.5″), sleeve length 66 cm (26″) Collar: Stand-up collar with integrated hood Fastening: full length zip fastener Exterior pockets: zip pocket(s) Interior pockets: inside pockets left and right Lining: lined and padded Material: 90% polyester, 10% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall. | Quilted down jacket by STEINBOCK – this ultralight winter jacket made from microfibre with top-quality filling in 90% down and 10% feathers adapts to suit your style! Featuring cross quilting, a raised collar, a high-closing concealed zip and a press stud panel. One breast flap pocket with press studs, 2 zipped pockets with additional slit pockets and numerous inner pockets ensure practical storage space. Cut: straight Measurements for size EU 50: garment length 70 cm (27.5″), sleeve length 66 cm (26″) Collar: Stand-up collar with integrated hood Fastening: full length zip fastener Exterior pockets: zip pocket(s) Interior pockets: inside pockets left and right Lining: lined and padded Material: 90% polyester, 10% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU 50 and is 185cm/6′0″ tall.'),(1535,76,'Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims. | Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims. | Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims. | Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims. | Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims. | Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims. | Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims. | Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims. | Puffer jacket with a hood and long sleeves with a zip pocket detail. Featuring front zip pockets, an inside pocket and ribbed trims.'),(1535,93,'Brow Brow Brow Brow White | White | White | White'),(1561,73,'Half Boots | n Half Boots-EU 39-red | n Half Boots-EU 39-black | n Half Boots-EU 39-white | n Half Boots-EU 39-brow n Half Boots-EU 39-grey | n Half Boots-EU 42-red | n Half Boots-EU 42-black | n Half Boots-EU 42-white | n Half Boots-EU 42-brow n Half Boots-EU 42-grey | n Half Boots-EU 40-red | n Half Boots-EU 40-black | n Half Boots-EU 40-white | n Half Boots-EU 40-brow n Half Boots-EU 40-grey | n Half Boots-EU 43-red | n Half Boots-EU 43-black | n Half Boots-EU 43-white | n Half Boots-EU 43-brow n Half Boots-EU 43-grey | n Half Boots-EU 41-red | n Half Boots-EU 41-black | n Half Boots-EU 41-white | n Half Boots-EU 41-brow n Half Boots-EU 41-grey'),(1561,74,'n31091010'),(1561,75,'Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic | Go light. Go fast. Stay dry. Low sole half boots made of soft leather by Boxfresh. Product colors: Dark Blue / Black / White / Dark Brown/ Grey / Dark RedExtras: suede, logo appliqué(s)Outer material: leatherInner material: textileOutsole: synthetic'),(1561,76,'Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots | Boxfresh men\'s leather half boots'),(1561,93,'Red | Black | White | Brow Grey | Red | Black | White | Brow Grey | Red | Black | White | Brow Grey | Red | Black | White | Brow Grey | Red | Black | White | Brow Grey'),(1568,73,'Tommy Hilfiger Long-sleeved Jumper |  Tommy Hilfiger Long-sleeved Jumper-brown-Extra small size |  Tommy Hilfiger Long-sleeved Jumper-brown-Small size |  Tommy Hilfiger Long-sleeved Jumper-brown-Medium size |  Tommy Hilfiger Long-sleeved Jumper-blue-Extra small size |  Tommy Hilfiger Long-sleeved Jumper-blue-Small size |  Tommy Hilfiger Long-sleeved Jumper-blue-Medium size'),(1568,74,'n31231309'),(1568,75,'With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem. Cut: tapered, ribbed trim waistband Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: embroidered logo(s) Pattern: chequered Material: 63% cotton, 27% polyamide, 10% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem. Cut: tapered, ribbed trim waistband Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: embroidered logo(s) Pattern: chequered Material: 63% cotton, 27% polyamide, 10% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem. Cut: tapered, ribbed trim waistband Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: embroidered logo(s) Pattern: chequered Material: 63% cotton, 27% polyamide, 10% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem. Cut: tapered, ribbed trim waistband Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: embroidered logo(s) Pattern: chequered Material: 63% cotton, 27% polyamide, 10% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem. Cut: tapered, ribbed trim waistband Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: embroidered logo(s) Pattern: chequered Material: 63% cotton, 27% polyamide, 10% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem. Cut: tapered, ribbed trim waistband Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: embroidered logo(s) Pattern: chequered Material: 63% cotton, 27% polyamide, 10% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | With its all-over windowpane check, this pure cotton long-sleeve top will elevate low-key looks with a bold print. Highlights of this jumper are that it is from pure cotton, all-over windowpane check, crew neck, rib-knit collar, cuffs and hem. Cut: tapered, ribbed trim waistband Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 72,5 cm (28.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: embroidered logo(s) Pattern: chequered Material: 63% cotton, 27% polyamide, 10% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall.'),(1568,76,'Knit sweater with a round neckline, long sleeves and contrast ribbed trims. | Knit sweater with a round neckline, long sleeves and contrast ribbed trims. | Knit sweater with a round neckline, long sleeves and contrast ribbed trims. | Knit sweater with a round neckline, long sleeves and contrast ribbed trims. | Knit sweater with a round neckline, long sleeves and contrast ribbed trims. | Knit sweater with a round neckline, long sleeves and contrast ribbed trims. | Knit sweater with a round neckline, long sleeves and contrast ribbed trims.'),(1568,93,'Brow Brow Brow Blue | Blue | Blue'),(1583,73,'Diesel Jacket |  Diesel Jacket-brown-Large size |  Diesel Jacket-brown-Small size |  Diesel Jacket-brown-Medium size |  Diesel Jacket-grey-Large size |  Diesel Jacket-grey-Small size |  Diesel Jacket-grey-Medium size'),(1583,74,'n31302817'),(1583,75,'This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour. Cut: slightly tapered, ribbed waistband Measurements for size EU M: garment length 67,5 cm (26.5″) Collar: ribbed knit collar Fastening: full length zip fastener Sleeve: ribbed trim cuffs Exterior pockets: slit pocket with press stud closure Interior pockets: left inside pocket Lining: lined Outer material: 83% polyester, 17% cotton Lining material: 98% polyester, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour. Cut: slightly tapered, ribbed waistband Measurements for size EU M: garment length 67,5 cm (26.5″) Collar: ribbed knit collar Fastening: full length zip fastener Sleeve: ribbed trim cuffs Exterior pockets: slit pocket with press stud closure Interior pockets: left inside pocket Lining: lined Outer material: 83% polyester, 17% cotton Lining material: 98% polyester, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour. Cut: slightly tapered, ribbed waistband Measurements for size EU M: garment length 67,5 cm (26.5″) Collar: ribbed knit collar Fastening: full length zip fastener Sleeve: ribbed trim cuffs Exterior pockets: slit pocket with press stud closure Interior pockets: left inside pocket Lining: lined Outer material: 83% polyester, 17% cotton Lining material: 98% polyester, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour. Cut: slightly tapered, ribbed waistband Measurements for size EU M: garment length 67,5 cm (26.5″) Collar: ribbed knit collar Fastening: full length zip fastener Sleeve: ribbed trim cuffs Exterior pockets: slit pocket with press stud closure Interior pockets: left inside pocket Lining: lined Outer material: 83% polyester, 17% cotton Lining material: 98% polyester, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour. Cut: slightly tapered, ribbed waistband Measurements for size EU M: garment length 67,5 cm (26.5″) Collar: ribbed knit collar Fastening: full length zip fastener Sleeve: ribbed trim cuffs Exterior pockets: slit pocket with press stud closure Interior pockets: left inside pocket Lining: lined Outer material: 83% polyester, 17% cotton Lining material: 98% polyester, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour. Cut: slightly tapered, ribbed waistband Measurements for size EU M: garment length 67,5 cm (26.5″) Collar: ribbed knit collar Fastening: full length zip fastener Sleeve: ribbed trim cuffs Exterior pockets: slit pocket with press stud closure Interior pockets: left inside pocket Lining: lined Outer material: 83% polyester, 17% cotton Lining material: 98% polyester, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | This jacket is inspired by classic bomber styles. It\'s crafted from a mix of cotton fleece and smooth nylon panels, and finished with coated zippers for a technical feel. The contrasting zip pull adds a pop of colour. Cut: slightly tapered, ribbed waistband Measurements for size EU M: garment length 67,5 cm (26.5″) Collar: ribbed knit collar Fastening: full length zip fastener Sleeve: ribbed trim cuffs Exterior pockets: slit pocket with press stud closure Interior pockets: left inside pocket Lining: lined Outer material: 83% polyester, 17% cotton Lining material: 98% polyester, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall.'),(1583,76,'Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front. | Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front. | Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front. | Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front. | Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front. | Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front. | Jacket with a pointed collar and long sleeves. Features two front pockets, lining with an inside pocket and a zip-up front.'),(1583,93,'Brow Brow Brow Grey | Grey | Grey'),(1596,73,'Grey Sweat Pants | Grey Sweat Pants-red-Extra small size | Grey Sweat Pants-red-Small size | Grey Sweat Pants-red-Medium size | Grey Sweat Pants-red-Large size | Grey Sweat Pants-black-Extra small size | Grey Sweat Pants-black-Small size | Grey Sweat Pants-black-Medium size | Grey Sweat Pants-black-Large size | Grey Sweat Pants-blue-Extra small size | Grey Sweat Pants-blue-Small size | Grey Sweat Pants-blue-Medium size | Grey Sweat Pants-blue-Large size | Grey Sweat Pants-white-Extra small size | Grey Sweat Pants-white-Small size | Grey Sweat Pants-white-Medium size | Grey Sweat Pants-white-Large size | Grey Sweat Pants-brown-Extra small size | Grey Sweat Pants-brown-Small size | Grey Sweat Pants-brown-Medium size | Grey Sweat Pants-brown-Large size'),(1596,74,'n31134483'),(1596,75,'Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Cut: straight, narrow legs, ribbed cuffs on the anklesMeasurements for size EU M: length of outside leg 105 cm (41.5″)Waistband: drawstring waist with elasticPockets: slit pocket/sLining: internal soft fleece coverMaterial: 80% cotton, 17% polyester, 3% elastaneManufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall.'),(1596,76,'Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey | Grey Sweat Pants by Lawrence Grey'),(1596,93,'Red | Red | Red | Red | Black | Black | Black | Black | Blue | Blue | Blue | Blue | White | White | White | White | Brow Brow Brow Brown'),(1597,73,'J.B by Jean Biani Sneakers | n J.B by Jean Biani Sneakers-EU 41-red | n J.B by Jean Biani Sneakers-EU 41-blue | n J.B by Jean Biani Sneakers-EU 41-white | n J.B by Jean Biani Sneakers-EU 41-brow n J.B by Jean Biani Sneakers-EU 41-grey | n J.B by Jean Biani Sneakers-EU 40-red | n J.B by Jean Biani Sneakers-EU 40-blue | n J.B by Jean Biani Sneakers-EU 40-white | n J.B by Jean Biani Sneakers-EU 40-brow n J.B by Jean Biani Sneakers-EU 40-grey | n J.B by Jean Biani Sneakers-EU 42-red | n J.B by Jean Biani Sneakers-EU 42-blue | n J.B by Jean Biani Sneakers-EU 42-white | n J.B by Jean Biani Sneakers-EU 42-brow n J.B by Jean Biani Sneakers-EU 42-grey'),(1597,74,'n31276018'),(1597,75,'Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic | Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic | Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic | Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic | Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic | Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic | Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic | Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic | Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic | Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic | Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic | Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic | Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic | Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic | Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic | Low top, calfskin leather sneakers with plain toe by Jean Biani. Jean Biani of Paris, established in 1959 in France, and founded by Jean Pecker and Ru Biani, is a French high fashion Men’s wear brand. In 2002 the brand was acquired by fashion industry group Weibo. Since 1959 till the year 2016 brand’s expansion continues throughout Europe, Russia, Middle East, and Asia continues to design and produce contemporary men’s fashion, with a blend of style and high-quality fabrics.Extras: hole pattern, grained leather, lacingOuter material: leatherInner material: leatherOutsole: synthetic'),(1597,76,'Low-Top calfskin leather sneakers by Jean Biani | Low-Top calfskin leather sneakers by Jean Biani | Low-Top calfskin leather sneakers by Jean Biani | Low-Top calfskin leather sneakers by Jean Biani | Low-Top calfskin leather sneakers by Jean Biani | Low-Top calfskin leather sneakers by Jean Biani | Low-Top calfskin leather sneakers by Jean Biani | Low-Top calfskin leather sneakers by Jean Biani | Low-Top calfskin leather sneakers by Jean Biani | Low-Top calfskin leather sneakers by Jean Biani | Low-Top calfskin leather sneakers by Jean Biani | Low-Top calfskin leather sneakers by Jean Biani | Low-Top calfskin leather sneakers by Jean Biani | Low-Top calfskin leather sneakers by Jean Biani | Low-Top calfskin leather sneakers by Jean Biani | Low-Top calfskin leather sneakers by Jean Biani'),(1597,93,'Red | Blue | White | Brow Grey | Red | Blue | White | Brow Grey | Red | Blue | White | Brow Grey'),(1604,73,'Dark Blue Straight Leg Jeans | Dark Blue Straight Leg Jeans-grey-Large size | Dark Blue Straight Leg Jeans-grey-Small size | Dark Blue Straight Leg Jeans-grey-Medium size | Dark Blue Straight Leg Jeans-blue-Large size | Dark Blue Straight Leg Jeans-blue-Small size | Dark Blue Straight Leg Jeans-blue-Medium size'),(1604,74,'n31253499'),(1604,75,'The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos. Manufacturers product information: regular fitCut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, logo tag on back of waistbandMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU L32W32 and is 185cm/6′0″ tall. | The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos. Manufacturers product information: regular fitCut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, logo tag on back of waistbandMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU L32W32 and is 185cm/6′0″ tall. | The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos. Manufacturers product information: regular fitCut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, logo tag on back of waistbandMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU L32W32 and is 185cm/6′0″ tall. | The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos. Manufacturers product information: regular fitCut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, logo tag on back of waistbandMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU L32W32 and is 185cm/6′0″ tall. | The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos. Manufacturers product information: regular fitCut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, logo tag on back of waistbandMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU L32W32 and is 185cm/6′0″ tall. | The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos. Manufacturers product information: regular fitCut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, logo tag on back of waistbandMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU L32W32 and is 185cm/6′0″ tall. | The 624 are refined Regular Fit trousers with regular leg and bottom, perfect for the casual tailoring look. Frontal pocket french type, back side pockets with fillets. Its fit is regular on the thigh without being adherent. Reinforced stitching on the sides for maximum strength. These trousers are suitable for all ages. The real chinos. Manufacturers product information: regular fitCut: slightly tapered legMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 27 cm (10.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, logo tag on back of waistbandMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU L32W32 and is 185cm/6′0″ tall.'),(1604,76,'Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front. | Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front. | Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front. | Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front. | Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front. | Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front. | Straight fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.'),(1604,93,'Grey | Grey | Grey | Blue | Blue | Blue'),(1630,73,'Dark Blue Slim Fit Jeans | Dark Blue Slim Fit Jeans-blue-Extra small size | Dark Blue Slim Fit Jeans-blue-Large size | Dark Blue Slim Fit Jeans-blue-Extra large size | Dark Blue Slim Fit Jeans-blue-Small size | Dark Blue Slim Fit Jeans-blue-Medium size | Dark Blue Slim Fit Jeans-black-Extra small size | Dark Blue Slim Fit Jeans-black-Large size | Dark Blue Slim Fit Jeans-black-Extra large size | Dark Blue Slim Fit Jeans-black-Small size | Dark Blue Slim Fit Jeans-black-Medium size'),(1630,74,'n31253492'),(1630,75,'Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material. Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt loop(s)Pockets: 5-pocketExtras: dark wash, contrast trims on side, logo tag on back of waistbandMaterial: 100% cottonManufacturer\'s care instructions: machine wash | Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material. Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt loop(s)Pockets: 5-pocketExtras: dark wash, contrast trims on side, logo tag on back of waistbandMaterial: 100% cottonManufacturer\'s care instructions: machine wash | Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material. Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt loop(s)Pockets: 5-pocketExtras: dark wash, contrast trims on side, logo tag on back of waistbandMaterial: 100% cottonManufacturer\'s care instructions: machine wash | Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material. Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt loop(s)Pockets: 5-pocketExtras: dark wash, contrast trims on side, logo tag on back of waistbandMaterial: 100% cottonManufacturer\'s care instructions: machine wash | Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material. Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt loop(s)Pockets: 5-pocketExtras: dark wash, contrast trims on side, logo tag on back of waistbandMaterial: 100% cottonManufacturer\'s care instructions: machine wash | Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material. Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt loop(s)Pockets: 5-pocketExtras: dark wash, contrast trims on side, logo tag on back of waistbandMaterial: 100% cottonManufacturer\'s care instructions: machine wash | Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material. Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt loop(s)Pockets: 5-pocketExtras: dark wash, contrast trims on side, logo tag on back of waistbandMaterial: 100% cottonManufacturer\'s care instructions: machine wash | Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material. Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt loop(s)Pockets: 5-pocketExtras: dark wash, contrast trims on side, logo tag on back of waistbandMaterial: 100% cottonManufacturer\'s care instructions: machine wash | Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material. Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt loop(s)Pockets: 5-pocketExtras: dark wash, contrast trims on side, logo tag on back of waistbandMaterial: 100% cottonManufacturer\'s care instructions: machine wash | Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material. Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt loop(s)Pockets: 5-pocketExtras: dark wash, contrast trims on side, logo tag on back of waistbandMaterial: 100% cottonManufacturer\'s care instructions: machine wash | Jeans with a normal waist and 4-pockets. 5 belt loops closure at front and from stretchy material. Manufacturers product information: anti-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 80 cm (31.5″), rise 29 cm (11.5″)Waistband: buttoned, belt loop(s)Pockets: 5-pocketExtras: dark wash, contrast trims on side, logo tag on back of waistbandMaterial: 100% cottonManufacturer\'s care instructions: machine wash'),(1630,76,'Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.'),(1630,93,'Blue | Blue | Blue | Blue | Blue | Black | Black | Black | Black | Black'),(1643,73,'Ugg Freamon Wp | n Ugg Freamon Wp-black-EU 42 | n Ugg Freamon Wp-black-EU 43 | n Ugg Freamon Wp-black-EU 44 | n Ugg Freamon Wp-red-EU 42 | n Ugg Freamon Wp-red-EU 43 | n Ugg Freamon Wp-red-EU 44 | n Ugg Freamon Wp-blue-EU 42 | n Ugg Freamon Wp-blue-EU 43 | n Ugg Freamon Wp-blue-EU 44 | n Ugg Freamon Wp-white-EU 42 | n Ugg Freamon Wp-white-EU 43 | n Ugg Freamon Wp-white-EU 44'),(1643,74,'n31276018-1'),(1643,75,'The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility. Details: Waterproof full-grain leather Oiled suede heel counter enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning Treadlite by UGG™ outsole Extras: suede, grained leather, strap(s) on the bootlegs Outer material: leather Inner material: leather Outsole: synthetic | The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility. Details: Waterproof full-grain leather Oiled suede heel counter enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning Treadlite by UGG™ outsole Extras: suede, grained leather, strap(s) on the bootlegs Outer material: leather Inner material: leather Outsole: synthetic | The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility. Details: Waterproof full-grain leather Oiled suede heel counter enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning Treadlite by UGG™ outsole Extras: suede, grained leather, strap(s) on the bootlegs Outer material: leather Inner material: leather Outsole: synthetic | The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility. Details: Waterproof full-grain leather Oiled suede heel counter enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning Treadlite by UGG™ outsole Extras: suede, grained leather, strap(s) on the bootlegs Outer material: leather Inner material: leather Outsole: synthetic | The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility. Details: Waterproof full-grain leather Oiled suede heel counter enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning Treadlite by UGG™ outsole Extras: suede, grained leather, strap(s) on the bootlegs Outer material: leather Inner material: leather Outsole: synthetic | The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility. Details: Waterproof full-grain leather Oiled suede heel counter enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning Treadlite by UGG™ outsole Extras: suede, grained leather, strap(s) on the bootlegs Outer material: leather Inner material: leather Outsole: synthetic | The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility. Details: Waterproof full-grain leather Oiled suede heel counter enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning Treadlite by UGG™ outsole Extras: suede, grained leather, strap(s) on the bootlegs Outer material: leather Inner material: leather Outsole: synthetic | The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility. Details: Waterproof full-grain leather Oiled suede heel counter enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning Treadlite by UGG™ outsole Extras: suede, grained leather, strap(s) on the bootlegs Outer material: leather Inner material: leather Outsole: synthetic | The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility. Details: Waterproof full-grain leather Oiled suede heel counter enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning Treadlite by UGG™ outsole Extras: suede, grained leather, strap(s) on the bootlegs Outer material: leather Inner material: leather Outsole: synthetic | The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility. Details: Waterproof full-grain leather Oiled suede heel counter enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning Treadlite by UGG™ outsole Extras: suede, grained leather, strap(s) on the bootlegs Outer material: leather Inner material: leather Outsole: synthetic | The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility. Details: Waterproof full-grain leather Oiled suede heel counter enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning Treadlite by UGG™ outsole Extras: suede, grained leather, strap(s) on the bootlegs Outer material: leather Inner material: leather Outsole: synthetic | The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility. Details: Waterproof full-grain leather Oiled suede heel counter enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning Treadlite by UGG™ outsole Extras: suede, grained leather, strap(s) on the bootlegs Outer material: leather Inner material: leather Outsole: synthetic | The easy feel of a sneaker combines with the look of a chukka in our best-selling Freamon. Made for any weather, it\'s totally waterproof and incredibly lightweight, so you can wear it all day and not worry about the rain or a random puddle. Plus, it features a cushioning insole that molds to your foot for extra support and flexibility. Details: Waterproof full-grain leather Oiled suede heel counter enerG Comfort System insole with built-in arch support and an additional layer of open-cell PU foam for breathable, moisture-wicking, antimicrobial cushioning Treadlite by UGG™ outsole Extras: suede, grained leather, strap(s) on the bootlegs Outer material: leather Inner material: leather Outsole: synthetic'),(1643,76,'Men\'sFreamon waterproof half boots by Ugg | Men\'sFreamon waterproof half boots by Ugg | Men\'sFreamon waterproof half boots by Ugg | Men\'sFreamon waterproof half boots by Ugg | Men\'sFreamon waterproof half boots by Ugg | Men\'sFreamon waterproof half boots by Ugg | Men\'sFreamon waterproof half boots by Ugg | Men\'sFreamon waterproof half boots by Ugg | Men\'sFreamon waterproof half boots by Ugg | Men\'sFreamon waterproof half boots by Ugg | Men\'sFreamon waterproof half boots by Ugg | Men\'sFreamon waterproof half boots by Ugg | Men\'sFreamon waterproof half boots by Ugg'),(1643,93,'Black | Black | Black | Red | Red | Red | Blue | Blue | Blue | White | White | White'),(1656,73,'Cipo & Baxx Jacket | Cipo & Baxx Jacket-white-Small size | Cipo & Baxx Jacket-white-Medium size | Cipo & Baxx Jacket-white-Extra large size | Cipo & Baxx Jacket-white-Large size | Cipo & Baxx Jacket-grey-Small size | Cipo & Baxx Jacket-grey-Medium size | Cipo & Baxx Jacket-grey-Extra large size | Cipo & Baxx Jacket-grey-Large size | Cipo & Baxx Jacket-blue-Small size | Cipo & Baxx Jacket-blue-Medium size | Cipo & Baxx Jacket-blue-Extra large size | Cipo & Baxx Jacket-blue-Large size'),(1656,74,'n30988045'),(1656,75,'Puffer jacket featuring side zip pockets and a zip-up front. Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Puffer jacket featuring side zip pockets and a zip-up front. Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Puffer jacket featuring side zip pockets and a zip-up front. Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Puffer jacket featuring side zip pockets and a zip-up front. Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Puffer jacket featuring side zip pockets and a zip-up front. Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Puffer jacket featuring side zip pockets and a zip-up front. Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Puffer jacket featuring side zip pockets and a zip-up front. Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Puffer jacket featuring side zip pockets and a zip-up front. Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Puffer jacket featuring side zip pockets and a zip-up front. Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Puffer jacket featuring side zip pockets and a zip-up front. Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Puffer jacket featuring side zip pockets and a zip-up front. Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Puffer jacket featuring side zip pockets and a zip-up front. Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Puffer jacket featuring side zip pockets and a zip-up front. Cut: straight, ribbed waistband Measurements for size EU M: sleeve length 68 cm (27″), garment length 71 cm (28″) Collar: hood with drawstring Fastening: continuous zip fastener with overlapping button facing Sleeve: ribbed cuffs Exterior pockets: flap pocket(s) Lining: teddy fur lining Outer material: 100% cotton Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall.'),(1656,76,'Puffer jacket featuring side zip pockets and a zip-up front. | Puffer jacket featuring side zip pockets and a zip-up front. | Puffer jacket featuring side zip pockets and a zip-up front. | Puffer jacket featuring side zip pockets and a zip-up front. | Puffer jacket featuring side zip pockets and a zip-up front. | Puffer jacket featuring side zip pockets and a zip-up front. | Puffer jacket featuring side zip pockets and a zip-up front. | Puffer jacket featuring side zip pockets and a zip-up front. | Puffer jacket featuring side zip pockets and a zip-up front. | Puffer jacket featuring side zip pockets and a zip-up front. | Puffer jacket featuring side zip pockets and a zip-up front. | Puffer jacket featuring side zip pockets and a zip-up front. | Puffer jacket featuring side zip pockets and a zip-up front.'),(1656,93,'White | White | White | White | Grey | Grey | Grey | Grey | Blue | Blue | Blue | Blue'),(1677,73,'Black Knitted Pants | n Black Knitted Pants-Large size-brow n Black Knitted Pants-Large size-grey | n Black Knitted Pants-Large size-white | n Black Knitted Pants-Large size-blue | n Black Knitted Pants-Large size-red | n Black Knitted Pants-Extra large size-brow n Black Knitted Pants-Extra large size-grey | n Black Knitted Pants-Extra large size-white | n Black Knitted Pants-Extra large size-blue | n Black Knitted Pants-Extra large size-red | n Black Knitted Pants-Small size-brow n Black Knitted Pants-Small size-grey | n Black Knitted Pants-Small size-white | n Black Knitted Pants-Small size-blue | n Black Knitted Pants-Small size-red | n Black Knitted Pants-Medium size-brow n Black Knitted Pants-Medium size-grey | n Black Knitted Pants-Medium size-white | n Black Knitted Pants-Medium size-blue | n Black Knitted Pants-Medium size-red'),(1677,74,'n31135088'),(1677,75,'These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These Hanes lounge sleep pants are a perfect fit, combining a ComfortFlex elastic waistband with drawstrings to adjust just right. The material feels just right too, like a light, comfy cotton T-shirt, all smooth and tagless, with pockets and button fly. Cut: tapered leg, ribbed trim cuffsMeasurements for size EU M: length of outside leg 110 cm (43.5″)Waistband: elasticated waistbandPockets: seam pocket / sExtras: fleckedMaterial: 60% cotton, 25% polyamide, 15% woolManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall.'),(1677,76,'Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey | Black Knitted Pants by Lawrence Grey'),(1677,93,'Brow Grey | White | Blue | Red | Brow Grey | White | Blue | Red | Brow Grey | White | Blue | Red | Brow Grey | White | Blue | Red'),(1699,73,'Camel Dress Trousers – Glen n Camel Dress Trousers – Glenn-Large size-black | n Camel Dress Trousers – Glenn-Large size-red | n Camel Dress Trousers – Glenn-Large size-white | n Camel Dress Trousers – Glenn-Large size-blue | n Camel Dress Trousers – Glenn-Large size-grey | n Camel Dress Trousers – Glenn-Extra small size-black | n Camel Dress Trousers – Glenn-Extra small size-red | n Camel Dress Trousers – Glenn-Extra small size-white | n Camel Dress Trousers – Glenn-Extra small size-blue | n Camel Dress Trousers – Glenn-Extra small size-grey | n Camel Dress Trousers – Glenn-Small size-black | n Camel Dress Trousers – Glenn-Small size-red | n Camel Dress Trousers – Glenn-Small size-white | n Camel Dress Trousers – Glenn-Small size-blue | n Camel Dress Trousers – Glenn-Small size-grey | n Camel Dress Trousers – Glenn-Medium size-black | n Camel Dress Trousers – Glenn-Medium size-red | n Camel Dress Trousers – Glenn-Medium size-white | n Camel Dress Trousers – Glenn-Medium size-blue | n Camel Dress Trousers – Glenn-Medium size-grey'),(1699,74,'n31207422'),(1699,75,'They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | They’re made in Italy from a mid-weight stretch cotton blend to sit at a mid rise for optimum comfort, and flattering slim legs. Fits true to size. Manufacturer\'s product information: slim-fitCut: straight, narrow legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 80 cm (31.5″), rise 23 cm (9″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall.'),(1699,76,'Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones | Camel Dress Trousers by Jack &amp; Jones'),(1699,93,'Black | Red | White | Blue | Grey | Black | Red | White | Blue | Grey | Black | Red | White | Blue | Grey | Black | Red | White | Blue | Grey'),(1709,73,'Calvin Klein Wool Jumper |  Calvin Klein Wool Jumper-white-Extra small size |  Calvin Klein Wool Jumper-white-Small size |  Calvin Klein Wool Jumper-white-Large size |  Calvin Klein Wool Jumper-black-Extra small size |  Calvin Klein Wool Jumper-black-Small size |  Calvin Klein Wool Jumper-black-Large size |  Calvin Klein Wool Jumper-red-Extra small size |  Calvin Klein Wool Jumper-red-Small size |  Calvin Klein Wool Jumper-red-Large size'),(1709,74,'n31226241'),(1709,75,'Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. Cut: lightly fitted Measurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″) Neckline: crew neck Sleeve: long sleeves Extras: embroidered logo on chest, contrast details, rib knit details Pattern: solid-coloured Material: 100% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. Cut: lightly fitted Measurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″) Neckline: crew neck Sleeve: long sleeves Extras: embroidered logo on chest, contrast details, rib knit details Pattern: solid-coloured Material: 100% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. Cut: lightly fitted Measurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″) Neckline: crew neck Sleeve: long sleeves Extras: embroidered logo on chest, contrast details, rib knit details Pattern: solid-coloured Material: 100% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. Cut: lightly fitted Measurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″) Neckline: crew neck Sleeve: long sleeves Extras: embroidered logo on chest, contrast details, rib knit details Pattern: solid-coloured Material: 100% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. Cut: lightly fitted Measurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″) Neckline: crew neck Sleeve: long sleeves Extras: embroidered logo on chest, contrast details, rib knit details Pattern: solid-coloured Material: 100% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. Cut: lightly fitted Measurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″) Neckline: crew neck Sleeve: long sleeves Extras: embroidered logo on chest, contrast details, rib knit details Pattern: solid-coloured Material: 100% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. Cut: lightly fitted Measurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″) Neckline: crew neck Sleeve: long sleeves Extras: embroidered logo on chest, contrast details, rib knit details Pattern: solid-coloured Material: 100% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. Cut: lightly fitted Measurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″) Neckline: crew neck Sleeve: long sleeves Extras: embroidered logo on chest, contrast details, rib knit details Pattern: solid-coloured Material: 100% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. Cut: lightly fitted Measurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″) Neckline: crew neck Sleeve: long sleeves Extras: embroidered logo on chest, contrast details, rib knit details Pattern: solid-coloured Material: 100% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. Cut: lightly fitted Measurements for size EU M: sleeve length 68 cm (27″), garment length 72 cm (28.5″) Neckline: crew neck Sleeve: long sleeves Extras: embroidered logo on chest, contrast details, rib knit details Pattern: solid-coloured Material: 100% wool Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall.'),(1709,76,'Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.'),(1709,93,'White | White | White | Black | Black | Black | Red | Red | Red'),(1725,73,'Tan Corduroy Trousers | n Tan Corduroy Trousers-black-Large size | n Tan Corduroy Trousers-black-Small size | n Tan Corduroy Trousers-black-Medium size | n Tan Corduroy Trousers-red-Large size | n Tan Corduroy Trousers-red-Small size | n Tan Corduroy Trousers-red-Medium size | n Tan Corduroy Trousers-white-Large size | n Tan Corduroy Trousers-white-Small size | n Tan Corduroy Trousers-white-Medium size | n Tan Corduroy Trousers-blue-Large size | n Tan Corduroy Trousers-blue-Small size | n Tan Corduroy Trousers-blue-Medium size | n Tan Corduroy Trousers-grey-Large size | n Tan Corduroy Trousers-grey-Small size | n Tan Corduroy Trousers-grey-Medium size'),(1725,74,'n31231300-1'),(1725,75,'A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | A firm Cordings’ favorite for a very good reason, our comfortable, classic corduroy trousers are essential country gentleman’s attire. Beautifully made in the highest quality soft and supple corduroy, the more you wear them, the better they become. A classic combination with our tweed jackets, these also work perfectly in town when worn with one of our checked shirts. A necessary, everyday luxury. To complete your country look shop braces and shirts. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall.'),(1725,76,'Tan Corduroy Trousers by Tommy Hilfiger | Tan Corduroy Trousers by Tommy Hilfiger | Tan Corduroy Trousers by Tommy Hilfiger | Tan Corduroy Trousers by Tommy Hilfiger | Tan Corduroy Trousers by Tommy Hilfiger | Tan Corduroy Trousers by Tommy Hilfiger | Tan Corduroy Trousers by Tommy Hilfiger | Tan Corduroy Trousers by Tommy Hilfiger | Tan Corduroy Trousers by Tommy Hilfiger | Tan Corduroy Trousers by Tommy Hilfiger | Tan Corduroy Trousers by Tommy Hilfiger | Tan Corduroy Trousers by Tommy Hilfiger | Tan Corduroy Trousers by Tommy Hilfiger | Tan Corduroy Trousers by Tommy Hilfiger | Tan Corduroy Trousers by Tommy Hilfiger | Tan Corduroy Trousers by Tommy Hilfiger'),(1725,93,'Black | Black | Black | Red | Red | Red | White | White | White | Blue | Blue | Blue | Grey | Grey | Grey'),(1735,73,'Boss Denim Jacket |  Boss Denim Jacket-white-Extra large size |  Boss Denim Jacket-white-Small size |  Boss Denim Jacket-white-Medium size |  Boss Denim Jacket-blue-Extra large size |  Boss Denim Jacket-blue-Small size |  Boss Denim Jacket-blue-Medium size |  Boss Denim Jacket-black-Extra large size |  Boss Denim Jacket-black-Small size |  Boss Denim Jacket-black-Medium size'),(1735,74,'n31250794'),(1735,75,'Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front. Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit. Cut: lightly fitted, elasticated back Measurements for size EU M: garment length 67 cm (26.5″) Fastening: continuous button placket Sleeve: single-button cuffs Exterior pockets: breast pocket(s), piped pocket(s) Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front. Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit. Cut: lightly fitted, elasticated back Measurements for size EU M: garment length 67 cm (26.5″) Fastening: continuous button placket Sleeve: single-button cuffs Exterior pockets: breast pocket(s), piped pocket(s) Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front. Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit. Cut: lightly fitted, elasticated back Measurements for size EU M: garment length 67 cm (26.5″) Fastening: continuous button placket Sleeve: single-button cuffs Exterior pockets: breast pocket(s), piped pocket(s) Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front. Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit. Cut: lightly fitted, elasticated back Measurements for size EU M: garment length 67 cm (26.5″) Fastening: continuous button placket Sleeve: single-button cuffs Exterior pockets: breast pocket(s), piped pocket(s) Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front. Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit. Cut: lightly fitted, elasticated back Measurements for size EU M: garment length 67 cm (26.5″) Fastening: continuous button placket Sleeve: single-button cuffs Exterior pockets: breast pocket(s), piped pocket(s) Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front. Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit. Cut: lightly fitted, elasticated back Measurements for size EU M: garment length 67 cm (26.5″) Fastening: continuous button placket Sleeve: single-button cuffs Exterior pockets: breast pocket(s), piped pocket(s) Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front. Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit. Cut: lightly fitted, elasticated back Measurements for size EU M: garment length 67 cm (26.5″) Fastening: continuous button placket Sleeve: single-button cuffs Exterior pockets: breast pocket(s), piped pocket(s) Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front. Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit. Cut: lightly fitted, elasticated back Measurements for size EU M: garment length 67 cm (26.5″) Fastening: continuous button placket Sleeve: single-button cuffs Exterior pockets: breast pocket(s), piped pocket(s) Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front. Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit. Cut: lightly fitted, elasticated back Measurements for size EU M: garment length 67 cm (26.5″) Fastening: continuous button placket Sleeve: single-button cuffs Exterior pockets: breast pocket(s), piped pocket(s) Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Collared long sleeve jacket with buttoned cuffs. Featuring chest flap pockets, hip pockets, contrast comic print fabric on the front and back, contrast topstitching and metal button fastening in the front. Perfectly fitting with the latest fashion trends, the Livingston Denim Jacket by Boss Orange will add some style to any outfit you wear. Its high-quality denim combined with the quality construction of the jacket is astounding, whilst the classic design is a makes the jacket easily paired to an outfit. Cut: lightly fitted, elasticated back Measurements for size EU M: garment length 67 cm (26.5″) Fastening: continuous button placket Sleeve: single-button cuffs Exterior pockets: breast pocket(s), piped pocket(s) Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall.'),(1735,76,'A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.  | A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.  | A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.  | A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.  | A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.  | A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.  | A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.  | A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.  | A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look.  | A fall essential for layering technique, this BOSS Orange denim jacket is a midweight piece ideal of brisk days. Two chest pockets and a faded stone wash completes this look. '),(1735,93,'White | White | White | Blue | Blue | Blue | Black | Black | Black'),(1756,73,'Black Chino | n Black Chino-red-Large size | n Black Chino-red-Small size | n Black Chino-red-Extra large size | n Black Chino-red-Medium size | n Black Chino-white-Large size | n Black Chino-white-Small size | n Black Chino-white-Extra large size | n Black Chino-white-Medium size | n Black Chino-blue-Large size | n Black Chino-blue-Small size | n Black Chino-blue-Extra large size | n Black Chino-blue-Medium size | n Black Chino-brown-Large size | n Black Chino-brown-Small size | n Black Chino-brown-Extra large size | n Black Chino-brown-Medium size | n Black Chino-grey-Large size | n Black Chino-grey-Small size | n Black Chino-grey-Extra large size | n Black Chino-grey-Medium size'),(1756,74,'n31189077-1'),(1756,75,'Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | Lawrence Grey brand combines a long heritage of tailoring with a modern take on relaxed formal and casual wear to bring an added hint of freshness to every occasion. Expect classic shirting and knitwear. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall.'),(1756,76,'Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey | Black Chino by Lawrence Grey'),(1756,93,'Red | Red | Red | Red | White | White | White | White | Blue | Blue | Blue | Blue | Brow Brow Brow Brow Grey | Grey | Grey | Grey'),(1777,73,'Lawrence Grey Rollneck Pullover | n Lawrence Grey Rollneck Pullover-Medium size-white | n Lawrence Grey Rollneck Pullover-Medium size-red | n Lawrence Grey Rollneck Pullover-Medium size-black | n Lawrence Grey Rollneck Pullover-Medium size-blue | n Lawrence Grey Rollneck Pullover-Medium size-grey | n Lawrence Grey Rollneck Pullover-Small size-white | n Lawrence Grey Rollneck Pullover-Small size-red | n Lawrence Grey Rollneck Pullover-Small size-black | n Lawrence Grey Rollneck Pullover-Small size-blue | n Lawrence Grey Rollneck Pullover-Small size-grey | n Lawrence Grey Rollneck Pullover-Extra small size-white | n Lawrence Grey Rollneck Pullover-Extra small size-red | n Lawrence Grey Rollneck Pullover-Extra small size-black | n Lawrence Grey Rollneck Pullover-Extra small size-blue | n Lawrence Grey Rollneck Pullover-Extra small size-grey | n Lawrence Grey Rollneck Pullover-Large size-white | n Lawrence Grey Rollneck Pullover-Large size-red | n Lawrence Grey Rollneck Pullover-Large size-black | n Lawrence Grey Rollneck Pullover-Large size-blue | n Lawrence Grey Rollneck Pullover-Large size-grey'),(1777,74,'n31167823'),(1777,75,'We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | We talk a lot about wardrobe staples. This is one of them. A sleek, minimalist and versatile piece for autumn and beyond. Well for whenever you want to stay warm and stylish. Cut: lightly fitted Measurements for size EU M: sleeve length 66 cm (26″), garment length 68 cm (27″) Collar: rollneck Extras: ribbed trim Pattern: solid-coloured Material: 50% merino, 50% acrylic Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall.'),(1777,76,'Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater featuring a high neck, long sleeves and ribbed elastic trims.'),(1777,93,'White | Red | Black | Blue | Grey | White | Red | Black | Blue | Grey | White | Red | Black | Blue | Grey | White | Red | Black | Blue | Grey'),(1787,73,'Blue Straight Leg Jeans – Rob |  Blue Straight Leg Jeans – Rob-grey-Large size |  Blue Straight Leg Jeans – Rob-grey-Small size |  Blue Straight Leg Jeans – Rob-grey-Medium size |  Blue Straight Leg Jeans – Rob-blue-Large size |  Blue Straight Leg Jeans – Rob-blue-Small size |  Blue Straight Leg Jeans – Rob-blue-Medium size |  Blue Straight Leg Jeans – Rob-black-Large size |  Blue Straight Leg Jeans – Rob-black-Small size |  Blue Straight Leg Jeans – Rob-black-Medium size'),(1787,74,'n31324632'),(1787,75,'Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets. Manufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded coloringMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets. Manufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded coloringMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets. Manufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded coloringMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets. Manufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded coloringMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets. Manufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded coloringMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets. Manufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded coloringMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets. Manufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded coloringMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets. Manufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded coloringMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets. Manufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded coloringMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Our premium Rob jeans make an indispensable basic for easy-going looks. Thanks to their stretchy material, they are as comfortable as you could hope for, while also making a hard-wearing partner for city styles. The striking whisker creases form a stylish pairing with the BOGNER branded rivets. Manufacturers product information: regular fit, mid-riseCut: straight legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 79 cm (31″), rise 28 cm (11″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded coloringMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall.'),(1787,76,'Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and hidden button fastening in the front.'),(1787,93,'Grey | Grey | Grey | Blue | Blue | Blue | Black | Black | Black'),(1808,73,'Navy Chino | n Navy Chino-red-Large size | n Navy Chino-red-Small size | n Navy Chino-red-Extra large size | n Navy Chino-red-Medium size | n Navy Chino-white-Large size | n Navy Chino-white-Small size | n Navy Chino-white-Extra large size | n Navy Chino-white-Medium size | n Navy Chino-blue-Large size | n Navy Chino-blue-Small size | n Navy Chino-blue-Extra large size | n Navy Chino-blue-Medium size | n Navy Chino-brown-Large size | n Navy Chino-brown-Small size | n Navy Chino-brown-Extra large size | n Navy Chino-brown-Medium size | n Navy Chino-grey-Large size | n Navy Chino-grey-Small size | n Navy Chino-grey-Extra large size | n Navy Chino-grey-Medium size'),(1808,74,'n31189007'),(1808,75,'For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | For quality menswear that’s made to last, Lawrence Grey. Their Chino Pants are cut from durable cotton with added stretch for an easy-wearing fit. Tonal stitching and buttons keep the look the smart, making these an essential work-to-weekend choice. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 32 cm (12.5″), inside leg 82,5 cm (32.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall.'),(1808,76,'Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey | Navy Chino by Lawrence Grey'),(1808,93,'Red | Red | Red | Red | White | White | White | White | Blue | Blue | Blue | Blue | Brow Brow Brow Brow Grey | Grey | Grey | Grey'),(1817,73,'Blue Straight Leg Jeans |  Blue Straight Leg Jeans-brown-Extra small size |  Blue Straight Leg Jeans-brown-Large size |  Blue Straight Leg Jeans-brown-Small size |  Blue Straight Leg Jeans-brown-Medium size |  Blue Straight Leg Jeans-grey-Extra small size |  Blue Straight Leg Jeans-grey-Large size |  Blue Straight Leg Jeans-grey-Small size |  Blue Straight Leg Jeans-grey-Medium size'),(1817,74,'n31253491'),(1817,75,'Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. Brand: Bugatti. Material: cotton blend. Country of Origin: Italy. Front Rise: 10 For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit. Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial: 81% cotton, 17% Elastomultiester, 2% elastaneManufacturer\'s care instructions: machine wash | Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. Brand: Bugatti. Material: cotton blend. Country of Origin: Italy. Front Rise: 10 For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit. Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial: 81% cotton, 17% Elastomultiester, 2% elastaneManufacturer\'s care instructions: machine wash | Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. Brand: Bugatti. Material: cotton blend. Country of Origin: Italy. Front Rise: 10 For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit. Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial: 81% cotton, 17% Elastomultiester, 2% elastaneManufacturer\'s care instructions: machine wash | Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. Brand: Bugatti. Material: cotton blend. Country of Origin: Italy. Front Rise: 10 For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit. Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial: 81% cotton, 17% Elastomultiester, 2% elastaneManufacturer\'s care instructions: machine wash | Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. Brand: Bugatti. Material: cotton blend. Country of Origin: Italy. Front Rise: 10 For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit. Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial: 81% cotton, 17% Elastomultiester, 2% elastaneManufacturer\'s care instructions: machine wash | Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. Brand: Bugatti. Material: cotton blend. Country of Origin: Italy. Front Rise: 10 For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit. Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial: 81% cotton, 17% Elastomultiester, 2% elastaneManufacturer\'s care instructions: machine wash | Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. Brand: Bugatti. Material: cotton blend. Country of Origin: Italy. Front Rise: 10 For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit. Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial: 81% cotton, 17% Elastomultiester, 2% elastaneManufacturer\'s care instructions: machine wash | Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. Brand: Bugatti. Material: cotton blend. Country of Origin: Italy. Front Rise: 10 For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit. Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial: 81% cotton, 17% Elastomultiester, 2% elastaneManufacturer\'s care instructions: machine wash | Be the sharpest looking man in the room in these blue pants by Bugatti. Featured in size these pants are made of the finest cotton blend threads for the complete package of both luxury and comfort for that perfect occasion. Brand: Bugatti. Material: cotton blend. Country of Origin: Italy. Front Rise: 10 For products, in foreign sizes, we convert to an approximate US size for you. To guarantee a perfect fit review the product\'s body size measurements or simply contact us. Play hard and work hard with this blue cotton classic straight leg made by Bugatti. All items are hand-measured with body measurements to ensure a perfect fit. Measurements for size EU L32W32: waist 80 cm (31.5″), leg opening 34 cm (13.5″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: faded colouring, elasticMaterial: 81% cotton, 17% Elastomultiester, 2% elastaneManufacturer\'s care instructions: machine wash'),(1817,76,'Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front. | Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front. | Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front. | Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front. | Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front. | Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front. | Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front. | Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front. | Five-pocket jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.'),(1817,93,'Brow Brow Brow Brow Grey | Grey | Grey | Grey'),(1840,73,'Blue Slim Fit Jeans – Cliff |  Blue Slim Fit Jeans – Cliff-black-Large size |  Blue Slim Fit Jeans – Cliff-black-Small size |  Blue Slim Fit Jeans – Cliff-black-Medium size |  Blue Slim Fit Jeans – Cliff-grey-Large size |  Blue Slim Fit Jeans – Cliff-grey-Small size |  Blue Slim Fit Jeans – Cliff-grey-Medium size'),(1840,74,'n31253498'),(1840,75,'The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching Manufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: distressed look with faded dyes and permanent wrinklesMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching Manufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: distressed look with faded dyes and permanent wrinklesMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching Manufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: distressed look with faded dyes and permanent wrinklesMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching Manufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: distressed look with faded dyes and permanent wrinklesMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching Manufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: distressed look with faded dyes and permanent wrinklesMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching Manufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: distressed look with faded dyes and permanent wrinklesMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | The mix of authentic vintage washing and selected detailing makes it! The \'Cliff\' in mid blue comes with contrasting stitching on the back pockets, seat folds on the thighs and striking white logo patch. Patched side pockets with contrasting stitching Manufacturers product information: mid-rise slim-fitCut: narrow, slightly tapered legsMeasurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 24 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: distressed look with faded dyes and permanent wrinklesMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall.'),(1840,76,'Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front. | Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front. | Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front. | Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front. | Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front. | Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front. | Slim fit five-pocket jeans with a washed effect. Zip fly and metal top button fastening in the front.'),(1840,93,'Black | Black | Black | Grey | Grey | Grey'),(1866,73,'Tommy Hilfiger | n Tommy Hilfiger-brown-Extra small size | n Tommy Hilfiger-brown-Small size | n Tommy Hilfiger-brown-Medium size | n Tommy Hilfiger-brown-Large size | n Tommy Hilfiger-brown-Extra large size | n Tommy Hilfiger-white-Extra small size | n Tommy Hilfiger-white-Small size | n Tommy Hilfiger-white-Medium size | n Tommy Hilfiger-white-Large size | n Tommy Hilfiger-white-Extra large size | n Tommy Hilfiger-grey-Extra small size | n Tommy Hilfiger-grey-Small size | n Tommy Hilfiger-grey-Medium size | n Tommy Hilfiger-grey-Large size | n Tommy Hilfiger-grey-Extra large size | n Tommy Hilfiger-blue-Extra small size | n Tommy Hilfiger-blue-Small size | n Tommy Hilfiger-blue-Medium size | n Tommy Hilfiger-blue-Large size | n Tommy Hilfiger-blue-Extra large size | n Tommy Hilfiger-red-Extra small size | n Tommy Hilfiger-red-Small size | n Tommy Hilfiger-red-Medium size | n Tommy Hilfiger-red-Large size | n Tommy Hilfiger-red-Extra large size'),(1866,74,'n31231300'),(1866,75,'Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall. | Tommy Hilfiger men’s pant. Our modern bent on corduroy, trimly tailored in stretch cotton and a slim fit that stays true. For uncomplicated dressing, we added a VELCRO® brand closure and magnetic fly, while concealed magnets at the outside hem open and close to accommodate leg braces and orthotics. Part of our Adaptive Collection, designed for ease of dressing in classic Tommy style. Cut: straight legMeasurements for size EU L32W32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU L32W32 and is 185cm/6′0″ tall.'),(1866,76,'Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger | Navy Corduroy fashionable trousers by Tommy Hilfiger'),(1866,93,'Brow Brow Brow Brow Brow White | White | White | White | White | Grey | Grey | Grey | Grey | Grey | Blue | Blue | Blue | Blue | Blue | Red | Red | Red | Red | Red'),(1875,73,'Blue Slim Fit Jeans |  Blue Slim Fit Jeans-black-Small size |  Blue Slim Fit Jeans-black-Medium size |  Blue Slim Fit Jeans-black-Extra large size |  Blue Slim Fit Jeans-black-Large size |  Blue Slim Fit Jeans-grey-Small size |  Blue Slim Fit Jeans-grey-Medium size |  Blue Slim Fit Jeans-grey-Extra large size |  Blue Slim Fit Jeans-grey-Large size'),(1875,74,'n31253493'),(1875,75,'Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine wash | Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine wash | Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine wash | Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine wash | Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine wash | Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine wash | Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine wash | Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine wash | Emporio Armani Slim Fit Jeans, Intentional fading overall the denim with a 3D crease effect to the thighs. A zip fly with a matte metal Armani Jeans top button fastening and seven belt loops on the waistband. A traditional five pocket design with two pouch pockets on the hips and a small coin pocket within the right pocket and two pouch pockets on the reverse of the jeans. The signature woven Giorgio Armani Eagle logo pinch tag is sewn onto the seam of the coin pocket in black and white and the signature matte metal Giorgio Armani Eagle logo stud is situated on the reverse right pocket. The signature Emporio Armani logo embossed leather patch is situated on the reverse right of the waistband in brown. Top stitching detail on all the seams in golden brown. 99% Cotton And 1% Elastane. Fantastic New Emporio Armani Collection Of Trousers And Jeans Live Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81 cm (32″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketMaterial: 99% cotton, 1% elastaneManufacturer\'s care instructions: machine wash'),(1875,76,'Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening. | Straight-leg, long five-pocket jeans. Featuring two side pockets, two back pockets, one coin pocket and zip fly and top button fastening.'),(1875,93,'Black | Black | Black | Black | Grey | Grey | Grey | Grey'),(1888,73,'Gabba Long-sleeved Jumper | n Gabba Long-sleeved Jumper-Large size-black | n Gabba Long-sleeved Jumper-Large size-brow n Gabba Long-sleeved Jumper-Large size-grey | n Gabba Long-sleeved Jumper-Extra small size-black | n Gabba Long-sleeved Jumper-Extra small size-brow n Gabba Long-sleeved Jumper-Extra small size-grey | n Gabba Long-sleeved Jumper-Small size-black | n Gabba Long-sleeved Jumper-Small size-brow n Gabba Long-sleeved Jumper-Small size-grey | n Gabba Long-sleeved Jumper-Medium size-black | n Gabba Long-sleeved Jumper-Medium size-brow n Gabba Long-sleeved Jumper-Medium size-grey'),(1888,74,'n31273656'),(1888,75,'Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better. Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better. Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better. Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better. Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better. Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better. Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better. Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better. Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better. Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better. Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better. Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better. Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Luxurious 100% cashmere! A simple crew neck that\'s easy to mix and match.· A luxurious item made from 100% cashmere, the “jewel of fabrics.”· A delicate, smooth knit you can wear for any occasion.· Updated for a new season! Straight cut creates a relaxed feel befitting of the premium material.· More stitching at the shoulder cap for a contoured design that fits the curve of the shoulder better. Cut: slightly tapered Measurements for size EU M: sleeve length 72 cm (28.5″), garment length 78 cm (30.5″) Neckline: crew neck Sleeve: ribbed trim cuffs Extras: breast pocket(s), structured surface Pattern: solid-coloured Material: 70% cotton, 30% linen Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall.'),(1888,76,'Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims. | Straight fit cashmere wool sweater with a round neckline, long sleeves and ribbed elastic trims.'),(1888,93,'Black | Brow Grey | Black | Brow Grey | Black | Brow Grey | Black | Brow Grey'),(1892,73,'Navy John 16511 | n Navy John 16511-Large size-black | n Navy John 16511-Small size-black | n Navy John 16511-Medium size-black'),(1892,74,'n31253502'),(1892,75,'Upgrade your essential denim options with the Baldessarini Jack jeans. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch. 98% cotton, 2% elastane Twill woven Zip fly Five pocket design Belt loops Branded metal hardware Branded leather waistband tab Machine wash Our model wears an EU L32W32 and is 185cm/6′0″ tall. Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: logo tag on back of waistbandMaterial: 97% cotton, 3% elastane | Upgrade your essential denim options with the Baldessarini Jack jeans. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch. 98% cotton, 2% elastane Twill woven Zip fly Five pocket design Belt loops Branded metal hardware Branded leather waistband tab Machine wash Our model wears an EU L32W32 and is 185cm/6′0″ tall. Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: logo tag on back of waistbandMaterial: 97% cotton, 3% elastane | Upgrade your essential denim options with the Baldessarini Jack jeans. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch. 98% cotton, 2% elastane Twill woven Zip fly Five pocket design Belt loops Branded metal hardware Branded leather waistband tab Machine wash Our model wears an EU L32W32 and is 185cm/6′0″ tall. Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: logo tag on back of waistbandMaterial: 97% cotton, 3% elastane | Upgrade your essential denim options with the Baldessarini Jack jeans. Expertly crafted from a stretch cotton, the jeans have been cut to a regular fit with a mid rise and contemporary straight leg. Featuring a zip fly, five pocket design and belt loops, whilst the branded metal hardware and leather waistband tab provide an authentic finishing touch. 98% cotton, 2% elastane Twill woven Zip fly Five pocket design Belt loops Branded metal hardware Branded leather waistband tab Machine wash Our model wears an EU L32W32 and is 185cm/6′0″ tall. Model: John 16511Manufacturers product information: slim-fitCut: slightly tapered legMeasurements for size EU L32W32: waist 86 cm (34″), leg opening 36 cm (14″), inside leg 80 cm (31.5″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: logo tag on back of waistbandMaterial: 97% cotton, 3% elastane'),(1892,76,'Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. | Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. | Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening. | Cropped new carrot fit jeans with two side pockets, two rear welt pockets, one coin pocket and a belt with belt loops. Featuring zip fly and top button fastening.'),(1892,93,'Black | Black | Black'),(1896,73,'Dark Blue Julye n Dark Blue Julyen-blue-Small size | n Dark Blue Julyen-blue-Large size | n Dark Blue Julyen-blue-Medium size'),(1896,74,'n31253501'),(1896,75,'Crosshatch men’s Julyen 5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. Manufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPockets: 5-pocketExtras: logo appliqué(s)Material: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 32 and is 185cm/6′0″ tall. | Crosshatch men’s Julyen 5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. Manufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPockets: 5-pocketExtras: logo appliqué(s)Material: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 32 and is 185cm/6′0″ tall. | Crosshatch men’s Julyen 5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. Manufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPockets: 5-pocketExtras: logo appliqué(s)Material: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 32 and is 185cm/6′0″ tall. | Crosshatch men’s Julyen 5-pocket jean. Featuring branded button and rivets. Includes printed canvas belt with buckle fastening. Button fly. Manufacturers product information: regular fitCut: straight legMeasurements for size EU 32: waist 82 cm (32.5″), leg opening 36 cm (14″), inside leg 79 cm (31″), rise 26 cm (10″)Waistband: belt loops and button fly, beltPockets: 5-pocketExtras: logo appliqué(s)Material: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 32 and is 185cm/6′0″ tall.'),(1896,76,'Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops. | Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops. | Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops. | Stretch slim fit jeans with contrasting thread and five pockets. They feature a zip fly and contrasting top button, a coin pocket and belt loops.'),(1896,93,'Blue | Blue | Blue'),(1903,73,'Black Sweat Pants |  Black Sweat Pants-blue-Extra small size |  Black Sweat Pants-blue-Small size |  Black Sweat Pants-blue-Medium size |  Black Sweat Pants-red-Extra small size |  Black Sweat Pants-red-Small size |  Black Sweat Pants-red-Medium size'),(1903,74,'n31202421'),(1903,75,'These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket. Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket. Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket. Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket. Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket. Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket. Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall. | These jogging-style sweatpants are made from a comfortable cotton blend. Detailed with Diesel logo lettering on one leg and finished with a single back pocket. Cut: straight, narrow legs, ribbed cuffsMeasurements for size EU M: length of outside leg 102 cm (40″)Waistband: drawstring waist with elasticPockets: slit pocket/sExtras: print/sMaterial: 80% cotton, 20% polyesterManufacturer\'s care instructions: machine washOur model wears an EU M and is 185cm/6′0″ tall.'),(1903,76,'Black Sweat Pants by Diesel | Black Sweat Pants by Diesel | Black Sweat Pants by Diesel | Black Sweat Pants by Diesel | Black Sweat Pants by Diesel | Black Sweat Pants by Diesel | Black Sweat Pants by Diesel'),(1903,93,'Blue | Blue | Blue | Red | Red | Red'),(1910,73,'Long-sleeved Jumper | n Long-sleeved Jumper-red-Small size | n Long-sleeved Jumper-red-Large size | n Long-sleeved Jumper-red-Medium size | n Long-sleeved Jumper-blue-Small size | n Long-sleeved Jumper-blue-Large size | n Long-sleeved Jumper-blue-Medium size'),(1910,74,'n31190954'),(1910,75,'Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape. MATERIAL &amp; CARE Outer fabric material: 50% wool, 50% acrylic Care instructions: Machine wash at 30°C, Do not iron, Machine wash on gentle cycle DETAILS Neckline: Crew neck Pattern: Marl Article number: BRI22Q006-K11 Our model\'s height: Our model is 72.0 \" tall and is wearing size M Fit: Normal fit Length: Normal Sleeve length: Extra long Sleeve length: 29.5 \" (Size M) Total length: 27.5 \" (Size M) | Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape. MATERIAL &amp; CARE Outer fabric material: 50% wool, 50% acrylic Care instructions: Machine wash at 30°C, Do not iron, Machine wash on gentle cycle DETAILS Neckline: Crew neck Pattern: Marl Article number: BRI22Q006-K11 Our model\'s height: Our model is 72.0 \" tall and is wearing size M Fit: Normal fit Length: Normal Sleeve length: Extra long Sleeve length: 29.5 \" (Size M) Total length: 27.5 \" (Size M) | Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape. MATERIAL &amp; CARE Outer fabric material: 50% wool, 50% acrylic Care instructions: Machine wash at 30°C, Do not iron, Machine wash on gentle cycle DETAILS Neckline: Crew neck Pattern: Marl Article number: BRI22Q006-K11 Our model\'s height: Our model is 72.0 \" tall and is wearing size M Fit: Normal fit Length: Normal Sleeve length: Extra long Sleeve length: 29.5 \" (Size M) Total length: 27.5 \" (Size M) | Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape. MATERIAL &amp; CARE Outer fabric material: 50% wool, 50% acrylic Care instructions: Machine wash at 30°C, Do not iron, Machine wash on gentle cycle DETAILS Neckline: Crew neck Pattern: Marl Article number: BRI22Q006-K11 Our model\'s height: Our model is 72.0 \" tall and is wearing size M Fit: Normal fit Length: Normal Sleeve length: Extra long Sleeve length: 29.5 \" (Size M) Total length: 27.5 \" (Size M) | Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape. MATERIAL &amp; CARE Outer fabric material: 50% wool, 50% acrylic Care instructions: Machine wash at 30°C, Do not iron, Machine wash on gentle cycle DETAILS Neckline: Crew neck Pattern: Marl Article number: BRI22Q006-K11 Our model\'s height: Our model is 72.0 \" tall and is wearing size M Fit: Normal fit Length: Normal Sleeve length: Extra long Sleeve length: 29.5 \" (Size M) Total length: 27.5 \" (Size M) | Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape. MATERIAL &amp; CARE Outer fabric material: 50% wool, 50% acrylic Care instructions: Machine wash at 30°C, Do not iron, Machine wash on gentle cycle DETAILS Neckline: Crew neck Pattern: Marl Article number: BRI22Q006-K11 Our model\'s height: Our model is 72.0 \" tall and is wearing size M Fit: Normal fit Length: Normal Sleeve length: Extra long Sleeve length: 29.5 \" (Size M) Total length: 27.5 \" (Size M) | Jumper by BRUUN &amp; STENGADE. Master low-key dressing from head to toe with its fashionable collections. Ideal for layering with crew neck. Regular fit with ribbed cuffs and hem. Branded design a standard cut for a classic shape. MATERIAL &amp; CARE Outer fabric material: 50% wool, 50% acrylic Care instructions: Machine wash at 30°C, Do not iron, Machine wash on gentle cycle DETAILS Neckline: Crew neck Pattern: Marl Article number: BRI22Q006-K11 Our model\'s height: Our model is 72.0 \" tall and is wearing size M Fit: Normal fit Length: Normal Sleeve length: Extra long Sleeve length: 29.5 \" (Size M) Total length: 27.5 \" (Size M)'),(1910,76,'Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape. | Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape. | Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape. | Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape. | Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape. | Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape. | Jumper by BRUUN &amp; STENGADE branded design a standard cut for a classic shape.'),(1910,93,'Red | Red | Red | Blue | Blue | Blue'),(1920,73,'Hooded Sweater | n Hooded Sweater-black-Medium size | n Hooded Sweater-black-Small size | n Hooded Sweater-black-Large size | n Hooded Sweater-red-Medium size | n Hooded Sweater-red-Small size | n Hooded Sweater-red-Large size | n Hooded Sweater-grey-Medium size | n Hooded Sweater-grey-Small size | n Hooded Sweater-grey-Large size'),(1920,74,'n2313434'),(1920,75,'Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing. Cut: slightly tapered, ribbed trim waistbandMeasurements for size EU M: sleeve length 69 cm (27″), garment length 69 cm (27″) Neckline: hood, short button placketSleeve: ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: fleckedPattern: patterned Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing. Cut: slightly tapered, ribbed trim waistbandMeasurements for size EU M: sleeve length 69 cm (27″), garment length 69 cm (27″) Neckline: hood, short button placketSleeve: ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: fleckedPattern: patterned Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing. Cut: slightly tapered, ribbed trim waistbandMeasurements for size EU M: sleeve length 69 cm (27″), garment length 69 cm (27″) Neckline: hood, short button placketSleeve: ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: fleckedPattern: patterned Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing. Cut: slightly tapered, ribbed trim waistbandMeasurements for size EU M: sleeve length 69 cm (27″), garment length 69 cm (27″) Neckline: hood, short button placketSleeve: ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: fleckedPattern: patterned Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing. Cut: slightly tapered, ribbed trim waistbandMeasurements for size EU M: sleeve length 69 cm (27″), garment length 69 cm (27″) Neckline: hood, short button placketSleeve: ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: fleckedPattern: patterned Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing. Cut: slightly tapered, ribbed trim waistbandMeasurements for size EU M: sleeve length 69 cm (27″), garment length 69 cm (27″) Neckline: hood, short button placketSleeve: ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: fleckedPattern: patterned Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing. Cut: slightly tapered, ribbed trim waistbandMeasurements for size EU M: sleeve length 69 cm (27″), garment length 69 cm (27″) Neckline: hood, short button placketSleeve: ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: fleckedPattern: patterned Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing. Cut: slightly tapered, ribbed trim waistbandMeasurements for size EU M: sleeve length 69 cm (27″), garment length 69 cm (27″) Neckline: hood, short button placketSleeve: ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: fleckedPattern: patterned Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing. Cut: slightly tapered, ribbed trim waistbandMeasurements for size EU M: sleeve length 69 cm (27″), garment length 69 cm (27″) Neckline: hood, short button placketSleeve: ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: fleckedPattern: patterned Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall. | Superdry men\'s Ticket Type mono hoodie. This simple yet stylish hoodie features a drawstring hood, front pouch pocket and logo graphic on the chest. Completed with the signature orange stitch in the side seam, pair this hoodie with jeans and trainers for laid back dressing. Cut: slightly tapered, ribbed trim waistbandMeasurements for size EU M: sleeve length 69 cm (27″), garment length 69 cm (27″) Neckline: hood, short button placketSleeve: ribbed trim cuffs Pockets: kangaroo pocket(s) Extras: fleckedPattern: patterned Manufacturer\'s care instructions: machine wash Our model wears an EU M and is 185cm/6′0″ tall.'),(1920,76,'Superdry men\'s Ticket Type mono hoodie. | Superdry men\'s Ticket Type mono hoodie. | Superdry men\'s Ticket Type mono hoodie. | Superdry men\'s Ticket Type mono hoodie. | Superdry men\'s Ticket Type mono hoodie. | Superdry men\'s Ticket Type mono hoodie. | Superdry men\'s Ticket Type mono hoodie. | Superdry men\'s Ticket Type mono hoodie. | Superdry men\'s Ticket Type mono hoodie. | Superdry men\'s Ticket Type mono hoodie.'),(1920,93,'Black | Black | Black | Red | Red | Red | Grey | Grey | Grey'),(1943,73,'Camper Lace-ups |  Camper Lace-ups-EU 42-brow  Camper Lace-ups-EU 42-blue |  Camper Lace-ups-EU 42-black |  Camper Lace-ups-EU 40-brow  Camper Lace-ups-EU 40-blue |  Camper Lace-ups-EU 40-black |  Camper Lace-ups-EU 43-brow  Camper Lace-ups-EU 43-blue |  Camper Lace-ups-EU 43-black |  Camper Lace-ups-EU 41-brow  Camper Lace-ups-EU 41-blue |  Camper Lace-ups-EU 41-black |  Camper Lace-ups-EU 44-brow  Camper Lace-ups-EU 44-blue |  Camper Lace-ups-EU 44-black'),(1943,74,'n30947478'),(1943,75,'Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified  | Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified  | Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified  | Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified  | Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified  | Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified  | Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified  | Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified  | Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified  | Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified  | Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified  | Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified  | Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified  | Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified  | Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified  | Based on the island of Mallorca, Spain, Camper started back in 1975 and have a rich shoemaking heritage. Crafted with smooth black leather uppers, the men’s ‘Brutus’ shoes have a round toe silhouette and a lightweight tonal EVA cupsole with a lug textured outsole for excellent traction. Complete with a cushioned Ortholite® insole for comfort and breathability, and signature debossed branding on the tongue.Extras: lacing, suede, logo appliqué(s), contrast detailsOuter material: leatherInner material: leather, syntheticOutsole: synthetic Features: 360º Stitching outsole: DurabilityTPU outsole with Contact Earth Technology: Abrasion resistance Leather Working Group Certified '),(1943,76,'Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style. | Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style. | Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style. | Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style. | Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style. | Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style. | Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style. | Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style. | Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style. | Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style. | Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style. | Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style. | Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style. | Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style. | Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style. | Camper lace-up leather shoes combine an extra smart look and sporty elements to put an original twist on everyday style.'),(1943,93,'Brow Blue | Black | Brow Blue | Black | Brow Blue | Black | Brow Blue | Black | Brow Blue | Black'),(1946,73,'Adidas Originals PW Tennis Hu |  Adidas Originals PW Tennis Hu-red-EU 40 |  Adidas Originals PW Tennis Hu-red-EU 41'),(1946,74,'n31141265'),(1946,75,'Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.Extras: knitting patterns, logo appliqué(s)Outer material: textile, syntheticInner material: textileOutsole: synthetic Details: Lace closure Knit upper EVA outsole with rubber inserts Lightweight EVA midsole Sock-like construction hugs the foot Imported | Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.Extras: knitting patterns, logo appliqué(s)Outer material: textile, syntheticInner material: textileOutsole: synthetic Details: Lace closure Knit upper EVA outsole with rubber inserts Lightweight EVA midsole Sock-like construction hugs the foot Imported | Adidas collab with Pharrell Williams Tennis HUu trainers from Adidas Originals. A new take on classic tennis style, they\'re inspired by classic adi silhouettes such as the Stan Smith and are built with a sock-like knit upper, which features a tonal lacing system and branded tongue loop. The sneaks come sat on an EVA midsole, which has a unique waffle texture and guarantees lightweight cushioning every time you step out. Finished with Trefoil and Pharrell Williams branding - two recognisable stamps that distinguish next-level style and quality.Extras: knitting patterns, logo appliqué(s)Outer material: textile, syntheticInner material: textileOutsole: synthetic Details: Lace closure Knit upper EVA outsole with rubber inserts Lightweight EVA midsole Sock-like construction hugs the foot Imported'),(1946,76,'Adidas Originals sneakers - Pharrell Williams line. Pharrell\'s Hu collection celebrates the hues of humanity | Adidas Originals sneakers - Pharrell Williams line. Pharrell\'s Hu collection celebrates the hues of humanity | Adidas Originals sneakers - Pharrell Williams line. Pharrell\'s Hu collection celebrates the hues of humanity'),(1946,93,'Red | Red'),(1961,73,'Lloyd Half Boots |  Lloyd Half Boots-red-EU 39 |  Lloyd Half Boots-red-EU 42 |  Lloyd Half Boots-red-EU 45 |  Lloyd Half Boots-red-EU 40 |  Lloyd Half Boots-red-EU 43 |  Lloyd Half Boots-red-EU 41 |  Lloyd Half Boots-red-EU 44 |  Lloyd Half Boots-grey-EU 39 |  Lloyd Half Boots-grey-EU 42 |  Lloyd Half Boots-grey-EU 45 |  Lloyd Half Boots-grey-EU 40 |  Lloyd Half Boots-grey-EU 43 |  Lloyd Half Boots-grey-EU 41 |  Lloyd Half Boots-grey-EU 44'),(1961,74,'n31179106'),(1961,75,'Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nubuck leather, reinforced shaft end, fabric insert, logo labelUPPER MATERIAL: Smooth LeatherLINING MATERIAL: LeatherSOLE: Rubber SoleInner material: leather, syntheticOutsole: synthetic | Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nubuck leather, reinforced shaft end, fabric insert, logo labelUPPER MATERIAL: Smooth LeatherLINING MATERIAL: LeatherSOLE: Rubber SoleInner material: leather, syntheticOutsole: synthetic | Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nubuck leather, reinforced shaft end, fabric insert, logo labelUPPER MATERIAL: Smooth LeatherLINING MATERIAL: LeatherSOLE: Rubber SoleInner material: leather, syntheticOutsole: synthetic | Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nubuck leather, reinforced shaft end, fabric insert, logo labelUPPER MATERIAL: Smooth LeatherLINING MATERIAL: LeatherSOLE: Rubber SoleInner material: leather, syntheticOutsole: synthetic | Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nubuck leather, reinforced shaft end, fabric insert, logo labelUPPER MATERIAL: Smooth LeatherLINING MATERIAL: LeatherSOLE: Rubber SoleInner material: leather, syntheticOutsole: synthetic | Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nubuck leather, reinforced shaft end, fabric insert, logo labelUPPER MATERIAL: Smooth LeatherLINING MATERIAL: LeatherSOLE: Rubber SoleInner material: leather, syntheticOutsole: synthetic | Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nubuck leather, reinforced shaft end, fabric insert, logo labelUPPER MATERIAL: Smooth LeatherLINING MATERIAL: LeatherSOLE: Rubber SoleInner material: leather, syntheticOutsole: synthetic | Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nubuck leather, reinforced shaft end, fabric insert, logo labelUPPER MATERIAL: Smooth LeatherLINING MATERIAL: LeatherSOLE: Rubber SoleInner material: leather, syntheticOutsole: synthetic | Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nubuck leather, reinforced shaft end, fabric insert, logo labelUPPER MATERIAL: Smooth LeatherLINING MATERIAL: LeatherSOLE: Rubber SoleInner material: leather, syntheticOutsole: synthetic | Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nubuck leather, reinforced shaft end, fabric insert, logo labelUPPER MATERIAL: Smooth LeatherLINING MATERIAL: LeatherSOLE: Rubber SoleInner material: leather, syntheticOutsole: synthetic | Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nubuck leather, reinforced shaft end, fabric insert, logo labelUPPER MATERIAL: Smooth LeatherLINING MATERIAL: LeatherSOLE: Rubber SoleInner material: leather, syntheticOutsole: synthetic | Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nubuck leather, reinforced shaft end, fabric insert, logo labelUPPER MATERIAL: Smooth LeatherLINING MATERIAL: LeatherSOLE: Rubber SoleInner material: leather, syntheticOutsole: synthetic | Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nubuck leather, reinforced shaft end, fabric insert, logo labelUPPER MATERIAL: Smooth LeatherLINING MATERIAL: LeatherSOLE: Rubber SoleInner material: leather, syntheticOutsole: synthetic | Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nubuck leather, reinforced shaft end, fabric insert, logo labelUPPER MATERIAL: Smooth LeatherLINING MATERIAL: LeatherSOLE: Rubber SoleInner material: leather, syntheticOutsole: synthetic | Contemporary desert boot with a wedge sole made from extra light and shock-absorbent material. The slightly anti-skid material is robust and water-repellent and in conjunction with the Gore Tex membrane ensures a pleasant foot climate. Laid-back casual look, perfect teamed with jeans or other leisure wear. Classic half boots with a minimalistic design. The quality craftsmanship and fine leather complement the timeless, luxurious look and provide comfort. Finish: Gore-Tex®: durably waterproof and wind proof, optimised breathabilityExtras: Nubuck leather, reinforced shaft end, fabric insert, logo labelUPPER MATERIAL: Smooth LeatherLINING MATERIAL: LeatherSOLE: Rubber SoleInner material: leather, syntheticOutsole: synthetic'),(1961,76,'Lloyd taupe colour Gore-Tex® and nubuck leather half boots | Lloyd taupe colour Gore-Tex® and nubuck leather half boots | Lloyd taupe colour Gore-Tex® and nubuck leather half boots | Lloyd taupe colour Gore-Tex® and nubuck leather half boots | Lloyd taupe colour Gore-Tex® and nubuck leather half boots | Lloyd taupe colour Gore-Tex® and nubuck leather half boots | Lloyd taupe colour Gore-Tex® and nubuck leather half boots | Lloyd taupe colour Gore-Tex® and nubuck leather half boots | Lloyd taupe colour Gore-Tex® and nubuck leather half boots | Lloyd taupe colour Gore-Tex® and nubuck leather half boots | Lloyd taupe colour Gore-Tex® and nubuck leather half boots | Lloyd taupe colour Gore-Tex® and nubuck leather half boots | Lloyd taupe colour Gore-Tex® and nubuck leather half boots | Lloyd taupe colour Gore-Tex® and nubuck leather half boots | Lloyd taupe colour Gore-Tex® and nubuck leather half boots'),(1961,93,'Red | Red | Red | Red | Red | Red | Red | Grey | Grey | Grey | Grey | Grey | Grey | Grey'),(1972,73,'Boxfresh |  Boxfresh-blue-EU 39 |  Boxfresh-blue-EU 42 |  Boxfresh-blue-EU 40 |  Boxfresh-blue-EU 43 |  Boxfresh-blue-EU 41 |  Boxfresh-black-EU 39 |  Boxfresh-black-EU 42 |  Boxfresh-black-EU 40 |  Boxfresh-black-EU 43 |  Boxfresh-black-EU 41'),(1972,74,'n31332981'),(1972,75,'An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look. Product details: Brown leather upper Contrast white sports inspired sole Subtle branding Composition: Upper: 100% Leather Lining: 100% Textile Sole: 100% Rubber Care: Wipe clean with a damp cloth | An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look. Product details: Brown leather upper Contrast white sports inspired sole Subtle branding Composition: Upper: 100% Leather Lining: 100% Textile Sole: 100% Rubber Care: Wipe clean with a damp cloth | An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look. Product details: Brown leather upper Contrast white sports inspired sole Subtle branding Composition: Upper: 100% Leather Lining: 100% Textile Sole: 100% Rubber Care: Wipe clean with a damp cloth | An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look. Product details: Brown leather upper Contrast white sports inspired sole Subtle branding Composition: Upper: 100% Leather Lining: 100% Textile Sole: 100% Rubber Care: Wipe clean with a damp cloth | An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look. Product details: Brown leather upper Contrast white sports inspired sole Subtle branding Composition: Upper: 100% Leather Lining: 100% Textile Sole: 100% Rubber Care: Wipe clean with a damp cloth | An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look. Product details: Brown leather upper Contrast white sports inspired sole Subtle branding Composition: Upper: 100% Leather Lining: 100% Textile Sole: 100% Rubber Care: Wipe clean with a damp cloth | An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look. Product details: Brown leather upper Contrast white sports inspired sole Subtle branding Composition: Upper: 100% Leather Lining: 100% Textile Sole: 100% Rubber Care: Wipe clean with a damp cloth | An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look. Product details: Brown leather upper Contrast white sports inspired sole Subtle branding Composition: Upper: 100% Leather Lining: 100% Textile Sole: 100% Rubber Care: Wipe clean with a damp cloth | An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look. Product details: Brown leather upper Contrast white sports inspired sole Subtle branding Composition: Upper: 100% Leather Lining: 100% Textile Sole: 100% Rubber Care: Wipe clean with a damp cloth | An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look. Product details: Brown leather upper Contrast white sports inspired sole Subtle branding Composition: Upper: 100% Leather Lining: 100% Textile Sole: 100% Rubber Care: Wipe clean with a damp cloth | An iconic Boxfresh style, the Spencer is a modern shoe with the versatility to be worn for work or weekends exploring the city. Keep it simple, and style this modern sneaker with slim or loose cut dark jeans, a white tee and a varsity bomber, for a contemporary look. Product details: Brown leather upper Contrast white sports inspired sole Subtle branding Composition: Upper: 100% Leather Lining: 100% Textile Sole: 100% Rubber Care: Wipe clean with a damp cloth'),(1972,76,'An iconic Boxfresh styles sneakers Spencer | An iconic Boxfresh styles sneakers Spencer | An iconic Boxfresh styles sneakers Spencer | An iconic Boxfresh styles sneakers Spencer | An iconic Boxfresh styles sneakers Spencer | An iconic Boxfresh styles sneakers Spencer | An iconic Boxfresh styles sneakers Spencer | An iconic Boxfresh styles sneakers Spencer | An iconic Boxfresh styles sneakers Spencer | An iconic Boxfresh styles sneakers Spencer | An iconic Boxfresh styles sneakers Spencer'),(1972,93,'Blue | Blue | Blue | Blue | Blue | Black | Black | Black | Black | Black'),(1991,73,'Gant Marvel |  Gant Marvel-EU 39-brow  Gant Marvel-EU 39-grey |  Gant Marvel-EU 39-black |  Gant Marvel-EU 42-brow  Gant Marvel-EU 42-grey |  Gant Marvel-EU 42-black |  Gant Marvel-EU 40-brow  Gant Marvel-EU 40-grey |  Gant Marvel-EU 40-black |  Gant Marvel-EU 43-brow  Gant Marvel-EU 43-grey |  Gant Marvel-EU 43-black |  Gant Marvel-EU 41-brow  Gant Marvel-EU 41-grey |  Gant Marvel-EU 41-black |  Gant Marvel-EU 44-brow  Gant Marvel-EU 44-grey |  Gant Marvel-EU 44-black'),(1991,74,'n31085465'),(1991,75,'The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular | The GANT history dating back to 1949, when Bernard Gantmacher started to manufacture shirts at the american city of New Haven. He had passion for quality and design, which was soon became his trademark. After the Second World War, the company was taken over by Bernard\'s two sons, since then the company began to develop. Since then the brand has evolved, today more than 60 countries with more than 700 stores are present, including Office Shoes stores. The Gant shoes follow authentic american fashion, but still represents high-quality casual wear with a little european spirit! Gant is a sense of good looking, and now you can experience this through the american brand! Gant is not just a brand, but a lifestyle. Product Info: Outer Material: Leather &amp; Nylon Inner Material: Textile &amp; Leather Sole: Gum Rubber Closure: Lace-Up Heel Height: 2 centimetres Shoe Width: Regular'),(1991,76,'Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots | Suede taupe colour Gant Marvel half boots'),(1991,93,'Brow Grey | Black | Brow Grey | Black | Brow Grey | Black | Brow Grey | Black | Brow Grey | Black | Brow Grey | Black'),(1996,73,'Moss Cargo Pants | n Moss Cargo Pants-grey-Medium size | n Moss Cargo Pants-grey-Large size | n Moss Cargo Pants-brown-Medium size | n Moss Cargo Pants-brown-Large size'),(1996,74,'n31264080'),(1996,75,'Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)Extras: logo labelPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU M and is 185cm/6′0″ tall. | Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)Extras: logo labelPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU M and is 185cm/6′0″ tall. | Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)Extras: logo labelPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU M and is 185cm/6′0″ tall. | Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)Extras: logo labelPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU M and is 185cm/6′0″ tall. | Cut: tapered leg, elasticated leg openingsMeasurements for size EU M: waist 86 cm (34″), leg opening 32 cm (12.5″), inside leg 72,5 cm (28.5″), rise 27 cm (10.5″)Waistband: buttoned, belt loop(s)Pockets: slit pocket/s, side flap pockets, rear flap pocket(s)Extras: logo labelPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU M and is 185cm/6′0″ tall.'),(1996,76,'Moss Cargo Pants by Solid | Moss Cargo Pants by Solid | Moss Cargo Pants by Solid | Moss Cargo Pants by Solid | Moss Cargo Pants by Solid'),(1996,93,'Grey | Grey | Brow Brown'),(2001,73,'Dark blue sunglasses | Dark blue sunglasses-blue-Large size | Dark blue sunglasses-blue-Medium size | Dark blue sunglasses-red-Large size | Dark blue sunglasses-red-Medium size'),(2001,74,'n31178507'),(2001,75,'Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″) UV filter: category 3 Extras: case included Material: plastic Please note: May only be returned in original packaging. | Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″) UV filter: category 3 Extras: case included Material: plastic Please note: May only be returned in original packaging. | Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″) UV filter: category 3 Extras: case included Material: plastic Please note: May only be returned in original packaging. | Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″) UV filter: category 3 Extras: case included Material: plastic Please note: May only be returned in original packaging. | Model: Nick/S/4HU-T4 Measurements for size EU 50: frame length approx. 150 mm (6″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″) UV filter: category 3 Extras: case included Material: plastic Please note: May only be returned in original packaging.'),(2001,76,'Sunglasses with a metal frame and transparent colored lenses. Faux leather case. | Sunglasses with a metal frame and transparent colored lenses. Faux leather case. | Sunglasses with a metal frame and transparent colored lenses. Faux leather case. | Sunglasses with a metal frame and transparent colored lenses. Faux leather case. | Sunglasses with a metal frame and transparent colored lenses. Faux leather case.'),(2001,93,'Blue | Blue | Red | Red'),(2010,73,'Boyfriend Jeans | n Boyfriend Jeans-red-Extra small size | n Boyfriend Jeans-red-Large size | n Boyfriend Jeans-red-Small size | n Boyfriend Jeans-red-Medium size | n Boyfriend Jeans-blue-Extra small size | n Boyfriend Jeans-blue-Large size | n Boyfriend Jeans-blue-Small size | n Boyfriend Jeans-blue-Medium size'),(2010,74,'n31125037'),(2010,75,'Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light quality, denim look, pleatsMaterial: 100% LyocellManufacturer\'s care instructions: machine wash | Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light quality, denim look, pleatsMaterial: 100% LyocellManufacturer\'s care instructions: machine wash | Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light quality, denim look, pleatsMaterial: 100% LyocellManufacturer\'s care instructions: machine wash | Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light quality, denim look, pleatsMaterial: 100% LyocellManufacturer\'s care instructions: machine wash | Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light quality, denim look, pleatsMaterial: 100% LyocellManufacturer\'s care instructions: machine wash | Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light quality, denim look, pleatsMaterial: 100% LyocellManufacturer\'s care instructions: machine wash | Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light quality, denim look, pleatsMaterial: 100% LyocellManufacturer\'s care instructions: machine wash | Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light quality, denim look, pleatsMaterial: 100% LyocellManufacturer\'s care instructions: machine wash | Cut: pleats, tapered legMeasurements for size EU 36: waist 80 cm (31.5″), leg opening 30 cm (12″), inside leg 69 cm (27″), rise 28,5 cm (11″)Waistband: zip with hook on cuffPockets: slit pocket/s, rear mock slit pocket(s)Extras: light quality, denim look, pleatsMaterial: 100% LyocellManufacturer\'s care instructions: machine wash'),(2010,76,'Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening. | Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening. | Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening. | Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening. | Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening. | Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening. | Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening. | Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening. | Mid waist boyfriend jeans with frayed hems. Featuring a washed effect, five pockets and zip fly and top button fastening.'),(2010,93,'Red | Red | Red | Red | Blue | Blue | Blue | Blue'),(2017,73,'Brax Chuck Slim Fit | n Brax Chuck Slim Fit-white-Medium size | n Brax Chuck Slim Fit-white-Small size | n Brax Chuck Slim Fit-white-Extra small size | n Brax Chuck Slim Fit-red-Medium size | n Brax Chuck Slim Fit-red-Small size | n Brax Chuck Slim Fit-red-Extra small size'),(2017,74,'n30977134'),(2017,75,'This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton finish gives the trousers a cool summer feel. | This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton finish gives the trousers a cool summer feel. | This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton finish gives the trousers a cool summer feel. | This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton finish gives the trousers a cool summer feel. | This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton finish gives the trousers a cool summer feel. | This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton finish gives the trousers a cool summer feel. | This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton finish gives the trousers a cool summer feel.'),(2017,76,'High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front. | High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front. | High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front. | High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front. | High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front. | High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front. | High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.'),(2017,93,'White | White | White | Red | Red | Red'),(2020,73,'Blue Leather Belt |  Blue Leather Belt-brown-Small size |  Blue Leather Belt-blue-Small size'),(2020,74,'n31146614'),(2020,75,'Measurements for size EU 90: width approx. 3,5 cm (1.5″) Fastening: pin buckle Extras: Nubuck leather, partially textured surface Material: leather | Measurements for size EU 90: width approx. 3,5 cm (1.5″) Fastening: pin buckle Extras: Nubuck leather, partially textured surface Material: leather | Measurements for size EU 90: width approx. 3,5 cm (1.5″) Fastening: pin buckle Extras: Nubuck leather, partially textured surface Material: leather'),(2020,76,'Tommy Hilfiger men’s belt. Our one-size-fits-all belt is as versatile as it is comfortable with its woven design and built-in stretch. | Tommy Hilfiger men’s belt. Our one-size-fits-all belt is as versatile as it is comfortable with its woven design and built-in stretch. | Tommy Hilfiger men’s belt. Our one-size-fits-all belt is as versatile as it is comfortable with its woven design and built-in stretch.'),(2020,93,'Brow Blue'),(2029,73,'Business Trousers | n Business Trousers-black-Medium size | n Business Trousers-black-Small size | n Business Trousers-black-Extra small size | n Business Trousers-black-Large size | n Business Trousers-brown-Medium size | n Business Trousers-brown-Small size | n Business Trousers-brown-Extra small size | n Business Trousers-brown-Large size'),(2029,74,'n30977108'),(2029,75,'Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear piped pocket(s)Extras: creases, solid qualityPattern: solid-colouredMaterial: 96% virgin wool, 4% polyamideLining material: 57% viscose, 43% polyesterManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear piped pocket(s)Extras: creases, solid qualityPattern: solid-colouredMaterial: 96% virgin wool, 4% polyamideLining material: 57% viscose, 43% polyesterManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear piped pocket(s)Extras: creases, solid qualityPattern: solid-colouredMaterial: 96% virgin wool, 4% polyamideLining material: 57% viscose, 43% polyesterManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear piped pocket(s)Extras: creases, solid qualityPattern: solid-colouredMaterial: 96% virgin wool, 4% polyamideLining material: 57% viscose, 43% polyesterManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear piped pocket(s)Extras: creases, solid qualityPattern: solid-colouredMaterial: 96% virgin wool, 4% polyamideLining material: 57% viscose, 43% polyesterManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear piped pocket(s)Extras: creases, solid qualityPattern: solid-colouredMaterial: 96% virgin wool, 4% polyamideLining material: 57% viscose, 43% polyesterManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear piped pocket(s)Extras: creases, solid qualityPattern: solid-colouredMaterial: 96% virgin wool, 4% polyamideLining material: 57% viscose, 43% polyesterManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear piped pocket(s)Extras: creases, solid qualityPattern: solid-colouredMaterial: 96% virgin wool, 4% polyamideLining material: 57% viscose, 43% polyesterManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 74 cm (29″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 30 cm (12″)Waistband: Zip with concealed hooks and safety button insidePockets: front zip pocket(s), mock rear piped pocket(s)Extras: creases, solid qualityPattern: solid-colouredMaterial: 96% virgin wool, 4% polyamideLining material: 57% viscose, 43% polyesterManufacturer\'s care instructions: dry cleaning'),(2029,76,'Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the | Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the | Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the | Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the | Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the | Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the | Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the | Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the | Classic and universally flattering, these pants have a tapered leg that hits just above the ankle. The smooth crepe material is virtually crease-free and keeps its shape during busy days on the'),(2029,93,'Black | Black | Black | Black | Brow Brow Brow Brown'),(2032,73,'Taupe Leather Belt |  Taupe Leather Belt-brown-Small size |  Taupe Leather Belt-blue-Small size'),(2032,74,'n31162615'),(2032,75,'Measurements for size EU 95: width approx. 3,3 cm (1.5″) Fastening: pin buckle Extras: suede Material: leather | Measurements for size EU 95: width approx. 3,3 cm (1.5″) Fastening: pin buckle Extras: suede Material: leather | Measurements for size EU 95: width approx. 3,3 cm (1.5″) Fastening: pin buckle Extras: suede Material: leather'),(2032,76,'Basic leather belt with a loop and a contrasting shiny buckle. | Basic leather belt with a loop and a contrasting shiny buckle. | Basic leather belt with a loop and a contrasting shiny buckle.'),(2032,93,'Brow Blue'),(2050,73,'Casual Trousers | n Casual Trousers-blue-Extra small size | n Casual Trousers-blue-Large size | n Casual Trousers-blue-Small size | n Casual Trousers-blue-Medium size | n Casual Trousers-grey-Extra small size | n Casual Trousers-grey-Large size | n Casual Trousers-grey-Small size | n Casual Trousers-grey-Medium size'),(2050,74,'n31340162'),(2050,75,'The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-upsMeasurements for size EU 36: length of outside leg 96 cm (38″)Waistband: elasticated waistbandPockets: slit pocket/s, mock welt pocket/s at the backPattern: patternedMaterial: 65% polyester, 32% viscose, 3% elastaneManufacturer\'s care instructions: machine washOur model wears a EU 36 and is 179cm/5′10″ tall. | The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-upsMeasurements for size EU 36: length of outside leg 96 cm (38″)Waistband: elasticated waistbandPockets: slit pocket/s, mock welt pocket/s at the backPattern: patternedMaterial: 65% polyester, 32% viscose, 3% elastaneManufacturer\'s care instructions: machine washOur model wears a EU 36 and is 179cm/5′10″ tall. | The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-upsMeasurements for size EU 36: length of outside leg 96 cm (38″)Waistband: elasticated waistbandPockets: slit pocket/s, mock welt pocket/s at the backPattern: patternedMaterial: 65% polyester, 32% viscose, 3% elastaneManufacturer\'s care instructions: machine washOur model wears a EU 36 and is 179cm/5′10″ tall. | The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-upsMeasurements for size EU 36: length of outside leg 96 cm (38″)Waistband: elasticated waistbandPockets: slit pocket/s, mock welt pocket/s at the backPattern: patternedMaterial: 65% polyester, 32% viscose, 3% elastaneManufacturer\'s care instructions: machine washOur model wears a EU 36 and is 179cm/5′10″ tall. | The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-upsMeasurements for size EU 36: length of outside leg 96 cm (38″)Waistband: elasticated waistbandPockets: slit pocket/s, mock welt pocket/s at the backPattern: patternedMaterial: 65% polyester, 32% viscose, 3% elastaneManufacturer\'s care instructions: machine washOur model wears a EU 36 and is 179cm/5′10″ tall. | The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-upsMeasurements for size EU 36: length of outside leg 96 cm (38″)Waistband: elasticated waistbandPockets: slit pocket/s, mock welt pocket/s at the backPattern: patternedMaterial: 65% polyester, 32% viscose, 3% elastaneManufacturer\'s care instructions: machine washOur model wears a EU 36 and is 179cm/5′10″ tall. | The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-upsMeasurements for size EU 36: length of outside leg 96 cm (38″)Waistband: elasticated waistbandPockets: slit pocket/s, mock welt pocket/s at the backPattern: patternedMaterial: 65% polyester, 32% viscose, 3% elastaneManufacturer\'s care instructions: machine washOur model wears a EU 36 and is 179cm/5′10″ tall. | The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-upsMeasurements for size EU 36: length of outside leg 96 cm (38″)Waistband: elasticated waistbandPockets: slit pocket/s, mock welt pocket/s at the backPattern: patternedMaterial: 65% polyester, 32% viscose, 3% elastaneManufacturer\'s care instructions: machine washOur model wears a EU 36 and is 179cm/5′10″ tall. | The checkered pattern makes an elegant and cool look – for both parties and everyday use. The nice pants have elastic waistband, belt loops, side pockets and jetted pockets on the back. The trousers have a small cuff, which provides a cool look. The pants can be styled with a blazer for a more business-like look or with a white T-shirt for a more casual look. It can also be styled with Fie Jillian Blazer for a complete stylish look. Cut: slightly tapered leg, turn-upsMeasurements for size EU 36: length of outside leg 96 cm (38″)Waistband: elasticated waistbandPockets: slit pocket/s, mock welt pocket/s at the backPattern: patternedMaterial: 65% polyester, 32% viscose, 3% elastaneManufacturer\'s care instructions: machine washOur model wears a EU 36 and is 179cm/5′10″ tall.'),(2050,76,'High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons. | High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons. | High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons. | High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons. | High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons. | High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons. | High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons. | High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons. | High waist trousers. Featuring an elastic waistband at the back, front pockets and a false welt pocket in the back. Fastens in the front with contrast buttons.'),(2050,93,'Blue | Blue | Blue | Blue | Grey | Grey | Grey | Grey'),(2055,73,'Violet sunglasses |  Violet sunglasses-black-Small size |  Violet sunglasses-black-Medium size |  Violet sunglasses-red-Small size |  Violet sunglasses-red-Medium size'),(2055,74,'n31300702'),(2055,75,'Reference number: DL0255 Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″) UV filter: category 3 Extras: logo appliqué(s), case included Material: plastic Please note: May only be returned in original packaging. | Reference number: DL0255 Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″) UV filter: category 3 Extras: logo appliqué(s), case included Material: plastic Please note: May only be returned in original packaging. | Reference number: DL0255 Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″) UV filter: category 3 Extras: logo appliqué(s), case included Material: plastic Please note: May only be returned in original packaging. | Reference number: DL0255 Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″) UV filter: category 3 Extras: logo appliqué(s), case included Material: plastic Please note: May only be returned in original packaging. | Reference number: DL0255 Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 17 mm (0.5″) UV filter: category 3 Extras: logo appliqué(s), case included Material: plastic Please note: May only be returned in original packaging.'),(2055,76,'Aviator-style sunglasses with a metal frame and coloured mirrored lenses. Faux leather case. | Aviator-style sunglasses with a metal frame and coloured mirrored lenses. Faux leather case. | Aviator-style sunglasses with a metal frame and coloured mirrored lenses. Faux leather case. | Aviator-style sunglasses with a metal frame and coloured mirrored lenses. Faux leather case. | Aviator-style sunglasses with a metal frame and coloured mirrored lenses. Faux leather case.'),(2055,93,'Black | Black | Red | Red'),(2060,73,'Chiffon Dress | n Chiffon Dress -Small size-brow n Chiffon Dress -Small size-grey | n Chiffon Dress -Medium size-brow n Chiffon Dress -Medium size-grey'),(2060,74,'n31305260'),(2060,75,'Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU S: garment length 106 cm (41.5″) Neckline: crew neck Fastening: rear zip Sleeve: shortsleeve Lining: lined Pattern: solid-coloured Outer material: 60% cotton, 40% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.  | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU S: garment length 106 cm (41.5″) Neckline: crew neck Fastening: rear zip Sleeve: shortsleeve Lining: lined Pattern: solid-coloured Outer material: 60% cotton, 40% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.  | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU S: garment length 106 cm (41.5″) Neckline: crew neck Fastening: rear zip Sleeve: shortsleeve Lining: lined Pattern: solid-coloured Outer material: 60% cotton, 40% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.  | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU S: garment length 106 cm (41.5″) Neckline: crew neck Fastening: rear zip Sleeve: shortsleeve Lining: lined Pattern: solid-coloured Outer material: 60% cotton, 40% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.  | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU S: garment length 106 cm (41.5″) Neckline: crew neck Fastening: rear zip Sleeve: shortsleeve Lining: lined Pattern: solid-coloured Outer material: 60% cotton, 40% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. '),(2060,76,'V-neck dress featuring sleeves falling below the elbow with turn-up detail, pleats at the waist, side in-seam pockets and front button fastening. | V-neck dress featuring sleeves falling below the elbow with turn-up detail, pleats at the waist, side in-seam pockets and front button fastening. | V-neck dress featuring sleeves falling below the elbow with turn-up detail, pleats at the waist, side in-seam pockets and front button fastening. | V-neck dress featuring sleeves falling below the elbow with turn-up detail, pleats at the waist, side in-seam pockets and front button fastening. | V-neck dress featuring sleeves falling below the elbow with turn-up detail, pleats at the waist, side in-seam pockets and front button fastening.'),(2060,93,'Brow Grey | Brow Grey'),(2065,73,'Chino | n Chino-black-Extra small size | n Chino-black-Small size | n Chino-grey-Extra small size | n Chino-grey-Small size'),(2065,74,'n31240220'),(2065,75,'Cut: slim, tapered legMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, mock welt pocket/s at the backExtras: logo appliqué(s)Pattern: solid-colouredMaterial: 100% cottonManufacturer\'s care instructions: machine wash | Cut: slim, tapered legMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, mock welt pocket/s at the backExtras: logo appliqué(s)Pattern: solid-colouredMaterial: 100% cottonManufacturer\'s care instructions: machine wash | Cut: slim, tapered legMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, mock welt pocket/s at the backExtras: logo appliqué(s)Pattern: solid-colouredMaterial: 100% cottonManufacturer\'s care instructions: machine wash | Cut: slim, tapered legMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, mock welt pocket/s at the backExtras: logo appliqué(s)Pattern: solid-colouredMaterial: 100% cottonManufacturer\'s care instructions: machine wash | Cut: slim, tapered legMeasurements for size EU 27: waist 80 cm (31.5″), leg opening 31 cm (12″), inside leg 74,5 cm (29.5″), rise 25,5 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, mock welt pocket/s at the backExtras: logo appliqué(s)Pattern: solid-colouredMaterial: 100% cottonManufacturer\'s care instructions: machine wash'),(2065,76,'An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protectio An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protectio An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protectio An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protectio An ultralight wind barrier, the Chno Pants are the three-season solution for light, packable weather protection'),(2065,93,'Black | Black | Grey | Grey'),(2072,73,'Cocktail Dress | n Cocktail Dress-red-Extra small size | n Cocktail Dress-red-Small size | n Cocktail Dress-red-Medium size | n Cocktail Dress-white-Extra small size | n Cocktail Dress-white-Small size | n Cocktail Dress-white-Medium size'),(2072,74,'n31350783'),(2072,75,'Cut: fitted with a slightly tapered skirt Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″) Neckline: crew neck Fastening: rear zip Sleeve: 3/4-length sleeves Lining: partially lined Extras: light, translucent quality Pattern: patterned Outer material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″) Neckline: crew neck Fastening: rear zip Sleeve: 3/4-length sleeves Lining: partially lined Extras: light, translucent quality Pattern: patterned Outer material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″) Neckline: crew neck Fastening: rear zip Sleeve: 3/4-length sleeves Lining: partially lined Extras: light, translucent quality Pattern: patterned Outer material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″) Neckline: crew neck Fastening: rear zip Sleeve: 3/4-length sleeves Lining: partially lined Extras: light, translucent quality Pattern: patterned Outer material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″) Neckline: crew neck Fastening: rear zip Sleeve: 3/4-length sleeves Lining: partially lined Extras: light, translucent quality Pattern: patterned Outer material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″) Neckline: crew neck Fastening: rear zip Sleeve: 3/4-length sleeves Lining: partially lined Extras: light, translucent quality Pattern: patterned Outer material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″) Neckline: crew neck Fastening: rear zip Sleeve: 3/4-length sleeves Lining: partially lined Extras: light, translucent quality Pattern: patterned Outer material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.'),(2072,76,'Round neck knit dress with short flared sleeves and slit. | Round neck knit dress with short flared sleeves and slit. | Round neck knit dress with short flared sleeves and slit. | Round neck knit dress with short flared sleeves and slit. | Round neck knit dress with short flared sleeves and slit. | Round neck knit dress with short flared sleeves and slit. | Round neck knit dress with short flared sleeves and slit.'),(2072,93,'Red | Red | Red | White | White | White'),(2077,73,'Sunglasses |  Sunglasses-black-Small size |  Sunglasses-black-Medium size |  Sunglasses-red-Small size |  Sunglasses-red-Medium size'),(2077,74,'n31160332'),(2077,75,'Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″) UV filter: category 3 Extras: logo on both temples, case included, gift-box Material: plastic Please note: May only be returned in original packaging. | Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″) UV filter: category 3 Extras: logo on both temples, case included, gift-box Material: plastic Please note: May only be returned in original packaging. | Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″) UV filter: category 3 Extras: logo on both temples, case included, gift-box Material: plastic Please note: May only be returned in original packaging. | Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″) UV filter: category 3 Extras: logo on both temples, case included, gift-box Material: plastic Please note: May only be returned in original packaging. | Measurements for size EU 56: frame length approx. 140 mm (5.5″), lens width approx. 56 mm (2″), bridge width approx. 15 mm (0.5″) UV filter: category 3 Extras: logo on both temples, case included, gift-box Material: plastic Please note: May only be returned in original packaging.'),(2077,76,'Sunglasses with a metal frame and transparent colored lenses. Faux leather case. | Sunglasses with a metal frame and transparent colored lenses. Faux leather case. | Sunglasses with a metal frame and transparent colored lenses. Faux leather case. | Sunglasses with a metal frame and transparent colored lenses. Faux leather case. | Sunglasses with a metal frame and transparent colored lenses. Faux leather case.'),(2077,93,'Black | Black | Red | Red'),(2084,73,'Colmar Soft Down Jacket | n Colmar Soft Down Jacket-blue-Extra small size | n Colmar Soft Down Jacket-blue-Large size | n Colmar Soft Down Jacket-blue-Medium size | n Colmar Soft Down Jacket-white-Extra small size | n Colmar Soft Down Jacket-white-Large size | n Colmar Soft Down Jacket-white-Medium size'),(2084,74,'n31319864'),(2084,75,'Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: lightly fitted, elasticated waistband Measurements for size EU 36: sleeve length 61 cm (24″), garment length 59 cm (23″) Collar: Stand-up collar with integrated hood Fastening: continuous two-way zip Sleeve: elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Padding: 90% duck down, 10% duck feathers Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.'),(2084,76,'Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front. | Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front. | Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front. | Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front. | Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front. | Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front. | Puffer coat with down filling. Featuring an adjustable long sleeves with elastic cuffs, detachable mittens and double-breasted snap-button fastening in the front.'),(2084,93,'Blue | Blue | Blue | White | White | White'),(2089,73,'Rose gold diorsorealrise |  Rose gold diorsorealrise-blue-Small size |  Rose gold diorsorealrise-blue-Medium size |  Rose gold diorsorealrise-red-Small size |  Rose gold diorsorealrise-red-Medium size'),(2089,74,'n31160298'),(2089,75,'Model: Diorsorealrise Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″) UV filter: category 3 Extras: patterned bow, patterned border, logo engraving, case included Material: plastic, metal Please note: May only be returned in original packaging. | Model: Diorsorealrise Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″) UV filter: category 3 Extras: patterned bow, patterned border, logo engraving, case included Material: plastic, metal Please note: May only be returned in original packaging. | Model: Diorsorealrise Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″) UV filter: category 3 Extras: patterned bow, patterned border, logo engraving, case included Material: plastic, metal Please note: May only be returned in original packaging. | Model: Diorsorealrise Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″) UV filter: category 3 Extras: patterned bow, patterned border, logo engraving, case included Material: plastic, metal Please note: May only be returned in original packaging. | Model: Diorsorealrise Measurements for size EU 58: frame length approx. 145 mm (5.5″), lens width approx. 58 mm (2.5″), bridge width approx. 17 mm (0.5″) UV filter: category 3 Extras: patterned bow, patterned border, logo engraving, case included Material: plastic, metal Please note: May only be returned in original packaging.'),(2089,76,'Resin sunglasses with a double metal bridge. | Resin sunglasses with a double metal bridge. | Resin sunglasses with a double metal bridge. | Resin sunglasses with a double metal bridge. | Resin sunglasses with a double metal bridge.'),(2089,93,'Blue | Blue | Red | Red'),(2098,73,'Comma Casual Identity Quilted Jacket | n Comma Casual Identity Quilted Jacket-red-Extra small size | n Comma Casual Identity Quilted Jacket-red-Small size | n Comma Casual Identity Quilted Jacket-red-Extra large size | n Comma Casual Identity Quilted Jacket-red-Medium size | n Comma Casual Identity Quilted Jacket-white-Extra small size | n Comma Casual Identity Quilted Jacket-white-Small size | n Comma Casual Identity Quilted Jacket-white-Extra large size | n Comma Casual Identity Quilted Jacket-white-Medium size'),(2098,74,'n31239294'),(2098,75,'Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: slightly tapered, elasticated hem Measurements for size EU 36: garment length 59 cm (23″) Collar: ribbed collar Fastening: full length zip fastener Sleeve: elasticated waistband Lining: lightly padded Extras: quilted Outer material: 68% cotton, 32% polyamide Lining material: 100% polyester Padding: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.'),(2098,76,'High collar jacket with front zip pockets and a zip-up front. | High collar jacket with front zip pockets and a zip-up front. | High collar jacket with front zip pockets and a zip-up front. | High collar jacket with front zip pockets and a zip-up front. | High collar jacket with front zip pockets and a zip-up front. | High collar jacket with front zip pockets and a zip-up front. | High collar jacket with front zip pockets and a zip-up front. | High collar jacket with front zip pockets and a zip-up front. | High collar jacket with front zip pockets and a zip-up front.'),(2098,93,'Red | Red | Red | Red | White | White | White | White'),(2105,73,'Nude sunglasses |  Nude sunglasses-white-Extra small size |  Nude sunglasses-white-Small size |  Nude sunglasses-white-Medium size |  Nude sunglasses-red-Extra small size |  Nude sunglasses-red-Small size |  Nude sunglasses-red-Medium size'),(2105,74,'n31160296'),(2105,75,'Model: RMJLH Reference number: DiorSoReal Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″) UV filter: category 3 Extras: logo on both temples, case included, gift-box Material: plastic Please note: May only be returned in original packaging. | Model: RMJLH Reference number: DiorSoReal Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″) UV filter: category 3 Extras: logo on both temples, case included, gift-box Material: plastic Please note: May only be returned in original packaging. | Model: RMJLH Reference number: DiorSoReal Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″) UV filter: category 3 Extras: logo on both temples, case included, gift-box Material: plastic Please note: May only be returned in original packaging. | Model: RMJLH Reference number: DiorSoReal Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″) UV filter: category 3 Extras: logo on both temples, case included, gift-box Material: plastic Please note: May only be returned in original packaging. | Model: RMJLH Reference number: DiorSoReal Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″) UV filter: category 3 Extras: logo on both temples, case included, gift-box Material: plastic Please note: May only be returned in original packaging. | Model: RMJLH Reference number: DiorSoReal Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″) UV filter: category 3 Extras: logo on both temples, case included, gift-box Material: plastic Please note: May only be returned in original packaging. | Model: RMJLH Reference number: DiorSoReal Measurements for size EU 48: frame length approx. 140 mm (5.5″), lens width approx. 48 mm (2″), bridge width approx. 22 mm (1″) UV filter: category 3 Extras: logo on both temples, case included, gift-box Material: plastic Please note: May only be returned in original packaging.'),(2105,76,'Cateye glasses with a transparent resin frame and mirror lenses. | Cateye glasses with a transparent resin frame and mirror lenses. | Cateye glasses with a transparent resin frame and mirror lenses. | Cateye glasses with a transparent resin frame and mirror lenses. | Cateye glasses with a transparent resin frame and mirror lenses. | Cateye glasses with a transparent resin frame and mirror lenses. | Cateye glasses with a transparent resin frame and mirror lenses.'),(2105,93,'White | White | White | Red | Red | Red'),(2116,73,'Cotton-Stretch Tapered Pants | n Cotton-Stretch Tapered Pants-white-Extra small size | n Cotton-Stretch Tapered Pants-white-Small size | n Cotton-Stretch Tapered Pants-white-Medium size | n Cotton-Stretch Tapered Pants-white-Large size | n Cotton-Stretch Tapered Pants-white-Extra large size | n Cotton-Stretch Tapered Pants-blue-Extra small size | n Cotton-Stretch Tapered Pants-blue-Small size | n Cotton-Stretch Tapered Pants-blue-Medium size | n Cotton-Stretch Tapered Pants-blue-Large size | n Cotton-Stretch Tapered Pants-blue-Extra large size'),(2116,74,'n30977037'),(2116,75,'Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sExtras: creases, heavy jersey qualityPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sExtras: creases, heavy jersey qualityPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sExtras: creases, heavy jersey qualityPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sExtras: creases, heavy jersey qualityPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sExtras: creases, heavy jersey qualityPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sExtras: creases, heavy jersey qualityPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sExtras: creases, heavy jersey qualityPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sExtras: creases, heavy jersey qualityPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sExtras: creases, heavy jersey qualityPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sExtras: creases, heavy jersey qualityPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: dry cleaning | Cut: slim, tapered legMeasurements for size EU 36: waist 78 cm (30.5″), leg opening 40 cm (15.5″), inside leg 85 cm (33.5″), rise 24 cm (9.5″)Waistband: Zip with concealed hooks and safety button insidePockets: slit pocket/sExtras: creases, heavy jersey qualityPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: dry cleaning'),(2116,76,'Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle. | Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle. | Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle. | Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle. | Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle. | Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle. | Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle. | Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle. | Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle. | Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle. | Classic and universally flattering, these pants are cut with a tapered leg that hits just at the ankle.'),(2116,93,'White | White | White | White | White | Blue | Blue | Blue | Blue | Blue'),(2123,73,'Dine\'n\'Dance Cashmere Pullover | n Dine\'n\'Dance Cashmere Pullover-brown-Medium size | n Dine\'n\'Dance Cashmere Pullover-brown-Small size | n Dine\'n\'Dance Cashmere Pullover-brown-Extra small size | n Dine\'n\'Dance Cashmere Pullover-white-Medium size | n Dine\'n\'Dance Cashmere Pullover-white-Small size | n Dine\'n\'Dance Cashmere Pullover-white-Extra small size'),(2123,74,'n31218012'),(2123,75,'Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted, side slits, ribbed trim waistband Measurements for size EU 36: sleeve length 64,5 cm (25.5″), garment length 64 cm (25″) Neckline: V-neck Sleeve: ribbed trim cuffs Extras: soft quality Pattern: striped Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.'),(2123,76,'Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims.'),(2123,93,'Brow Brow Brow White | White | White'),(2132,73,'Dolomite Quilted Jacket | n Dolomite Quilted Jacket-white-Extra small size | n Dolomite Quilted Jacket-white-Large size | n Dolomite Quilted Jacket-white-Small size | n Dolomite Quilted Jacket-white-Medium size | n Dolomite Quilted Jacket-blue-Extra small size | n Dolomite Quilted Jacket-blue-Large size | n Dolomite Quilted Jacket-blue-Small size | n Dolomite Quilted Jacket-blue-Medium size'),(2132,74,'n31266871'),(2132,75,'Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 58 cm (23″) Collar: hood Fastening: continuous two-way zip Sleeve: lined, elasticated cuffs Exterior pockets: zip pocket(s) Lining: lined and lightly padded Extras: quilted, logo appliqué(s) Outer material: 100% polyamide Lining material: 100% polyamide Padding: 100% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU S and is 179cm/5′10″ tall.'),(2132,76,'Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket. | Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket. | Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket. | Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket. | Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket. | Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket. | Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket. | Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket. | Long sleeve puffer jacket with front welt pockets, contrasting interior lining and zip fastening in the front hidden by a placket.'),(2132,93,'White | White | White | White | Blue | Blue | Blue | Blue'),(2135,73,'Light grey Leather Belt |  Light grey Leather Belt-grey-Small size |  Light grey Leather Belt-blue-Small size'),(2135,74,'n31034537'),(2135,75,'Measurements for size EU S: width approx. 1,8 cm (0.5″) Material: leather Fastening: pin buckle'),(2135,76,'Contrast leather B.Belt with a loop and a contrasting metal buckle. '),(2135,93,'Grey | Blue'),(2138,73,'Light blue Leather Belt |  Light blue Leather Belt-blue-Small size |  Light blue Leather Belt-red-Small size'),(2138,74,'n31062218'),(2138,75,'Measurements for size EU S: width approx. 1,8 cm (0.5″) Fastening: pin buckle Extras: patent leather Material: leather | Measurements for size EU S: width approx. 1,8 cm (0.5″) Fastening: pin buckle Extras: patent leather Material: leather | Measurements for size EU S: width approx. 1,8 cm (0.5″) Fastening: pin buckle Extras: patent leather Material: leather'),(2138,76,'Reversible leather belt with a loop and contrasting metal buckle. | Reversible leather belt with a loop and contrasting metal buckle. | Reversible leather belt with a loop and contrasting metal buckle.'),(2138,93,'Blue | Red'),(2145,73,'Dress Trousers | n Dress Trousers-black-Large size | n Dress Trousers-black-Small size | n Dress Trousers-black-Medium size | n Dress Trousers-red-Large size | n Dress Trousers-red-Small size | n Dress Trousers-red-Medium size'),(2145,74,'n31331004'),(2145,75,'Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, crease in frontPattern: patternedMaterial: 53% cotton, 44% polyester, 3% elastaneManufacturer\'s care instructions: machine wash | Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, crease in frontPattern: patternedMaterial: 53% cotton, 44% polyester, 3% elastaneManufacturer\'s care instructions: machine wash | Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, crease in frontPattern: patternedMaterial: 53% cotton, 44% polyester, 3% elastaneManufacturer\'s care instructions: machine wash | Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, crease in frontPattern: patternedMaterial: 53% cotton, 44% polyester, 3% elastaneManufacturer\'s care instructions: machine wash | Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, crease in frontPattern: patternedMaterial: 53% cotton, 44% polyester, 3% elastaneManufacturer\'s care instructions: machine wash | Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, crease in frontPattern: patternedMaterial: 53% cotton, 44% polyester, 3% elastaneManufacturer\'s care instructions: machine wash | Cut: straight, narrow legsMeasurements for size EU 36: waist 76 cm (30″), leg opening 30 cm (12″), inside leg 78 cm (30.5″), rise 23 cm (9″)Waistband: elasticated waistband, zip with button on cuffExtras: weaving pattern, solid-coloured, crease in frontPattern: patternedMaterial: 53% cotton, 44% polyester, 3% elastaneManufacturer\'s care instructions: machine wash'),(2145,76,'Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease | Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease | Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease | Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease | Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease | Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease | Ankle-length trousers by Atelier Gardeur. Design DINA 2 Slim. The perfect trousers for the city, business and lei­sure in really easy-care, low-crease'),(2145,93,'Black | Black | Black | Red | Red | Red'),(2149,73,'Leather Backpack |  Leather Backpack-grey |  Leather Backpack-brown'),(2149,74,'n31304473'),(2149,75,'Measurements for one size: height 43 cm (17″), length 30 cm (12″), depth 15 cm (6″) Fastening: two-way zip (open from right and left) Lining material: lined Exterior pockets: patch zip pocket / s, zip pocket(s) Interior pockets: plug-in and zip pocket(s), padded laptop compartment Extras: grained leather, attachment for mounting, logo appliqué(s), padded back, adjustable and padded shoulder straps Material: leather Lining: textile Our model wears a EU OS and is 185cm/6′0″ tall. | Measurements for one size: height 43 cm (17″), length 30 cm (12″), depth 15 cm (6″) Fastening: two-way zip (open from right and left) Lining material: lined Exterior pockets: patch zip pocket / s, zip pocket(s) Interior pockets: plug-in and zip pocket(s), padded laptop compartment Extras: grained leather, attachment for mounting, logo appliqué(s), padded back, adjustable and padded shoulder straps Material: leather Lining: textile Our model wears a EU OS and is 185cm/6′0″ tall. | Measurements for one size: height 43 cm (17″), length 30 cm (12″), depth 15 cm (6″) Fastening: two-way zip (open from right and left) Lining material: lined Exterior pockets: patch zip pocket / s, zip pocket(s) Interior pockets: plug-in and zip pocket(s), padded laptop compartment Extras: grained leather, attachment for mounting, logo appliqué(s), padded back, adjustable and padded shoulder straps Material: leather Lining: textile Our model wears a EU OS and is 185cm/6′0″ tall.'),(2149,76,'Basic backpack with zip closure. Double compartment. The inside features a compartment for storing electronic devices and laptops of up to 13 inches (13”). | Basic backpack with zip closure. Double compartment. The inside features a compartment for storing electronic devices and laptops of up to 13 inches (13”). | Basic backpack with zip closure. Double compartment. The inside features a compartment for storing electronic devices and laptops of up to 13 inches (13”).'),(2149,93,'Grey | Brown'),(2157,73,'Escada Gilet | n Escada Gilet-white-Extra small size | n Escada Gilet-white-Large size | n Escada Gilet-white-Small size | n Escada Gilet-white-Medium size | n Escada Gilet-black-Extra small size | n Escada Gilet-black-Large size | n Escada Gilet-black-Small size | n Escada Gilet-black-Medium size'),(2157,74,'n30838511'),(2157,75,'Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted Measurements for size EU 36: garment length 108 cm (42.5″) Fastening: continuous button placket, double-breasted Lining: lined Material: 100% virgin wool Lining material: 57% viscose, 43% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.'),(2157,76,'Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior. | Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior. | Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior. | Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior. | Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior. | Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior. | Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior. | Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior. | Long jacket without sleeves. Featuring button fastening in the front, flap pockets on the chest and a faux-shearling-lined interior.'),(2157,93,'White | White | White | White | Black | Black | Black | Black'),(2168,73,'Heeled Sandals | n Heeled Sandals-brown-EU 39 | n Heeled Sandals-brown-EU 37 | n Heeled Sandals-brown-EU 40 | n Heeled Sandals-brown-EU 38 | n Heeled Sandals-brown-EU 41 | n Heeled Sandals-blue-EU 39 | n Heeled Sandals-blue-EU 37 | n Heeled Sandals-blue-EU 40 | n Heeled Sandals-blue-EU 38 | n Heeled Sandals-blue-EU 41'),(2168,74,'n31197648'),(2168,75,'Measurements for size EU 39: heel height 10 cm (4″) Extras: monk strap, velvety surface Outer material: textile Inner material: synthetic Outsole: synthetic | Measurements for size EU 39: heel height 10 cm (4″) Extras: monk strap, velvety surface Outer material: textile Inner material: synthetic Outsole: synthetic | Measurements for size EU 39: heel height 10 cm (4″) Extras: monk strap, velvety surface Outer material: textile Inner material: synthetic Outsole: synthetic | Measurements for size EU 39: heel height 10 cm (4″) Extras: monk strap, velvety surface Outer material: textile Inner material: synthetic Outsole: synthetic | Measurements for size EU 39: heel height 10 cm (4″) Extras: monk strap, velvety surface Outer material: textile Inner material: synthetic Outsole: synthetic | Measurements for size EU 39: heel height 10 cm (4″) Extras: monk strap, velvety surface Outer material: textile Inner material: synthetic Outsole: synthetic | Measurements for size EU 39: heel height 10 cm (4″) Extras: monk strap, velvety surface Outer material: textile Inner material: synthetic Outsole: synthetic | Measurements for size EU 39: heel height 10 cm (4″) Extras: monk strap, velvety surface Outer material: textile Inner material: synthetic Outsole: synthetic | Measurements for size EU 39: heel height 10 cm (4″) Extras: monk strap, velvety surface Outer material: textile Inner material: synthetic Outsole: synthetic | Measurements for size EU 39: heel height 10 cm (4″) Extras: monk strap, velvety surface Outer material: textile Inner material: synthetic Outsole: synthetic | Measurements for size EU 39: heel height 10 cm (4″) Extras: monk strap, velvety surface Outer material: textile Inner material: synthetic Outsole: synthetic'),(2168,76,'Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening. | Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening. | Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening. | Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening. | Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening. | Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening. | Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening. | Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening. | Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening. | Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening. | Pink sandals. Velvet upper. Thin strap detail on the front. Squared toes. Lined block heels. Buckled ankle strap for fastening.'),(2168,93,'Brow Brow Brow Brow Brow Blue | Blue | Blue | Blue | Blue'),(2171,73,'Handbag |  Handbag-grey |  Handbag-red'),(2171,74,'n31327540'),(2171,75,'Reference number: E1 BD1 18 03 01 Measurements for one size: height 28 cm (11″), length 36 cm (14″), depth 13 cm (5″) Fastening: overlapping flap with clasp closure Lining material: lined Exterior pockets: slit pocket(s) Interior pockets: plug-in and zip pocket(s) Extras: logo appliqué(s), suede, adjustable and detachable shoulder strap Material: leather Lining: textile | Reference number: E1 BD1 18 03 01 Measurements for one size: height 28 cm (11″), length 36 cm (14″), depth 13 cm (5″) Fastening: overlapping flap with clasp closure Lining material: lined Exterior pockets: slit pocket(s) Interior pockets: plug-in and zip pocket(s) Extras: logo appliqué(s), suede, adjustable and detachable shoulder strap Material: leather Lining: textile | Reference number: E1 BD1 18 03 01 Measurements for one size: height 28 cm (11″), length 36 cm (14″), depth 13 cm (5″) Fastening: overlapping flap with clasp closure Lining material: lined Exterior pockets: slit pocket(s) Interior pockets: plug-in and zip pocket(s) Extras: logo appliqué(s), suede, adjustable and detachable shoulder strap Material: leather Lining: textile'),(2171,76,'The Fauve bag in mini version, enriched with metal details, combines practicality and elegance in its white leather design. | The Fauve bag in mini version, enriched with metal details, combines practicality and elegance in its white leather design. | The Fauve bag in mini version, enriched with metal details, combines practicality and elegance in its white leather design.'),(2171,93,'Grey | Red'),(2178,73,'Just me Casual Dress | n Just me Casual Dress-red-Extra small size | n Just me Casual Dress-red-Small size | n Just me Casual Dress-red-Medium size | n Just me Casual Dress-brown-Extra small size | n Just me Casual Dress-brown-Small size | n Just me Casual Dress-brown-Medium size'),(2178,74,'n310018035'),(2178,75,'Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 79 cm (31″) Pockets: slit pocket/s Neckline: lapel collar Fastening: rear zip Lining: sewn-in petticoat Extras: tweed look, knitted with glitter treads Pattern: patterned Material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.'),(2178,76,'Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back. | Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back. | Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back. | Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back. | Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back. | Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back. | Dress with sleeves falling below the elbow. Featuring false front pockets with pearl bead buttons, contrast trims and a buttoned opening in the back.'),(2178,93,'Red | Red | Red | Brow Brow Brown'),(2185,73,'Lace Dress | n Lace Dress-red-Extra small size | n Lace Dress-red-Small size | n Lace Dress-red-Medium size | n Lace Dress-grey-Extra small size | n Lace Dress-grey-Small size | n Lace Dress-grey-Medium size'),(2185,74,'n31292042'),(2185,75,'Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU S: garment length 106 cm (41.5″) Neckline: crew neck Fastening: rear zip Sleeve: shortsleeve Lining: lined Pattern: solid-coloured Outer material: 60% cotton, 40% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.  | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU S: garment length 106 cm (41.5″) Neckline: crew neck Fastening: rear zip Sleeve: shortsleeve Lining: lined Pattern: solid-coloured Outer material: 60% cotton, 40% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.  | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU S: garment length 106 cm (41.5″) Neckline: crew neck Fastening: rear zip Sleeve: shortsleeve Lining: lined Pattern: solid-coloured Outer material: 60% cotton, 40% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.  | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU S: garment length 106 cm (41.5″) Neckline: crew neck Fastening: rear zip Sleeve: shortsleeve Lining: lined Pattern: solid-coloured Outer material: 60% cotton, 40% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.  | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU S: garment length 106 cm (41.5″) Neckline: crew neck Fastening: rear zip Sleeve: shortsleeve Lining: lined Pattern: solid-coloured Outer material: 60% cotton, 40% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.  | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU S: garment length 106 cm (41.5″) Neckline: crew neck Fastening: rear zip Sleeve: shortsleeve Lining: lined Pattern: solid-coloured Outer material: 60% cotton, 40% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.  | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU S: garment length 106 cm (41.5″) Neckline: crew neck Fastening: rear zip Sleeve: shortsleeve Lining: lined Pattern: solid-coloured Outer material: 60% cotton, 40% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. '),(2185,76,'Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front. | Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front. | Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front. | Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front. | Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front. | Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front. | Short two-tone knit dress with short sleeves. Featuring an A-line silhouette and a button-up front.'),(2185,93,'Red | Red | Red | Grey | Grey | Grey'),(2190,73,'Green sunglasses |  Green sunglasses-black-Small size |  Green sunglasses-black-Medium size |  Green sunglasses-red-Small size |  Green sunglasses-red-Medium size'),(2190,74,'n31258335'),(2190,75,'Reference number: MB 657S Measurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″) UV filter: category 3 Extras: logo appliqué(s), case included Material: titanium Please note: May only be returned in original packaging. | Reference number: MB 657S Measurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″) UV filter: category 3 Extras: logo appliqué(s), case included Material: titanium Please note: May only be returned in original packaging. | Reference number: MB 657S Measurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″) UV filter: category 3 Extras: logo appliqué(s), case included Material: titanium Please note: May only be returned in original packaging. | Reference number: MB 657S Measurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″) UV filter: category 3 Extras: logo appliqué(s), case included Material: titanium Please note: May only be returned in original packaging. | Reference number: MB 657S Measurements for size EU 61: frame length approx. 145 mm (5.5″), lens width approx. 61 mm (2.5″), bridge width approx. 15 mm (0.5″) UV filter: category 3 Extras: logo appliqué(s), case included Material: titanium Please note: May only be returned in original packaging.'),(2190,76,'Sunglasses with a metal frame and transparent coloured lenses. Faux leather case. | Sunglasses with a metal frame and transparent coloured lenses. Faux leather case. | Sunglasses with a metal frame and transparent coloured lenses. Faux leather case. | Sunglasses with a metal frame and transparent coloured lenses. Faux leather case. | Sunglasses with a metal frame and transparent coloured lenses. Faux leather case.'),(2190,93,'Black | Black | Red | Red'),(2197,73,'Lawrence Grey Cashmere Pullover | n Lawrence Grey Cashmere Pullover-brown-Extra small size | n Lawrence Grey Cashmere Pullover-brown-Small size | n Lawrence Grey Cashmere Pullover-brown-Medium size | n Lawrence Grey Cashmere Pullover-grey-Extra small size | n Lawrence Grey Cashmere Pullover-grey-Small size | n Lawrence Grey Cashmere Pullover-grey-Medium size'),(2197,74,'n31145394'),(2197,75,'Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted, side slits Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 74 cm (29″) Neckline: crew neck Extras: soft quality Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.'),(2197,76,'Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims.'),(2197,93,'Brow Brow Brow Grey | Grey | Grey'),(2204,73,'Lawrence Grey Knit Dress | n Lawrence Grey Knit Dress-grey-Extra small size | n Lawrence Grey Knit Dress-grey-Small size | n Lawrence Grey Knit Dress-grey-Medium size | n Lawrence Grey Knit Dress-blue-Extra small size | n Lawrence Grey Knit Dress-blue-Small size | n Lawrence Grey Knit Dress-blue-Medium size'),(2204,74,'n310018033'),(2204,75,'Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: generous pleats, slightly flared skirt Measurements for size EU S: garment length 105 cm (41.5″) Neckline: short button placket at rear Collar: stand-up collar Extras: knitting patterns Pattern: solid-coloured Material: 100% merino Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.'),(2204,76,'Dress with generous pleats and slightly flared skirt. | Dress with generous pleats and slightly flared skirt. | Dress with generous pleats and slightly flared skirt. | Dress with generous pleats and slightly flared skirt. | Dress with generous pleats and slightly flared skirt. | Dress with generous pleats and slightly flared skirt. | Dress with generous pleats and slightly flared skirt.'),(2204,93,'Grey | Grey | Grey | Blue | Blue | Blue'),(2207,73,'Cognac Handbag |  Cognac Handbag-brow  Cognac Handbag-grey'),(2207,74,'n31175794'),(2207,75,'Measurements for one size: height 34 cm (13.5″), length 36 cm (14″), depth 8 cm (3″) Exterior pockets: zip pocket(s) Interior pockets: plug-in and zip pocket(s) Extras: suede, adjustable and detachable shoulder strap, logo appliqué(s) Lining: textile Material: leather Our model wears a EU OS and is 179cm/5′10″ tall. | Measurements for one size: height 34 cm (13.5″), length 36 cm (14″), depth 8 cm (3″) Exterior pockets: zip pocket(s) Interior pockets: plug-in and zip pocket(s) Extras: suede, adjustable and detachable shoulder strap, logo appliqué(s) Lining: textile Material: leather Our model wears a EU OS and is 179cm/5′10″ tall. | Measurements for one size: height 34 cm (13.5″), length 36 cm (14″), depth 8 cm (3″) Exterior pockets: zip pocket(s) Interior pockets: plug-in and zip pocket(s) Extras: suede, adjustable and detachable shoulder strap, logo appliqué(s) Lining: textile Material: leather Our model wears a EU OS and is 179cm/5′10″ tall.'),(2207,76,'Brown leather bowling bag. Outer zip closure. Its interior features two compartments and one zip pocket. Its exterior features two handles. | Brown leather bowling bag. Outer zip closure. Its interior features two compartments and one zip pocket. Its exterior features two handles. | Brown leather bowling bag. Outer zip closure. Its interior features two compartments and one zip pocket. Its exterior features two handles.'),(2207,93,'Brow Grey'),(2212,73,'Bottega Veneta |  Bottega Veneta-brown-Small size |  Bottega Veneta-brown-Medium size |  Bottega Veneta-black-Small size |  Bottega Veneta-black-Medium size'),(2212,74,'n31289374'),(2212,75,'Reference number: BV0111S Measurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″) UV filter: category 3 Extras: case included Material: titanium, plastic Please note: May only be returned in original packaging. | Reference number: BV0111S Measurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″) UV filter: category 3 Extras: case included Material: titanium, plastic Please note: May only be returned in original packaging. | Reference number: BV0111S Measurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″) UV filter: category 3 Extras: case included Material: titanium, plastic Please note: May only be returned in original packaging. | Reference number: BV0111S Measurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″) UV filter: category 3 Extras: case included Material: titanium, plastic Please note: May only be returned in original packaging. | Reference number: BV0111S Measurements for size EU 50: frame length approx. 145 mm (5.5″), lens width approx. 50 mm (2″), bridge width approx. 23 mm (1″) UV filter: category 3 Extras: case included Material: titanium, plastic Please note: May only be returned in original packaging.'),(2212,76,'Resin sunglasses with a double metal bridge. | Resin sunglasses with a double metal bridge. | Resin sunglasses with a double metal bridge. | Resin sunglasses with a double metal bridge. | Resin sunglasses with a double metal bridge.'),(2212,93,'Brow Brow Black | Black'),(2219,73,'Max & Co. Mini Dress | n Max & Co. Mini Dress-black-Extra small size | n Max & Co. Mini Dress-black-Large size | n Max & Co. Mini Dress-black-Small size | n Max & Co. Mini Dress-brown-Extra small size | n Max & Co. Mini Dress-brown-Large size | n Max & Co. Mini Dress-brown-Small size'),(2219,74,'n31001803'),(2219,75,'Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall. | Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall. | Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall. | Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall. | Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall. | Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall. | Cut: fitted with lightly flared skirt Measurements for size EU 38: garment length 93 cm (36.5″) Pockets: seam pocket / s Neckline: crew neck Fastening: rear zip Lining: lined Extras: woven shiny threads, stitched pleats Pattern: solid-coloured Outer material: 59% polyester, 33% cotton, 3% other fibres, 3% polyacrylic, 2% metallic fibre Lining material: 60% acetate, 40% viscose Manufacturer\'s care instructions: dry cleaning Our model wears a EU 38 and is 179cm/5′10″ tall.'),(2219,76,'Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow. | Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow. | Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow. | Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow. | Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow. | Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow. | Short dress with a round neck in the front and back. Features tied bow and inside button fastening in the front and sleeves falling just above the elbow.'),(2219,93,'Black | Black | Black | Brow Brow Brown'),(2222,73,'Blue handbag |  Blue handbag-blue |  Blue handbag-red'),(2222,74,'n31005341'),(2222,75,'Smart tote bag. It has two detachable shoulder straps so that it can be worn as a backpack or carried as a tote. There is an outside compartment for storing the shoulder straps. | Smart tote bag. It has two detachable shoulder straps so that it can be worn as a backpack or carried as a tote. There is an outside compartment for storing the shoulder straps. | Smart tote bag. It has two detachable shoulder straps so that it can be worn as a backpack or carried as a tote. There is an outside compartment for storing the shoulder straps.'),(2222,76,'Measurements for one size: height 28 cm (11″), length 31 cm (12″), depth 9 cm (3.5″) Fastening: zip Extras: grained leather, removable logo pendant, detachable shoulder strap Material: leather Lining: suede Our model wears a EU OS and is 179cm/5′10″ tall. | Measurements for one size: height 28 cm (11″), length 31 cm (12″), depth 9 cm (3.5″) Fastening: zip Extras: grained leather, removable logo pendant, detachable shoulder strap Material: leather Lining: suede Our model wears a EU OS and is 179cm/5′10″ tall. | Measurements for one size: height 28 cm (11″), length 31 cm (12″), depth 9 cm (3.5″) Fastening: zip Extras: grained leather, removable logo pendant, detachable shoulder strap Material: leather Lining: suede Our model wears a EU OS and is 179cm/5′10″ tall.'),(2222,93,'Blue | Red'),(2229,73,'Max Tonso Cashmere Pullover | n Max Tonso Cashmere Pullover-Extra small size-red | n Max Tonso Cashmere Pullover-Extra small size-brow n Max Tonso Cashmere Pullover-Small size-red | n Max Tonso Cashmere Pullover-Small size-brow n Max Tonso Cashmere Pullover-Medium size-red | n Max Tonso Cashmere Pullover-Medium size-brown'),(2229,74,'n31343872'),(2229,75,'Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: slightly tapered, ribbed trim waistband Measurements for size EU S: sleeve length 65 cm (25.5″), garment length 65 cm (25.5″) Collar: rollneck Sleeve: long sleeves Extras: soft quality, plait detailing Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.'),(2229,76,'Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims.'),(2229,93,'Red | Brow Red | Brow Red | Brown'),(2234,73,'Black sunglasses |  Black sunglasses-blue-Small size |  Black sunglasses-blue-Medium size |  Black sunglasses-black-Small size |  Black sunglasses-black-Medium size'),(2234,74,'n31045897'),(2234,75,'Reference number: 0927/S Measurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″) Extras: logo on both temples, logo engraved on right/left lens, case included Material: plastic Please note: May only be returned in original packaging. | Reference number: 0927/S Measurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″) Extras: logo on both temples, logo engraved on right/left lens, case included Material: plastic Please note: May only be returned in original packaging. | Reference number: 0927/S Measurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″) Extras: logo on both temples, logo engraved on right/left lens, case included Material: plastic Please note: May only be returned in original packaging. | Reference number: 0927/S Measurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″) Extras: logo on both temples, logo engraved on right/left lens, case included Material: plastic Please note: May only be returned in original packaging. | Reference number: 0927/S Measurements for size EU 53: frame length approx. 145 mm (5.5″), lens width approx. 53 mm (2″), bridge width approx. 19 mm (0.5″) Extras: logo on both temples, logo engraved on right/left lens, case included Material: plastic Please note: May only be returned in original packaging.'),(2234,76,'Rounded sunglasses with a black frame and transparent lenses. Faux leather case. | Rounded sunglasses with a black frame and transparent lenses. Faux leather case. | Rounded sunglasses with a black frame and transparent lenses. Faux leather case. | Rounded sunglasses with a black frame and transparent lenses. Faux leather case. | Rounded sunglasses with a black frame and transparent lenses. Faux leather case.'),(2234,93,'Blue | Blue | Black | Black'),(2245,73,'Over The Knee Boots | n Over The Knee Boots-brown-EU 36 | n Over The Knee Boots-brown-EU 39 | n Over The Knee Boots-brown-EU 40 | n Over The Knee Boots-brown-EU 41 | n Over The Knee Boots-brown-EU 38 | n Over The Knee Boots-blue-EU 36 | n Over The Knee Boots-blue-EU 39 | n Over The Knee Boots-blue-EU 40 | n Over The Knee Boots-blue-EU 41 | n Over The Knee Boots-blue-EU 38'),(2245,74,'n31196404'),(2245,75,'Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″) Extras: suede look Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″) Extras: suede look Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″) Extras: suede look Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″) Extras: suede look Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″) Extras: suede look Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″) Extras: suede look Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″) Extras: suede look Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″) Extras: suede look Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″) Extras: suede look Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″) Extras: suede look Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 40: heel height 5,5 cm (2″), bootleg height 52 cm (20.5″) Extras: suede look Outer material: textile Inner material: leather Outsole: synthetic'),(2245,76,'Silver leather hill boots. High soft slouchy leg. Lined chunky heel.  | Silver leather hill boots. High soft slouchy leg. Lined chunky heel.  | Silver leather hill boots. High soft slouchy leg. Lined chunky heel.  | Silver leather hill boots. High soft slouchy leg. Lined chunky heel.  | Silver leather hill boots. High soft slouchy leg. Lined chunky heel.  | Silver leather hill boots. High soft slouchy leg. Lined chunky heel.  | Silver leather hill boots. High soft slouchy leg. Lined chunky heel.  | Silver leather hill boots. High soft slouchy leg. Lined chunky heel.  | Silver leather hill boots. High soft slouchy leg. Lined chunky heel.  | Silver leather hill boots. High soft slouchy leg. Lined chunky heel.  | Silver leather hill boots. High soft slouchy leg. Lined chunky heel. '),(2245,93,'Brow Brow Brow Brow Brow Blue | Blue | Blue | Blue | Blue'),(2252,73,'Pale Belt Pants | n Pale Belt Pants -red-Small size | n Pale Belt Pants -red-Extra large size | n Pale Belt Pants -red-Medium size | n Pale Belt Pants -grey-Small size | n Pale Belt Pants -grey-Extra large size | n Pale Belt Pants -grey-Medium size'),(2252,74,'n31483900'),(2252,75,'The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.Regular fit Trendy colour and popular patternTied waist Business-Casual pants65% Polyester,32% Viscose,3% Elastane | The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.Regular fit Trendy colour and popular patternTied waist Business-Casual pants65% Polyester,32% Viscose,3% Elastane | The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.Regular fit Trendy colour and popular patternTied waist Business-Casual pants65% Polyester,32% Viscose,3% Elastane | The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.Regular fit Trendy colour and popular patternTied waist Business-Casual pants65% Polyester,32% Viscose,3% Elastane | The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.Regular fit Trendy colour and popular patternTied waist Business-Casual pants65% Polyester,32% Viscose,3% Elastane | The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.Regular fit Trendy colour and popular patternTied waist Business-Casual pants65% Polyester,32% Viscose,3% Elastane | The pants have this popular pinstriped pattern, it just creates an elegant and cool look – for both parties and everyday use. The chic pants have elastic waistband, belt loops, tie belt, side pockets and jetted pockets on the back. The pants can be stylish with a blazer for a more business-like look or style it with a white T-shirt for a more casual look.Regular fit Trendy colour and popular patternTied waist Business-Casual pants65% Polyester,32% Viscose,3% Elastane'),(2252,76,'Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front. | Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front. | Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front. | Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front. | Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front. | Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front. | Mid waist stretch trousers. Featuring front pockets, welt pockets in the back, turn-up hems and metal zip, inside button and hook fastening in the front.'),(2252,93,'Red | Red | Red | Grey | Grey | Grey'),(2255,73,'Beige Leather Belt |  Beige Leather Belt-brown-Medium size |  Beige Leather Belt-grey-Medium size'),(2255,74,'n31191497'),(2255,75,'Measurements for size EU 85: width approx. 3,4 cm (1.5″) Fastening: pin buckle Extras: embossed logo Material: leather | Measurements for size EU 85: width approx. 3,4 cm (1.5″) Fastening: pin buckle Extras: embossed logo Material: leather | Measurements for size EU 85: width approx. 3,4 cm (1.5″) Fastening: pin buckle Extras: embossed logo Material: leather'),(2255,76,'Contrast leather belt with a loop and a contrasting metal buckle. | Contrast leather belt with a loop and a contrasting metal buckle. | Contrast leather belt with a loop and a contrasting metal buckle.'),(2255,93,'Brow Grey'),(2268,73,'Pumps | n Pumps-black-EU 38 | n Pumps-black-EU 41 | n Pumps-black-EU 37 | n Pumps-black-EU 40 | n Pumps-black-EU 39 | n Pumps-black-EU 36 | n Pumps-red-EU 38 | n Pumps-red-EU 41 | n Pumps-red-EU 37 | n Pumps-red-EU 40 | n Pumps-red-EU 39 | n Pumps-red-EU 36'),(2268,74,'n31085354'),(2268,75,'Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.Lining:polyurethane 100%Outer:calf suede 100%Sole:rubber 100% | Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.Lining:polyurethane 100%Outer:calf suede 100%Sole:rubber 100% | Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.Lining:polyurethane 100%Outer:calf suede 100%Sole:rubber 100% | Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.Lining:polyurethane 100%Outer:calf suede 100%Sole:rubber 100% | Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.Lining:polyurethane 100%Outer:calf suede 100%Sole:rubber 100% | Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.Lining:polyurethane 100%Outer:calf suede 100%Sole:rubber 100% | Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.Lining:polyurethane 100%Outer:calf suede 100%Sole:rubber 100% | Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.Lining:polyurethane 100%Outer:calf suede 100%Sole:rubber 100% | Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.Lining:polyurethane 100%Outer:calf suede 100%Sole:rubber 100% | Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.Lining:polyurethane 100%Outer:calf suede 100%Sole:rubber 100% | Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.Lining:polyurethane 100%Outer:calf suede 100%Sole:rubber 100% | Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.Lining:polyurethane 100%Outer:calf suede 100%Sole:rubber 100% | Red leather ankle boots from DKNY. The \'Corrie\' heeled boots showcase a sleek silhouette with an almond toe and a side zip fastening for easy on-off access. A cushioned footbed enhances comfort. Set on a block heel with a silver metallic trim and embossed logo branding. DKNY\'s ankle boots are a versatile pair for any occasion. Crafted from red suede, this pair features a low block heel, a round toe and a side zip fastening. It\'s finished with a silver-tone plated placed along the heel.Lining:polyurethane 100%Outer:calf suede 100%Sole:rubber 100%'),(2268,76,'Red high-heel ankle boots. Platform soles. High block heels. | Red high-heel ankle boots. Platform soles. High block heels. | Red high-heel ankle boots. Platform soles. High block heels. | Red high-heel ankle boots. Platform soles. High block heels. | Red high-heel ankle boots. Platform soles. High block heels. | Red high-heel ankle boots. Platform soles. High block heels. | Red high-heel ankle boots. Platform soles. High block heels. | Red high-heel ankle boots. Platform soles. High block heels. | Red high-heel ankle boots. Platform soles. High block heels. | Red high-heel ankle boots. Platform soles. High block heels. | Red high-heel ankle boots. Platform soles. High block heels. | Red high-heel ankle boots. Platform soles. High block heels. | Red high-heel ankle boots. Platform soles. High block heels.'),(2268,93,'Black | Black | Black | Black | Black | Black | Red | Red | Red | Red | Red | Red'),(2284,73,'Rino & Pelle Quilted Jacket | n Rino & Pelle Quilted Jacket-brown-Extra small size | n Rino & Pelle Quilted Jacket-brown-Small size | n Rino & Pelle Quilted Jacket-brown-Medium size | n Rino & Pelle Quilted Jacket-blue-Extra small size | n Rino & Pelle Quilted Jacket-blue-Small size | n Rino & Pelle Quilted Jacket-blue-Medium size'),(2284,74,'n31220278'),(2284,75,'Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU 38: garment length 63 cm (25″) Fastening: full length zip fastener Exterior pockets: zip pocket(s) Lining: lined and padded Outer material: 100% polyamide Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 38 and is 179cm/5′10″ tall.'),(2284,76,'Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front. | Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front. | Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front. | Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front. | Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front. | Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front. | Polka-dot jacket with long sleeves with elastic cuffs, an adjustable interior waistband, front zip pockets, side vents at the hem and a zip-up front.'),(2284,93,'Brow Brow Brow Blue | Blue | Blue'),(2291,73,'Sequin Dress | n Sequin Dress-brown-Medium size | n Sequin Dress-brown-Small size | n Sequin Dress-brown-Extra small size | n Sequin Dress-black-Medium size | n Sequin Dress-black-Small size | n Sequin Dress-black-Extra small size'),(2291,74,'n31350778'),(2291,75,'Cut: fitted with a slightly tapered skirt Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″) Neckline: crew neck Fastening: rear zip Sleeve: 3/4-length sleeves Lining: partially lined Extras: light, translucent quality Pattern: patterned Outer material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″) Neckline: crew neck Fastening: rear zip Sleeve: 3/4-length sleeves Lining: partially lined Extras: light, translucent quality Pattern: patterned Outer material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″) Neckline: crew neck Fastening: rear zip Sleeve: 3/4-length sleeves Lining: partially lined Extras: light, translucent quality Pattern: patterned Outer material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″) Neckline: crew neck Fastening: rear zip Sleeve: 3/4-length sleeves Lining: partially lined Extras: light, translucent quality Pattern: patterned Outer material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″) Neckline: crew neck Fastening: rear zip Sleeve: 3/4-length sleeves Lining: partially lined Extras: light, translucent quality Pattern: patterned Outer material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″) Neckline: crew neck Fastening: rear zip Sleeve: 3/4-length sleeves Lining: partially lined Extras: light, translucent quality Pattern: patterned Outer material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt Measurements for size EU 36: sleeve length 28 cm (11″), garment length 95 cm (37.5″) Neckline: crew neck Fastening: rear zip Sleeve: 3/4-length sleeves Lining: partially lined Extras: light, translucent quality Pattern: patterned Outer material: 100% polyester Lining material: 100% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.'),(2291,76,'Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip. | Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip. | Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip. | Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip. | Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip. | Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip. | Featuring a high neck, a low-cut back and a back vent. Fastens in the back with buttons and an invisible zip.'),(2291,93,'Brow Brow Brow Black | Black | Black'),(2300,73,'Seventy Transitional Jacket | n Seventy Transitional Jacket-Extra small size-white | n Seventy Transitional Jacket-Extra small size-blue | n Seventy Transitional Jacket-Large size-white | n Seventy Transitional Jacket-Large size-blue | n Seventy Transitional Jacket-Small size-white | n Seventy Transitional Jacket-Small size-blue | n Seventy Transitional Jacket-Medium size-white | n Seventy Transitional Jacket-Medium size-blue'),(2300,74,'n31261586'),(2300,75,'Seventy Transitional Jacket with open neck on chest. With lightweight material, long sleeves and checkered pattern. The jacket has two buttons from the inside to close the shella. With 2 pockets, one on each side.'),(2300,76,'With lightweight material, long sleeves and checkered pattern. The jacket has two buttons from the inside to close the shella. With 2 pockets, one on each side.'),(2300,93,'White | Blue | White | Blue | White | Blue | White | Blue'),(2309,73,'Slim Fit Jeans | n Slim Fit Jeans-black-Extra small size | n Slim Fit Jeans-black-Large size | n Slim Fit Jeans-black-Small size | n Slim Fit Jeans-black-Extra large size | n Slim Fit Jeans-grey-Extra small size | n Slim Fit Jeans-grey-Large size | n Slim Fit Jeans-grey-Small size | n Slim Fit Jeans-grey-Extra large size'),(2309,74,'n31125033'),(2309,75,'Featuring side taping with beaded appliqués and zip fly and top button fastening.'),(2309,76,'Slim fit jeans by Bench'),(2309,93,'Black | Black | Black | Black | Grey | Grey | Grey | Grey'),(2320,73,'Slim Fit Jeans – Eline | n Slim Fit Jeans – Eline-grey-Extra small size | n Slim Fit Jeans – Eline-grey-Small size | n Slim Fit Jeans – Eline-grey-Medium size | n Slim Fit Jeans – Eline-grey-Large size | n Slim Fit Jeans – Eline-grey-Extra large size | n Slim Fit Jeans – Eline-blue-Extra small size | n Slim Fit Jeans – Eline-blue-Small size | n Slim Fit Jeans – Eline-blue-Medium size | n Slim Fit Jeans – Eline-blue-Large size | n Slim Fit Jeans – Eline-blue-Extra large size'),(2320,74,'n31125039'),(2320,75,'A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. Manufacturers product information: mid-rise, skinny legCut: slim, tapered legMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, faded colouring, roughened spots, lined where brokenMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine wash | A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. Manufacturers product information: mid-rise, skinny legCut: slim, tapered legMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, faded colouring, roughened spots, lined where brokenMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine wash | A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. Manufacturers product information: mid-rise, skinny legCut: slim, tapered legMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, faded colouring, roughened spots, lined where brokenMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine wash | A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. Manufacturers product information: mid-rise, skinny legCut: slim, tapered legMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, faded colouring, roughened spots, lined where brokenMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine wash | A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. Manufacturers product information: mid-rise, skinny legCut: slim, tapered legMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, faded colouring, roughened spots, lined where brokenMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine wash | A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. Manufacturers product information: mid-rise, skinny legCut: slim, tapered legMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, faded colouring, roughened spots, lined where brokenMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine wash | A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. Manufacturers product information: mid-rise, skinny legCut: slim, tapered legMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, faded colouring, roughened spots, lined where brokenMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine wash | A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. Manufacturers product information: mid-rise, skinny legCut: slim, tapered legMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, faded colouring, roughened spots, lined where brokenMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine wash | A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. Manufacturers product information: mid-rise, skinny legCut: slim, tapered legMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, faded colouring, roughened spots, lined where brokenMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine wash | A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. Manufacturers product information: mid-rise, skinny legCut: slim, tapered legMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, faded colouring, roughened spots, lined where brokenMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine wash | A stylish denim must not be missing in any wardrobe! The Eline Unpicked skinny jeans from Eksept is therefore a must-have item for every fashionista. The jeans has a skinny fit and is a mid waist model. Furthermore, the jeans have a bleached structure, a zip-button closure and a dark stripe on the sides. Manufacturers product information: mid-rise, skinny legCut: slim, tapered legMeasurements for size EU 27: waist 70 cm (27.5″), leg opening 22 cm (8.5″), inside leg 81 cm (32″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, faded colouring, roughened spots, lined where brokenMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine wash'),(2320,76,'High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening. | High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening. | High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening. | High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening. | High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening. | High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening. | High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening. | High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening. | High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening. | High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening. | High waist, five-pocket skinny jeans. Featuring faded-effect seams and metal zip fly and top button fastening.'),(2320,93,'Grey | Grey | Grey | Grey | Grey | Blue | Blue | Blue | Blue | Blue'),(2336,73,'Jack & Jones Transitional Jacket | n Jack & Jones Transitional Jacket-white-Small size | n Jack & Jones Transitional Jacket-white-Extra large size | n Jack & Jones Transitional Jacket-white-Large size | n Jack & Jones Transitional Jacket-blue-Small size | n Jack & Jones Transitional Jacket-blue-Extra large size | n Jack & Jones Transitional Jacket-blue-Large size'),(2336,74,'n31207365'),(2336,75,'JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets, and an inside pocket. Fastens in the front with snap buttons.The model is wearing size L and is 187 tall Cut: straight Measurements for size EU M: garment length 74 cm (29″) Collar: hood with drawstring Fastening: full length zip fastener Sleeve: single-button cuffs Exterior pockets: welt pocket(s) with button Lining: lined Outer material: 100% polyamide Manufacturer\'s care instructions: machine wash | JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets, and an inside pocket. Fastens in the front with snap buttons.The model is wearing size L and is 187 tall Cut: straight Measurements for size EU M: garment length 74 cm (29″) Collar: hood with drawstring Fastening: full length zip fastener Sleeve: single-button cuffs Exterior pockets: welt pocket(s) with button Lining: lined Outer material: 100% polyamide Manufacturer\'s care instructions: machine wash | JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets, and an inside pocket. Fastens in the front with snap buttons.The model is wearing size L and is 187 tall Cut: straight Measurements for size EU M: garment length 74 cm (29″) Collar: hood with drawstring Fastening: full length zip fastener Sleeve: single-button cuffs Exterior pockets: welt pocket(s) with button Lining: lined Outer material: 100% polyamide Manufacturer\'s care instructions: machine wash | JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets, and an inside pocket. Fastens in the front with snap buttons.The model is wearing size L and is 187 tall Cut: straight Measurements for size EU M: garment length 74 cm (29″) Collar: hood with drawstring Fastening: full length zip fastener Sleeve: single-button cuffs Exterior pockets: welt pocket(s) with button Lining: lined Outer material: 100% polyamide Manufacturer\'s care instructions: machine wash | JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets, and an inside pocket. Fastens in the front with snap buttons.The model is wearing size L and is 187 tall Cut: straight Measurements for size EU M: garment length 74 cm (29″) Collar: hood with drawstring Fastening: full length zip fastener Sleeve: single-button cuffs Exterior pockets: welt pocket(s) with button Lining: lined Outer material: 100% polyamide Manufacturer\'s care instructions: machine wash | JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets, and an inside pocket. Fastens in the front with snap buttons.The model is wearing size L and is 187 tall Cut: straight Measurements for size EU M: garment length 74 cm (29″) Collar: hood with drawstring Fastening: full length zip fastener Sleeve: single-button cuffs Exterior pockets: welt pocket(s) with button Lining: lined Outer material: 100% polyamide Manufacturer\'s care instructions: machine wash | JACK &amp; JONES ORIGINALS is a men\'s jacket. It\'s super lightweight on-trend design and you can use both sides. Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets, and an inside pocket. Fastens in the front with snap buttons.The model is wearing size L and is 187 tall Cut: straight Measurements for size EU M: garment length 74 cm (29″) Collar: hood with drawstring Fastening: full length zip fastener Sleeve: single-button cuffs Exterior pockets: welt pocket(s) with button Lining: lined Outer material: 100% polyamide Manufacturer\'s care instructions: machine wash'),(2336,76,'Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket. | Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket. | Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket. | Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket. | Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket. | Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket. | Short jacket in technical fabric with a padded interior. Featuring long cuffed sleeves, front welt pockets and an inside pocket.'),(2336,93,'White | White | White | Blue | Blue | Blue'),(2343,73,'Hilfiger Denim Transitional Jacket | n Hilfiger Denim Transitional Jacket-red-Small size | n Hilfiger Denim Transitional Jacket-red-Medium size | n Hilfiger Denim Transitional Jacket-red-Large size | n Hilfiger Denim Transitional Jacket-white-Small size | n Hilfiger Denim Transitional Jacket-white-Medium size | n Hilfiger Denim Transitional Jacket-white-Large size'),(2343,74,'n31166144'),(2343,75,'Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s bomber jacket has rubberized Tommy Hilfiger logo flag patch on chest. This Tommy Hilfiger jacket is a sporty take on the classic bomber. By Tommy jeans men. Cut: lightly fitted Measurements for size EU L: garment length 75 cm (29.5″) Collar: stand-up collar, hood with drawstring Fastening: short zip Sleeve: raglan sleeves Exterior pockets: flap pocket(s) with press stud closure Extras: logo patch, embroidered logo(s), internal soft fleece cover Material: 100% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU L and is 185cm/6′0″ tall. | Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s bomber jacket has rubberized Tommy Hilfiger logo flag patch on chest. This Tommy Hilfiger jacket is a sporty take on the classic bomber. By Tommy jeans men. Cut: lightly fitted Measurements for size EU L: garment length 75 cm (29.5″) Collar: stand-up collar, hood with drawstring Fastening: short zip Sleeve: raglan sleeves Exterior pockets: flap pocket(s) with press stud closure Extras: logo patch, embroidered logo(s), internal soft fleece cover Material: 100% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU L and is 185cm/6′0″ tall. | Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s bomber jacket has rubberized Tommy Hilfiger logo flag patch on chest. This Tommy Hilfiger jacket is a sporty take on the classic bomber. By Tommy jeans men. Cut: lightly fitted Measurements for size EU L: garment length 75 cm (29.5″) Collar: stand-up collar, hood with drawstring Fastening: short zip Sleeve: raglan sleeves Exterior pockets: flap pocket(s) with press stud closure Extras: logo patch, embroidered logo(s), internal soft fleece cover Material: 100% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU L and is 185cm/6′0″ tall. | Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s bomber jacket has rubberized Tommy Hilfiger logo flag patch on chest. This Tommy Hilfiger jacket is a sporty take on the classic bomber. By Tommy jeans men. Cut: lightly fitted Measurements for size EU L: garment length 75 cm (29.5″) Collar: stand-up collar, hood with drawstring Fastening: short zip Sleeve: raglan sleeves Exterior pockets: flap pocket(s) with press stud closure Extras: logo patch, embroidered logo(s), internal soft fleece cover Material: 100% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU L and is 185cm/6′0″ tall. | Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s bomber jacket has rubberized Tommy Hilfiger logo flag patch on chest. This Tommy Hilfiger jacket is a sporty take on the classic bomber. By Tommy jeans men. Cut: lightly fitted Measurements for size EU L: garment length 75 cm (29.5″) Collar: stand-up collar, hood with drawstring Fastening: short zip Sleeve: raglan sleeves Exterior pockets: flap pocket(s) with press stud closure Extras: logo patch, embroidered logo(s), internal soft fleece cover Material: 100% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU L and is 185cm/6′0″ tall. | Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s bomber jacket has rubberized Tommy Hilfiger logo flag patch on chest. This Tommy Hilfiger jacket is a sporty take on the classic bomber. By Tommy jeans men. Cut: lightly fitted Measurements for size EU L: garment length 75 cm (29.5″) Collar: stand-up collar, hood with drawstring Fastening: short zip Sleeve: raglan sleeves Exterior pockets: flap pocket(s) with press stud closure Extras: logo patch, embroidered logo(s), internal soft fleece cover Material: 100% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU L and is 185cm/6′0″ tall. | Tommy Hilfiger bomber jacket for men featuring stripe details at the zipper and interior collar. Full zip closure. Side slip pockets. Interior padding. Security pocket at interior. Locker loop at interior neck. Men\'s bomber jacket has rubberized Tommy Hilfiger logo flag patch on chest. This Tommy Hilfiger jacket is a sporty take on the classic bomber. By Tommy jeans men. Cut: lightly fitted Measurements for size EU L: garment length 75 cm (29.5″) Collar: stand-up collar, hood with drawstring Fastening: short zip Sleeve: raglan sleeves Exterior pockets: flap pocket(s) with press stud closure Extras: logo patch, embroidered logo(s), internal soft fleece cover Material: 100% polyamide Manufacturer\'s care instructions: machine wash Our model wears an EU L and is 185cm/6′0″ tall.'),(2343,76,'Tommy Hilfiger bomber jacket for men featuring stripe details at zipper and interior collar. Puffer jacket with down filling. Fastening with front zip and snap buttons. | Tommy Hilfiger bomber jacket for men featuring stripe details at zipper and interior collar. Puffer jacket with down filling. Fastening with front zip and snap buttons. | Tommy Hilfiger bomber jacket for men featuring stripe details at zipper and interior collar. Puffer jacket with down filling. Fastening with front zip and snap buttons. | Tommy Hilfiger bomber jacket for men featuring stripe details at zipper and interior collar. Puffer jacket with down filling. Fastening with front zip and snap buttons. | Tommy Hilfiger bomber jacket for men featuring stripe details at zipper and interior collar. Puffer jacket with down filling. Fastening with front zip and snap buttons. | Tommy Hilfiger bomber jacket for men featuring stripe details at zipper and interior collar. Puffer jacket with down filling. Fastening with front zip and snap buttons. | Tommy Hilfiger bomber jacket for men featuring stripe details at zipper and interior collar. Puffer jacket with down filling. Fastening with front zip and snap buttons.'),(2343,93,'Red | Red | Red | White | White | White'),(2350,73,'Wool jersey trousers |  Wool jersey trousers-black-Extra small size |  Wool jersey trousers-black-Small size |  Wool jersey trousers-black-Extra large size |  Wool jersey trousers-red-Extra small size |  Wool jersey trousers-red-Small size |  Wool jersey trousers-red-Extra large size'),(2350,74,'n310046545'),(2350,75,'Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle. | Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle. | Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle. | Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle. | Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle. | Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle. | Concealed front hook, button and zip closureDetachable leather strapTwo side pocketsUnlinedSample size: 42Jersey fabric: 100% virgin wool; With details in cattle.'),(2350,76,'Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. | Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. | Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. | Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. | Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. | Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings. | Straight-leg trousers made of heavyweight wool jersey with slant pockets and long leather strap that can be hooked at the side with small metal clips and rings.'),(2350,93,'Black | Black | Black | Red | Red | Red'),(2357,73,'Weise Midi Dress |  Weise Midi Dress-blue-Extra small size |  Weise Midi Dress-blue-Small size |  Weise Midi Dress-blue-Medium size |  Weise Midi Dress-red-Extra small size |  Weise Midi Dress-red-Small size |  Weise Midi Dress-red-Medium size'),(2357,74,'n31268637'),(2357,75,'Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt, back slit Measurements for size EU 36: garment length 98 cm (38.5″) Neckline: crew neck, rear v-neckline Fastening: rear zip Lining: lined Extras: weaving pattern, woven shiny threads Pattern: solid-coloured Outer material: 37% polyacrylic, 28% viscose, 19% polyester, 16% wool Lining material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU 36 and is 179cm/5′10″ tall.'),(2357,76,'Short flowing round-neck dress with short sleeves. | Short flowing round-neck dress with short sleeves. | Short flowing round-neck dress with short sleeves. | Short flowing round-neck dress with short sleeves. | Short flowing round-neck dress with short sleeves. | Short flowing round-neck dress with short sleeves. | Short flowing round-neck dress with short sleeves.'),(2357,93,'Blue | Blue | Blue | Red | Red | Red'),(2366,73,'Calvin Klein Jeans Down Jacket | n Calvin Klein Jeans Down Jacket-Medium size-white | n Calvin Klein Jeans Down Jacket-Medium size-black | n Calvin Klein Jeans Down Jacket-Small size-white | n Calvin Klein Jeans Down Jacket-Small size-black | n Calvin Klein Jeans Down Jacket-Extra small size-white | n Calvin Klein Jeans Down Jacket-Extra small size-black | n Calvin Klein Jeans Down Jacket-Large size-white | n Calvin Klein Jeans Down Jacket-Large size-black'),(2366,74,'n31291013'),(2366,75,'Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall. | Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall. | Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall. | Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall. | Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall. | Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall. | Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall. | Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall. | Cut: tapered, elasticated waistband Measurements for size EU M: sleeve length 51 cm (20″), garment length 69 cm (27″) Collar: stand-up collar with integrated, removable hood, detachable fake fur trim Fastening: full-length zip with overlapping press-button closure Sleeve: inner ribbed cuffs, tabs with snap fastener Exterior pockets: slit pocket/s Lining: lined and padded Extras: quilted, smooth surface, logo appliqué(s) Outer material: 100% polyester Lining material: 100% polyester Trim: 92% polyacrylic, 8% polyester Padding: 70% down, 30% feathers Manufacturer\'s care instructions: machine wash Our model wears a EU M and is 179cm/5′10″ tall.'),(2366,76,'Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front. | Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front. | Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front. | Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front. | Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front. | Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front. | Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front. | Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front. | Jacket with a shirt collar. Featuring front pockets with snap-button flaps and a zip-up front.'),(2366,93,'White | Black | White | Black | White | Black | White | Black'),(2373,73,'UNQ Linen Dress |  UNQ Linen Dress-brown-Extra small size |  UNQ Linen Dress-brown-Small size |  UNQ Linen Dress-brown-Medium size |  UNQ Linen Dress-grey-Extra small size |  UNQ Linen Dress-grey-Small size |  UNQ Linen Dress-grey-Medium size'),(2373,74,'n31262293'),(2373,75,'Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall. | Cut: fitted with a slightly tapered skirt, front slit, belt Measurements for size EU 36: garment length 126 cm (49.5″) Pockets: mock flap pockets, seam pocket / s Neckline: V-neck Sleeve: drop shoulder, 3/4-length sleeves, turn-ups Extras: light quality, flecked, cloth belt Pattern: solid-coloured Material: 54% linen, 29% polyester, 15% viscose, 2% elastane Manufacturer\'s care instructions: machine wash Our model wears a EU 36 and is 179cm/5′10″ tall.'),(2373,76,'Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail. | Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail. | Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail. | Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail. | Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail. | Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail. | Collared dress with short gathered sleeves and elastic cuffs. Featuring button fastening going down the front and a gathered waist detail.'),(2373,93,'Brow Brow Brow Grey | Grey | Grey'),(2389,73,'Dark Grey Chino | n Dark Grey Chino-black-Large size | n Dark Grey Chino-black-Small size | n Dark Grey Chino-black-Medium size | n Dark Grey Chino-red-Large size | n Dark Grey Chino-red-Small size | n Dark Grey Chino-red-Medium size | n Dark Grey Chino-white-Large size | n Dark Grey Chino-white-Small size | n Dark Grey Chino-white-Medium size | n Dark Grey Chino-blue-Large size | n Dark Grey Chino-blue-Small size | n Dark Grey Chino-blue-Medium size | n Dark Grey Chino-brown-Large size | n Dark Grey Chino-brown-Small size | n Dark Grey Chino-brown-Medium size'),(2389,74,'n31189077'),(2389,75,'From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall. | From our men\'s range by Lawrence Grey , these smart regular fit chinos are a staple pair for a smart-casual wardrobe. Designed in brushed twill, they feature three pockets and have a flexible waistband for added comfort. Also available in big and tall sizes. Made with stretch for comfort, in a soft-to-the-touch fabric. With a zip-fly fastening. Cut: slightly tapered legMeasurements for size EU 50: waist 88 cm (34.5″), leg opening 34 cm (13.5″), inside leg 81,5 cm (32″), rise 24,5 cm (9.5″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, rear buttoned piped pocket(s)Extras: creasesPattern: solid-colouredMaterial: 98% cotton, 2% elastaneManufacturer\'s care instructions: machine washOur model wears an EU 50 and is 185cm/6′0″ tall.'),(2389,76,'Dark Grey Chino by Lawrence Grey | Dark Grey Chino by Lawrence Grey | Dark Grey Chino by Lawrence Grey | Dark Grey Chino by Lawrence Grey | Dark Grey Chino by Lawrence Grey | Dark Grey Chino by Lawrence Grey | Dark Grey Chino by Lawrence Grey | Dark Grey Chino by Lawrence Grey | Dark Grey Chino by Lawrence Grey | Dark Grey Chino by Lawrence Grey | Dark Grey Chino by Lawrence Grey | Dark Grey Chino by Lawrence Grey | Dark Grey Chino by Lawrence Grey | Dark Grey Chino by Lawrence Grey | Dark Grey Chino by Lawrence Grey | Dark Grey Chino by Lawrence Grey'),(2389,93,'Black | Black | Black | Red | Red | Red | White | White | White | Blue | Blue | Blue | Brow Brow Brown'),(2396,73,'United Colors of Benetton Knit Dress |  United Colors of Benetton Knit Dress-brown-Extra small size |  United Colors of Benetton Knit Dress-brown-Small size |  United Colors of Benetton Knit Dress-brown-Medium size |  United Colors of Benetton Knit Dress-grey-Extra small size |  United Colors of Benetton Knit Dress-grey-Small size |  United Colors of Benetton Knit Dress-grey-Medium size'),(2396,74,'n31262295'),(2396,75,'Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall. | Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall. | Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall. | Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall. | Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall. | Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall. | Cut: slightly flared skirt Measurements for size EU M: garment length 98 cm (38.5″) Neckline: V-neck front and back Sleeve: cut-out armholes, shortsleeve Extras: knitting patterns, coated surface, metallic look Pattern: patterned Material: 50% cotton, 50% polyacrylic Manufacturer\'s care instructions: hand-wash Our model wears a EU M and is 179cm/5′10″ tall.'),(2396,76,'Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt. | Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt. | Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt. | Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt. | Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt. | Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt. | Dress with rolled-up sleeves falling below the elbow. Featuring jetted front pockets, snap-button wrap-style fastening and a matching buckled belt.'),(2396,93,'Brow Brow Brow Grey | Grey | Grey'),(2403,73,'The Skinny Crop |  The Skinny Crop-blue-Extra small size |  The Skinny Crop-blue-Small size |  The Skinny Crop-blue-Medium size |  The Skinny Crop-red-Extra small size |  The Skinny Crop-red-Small size |  The Skinny Crop-red-Medium size'),(2403,74,'n31125036'),(2403,75,'Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manufacturers product information: medium body heightCut: slim, tapered legMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)Waistband: belt loop and zip with snaps on the collarPockets: front mock pocket(s), back patch pocket(s)Extras: stretch quality, open/frayed hemMaterial: 85% cotton, 11% polyester, 4% elastaneManufacturer\'s care instructions: machine washPlease note: Här handlar det om en 2. val artikel. | Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manufacturers product information: medium body heightCut: slim, tapered legMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)Waistband: belt loop and zip with snaps on the collarPockets: front mock pocket(s), back patch pocket(s)Extras: stretch quality, open/frayed hemMaterial: 85% cotton, 11% polyester, 4% elastaneManufacturer\'s care instructions: machine washPlease note: Här handlar det om en 2. val artikel. | Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manufacturers product information: medium body heightCut: slim, tapered legMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)Waistband: belt loop and zip with snaps on the collarPockets: front mock pocket(s), back patch pocket(s)Extras: stretch quality, open/frayed hemMaterial: 85% cotton, 11% polyester, 4% elastaneManufacturer\'s care instructions: machine washPlease note: Här handlar det om en 2. val artikel. | Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manufacturers product information: medium body heightCut: slim, tapered legMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)Waistband: belt loop and zip with snaps on the collarPockets: front mock pocket(s), back patch pocket(s)Extras: stretch quality, open/frayed hemMaterial: 85% cotton, 11% polyester, 4% elastaneManufacturer\'s care instructions: machine washPlease note: Här handlar det om en 2. val artikel. | Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manufacturers product information: medium body heightCut: slim, tapered legMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)Waistband: belt loop and zip with snaps on the collarPockets: front mock pocket(s), back patch pocket(s)Extras: stretch quality, open/frayed hemMaterial: 85% cotton, 11% polyester, 4% elastaneManufacturer\'s care instructions: machine washPlease note: Här handlar det om en 2. val artikel. | Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manufacturers product information: medium body heightCut: slim, tapered legMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)Waistband: belt loop and zip with snaps on the collarPockets: front mock pocket(s), back patch pocket(s)Extras: stretch quality, open/frayed hemMaterial: 85% cotton, 11% polyester, 4% elastaneManufacturer\'s care instructions: machine washPlease note: Här handlar det om en 2. val artikel. | Enliven your off-duty look with the Skinny Crop jeans from 7 For All Mankind. The mid-rise pair is designed in a delicate pink hue in a cropped length that allows to show the ankle. Team yours with a pair of white leather sneakers.Manufacturers product information: medium body heightCut: slim, tapered legMeasurements for size EU 27: waist 66 cm (26″), leg opening 22 cm (8.5″), inside leg 70,5 cm (28″), rise 20,5 cm (8″)Waistband: belt loop and zip with snaps on the collarPockets: front mock pocket(s), back patch pocket(s)Extras: stretch quality, open/frayed hemMaterial: 85% cotton, 11% polyester, 4% elastaneManufacturer\'s care instructions: machine washPlease note: Här handlar det om en 2. val artikel.'),(2403,76,'Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening. | Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening. | Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening. | Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening. | Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening. | Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening. | Faded mid waist skinny jeans with five pockets and ripped details. Featuring a contrast snakeskin print belt with belt bag and metal zip fly and top button fastening.'),(2403,93,'Blue | Blue | Blue | Red | Red | Red'),(2410,73,'Sweat Pants |  Sweat Pants-grey-Extra small size |  Sweat Pants-grey-Large size |  Sweat Pants-grey-Small size |  Sweat Pants-red-Extra small size |  Sweat Pants-red-Large size |  Sweat Pants-red-Small size'),(2410,74,'n31241601'),(2410,75,'This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton finish gives the trousers a cool summer feel. | This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton finish gives the trousers a cool summer feel. | This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton finish gives the trousers a cool summer feel. | This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton finish gives the trousers a cool summer feel. | This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton finish gives the trousers a cool summer feel. | This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton finish gives the trousers a cool summer feel. | This 5 Pocket \'Ice Cotton\' Chuck cotton blend trousers (Slim fit) from Brax is made from 4% Elastane and 96% Cotton to give increased feel and durability. These perfectly fitting trousers are ideal to wear all day, every day.Thanks to sophisticated colour and washing technology, the trousers colours retain their iced look and the desired washed-out effect. The innovative ice cotton finish gives the trousers a cool summer feel.'),(2410,76,'High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front. | High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front. | High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front. | High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front. | High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front. | High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front. | High-waist, wide-leg trousers with front pockets, welt pockets in the back and metal zip, inside button and hook fastening in the front.'),(2410,93,'Grey | Grey | Grey | Red | Red | Red'),(2417,73,'81 Hours Cashmere Pullover | n 81 Hours Cashmere Pullover-brown-Medium size | n 81 Hours Cashmere Pullover-brown-Extra small size | n 81 Hours Cashmere Pullover-brown-Small size | n 81 Hours Cashmere Pullover-black-Medium size | n 81 Hours Cashmere Pullover-black-Extra small size | n 81 Hours Cashmere Pullover-black-Small size'),(2417,74,'n31043406'),(2417,75,'Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: fitted Measurements for size EU S: sleeve length 63 cm (25″), garment length 63 cm (25″) Collar: rollneck Extras: soft quality, ribbed insert on side, decorative tab Pattern: solid-coloured Material: 100% cashmere Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.'),(2417,76,'Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims. | Long sleeve knit sweater with a round neckline and ribbed trims.'),(2417,93,'Brow Brow Brow Black | Black | Black'),(2424,73,'Swan Transitional Jacket |  Swan Transitional Jacket-brown-Extra small size |  Swan Transitional Jacket-brown-Small size |  Swan Transitional Jacket-brown-Medium size |  Swan Transitional Jacket-grey-Extra small size |  Swan Transitional Jacket-grey-Small size |  Swan Transitional Jacket-grey-Medium size'),(2424,74,'n31292416'),(2424,75,'Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 59 cm (23″), sleeve length 64 cm (25″) Collar: asymmetric Fastening: open Exterior pockets: slit pocket/s Lining: lined Extras: soft quality Material: 100% polyester Manufacturer\'s care instructions: hand-wash Our model wears a EU S and is 179cm/5′10″ tall.'),(2424,76,'Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front. | Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front. | Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front. | Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front. | Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front. | Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front. | Coat with lapel collar and long sleeves. Featuring in-seam side pockets and a buttoned front.'),(2424,93,'Brow Brow Brow Grey | Grey | Grey'),(2431,73,'Strenesse Elegant Jacket |  Strenesse Elegant Jacket-white-Extra small size |  Strenesse Elegant Jacket-white-Small size |  Strenesse Elegant Jacket-white-Medium size |  Strenesse Elegant Jacket-blue-Extra small size |  Strenesse Elegant Jacket-blue-Small size |  Strenesse Elegant Jacket-blue-Medium size'),(2431,74,'n30811612'),(2431,75,'Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall. | Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall. | Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall. | Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall. | Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall. | Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall. | Measurements for size EU 36: sleeve length 49 cm (19.5″), garment length 61 cm (24″) Fastening: hidden, full length button placket Exterior pockets: slit pocket/s Lining: lined Outer material: 77% viscose, 19% polyamide Lining material: 65% acetate, 35% polyester Manufacturer\'s care instructions: dry cleaning Our model wears a EU 36 and is 179cm/5′10″ tall.'),(2431,76,'Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem. | Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem. | Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem. | Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem. | Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem. | Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem. | Long sleeve tweed jacket with a round neckline. Features button fastening and buttoned flap pockets in the front and an unsewn hem.'),(2431,93,'White | White | White | Blue | Blue | Blue'),(2440,73,'Straight Leg Jeans |  Straight Leg Jeans-grey-Extra large size |  Straight Leg Jeans-grey-Small size |  Straight Leg Jeans-grey-Extra small size |  Straight Leg Jeans-grey-Large size |  Straight Leg Jeans-blue-Extra large size |  Straight Leg Jeans-blue-Small size |  Straight Leg Jeans-blue-Extra small size |  Straight Leg Jeans-blue-Large size'),(2440,74,'n31125034'),(2440,75,'Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, back patch pocket(s)Extras: elastic, faded colouringMaterial: 92% cotton, 6% polyester, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU D36L32 and is 179cm/5′10″ tall. | Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, back patch pocket(s)Extras: elastic, faded colouringMaterial: 92% cotton, 6% polyester, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU D36L32 and is 179cm/5′10″ tall. | Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, back patch pocket(s)Extras: elastic, faded colouringMaterial: 92% cotton, 6% polyester, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU D36L32 and is 179cm/5′10″ tall. | Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, back patch pocket(s)Extras: elastic, faded colouringMaterial: 92% cotton, 6% polyester, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU D36L32 and is 179cm/5′10″ tall. | Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, back patch pocket(s)Extras: elastic, faded colouringMaterial: 92% cotton, 6% polyester, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU D36L32 and is 179cm/5′10″ tall. | Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, back patch pocket(s)Extras: elastic, faded colouringMaterial: 92% cotton, 6% polyester, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU D36L32 and is 179cm/5′10″ tall. | Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, back patch pocket(s)Extras: elastic, faded colouringMaterial: 92% cotton, 6% polyester, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU D36L32 and is 179cm/5′10″ tall. | Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, back patch pocket(s)Extras: elastic, faded colouringMaterial: 92% cotton, 6% polyester, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU D36L32 and is 179cm/5′10″ tall. | Manufacturers product information: Casual, Bow LegCut: slightly tapered legMeasurements for size EU D36L32: waist 78 cm (30.5″), leg opening 30 cm (12″), inside leg 74 cm (29″), rise 26 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: slit pocket/s, back patch pocket(s)Extras: elastic, faded colouringMaterial: 92% cotton, 6% polyester, 2% elastaneManufacturer\'s care instructions: machine washOur model wears a EU D36L32 and is 179cm/5′10″ tall.'),(2440,76,'Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening. | Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening. | Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening. | Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening. | Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening. | Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening. | Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening. | Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening. | Skinny jeans with five pockets. Featuring frayed hems and front zip and metal top button fastening.'),(2440,93,'Grey | Grey | Grey | Grey | Blue | Blue | Blue | Blue'),(2456,73,'Sneakers |  Sneakers-grey-EU 39 |  Sneakers-grey-EU 40 |  Sneakers-grey-EU 37 |  Sneakers-grey-EU 38 |  Sneakers-grey-EU 41 |  Sneakers-white-EU 39 |  Sneakers-white-EU 40 |  Sneakers-white-EU 37 |  Sneakers-white-EU 38 |  Sneakers-white-EU 41 |  Sneakers-blue-EU 39 |  Sneakers-blue-EU 40 |  Sneakers-blue-EU 37 |  Sneakers-blue-EU 38 |  Sneakers-blue-EU 41'),(2456,74,'n31093629'),(2456,75,'Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Model: EQT Support ADV PK Measurements for size EU 42: heel approx. X high 3 cm (1″) Extras: lacing, elasticated entry, logo appliqué(s), Ortholite inner soles Outer material: textile, synthetic Inner material: textile Outsole: synthetic'),(2456,76,'White sneakers. Thick flatform soles. Topstitching on the upper in matching thread.  | White sneakers. Thick flatform soles. Topstitching on the upper in matching thread.  | White sneakers. Thick flatform soles. Topstitching on the upper in matching thread.  | White sneakers. Thick flatform soles. Topstitching on the upper in matching thread.  | White sneakers. Thick flatform soles. Topstitching on the upper in matching thread.  | White sneakers. Thick flatform soles. Topstitching on the upper in matching thread.  | White sneakers. Thick flatform soles. Topstitching on the upper in matching thread.  | White sneakers. Thick flatform soles. Topstitching on the upper in matching thread.  | White sneakers. Thick flatform soles. Topstitching on the upper in matching thread.  | White sneakers. Thick flatform soles. Topstitching on the upper in matching thread.  | White sneakers. Thick flatform soles. Topstitching on the upper in matching thread.  | White sneakers. Thick flatform soles. Topstitching on the upper in matching thread.  | White sneakers. Thick flatform soles. Topstitching on the upper in matching thread.  | White sneakers. Thick flatform soles. Topstitching on the upper in matching thread.  | White sneakers. Thick flatform soles. Topstitching on the upper in matching thread.  | White sneakers. Thick flatform soles. Topstitching on the upper in matching thread. '),(2456,93,'Grey | Grey | Grey | Grey | Grey | White | White | White | White | White | Blue | Blue | Blue | Blue | Blue'),(2465,73,'Sneakers |  Sneakers-blue-EU 36 |  Sneakers-blue-EU 37 |  Sneakers-blue-EU 40 |  Sneakers-blue-EU 38 |  Sneakers-red-EU 36 |  Sneakers-red-EU 37 |  Sneakers-red-EU 40 |  Sneakers-red-EU 38'),(2465,74,'n31333018'),(2465,75,'Model: Forest Grove Measurements for size EU 38: sole height 2,5 cm (1″) Extras: suede, lacing, logo embroidery Outer material: leather, textile Inner material: textile Outsole: synthetic | Model: Forest Grove Measurements for size EU 38: sole height 2,5 cm (1″) Extras: suede, lacing, logo embroidery Outer material: leather, textile Inner material: textile Outsole: synthetic | Model: Forest Grove Measurements for size EU 38: sole height 2,5 cm (1″) Extras: suede, lacing, logo embroidery Outer material: leather, textile Inner material: textile Outsole: synthetic | Model: Forest Grove Measurements for size EU 38: sole height 2,5 cm (1″) Extras: suede, lacing, logo embroidery Outer material: leather, textile Inner material: textile Outsole: synthetic | Model: Forest Grove Measurements for size EU 38: sole height 2,5 cm (1″) Extras: suede, lacing, logo embroidery Outer material: leather, textile Inner material: textile Outsole: synthetic | Model: Forest Grove Measurements for size EU 38: sole height 2,5 cm (1″) Extras: suede, lacing, logo embroidery Outer material: leather, textile Inner material: textile Outsole: synthetic | Model: Forest Grove Measurements for size EU 38: sole height 2,5 cm (1″) Extras: suede, lacing, logo embroidery Outer material: leather, textile Inner material: textile Outsole: synthetic | Model: Forest Grove Measurements for size EU 38: sole height 2,5 cm (1″) Extras: suede, lacing, logo embroidery Outer material: leather, textile Inner material: textile Outsole: synthetic | Model: Forest Grove Measurements for size EU 38: sole height 2,5 cm (1″) Extras: suede, lacing, logo embroidery Outer material: leather, textile Inner material: textile Outsole: synthetic'),(2465,76,'Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole. | Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole. | Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole. | Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole. | Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole. | Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole. | Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole. | Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole. | Pink sneakers. Die-cut stretch fabric upper. Contrasting-coloured sole.'),(2465,93,'Blue | Blue | Blue | Blue | Red | Red | Red | Red'),(2478,73,'Sneakers |  Sneakers-grey-EU 36 |  Sneakers-grey-EU 39 |  Sneakers-grey-EU 40 |  Sneakers-grey-EU 43 |  Sneakers-grey-EU 38 |  Sneakers-grey-EU 41 |  Sneakers-black-EU 36 |  Sneakers-black-EU 39 |  Sneakers-black-EU 40 |  Sneakers-black-EU 43 |  Sneakers-black-EU 38 |  Sneakers-black-EU 41'),(2478,74,'n30945868'),(2478,75,'Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″) Extras: lacing, elasticated entry, structured surface Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″) Extras: lacing, elasticated entry, structured surface Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″) Extras: lacing, elasticated entry, structured surface Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″) Extras: lacing, elasticated entry, structured surface Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″) Extras: lacing, elasticated entry, structured surface Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″) Extras: lacing, elasticated entry, structured surface Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″) Extras: lacing, elasticated entry, structured surface Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″) Extras: lacing, elasticated entry, structured surface Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″) Extras: lacing, elasticated entry, structured surface Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″) Extras: lacing, elasticated entry, structured surface Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″) Extras: lacing, elasticated entry, structured surface Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″) Extras: lacing, elasticated entry, structured surface Outer material: textile, synthetic Inner material: textile Outsole: synthetic | Measurements for size EU 39: heel approx. X high 3,5 cm (1.5″), bootleg height 11,5 cm (4.5″) Extras: lacing, elasticated entry, structured surface Outer material: textile, synthetic Inner material: textile Outsole: synthetic'),(2478,76,'Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles | Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles | Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles | Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles | Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles | Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles | Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles | Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles | Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles | Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles | Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles | Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles | Silved stretch sock-style sneakers. Pull tab in the back. Contrasting-coloured soles'),(2478,93,'Grey | Grey | Grey | Grey | Grey | Grey | Black | Black | Black | Black | Black | Black'),(2487,73,'Slim Fit Jeans – Jane |  Slim Fit Jeans – Jane-grey-Large size |  Slim Fit Jeans – Jane-grey-Extra small size |  Slim Fit Jeans – Jane-grey-Small size |  Slim Fit Jeans – Jane-grey-Medium size |  Slim Fit Jeans – Jane-black-Large size |  Slim Fit Jeans – Jane-black-Extra small size |  Slim Fit Jeans – Jane-black-Small size |  Slim Fit Jeans – Jane-black-Medium size'),(2487,74,'n31125042'),(2487,75,'Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastaneManufacturer\'s care instructions: machine wash | Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastaneManufacturer\'s care instructions: machine wash | Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastaneManufacturer\'s care instructions: machine wash | Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastaneManufacturer\'s care instructions: machine wash | Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastaneManufacturer\'s care instructions: machine wash | Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastaneManufacturer\'s care instructions: machine wash | Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastaneManufacturer\'s care instructions: machine wash | Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastaneManufacturer\'s care instructions: machine wash | Manufacturer\'s product information: skinnyCut: slim, tapered legMeasurements for size EU S: waist 66 cm (26″), leg opening 24 cm (9.5″), inside leg 74 cm (29″), rise 21 cm (8.5″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketPattern: solid-colouredMaterial: 39% cotton, 39% jute, 21% polyester, 1% elastaneManufacturer\'s care instructions: machine wash'),(2487,76,'Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. | Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. | Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. | Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. | Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. | Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. | Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. | Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening. | Mid waist skinny jeans with a five-pocket design and a washed effect. Featuring side taping with beaded appliqués and zip fly and top button fastening.'),(2487,93,'Grey | Grey | Grey | Grey | Black | Black | Black | Black'),(2500,73,'Silver Pumps |  Silver Pumps-grey-EU 36 |  Silver Pumps-grey-EU 39 |  Silver Pumps-grey-EU 37 |  Silver Pumps-grey-EU 40 |  Silver Pumps-grey-EU 38 |  Silver Pumps-grey-EU 41 |  Silver Pumps-red-EU 36 |  Silver Pumps-red-EU 39 |  Silver Pumps-red-EU 37 |  Silver Pumps-red-EU 40 |  Silver Pumps-red-EU 38 |  Silver Pumps-red-EU 41'),(2500,74,'n31074190'),(2500,75,'Measurements for size EU 39: heel height 7,5 cm (3″) Extras: a mix of suede and smooth leathers Outer material: leather Inner material: leather Outsole: leather Please note: Quality leather soles are sensitive to moisture. | Measurements for size EU 39: heel height 7,5 cm (3″) Extras: a mix of suede and smooth leathers Outer material: leather Inner material: leather Outsole: leather Please note: Quality leather soles are sensitive to moisture. | Measurements for size EU 39: heel height 7,5 cm (3″) Extras: a mix of suede and smooth leathers Outer material: leather Inner material: leather Outsole: leather Please note: Quality leather soles are sensitive to moisture. | Measurements for size EU 39: heel height 7,5 cm (3″) Extras: a mix of suede and smooth leathers Outer material: leather Inner material: leather Outsole: leather Please note: Quality leather soles are sensitive to moisture. | Measurements for size EU 39: heel height 7,5 cm (3″) Extras: a mix of suede and smooth leathers Outer material: leather Inner material: leather Outsole: leather Please note: Quality leather soles are sensitive to moisture. | Measurements for size EU 39: heel height 7,5 cm (3″) Extras: a mix of suede and smooth leathers Outer material: leather Inner material: leather Outsole: leather Please note: Quality leather soles are sensitive to moisture. | Measurements for size EU 39: heel height 7,5 cm (3″) Extras: a mix of suede and smooth leathers Outer material: leather Inner material: leather Outsole: leather Please note: Quality leather soles are sensitive to moisture. | Measurements for size EU 39: heel height 7,5 cm (3″) Extras: a mix of suede and smooth leathers Outer material: leather Inner material: leather Outsole: leather Please note: Quality leather soles are sensitive to moisture. | Measurements for size EU 39: heel height 7,5 cm (3″) Extras: a mix of suede and smooth leathers Outer material: leather Inner material: leather Outsole: leather Please note: Quality leather soles are sensitive to moisture. | Measurements for size EU 39: heel height 7,5 cm (3″) Extras: a mix of suede and smooth leathers Outer material: leather Inner material: leather Outsole: leather Please note: Quality leather soles are sensitive to moisture. | Measurements for size EU 39: heel height 7,5 cm (3″) Extras: a mix of suede and smooth leathers Outer material: leather Inner material: leather Outsole: leather Please note: Quality leather soles are sensitive to moisture. | Measurements for size EU 39: heel height 7,5 cm (3″) Extras: a mix of suede and smooth leathers Outer material: leather Inner material: leather Outsole: leather Please note: Quality leather soles are sensitive to moisture. | Measurements for size EU 39: heel height 7,5 cm (3″) Extras: a mix of suede and smooth leathers Outer material: leather Inner material: leather Outsole: leather Please note: Quality leather soles are sensitive to moisture.'),(2500,76,'Two elastic side panels for slipping on with ease. Pull tab in the back.  | Two elastic side panels for slipping on with ease. Pull tab in the back.  | Two elastic side panels for slipping on with ease. Pull tab in the back.  | Two elastic side panels for slipping on with ease. Pull tab in the back.  | Two elastic side panels for slipping on with ease. Pull tab in the back.  | Two elastic side panels for slipping on with ease. Pull tab in the back.  | Two elastic side panels for slipping on with ease. Pull tab in the back.  | Two elastic side panels for slipping on with ease. Pull tab in the back.  | Two elastic side panels for slipping on with ease. Pull tab in the back.  | Two elastic side panels for slipping on with ease. Pull tab in the back.  | Two elastic side panels for slipping on with ease. Pull tab in the back.  | Two elastic side panels for slipping on with ease. Pull tab in the back.  | Two elastic side panels for slipping on with ease. Pull tab in the back. '),(2500,93,'Grey | Grey | Grey | Grey | Grey | Grey | Red | Red | Red | Red | Red | Red'),(2507,73,'Grey Slim Fit Jeans Cirrus |  Grey Slim Fit Jeans Cirrus-grey-Large size |  Grey Slim Fit Jeans Cirrus-grey-Small size |  Grey Slim Fit Jeans Cirrus-grey-Medium size |  Grey Slim Fit Jeans Cirrus-black-Large size |  Grey Slim Fit Jeans Cirrus-black-Small size |  Grey Slim Fit Jeans Cirrus-black-Medium size'),(2507,74,'n31253495'),(2507,75,'It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose, printed or distressed, Blend have mastered it all, while adding their own unique spin into the mix. Jeans by Blend You can never have too many pairs. A tight cut for a sleek shape. Light grey wash with zip fly and five-pocket styling. Manufacturers product information: skinny Cut: slim, tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Extras: elastic, holes, logo tag on back of waistband Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash | It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose, printed or distressed, Blend have mastered it all, while adding their own unique spin into the mix. Jeans by Blend You can never have too many pairs. A tight cut for a sleek shape. Light grey wash with zip fly and five-pocket styling. Manufacturers product information: skinny Cut: slim, tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Extras: elastic, holes, logo tag on back of waistband Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash | It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose, printed or distressed, Blend have mastered it all, while adding their own unique spin into the mix. Jeans by Blend You can never have too many pairs. A tight cut for a sleek shape. Light grey wash with zip fly and five-pocket styling. Manufacturers product information: skinny Cut: slim, tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Extras: elastic, holes, logo tag on back of waistband Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash | It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose, printed or distressed, Blend have mastered it all, while adding their own unique spin into the mix. Jeans by Blend You can never have too many pairs. A tight cut for a sleek shape. Light grey wash with zip fly and five-pocket styling. Manufacturers product information: skinny Cut: slim, tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Extras: elastic, holes, logo tag on back of waistband Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash | It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose, printed or distressed, Blend have mastered it all, while adding their own unique spin into the mix. Jeans by Blend You can never have too many pairs. A tight cut for a sleek shape. Light grey wash with zip fly and five-pocket styling. Manufacturers product information: skinny Cut: slim, tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Extras: elastic, holes, logo tag on back of waistband Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash | It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose, printed or distressed, Blend have mastered it all, while adding their own unique spin into the mix. Jeans by Blend You can never have too many pairs. A tight cut for a sleek shape. Light grey wash with zip fly and five-pocket styling. Manufacturers product information: skinny Cut: slim, tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Extras: elastic, holes, logo tag on back of waistband Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash | It was the early 90s in Denmark when cool menswear brand Blend was born. Their laid-back style earned them a huge following of fashion-conscious men in both their hometown and beyond. Whether you like your denim tight, loose, printed or distressed, Blend have mastered it all, while adding their own unique spin into the mix. Jeans by Blend You can never have too many pairs. A tight cut for a sleek shape. Light grey wash with zip fly and five-pocket styling. Manufacturers product information: skinny Cut: slim, tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 33 cm (13″), inside leg 74,5 cm (29.5″), rise 22,5 cm (9″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Extras: elastic, holes, logo tag on back of waistband Material: 98% cotton, 2% elastane Manufacturer\'s care instructions: machine wash'),(2507,76,'Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front. | Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front. | Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front. | Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front. | Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front. | Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front. | Five-pocket skinny jeans with same-colour velvet side stripes and a metal zip fly and top button fastening in the front.'),(2507,93,'Grey | Grey | Grey | Black | Black | Black'),(2517,73,'Khaki Straight Leg Jeans Cadiz |  Khaki Straight Leg Jeans Cadiz-brown-Large size |  Khaki Straight Leg Jeans Cadiz-brown-Small size |  Khaki Straight Leg Jeans Cadiz-brown-Medium size |  Khaki Straight Leg Jeans Cadiz-blue-Large size |  Khaki Straight Leg Jeans Cadiz-blue-Small size |  Khaki Straight Leg Jeans Cadiz-blue-Medium size |  Khaki Straight Leg Jeans Cadiz-black-Large size |  Khaki Straight Leg Jeans Cadiz-black-Small size |  Khaki Straight Leg Jeans Cadiz-black-Medium size'),(2517,74,'n31253494'),(2517,75,'Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband. Cut: slightly tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Pattern: solid-coloured Material: 67% cotton, 30% polyester, 3% elastane Manufacturer\'s care instructions: machine wash | Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband. Cut: slightly tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Pattern: solid-coloured Material: 67% cotton, 30% polyester, 3% elastane Manufacturer\'s care instructions: machine wash | Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband. Cut: slightly tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Pattern: solid-coloured Material: 67% cotton, 30% polyester, 3% elastane Manufacturer\'s care instructions: machine wash | Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband. Cut: slightly tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Pattern: solid-coloured Material: 67% cotton, 30% polyester, 3% elastane Manufacturer\'s care instructions: machine wash | Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband. Cut: slightly tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Pattern: solid-coloured Material: 67% cotton, 30% polyester, 3% elastane Manufacturer\'s care instructions: machine wash | Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband. Cut: slightly tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Pattern: solid-coloured Material: 67% cotton, 30% polyester, 3% elastane Manufacturer\'s care instructions: machine wash | Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband. Cut: slightly tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Pattern: solid-coloured Material: 67% cotton, 30% polyester, 3% elastane Manufacturer\'s care instructions: machine wash | Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband. Cut: slightly tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Pattern: solid-coloured Material: 67% cotton, 30% polyester, 3% elastane Manufacturer\'s care instructions: machine wash | Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband. Cut: slightly tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Pattern: solid-coloured Material: 67% cotton, 30% polyester, 3% elastane Manufacturer\'s care instructions: machine wash | Brax Cadiz Jeans Straight beige is made from quality cotton with a touch of elastane for comfort and maximum flexibility. The pair is easy to style and can be easily paired with a polo shirt for a sharp formal look. Straight fit, 5-Pocket style, a regular rise with button and Zip Closure. Belt loops and leather branded Brax Logo badge on waistband. Cut: slightly tapered leg Measurements for size EU L32W32: waist 84 cm (33″), leg opening 34 cm (13.5″), inside leg 82 cm (32.5″), rise 26 cm (10″) Waistband: belt loop and zip with snaps on the collar Pockets: 5-pocket Pattern: solid-coloured Material: 67% cotton, 30% polyester, 3% elastane Manufacturer\'s care instructions: machine wash'),(2517,76,'Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets. | Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets. | Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets. | Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets. | Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets. | Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets. | Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets. | Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets. | Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets. | Regular fit Brax Cadiz Jeans, straight jeans with zip and button fastening and five pockets.'),(2517,93,'Brow Brow Brow Blue | Blue | Blue | Black | Black | Black'),(2524,73,'Black Standard Jeans |  Black Standard Jeans-grey-Large size |  Black Standard Jeans-grey-Small size |  Black Standard Jeans-grey-Medium size |  Black Standard Jeans-brown-Large size |  Black Standard Jeans-brown-Small size |  Black Standard Jeans-brown-Medium size'),(2524,74,'n31253496'),(2524,75,'The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort. Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMaterial: 64% Lyocell, 30% cotton, 4% ElastomultiesterManufacturer\'s care instructions: machine wash | The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort. Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMaterial: 64% Lyocell, 30% cotton, 4% ElastomultiesterManufacturer\'s care instructions: machine wash | The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort. Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMaterial: 64% Lyocell, 30% cotton, 4% ElastomultiesterManufacturer\'s care instructions: machine wash | The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort. Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMaterial: 64% Lyocell, 30% cotton, 4% ElastomultiesterManufacturer\'s care instructions: machine wash | The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort. Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMaterial: 64% Lyocell, 30% cotton, 4% ElastomultiesterManufacturer\'s care instructions: machine wash | The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort. Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMaterial: 64% Lyocell, 30% cotton, 4% ElastomultiesterManufacturer\'s care instructions: machine wash | The Standard is 7 for All Mankind’s modern straight leg jean. A classic, comfortable style with a mid-rise, zip fly and a regular straight leg fit. Luxe Performance Plus Black is a saturated black denim wash with tonal hardware and a clean, refined profile. Created using a unique blend of high stretch fibers for elevated performance and extreme comfort. Cut: straight legMeasurements for size EU 32: waist 86 cm (34″), leg opening 39 cm (15.5″), inside leg 86 cm (34″), rise 25 cm (10″)Waistband: belt loop and zip with snaps on the collarPockets: 5-pocketExtras: elastic, light qualityMaterial: 64% Lyocell, 30% cotton, 4% ElastomultiesterManufacturer\'s care instructions: machine wash'),(2524,76,'Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops. | Selvedge slim fit jeans with five pockets. Featuring zip fly and top button fastening, one coin pocket and belt loops.'),(2524,93,'Grey | Grey | Grey | Brow Brow Brown'),(2533,73,'Silk Pumps | n Silk Pumps-brown-EU 36 | n Silk Pumps-brown-EU 37 | n Silk Pumps-brown-EU 40 | n Silk Pumps-brown-EU 38 | n Silk Pumps-blue-EU 36 | n Silk Pumps-blue-EU 37 | n Silk Pumps-blue-EU 40 | n Silk Pumps-blue-EU 38'),(2533,74,'n31103364'),(2533,75,'Measurements for size EU 39: heel height 9 cm (3.5″) Extras: fabric trim, Floral appliqués Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 39: heel height 9 cm (3.5″) Extras: fabric trim, Floral appliqués Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 39: heel height 9 cm (3.5″) Extras: fabric trim, Floral appliqués Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 39: heel height 9 cm (3.5″) Extras: fabric trim, Floral appliqués Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 39: heel height 9 cm (3.5″) Extras: fabric trim, Floral appliqués Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 39: heel height 9 cm (3.5″) Extras: fabric trim, Floral appliqués Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 39: heel height 9 cm (3.5″) Extras: fabric trim, Floral appliqués Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 39: heel height 9 cm (3.5″) Extras: fabric trim, Floral appliqués Outer material: textile Inner material: leather Outsole: synthetic | Measurements for size EU 39: heel height 9 cm (3.5″) Extras: fabric trim, Floral appliqués Outer material: textile Inner material: leather Outsole: synthetic'),(2533,76,'Patent leather heels available in several colours. Pointed toes. High block heels.  | Patent leather heels available in several colours. Pointed toes. High block heels.  | Patent leather heels available in several colours. Pointed toes. High block heels.  | Patent leather heels available in several colours. Pointed toes. High block heels.  | Patent leather heels available in several colours. Pointed toes. High block heels.  | Patent leather heels available in several colours. Pointed toes. High block heels.  | Patent leather heels available in several colours. Pointed toes. High block heels.  | Patent leather heels available in several colours. Pointed toes. High block heels.  | Patent leather heels available in several colours. Pointed toes. High block heels. '),(2533,93,'Brow Brow Brow Brow Blue | Blue | Blue | Blue'),(2542,73,'Rich & Royal Transitional Jacket |  Rich & Royal Transitional Jacket-brown-Extra small size |  Rich & Royal Transitional Jacket-brown-Large size |  Rich & Royal Transitional Jacket-brown-Small size |  Rich & Royal Transitional Jacket-brown-Medium size |  Rich & Royal Transitional Jacket-white-Extra small size |  Rich & Royal Transitional Jacket-white-Large size |  Rich & Royal Transitional Jacket-white-Small size |  Rich & Royal Transitional Jacket-white-Medium size'),(2542,74,'n31151579'),(2542,75,'Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall. | Cut: lightly fitted Measurements for size EU S: garment length 56 cm (22″) Fastening: asymmetrical zip Exterior pockets: slit pocket/s Extras: woven shiny threads Material: 45% cotton, 44% polyacrylic, 11% polyester Manufacturer\'s care instructions: machine wash Our model wears a EU S and is 179cm/5′10″ tall.'),(2542,76,'Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs. | Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs. | Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs. | Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs. | Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs. | Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs. | Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs. | Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs. | Short blazer with a round neckline and long sleeves. Featuring patch pockets on the chest and hip with buttoned flaps, and trims on the neckline, pockets and cuffs.'),(2542,93,'Brow Brow Brow Brow White | White | White | White');
/*!40000 ALTER TABLE `catalogsearch_fulltext_scope1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogsearch_recommendations`
--

DROP TABLE IF EXISTS `catalogsearch_recommendations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogsearch_recommendations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `query_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Query Id',
  `relation_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Relation Id',
  PRIMARY KEY (`id`),
  KEY `CATALOGSEARCH_RECOMMENDATIONS_QUERY_ID_SEARCH_QUERY_QUERY_ID` (`query_id`),
  KEY `CATALOGSEARCH_RECOMMENDATIONS_RELATION_ID_SEARCH_QUERY_QUERY_ID` (`relation_id`),
  CONSTRAINT `CATALOGSEARCH_RECOMMENDATIONS_QUERY_ID_SEARCH_QUERY_QUERY_ID` FOREIGN KEY (`query_id`) REFERENCES `search_query` (`query_id`) ON DELETE CASCADE,
  CONSTRAINT `CATALOGSEARCH_RECOMMENDATIONS_RELATION_ID_SEARCH_QUERY_QUERY_ID` FOREIGN KEY (`relation_id`) REFERENCES `search_query` (`query_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Advanced Search Recommendations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogsearch_recommendations`
--

LOCK TABLES `catalogsearch_recommendations` WRITE;
/*!40000 ALTER TABLE `catalogsearch_recommendations` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogsearch_recommendations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `checkout_agreement`
--

DROP TABLE IF EXISTS `checkout_agreement`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `checkout_agreement` (
  `agreement_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Agreement Id',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `content` text COMMENT 'Content',
  `content_height` varchar(25) DEFAULT NULL COMMENT 'Content Height',
  `checkbox_text` text COMMENT 'Checkbox Text',
  `is_active` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Is Active',
  `is_html` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Is Html',
  `mode` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Applied mode',
  PRIMARY KEY (`agreement_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Checkout Agreement';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `checkout_agreement`
--

LOCK TABLES `checkout_agreement` WRITE;
/*!40000 ALTER TABLE `checkout_agreement` DISABLE KEYS */;
/*!40000 ALTER TABLE `checkout_agreement` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `checkout_agreement_store`
--

DROP TABLE IF EXISTS `checkout_agreement_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `checkout_agreement_store` (
  `agreement_id` int(10) unsigned NOT NULL COMMENT 'Agreement Id',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id',
  PRIMARY KEY (`agreement_id`,`store_id`),
  KEY `CHECKOUT_AGREEMENT_STORE_STORE_ID_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `CHECKOUT_AGREEMENT_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CHKT_AGRT_STORE_AGRT_ID_CHKT_AGRT_AGRT_ID` FOREIGN KEY (`agreement_id`) REFERENCES `checkout_agreement` (`agreement_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Checkout Agreement Store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `checkout_agreement_store`
--

LOCK TABLES `checkout_agreement_store` WRITE;
/*!40000 ALTER TABLE `checkout_agreement_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `checkout_agreement_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_block`
--

DROP TABLE IF EXISTS `cms_block`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cms_block` (
  `block_id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `title` varchar(255) NOT NULL COMMENT 'Block Title',
  `identifier` varchar(255) NOT NULL COMMENT 'Block String Identifier',
  `content` mediumtext COMMENT 'Block Content',
  `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Block Creation Time',
  `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Block Modification Time',
  `is_active` smallint(6) NOT NULL DEFAULT '1' COMMENT 'Is Block Active',
  PRIMARY KEY (`block_id`),
  FULLTEXT KEY `CMS_BLOCK_TITLE_IDENTIFIER_CONTENT` (`title`,`identifier`,`content`)
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8 COMMENT='CMS Block Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_block`
--

LOCK TABLES `cms_block` WRITE;
/*!40000 ALTER TABLE `cms_block` DISABLE KEYS */;
INSERT INTO `cms_block` VALUES (34,'Social links block','social-links','<h3 class=\"list-heading\">Social</h3><ul><li><a target=\"_blank\" rel=\"noopener\" href=\"https://www.instagram.com/scandiweb/\"><img src=\"{{media url=&quot;wysiwyg/social/instagram.svg&quot;}}\" alt=\"instagram\"> </a></li><li><a target=\"_blank\" rel=\"noopener\" href=\"https://www.facebook.com/scandiweb\"><img src=\"{{media url=&quot;wysiwyg/social/facebook.svg&quot;}}\" alt=\"facebook\"> </a></li><li><a target=\"_blank\" rel=\"noopener\" href=\"https://www.twitter.com/scandiweb/\"><img src=\"{{media url=&quot;wysiwyg/social/twitter.svg&quot;}}\" alt=\"twitter\"> </a></li></ul>','2018-11-23 09:14:13','2019-05-12 10:53:45',1),(35,'Homepage Category Preview','homepage-category-preview','<div class=\"HomepageCategories\"> <a href=\"/category/women\">\r\n        <figure class=\"HomepageCategories-Figure\">\r\n            <img src=\"{{media url=&quot;wysiwyg/homepage/two-woman-in-field.jpg&quot;}}\" alt=\"Two woman in the field\" />\r\n            <figcaption class=\"HomepageCategories-Figcaption\">\r\n                <button class=\"HomepageCategories-Button Button\"> SHOP <strong>WOMEN</strong> </button>\r\n            </figcaption>\r\n        </figure>\r\n    </a> <a href=\"/category/men\">\r\n        <figure class=\"HomepageCategories-Figure\">\r\n            <div class=\"Image Image_ratio_square Image_imageStatus_1 \">\r\n                    <img src=\"{{media url=&quot;wysiwyg/homepage/man-on-the-roof.jpg&quot;}}\" alt=\"Man on the roof\" />\r\n            <figcaption class=\"HomepageCategories-Figcaption\">\r\n                <button class=\"HomepageCategories-Button Button\"> SHOP <strong>MEN</strong> </button>\r\n            </figcaption>\r\n        </figure>\r\n    </a> <a href=\"/category/accessories\">\r\n        <figure class=\"HomepageCategories-Figure\">\r\n            <img src=\"{{media url=&quot;wysiwyg/homepage/sunglasses-in-hands.jpg&quot;}}\" alt=\"Sunglasses in hands\" />\r\n            <figcaption class=\"HomepageCategories-Figcaption\">\r\n                <button class=\"HomepageCategories-Button Button\"> SHOP <strong>ACCESSORIES</strong> </button>\r\n            </figcaption>\r\n        </figure>\r\n    </a>\r\n</div>','2019-05-11 16:36:30','2020-04-07 13:17:49',1),(36,'Homepage Jeans Preview','homage-jeans-preview','<div class=\"homage-jeans-preview\"><h2>Discover our famous jeans collection</h2><p>Prepared by worlds best designers</p></div>','2019-09-11 10:15:11','2019-09-11 10:26:14',1);
/*!40000 ALTER TABLE `cms_block` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_block_store`
--

DROP TABLE IF EXISTS `cms_block_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cms_block_store` (
  `block_id` smallint(6) NOT NULL,
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`block_id`,`store_id`),
  KEY `CMS_BLOCK_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `CMS_BLOCK_STORE_BLOCK_ID_CMS_BLOCK_BLOCK_ID` FOREIGN KEY (`block_id`) REFERENCES `cms_block` (`block_id`) ON DELETE CASCADE,
  CONSTRAINT `CMS_BLOCK_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Block To Store Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_block_store`
--

LOCK TABLES `cms_block_store` WRITE;
/*!40000 ALTER TABLE `cms_block_store` DISABLE KEYS */;
INSERT INTO `cms_block_store` VALUES (34,0),(35,0),(36,0);
/*!40000 ALTER TABLE `cms_block_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_page`
--

DROP TABLE IF EXISTS `cms_page`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cms_page` (
  `page_id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Page Title',
  `page_layout` varchar(255) DEFAULT NULL COMMENT 'Page Layout',
  `page_width` varchar(10) NOT NULL DEFAULT 'default' COMMENT 'Page Width',
  `meta_keywords` text COMMENT 'Page Meta Keywords',
  `meta_description` text COMMENT 'Page Meta Description',
  `identifier` varchar(100) DEFAULT NULL COMMENT 'Page String Identifier',
  `content_heading` varchar(255) DEFAULT NULL COMMENT 'Page Content Heading',
  `content` mediumtext COMMENT 'Page Content',
  `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Page Creation Time',
  `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Page Modification Time',
  `is_active` smallint(6) NOT NULL DEFAULT '1' COMMENT 'Is Page Active',
  `sort_order` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Page Sort Order',
  `layout_update_xml` text COMMENT 'Page Layout Update Content',
  `custom_theme` varchar(100) DEFAULT NULL COMMENT 'Page Custom Theme',
  `custom_root_template` varchar(255) DEFAULT NULL COMMENT 'Page Custom Template',
  `custom_layout_update_xml` text COMMENT 'Page Custom Layout Update Content',
  `custom_theme_from` date DEFAULT NULL COMMENT 'Page Custom Theme Active From Date',
  `custom_theme_to` date DEFAULT NULL COMMENT 'Page Custom Theme Active To Date',
  `meta_title` varchar(255) DEFAULT NULL COMMENT 'Page Meta Title',
  PRIMARY KEY (`page_id`),
  KEY `CMS_PAGE_IDENTIFIER` (`identifier`),
  FULLTEXT KEY `CMS_PAGE_TITLE_META_KEYWORDS_META_DESCRIPTION_IDENTIFIER_CONTENT` (`title`,`meta_keywords`,`meta_description`,`identifier`,`content`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='CMS Page Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_page`
--

LOCK TABLES `cms_page` WRITE;
/*!40000 ALTER TABLE `cms_page` DISABLE KEYS */;
INSERT INTO `cms_page` VALUES (4,'Privacy and Cookie Policy','1column','default',NULL,NULL,'privacy-policy-cookie-restriction-mode','Privacy and Cookie Policy','<div class=\"privacy-policy cms-content\">\n    <div class=\"privacy-policy-content\">\n        <div class=\"left-image\">\n            <p style=\"text-align: left;\">scandipwa takes your privacy very seriously. So, we wanted to provide you some information on our privacy policy (the “Policy”). scandipwa was founded in 2018 by an experienced group of tech pioneers with a simple idea: make shopping for bulk easy, convenient and fun, so you can focus on the things that really matter.</p>\n            <p style=\"text-align: left;\">&nbsp;</p>\n            <p style=\"text-align: left;\">This Policy describes:</p>\n            <ul>\n                <li>how we collect, and you may provide, information through our website, including the <a href=\"http://www.scandipwa.com\"><span class=\"\" data-color-group=\"turquoise\">www.scandipwa.com</span></a> domain, our mobile applications and our vendor information portal (collectively, the “Sites”);</li>\n                <li>how we use and protect information;</li>\n                <li>with whom we may share information;&nbsp;</li>\n                <li>the types of information we collect.</li>\n            </ul>\n        </div>\n        <p>We put forth this Policy because we want you to be aware of the information we collect and help you make an informed decision about using our Sites and services. By visiting the Sites, linked pages, features, content, or using any of our services, you acknowledge and accept the practices and policies outlined in this Policy. If you do not agree to this Policy, you may not access or otherwise use the Sites. This Policy does not apply to any third-party websites, services or applications, even if they are accessible through our Sites.</p>\n        <h2 id=\"privacy-policy-title-1\">1.&nbsp;WHAT INFORMATION DO WE COLLECT?</h2>\n        <h3>Information You Provide</h3>\n        <p>We collect the information you enter on our Sites when you register as a member, create an account, engage in a transaction, search our products, contact us or our customer service department by telephone, email, or otherwise, or participate in events, surveys, questionnaires, contests or other promotions we may sponsor. <strong><span class=\"\" data-color-group=\"cornflower-blue\">Please note that we may collect personally identifiable information (“PII”) from the Sites only when you choose to provide it to us.</span> We use this information to correspond with you and as otherwise permitted by this Policy.</strong> The information collected may include:</p>\n        <ul>\n            <li>Your contact information, such as your name, email address, password, shipping address, or telephone number;</li>\n            <li>Your payment information, such as <strong><span class=\"\" data-color-group=\"cornflower-blue\">credit/debit card information</span></strong>, billing addresses, and other billing information;</li>\n            <li>The shipping information of any third parties that you enter when shipping orders to such third parties,  including their names, addresses, and telephone numbers; and</li>\n            <li>Your purchase history. Certain information, statements, data, and content (such as photographs) which you may submit to us are likely to reveal your gender, ethnic origin, race, nationality, age, and/or other demographic information about you.</li>\n        </ul>\n        <p>Certain information, statements, data, and content (such as photographs) which you may submit to us are likely to reveal your gender, ethnic origin, race, nationality, age, and/or other demographic information about you.</p>\n        <p>We do not knowingly collect sensitive information such as government-issued identifiers, Social security Numbers, financial account information, insurance plan information or specific information related to your health or medical conditions.</p>\n        <p>From time-to-time, we may use <strong><span class=\"\" data-color-group=\"cornflower-blue\">third-party provided widgets</span></strong> on our Sites to help provide products and services that we feel might be of use to you. These widgets may ask you for additional information, such as the referral information (names and email addresses) of people or companies that you may wish to refer to us, pursuant to the privacy policies of such third parties. Of course, it is up to you as to whether you provide any of this type of information.</p>\n        <h3><span class=\"\" data-color-group=\"cornflower-blue\">Mobile Web and IOS and Android Apps</span></h3>\n        <p>We may collect certain additional information from you when you access the Sites with mobile devices or with our IOS and Android mobile apps (the “scandipwa Apps”). This information may include location, device type, unique device identifier, mobile operating system, site navigation, and other app-specific user data. When this data is collected, it is analyzed periodically to help us create a more user-friendly, improved shopping experience within the mobile web interface and/or the <a href=\"/\"><span class=\"\" data-color-group=\"green\">scandipwa Apps</span></a>. You may restrict the collection of certain data, like location, and/or opt out of notifications from the scandipwa Apps by changing the settings preferences on your mobile device.</p>\n        <div class=\"right-image\">\n            <p style=\"text-align: left;\">scandipwa takes your privacy very seriously. So, we wanted to provide you some information on our privacy policy (the “Policy”). scandipwa was founded in 2018 by an experienced group of tech pioneers with a simple idea: make shopping for bulk easy, convenient and fun, so you can focus on the things that really matter.</p>\n            <p style=\"text-align: left;\">&nbsp;</p>\n            <p style=\"text-align: left;\">This Policy describes:</p>\n            <ul>\n                <li>how we collect, and you may provide, information through our website, including the <a href=\"http://www.scandipwa.com\"><span class=\"\" data-color-group=\"turquoise\">www.scandipwa.com</span></a> domain, our mobile applications and our vendor information portal (collectively, the “Sites”);</li>\n                <li>how we use and protect information;</li>\n                <li>with whom we may share information;&nbsp;</li>\n                <li>the types of information we collect.</li>\n            </ul>\n        </div>\n        <h2 id=\"privacy-policy-title-2\">2.&nbsp;MOST COMMON QUESTIONS</h2>\n        <ul class=\"faq-block accordion\" data-accordion=\"\">\n            <li class=\"accordion-item\" data-accordion-item=\"\"><a class=\"accordion-title\">How much does shipping cost after my first order?</a>\n                <div class=\"accordion-content\" data-tab-content=\"\">\n                    <p>Your order will qualify for free shipping if it meets the minimum order amount of $49.00. Otherwise, shipping is a flat rate of $6.99.</p>\n                </div>\n            </li>\n            <li class=\"accordion-item\" data-accordion-item=\"\"><a class=\"accordion-title\">How long will my order take?</a>\n                <div class=\"accordion-content\" data-tab-content=\"\">\n                    <p>Your order will qualify for free shipping if it meets the minimum order amount of $49.00. Otherwise, shipping is a flat rate of $6.99.</p>\n                </div>\n            </li>\n            <li class=\"accordion-item\" data-accordion-item=\"\"><a class=\"accordion-title\">Where can I find my referral credit?</a>\n                <div class=\"accordion-content\" data-tab-content=\"\">\n                    <p>Your order will qualify for free shipping if it meets the minimum order amount of $49.00. Otherwise, shipping is a flat rate of $6.99.</p>\n                </div>\n            </li>\n            <li class=\"accordion-item\" data-accordion-item=\"\"><a class=\"accordion-title\">How do I change my password?</a>\n                <div class=\"accordion-content\" data-tab-content=\"\">\n                    <p>Your order will qualify for free shipping if it meets the minimum order amount of $49.00. Otherwise, shipping is a flat rate of $6.99.</p>\n                </div>\n            </li>\n        </ul>\n    </div>\n</div>\n','2018-11-22 11:19:20','2019-02-26 11:31:21',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,'Terms & Conditions','1column','default','','','terms-and-conditions','Terms & Conditions','<div class=\"terms-and-conditions cms-content\">\r\n    <h2>General Site Usage</h2>\r\n    <p>This site is provided as a service to our visitors and may be used for informational purposes only. Because the\r\n        Terms and Conditions contain legal obligations, please read them carefully.</p>\r\n    <h3>1. YOUR AGREEMENT</h3>\r\n    <p>By using this Site, you agree to be bound by, and to comply with, these Terms and Conditions. If you do not\r\n        agree to these Terms and Conditions, please do not use this site.</p>\r\n    <blockquote>PLEASE NOTE: We reserve the right, at our sole discretion, to change, modify or otherwise alter these\r\n        Terms and Conditions at any time. Unless otherwise indicated, amendments will become effective immediately.\r\n        Please review these Terms and Conditions periodically. Your continued use of the Site following the posting of\r\n        changes and/or modifications will constitute your acceptance of the revised Terms and Conditions and the\r\n        reasonableness of these standards for notice of changes. For your information, this page was last updated as of\r\n        the date at the top of these terms and conditions.</blockquote>\r\n    <h3>2. PRIVACY</h3>\r\n    <p>Please review our Privacy Policy, which also governs your visit to this Site, to understand our practices.</p>\r\n    <h3>3. LINKED SITES</h3>\r\n    <p>This Site may contain links to other independent third-party Web sites (\"Linked Sites”). These Linked Sites are\r\n        provided solely as a convenience to our visitors. Such Linked Sites are not under our control, and we are not\r\n        responsible for and does not endorse the content of such Linked Sites, including any information or materials\r\n        contained on such Linked Sites. You will need to make your own independent judgment regarding your interaction\r\n        with these Linked Sites.</p>\r\n    <h3>4. FORWARD LOOKING STATEMENTS</h3>\r\n    <p>All materials reproduced on this site speak as of the original date of publication or filing. The fact that a\r\n        document is available on this site does not mean that the information contained in such document has not been\r\n        modified or superseded by events or by a subsequent document or filing. We have no duty or policy to update any\r\n        information or statements contained on this site and, therefore, such information or statements should not be\r\n        relied upon as being current as of the date you access this site.</p>\r\n    <h3>5. DISCLAIMER OF WARRANTIES AND LIMITATION OF LIABILITY</h3>\r\n    <p>A. THIS SITE MAY CONTAIN INACCURACIES AND TYPOGRAPHICAL ERRORS. WE DOES NOT WARRANT THE ACCURACY OR COMPLETENESS\r\n        OF THE MATERIALS OR THE RELIABILITY OF ANY ADVICE, OPINION, STATEMENT OR OTHER INFORMATION DISPLAYED OR\r\n        DISTRIBUTED THROUGH THE SITE. YOU EXPRESSLY UNDERSTAND AND AGREE THAT: (i) YOUR USE OF THE SITE, INCLUDING ANY\r\n        RELIANCE ON ANY SUCH OPINION, ADVICE, STATEMENT, MEMORANDUM, OR INFORMATION CONTAINED HEREIN, SHALL BE AT YOUR\r\n        SOLE RISK; (ii) THE SITE IS PROVIDED ON AN \"AS IS\" AND \"AS AVAILABLE\" BASIS; (iii) EXCEPT AS EXPRESSLY PROVIDED\r\n        HEREIN WE DISCLAIM ALL WARRANTIES OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO\r\n        IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, WORKMANLIKE EFFORT, TITLE AND\r\n        NON-INFRINGEMENT; (iv) WE MAKE NO WARRANTY WITH RESPECT TO THE RESULTS THAT MAY BE OBTAINED FROM THIS SITE, THE\r\n        PRODUCTS OR SERVICES ADVERTISED OR OFFERED OR MERCHANTS INVOLVED; (v) ANY MATERIAL DOWNLOADED OR OTHERWISE\r\n        OBTAINED THROUGH THE USE OF THE SITE IS DONE AT YOUR OWN DISCRETION AND RISK; and (vi) YOU WILL BE SOLELY\r\n        RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR FOR ANY LOSS OF DATA THAT RESULTS FROM THE DOWNLOAD OF\r\n        ANY SUCH MATERIAL.</p>\r\n    <p>B. YOU UNDERSTAND AND AGREE THAT UNDER NO CIRCUMSTANCES, INCLUDING, BUT NOT LIMITED TO, NEGLIGENCE, SHALL WE BE\r\n        LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES THAT RESULT FROM THE\r\n        USE OF, OR THE INABILITY TO USE, ANY OF OUR SITES OR MATERIALS OR FUNCTIONS ON ANY SUCH SITE, EVEN IF WE HAVE\r\n        BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THE FOREGOING LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY\r\n        FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.</p>\r\n    <h3>6. EXCLUSIONS AND LIMITATIONS</h3>\r\n    <p>SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF CERTAIN WARRANTIES OR THE LIMITATION OR EXCLUSION OF LIABILITY\r\n        FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES. ACCORDINGLY, OUR LIABILITY IN SUCH JURISDICTION SHALL BE LIMITED TO\r\n        THE MAXIMUM EXTENT PERMITTED BY LAW.</p>\r\n    <h3>7. OUR PROPRIETARY RIGHTS</h3>\r\n    <p>This Site and all its Contents are intended solely for personal, non-commercial use. Except as expressly\r\n        provided, nothing within the Site shall be construed as conferring any license under our or any third party\'s\r\n        intellectual property rights, whether by estoppel, implication, waiver, or otherwise. Without limiting the\r\n        generality of the foregoing, you acknowledge and agree that all content available through and used to operate\r\n        the Site and its services is protected by copyright, trademark, patent, or other proprietary rights. You agree\r\n        not to: (a) modify, alter, or deface any of the trademarks, service marks, trade dress (collectively\r\n        \"Trademarks\") or other intellectual property made available by us in connection with the Site; (b) hold\r\n        yourself out as in any way sponsored by, affiliated with, or endorsed by us, or any of our affiliates or\r\n        service providers; (c) use any of the Trademarks or other content accessible through the Site for any purpose\r\n        other than the purpose for which we have made it available to you; (d) defame or disparage us, our Trademarks,\r\n        or any aspect of the Site; and (e) adapt, translate, modify, decompile, disassemble, or reverse engineer the\r\n        Site or any software or programs used in connection with it or its products and services.</p>\r\n    <p>The framing, mirroring, scraping or data mining of the Site or any of its content in any form and by any method\r\n        is expressly prohibited.</p>\r\n    <h3>8. INDEMNITY</h3>\r\n    <p>By using the Site web sites you agree to indemnify us and affiliated entities (collectively \"Indemnities\") and\r\n        hold them harmless from any and all claims and expenses, including (without limitation) attorney\'s fees,\r\n        arising from your use of the Site web sites, your use of the Products and Services, or your submission of ideas\r\n        and/or related materials to us or from any person\'s use of any ID, membership or password you maintain with any\r\n        portion of the Site, regardless of whether such use is authorized by you.</p>\r\n    <h3>9. COPYRIGHT AND TRADEMARK NOTICE</h3>\r\n    <p>Except our generated dummy copy, which is free to use for private and commercial use, all other text is\r\n        copyrighted. generator.lorem-ipsum.info © 2013, all rights reserved</p>\r\n    <h3>10. INTELLECTUAL PROPERTY INFRINGEMENT CLAIMS</h3>\r\n    <p>It is our policy to respond expeditiously to claims of intellectual property infringement. We will promptly\r\n        process and investigate notices of alleged infringement and will take appropriate actions under the Digital\r\n        Millennium Copyright Act (\"DMCA\") and other applicable intellectual property laws. Notices of claimed\r\n        infringement should be directed to:</p>\r\n    <p>scandiweb.com</p>\r\n    <h3>11. GENERAL</h3>\r\n    <p>A. If any provision of these Terms and Conditions is held to be invalid or unenforceable, the provision shall be\r\n        removed (or interpreted, if possible, in a manner as to be enforceable), and the remaining provisions shall be\r\n        enforced. Headings are for reference purposes only and in no way define, limit, construe or describe the scope\r\n        or extent of such section. Our failure to act with respect to a breach by you or others does not waive our\r\n        right to act with respect to subsequent or similar breaches. These Terms and Conditions set forth the entire\r\n        understanding and agreement between us with respect to the subject matter contained herein and supersede any\r\n        other agreement, proposals and communications, written or oral, between our representatives and you with\r\n        respect to the subject matter hereof, including any terms and conditions on any of customer\'s documents or\r\n        purchase orders.</p>\r\n    <p>B. No Joint Venture, No Derogation of Rights. You agree that no joint venture, partnership, employment, or\r\n        agency relationship exists between you and us as a result of these Terms and Conditions or your use of the\r\n        Site. Our performance of these Terms and Conditions is subject to existing laws and legal process, and nothing\r\n        contained herein is in derogation of our right to comply with governmental, court and law enforcement requests\r\n        or requirements relating to your use of the Site or information provided to or gathered by us with respect to\r\n        such use.</p>\r\n</div>','2018-11-22 11:19:20','2020-04-07 13:10:02',1,0,'','','',NULL,NULL,NULL,''),(6,'About Us','1column','default','','','about-us','About Us','<div class=\"about-us cms-content\">\r\n    <div class=\"about-us-content\">\r\n        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin condimentum elit vel lobortis tempus. Sed\r\n                quam augue, euismod at arcu sit amet, porttitor lobortis risus. Duis vel erat viverra, sodales eros id,\r\n                cursus erat. Mauris est risus, sodales quis leo a, tincidunt vulputate ipsum. Cras nisi purus,\r\n                elementum eu posuere non, semper vitae erat. Donec a dui non ex bibendum vestibulum. Vivamus tempus\r\n                sapien id ex sagittis bibendum. Quisque vel urna tempor, pretium nibh at, sodales dui. Sed ut enim\r\n                aliquam, vulputate erat ultrices, condimentum magna. Vivamus vitae pellentesque ligula. Sed vel\r\n                tincidunt tellus. Donec suscipit elit id congue molestie. Sed dignissim commodo nulla, eget feugiat\r\n                velit pellentesque at.</p>\r\n        <p>Duis sagittis est aliquet diam egestas:</p>\r\n        <ul>\r\n            <li>Nunc eget dui ut elit euismod efficitur et nec sem.</li>\r\n            <li>Nullam hendrerit diam vel tortor volutpat, vitae accumsan arcu fringilla.</li>\r\n            <li>Etiam ultrices ante sit amet ligula lobortis euismod.</li>\r\n            <li>Sed ut lorem vitae erat egestas blandit.</li>\r\n            <li>Sed molestie nulla sit amet neque blandit, in rhoncus leo tempus.</li>\r\n        </ul>\r\n        <p>Suspendisse ullamcorper tincidunt neque, et pharetra orci feugiat eget. Praesent sodales, ante non efficitur\r\n            interdum, risus magna accumsan lacus, eu euismod urna ante nec nibh.</p>\r\n        <h2 id=\"about-us-title-1\">1. Phasellus dapibus ex a lacus maximus, ac pretium nisi suscipit?</h2>\r\n        <h3>Lorem ipsum dolor sit amet</h3>\r\n        <p>Maecenas et elementum diam. <strong>Maecenas lobortis mattis dapibus</strong>. Etiam eget orci congue,\r\n            euismod lorem ac, rhoncus magna. Vivamus non sem suscipit dolor tincidunt tincidunt a sit amet felis. Proin\r\n            accumsan massa nec justo pharetra, ac tincidunt tortor porta. Etiam fringilla lectus non felis congue\r\n            scelerisque eget nec risus. Quisque risus nisl, facilisis iaculis tincidunt ac, hendrerit at odio. In vel\r\n            volutpat diam, ut elementum sapien. Proin lobortis justo eu libero rutrum tempor eget consequat augue. <a href=\"/\">Etiam at sollicitudin elit</a>, ac fringilla ligula. <strong>Integer a eros non magna euismod\r\n                euismod convallis nec eros</strong>. Integer aliquet massa ac congue faucibus. Proin elementum blandit\r\n            ipsum. Morbi tortor eros, malesuada quis malesuada porttitor, tempor a arcu. Integer viverra ipsum eu diam\r\n            lobortis porttitor:</p>\r\n        <ul>\r\n            <li>Nunc eget dui ut elit euismod efficitur et nec sem.</li>\r\n            <li>Nullam hendrerit diam <strong>vel tortor volutpat</strong>, vitae accumsan arcu fringilla.</li>\r\n            <li>Etiam ultrices ante sit amet ligula lobortis euismod.</li>\r\n            <li>Sed ut lorem vitae erat egestas blandit.</li>\r\n            <li>Sed molestie nulla sit amet neque blandit, in rhoncus leo tempus.</li>\r\n        </ul>\r\n        <p>Duis id mi nibh. Mauris quis fermentum erat. Suspendisse vel blandit purus.</p>\r\n        <p>Proin finibus neque non semper commodo. Maecenas mollis purus ex, a porta justo sagittis a. Nam ut nisi\r\n            consectetur, venenatis mi vel, iaculis sapien.</p>\r\n        <p>Integer sit amet mattis nulla. Vivamus suscipit vestibulum justo id varius. Fusce dignissim tortor nec risus\r\n            aliquet fringilla. Praesent ultrices mattis purus sit amet suscipit. Phasellus condimentum massa nibh,\r\n            vitae molestie purus ultrices a. Fusce eleifend, nibh at finibus ornare, libero tellus maximus tortor,\r\n            sollicitudin lobortis tortor dolor in tortor. Aenean posuere sapien dolor, eget hendrerit risus condimentum\r\n            eget. Ut scelerisque sollicitudin orci, vitae aliquet justo auctor et.</p>\r\n        <h3>Nunc quis feugiat massa</h3>\r\n        <p>Nunc feugiat dignissim lorem. <a href=\"/\">Etiam</a> congue malesuada urna quis eleifend. Pellentesque\r\n            habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque quis neque\r\n            dapibus, elementum diam eleifend, posuere ante. Sed volutpat erat a lectus tincidunt facilisis. Phasellus\r\n            et faucibus turpis. Ut posuere erat at diam placerat, mattis condimentum diam porttitor. Sed mi ipsum,\r\n            tempus at turpis vitae, dictum scelerisque libero.</p>\r\n        <p>Cras bibendum lectus vehicula odio iaculis, sed elementum purus faucibus. Nunc vehicula lacus et blandit\r\n            viverra. Ut vitae orci tellus. Etiam finibus gravida orci, vel finibus nulla blandit non. Suspendisse\r\n            sed mi ipsum.&nbsp;Curabitur venenatis, massa nec ullamcorper maximus, justo metus iaculis neque, a\r\n            aliquam nulla ante at massa. Nunc nulla purus, aliquet sed varius sed, lacinia ut odio. Cras auctor\r\n            blandit pellentesque.</p>\r\n        <p>Aenean rhoncus leo a ante tincidunt:</p>\r\n        <ul>\r\n            <li>Donec vel magna a nunc ultrices porta quis eu lorem.</li>\r\n            <li>Nullam dictum odio ac venenatis iaculis.</li>\r\n            <li>Quisque ac mauris nec massa ultricies iaculis in eu <a href=\"/\">libero</a>.</li>\r\n        </ul>\r\n        <h2 id=\"about-us-title-2\">2. Ut posuere erat at diam placerat</h2>\r\n        <p>Sed a ultricies ante. Nulla augue leo, mattis sit amet aliquam non, pulvinar ac urna. Praesent nisi tellus,\r\n            fringilla ac massa in, vulputate tempus massa. In eget orci in nisl dictum egestas ac in leo. Nullam dictum\r\n            tristique ultrices. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n            Maecenas efficitur augue a enim pellentesque pellentesque. Fusce consequat lacus id ligula venenatis, nec\r\n            placerat nisl facilisis. </p>\r\n        <ul>\r\n            <li>Fusce nec magna vel libero tempus scelerisque at in nunc.</li>\r\n            <li>Maecenas sed velit egestas, viverra erat nec, imperdiet diam.</li>\r\n            <li>Donec malesuada est nec odio iaculis porttitor.</li>\r\n            <li>Mauris nec velit sit amet ipsum condimentum maximus.</li>\r\n            <li>Donec cursus magna nec feugiat sollicitudin.</li>\r\n        </ul>\r\n    </div>\r\n</div>','2018-11-22 11:19:20','2020-04-07 13:10:07',1,0,'','','',NULL,NULL,NULL,''),(7,'Homepage','1column','default','','','homepage','','{{widget type=\"Scandiweb\\Slider\\Block\\Widget\\Slider\" slider_id=\"4\"}} {{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"35\"}} {{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"36\"}} {{widget type=\"Magento\\CatalogWidget\\Block\\Product\\ProductsList\" show_pager=\"0\" products_count=\"12\" template=\"Magento_CatalogWidget::product/widget/content/grid.phtml\" cache_lifetime=\"2592000\" conditions_encoded=\"^[`1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Combine`,`aggregator`:`any`,`value`:`1`,`new_child`:``^],`1--1`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`category_ids`,`operator`:`==`,`value`:`26`^],`1--2`:^[`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`category_ids`,`operator`:`==`,`value`:`32`^]^]\"}}','2019-09-09 12:29:30','2020-04-07 13:10:42',1,0,'','','',NULL,NULL,NULL,'');
/*!40000 ALTER TABLE `cms_page` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_page_store`
--

DROP TABLE IF EXISTS `cms_page_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cms_page_store` (
  `page_id` smallint(6) NOT NULL COMMENT 'Entity ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`page_id`,`store_id`),
  KEY `CMS_PAGE_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `CMS_PAGE_STORE_PAGE_ID_CMS_PAGE_PAGE_ID` FOREIGN KEY (`page_id`) REFERENCES `cms_page` (`page_id`) ON DELETE CASCADE,
  CONSTRAINT `CMS_PAGE_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Page To Store Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_page_store`
--

LOCK TABLES `cms_page_store` WRITE;
/*!40000 ALTER TABLE `cms_page_store` DISABLE KEYS */;
INSERT INTO `cms_page_store` VALUES (1,0),(2,0),(3,0),(4,0),(5,0),(6,0),(7,0);
/*!40000 ALTER TABLE `cms_page_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `core_config_data`
--

DROP TABLE IF EXISTS `core_config_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `core_config_data` (
  `config_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Config Id',
  `scope` varchar(8) NOT NULL DEFAULT 'default' COMMENT 'Config Scope',
  `scope_id` int(11) NOT NULL DEFAULT '0' COMMENT 'Config Scope Id',
  `path` varchar(255) NOT NULL DEFAULT 'general' COMMENT 'Config Path',
  `value` text COMMENT 'Config Value',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`config_id`),
  UNIQUE KEY `CORE_CONFIG_DATA_SCOPE_SCOPE_ID_PATH` (`scope`,`scope_id`,`path`)
) ENGINE=InnoDB AUTO_INCREMENT=125 DEFAULT CHARSET=utf8 COMMENT='Config Data';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_config_data`
--

LOCK TABLES `core_config_data` WRITE;
/*!40000 ALTER TABLE `core_config_data` DISABLE KEYS */;
INSERT INTO `core_config_data` VALUES (1,'default',0,'general/region/display_all','1','2020-04-07 12:12:27'),(2,'default',0,'general/region/state_required','AU,BR,CA,CH,EE,ES,HR,IN,LT,LV,MX,RO,US','2020-04-07 12:12:37'),(3,'default',0,'catalog/category/root_id','2','2020-04-07 12:12:27'),(4,'default',0,'analytics/subscription/enabled','1','2020-04-07 12:12:27'),(5,'default',0,'crontab/default/jobs/analytics_subscribe/schedule/cron_expr','0 * * * *','2020-04-07 12:12:27'),(6,'default',0,'web/unsecure/base_url','http://scandipwa.local/','2020-04-07 12:16:02'),(7,'default',0,'system/full_page_cache/varnish/backend_host','nginx','2020-04-07 12:12:27'),(8,'default',0,'system/full_page_cache/varnish/backend_port','80','2020-04-07 12:12:27'),(9,'default',0,'system/full_page_cache/caching_application','2','2020-04-07 12:12:27'),(11,'default',0,'enhancedsmtp/custom/failed_count','0','2020-04-07 12:12:27'),(13,'default',0,'design/header/logo_src','default/logo.png','2020-04-07 12:12:27'),(14,'default',0,'design/header/logo_alt','ScandiPWA','2020-04-07 12:12:27'),(15,'default',0,'design/header/logo_width','183','2020-04-07 12:12:27'),(16,'default',0,'design/header/logo_height','46','2020-04-07 12:12:27'),(17,'default',0,'design/email/logo','1default/logo.png','2020-04-07 12:12:27'),(18,'default',0,'design/email/logo_alt','ScandiPWA','2020-04-07 12:12:27'),(19,'default',0,'design/email/logo_width','183','2020-04-07 12:12:27'),(20,'default',0,'design/email/logo_height','46','2020-04-07 12:12:27'),(37,'default',0,'design/theme/theme_id','4','2020-04-07 12:12:27'),(38,'default',0,'tax/calculation/based_on','origin','2020-04-07 12:12:27'),(39,'default',0,'tax/cart_display/grandtotal','1','2020-04-07 12:12:27'),(40,'default',0,'tax/cart_display/full_summary','1','2020-04-07 12:12:27'),(41,'default',0,'tax/cart_display/zero_tax','1','2020-04-07 12:12:27'),(42,'default',0,'tax/sales_display/grandtotal','1','2020-04-07 12:12:27'),(43,'default',0,'tax/sales_display/full_summary','1','2020-04-07 12:12:27'),(44,'default',0,'tax/sales_display/zero_tax','1','2020-04-07 12:12:27'),(45,'default',0,'shipping/origin/region_id','32','2020-04-07 12:12:27'),(46,'default',0,'shipping/origin/postcode','02184','2020-04-07 12:12:27'),(51,'default',0,'admin/security/admin_account_sharing','1','2020-04-07 12:12:27'),(52,'default',0,'admin/security/use_case_sensitive_login','0','2020-04-07 12:12:27'),(54,'default',0,'cataloginventory/item_options/auto_return','0','2020-04-07 12:12:27'),(55,'default',0,'cataloginventory/item_options/manage_stock','0','2020-04-07 12:12:27'),(58,'default',0,'system/full_page_cache/varnish/access_list','127.0.0.1, app, nginx','2020-04-07 12:13:37'),(59,'default',0,'system/full_page_cache/varnish/grace_period','300','2020-04-07 12:12:27'),(69,'default',0,'msp_securitysuite_twofactorauth/duo/application_key','zl1PXSyrkmAY4qGM87xzap85qXKkoAU1I3yFRpcw1EZR2lEGt9g48ITdzzXQlt9R','2020-04-07 12:12:27'),(70,'website',0,'connector_configuration/transactional_data/order_statuses','canceled,closed,complete,fraud,holded,payment_review,paypal_canceled_reversal,paypal_reversed,pending,pending_payment,pending_paypal,processing','2020-04-07 12:12:27'),(71,'website',0,'connector_configuration/catalog_sync/catalog_type','simple,virtual,configurable,downloadable,grouped,bundle','2020-04-07 12:12:27'),(72,'website',0,'connector_configuration/catalog_sync/catalog_visibility','1,2,3,4','2020-04-07 12:12:27'),(73,'default',0,'connector_dynamic_content/external_dynamic_content_urls/passcode','TZD2BsIoNhDjCKSs8GhgllMA2vpaTmt7','2020-04-07 12:12:27'),(74,'default',0,'connector_automation/review_settings/allow_non_subscribers','1','2020-04-07 12:12:27'),(75,'default',0,'connector_configuration/abandoned_carts/allow_non_subscribers','1','2020-04-07 12:12:27'),(76,'default',0,'sync_settings/addressbook/allow_non_subscribers','1','2020-04-07 12:12:27'),(77,'default',0,'web/secure/base_url','https://scandipwa.local/','2020-04-07 12:16:03'),(78,'default',0,'web/secure/use_in_frontend','1','2020-04-07 12:12:27'),(79,'default',0,'web/secure/use_in_adminhtml','1','2020-04-07 12:12:27'),(96,'default',0,'web/default/cms_home_page','homepage','2020-04-07 12:12:27'),(97,'default',0,'yotpo/module_info/yotpo_installation_date','2020-04-07','2020-04-07 12:12:36'),(98,'default',0,'yotpo/sync_settings/orders_sync_start_date','2020-04-07','2020-04-07 12:12:36'),(99,'default',0,'payment/authorizenet_acceptjs/cctypes','AE,VI,MC,DI,JCB,DN','2020-04-07 12:13:23'),(100,'default',0,'payment/authorizenet_acceptjs/order_status','processing','2020-04-07 12:13:23'),(101,'default',0,'payment/authorizenet_acceptjs/payment_action','authorize','2020-04-07 12:13:23'),(102,'default',0,'payment/authorizenet_acceptjs/currency','USD','2020-04-07 12:13:23'),(103,'websites',1,'payment/authorizenet_acceptjs/cctypes','AE,VI,MC,DI,JCB,DN','2020-04-07 12:13:23'),(104,'websites',1,'payment/authorizenet_acceptjs/order_status','processing','2020-04-07 12:13:23'),(105,'websites',1,'payment/authorizenet_acceptjs/payment_action','authorize','2020-04-07 12:13:23'),(106,'websites',1,'payment/authorizenet_acceptjs/currency','USD','2020-04-07 12:13:23'),(107,'default',0,'catalog/search/engine','elasticsearch5','2020-04-07 12:13:32'),(108,'default',0,'catalog/search/elasticsearch5_server_hostname','elasticsearch','2020-04-07 12:13:34'),(109,'default',0,'admin/usage/enabled','1','2020-04-07 12:28:37'),(110,'default',0,'cms/wysiwyg/enabled','disabled','2020-04-07 13:14:14'),(111,'default',0,'cms/wysiwyg/use_static_urls_in_catalog','0','2020-04-07 13:14:14'),(112,'default',0,'web/seo/use_rewrites','1','2020-04-07 13:22:51'),(113,'default',0,'web/unsecure/base_static_url',NULL,'2020-04-07 13:22:51'),(114,'default',0,'web/unsecure/base_media_url',NULL,'2020-04-07 13:22:51'),(115,'default',0,'web/secure/base_static_url',NULL,'2020-04-07 13:22:51'),(116,'default',0,'web/secure/base_media_url',NULL,'2020-04-07 13:22:51'),(117,'default',0,'web/secure/enable_hsts','0','2020-04-07 13:22:51'),(118,'default',0,'web/secure/enable_upgrade_insecure','0','2020-04-07 13:22:51'),(119,'default',0,'web/default_layouts/default_product_layout',NULL,'2020-04-07 13:22:51'),(120,'default',0,'web/default_layouts/default_category_layout',NULL,'2020-04-07 13:22:51'),(121,'default',0,'web/default_layouts/default_cms_layout','1column','2020-04-07 13:22:51'),(122,'default',0,'web/cookie/cookie_path',NULL,'2020-04-07 13:22:51'),(123,'default',0,'web/cookie/cookie_domain',NULL,'2020-04-07 13:22:51'),(124,'default',0,'web/cookie/cookie_httponly','1','2020-04-07 13:22:51');
/*!40000 ALTER TABLE `core_config_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cron_schedule`
--

DROP TABLE IF EXISTS `cron_schedule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cron_schedule` (
  `schedule_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Schedule Id',
  `job_code` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Job Code',
  `status` varchar(7) NOT NULL DEFAULT 'pending' COMMENT 'Status',
  `messages` text COMMENT 'Messages',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `scheduled_at` timestamp NULL DEFAULT NULL COMMENT 'Scheduled At',
  `executed_at` timestamp NULL DEFAULT NULL COMMENT 'Executed At',
  `finished_at` timestamp NULL DEFAULT NULL COMMENT 'Finished At',
  PRIMARY KEY (`schedule_id`),
  KEY `CRON_SCHEDULE_JOB_CODE` (`job_code`),
  KEY `CRON_SCHEDULE_SCHEDULED_AT_STATUS` (`scheduled_at`,`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cron Schedule';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cron_schedule`
--

LOCK TABLES `cron_schedule` WRITE;
/*!40000 ALTER TABLE `cron_schedule` DISABLE KEYS */;
/*!40000 ALTER TABLE `cron_schedule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_address_entity`
--

DROP TABLE IF EXISTS `customer_address_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_address_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment Id',
  `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `is_active` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Is Active',
  `city` varchar(255) NOT NULL COMMENT 'City',
  `company` varchar(255) DEFAULT NULL COMMENT 'Company',
  `country_id` varchar(255) NOT NULL COMMENT 'Country',
  `fax` varchar(255) DEFAULT NULL COMMENT 'Fax',
  `firstname` varchar(255) NOT NULL COMMENT 'First Name',
  `lastname` varchar(255) NOT NULL COMMENT 'Last Name',
  `middlename` varchar(255) DEFAULT NULL COMMENT 'Middle Name',
  `postcode` varchar(255) DEFAULT NULL COMMENT 'Zip/Postal Code',
  `prefix` varchar(40) DEFAULT NULL COMMENT 'Name Prefix',
  `region` varchar(255) DEFAULT NULL COMMENT 'State/Province',
  `region_id` int(10) unsigned DEFAULT NULL COMMENT 'State/Province',
  `street` text NOT NULL COMMENT 'Street Address',
  `suffix` varchar(40) DEFAULT NULL COMMENT 'Name Suffix',
  `telephone` varchar(255) NOT NULL COMMENT 'Phone Number',
  `vat_id` varchar(255) DEFAULT NULL COMMENT 'VAT number',
  `vat_is_valid` int(10) unsigned DEFAULT NULL COMMENT 'VAT number validity',
  `vat_request_date` varchar(255) DEFAULT NULL COMMENT 'VAT number validation request date',
  `vat_request_id` varchar(255) DEFAULT NULL COMMENT 'VAT number validation request ID',
  `vat_request_success` int(10) unsigned DEFAULT NULL COMMENT 'VAT number validation request success',
  PRIMARY KEY (`entity_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_PARENT_ID` (`parent_id`),
  CONSTRAINT `CUSTOMER_ADDRESS_ENTITY_PARENT_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity`
--

LOCK TABLES `customer_address_entity` WRITE;
/*!40000 ALTER TABLE `customer_address_entity` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_address_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_address_entity_datetime`
--

DROP TABLE IF EXISTS `customer_address_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_address_entity_datetime` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value Id',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Id',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CSTR_ADDR_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_ADDR_ENTT_DTIME_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Datetime';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity_datetime`
--

LOCK TABLES `customer_address_entity_datetime` WRITE;
/*!40000 ALTER TABLE `customer_address_entity_datetime` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_address_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_address_entity_decimal`
--

DROP TABLE IF EXISTS `customer_address_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_address_entity_decimal` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value Id',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Id',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CSTR_ADDR_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_ADDR_ENTT_DEC_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Decimal';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity_decimal`
--

LOCK TABLES `customer_address_entity_decimal` WRITE;
/*!40000 ALTER TABLE `customer_address_entity_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_address_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_address_entity_int`
--

DROP TABLE IF EXISTS `customer_address_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_address_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` int(11) NOT NULL DEFAULT '0' COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CSTR_ADDR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_ADDR_ENTT_INT_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Int';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity_int`
--

LOCK TABLES `customer_address_entity_int` WRITE;
/*!40000 ALTER TABLE `customer_address_entity_int` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_address_entity_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_address_entity_text`
--

DROP TABLE IF EXISTS `customer_address_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_address_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` text NOT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `CSTR_ADDR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_ADDR_ENTT_TEXT_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Text';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity_text`
--

LOCK TABLES `customer_address_entity_text` WRITE;
/*!40000 ALTER TABLE `customer_address_entity_text` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_address_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_address_entity_varchar`
--

DROP TABLE IF EXISTS `customer_address_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_address_entity_varchar` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CSTR_ADDR_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_ADDR_ENTT_VCHR_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Varchar';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity_varchar`
--

LOCK TABLES `customer_address_entity_varchar` WRITE;
/*!40000 ALTER TABLE `customer_address_entity_varchar` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_address_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_eav_attribute`
--

DROP TABLE IF EXISTS `customer_eav_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_eav_attribute` (
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute Id',
  `is_visible` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Is Visible',
  `input_filter` varchar(255) DEFAULT NULL COMMENT 'Input Filter',
  `multiline_count` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Multiline Count',
  `validate_rules` text COMMENT 'Validate Rules',
  `is_system` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is System',
  `sort_order` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `data_model` varchar(255) DEFAULT NULL COMMENT 'Data Model',
  `is_used_in_grid` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used in Grid',
  `is_visible_in_grid` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible in Grid',
  `is_filterable_in_grid` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Filterable in Grid',
  `is_searchable_in_grid` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Searchable in Grid',
  PRIMARY KEY (`attribute_id`),
  CONSTRAINT `CUSTOMER_EAV_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Eav Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_eav_attribute`
--

LOCK TABLES `customer_eav_attribute` WRITE;
/*!40000 ALTER TABLE `customer_eav_attribute` DISABLE KEYS */;
INSERT INTO `customer_eav_attribute` VALUES (1,1,NULL,0,NULL,1,10,NULL,1,1,1,0),(2,0,NULL,0,NULL,1,0,NULL,0,0,0,0),(3,1,NULL,0,NULL,1,20,NULL,1,1,0,1),(4,0,NULL,0,NULL,0,30,NULL,0,0,0,0),(5,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,40,NULL,0,0,0,0),(6,0,'trim',0,NULL,0,50,NULL,0,0,0,0),(7,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,60,NULL,0,0,0,0),(8,0,NULL,0,NULL,0,70,NULL,0,0,0,0),(9,1,NULL,0,'{\"input_validation\":\"email\"}',1,80,NULL,1,1,1,1),(10,1,NULL,0,NULL,1,25,NULL,1,1,1,0),(11,0,'date',0,'{\"input_validation\":\"date\"}',0,90,NULL,1,1,1,0),(12,0,NULL,0,NULL,1,0,NULL,0,0,0,0),(13,0,NULL,0,NULL,1,0,NULL,0,0,0,0),(14,0,NULL,0,'{\"input_validation\":\"date\"}',1,0,NULL,0,0,0,0),(15,0,NULL,0,NULL,1,0,NULL,0,0,0,0),(16,0,NULL,0,NULL,1,0,NULL,0,0,0,0),(17,0,NULL,0,'{\"max_text_length\":255}',0,100,NULL,1,1,0,1),(18,0,NULL,0,NULL,1,0,NULL,1,1,1,0),(19,0,NULL,0,NULL,0,0,NULL,1,1,1,0),(20,0,NULL,0,'[]',0,110,NULL,1,1,1,0),(21,1,NULL,0,NULL,1,28,NULL,0,0,0,0),(22,0,NULL,0,NULL,0,10,NULL,0,0,0,0),(23,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,20,NULL,1,0,0,1),(24,0,'trim',0,NULL,0,30,NULL,0,0,0,0),(25,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,40,NULL,1,0,0,1),(26,0,NULL,0,NULL,0,50,NULL,0,0,0,0),(27,1,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',1,60,NULL,1,0,0,1),(28,1,NULL,3,'{\"max_text_length\":255,\"min_text_length\":1}',1,70,NULL,1,0,0,1),(29,1,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',1,80,NULL,1,0,0,1),(30,1,NULL,0,NULL,1,90,NULL,1,1,1,0),(31,1,NULL,0,NULL,1,100,NULL,1,1,0,1),(32,1,NULL,0,NULL,1,100,NULL,0,0,0,0),(33,1,NULL,0,'[]',1,110,'Magento\\Customer\\Model\\Attribute\\Data\\Postcode',1,1,1,1),(34,1,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',1,120,NULL,1,1,1,1),(35,0,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',0,130,NULL,1,0,0,1),(36,1,NULL,0,NULL,1,140,NULL,0,0,0,0),(37,0,NULL,0,NULL,1,0,NULL,0,0,0,0),(38,0,NULL,0,NULL,1,0,NULL,0,0,0,0),(39,0,NULL,0,NULL,1,0,NULL,0,0,0,0),(40,0,NULL,0,NULL,1,0,NULL,0,0,0,0),(41,0,NULL,0,NULL,0,0,NULL,0,0,0,0),(42,0,NULL,0,NULL,1,0,NULL,0,0,0,0),(43,0,NULL,0,NULL,1,0,NULL,0,0,0,0),(44,0,NULL,0,NULL,1,0,NULL,0,0,0,0);
/*!40000 ALTER TABLE `customer_eav_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_eav_attribute_website`
--

DROP TABLE IF EXISTS `customer_eav_attribute_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_eav_attribute_website` (
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `is_visible` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Visible',
  `is_required` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Required',
  `default_value` text COMMENT 'Default Value',
  `multiline_count` smallint(5) unsigned DEFAULT NULL COMMENT 'Multiline Count',
  PRIMARY KEY (`attribute_id`,`website_id`),
  KEY `CUSTOMER_EAV_ATTRIBUTE_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CSTR_EAV_ATTR_WS_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_EAV_ATTR_WS_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Eav Attribute Website';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_eav_attribute_website`
--

LOCK TABLES `customer_eav_attribute_website` WRITE;
/*!40000 ALTER TABLE `customer_eav_attribute_website` DISABLE KEYS */;
INSERT INTO `customer_eav_attribute_website` VALUES (1,1,NULL,NULL,NULL,NULL),(3,1,NULL,NULL,NULL,NULL),(5,1,NULL,NULL,NULL,NULL),(6,1,NULL,NULL,NULL,NULL),(7,1,NULL,NULL,NULL,NULL),(9,1,NULL,NULL,NULL,NULL),(10,1,NULL,NULL,NULL,NULL),(11,1,NULL,NULL,NULL,NULL),(17,1,NULL,NULL,NULL,NULL),(18,1,NULL,NULL,NULL,NULL),(19,1,NULL,NULL,NULL,NULL),(20,1,NULL,NULL,NULL,NULL),(21,1,NULL,NULL,NULL,NULL),(23,1,NULL,NULL,NULL,NULL),(24,1,NULL,NULL,NULL,NULL),(25,1,NULL,NULL,NULL,NULL),(27,1,NULL,NULL,NULL,NULL),(28,1,NULL,NULL,NULL,NULL),(29,1,NULL,NULL,NULL,NULL),(30,1,NULL,NULL,NULL,NULL),(31,1,NULL,NULL,NULL,NULL),(32,1,NULL,NULL,NULL,NULL),(33,1,NULL,NULL,NULL,NULL),(34,1,NULL,NULL,NULL,NULL),(35,1,NULL,NULL,NULL,NULL),(36,1,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `customer_eav_attribute_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_entity`
--

DROP TABLE IF EXISTS `customer_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `website_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Website ID',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `group_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Group ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment Id',
  `store_id` smallint(5) unsigned DEFAULT '0' COMMENT 'Store ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `is_active` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Is Active',
  `disable_auto_group_change` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Disable automatic group change based on VAT ID',
  `created_in` varchar(255) DEFAULT NULL COMMENT 'Created From',
  `prefix` varchar(40) DEFAULT NULL COMMENT 'Name Prefix',
  `firstname` varchar(255) DEFAULT NULL COMMENT 'First Name',
  `middlename` varchar(255) DEFAULT NULL COMMENT 'Middle Name/Initial',
  `lastname` varchar(255) DEFAULT NULL COMMENT 'Last Name',
  `suffix` varchar(40) DEFAULT NULL COMMENT 'Name Suffix',
  `dob` date DEFAULT NULL COMMENT 'Date of Birth',
  `password_hash` varchar(128) DEFAULT NULL COMMENT 'Password_hash',
  `rp_token` varchar(128) DEFAULT NULL COMMENT 'Reset password token',
  `rp_token_created_at` datetime DEFAULT NULL COMMENT 'Reset password token creation time',
  `default_billing` int(10) unsigned DEFAULT NULL COMMENT 'Default Billing Address',
  `default_shipping` int(10) unsigned DEFAULT NULL COMMENT 'Default Shipping Address',
  `taxvat` varchar(50) DEFAULT NULL COMMENT 'Tax/VAT Number',
  `confirmation` varchar(64) DEFAULT NULL COMMENT 'Is Confirmed',
  `gender` smallint(5) unsigned DEFAULT NULL COMMENT 'Gender',
  `failures_num` smallint(6) DEFAULT '0' COMMENT 'Failure Number',
  `first_failure` timestamp NULL DEFAULT NULL COMMENT 'First Failure',
  `lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Lock Expiration Date',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_EMAIL_WEBSITE_ID` (`email`,`website_id`),
  KEY `CUSTOMER_ENTITY_STORE_ID` (`store_id`),
  KEY `CUSTOMER_ENTITY_WEBSITE_ID` (`website_id`),
  KEY `CUSTOMER_ENTITY_FIRSTNAME` (`firstname`),
  KEY `CUSTOMER_ENTITY_LASTNAME` (`lastname`),
  CONSTRAINT `CUSTOMER_ENTITY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL,
  CONSTRAINT `CUSTOMER_ENTITY_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity`
--

LOCK TABLES `customer_entity` WRITE;
/*!40000 ALTER TABLE `customer_entity` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_entity_datetime`
--

DROP TABLE IF EXISTS `customer_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_entity_datetime` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CUSTOMER_ENTITY_DATETIME_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CUSTOMER_ENTITY_DATETIME_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Datetime';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity_datetime`
--

LOCK TABLES `customer_entity_datetime` WRITE;
/*!40000 ALTER TABLE `customer_entity_datetime` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_entity_decimal`
--

DROP TABLE IF EXISTS `customer_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_entity_decimal` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CUSTOMER_ENTITY_DECIMAL_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Decimal';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity_decimal`
--

LOCK TABLES `customer_entity_decimal` WRITE;
/*!40000 ALTER TABLE `customer_entity_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_entity_int`
--

DROP TABLE IF EXISTS `customer_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` int(11) NOT NULL DEFAULT '0' COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CUSTOMER_ENTITY_INT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CUSTOMER_ENTITY_INT_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Int';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity_int`
--

LOCK TABLES `customer_entity_int` WRITE;
/*!40000 ALTER TABLE `customer_entity_int` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_entity_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_entity_text`
--

DROP TABLE IF EXISTS `customer_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` text NOT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `CUSTOMER_ENTITY_TEXT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CUSTOMER_ENTITY_TEXT_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Text';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity_text`
--

LOCK TABLES `customer_entity_text` WRITE;
/*!40000 ALTER TABLE `customer_entity_text` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_entity_varchar`
--

DROP TABLE IF EXISTS `customer_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_entity_varchar` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CUSTOMER_ENTITY_VARCHAR_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Varchar';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity_varchar`
--

LOCK TABLES `customer_entity_varchar` WRITE;
/*!40000 ALTER TABLE `customer_entity_varchar` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_form_attribute`
--

DROP TABLE IF EXISTS `customer_form_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_form_attribute` (
  `form_code` varchar(32) NOT NULL COMMENT 'Form Code',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute Id',
  PRIMARY KEY (`form_code`,`attribute_id`),
  KEY `CUSTOMER_FORM_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `CUSTOMER_FORM_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Form Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_form_attribute`
--

LOCK TABLES `customer_form_attribute` WRITE;
/*!40000 ALTER TABLE `customer_form_attribute` DISABLE KEYS */;
INSERT INTO `customer_form_attribute` VALUES ('adminhtml_customer',1),('adminhtml_customer',3),('adminhtml_customer',4),('customer_account_create',4),('customer_account_edit',4),('adminhtml_customer',5),('customer_account_create',5),('customer_account_edit',5),('adminhtml_customer',6),('customer_account_create',6),('customer_account_edit',6),('adminhtml_customer',7),('customer_account_create',7),('customer_account_edit',7),('adminhtml_customer',8),('customer_account_create',8),('customer_account_edit',8),('adminhtml_checkout',9),('adminhtml_customer',9),('customer_account_create',9),('customer_account_edit',9),('adminhtml_checkout',10),('adminhtml_customer',10),('adminhtml_checkout',11),('adminhtml_customer',11),('customer_account_create',11),('customer_account_edit',11),('adminhtml_checkout',17),('adminhtml_customer',17),('customer_account_create',17),('customer_account_edit',17),('adminhtml_customer',19),('customer_account_create',19),('customer_account_edit',19),('adminhtml_checkout',20),('adminhtml_customer',20),('customer_account_create',20),('customer_account_edit',20),('adminhtml_customer',21),('adminhtml_customer_address',22),('customer_address_edit',22),('customer_register_address',22),('adminhtml_customer_address',23),('customer_address_edit',23),('customer_register_address',23),('adminhtml_customer_address',24),('customer_address_edit',24),('customer_register_address',24),('adminhtml_customer_address',25),('customer_address_edit',25),('customer_register_address',25),('adminhtml_customer_address',26),('customer_address_edit',26),('customer_register_address',26),('adminhtml_customer_address',27),('customer_address_edit',27),('customer_register_address',27),('adminhtml_customer_address',28),('customer_address_edit',28),('customer_register_address',28),('adminhtml_customer_address',29),('customer_address_edit',29),('customer_register_address',29),('adminhtml_customer_address',30),('customer_address_edit',30),('customer_register_address',30),('adminhtml_customer_address',31),('customer_address_edit',31),('customer_register_address',31),('adminhtml_customer_address',32),('customer_address_edit',32),('customer_register_address',32),('adminhtml_customer_address',33),('customer_address_edit',33),('customer_register_address',33),('adminhtml_customer_address',34),('customer_address_edit',34),('customer_register_address',34),('adminhtml_customer_address',35),('customer_address_edit',35),('customer_register_address',35),('adminhtml_customer_address',36),('customer_address_edit',36),('customer_register_address',36);
/*!40000 ALTER TABLE `customer_form_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_grid_flat`
--

DROP TABLE IF EXISTS `customer_grid_flat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_grid_flat` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `name` text COMMENT 'Name',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `group_id` int(11) DEFAULT NULL COMMENT 'Group_id',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created_at',
  `website_id` int(11) DEFAULT NULL COMMENT 'Website_id',
  `confirmation` varchar(255) DEFAULT NULL COMMENT 'Confirmation',
  `created_in` text COMMENT 'Created_in',
  `dob` date DEFAULT NULL COMMENT 'Dob',
  `gender` int(11) DEFAULT NULL COMMENT 'Gender',
  `taxvat` varchar(255) DEFAULT NULL COMMENT 'Taxvat',
  `lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Lock_expires',
  `shipping_full` text COMMENT 'Shipping_full',
  `billing_full` text COMMENT 'Billing_full',
  `billing_firstname` varchar(255) DEFAULT NULL COMMENT 'Billing_firstname',
  `billing_lastname` varchar(255) DEFAULT NULL COMMENT 'Billing_lastname',
  `billing_telephone` varchar(255) DEFAULT NULL COMMENT 'Billing_telephone',
  `billing_postcode` varchar(255) DEFAULT NULL COMMENT 'Billing_postcode',
  `billing_country_id` varchar(255) DEFAULT NULL COMMENT 'Billing_country_id',
  `billing_region` varchar(255) DEFAULT NULL COMMENT 'Billing_region',
  `billing_street` varchar(255) DEFAULT NULL COMMENT 'Billing_street',
  `billing_city` varchar(255) DEFAULT NULL COMMENT 'Billing_city',
  `billing_fax` varchar(255) DEFAULT NULL COMMENT 'Billing_fax',
  `billing_vat_id` varchar(255) DEFAULT NULL COMMENT 'Billing_vat_id',
  `billing_company` varchar(255) DEFAULT NULL COMMENT 'Billing_company',
  PRIMARY KEY (`entity_id`),
  KEY `CUSTOMER_GRID_FLAT_GROUP_ID` (`group_id`),
  KEY `CUSTOMER_GRID_FLAT_CREATED_AT` (`created_at`),
  KEY `CUSTOMER_GRID_FLAT_WEBSITE_ID` (`website_id`),
  KEY `CUSTOMER_GRID_FLAT_CONFIRMATION` (`confirmation`),
  KEY `CUSTOMER_GRID_FLAT_DOB` (`dob`),
  KEY `CUSTOMER_GRID_FLAT_GENDER` (`gender`),
  KEY `CUSTOMER_GRID_FLAT_BILLING_COUNTRY_ID` (`billing_country_id`),
  FULLTEXT KEY `FTI_8746F705702DD5F6D45B8C7CE7FE9F2F` (`name`,`email`,`created_in`,`taxvat`,`shipping_full`,`billing_full`,`billing_firstname`,`billing_lastname`,`billing_telephone`,`billing_postcode`,`billing_region`,`billing_city`,`billing_fax`,`billing_company`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='customer_grid_flat';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_grid_flat`
--

LOCK TABLES `customer_grid_flat` WRITE;
/*!40000 ALTER TABLE `customer_grid_flat` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_grid_flat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_group`
--

DROP TABLE IF EXISTS `customer_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_group` (
  `customer_group_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_group_code` varchar(32) NOT NULL COMMENT 'Customer Group Code',
  `tax_class_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Tax Class Id',
  PRIMARY KEY (`customer_group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Customer Group';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_group`
--

LOCK TABLES `customer_group` WRITE;
/*!40000 ALTER TABLE `customer_group` DISABLE KEYS */;
INSERT INTO `customer_group` VALUES (0,'NOT LOGGED IN',3),(1,'General',3),(2,'Wholesale',3),(3,'Retailer',3);
/*!40000 ALTER TABLE `customer_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_log`
--

DROP TABLE IF EXISTS `customer_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_log` (
  `log_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `customer_id` int(11) NOT NULL COMMENT 'Customer ID',
  `last_login_at` timestamp NULL DEFAULT NULL COMMENT 'Last Login Time',
  `last_logout_at` timestamp NULL DEFAULT NULL COMMENT 'Last Logout Time',
  PRIMARY KEY (`log_id`),
  UNIQUE KEY `CUSTOMER_LOG_CUSTOMER_ID` (`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Log Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_log`
--

LOCK TABLES `customer_log` WRITE;
/*!40000 ALTER TABLE `customer_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_provider`
--

DROP TABLE IF EXISTS `customer_provider`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_provider` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Autoincrement Id',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `user_id` varchar(255) NOT NULL COMMENT 'User id from social network',
  `provider` varchar(255) NOT NULL COMMENT 'Provider',
  `data_received` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'All data received successfully',
  PRIMARY KEY (`id`),
  UNIQUE KEY `CUSTOMER_PROVIDER_ENTITY_ID_USER_ID` (`entity_id`,`user_id`),
  CONSTRAINT `CUSTOMER_PROVIDER_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='customer_provider';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_provider`
--

LOCK TABLES `customer_provider` WRITE;
/*!40000 ALTER TABLE `customer_provider` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_provider` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_visitor`
--

DROP TABLE IF EXISTS `customer_visitor`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_visitor` (
  `visitor_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Visitor ID',
  `customer_id` int(11) DEFAULT NULL COMMENT 'Customer Id',
  `session_id` varchar(64) DEFAULT NULL COMMENT 'Session ID',
  `last_visit_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Last Visit Time',
  PRIMARY KEY (`visitor_id`),
  KEY `CUSTOMER_VISITOR_CUSTOMER_ID` (`customer_id`),
  KEY `CUSTOMER_VISITOR_LAST_VISIT_AT` (`last_visit_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Visitor Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_visitor`
--

LOCK TABLES `customer_visitor` WRITE;
/*!40000 ALTER TABLE `customer_visitor` DISABLE KEYS */;
/*!40000 ALTER TABLE `customer_visitor` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `design_change`
--

DROP TABLE IF EXISTS `design_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `design_change` (
  `design_change_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Design Change Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `design` varchar(255) DEFAULT NULL COMMENT 'Design',
  `date_from` date DEFAULT NULL COMMENT 'First Date of Design Activity',
  `date_to` date DEFAULT NULL COMMENT 'Last Date of Design Activity',
  PRIMARY KEY (`design_change_id`),
  KEY `DESIGN_CHANGE_STORE_ID` (`store_id`),
  CONSTRAINT `DESIGN_CHANGE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Design Changes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `design_change`
--

LOCK TABLES `design_change` WRITE;
/*!40000 ALTER TABLE `design_change` DISABLE KEYS */;
/*!40000 ALTER TABLE `design_change` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `design_config_grid_flat`
--

DROP TABLE IF EXISTS `design_config_grid_flat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `design_config_grid_flat` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `store_website_id` int(11) DEFAULT NULL COMMENT 'Store_website_id',
  `store_group_id` int(11) DEFAULT NULL COMMENT 'Store_group_id',
  `store_id` int(11) DEFAULT NULL COMMENT 'Store_id',
  `theme_theme_id` varchar(255) DEFAULT NULL COMMENT 'Theme_theme_id',
  PRIMARY KEY (`entity_id`),
  KEY `DESIGN_CONFIG_GRID_FLAT_STORE_WEBSITE_ID` (`store_website_id`),
  KEY `DESIGN_CONFIG_GRID_FLAT_STORE_GROUP_ID` (`store_group_id`),
  KEY `DESIGN_CONFIG_GRID_FLAT_STORE_ID` (`store_id`),
  FULLTEXT KEY `DESIGN_CONFIG_GRID_FLAT_THEME_THEME_ID` (`theme_theme_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='design_config_grid_flat';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `design_config_grid_flat`
--

LOCK TABLES `design_config_grid_flat` WRITE;
/*!40000 ALTER TABLE `design_config_grid_flat` DISABLE KEYS */;
INSERT INTO `design_config_grid_flat` VALUES (0,NULL,NULL,NULL,'5'),(1,1,NULL,NULL,'5'),(2,1,1,1,'5');
/*!40000 ALTER TABLE `design_config_grid_flat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `directory_country`
--

DROP TABLE IF EXISTS `directory_country`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directory_country` (
  `country_id` varchar(2) NOT NULL COMMENT 'Country Id in ISO-2',
  `iso2_code` varchar(2) DEFAULT NULL COMMENT 'Country ISO-2 format',
  `iso3_code` varchar(3) DEFAULT NULL COMMENT 'Country ISO-3',
  PRIMARY KEY (`country_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `directory_country`
--

LOCK TABLES `directory_country` WRITE;
/*!40000 ALTER TABLE `directory_country` DISABLE KEYS */;
INSERT INTO `directory_country` VALUES ('AD','AD','AND'),('AE','AE','ARE'),('AF','AF','AFG'),('AG','AG','ATG'),('AI','AI','AIA'),('AL','AL','ALB'),('AM','AM','ARM'),('AN','AN','ANT'),('AO','AO','AGO'),('AQ','AQ','ATA'),('AR','AR','ARG'),('AS','AS','ASM'),('AT','AT','AUT'),('AU','AU','AUS'),('AW','AW','ABW'),('AX','AX','ALA'),('AZ','AZ','AZE'),('BA','BA','BIH'),('BB','BB','BRB'),('BD','BD','BGD'),('BE','BE','BEL'),('BF','BF','BFA'),('BG','BG','BGR'),('BH','BH','BHR'),('BI','BI','BDI'),('BJ','BJ','BEN'),('BL','BL','BLM'),('BM','BM','BMU'),('BN','BN','BRN'),('BO','BO','BOL'),('BR','BR','BRA'),('BS','BS','BHS'),('BT','BT','BTN'),('BV','BV','BVT'),('BW','BW','BWA'),('BY','BY','BLR'),('BZ','BZ','BLZ'),('CA','CA','CAN'),('CC','CC','CCK'),('CD','CD','COD'),('CF','CF','CAF'),('CG','CG','COG'),('CH','CH','CHE'),('CI','CI','CIV'),('CK','CK','COK'),('CL','CL','CHL'),('CM','CM','CMR'),('CN','CN','CHN'),('CO','CO','COL'),('CR','CR','CRI'),('CU','CU','CUB'),('CV','CV','CPV'),('CX','CX','CXR'),('CY','CY','CYP'),('CZ','CZ','CZE'),('DE','DE','DEU'),('DJ','DJ','DJI'),('DK','DK','DNK'),('DM','DM','DMA'),('DO','DO','DOM'),('DZ','DZ','DZA'),('EC','EC','ECU'),('EE','EE','EST'),('EG','EG','EGY'),('EH','EH','ESH'),('ER','ER','ERI'),('ES','ES','ESP'),('ET','ET','ETH'),('FI','FI','FIN'),('FJ','FJ','FJI'),('FK','FK','FLK'),('FM','FM','FSM'),('FO','FO','FRO'),('FR','FR','FRA'),('GA','GA','GAB'),('GB','GB','GBR'),('GD','GD','GRD'),('GE','GE','GEO'),('GF','GF','GUF'),('GG','GG','GGY'),('GH','GH','GHA'),('GI','GI','GIB'),('GL','GL','GRL'),('GM','GM','GMB'),('GN','GN','GIN'),('GP','GP','GLP'),('GQ','GQ','GNQ'),('GR','GR','GRC'),('GS','GS','SGS'),('GT','GT','GTM'),('GU','GU','GUM'),('GW','GW','GNB'),('GY','GY','GUY'),('HK','HK','HKG'),('HM','HM','HMD'),('HN','HN','HND'),('HR','HR','HRV'),('HT','HT','HTI'),('HU','HU','HUN'),('ID','ID','IDN'),('IE','IE','IRL'),('IL','IL','ISR'),('IM','IM','IMN'),('IN','IN','IND'),('IO','IO','IOT'),('IQ','IQ','IRQ'),('IR','IR','IRN'),('IS','IS','ISL'),('IT','IT','ITA'),('JE','JE','JEY'),('JM','JM','JAM'),('JO','JO','JOR'),('JP','JP','JPN'),('KE','KE','KEN'),('KG','KG','KGZ'),('KH','KH','KHM'),('KI','KI','KIR'),('KM','KM','COM'),('KN','KN','KNA'),('KP','KP','PRK'),('KR','KR','KOR'),('KW','KW','KWT'),('KY','KY','CYM'),('KZ','KZ','KAZ'),('LA','LA','LAO'),('LB','LB','LBN'),('LC','LC','LCA'),('LI','LI','LIE'),('LK','LK','LKA'),('LR','LR','LBR'),('LS','LS','LSO'),('LT','LT','LTU'),('LU','LU','LUX'),('LV','LV','LVA'),('LY','LY','LBY'),('MA','MA','MAR'),('MC','MC','MCO'),('MD','MD','MDA'),('ME','ME','MNE'),('MF','MF','MAF'),('MG','MG','MDG'),('MH','MH','MHL'),('MK','MK','MKD'),('ML','ML','MLI'),('MM','MM','MMR'),('MN','MN','MNG'),('MO','MO','MAC'),('MP','MP','MNP'),('MQ','MQ','MTQ'),('MR','MR','MRT'),('MS','MS','MSR'),('MT','MT','MLT'),('MU','MU','MUS'),('MV','MV','MDV'),('MW','MW','MWI'),('MX','MX','MEX'),('MY','MY','MYS'),('MZ','MZ','MOZ'),('NA','NA','NAM'),('NC','NC','NCL'),('NE','NE','NER'),('NF','NF','NFK'),('NG','NG','NGA'),('NI','NI','NIC'),('NL','NL','NLD'),('NO','NO','NOR'),('NP','NP','NPL'),('NR','NR','NRU'),('NU','NU','NIU'),('NZ','NZ','NZL'),('OM','OM','OMN'),('PA','PA','PAN'),('PE','PE','PER'),('PF','PF','PYF'),('PG','PG','PNG'),('PH','PH','PHL'),('PK','PK','PAK'),('PL','PL','POL'),('PM','PM','SPM'),('PN','PN','PCN'),('PS','PS','PSE'),('PT','PT','PRT'),('PW','PW','PLW'),('PY','PY','PRY'),('QA','QA','QAT'),('RE','RE','REU'),('RO','RO','ROU'),('RS','RS','SRB'),('RU','RU','RUS'),('RW','RW','RWA'),('SA','SA','SAU'),('SB','SB','SLB'),('SC','SC','SYC'),('SD','SD','SDN'),('SE','SE','SWE'),('SG','SG','SGP'),('SH','SH','SHN'),('SI','SI','SVN'),('SJ','SJ','SJM'),('SK','SK','SVK'),('SL','SL','SLE'),('SM','SM','SMR'),('SN','SN','SEN'),('SO','SO','SOM'),('SR','SR','SUR'),('ST','ST','STP'),('SV','SV','SLV'),('SY','SY','SYR'),('SZ','SZ','SWZ'),('TC','TC','TCA'),('TD','TD','TCD'),('TF','TF','ATF'),('TG','TG','TGO'),('TH','TH','THA'),('TJ','TJ','TJK'),('TK','TK','TKL'),('TL','TL','TLS'),('TM','TM','TKM'),('TN','TN','TUN'),('TO','TO','TON'),('TR','TR','TUR'),('TT','TT','TTO'),('TV','TV','TUV'),('TW','TW','TWN'),('TZ','TZ','TZA'),('UA','UA','UKR'),('UG','UG','UGA'),('UM','UM','UMI'),('US','US','USA'),('UY','UY','URY'),('UZ','UZ','UZB'),('VA','VA','VAT'),('VC','VC','VCT'),('VE','VE','VEN'),('VG','VG','VGB'),('VI','VI','VIR'),('VN','VN','VNM'),('VU','VU','VUT'),('WF','WF','WLF'),('WS','WS','WSM'),('YE','YE','YEM'),('YT','YT','MYT'),('ZA','ZA','ZAF'),('ZM','ZM','ZMB'),('ZW','ZW','ZWE');
/*!40000 ALTER TABLE `directory_country` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `directory_country_format`
--

DROP TABLE IF EXISTS `directory_country_format`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directory_country_format` (
  `country_format_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Country Format Id',
  `country_id` varchar(2) DEFAULT NULL COMMENT 'Country Id in ISO-2',
  `type` varchar(30) DEFAULT NULL COMMENT 'Country Format Type',
  `format` text NOT NULL COMMENT 'Country Format',
  PRIMARY KEY (`country_format_id`),
  UNIQUE KEY `DIRECTORY_COUNTRY_FORMAT_COUNTRY_ID_TYPE` (`country_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country Format';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `directory_country_format`
--

LOCK TABLES `directory_country_format` WRITE;
/*!40000 ALTER TABLE `directory_country_format` DISABLE KEYS */;
/*!40000 ALTER TABLE `directory_country_format` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `directory_country_region`
--

DROP TABLE IF EXISTS `directory_country_region`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directory_country_region` (
  `region_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Region Id',
  `country_id` varchar(4) NOT NULL DEFAULT '0' COMMENT 'Country Id in ISO-2',
  `code` varchar(32) DEFAULT NULL COMMENT 'Region code',
  `default_name` varchar(255) DEFAULT NULL COMMENT 'Region Name',
  PRIMARY KEY (`region_id`),
  KEY `DIRECTORY_COUNTRY_REGION_COUNTRY_ID` (`country_id`)
) ENGINE=InnoDB AUTO_INCREMENT=609 DEFAULT CHARSET=utf8 COMMENT='Directory Country Region';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `directory_country_region`
--

LOCK TABLES `directory_country_region` WRITE;
/*!40000 ALTER TABLE `directory_country_region` DISABLE KEYS */;
INSERT INTO `directory_country_region` VALUES (1,'US','AL','Alabama'),(2,'US','AK','Alaska'),(3,'US','AS','American Samoa'),(4,'US','AZ','Arizona'),(5,'US','AR','Arkansas'),(6,'US','AE','Armed Forces Africa'),(7,'US','AA','Armed Forces Americas'),(8,'US','AE','Armed Forces Canada'),(9,'US','AE','Armed Forces Europe'),(10,'US','AE','Armed Forces Middle East'),(11,'US','AP','Armed Forces Pacific'),(12,'US','CA','California'),(13,'US','CO','Colorado'),(14,'US','CT','Connecticut'),(15,'US','DE','Delaware'),(16,'US','DC','District of Columbia'),(17,'US','FM','Federated States Of Micronesia'),(18,'US','FL','Florida'),(19,'US','GA','Georgia'),(20,'US','GU','Guam'),(21,'US','HI','Hawaii'),(22,'US','ID','Idaho'),(23,'US','IL','Illinois'),(24,'US','IN','Indiana'),(25,'US','IA','Iowa'),(26,'US','KS','Kansas'),(27,'US','KY','Kentucky'),(28,'US','LA','Louisiana'),(29,'US','ME','Maine'),(30,'US','MH','Marshall Islands'),(31,'US','MD','Maryland'),(32,'US','MA','Massachusetts'),(33,'US','MI','Michigan'),(34,'US','MN','Minnesota'),(35,'US','MS','Mississippi'),(36,'US','MO','Missouri'),(37,'US','MT','Montana'),(38,'US','NE','Nebraska'),(39,'US','NV','Nevada'),(40,'US','NH','New Hampshire'),(41,'US','NJ','New Jersey'),(42,'US','NM','New Mexico'),(43,'US','NY','New York'),(44,'US','NC','North Carolina'),(45,'US','ND','North Dakota'),(46,'US','MP','Northern Mariana Islands'),(47,'US','OH','Ohio'),(48,'US','OK','Oklahoma'),(49,'US','OR','Oregon'),(50,'US','PW','Palau'),(51,'US','PA','Pennsylvania'),(52,'US','PR','Puerto Rico'),(53,'US','RI','Rhode Island'),(54,'US','SC','South Carolina'),(55,'US','SD','South Dakota'),(56,'US','TN','Tennessee'),(57,'US','TX','Texas'),(58,'US','UT','Utah'),(59,'US','VT','Vermont'),(60,'US','VI','Virgin Islands'),(61,'US','VA','Virginia'),(62,'US','WA','Washington'),(63,'US','WV','West Virginia'),(64,'US','WI','Wisconsin'),(65,'US','WY','Wyoming'),(66,'CA','AB','Alberta'),(67,'CA','BC','British Columbia'),(68,'CA','MB','Manitoba'),(69,'CA','NL','Newfoundland and Labrador'),(70,'CA','NB','New Brunswick'),(71,'CA','NS','Nova Scotia'),(72,'CA','NT','Northwest Territories'),(73,'CA','NU','Nunavut'),(74,'CA','ON','Ontario'),(75,'CA','PE','Prince Edward Island'),(76,'CA','QC','Quebec'),(77,'CA','SK','Saskatchewan'),(78,'CA','YT','Yukon Territory'),(79,'DE','NDS','Niedersachsen'),(80,'DE','BAW','Baden-Württemberg'),(81,'DE','BAY','Bayern'),(82,'DE','BER','Berlin'),(83,'DE','BRG','Brandenburg'),(84,'DE','BRE','Bremen'),(85,'DE','HAM','Hamburg'),(86,'DE','HES','Hessen'),(87,'DE','MEC','Mecklenburg-Vorpommern'),(88,'DE','NRW','Nordrhein-Westfalen'),(89,'DE','RHE','Rheinland-Pfalz'),(90,'DE','SAR','Saarland'),(91,'DE','SAS','Sachsen'),(92,'DE','SAC','Sachsen-Anhalt'),(93,'DE','SCN','Schleswig-Holstein'),(94,'DE','THE','Thüringen'),(95,'AT','WI','Wien'),(96,'AT','NO','Niederösterreich'),(97,'AT','OO','Oberösterreich'),(98,'AT','SB','Salzburg'),(99,'AT','KN','Kärnten'),(100,'AT','ST','Steiermark'),(101,'AT','TI','Tirol'),(102,'AT','BL','Burgenland'),(103,'AT','VB','Vorarlberg'),(104,'CH','AG','Aargau'),(105,'CH','AI','Appenzell Innerrhoden'),(106,'CH','AR','Appenzell Ausserrhoden'),(107,'CH','BE','Bern'),(108,'CH','BL','Basel-Landschaft'),(109,'CH','BS','Basel-Stadt'),(110,'CH','FR','Freiburg'),(111,'CH','GE','Genf'),(112,'CH','GL','Glarus'),(113,'CH','GR','Graubünden'),(114,'CH','JU','Jura'),(115,'CH','LU','Luzern'),(116,'CH','NE','Neuenburg'),(117,'CH','NW','Nidwalden'),(118,'CH','OW','Obwalden'),(119,'CH','SG','St. Gallen'),(120,'CH','SH','Schaffhausen'),(121,'CH','SO','Solothurn'),(122,'CH','SZ','Schwyz'),(123,'CH','TG','Thurgau'),(124,'CH','TI','Tessin'),(125,'CH','UR','Uri'),(126,'CH','VD','Waadt'),(127,'CH','VS','Wallis'),(128,'CH','ZG','Zug'),(129,'CH','ZH','Zürich'),(130,'ES','A Coruсa','A Coruña'),(131,'ES','Alava','Alava'),(132,'ES','Albacete','Albacete'),(133,'ES','Alicante','Alicante'),(134,'ES','Almeria','Almeria'),(135,'ES','Asturias','Asturias'),(136,'ES','Avila','Avila'),(137,'ES','Badajoz','Badajoz'),(138,'ES','Baleares','Baleares'),(139,'ES','Barcelona','Barcelona'),(140,'ES','Burgos','Burgos'),(141,'ES','Caceres','Caceres'),(142,'ES','Cadiz','Cadiz'),(143,'ES','Cantabria','Cantabria'),(144,'ES','Castellon','Castellon'),(145,'ES','Ceuta','Ceuta'),(146,'ES','Ciudad Real','Ciudad Real'),(147,'ES','Cordoba','Cordoba'),(148,'ES','Cuenca','Cuenca'),(149,'ES','Girona','Girona'),(150,'ES','Granada','Granada'),(151,'ES','Guadalajara','Guadalajara'),(152,'ES','Guipuzcoa','Guipuzcoa'),(153,'ES','Huelva','Huelva'),(154,'ES','Huesca','Huesca'),(155,'ES','Jaen','Jaen'),(156,'ES','La Rioja','La Rioja'),(157,'ES','Las Palmas','Las Palmas'),(158,'ES','Leon','Leon'),(159,'ES','Lleida','Lleida'),(160,'ES','Lugo','Lugo'),(161,'ES','Madrid','Madrid'),(162,'ES','Malaga','Malaga'),(163,'ES','Melilla','Melilla'),(164,'ES','Murcia','Murcia'),(165,'ES','Navarra','Navarra'),(166,'ES','Ourense','Ourense'),(167,'ES','Palencia','Palencia'),(168,'ES','Pontevedra','Pontevedra'),(169,'ES','Salamanca','Salamanca'),(170,'ES','Santa Cruz de Tenerife','Santa Cruz de Tenerife'),(171,'ES','Segovia','Segovia'),(172,'ES','Sevilla','Sevilla'),(173,'ES','Soria','Soria'),(174,'ES','Tarragona','Tarragona'),(175,'ES','Teruel','Teruel'),(176,'ES','Toledo','Toledo'),(177,'ES','Valencia','Valencia'),(178,'ES','Valladolid','Valladolid'),(179,'ES','Vizcaya','Vizcaya'),(180,'ES','Zamora','Zamora'),(181,'ES','Zaragoza','Zaragoza'),(182,'FR','1','Ain'),(183,'FR','2','Aisne'),(184,'FR','3','Allier'),(185,'FR','4','Alpes-de-Haute-Provence'),(186,'FR','5','Hautes-Alpes'),(187,'FR','6','Alpes-Maritimes'),(188,'FR','7','Ardèche'),(189,'FR','8','Ardennes'),(190,'FR','9','Ariège'),(191,'FR','10','Aube'),(192,'FR','11','Aude'),(193,'FR','12','Aveyron'),(194,'FR','13','Bouches-du-Rhône'),(195,'FR','14','Calvados'),(196,'FR','15','Cantal'),(197,'FR','16','Charente'),(198,'FR','17','Charente-Maritime'),(199,'FR','18','Cher'),(200,'FR','19','Corrèze'),(201,'FR','2A','Corse-du-Sud'),(202,'FR','2B','Haute-Corse'),(203,'FR','21','Côte-d\'Or'),(204,'FR','22','Côtes-d\'Armor'),(205,'FR','23','Creuse'),(206,'FR','24','Dordogne'),(207,'FR','25','Doubs'),(208,'FR','26','Drôme'),(209,'FR','27','Eure'),(210,'FR','28','Eure-et-Loir'),(211,'FR','29','Finistère'),(212,'FR','30','Gard'),(213,'FR','31','Haute-Garonne'),(214,'FR','32','Gers'),(215,'FR','33','Gironde'),(216,'FR','34','Hérault'),(217,'FR','35','Ille-et-Vilaine'),(218,'FR','36','Indre'),(219,'FR','37','Indre-et-Loire'),(220,'FR','38','Isère'),(221,'FR','39','Jura'),(222,'FR','40','Landes'),(223,'FR','41','Loir-et-Cher'),(224,'FR','42','Loire'),(225,'FR','43','Haute-Loire'),(226,'FR','44','Loire-Atlantique'),(227,'FR','45','Loiret'),(228,'FR','46','Lot'),(229,'FR','47','Lot-et-Garonne'),(230,'FR','48','Lozère'),(231,'FR','49','Maine-et-Loire'),(232,'FR','50','Manche'),(233,'FR','51','Marne'),(234,'FR','52','Haute-Marne'),(235,'FR','53','Mayenne'),(236,'FR','54','Meurthe-et-Moselle'),(237,'FR','55','Meuse'),(238,'FR','56','Morbihan'),(239,'FR','57','Moselle'),(240,'FR','58','Nièvre'),(241,'FR','59','Nord'),(242,'FR','60','Oise'),(243,'FR','61','Orne'),(244,'FR','62','Pas-de-Calais'),(245,'FR','63','Puy-de-Dôme'),(246,'FR','64','Pyrénées-Atlantiques'),(247,'FR','65','Hautes-Pyrénées'),(248,'FR','66','Pyrénées-Orientales'),(249,'FR','67','Bas-Rhin'),(250,'FR','68','Haut-Rhin'),(251,'FR','69','Rhône'),(252,'FR','70','Haute-Saône'),(253,'FR','71','Saône-et-Loire'),(254,'FR','72','Sarthe'),(255,'FR','73','Savoie'),(256,'FR','74','Haute-Savoie'),(257,'FR','75','Paris'),(258,'FR','76','Seine-Maritime'),(259,'FR','77','Seine-et-Marne'),(260,'FR','78','Yvelines'),(261,'FR','79','Deux-Sèvres'),(262,'FR','80','Somme'),(263,'FR','81','Tarn'),(264,'FR','82','Tarn-et-Garonne'),(265,'FR','83','Var'),(266,'FR','84','Vaucluse'),(267,'FR','85','Vendée'),(268,'FR','86','Vienne'),(269,'FR','87','Haute-Vienne'),(270,'FR','88','Vosges'),(271,'FR','89','Yonne'),(272,'FR','90','Territoire-de-Belfort'),(273,'FR','91','Essonne'),(274,'FR','92','Hauts-de-Seine'),(275,'FR','93','Seine-Saint-Denis'),(276,'FR','94','Val-de-Marne'),(277,'FR','95','Val-d\'Oise'),(278,'RO','AB','Alba'),(279,'RO','AR','Arad'),(280,'RO','AG','Argeş'),(281,'RO','BC','Bacău'),(282,'RO','BH','Bihor'),(283,'RO','BN','Bistriţa-Năsăud'),(284,'RO','BT','Botoşani'),(285,'RO','BV','Braşov'),(286,'RO','BR','Brăila'),(287,'RO','B','Bucureşti'),(288,'RO','BZ','Buzău'),(289,'RO','CS','Caraş-Severin'),(290,'RO','CL','Călăraşi'),(291,'RO','CJ','Cluj'),(292,'RO','CT','Constanţa'),(293,'RO','CV','Covasna'),(294,'RO','DB','Dâmboviţa'),(295,'RO','DJ','Dolj'),(296,'RO','GL','Galaţi'),(297,'RO','GR','Giurgiu'),(298,'RO','GJ','Gorj'),(299,'RO','HR','Harghita'),(300,'RO','HD','Hunedoara'),(301,'RO','IL','Ialomiţa'),(302,'RO','IS','Iaşi'),(303,'RO','IF','Ilfov'),(304,'RO','MM','Maramureş'),(305,'RO','MH','Mehedinţi'),(306,'RO','MS','Mureş'),(307,'RO','NT','Neamţ'),(308,'RO','OT','Olt'),(309,'RO','PH','Prahova'),(310,'RO','SM','Satu-Mare'),(311,'RO','SJ','Sălaj'),(312,'RO','SB','Sibiu'),(313,'RO','SV','Suceava'),(314,'RO','TR','Teleorman'),(315,'RO','TM','Timiş'),(316,'RO','TL','Tulcea'),(317,'RO','VS','Vaslui'),(318,'RO','VL','Vâlcea'),(319,'RO','VN','Vrancea'),(320,'FI','Lappi','Lappi'),(321,'FI','Pohjois-Pohjanmaa','Pohjois-Pohjanmaa'),(322,'FI','Kainuu','Kainuu'),(323,'FI','Pohjois-Karjala','Pohjois-Karjala'),(324,'FI','Pohjois-Savo','Pohjois-Savo'),(325,'FI','Etelä-Savo','Etelä-Savo'),(326,'FI','Etelä-Pohjanmaa','Etelä-Pohjanmaa'),(327,'FI','Pohjanmaa','Pohjanmaa'),(328,'FI','Pirkanmaa','Pirkanmaa'),(329,'FI','Satakunta','Satakunta'),(330,'FI','Keski-Pohjanmaa','Keski-Pohjanmaa'),(331,'FI','Keski-Suomi','Keski-Suomi'),(332,'FI','Varsinais-Suomi','Varsinais-Suomi'),(333,'FI','Etelä-Karjala','Etelä-Karjala'),(334,'FI','Päijät-Häme','Päijät-Häme'),(335,'FI','Kanta-Häme','Kanta-Häme'),(336,'FI','Uusimaa','Uusimaa'),(337,'FI','Itä-Uusimaa','Itä-Uusimaa'),(338,'FI','Kymenlaakso','Kymenlaakso'),(339,'FI','Ahvenanmaa','Ahvenanmaa'),(340,'EE','EE-37','Harjumaa'),(341,'EE','EE-39','Hiiumaa'),(342,'EE','EE-44','Ida-Virumaa'),(343,'EE','EE-49','Jõgevamaa'),(344,'EE','EE-51','Järvamaa'),(345,'EE','EE-57','Läänemaa'),(346,'EE','EE-59','Lääne-Virumaa'),(347,'EE','EE-65','Põlvamaa'),(348,'EE','EE-67','Pärnumaa'),(349,'EE','EE-70','Raplamaa'),(350,'EE','EE-74','Saaremaa'),(351,'EE','EE-78','Tartumaa'),(352,'EE','EE-82','Valgamaa'),(353,'EE','EE-84','Viljandimaa'),(354,'EE','EE-86','Võrumaa'),(355,'LV','LV-DGV','Daugavpils'),(356,'LV','LV-JEL','Jelgava'),(357,'LV','Jēkabpils','Jēkabpils'),(358,'LV','LV-JUR','Jūrmala'),(359,'LV','LV-LPX','Liepāja'),(360,'LV','LV-LE','Liepājas novads'),(361,'LV','LV-REZ','Rēzekne'),(362,'LV','LV-RIX','Rīga'),(363,'LV','LV-RI','Rīgas novads'),(364,'LV','Valmiera','Valmiera'),(365,'LV','LV-VEN','Ventspils'),(366,'LV','Aglonas novads','Aglonas novads'),(367,'LV','LV-AI','Aizkraukles novads'),(368,'LV','Aizputes novads','Aizputes novads'),(369,'LV','Aknīstes novads','Aknīstes novads'),(370,'LV','Alojas novads','Alojas novads'),(371,'LV','Alsungas novads','Alsungas novads'),(372,'LV','LV-AL','Alūksnes novads'),(373,'LV','Amatas novads','Amatas novads'),(374,'LV','Apes novads','Apes novads'),(375,'LV','Auces novads','Auces novads'),(376,'LV','Babītes novads','Babītes novads'),(377,'LV','Baldones novads','Baldones novads'),(378,'LV','Baltinavas novads','Baltinavas novads'),(379,'LV','LV-BL','Balvu novads'),(380,'LV','LV-BU','Bauskas novads'),(381,'LV','Beverīnas novads','Beverīnas novads'),(382,'LV','Brocēnu novads','Brocēnu novads'),(383,'LV','Burtnieku novads','Burtnieku novads'),(384,'LV','Carnikavas novads','Carnikavas novads'),(385,'LV','Cesvaines novads','Cesvaines novads'),(386,'LV','Ciblas novads','Ciblas novads'),(387,'LV','LV-CE','Cēsu novads'),(388,'LV','Dagdas novads','Dagdas novads'),(389,'LV','LV-DA','Daugavpils novads'),(390,'LV','LV-DO','Dobeles novads'),(391,'LV','Dundagas novads','Dundagas novads'),(392,'LV','Durbes novads','Durbes novads'),(393,'LV','Engures novads','Engures novads'),(394,'LV','Garkalnes novads','Garkalnes novads'),(395,'LV','Grobiņas novads','Grobiņas novads'),(396,'LV','LV-GU','Gulbenes novads'),(397,'LV','Iecavas novads','Iecavas novads'),(398,'LV','Ikšķiles novads','Ikšķiles novads'),(399,'LV','Ilūkstes novads','Ilūkstes novads'),(400,'LV','Inčukalna novads','Inčukalna novads'),(401,'LV','Jaunjelgavas novads','Jaunjelgavas novads'),(402,'LV','Jaunpiebalgas novads','Jaunpiebalgas novads'),(403,'LV','Jaunpils novads','Jaunpils novads'),(404,'LV','LV-JL','Jelgavas novads'),(405,'LV','LV-JK','Jēkabpils novads'),(406,'LV','Kandavas novads','Kandavas novads'),(407,'LV','Kokneses novads','Kokneses novads'),(408,'LV','Krimuldas novads','Krimuldas novads'),(409,'LV','Krustpils novads','Krustpils novads'),(410,'LV','LV-KR','Krāslavas novads'),(411,'LV','LV-KU','Kuldīgas novads'),(412,'LV','Kārsavas novads','Kārsavas novads'),(413,'LV','Lielvārdes novads','Lielvārdes novads'),(414,'LV','LV-LM','Limbažu novads'),(415,'LV','Lubānas novads','Lubānas novads'),(416,'LV','LV-LU','Ludzas novads'),(417,'LV','Līgatnes novads','Līgatnes novads'),(418,'LV','Līvānu novads','Līvānu novads'),(419,'LV','LV-MA','Madonas novads'),(420,'LV','Mazsalacas novads','Mazsalacas novads'),(421,'LV','Mālpils novads','Mālpils novads'),(422,'LV','Mārupes novads','Mārupes novads'),(423,'LV','Naukšēnu novads','Naukšēnu novads'),(424,'LV','Neretas novads','Neretas novads'),(425,'LV','Nīcas novads','Nīcas novads'),(426,'LV','LV-OG','Ogres novads'),(427,'LV','Olaines novads','Olaines novads'),(428,'LV','Ozolnieku novads','Ozolnieku novads'),(429,'LV','LV-PR','Preiļu novads'),(430,'LV','Priekules novads','Priekules novads'),(431,'LV','Priekuļu novads','Priekuļu novads'),(432,'LV','Pārgaujas novads','Pārgaujas novads'),(433,'LV','Pāvilostas novads','Pāvilostas novads'),(434,'LV','Pļaviņu novads','Pļaviņu novads'),(435,'LV','Raunas novads','Raunas novads'),(436,'LV','Riebiņu novads','Riebiņu novads'),(437,'LV','Rojas novads','Rojas novads'),(438,'LV','Ropažu novads','Ropažu novads'),(439,'LV','Rucavas novads','Rucavas novads'),(440,'LV','Rugāju novads','Rugāju novads'),(441,'LV','Rundāles novads','Rundāles novads'),(442,'LV','LV-RE','Rēzeknes novads'),(443,'LV','Rūjienas novads','Rūjienas novads'),(444,'LV','Salacgrīvas novads','Salacgrīvas novads'),(445,'LV','Salas novads','Salas novads'),(446,'LV','Salaspils novads','Salaspils novads'),(447,'LV','LV-SA','Saldus novads'),(448,'LV','Saulkrastu novads','Saulkrastu novads'),(449,'LV','Siguldas novads','Siguldas novads'),(450,'LV','Skrundas novads','Skrundas novads'),(451,'LV','Skrīveru novads','Skrīveru novads'),(452,'LV','Smiltenes novads','Smiltenes novads'),(453,'LV','Stopiņu novads','Stopiņu novads'),(454,'LV','Strenču novads','Strenču novads'),(455,'LV','Sējas novads','Sējas novads'),(456,'LV','LV-TA','Talsu novads'),(457,'LV','LV-TU','Tukuma novads'),(458,'LV','Tērvetes novads','Tērvetes novads'),(459,'LV','Vaiņodes novads','Vaiņodes novads'),(460,'LV','LV-VK','Valkas novads'),(461,'LV','LV-VM','Valmieras novads'),(462,'LV','Varakļānu novads','Varakļānu novads'),(463,'LV','Vecpiebalgas novads','Vecpiebalgas novads'),(464,'LV','Vecumnieku novads','Vecumnieku novads'),(465,'LV','LV-VE','Ventspils novads'),(466,'LV','Viesītes novads','Viesītes novads'),(467,'LV','Viļakas novads','Viļakas novads'),(468,'LV','Viļānu novads','Viļānu novads'),(469,'LV','Vārkavas novads','Vārkavas novads'),(470,'LV','Zilupes novads','Zilupes novads'),(471,'LV','Ādažu novads','Ādažu novads'),(472,'LV','Ērgļu novads','Ērgļu novads'),(473,'LV','Ķeguma novads','Ķeguma novads'),(474,'LV','Ķekavas novads','Ķekavas novads'),(475,'LT','LT-AL','Alytaus Apskritis'),(476,'LT','LT-KU','Kauno Apskritis'),(477,'LT','LT-KL','Klaipėdos Apskritis'),(478,'LT','LT-MR','Marijampolės Apskritis'),(479,'LT','LT-PN','Panevėžio Apskritis'),(480,'LT','LT-SA','Šiaulių Apskritis'),(481,'LT','LT-TA','Tauragės Apskritis'),(482,'LT','LT-TE','Telšių Apskritis'),(483,'LT','LT-UT','Utenos Apskritis'),(484,'LT','LT-VL','Vilniaus Apskritis'),(485,'BR','AC','Acre'),(486,'BR','AL','Alagoas'),(487,'BR','AP','Amapá'),(488,'BR','AM','Amazonas'),(489,'BR','BA','Bahia'),(490,'BR','CE','Ceará'),(491,'BR','ES','Espírito Santo'),(492,'BR','GO','Goiás'),(493,'BR','MA','Maranhão'),(494,'BR','MT','Mato Grosso'),(495,'BR','MS','Mato Grosso do Sul'),(496,'BR','MG','Minas Gerais'),(497,'BR','PA','Pará'),(498,'BR','PB','Paraíba'),(499,'BR','PR','Paraná'),(500,'BR','PE','Pernambuco'),(501,'BR','PI','Piauí'),(502,'BR','RJ','Rio de Janeiro'),(503,'BR','RN','Rio Grande do Norte'),(504,'BR','RS','Rio Grande do Sul'),(505,'BR','RO','Rondônia'),(506,'BR','RR','Roraima'),(507,'BR','SC','Santa Catarina'),(508,'BR','SP','São Paulo'),(509,'BR','SE','Sergipe'),(510,'BR','TO','Tocantins'),(511,'BR','DF','Distrito Federal'),(512,'HR','HR-01','Zagrebačka županija'),(513,'HR','HR-02','Krapinsko-zagorska županija'),(514,'HR','HR-03','Sisačko-moslavačka županija'),(515,'HR','HR-04','Karlovačka županija'),(516,'HR','HR-05','Varaždinska županija'),(517,'HR','HR-06','Koprivničko-križevačka županija'),(518,'HR','HR-07','Bjelovarsko-bilogorska županija'),(519,'HR','HR-08','Primorsko-goranska županija'),(520,'HR','HR-09','Ličko-senjska županija'),(521,'HR','HR-10','Virovitičko-podravska županija'),(522,'HR','HR-11','Požeško-slavonska županija'),(523,'HR','HR-12','Brodsko-posavska županija'),(524,'HR','HR-13','Zadarska županija'),(525,'HR','HR-14','Osječko-baranjska županija'),(526,'HR','HR-15','Šibensko-kninska županija'),(527,'HR','HR-16','Vukovarsko-srijemska županija'),(528,'HR','HR-17','Splitsko-dalmatinska županija'),(529,'HR','HR-18','Istarska županija'),(530,'HR','HR-19','Dubrovačko-neretvanska županija'),(531,'HR','HR-20','Međimurska županija'),(532,'HR','HR-21','Grad Zagreb'),(533,'IN','AN','Andaman and Nicobar Islands'),(534,'IN','AP','Andhra Pradesh'),(535,'IN','AR','Arunachal Pradesh'),(536,'IN','AS','Assam'),(537,'IN','BR','Bihar'),(538,'IN','CH','Chandigarh'),(539,'IN','CT','Chhattisgarh'),(540,'IN','DN','Dadra and Nagar Haveli'),(541,'IN','DD','Daman and Diu'),(542,'IN','DL','Delhi'),(543,'IN','GA','Goa'),(544,'IN','GJ','Gujarat'),(545,'IN','HR','Haryana'),(546,'IN','HP','Himachal Pradesh'),(547,'IN','JK','Jammu and Kashmir'),(548,'IN','JH','Jharkhand'),(549,'IN','KA','Karnataka'),(550,'IN','KL','Kerala'),(551,'IN','LD','Lakshadweep'),(552,'IN','MP','Madhya Pradesh'),(553,'IN','MH','Maharashtra'),(554,'IN','MN','Manipur'),(555,'IN','ML','Meghalaya'),(556,'IN','MZ','Mizoram'),(557,'IN','NL','Nagaland'),(558,'IN','OR','Odisha'),(559,'IN','PY','Puducherry'),(560,'IN','PB','Punjab'),(561,'IN','RJ','Rajasthan'),(562,'IN','SK','Sikkim'),(563,'IN','TN','Tamil Nadu'),(564,'IN','TG','Telangana'),(565,'IN','TR','Tripura'),(566,'IN','UP','Uttar Pradesh'),(567,'IN','UT','Uttarakhand'),(568,'IN','WB','West Bengal'),(569,'AU','ACT','Australian Capital Territory'),(570,'AU','NSW','New South Wales'),(571,'AU','VIC','Victoria'),(572,'AU','QLD','Queensland'),(573,'AU','SA','South Australia'),(574,'AU','TAS','Tasmania'),(575,'AU','WA','Western Australia'),(576,'AU','NT','Northern Territory'),(577,'MX','AGU','Aguascalientes'),(578,'MX','BCN','Baja California'),(579,'MX','BCS','Baja California Sur'),(580,'MX','CAM','Campeche'),(581,'MX','CHP','Chiapas'),(582,'MX','CHH','Chihuahua'),(583,'MX','CMX','Ciudad de México'),(584,'MX','COA','Coahuila'),(585,'MX','COL','Colima'),(586,'MX','DUR','Durango'),(587,'MX','MEX','Estado de México'),(588,'MX','GUA','Guanajuato'),(589,'MX','GRO','Guerrero'),(590,'MX','HID','Hidalgo'),(591,'MX','JAL','Jalisco'),(592,'MX','MIC','Michoacán'),(593,'MX','MOR','Morelos'),(594,'MX','NAY','Nayarit'),(595,'MX','NLE','Nuevo León'),(596,'MX','OAX','Oaxaca'),(597,'MX','PUE','Puebla'),(598,'MX','QUE','Querétaro'),(599,'MX','ROO','Quintana Roo'),(600,'MX','SLP','San Luis Potosí'),(601,'MX','SIN','Sinaloa'),(602,'MX','SON','Sonora'),(603,'MX','TAB','Tabasco'),(604,'MX','TAM','Tamaulipas'),(605,'MX','TLA','Tlaxcala'),(606,'MX','VER','Veracruz'),(607,'MX','YUC','Yucatán'),(608,'MX','ZAC','Zacatecas');
/*!40000 ALTER TABLE `directory_country_region` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `directory_country_region_name`
--

DROP TABLE IF EXISTS `directory_country_region_name`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directory_country_region_name` (
  `locale` varchar(8) NOT NULL COMMENT 'Locale',
  `region_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Region Id',
  `name` varchar(255) DEFAULT NULL COMMENT 'Region Name',
  PRIMARY KEY (`locale`,`region_id`),
  KEY `DIRECTORY_COUNTRY_REGION_NAME_REGION_ID` (`region_id`),
  CONSTRAINT `DIR_COUNTRY_REGION_NAME_REGION_ID_DIR_COUNTRY_REGION_REGION_ID` FOREIGN KEY (`region_id`) REFERENCES `directory_country_region` (`region_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country Region Name';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `directory_country_region_name`
--

LOCK TABLES `directory_country_region_name` WRITE;
/*!40000 ALTER TABLE `directory_country_region_name` DISABLE KEYS */;
INSERT INTO `directory_country_region_name` VALUES ('en_US',1,'Alabama'),('en_US',2,'Alaska'),('en_US',3,'American Samoa'),('en_US',4,'Arizona'),('en_US',5,'Arkansas'),('en_US',6,'Armed Forces Africa'),('en_US',7,'Armed Forces Americas'),('en_US',8,'Armed Forces Canada'),('en_US',9,'Armed Forces Europe'),('en_US',10,'Armed Forces Middle East'),('en_US',11,'Armed Forces Pacific'),('en_US',12,'California'),('en_US',13,'Colorado'),('en_US',14,'Connecticut'),('en_US',15,'Delaware'),('en_US',16,'District of Columbia'),('en_US',17,'Federated States Of Micronesia'),('en_US',18,'Florida'),('en_US',19,'Georgia'),('en_US',20,'Guam'),('en_US',21,'Hawaii'),('en_US',22,'Idaho'),('en_US',23,'Illinois'),('en_US',24,'Indiana'),('en_US',25,'Iowa'),('en_US',26,'Kansas'),('en_US',27,'Kentucky'),('en_US',28,'Louisiana'),('en_US',29,'Maine'),('en_US',30,'Marshall Islands'),('en_US',31,'Maryland'),('en_US',32,'Massachusetts'),('en_US',33,'Michigan'),('en_US',34,'Minnesota'),('en_US',35,'Mississippi'),('en_US',36,'Missouri'),('en_US',37,'Montana'),('en_US',38,'Nebraska'),('en_US',39,'Nevada'),('en_US',40,'New Hampshire'),('en_US',41,'New Jersey'),('en_US',42,'New Mexico'),('en_US',43,'New York'),('en_US',44,'North Carolina'),('en_US',45,'North Dakota'),('en_US',46,'Northern Mariana Islands'),('en_US',47,'Ohio'),('en_US',48,'Oklahoma'),('en_US',49,'Oregon'),('en_US',50,'Palau'),('en_US',51,'Pennsylvania'),('en_US',52,'Puerto Rico'),('en_US',53,'Rhode Island'),('en_US',54,'South Carolina'),('en_US',55,'South Dakota'),('en_US',56,'Tennessee'),('en_US',57,'Texas'),('en_US',58,'Utah'),('en_US',59,'Vermont'),('en_US',60,'Virgin Islands'),('en_US',61,'Virginia'),('en_US',62,'Washington'),('en_US',63,'West Virginia'),('en_US',64,'Wisconsin'),('en_US',65,'Wyoming'),('en_US',66,'Alberta'),('en_US',67,'British Columbia'),('en_US',68,'Manitoba'),('en_US',69,'Newfoundland and Labrador'),('en_US',70,'New Brunswick'),('en_US',71,'Nova Scotia'),('en_US',72,'Northwest Territories'),('en_US',73,'Nunavut'),('en_US',74,'Ontario'),('en_US',75,'Prince Edward Island'),('en_US',76,'Quebec'),('en_US',77,'Saskatchewan'),('en_US',78,'Yukon Territory'),('en_US',79,'Niedersachsen'),('en_US',80,'Baden-Württemberg'),('en_US',81,'Bayern'),('en_US',82,'Berlin'),('en_US',83,'Brandenburg'),('en_US',84,'Bremen'),('en_US',85,'Hamburg'),('en_US',86,'Hessen'),('en_US',87,'Mecklenburg-Vorpommern'),('en_US',88,'Nordrhein-Westfalen'),('en_US',89,'Rheinland-Pfalz'),('en_US',90,'Saarland'),('en_US',91,'Sachsen'),('en_US',92,'Sachsen-Anhalt'),('en_US',93,'Schleswig-Holstein'),('en_US',94,'Thüringen'),('en_US',95,'Wien'),('en_US',96,'Niederösterreich'),('en_US',97,'Oberösterreich'),('en_US',98,'Salzburg'),('en_US',99,'Kärnten'),('en_US',100,'Steiermark'),('en_US',101,'Tirol'),('en_US',102,'Burgenland'),('en_US',103,'Vorarlberg'),('en_US',104,'Aargau'),('en_US',105,'Appenzell Innerrhoden'),('en_US',106,'Appenzell Ausserrhoden'),('en_US',107,'Bern'),('en_US',108,'Basel-Landschaft'),('en_US',109,'Basel-Stadt'),('en_US',110,'Freiburg'),('en_US',111,'Genf'),('en_US',112,'Glarus'),('en_US',113,'Graubünden'),('en_US',114,'Jura'),('en_US',115,'Luzern'),('en_US',116,'Neuenburg'),('en_US',117,'Nidwalden'),('en_US',118,'Obwalden'),('en_US',119,'St. Gallen'),('en_US',120,'Schaffhausen'),('en_US',121,'Solothurn'),('en_US',122,'Schwyz'),('en_US',123,'Thurgau'),('en_US',124,'Tessin'),('en_US',125,'Uri'),('en_US',126,'Waadt'),('en_US',127,'Wallis'),('en_US',128,'Zug'),('en_US',129,'Zürich'),('en_US',130,'A Coruña'),('en_US',131,'Alava'),('en_US',132,'Albacete'),('en_US',133,'Alicante'),('en_US',134,'Almeria'),('en_US',135,'Asturias'),('en_US',136,'Avila'),('en_US',137,'Badajoz'),('en_US',138,'Baleares'),('en_US',139,'Barcelona'),('en_US',140,'Burgos'),('en_US',141,'Caceres'),('en_US',142,'Cadiz'),('en_US',143,'Cantabria'),('en_US',144,'Castellon'),('en_US',145,'Ceuta'),('en_US',146,'Ciudad Real'),('en_US',147,'Cordoba'),('en_US',148,'Cuenca'),('en_US',149,'Girona'),('en_US',150,'Granada'),('en_US',151,'Guadalajara'),('en_US',152,'Guipuzcoa'),('en_US',153,'Huelva'),('en_US',154,'Huesca'),('en_US',155,'Jaen'),('en_US',156,'La Rioja'),('en_US',157,'Las Palmas'),('en_US',158,'Leon'),('en_US',159,'Lleida'),('en_US',160,'Lugo'),('en_US',161,'Madrid'),('en_US',162,'Malaga'),('en_US',163,'Melilla'),('en_US',164,'Murcia'),('en_US',165,'Navarra'),('en_US',166,'Ourense'),('en_US',167,'Palencia'),('en_US',168,'Pontevedra'),('en_US',169,'Salamanca'),('en_US',170,'Santa Cruz de Tenerife'),('en_US',171,'Segovia'),('en_US',172,'Sevilla'),('en_US',173,'Soria'),('en_US',174,'Tarragona'),('en_US',175,'Teruel'),('en_US',176,'Toledo'),('en_US',177,'Valencia'),('en_US',178,'Valladolid'),('en_US',179,'Vizcaya'),('en_US',180,'Zamora'),('en_US',181,'Zaragoza'),('en_US',182,'Ain'),('en_US',183,'Aisne'),('en_US',184,'Allier'),('en_US',185,'Alpes-de-Haute-Provence'),('en_US',186,'Hautes-Alpes'),('en_US',187,'Alpes-Maritimes'),('en_US',188,'Ardèche'),('en_US',189,'Ardennes'),('en_US',190,'Ariège'),('en_US',191,'Aube'),('en_US',192,'Aude'),('en_US',193,'Aveyron'),('en_US',194,'Bouches-du-Rhône'),('en_US',195,'Calvados'),('en_US',196,'Cantal'),('en_US',197,'Charente'),('en_US',198,'Charente-Maritime'),('en_US',199,'Cher'),('en_US',200,'Corrèze'),('en_US',201,'Corse-du-Sud'),('en_US',202,'Haute-Corse'),('en_US',203,'Côte-d\'Or'),('en_US',204,'Côtes-d\'Armor'),('en_US',205,'Creuse'),('en_US',206,'Dordogne'),('en_US',207,'Doubs'),('en_US',208,'Drôme'),('en_US',209,'Eure'),('en_US',210,'Eure-et-Loir'),('en_US',211,'Finistère'),('en_US',212,'Gard'),('en_US',213,'Haute-Garonne'),('en_US',214,'Gers'),('en_US',215,'Gironde'),('en_US',216,'Hérault'),('en_US',217,'Ille-et-Vilaine'),('en_US',218,'Indre'),('en_US',219,'Indre-et-Loire'),('en_US',220,'Isère'),('en_US',221,'Jura'),('en_US',222,'Landes'),('en_US',223,'Loir-et-Cher'),('en_US',224,'Loire'),('en_US',225,'Haute-Loire'),('en_US',226,'Loire-Atlantique'),('en_US',227,'Loiret'),('en_US',228,'Lot'),('en_US',229,'Lot-et-Garonne'),('en_US',230,'Lozère'),('en_US',231,'Maine-et-Loire'),('en_US',232,'Manche'),('en_US',233,'Marne'),('en_US',234,'Haute-Marne'),('en_US',235,'Mayenne'),('en_US',236,'Meurthe-et-Moselle'),('en_US',237,'Meuse'),('en_US',238,'Morbihan'),('en_US',239,'Moselle'),('en_US',240,'Nièvre'),('en_US',241,'Nord'),('en_US',242,'Oise'),('en_US',243,'Orne'),('en_US',244,'Pas-de-Calais'),('en_US',245,'Puy-de-Dôme'),('en_US',246,'Pyrénées-Atlantiques'),('en_US',247,'Hautes-Pyrénées'),('en_US',248,'Pyrénées-Orientales'),('en_US',249,'Bas-Rhin'),('en_US',250,'Haut-Rhin'),('en_US',251,'Rhône'),('en_US',252,'Haute-Saône'),('en_US',253,'Saône-et-Loire'),('en_US',254,'Sarthe'),('en_US',255,'Savoie'),('en_US',256,'Haute-Savoie'),('en_US',257,'Paris'),('en_US',258,'Seine-Maritime'),('en_US',259,'Seine-et-Marne'),('en_US',260,'Yvelines'),('en_US',261,'Deux-Sèvres'),('en_US',262,'Somme'),('en_US',263,'Tarn'),('en_US',264,'Tarn-et-Garonne'),('en_US',265,'Var'),('en_US',266,'Vaucluse'),('en_US',267,'Vendée'),('en_US',268,'Vienne'),('en_US',269,'Haute-Vienne'),('en_US',270,'Vosges'),('en_US',271,'Yonne'),('en_US',272,'Territoire-de-Belfort'),('en_US',273,'Essonne'),('en_US',274,'Hauts-de-Seine'),('en_US',275,'Seine-Saint-Denis'),('en_US',276,'Val-de-Marne'),('en_US',277,'Val-d\'Oise'),('en_US',278,'Alba'),('en_US',279,'Arad'),('en_US',280,'Argeş'),('en_US',281,'Bacău'),('en_US',282,'Bihor'),('en_US',283,'Bistriţa-Năsăud'),('en_US',284,'Botoşani'),('en_US',285,'Braşov'),('en_US',286,'Brăila'),('en_US',287,'Bucureşti'),('en_US',288,'Buzău'),('en_US',289,'Caraş-Severin'),('en_US',290,'Călăraşi'),('en_US',291,'Cluj'),('en_US',292,'Constanţa'),('en_US',293,'Covasna'),('en_US',294,'Dâmboviţa'),('en_US',295,'Dolj'),('en_US',296,'Galaţi'),('en_US',297,'Giurgiu'),('en_US',298,'Gorj'),('en_US',299,'Harghita'),('en_US',300,'Hunedoara'),('en_US',301,'Ialomiţa'),('en_US',302,'Iaşi'),('en_US',303,'Ilfov'),('en_US',304,'Maramureş'),('en_US',305,'Mehedinţi'),('en_US',306,'Mureş'),('en_US',307,'Neamţ'),('en_US',308,'Olt'),('en_US',309,'Prahova'),('en_US',310,'Satu-Mare'),('en_US',311,'Sălaj'),('en_US',312,'Sibiu'),('en_US',313,'Suceava'),('en_US',314,'Teleorman'),('en_US',315,'Timiş'),('en_US',316,'Tulcea'),('en_US',317,'Vaslui'),('en_US',318,'Vâlcea'),('en_US',319,'Vrancea'),('en_US',320,'Lappi'),('en_US',321,'Pohjois-Pohjanmaa'),('en_US',322,'Kainuu'),('en_US',323,'Pohjois-Karjala'),('en_US',324,'Pohjois-Savo'),('en_US',325,'Etelä-Savo'),('en_US',326,'Etelä-Pohjanmaa'),('en_US',327,'Pohjanmaa'),('en_US',328,'Pirkanmaa'),('en_US',329,'Satakunta'),('en_US',330,'Keski-Pohjanmaa'),('en_US',331,'Keski-Suomi'),('en_US',332,'Varsinais-Suomi'),('en_US',333,'Etelä-Karjala'),('en_US',334,'Päijät-Häme'),('en_US',335,'Kanta-Häme'),('en_US',336,'Uusimaa'),('en_US',337,'Itä-Uusimaa'),('en_US',338,'Kymenlaakso'),('en_US',339,'Ahvenanmaa'),('en_US',340,'Harjumaa'),('en_US',341,'Hiiumaa'),('en_US',342,'Ida-Virumaa'),('en_US',343,'Jõgevamaa'),('en_US',344,'Järvamaa'),('en_US',345,'Läänemaa'),('en_US',346,'Lääne-Virumaa'),('en_US',347,'Põlvamaa'),('en_US',348,'Pärnumaa'),('en_US',349,'Raplamaa'),('en_US',350,'Saaremaa'),('en_US',351,'Tartumaa'),('en_US',352,'Valgamaa'),('en_US',353,'Viljandimaa'),('en_US',354,'Võrumaa'),('en_US',355,'Daugavpils'),('en_US',356,'Jelgava'),('en_US',357,'Jēkabpils'),('en_US',358,'Jūrmala'),('en_US',359,'Liepāja'),('en_US',360,'Liepājas novads'),('en_US',361,'Rēzekne'),('en_US',362,'Rīga'),('en_US',363,'Rīgas novads'),('en_US',364,'Valmiera'),('en_US',365,'Ventspils'),('en_US',366,'Aglonas novads'),('en_US',367,'Aizkraukles novads'),('en_US',368,'Aizputes novads'),('en_US',369,'Aknīstes novads'),('en_US',370,'Alojas novads'),('en_US',371,'Alsungas novads'),('en_US',372,'Alūksnes novads'),('en_US',373,'Amatas novads'),('en_US',374,'Apes novads'),('en_US',375,'Auces novads'),('en_US',376,'Babītes novads'),('en_US',377,'Baldones novads'),('en_US',378,'Baltinavas novads'),('en_US',379,'Balvu novads'),('en_US',380,'Bauskas novads'),('en_US',381,'Beverīnas novads'),('en_US',382,'Brocēnu novads'),('en_US',383,'Burtnieku novads'),('en_US',384,'Carnikavas novads'),('en_US',385,'Cesvaines novads'),('en_US',386,'Ciblas novads'),('en_US',387,'Cēsu novads'),('en_US',388,'Dagdas novads'),('en_US',389,'Daugavpils novads'),('en_US',390,'Dobeles novads'),('en_US',391,'Dundagas novads'),('en_US',392,'Durbes novads'),('en_US',393,'Engures novads'),('en_US',394,'Garkalnes novads'),('en_US',395,'Grobiņas novads'),('en_US',396,'Gulbenes novads'),('en_US',397,'Iecavas novads'),('en_US',398,'Ikšķiles novads'),('en_US',399,'Ilūkstes novads'),('en_US',400,'Inčukalna novads'),('en_US',401,'Jaunjelgavas novads'),('en_US',402,'Jaunpiebalgas novads'),('en_US',403,'Jaunpils novads'),('en_US',404,'Jelgavas novads'),('en_US',405,'Jēkabpils novads'),('en_US',406,'Kandavas novads'),('en_US',407,'Kokneses novads'),('en_US',408,'Krimuldas novads'),('en_US',409,'Krustpils novads'),('en_US',410,'Krāslavas novads'),('en_US',411,'Kuldīgas novads'),('en_US',412,'Kārsavas novads'),('en_US',413,'Lielvārdes novads'),('en_US',414,'Limbažu novads'),('en_US',415,'Lubānas novads'),('en_US',416,'Ludzas novads'),('en_US',417,'Līgatnes novads'),('en_US',418,'Līvānu novads'),('en_US',419,'Madonas novads'),('en_US',420,'Mazsalacas novads'),('en_US',421,'Mālpils novads'),('en_US',422,'Mārupes novads'),('en_US',423,'Naukšēnu novads'),('en_US',424,'Neretas novads'),('en_US',425,'Nīcas novads'),('en_US',426,'Ogres novads'),('en_US',427,'Olaines novads'),('en_US',428,'Ozolnieku novads'),('en_US',429,'Preiļu novads'),('en_US',430,'Priekules novads'),('en_US',431,'Priekuļu novads'),('en_US',432,'Pārgaujas novads'),('en_US',433,'Pāvilostas novads'),('en_US',434,'Pļaviņu novads'),('en_US',435,'Raunas novads'),('en_US',436,'Riebiņu novads'),('en_US',437,'Rojas novads'),('en_US',438,'Ropažu novads'),('en_US',439,'Rucavas novads'),('en_US',440,'Rugāju novads'),('en_US',441,'Rundāles novads'),('en_US',442,'Rēzeknes novads'),('en_US',443,'Rūjienas novads'),('en_US',444,'Salacgrīvas novads'),('en_US',445,'Salas novads'),('en_US',446,'Salaspils novads'),('en_US',447,'Saldus novads'),('en_US',448,'Saulkrastu novads'),('en_US',449,'Siguldas novads'),('en_US',450,'Skrundas novads'),('en_US',451,'Skrīveru novads'),('en_US',452,'Smiltenes novads'),('en_US',453,'Stopiņu novads'),('en_US',454,'Strenču novads'),('en_US',455,'Sējas novads'),('en_US',456,'Talsu novads'),('en_US',457,'Tukuma novads'),('en_US',458,'Tērvetes novads'),('en_US',459,'Vaiņodes novads'),('en_US',460,'Valkas novads'),('en_US',461,'Valmieras novads'),('en_US',462,'Varakļānu novads'),('en_US',463,'Vecpiebalgas novads'),('en_US',464,'Vecumnieku novads'),('en_US',465,'Ventspils novads'),('en_US',466,'Viesītes novads'),('en_US',467,'Viļakas novads'),('en_US',468,'Viļānu novads'),('en_US',469,'Vārkavas novads'),('en_US',470,'Zilupes novads'),('en_US',471,'Ādažu novads'),('en_US',472,'Ērgļu novads'),('en_US',473,'Ķeguma novads'),('en_US',474,'Ķekavas novads'),('en_US',475,'Alytaus Apskritis'),('en_US',476,'Kauno Apskritis'),('en_US',477,'Klaipėdos Apskritis'),('en_US',478,'Marijampolės Apskritis'),('en_US',479,'Panevėžio Apskritis'),('en_US',480,'Šiaulių Apskritis'),('en_US',481,'Tauragės Apskritis'),('en_US',482,'Telšių Apskritis'),('en_US',483,'Utenos Apskritis'),('en_US',484,'Vilniaus Apskritis'),('en_US',485,'Acre'),('en_US',486,'Alagoas'),('en_US',487,'Amapá'),('en_US',488,'Amazonas'),('en_US',489,'Bahia'),('en_US',490,'Ceará'),('en_US',491,'Espírito Santo'),('en_US',492,'Goiás'),('en_US',493,'Maranhão'),('en_US',494,'Mato Grosso'),('en_US',495,'Mato Grosso do Sul'),('en_US',496,'Minas Gerais'),('en_US',497,'Pará'),('en_US',498,'Paraíba'),('en_US',499,'Paraná'),('en_US',500,'Pernambuco'),('en_US',501,'Piauí'),('en_US',502,'Rio de Janeiro'),('en_US',503,'Rio Grande do Norte'),('en_US',504,'Rio Grande do Sul'),('en_US',505,'Rondônia'),('en_US',506,'Roraima'),('en_US',507,'Santa Catarina'),('en_US',508,'São Paulo'),('en_US',509,'Sergipe'),('en_US',510,'Tocantins'),('en_US',511,'Distrito Federal'),('en_US',512,'Zagrebačka županija'),('en_US',513,'Krapinsko-zagorska županija'),('en_US',514,'Sisačko-moslavačka županija'),('en_US',515,'Karlovačka županija'),('en_US',516,'Varaždinska županija'),('en_US',517,'Koprivničko-križevačka županija'),('en_US',518,'Bjelovarsko-bilogorska županija'),('en_US',519,'Primorsko-goranska županija'),('en_US',520,'Ličko-senjska županija'),('en_US',521,'Virovitičko-podravska županija'),('en_US',522,'Požeško-slavonska županija'),('en_US',523,'Brodsko-posavska županija'),('en_US',524,'Zadarska županija'),('en_US',525,'Osječko-baranjska županija'),('en_US',526,'Šibensko-kninska županija'),('en_US',527,'Vukovarsko-srijemska županija'),('en_US',528,'Splitsko-dalmatinska županija'),('en_US',529,'Istarska županija'),('en_US',530,'Dubrovačko-neretvanska županija'),('en_US',531,'Međimurska županija'),('en_US',532,'Grad Zagreb'),('en_US',533,'Andaman and Nicobar Islands'),('en_US',534,'Andhra Pradesh'),('en_US',535,'Arunachal Pradesh'),('en_US',536,'Assam'),('en_US',537,'Bihar'),('en_US',538,'Chandigarh'),('en_US',539,'Chhattisgarh'),('en_US',540,'Dadra and Nagar Haveli'),('en_US',541,'Daman and Diu'),('en_US',542,'Delhi'),('en_US',543,'Goa'),('en_US',544,'Gujarat'),('en_US',545,'Haryana'),('en_US',546,'Himachal Pradesh'),('en_US',547,'Jammu and Kashmir'),('en_US',548,'Jharkhand'),('en_US',549,'Karnataka'),('en_US',550,'Kerala'),('en_US',551,'Lakshadweep'),('en_US',552,'Madhya Pradesh'),('en_US',553,'Maharashtra'),('en_US',554,'Manipur'),('en_US',555,'Meghalaya'),('en_US',556,'Mizoram'),('en_US',557,'Nagaland'),('en_US',558,'Odisha'),('en_US',559,'Puducherry'),('en_US',560,'Punjab'),('en_US',561,'Rajasthan'),('en_US',562,'Sikkim'),('en_US',563,'Tamil Nadu'),('en_US',564,'Telangana'),('en_US',565,'Tripura'),('en_US',566,'Uttar Pradesh'),('en_US',567,'Uttarakhand'),('en_US',568,'West Bengal'),('en_US',569,'Australian Capital Territory'),('en_US',570,'New South Wales'),('en_US',571,'Victoria'),('en_US',572,'Queensland'),('en_US',573,'South Australia'),('en_US',574,'Tasmania'),('en_US',575,'Western Australia'),('en_US',576,'Northern Territory'),('en_US',577,'Aguascalientes'),('en_US',578,'Baja California'),('en_US',579,'Baja California Sur'),('en_US',580,'Campeche'),('en_US',581,'Chiapas'),('en_US',582,'Chihuahua'),('en_US',583,'Ciudad de México'),('en_US',584,'Coahuila'),('en_US',585,'Colima'),('en_US',586,'Durango'),('en_US',587,'Estado de México'),('en_US',588,'Guanajuato'),('en_US',589,'Guerrero'),('en_US',590,'Hidalgo'),('en_US',591,'Jalisco'),('en_US',592,'Michoacán'),('en_US',593,'Morelos'),('en_US',594,'Nayarit'),('en_US',595,'Nuevo León'),('en_US',596,'Oaxaca'),('en_US',597,'Puebla'),('en_US',598,'Querétaro'),('en_US',599,'Quintana Roo'),('en_US',600,'San Luis Potosí'),('en_US',601,'Sinaloa'),('en_US',602,'Sonora'),('en_US',603,'Tabasco'),('en_US',604,'Tamaulipas'),('en_US',605,'Tlaxcala'),('en_US',606,'Veracruz'),('en_US',607,'Yucatán'),('en_US',608,'Zacatecas');
/*!40000 ALTER TABLE `directory_country_region_name` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `directory_currency_rate`
--

DROP TABLE IF EXISTS `directory_currency_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directory_currency_rate` (
  `currency_from` varchar(3) NOT NULL COMMENT 'Currency Code Convert From',
  `currency_to` varchar(3) NOT NULL COMMENT 'Currency Code Convert To',
  `rate` decimal(24,12) NOT NULL DEFAULT '0.000000000000' COMMENT 'Currency Conversion Rate',
  PRIMARY KEY (`currency_from`,`currency_to`),
  KEY `DIRECTORY_CURRENCY_RATE_CURRENCY_TO` (`currency_to`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Currency Rate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `directory_currency_rate`
--

LOCK TABLES `directory_currency_rate` WRITE;
/*!40000 ALTER TABLE `directory_currency_rate` DISABLE KEYS */;
INSERT INTO `directory_currency_rate` VALUES ('EUR','EUR',1.000000000000),('EUR','USD',1.415000000000),('USD','EUR',0.706700000000),('USD','USD',1.000000000000);
/*!40000 ALTER TABLE `directory_currency_rate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `downloadable_link`
--

DROP TABLE IF EXISTS `downloadable_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `downloadable_link` (
  `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `sort_order` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Sort order',
  `number_of_downloads` int(11) DEFAULT NULL COMMENT 'Number of downloads',
  `is_shareable` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Shareable flag',
  `link_url` varchar(255) DEFAULT NULL COMMENT 'Link Url',
  `link_file` varchar(255) DEFAULT NULL COMMENT 'Link File',
  `link_type` varchar(20) DEFAULT NULL COMMENT 'Link Type',
  `sample_url` varchar(255) DEFAULT NULL COMMENT 'Sample Url',
  `sample_file` varchar(255) DEFAULT NULL COMMENT 'Sample File',
  `sample_type` varchar(20) DEFAULT NULL COMMENT 'Sample Type',
  PRIMARY KEY (`link_id`),
  KEY `DOWNLOADABLE_LINK_PRODUCT_ID_SORT_ORDER` (`product_id`,`sort_order`),
  CONSTRAINT `DOWNLOADABLE_LINK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_link`
--

LOCK TABLES `downloadable_link` WRITE;
/*!40000 ALTER TABLE `downloadable_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `downloadable_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `downloadable_link_price`
--

DROP TABLE IF EXISTS `downloadable_link_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `downloadable_link_price` (
  `price_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Price ID',
  `link_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Link ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  `price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Price',
  PRIMARY KEY (`price_id`),
  KEY `DOWNLOADABLE_LINK_PRICE_LINK_ID` (`link_id`),
  KEY `DOWNLOADABLE_LINK_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `DOWNLOADABLE_LINK_PRICE_LINK_ID_DOWNLOADABLE_LINK_LINK_ID` FOREIGN KEY (`link_id`) REFERENCES `downloadable_link` (`link_id`) ON DELETE CASCADE,
  CONSTRAINT `DOWNLOADABLE_LINK_PRICE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Price Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_link_price`
--

LOCK TABLES `downloadable_link_price` WRITE;
/*!40000 ALTER TABLE `downloadable_link_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `downloadable_link_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `downloadable_link_purchased`
--

DROP TABLE IF EXISTS `downloadable_link_purchased`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `downloadable_link_purchased` (
  `purchased_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Purchased ID',
  `order_id` int(10) unsigned DEFAULT '0' COMMENT 'Order ID',
  `order_increment_id` varchar(50) DEFAULT NULL COMMENT 'Order Increment ID',
  `order_item_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Order Item ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Date of creation',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Date of modification',
  `customer_id` int(10) unsigned DEFAULT '0' COMMENT 'Customer ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product name',
  `product_sku` varchar(255) DEFAULT NULL COMMENT 'Product sku',
  `link_section_title` varchar(255) DEFAULT NULL COMMENT 'Link_section_title',
  PRIMARY KEY (`purchased_id`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_ORDER_ID` (`order_id`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_ORDER_ITEM_ID` (`order_item_id`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_CUSTOMER_ID` (`customer_id`),
  CONSTRAINT `DL_LNK_PURCHASED_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL,
  CONSTRAINT `DOWNLOADABLE_LINK_PURCHASED_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Purchased Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_link_purchased`
--

LOCK TABLES `downloadable_link_purchased` WRITE;
/*!40000 ALTER TABLE `downloadable_link_purchased` DISABLE KEYS */;
/*!40000 ALTER TABLE `downloadable_link_purchased` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `downloadable_link_purchased_item`
--

DROP TABLE IF EXISTS `downloadable_link_purchased_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `downloadable_link_purchased_item` (
  `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID',
  `purchased_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Purchased ID',
  `order_item_id` int(10) unsigned DEFAULT '0' COMMENT 'Order Item ID',
  `product_id` int(10) unsigned DEFAULT '0' COMMENT 'Product ID',
  `link_hash` varchar(255) DEFAULT NULL COMMENT 'Link hash',
  `number_of_downloads_bought` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Number of downloads bought',
  `number_of_downloads_used` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Number of downloads used',
  `link_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Link ID',
  `link_title` varchar(255) DEFAULT NULL COMMENT 'Link Title',
  `is_shareable` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Shareable Flag',
  `link_url` varchar(255) DEFAULT NULL COMMENT 'Link Url',
  `link_file` varchar(255) DEFAULT NULL COMMENT 'Link File',
  `link_type` varchar(255) DEFAULT NULL COMMENT 'Link Type',
  `status` varchar(50) DEFAULT NULL COMMENT 'Status',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time',
  PRIMARY KEY (`item_id`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_ITEM_LINK_HASH` (`link_hash`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_ITEM_ORDER_ITEM_ID` (`order_item_id`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_ITEM_PURCHASED_ID` (`purchased_id`),
  CONSTRAINT `DL_LNK_PURCHASED_ITEM_ORDER_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` FOREIGN KEY (`order_item_id`) REFERENCES `sales_order_item` (`item_id`) ON DELETE SET NULL,
  CONSTRAINT `DL_LNK_PURCHASED_ITEM_PURCHASED_ID_DL_LNK_PURCHASED_PURCHASED_ID` FOREIGN KEY (`purchased_id`) REFERENCES `downloadable_link_purchased` (`purchased_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Purchased Item Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_link_purchased_item`
--

LOCK TABLES `downloadable_link_purchased_item` WRITE;
/*!40000 ALTER TABLE `downloadable_link_purchased_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `downloadable_link_purchased_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `downloadable_link_title`
--

DROP TABLE IF EXISTS `downloadable_link_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `downloadable_link_title` (
  `title_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Title ID',
  `link_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Link ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`title_id`),
  UNIQUE KEY `DOWNLOADABLE_LINK_TITLE_LINK_ID_STORE_ID` (`link_id`,`store_id`),
  KEY `DOWNLOADABLE_LINK_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `DOWNLOADABLE_LINK_TITLE_LINK_ID_DOWNLOADABLE_LINK_LINK_ID` FOREIGN KEY (`link_id`) REFERENCES `downloadable_link` (`link_id`) ON DELETE CASCADE,
  CONSTRAINT `DOWNLOADABLE_LINK_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Link Title Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_link_title`
--

LOCK TABLES `downloadable_link_title` WRITE;
/*!40000 ALTER TABLE `downloadable_link_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `downloadable_link_title` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `downloadable_sample`
--

DROP TABLE IF EXISTS `downloadable_sample`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `downloadable_sample` (
  `sample_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Sample ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `sample_url` varchar(255) DEFAULT NULL COMMENT 'Sample URL',
  `sample_file` varchar(255) DEFAULT NULL COMMENT 'Sample file',
  `sample_type` varchar(20) DEFAULT NULL COMMENT 'Sample Type',
  `sort_order` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`sample_id`),
  KEY `DOWNLOADABLE_SAMPLE_PRODUCT_ID` (`product_id`),
  CONSTRAINT `DOWNLOADABLE_SAMPLE_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Sample Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_sample`
--

LOCK TABLES `downloadable_sample` WRITE;
/*!40000 ALTER TABLE `downloadable_sample` DISABLE KEYS */;
/*!40000 ALTER TABLE `downloadable_sample` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `downloadable_sample_title`
--

DROP TABLE IF EXISTS `downloadable_sample_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `downloadable_sample_title` (
  `title_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Title ID',
  `sample_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Sample ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`title_id`),
  UNIQUE KEY `DOWNLOADABLE_SAMPLE_TITLE_SAMPLE_ID_STORE_ID` (`sample_id`,`store_id`),
  KEY `DOWNLOADABLE_SAMPLE_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `DL_SAMPLE_TTL_SAMPLE_ID_DL_SAMPLE_SAMPLE_ID` FOREIGN KEY (`sample_id`) REFERENCES `downloadable_sample` (`sample_id`) ON DELETE CASCADE,
  CONSTRAINT `DOWNLOADABLE_SAMPLE_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Sample Title Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_sample_title`
--

LOCK TABLES `downloadable_sample_title` WRITE;
/*!40000 ALTER TABLE `downloadable_sample_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `downloadable_sample_title` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_attribute`
--

DROP TABLE IF EXISTS `eav_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_attribute` (
  `attribute_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Id',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type Id',
  `attribute_code` varchar(255) NOT NULL COMMENT 'Attribute Code',
  `attribute_model` varchar(255) DEFAULT NULL COMMENT 'Attribute Model',
  `backend_model` varchar(255) DEFAULT NULL COMMENT 'Backend Model',
  `backend_type` varchar(8) NOT NULL DEFAULT 'static' COMMENT 'Backend Type',
  `backend_table` varchar(255) DEFAULT NULL COMMENT 'Backend Table',
  `frontend_model` varchar(255) DEFAULT NULL COMMENT 'Frontend Model',
  `frontend_input` varchar(50) DEFAULT NULL COMMENT 'Frontend Input',
  `frontend_label` varchar(255) DEFAULT NULL COMMENT 'Frontend Label',
  `frontend_class` varchar(255) DEFAULT NULL COMMENT 'Frontend Class',
  `source_model` varchar(255) DEFAULT NULL COMMENT 'Source Model',
  `is_required` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Defines Is Required',
  `is_user_defined` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Defines Is User Defined',
  `default_value` text COMMENT 'Default Value',
  `is_unique` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Defines Is Unique',
  `note` varchar(255) DEFAULT NULL COMMENT 'Note',
  PRIMARY KEY (`attribute_id`),
  UNIQUE KEY `EAV_ATTRIBUTE_ENTITY_TYPE_ID_ATTRIBUTE_CODE` (`entity_type_id`,`attribute_code`),
  CONSTRAINT `EAV_ATTRIBUTE_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=218 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute`
--

LOCK TABLES `eav_attribute` WRITE;
/*!40000 ALTER TABLE `eav_attribute` DISABLE KEYS */;
INSERT INTO `eav_attribute` VALUES (1,1,'website_id',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Website','static',NULL,NULL,'select','Associate to Website',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Source\\Website',1,0,NULL,0,NULL),(2,1,'store_id',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Store','static',NULL,NULL,'select','Create In',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Source\\Store',1,0,NULL,0,NULL),(3,1,'created_in',NULL,NULL,'static',NULL,NULL,'text','Created From',NULL,NULL,0,0,NULL,0,NULL),(4,1,'prefix',NULL,NULL,'static',NULL,NULL,'text','Name Prefix',NULL,NULL,0,0,NULL,0,NULL),(5,1,'firstname',NULL,NULL,'static',NULL,NULL,'text','First Name',NULL,NULL,1,0,NULL,0,NULL),(6,1,'middlename',NULL,NULL,'static',NULL,NULL,'text','Middle Name/Initial',NULL,NULL,0,0,NULL,0,NULL),(7,1,'lastname',NULL,NULL,'static',NULL,NULL,'text','Last Name',NULL,NULL,1,0,NULL,0,NULL),(8,1,'suffix',NULL,NULL,'static',NULL,NULL,'text','Name Suffix',NULL,NULL,0,0,NULL,0,NULL),(9,1,'email',NULL,NULL,'static',NULL,NULL,'text','Email',NULL,NULL,1,0,NULL,0,NULL),(10,1,'group_id',NULL,NULL,'static',NULL,NULL,'select','Group',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Source\\Group',1,0,NULL,0,NULL),(11,1,'dob',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','static',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Frontend\\Datetime','date','Date of Birth',NULL,NULL,0,0,NULL,0,NULL),(12,1,'password_hash',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Password','static',NULL,NULL,'hidden',NULL,NULL,NULL,0,0,NULL,0,NULL),(13,1,'rp_token',NULL,NULL,'static',NULL,NULL,'hidden',NULL,NULL,NULL,0,0,NULL,0,NULL),(14,1,'rp_token_created_at',NULL,NULL,'static',NULL,NULL,'date',NULL,NULL,NULL,0,0,NULL,0,NULL),(15,1,'default_billing',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Billing','static',NULL,NULL,'text','Default Billing Address',NULL,NULL,0,0,NULL,0,NULL),(16,1,'default_shipping',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Shipping','static',NULL,NULL,'text','Default Shipping Address',NULL,NULL,0,0,NULL,0,NULL),(17,1,'taxvat',NULL,NULL,'static',NULL,NULL,'text','Tax/VAT Number',NULL,NULL,0,0,NULL,0,NULL),(18,1,'confirmation',NULL,NULL,'static',NULL,NULL,'text','Is Confirmed',NULL,NULL,0,0,NULL,0,NULL),(19,1,'created_at',NULL,NULL,'static',NULL,NULL,'date','Created At',NULL,NULL,0,0,NULL,0,NULL),(20,1,'gender',NULL,NULL,'static',NULL,NULL,'select','Gender',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,0,NULL,0,NULL),(21,1,'disable_auto_group_change',NULL,'Magento\\Customer\\Model\\Attribute\\Backend\\Data\\Boolean','static',NULL,NULL,'boolean','Disable Automatic Group Change Based on VAT ID',NULL,NULL,0,0,NULL,0,NULL),(22,2,'prefix',NULL,NULL,'static',NULL,NULL,'text','Name Prefix',NULL,NULL,0,0,NULL,0,NULL),(23,2,'firstname',NULL,NULL,'static',NULL,NULL,'text','First Name',NULL,NULL,1,0,NULL,0,NULL),(24,2,'middlename',NULL,NULL,'static',NULL,NULL,'text','Middle Name/Initial',NULL,NULL,0,0,NULL,0,NULL),(25,2,'lastname',NULL,NULL,'static',NULL,NULL,'text','Last Name',NULL,NULL,1,0,NULL,0,NULL),(26,2,'suffix',NULL,NULL,'static',NULL,NULL,'text','Name Suffix',NULL,NULL,0,0,NULL,0,NULL),(27,2,'company',NULL,NULL,'static',NULL,NULL,'text','Company',NULL,NULL,0,0,NULL,0,NULL),(28,2,'street',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\DefaultBackend','static',NULL,NULL,'multiline','Street Address',NULL,NULL,1,0,NULL,0,NULL),(29,2,'city',NULL,NULL,'static',NULL,NULL,'text','City',NULL,NULL,1,0,NULL,0,NULL),(30,2,'country_id',NULL,NULL,'static',NULL,NULL,'select','Country',NULL,'Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Source\\Country',1,0,NULL,0,NULL),(31,2,'region',NULL,'Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Backend\\Region','static',NULL,NULL,'text','State/Province',NULL,NULL,0,0,NULL,0,NULL),(32,2,'region_id',NULL,NULL,'static',NULL,NULL,'hidden','State/Province',NULL,'Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Source\\Region',0,0,NULL,0,NULL),(33,2,'postcode',NULL,NULL,'static',NULL,NULL,'text','Zip/Postal Code',NULL,NULL,0,0,NULL,0,NULL),(34,2,'telephone',NULL,NULL,'static',NULL,NULL,'text','Phone Number',NULL,NULL,1,0,NULL,0,NULL),(35,2,'fax',NULL,NULL,'static',NULL,NULL,'text','Fax',NULL,NULL,0,0,NULL,0,NULL),(36,2,'vat_id',NULL,NULL,'static',NULL,NULL,'text','VAT Number',NULL,NULL,0,0,NULL,0,NULL),(37,2,'vat_is_valid',NULL,NULL,'static',NULL,NULL,'text','VAT number validity',NULL,NULL,0,0,NULL,0,NULL),(38,2,'vat_request_id',NULL,NULL,'static',NULL,NULL,'text','VAT number validation request ID',NULL,NULL,0,0,NULL,0,NULL),(39,2,'vat_request_date',NULL,NULL,'static',NULL,NULL,'text','VAT number validation request date',NULL,NULL,0,0,NULL,0,NULL),(40,2,'vat_request_success',NULL,NULL,'static',NULL,NULL,'text','VAT number validation request success',NULL,NULL,0,0,NULL,0,NULL),(41,1,'updated_at',NULL,NULL,'static',NULL,NULL,'date','Updated At',NULL,NULL,0,0,NULL,0,NULL),(42,1,'failures_num',NULL,NULL,'static',NULL,NULL,'hidden','Failures Number',NULL,NULL,0,0,NULL,0,NULL),(43,1,'first_failure',NULL,NULL,'static',NULL,NULL,'date','First Failure Date',NULL,NULL,0,0,NULL,0,NULL),(44,1,'lock_expires',NULL,NULL,'static',NULL,NULL,'date','Failures Number',NULL,NULL,0,0,NULL,0,NULL),(45,3,'name',NULL,NULL,'varchar',NULL,NULL,'text','Name',NULL,NULL,1,0,NULL,0,NULL),(46,3,'is_active',NULL,NULL,'int',NULL,NULL,'select','Is Active',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',1,0,NULL,0,NULL),(47,3,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(48,3,'image',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\Image','varchar',NULL,NULL,'image','Image',NULL,NULL,0,0,NULL,0,NULL),(49,3,'meta_title',NULL,NULL,'varchar',NULL,NULL,'text','Page Title',NULL,NULL,0,0,NULL,0,NULL),(50,3,'meta_keywords',NULL,NULL,'text',NULL,NULL,'textarea','Meta Keywords',NULL,NULL,0,0,NULL,0,NULL),(51,3,'meta_description',NULL,NULL,'text',NULL,NULL,'textarea','Meta Description',NULL,NULL,0,0,NULL,0,NULL),(52,3,'display_mode',NULL,NULL,'varchar',NULL,NULL,'select','Display Mode',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Mode',0,0,NULL,0,NULL),(53,3,'landing_page',NULL,NULL,'int',NULL,NULL,'select','CMS Block',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Page',0,0,NULL,0,NULL),(54,3,'is_anchor',NULL,NULL,'int',NULL,NULL,'select','Is Anchor',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,'1',0,NULL),(55,3,'path',NULL,NULL,'static',NULL,NULL,'text','Path',NULL,NULL,0,0,NULL,0,NULL),(56,3,'position',NULL,NULL,'static',NULL,NULL,'text','Position',NULL,NULL,0,0,NULL,0,NULL),(57,3,'all_children',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(58,3,'path_in_store',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(59,3,'children',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(60,3,'custom_design',NULL,NULL,'varchar',NULL,NULL,'select','Custom Design',NULL,'Magento\\Theme\\Model\\Theme\\Source\\Theme',0,0,NULL,0,NULL),(61,3,'custom_design_from','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Frontend\\Datetime','date','Active From',NULL,NULL,0,0,NULL,0,NULL),(62,3,'custom_design_to',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Active To',NULL,NULL,0,0,NULL,0,NULL),(63,3,'page_layout',NULL,NULL,'varchar',NULL,NULL,'select','Page Layout',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Layout',0,0,NULL,0,NULL),(64,3,'custom_layout_update',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Customlayoutupdate','text',NULL,NULL,'textarea','Custom Layout Update',NULL,NULL,0,0,NULL,0,NULL),(65,3,'level',NULL,NULL,'static',NULL,NULL,'text','Level',NULL,NULL,0,0,NULL,0,NULL),(66,3,'children_count',NULL,NULL,'static',NULL,NULL,'text','Children Count',NULL,NULL,0,0,NULL,0,NULL),(67,3,'available_sort_by',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\Sortby','text',NULL,NULL,'multiselect','Available Product Listing Sort By',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Sortby',1,0,NULL,0,NULL),(68,3,'default_sort_by',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\Sortby','varchar',NULL,NULL,'select','Default Product Listing Sort By',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Sortby',1,0,NULL,0,NULL),(69,3,'include_in_menu',NULL,NULL,'int',NULL,NULL,'select','Include in Navigation Menu',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',1,0,'1',0,NULL),(70,3,'custom_use_parent_settings',NULL,NULL,'int',NULL,NULL,'select','Use Parent Category Settings',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,NULL,0,NULL),(71,3,'custom_apply_to_products',NULL,NULL,'int',NULL,NULL,'select','Apply To Products',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,NULL,0,NULL),(72,3,'filter_price_range',NULL,NULL,'decimal',NULL,NULL,'text','Layered Navigation Price Step',NULL,NULL,0,0,NULL,0,NULL),(73,4,'name',NULL,NULL,'varchar',NULL,NULL,'text','Product Name','validate-length maximum-length-255',NULL,1,0,NULL,0,NULL),(74,4,'sku',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Sku','static',NULL,NULL,'text','SKU','validate-length maximum-length-64',NULL,1,0,NULL,1,NULL),(75,4,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(76,4,'short_description',NULL,NULL,'text',NULL,NULL,'textarea','Short Description',NULL,NULL,0,0,NULL,0,NULL),(77,4,'price',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Price',NULL,NULL,1,0,NULL,0,NULL),(78,4,'special_price',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Special Price',NULL,NULL,0,0,NULL,0,NULL),(79,4,'special_from_date',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,NULL,'date','Special Price From Date',NULL,NULL,0,0,NULL,0,NULL),(80,4,'special_to_date',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Special Price To Date',NULL,NULL,0,0,NULL,0,NULL),(82,4,'weight',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Weight','decimal',NULL,NULL,'weight','Weight',NULL,NULL,0,0,NULL,0,NULL),(84,4,'meta_title',NULL,NULL,'varchar',NULL,NULL,'text','Meta Title',NULL,NULL,0,0,NULL,0,NULL),(85,4,'meta_keyword',NULL,NULL,'text',NULL,NULL,'textarea','Meta Keywords',NULL,NULL,0,0,NULL,0,NULL),(86,4,'meta_description',NULL,NULL,'varchar',NULL,NULL,'textarea','Meta Description',NULL,NULL,0,0,NULL,0,'Maximum 255 chars. Meta Description should optimally be between 150-160 characters'),(87,4,'image',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Base',NULL,NULL,0,0,NULL,0,NULL),(88,4,'small_image',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Small',NULL,NULL,0,0,NULL,0,NULL),(89,4,'thumbnail',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Thumbnail',NULL,NULL,0,0,NULL,0,NULL),(90,4,'media_gallery',NULL,NULL,'static',NULL,NULL,'gallery','Media Gallery',NULL,NULL,0,0,NULL,0,NULL),(91,4,'old_id',NULL,NULL,'int',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(92,4,'tier_price',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Tierprice','decimal',NULL,NULL,'text','Tier Price',NULL,NULL,0,0,NULL,0,NULL),(93,4,'color',NULL,NULL,'int',NULL,NULL,'select','Color',NULL,NULL,0,1,'',0,NULL),(94,4,'news_from_date',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,NULL,'date','Set Product as New from Date',NULL,NULL,0,0,NULL,0,NULL),(95,4,'news_to_date',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Set Product as New to Date',NULL,NULL,0,0,NULL,0,NULL),(96,4,'gallery',NULL,NULL,'varchar',NULL,NULL,'gallery','Image Gallery',NULL,NULL,0,0,NULL,0,NULL),(97,4,'status',NULL,NULL,'int',NULL,NULL,'select','Enable Product',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Status',0,0,'1',0,NULL),(98,4,'minimal_price',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Minimal Price',NULL,NULL,0,0,NULL,0,NULL),(99,4,'visibility',NULL,NULL,'int',NULL,NULL,'select','Visibility',NULL,'Magento\\Catalog\\Model\\Product\\Visibility',0,0,'4',0,NULL),(100,4,'custom_design',NULL,NULL,'varchar',NULL,NULL,'select','New Theme',NULL,'Magento\\Theme\\Model\\Theme\\Source\\Theme',0,0,NULL,0,NULL),(101,4,'custom_design_from',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,NULL,'date','Active From',NULL,NULL,0,0,NULL,0,NULL),(102,4,'custom_design_to',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Active To',NULL,NULL,0,0,NULL,0,NULL),(103,4,'custom_layout_update',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Customlayoutupdate','text',NULL,NULL,'textarea','Layout Update XML',NULL,NULL,0,0,NULL,0,NULL),(104,4,'page_layout',NULL,NULL,'varchar',NULL,NULL,'select','Layout',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout',0,0,NULL,0,NULL),(105,4,'category_ids',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Category','static',NULL,NULL,'text','Categories',NULL,NULL,0,0,NULL,0,NULL),(106,4,'options_container',NULL,NULL,'varchar',NULL,NULL,'select','Display Product Options In',NULL,'Magento\\Catalog\\Model\\Entity\\Product\\Attribute\\Design\\Options\\Container',0,0,'container2',0,NULL),(107,4,'required_options',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(108,4,'has_options',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(109,4,'image_label',NULL,NULL,'varchar',NULL,NULL,'text','Image Label',NULL,NULL,0,0,NULL,0,NULL),(110,4,'small_image_label',NULL,NULL,'varchar',NULL,NULL,'text','Small Image Label',NULL,NULL,0,0,NULL,0,NULL),(111,4,'thumbnail_label',NULL,NULL,'varchar',NULL,NULL,'text','Thumbnail Label',NULL,NULL,0,0,NULL,0,NULL),(112,4,'created_at',NULL,NULL,'static',NULL,NULL,'date',NULL,NULL,NULL,1,0,NULL,0,NULL),(113,4,'updated_at',NULL,NULL,'static',NULL,NULL,'date',NULL,NULL,NULL,1,0,NULL,0,NULL),(114,4,'country_of_manufacture',NULL,NULL,'varchar',NULL,NULL,'select','Country of Manufacture',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Countryofmanufacture',0,0,NULL,0,NULL),(115,4,'quantity_and_stock_status',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Stock','int',NULL,NULL,'select','Quantity',NULL,'Magento\\CatalogInventory\\Model\\Source\\Stock',0,0,'1',0,NULL),(116,4,'custom_layout',NULL,NULL,'varchar',NULL,NULL,'select','New Layout',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout',0,0,NULL,0,NULL),(117,4,'msrp',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Manufacturer\'s Suggested Retail Price',NULL,NULL,0,0,NULL,0,NULL),(118,4,'msrp_display_actual_price_type',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean','varchar',NULL,NULL,'select','Display Actual Price',NULL,'Magento\\Msrp\\Model\\Product\\Attribute\\Source\\Type\\Price',0,0,'0',0,NULL),(119,3,'url_key',NULL,NULL,'varchar',NULL,NULL,'text','URL Key',NULL,NULL,0,0,NULL,0,NULL),(120,3,'url_path',NULL,NULL,'varchar',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(121,4,'url_key',NULL,NULL,'varchar',NULL,NULL,'text','URL Key',NULL,NULL,0,0,NULL,0,NULL),(122,4,'url_path',NULL,NULL,'varchar',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(123,4,'price_type',NULL,NULL,'int',NULL,NULL,'boolean','Dynamic Price',NULL,NULL,1,0,'0',0,NULL),(124,4,'sku_type',NULL,NULL,'int',NULL,NULL,'boolean','Dynamic SKU',NULL,NULL,1,0,'0',0,NULL),(125,4,'weight_type',NULL,NULL,'int',NULL,NULL,'boolean','Dynamic Weight',NULL,NULL,1,0,'0',0,NULL),(126,4,'price_view',NULL,NULL,'int',NULL,NULL,'select','Price View',NULL,'Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Price\\View',1,0,NULL,0,NULL),(127,4,'shipment_type',NULL,NULL,'int',NULL,NULL,'select','Ship Bundle Items',NULL,'Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Shipment\\Type',1,0,'0',0,NULL),(128,4,'links_purchased_separately',NULL,NULL,'int',NULL,NULL,NULL,'Links can be purchased separately',NULL,NULL,1,0,NULL,0,NULL),(129,4,'samples_title',NULL,NULL,'varchar',NULL,NULL,NULL,'Samples title',NULL,NULL,1,0,NULL,0,NULL),(130,4,'links_title',NULL,NULL,'varchar',NULL,NULL,NULL,'Links title',NULL,NULL,1,0,NULL,0,NULL),(131,4,'links_exist',NULL,NULL,'int',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL),(132,4,'gift_message_available',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean','varchar',NULL,NULL,'select','Allow Gift Message',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Boolean',0,0,NULL,0,NULL),(133,4,'swatch_image',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Swatch',NULL,NULL,0,0,NULL,0,NULL),(134,4,'tax_class_id',NULL,NULL,'int',NULL,NULL,'select','Tax Class',NULL,'Magento\\Tax\\Model\\TaxClass\\Source\\Product',0,0,'2',0,NULL),(139,4,'brand',NULL,NULL,'text',NULL,NULL,'text','Brand',NULL,NULL,0,1,NULL,0,NULL),(141,4,'shipping_weight',NULL,NULL,'text',NULL,NULL,'text','Shipping Weight',NULL,NULL,0,1,NULL,0,NULL),(206,4,'material',NULL,NULL,'varchar',NULL,NULL,'text','Material',NULL,NULL,0,1,NULL,0,NULL),(208,4,'shoes_size',NULL,NULL,'int',NULL,NULL,'select','Shoes size',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'60',0,NULL),(209,4,'ts_dimensions_length',NULL,NULL,'decimal',NULL,NULL,'text','Length',NULL,NULL,0,0,NULL,0,NULL),(210,4,'ts_dimensions_width',NULL,NULL,'decimal',NULL,NULL,'text','Width',NULL,NULL,0,0,NULL,0,NULL),(211,4,'ts_dimensions_height',NULL,NULL,'decimal',NULL,NULL,'text','Height',NULL,NULL,0,0,NULL,0,NULL),(212,4,'size',NULL,NULL,'int',NULL,NULL,'select','Size',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(213,4,'merchant_center_category',NULL,NULL,'int',NULL,NULL,'select','Google Merchant Center Category',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,NULL,0,NULL),(214,4,'ts_packaging_type',NULL,NULL,'varchar',NULL,NULL,'select','Packaging Type',NULL,'Temando\\Shipping\\Model\\Source\\PackagingType',0,0,NULL,0,NULL),(215,4,'ts_packaging_id',NULL,NULL,'varchar',NULL,NULL,'select','Packaging Name',NULL,'Temando\\Shipping\\Model\\Source\\Packaging',0,0,NULL,0,NULL),(216,4,'ts_hs_code',NULL,NULL,'varchar',NULL,NULL,'text','HS Code',NULL,NULL,0,0,NULL,0,NULL),(217,4,'ts_country_of_origin',NULL,NULL,'varchar',NULL,NULL,'select','Country of Origin',NULL,'Temando\\Shipping\\Model\\ResourceModel\\Product\\Attribute\\Source\\Country',0,0,NULL,0,NULL);
/*!40000 ALTER TABLE `eav_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_attribute_group`
--

DROP TABLE IF EXISTS `eav_attribute_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_attribute_group` (
  `attribute_group_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Group Id',
  `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set Id',
  `attribute_group_name` varchar(255) DEFAULT NULL COMMENT 'Attribute Group Name',
  `sort_order` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `default_id` smallint(5) unsigned DEFAULT '0' COMMENT 'Default Id',
  `attribute_group_code` varchar(255) NOT NULL COMMENT 'Attribute Group Code',
  `tab_group_code` varchar(255) DEFAULT NULL COMMENT 'Tab Group Code',
  PRIMARY KEY (`attribute_group_id`),
  UNIQUE KEY `EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_ATTRIBUTE_GROUP_CODE` (`attribute_set_id`,`attribute_group_code`),
  UNIQUE KEY `EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_ATTRIBUTE_GROUP_NAME` (`attribute_set_id`,`attribute_group_name`),
  KEY `EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_SORT_ORDER` (`attribute_set_id`,`sort_order`),
  CONSTRAINT `EAV_ATTR_GROUP_ATTR_SET_ID_EAV_ATTR_SET_ATTR_SET_ID` FOREIGN KEY (`attribute_set_id`) REFERENCES `eav_attribute_set` (`attribute_set_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Group';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_group`
--

LOCK TABLES `eav_attribute_group` WRITE;
/*!40000 ALTER TABLE `eav_attribute_group` DISABLE KEYS */;
INSERT INTO `eav_attribute_group` VALUES (1,1,'General',1,1,'general',NULL),(2,2,'General',1,1,'general',NULL),(3,3,'General',10,1,'general',NULL),(4,3,'General Information',2,0,'general-information',NULL),(5,3,'Display Settings',20,0,'display-settings',NULL),(6,3,'Custom Design',30,0,'custom-design',NULL),(7,4,'Product Details',1,1,'product-details','basic'),(8,4,'Advanced Pricing',6,0,'advanced-pricing','advanced'),(9,4,'Search Engine Optimization',5,0,'search-engine-optimization','basic'),(10,4,'Images',3,0,'image-management','basic'),(11,4,'Design',7,0,'design','advanced'),(12,4,'Autosettings',9,0,'autosettings','advanced'),(13,4,'Content',2,0,'content','basic'),(14,4,'Schedule Design Update',8,0,'schedule-design-update','advanced'),(15,5,'General',1,1,'general',NULL),(16,6,'General',1,1,'general',NULL),(17,7,'General',1,1,'general',NULL),(18,8,'General',1,1,'general',NULL),(19,4,'Bundle Items',16,0,'bundle-items',NULL),(20,4,'Gift Options',11,0,'gift-options',NULL),(21,4,'Product Data',10,0,'product-data',NULL),(22,9,'Gift Options',11,0,'gift-options',NULL),(23,9,'Product Data',10,0,'product-data',NULL),(24,9,'Autosettings',9,0,'autosettings','advanced'),(25,9,'Schedule Design Update',8,0,'schedule-design-update','advanced'),(26,9,'Design',7,0,'design','advanced'),(27,9,'Advanced Pricing',6,0,'advanced-pricing','advanced'),(28,9,'Search Engine Optimization',5,0,'search-engine-optimization','basic'),(29,9,'Bundle Items',4,0,'bundle-items',NULL),(30,9,'Images',3,0,'image-management','basic'),(31,9,'Content',2,0,'content','basic'),(32,9,'Product Details',1,1,'product-details','basic'),(33,10,'Gift Options',11,0,'gift-options',NULL),(34,10,'Product Data',10,0,'product-data',NULL),(35,10,'Autosettings',9,0,'autosettings','advanced'),(36,10,'Schedule Design Update',8,0,'schedule-design-update','advanced'),(37,10,'Design',7,0,'design','advanced'),(38,10,'Advanced Pricing',6,0,'advanced-pricing','advanced'),(39,10,'Search Engine Optimization',5,0,'search-engine-optimization','basic'),(40,10,'Bundle Items',4,0,'bundle-items',NULL),(41,10,'Images',3,0,'image-management','basic'),(42,10,'Content',2,0,'content','basic'),(43,10,'Product Details',1,1,'product-details','basic'),(44,11,'Gift Options',11,0,'gift-options',NULL),(45,11,'Product Data',10,0,'product-data',NULL),(46,11,'Autosettings',9,0,'autosettings','advanced'),(47,11,'Schedule Design Update',8,0,'schedule-design-update','advanced'),(48,11,'Design',7,0,'design','advanced'),(49,11,'Advanced Pricing',6,0,'advanced-pricing','advanced'),(50,11,'Search Engine Optimization',5,0,'search-engine-optimization','basic'),(51,11,'Bundle Items',4,0,'bundle-items',NULL),(52,11,'Images',3,0,'image-management','basic'),(53,11,'Content',2,0,'content','basic'),(54,11,'Product Details',1,1,'product-details','basic');
/*!40000 ALTER TABLE `eav_attribute_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_attribute_label`
--

DROP TABLE IF EXISTS `eav_attribute_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_attribute_label` (
  `attribute_label_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Label Id',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`attribute_label_id`),
  KEY `EAV_ATTRIBUTE_LABEL_STORE_ID` (`store_id`),
  KEY `EAV_ATTRIBUTE_LABEL_ATTRIBUTE_ID_STORE_ID` (`attribute_id`,`store_id`),
  CONSTRAINT `EAV_ATTRIBUTE_LABEL_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ATTRIBUTE_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Label';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_label`
--

LOCK TABLES `eav_attribute_label` WRITE;
/*!40000 ALTER TABLE `eav_attribute_label` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_attribute_label` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_attribute_option`
--

DROP TABLE IF EXISTS `eav_attribute_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_attribute_option` (
  `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Id',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Id',
  `sort_order` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`option_id`),
  KEY `EAV_ATTRIBUTE_OPTION_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `EAV_ATTRIBUTE_OPTION_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5510 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Option';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_option`
--

LOCK TABLES `eav_attribute_option` WRITE;
/*!40000 ALTER TABLE `eav_attribute_option` DISABLE KEYS */;
INSERT INTO `eav_attribute_option` VALUES (1,20,0),(2,20,1),(3,20,3),(58,208,1),(59,208,2),(61,208,5),(62,208,6),(63,208,7),(64,208,8),(65,208,9),(66,208,10),(67,208,11),(71,93,5),(72,93,6),(73,93,7),(74,93,8),(75,93,9),(76,93,10),(77,212,1),(78,212,2),(79,212,3),(80,212,4),(81,212,5),(82,208,4),(83,213,0),(84,213,1),(85,213,2),(86,213,3),(87,213,4),(88,213,5),(89,213,6),(90,213,7),(91,213,8),(92,213,9),(93,213,10),(94,213,11),(95,213,12),(96,213,13),(97,213,14),(98,213,15),(99,213,16),(100,213,17),(101,213,18),(102,213,19),(103,213,20),(104,213,21),(105,213,22),(106,213,23),(107,213,24),(108,213,25),(109,213,26),(110,213,27),(111,213,28),(112,213,29),(113,213,30),(114,213,31),(115,213,32),(116,213,33),(117,213,34),(118,213,35),(119,213,36),(120,213,37),(121,213,38),(122,213,39),(123,213,40),(124,213,41),(125,213,42),(126,213,43),(127,213,44),(128,213,45),(129,213,46),(130,213,47),(131,213,48),(132,213,49),(133,213,50),(134,213,51),(135,213,52),(136,213,53),(137,213,54),(138,213,55),(139,213,56),(140,213,57),(141,213,58),(142,213,59),(143,213,60),(144,213,61),(145,213,62),(146,213,63),(147,213,64),(148,213,65),(149,213,66),(150,213,67),(151,213,68),(152,213,69),(153,213,70),(154,213,71),(155,213,72),(156,213,73),(157,213,74),(158,213,75),(159,213,76),(160,213,77),(161,213,78),(162,213,79),(163,213,80),(164,213,81),(165,213,82),(166,213,83),(167,213,84),(168,213,85),(169,213,86),(170,213,87),(171,213,88),(172,213,89),(173,213,90),(174,213,91),(175,213,92),(176,213,93),(177,213,94),(178,213,95),(179,213,96),(180,213,97),(181,213,98),(182,213,99),(183,213,100),(184,213,101),(185,213,102),(186,213,103),(187,213,104),(188,213,105),(189,213,106),(190,213,107),(191,213,108),(192,213,109),(193,213,110),(194,213,111),(195,213,112),(196,213,113),(197,213,114),(198,213,115),(199,213,116),(200,213,117),(201,213,118),(202,213,119),(203,213,120),(204,213,121),(205,213,122),(206,213,123),(207,213,124),(208,213,125),(209,213,126),(210,213,127),(211,213,128),(212,213,129),(213,213,130),(214,213,131),(215,213,132),(216,213,133),(217,213,134),(218,213,135),(219,213,136),(220,213,137),(221,213,138),(222,213,139),(223,213,140),(224,213,141),(225,213,142),(226,213,143),(227,213,144),(228,213,145),(229,213,146),(230,213,147),(231,213,148),(232,213,149),(233,213,150),(234,213,151),(235,213,152),(236,213,153),(237,213,154),(238,213,155),(239,213,156),(240,213,157),(241,213,158),(242,213,159),(243,213,160),(244,213,161),(245,213,162),(246,213,163),(247,213,164),(248,213,165),(249,213,166),(250,213,167),(251,213,168),(252,213,169),(253,213,170),(254,213,171),(255,213,172),(256,213,173),(257,213,174),(258,213,175),(259,213,176),(260,213,177),(261,213,178),(262,213,179),(263,213,180),(264,213,181),(265,213,182),(266,213,183),(267,213,184),(268,213,185),(269,213,186),(270,213,187),(271,213,188),(272,213,189),(273,213,190),(274,213,191),(275,213,192),(276,213,193),(277,213,194),(278,213,195),(279,213,196),(280,213,197),(281,213,198),(282,213,199),(283,213,200),(284,213,201),(285,213,202),(286,213,203),(287,213,204),(288,213,205),(289,213,206),(290,213,207),(291,213,208),(292,213,209),(293,213,210),(294,213,211),(295,213,212),(296,213,213),(297,213,214),(298,213,215),(299,213,216),(300,213,217),(301,213,218),(302,213,219),(303,213,220),(304,213,221),(305,213,222),(306,213,223),(307,213,224),(308,213,225),(309,213,226),(310,213,227),(311,213,228),(312,213,229),(313,213,230),(314,213,231),(315,213,232),(316,213,233),(317,213,234),(318,213,235),(319,213,236),(320,213,237),(321,213,238),(322,213,239),(323,213,240),(324,213,241),(325,213,242),(326,213,243),(327,213,244),(328,213,245),(329,213,246),(330,213,247),(331,213,248),(332,213,249),(333,213,250),(334,213,251),(335,213,252),(336,213,253),(337,213,254),(338,213,255),(339,213,256),(340,213,257),(341,213,258),(342,213,259),(343,213,260),(344,213,261),(345,213,262),(346,213,263),(347,213,264),(348,213,265),(349,213,266),(350,213,267),(351,213,268),(352,213,269),(353,213,270),(354,213,271),(355,213,272),(356,213,273),(357,213,274),(358,213,275),(359,213,276),(360,213,277),(361,213,278),(362,213,279),(363,213,280),(364,213,281),(365,213,282),(366,213,283),(367,213,284),(368,213,285),(369,213,286),(370,213,287),(371,213,288),(372,213,289),(373,213,290),(374,213,291),(375,213,292),(376,213,293),(377,213,294),(378,213,295),(379,213,296),(380,213,297),(381,213,298),(382,213,299),(383,213,300),(384,213,301),(385,213,302),(386,213,303),(387,213,304),(388,213,305),(389,213,306),(390,213,307),(391,213,308),(392,213,309),(393,213,310),(394,213,311),(395,213,312),(396,213,313),(397,213,314),(398,213,315),(399,213,316),(400,213,317),(401,213,318),(402,213,319),(403,213,320),(404,213,321),(405,213,322),(406,213,323),(407,213,324),(408,213,325),(409,213,326),(410,213,327),(411,213,328),(412,213,329),(413,213,330),(414,213,331),(415,213,332),(416,213,333),(417,213,334),(418,213,335),(419,213,336),(420,213,337),(421,213,338),(422,213,339),(423,213,340),(424,213,341),(425,213,342),(426,213,343),(427,213,344),(428,213,345),(429,213,346),(430,213,347),(431,213,348),(432,213,349),(433,213,350),(434,213,351),(435,213,352),(436,213,353),(437,213,354),(438,213,355),(439,213,356),(440,213,357),(441,213,358),(442,213,359),(443,213,360),(444,213,361),(445,213,362),(446,213,363),(447,213,364),(448,213,365),(449,213,366),(450,213,367),(451,213,368),(452,213,369),(453,213,370),(454,213,371),(455,213,372),(456,213,373),(457,213,374),(458,213,375),(459,213,376),(460,213,377),(461,213,378),(462,213,379),(463,213,380),(464,213,381),(465,213,382),(466,213,383),(467,213,384),(468,213,385),(469,213,386),(470,213,387),(471,213,388),(472,213,389),(473,213,390),(474,213,391),(475,213,392),(476,213,393),(477,213,394),(478,213,395),(479,213,396),(480,213,397),(481,213,398),(482,213,399),(483,213,400),(484,213,401),(485,213,402),(486,213,403),(487,213,404),(488,213,405),(489,213,406),(490,213,407),(491,213,408),(492,213,409),(493,213,410),(494,213,411),(495,213,412),(496,213,413),(497,213,414),(498,213,415),(499,213,416),(500,213,417),(501,213,418),(502,213,419),(503,213,420),(504,213,421),(505,213,422),(506,213,423),(507,213,424),(508,213,425),(509,213,426),(510,213,427),(511,213,428),(512,213,429),(513,213,430),(514,213,431),(515,213,432),(516,213,433),(517,213,434),(518,213,435),(519,213,436),(520,213,437),(521,213,438),(522,213,439),(523,213,440),(524,213,441),(525,213,442),(526,213,443),(527,213,444),(528,213,445),(529,213,446),(530,213,447),(531,213,448),(532,213,449),(533,213,450),(534,213,451),(535,213,452),(536,213,453),(537,213,454),(538,213,455),(539,213,456),(540,213,457),(541,213,458),(542,213,459),(543,213,460),(544,213,461),(545,213,462),(546,213,463),(547,213,464),(548,213,465),(549,213,466),(550,213,467),(551,213,468),(552,213,469),(553,213,470),(554,213,471),(555,213,472),(556,213,473),(557,213,474),(558,213,475),(559,213,476),(560,213,477),(561,213,478),(562,213,479),(563,213,480),(564,213,481),(565,213,482),(566,213,483),(567,213,484),(568,213,485),(569,213,486),(570,213,487),(571,213,488),(572,213,489),(573,213,490),(574,213,491),(575,213,492),(576,213,493),(577,213,494),(578,213,495),(579,213,496),(580,213,497),(581,213,498),(582,213,499),(583,213,500),(584,213,501),(585,213,502),(586,213,503),(587,213,504),(588,213,505),(589,213,506),(590,213,507),(591,213,508),(592,213,509),(593,213,510),(594,213,511),(595,213,512),(596,213,513),(597,213,514),(598,213,515),(599,213,516),(600,213,517),(601,213,518),(602,213,519),(603,213,520),(604,213,521),(605,213,522),(606,213,523),(607,213,524),(608,213,525),(609,213,526),(610,213,527),(611,213,528),(612,213,529),(613,213,530),(614,213,531),(615,213,532),(616,213,533),(617,213,534),(618,213,535),(619,213,536),(620,213,537),(621,213,538),(622,213,539),(623,213,540),(624,213,541),(625,213,542),(626,213,543),(627,213,544),(628,213,545),(629,213,546),(630,213,547),(631,213,548),(632,213,549),(633,213,550),(634,213,551),(635,213,552),(636,213,553),(637,213,554),(638,213,555),(639,213,556),(640,213,557),(641,213,558),(642,213,559),(643,213,560),(644,213,561),(645,213,562),(646,213,563),(647,213,564),(648,213,565),(649,213,566),(650,213,567),(651,213,568),(652,213,569),(653,213,570),(654,213,571),(655,213,572),(656,213,573),(657,213,574),(658,213,575),(659,213,576),(660,213,577),(661,213,578),(662,213,579),(663,213,580),(664,213,581),(665,213,582),(666,213,583),(667,213,584),(668,213,585),(669,213,586),(670,213,587),(671,213,588),(672,213,589),(673,213,590),(674,213,591),(675,213,592),(676,213,593),(677,213,594),(678,213,595),(679,213,596),(680,213,597),(681,213,598),(682,213,599),(683,213,600),(684,213,601),(685,213,602),(686,213,603),(687,213,604),(688,213,605),(689,213,606),(690,213,607),(691,213,608),(692,213,609),(693,213,610),(694,213,611),(695,213,612),(696,213,613),(697,213,614),(698,213,615),(699,213,616),(700,213,617),(701,213,618),(702,213,619),(703,213,620),(704,213,621),(705,213,622),(706,213,623),(707,213,624),(708,213,625),(709,213,626),(710,213,627),(711,213,628),(712,213,629),(713,213,630),(714,213,631),(715,213,632),(716,213,633),(717,213,634),(718,213,635),(719,213,636),(720,213,637),(721,213,638),(722,213,639),(723,213,640),(724,213,641),(725,213,642),(726,213,643),(727,213,644),(728,213,645),(729,213,646),(730,213,647),(731,213,648),(732,213,649),(733,213,650),(734,213,651),(735,213,652),(736,213,653),(737,213,654),(738,213,655),(739,213,656),(740,213,657),(741,213,658),(742,213,659),(743,213,660),(744,213,661),(745,213,662),(746,213,663),(747,213,664),(748,213,665),(749,213,666),(750,213,667),(751,213,668),(752,213,669),(753,213,670),(754,213,671),(755,213,672),(756,213,673),(757,213,674),(758,213,675),(759,213,676),(760,213,677),(761,213,678),(762,213,679),(763,213,680),(764,213,681),(765,213,682),(766,213,683),(767,213,684),(768,213,685),(769,213,686),(770,213,687),(771,213,688),(772,213,689),(773,213,690),(774,213,691),(775,213,692),(776,213,693),(777,213,694),(778,213,695),(779,213,696),(780,213,697),(781,213,698),(782,213,699),(783,213,700),(784,213,701),(785,213,702),(786,213,703),(787,213,704),(788,213,705),(789,213,706),(790,213,707),(791,213,708),(792,213,709),(793,213,710),(794,213,711),(795,213,712),(796,213,713),(797,213,714),(798,213,715),(799,213,716),(800,213,717),(801,213,718),(802,213,719),(803,213,720),(804,213,721),(805,213,722),(806,213,723),(807,213,724),(808,213,725),(809,213,726),(810,213,727),(811,213,728),(812,213,729),(813,213,730),(814,213,731),(815,213,732),(816,213,733),(817,213,734),(818,213,735),(819,213,736),(820,213,737),(821,213,738),(822,213,739),(823,213,740),(824,213,741),(825,213,742),(826,213,743),(827,213,744),(828,213,745),(829,213,746),(830,213,747),(831,213,748),(832,213,749),(833,213,750),(834,213,751),(835,213,752),(836,213,753),(837,213,754),(838,213,755),(839,213,756),(840,213,757),(841,213,758),(842,213,759),(843,213,760),(844,213,761),(845,213,762),(846,213,763),(847,213,764),(848,213,765),(849,213,766),(850,213,767),(851,213,768),(852,213,769),(853,213,770),(854,213,771),(855,213,772),(856,213,773),(857,213,774),(858,213,775),(859,213,776),(860,213,777),(861,213,778),(862,213,779),(863,213,780),(864,213,781),(865,213,782),(866,213,783),(867,213,784),(868,213,785),(869,213,786),(870,213,787),(871,213,788),(872,213,789),(873,213,790),(874,213,791),(875,213,792),(876,213,793),(877,213,794),(878,213,795),(879,213,796),(880,213,797),(881,213,798),(882,213,799),(883,213,800),(884,213,801),(885,213,802),(886,213,803),(887,213,804),(888,213,805),(889,213,806),(890,213,807),(891,213,808),(892,213,809),(893,213,810),(894,213,811),(895,213,812),(896,213,813),(897,213,814),(898,213,815),(899,213,816),(900,213,817),(901,213,818),(902,213,819),(903,213,820),(904,213,821),(905,213,822),(906,213,823),(907,213,824),(908,213,825),(909,213,826),(910,213,827),(911,213,828),(912,213,829),(913,213,830),(914,213,831),(915,213,832),(916,213,833),(917,213,834),(918,213,835),(919,213,836),(920,213,837),(921,213,838),(922,213,839),(923,213,840),(924,213,841),(925,213,842),(926,213,843),(927,213,844),(928,213,845),(929,213,846),(930,213,847),(931,213,848),(932,213,849),(933,213,850),(934,213,851),(935,213,852),(936,213,853),(937,213,854),(938,213,855),(939,213,856),(940,213,857),(941,213,858),(942,213,859),(943,213,860),(944,213,861),(945,213,862),(946,213,863),(947,213,864),(948,213,865),(949,213,866),(950,213,867),(951,213,868),(952,213,869),(953,213,870),(954,213,871),(955,213,872),(956,213,873),(957,213,874),(958,213,875),(959,213,876),(960,213,877),(961,213,878),(962,213,879),(963,213,880),(964,213,881),(965,213,882),(966,213,883),(967,213,884),(968,213,885),(969,213,886),(970,213,887),(971,213,888),(972,213,889),(973,213,890),(974,213,891),(975,213,892),(976,213,893),(977,213,894),(978,213,895),(979,213,896),(980,213,897),(981,213,898),(982,213,899),(983,213,900),(984,213,901),(985,213,902),(986,213,903),(987,213,904),(988,213,905),(989,213,906),(990,213,907),(991,213,908),(992,213,909),(993,213,910),(994,213,911),(995,213,912),(996,213,913),(997,213,914),(998,213,915),(999,213,916),(1000,213,917),(1001,213,918),(1002,213,919),(1003,213,920),(1004,213,921),(1005,213,922),(1006,213,923),(1007,213,924),(1008,213,925),(1009,213,926),(1010,213,927),(1011,213,928),(1012,213,929),(1013,213,930),(1014,213,931),(1015,213,932),(1016,213,933),(1017,213,934),(1018,213,935),(1019,213,936),(1020,213,937),(1021,213,938),(1022,213,939),(1023,213,940),(1024,213,941),(1025,213,942),(1026,213,943),(1027,213,944),(1028,213,945),(1029,213,946),(1030,213,947),(1031,213,948),(1032,213,949),(1033,213,950),(1034,213,951),(1035,213,952),(1036,213,953),(1037,213,954),(1038,213,955),(1039,213,956),(1040,213,957),(1041,213,958),(1042,213,959),(1043,213,960),(1044,213,961),(1045,213,962),(1046,213,963),(1047,213,964),(1048,213,965),(1049,213,966),(1050,213,967),(1051,213,968),(1052,213,969),(1053,213,970),(1054,213,971),(1055,213,972),(1056,213,973),(1057,213,974),(1058,213,975),(1059,213,976),(1060,213,977),(1061,213,978),(1062,213,979),(1063,213,980),(1064,213,981),(1065,213,982),(1066,213,983),(1067,213,984),(1068,213,985),(1069,213,986),(1070,213,987),(1071,213,988),(1072,213,989),(1073,213,990),(1074,213,991),(1075,213,992),(1076,213,993),(1077,213,994),(1078,213,995),(1079,213,996),(1080,213,997),(1081,213,998),(1082,213,999),(1083,213,1000),(1084,213,1001),(1085,213,1002),(1086,213,1003),(1087,213,1004),(1088,213,1005),(1089,213,1006),(1090,213,1007),(1091,213,1008),(1092,213,1009),(1093,213,1010),(1094,213,1011),(1095,213,1012),(1096,213,1013),(1097,213,1014),(1098,213,1015),(1099,213,1016),(1100,213,1017),(1101,213,1018),(1102,213,1019),(1103,213,1020),(1104,213,1021),(1105,213,1022),(1106,213,1023),(1107,213,1024),(1108,213,1025),(1109,213,1026),(1110,213,1027),(1111,213,1028),(1112,213,1029),(1113,213,1030),(1114,213,1031),(1115,213,1032),(1116,213,1033),(1117,213,1034),(1118,213,1035),(1119,213,1036),(1120,213,1037),(1121,213,1038),(1122,213,1039),(1123,213,1040),(1124,213,1041),(1125,213,1042),(1126,213,1043),(1127,213,1044),(1128,213,1045),(1129,213,1046),(1130,213,1047),(1131,213,1048),(1132,213,1049),(1133,213,1050),(1134,213,1051),(1135,213,1052),(1136,213,1053),(1137,213,1054),(1138,213,1055),(1139,213,1056),(1140,213,1057),(1141,213,1058),(1142,213,1059),(1143,213,1060),(1144,213,1061),(1145,213,1062),(1146,213,1063),(1147,213,1064),(1148,213,1065),(1149,213,1066),(1150,213,1067),(1151,213,1068),(1152,213,1069),(1153,213,1070),(1154,213,1071),(1155,213,1072),(1156,213,1073),(1157,213,1074),(1158,213,1075),(1159,213,1076),(1160,213,1077),(1161,213,1078),(1162,213,1079),(1163,213,1080),(1164,213,1081),(1165,213,1082),(1166,213,1083),(1167,213,1084),(1168,213,1085),(1169,213,1086),(1170,213,1087),(1171,213,1088),(1172,213,1089),(1173,213,1090),(1174,213,1091),(1175,213,1092),(1176,213,1093),(1177,213,1094),(1178,213,1095),(1179,213,1096),(1180,213,1097),(1181,213,1098),(1182,213,1099),(1183,213,1100),(1184,213,1101),(1185,213,1102),(1186,213,1103),(1187,213,1104),(1188,213,1105),(1189,213,1106),(1190,213,1107),(1191,213,1108),(1192,213,1109),(1193,213,1110),(1194,213,1111),(1195,213,1112),(1196,213,1113),(1197,213,1114),(1198,213,1115),(1199,213,1116),(1200,213,1117),(1201,213,1118),(1202,213,1119),(1203,213,1120),(1204,213,1121),(1205,213,1122),(1206,213,1123),(1207,213,1124),(1208,213,1125),(1209,213,1126),(1210,213,1127),(1211,213,1128),(1212,213,1129),(1213,213,1130),(1214,213,1131),(1215,213,1132),(1216,213,1133),(1217,213,1134),(1218,213,1135),(1219,213,1136),(1220,213,1137),(1221,213,1138),(1222,213,1139),(1223,213,1140),(1224,213,1141),(1225,213,1142),(1226,213,1143),(1227,213,1144),(1228,213,1145),(1229,213,1146),(1230,213,1147),(1231,213,1148),(1232,213,1149),(1233,213,1150),(1234,213,1151),(1235,213,1152),(1236,213,1153),(1237,213,1154),(1238,213,1155),(1239,213,1156),(1240,213,1157),(1241,213,1158),(1242,213,1159),(1243,213,1160),(1244,213,1161),(1245,213,1162),(1246,213,1163),(1247,213,1164),(1248,213,1165),(1249,213,1166),(1250,213,1167),(1251,213,1168),(1252,213,1169),(1253,213,1170),(1254,213,1171),(1255,213,1172),(1256,213,1173),(1257,213,1174),(1258,213,1175),(1259,213,1176),(1260,213,1177),(1261,213,1178),(1262,213,1179),(1263,213,1180),(1264,213,1181),(1265,213,1182),(1266,213,1183),(1267,213,1184),(1268,213,1185),(1269,213,1186),(1270,213,1187),(1271,213,1188),(1272,213,1189),(1273,213,1190),(1274,213,1191),(1275,213,1192),(1276,213,1193),(1277,213,1194),(1278,213,1195),(1279,213,1196),(1280,213,1197),(1281,213,1198),(1282,213,1199),(1283,213,1200),(1284,213,1201),(1285,213,1202),(1286,213,1203),(1287,213,1204),(1288,213,1205),(1289,213,1206),(1290,213,1207),(1291,213,1208),(1292,213,1209),(1293,213,1210),(1294,213,1211),(1295,213,1212),(1296,213,1213),(1297,213,1214),(1298,213,1215),(1299,213,1216),(1300,213,1217),(1301,213,1218),(1302,213,1219),(1303,213,1220),(1304,213,1221),(1305,213,1222),(1306,213,1223),(1307,213,1224),(1308,213,1225),(1309,213,1226),(1310,213,1227),(1311,213,1228),(1312,213,1229),(1313,213,1230),(1314,213,1231),(1315,213,1232),(1316,213,1233),(1317,213,1234),(1318,213,1235),(1319,213,1236),(1320,213,1237),(1321,213,1238),(1322,213,1239),(1323,213,1240),(1324,213,1241),(1325,213,1242),(1326,213,1243),(1327,213,1244),(1328,213,1245),(1329,213,1246),(1330,213,1247),(1331,213,1248),(1332,213,1249),(1333,213,1250),(1334,213,1251),(1335,213,1252),(1336,213,1253),(1337,213,1254),(1338,213,1255),(1339,213,1256),(1340,213,1257),(1341,213,1258),(1342,213,1259),(1343,213,1260),(1344,213,1261),(1345,213,1262),(1346,213,1263),(1347,213,1264),(1348,213,1265),(1349,213,1266),(1350,213,1267),(1351,213,1268),(1352,213,1269),(1353,213,1270),(1354,213,1271),(1355,213,1272),(1356,213,1273),(1357,213,1274),(1358,213,1275),(1359,213,1276),(1360,213,1277),(1361,213,1278),(1362,213,1279),(1363,213,1280),(1364,213,1281),(1365,213,1282),(1366,213,1283),(1367,213,1284),(1368,213,1285),(1369,213,1286),(1370,213,1287),(1371,213,1288),(1372,213,1289),(1373,213,1290),(1374,213,1291),(1375,213,1292),(1376,213,1293),(1377,213,1294),(1378,213,1295),(1379,213,1296),(1380,213,1297),(1381,213,1298),(1382,213,1299),(1383,213,1300),(1384,213,1301),(1385,213,1302),(1386,213,1303),(1387,213,1304),(1388,213,1305),(1389,213,1306),(1390,213,1307),(1391,213,1308),(1392,213,1309),(1393,213,1310),(1394,213,1311),(1395,213,1312),(1396,213,1313),(1397,213,1314),(1398,213,1315),(1399,213,1316),(1400,213,1317),(1401,213,1318),(1402,213,1319),(1403,213,1320),(1404,213,1321),(1405,213,1322),(1406,213,1323),(1407,213,1324),(1408,213,1325),(1409,213,1326),(1410,213,1327),(1411,213,1328),(1412,213,1329),(1413,213,1330),(1414,213,1331),(1415,213,1332),(1416,213,1333),(1417,213,1334),(1418,213,1335),(1419,213,1336),(1420,213,1337),(1421,213,1338),(1422,213,1339),(1423,213,1340),(1424,213,1341),(1425,213,1342),(1426,213,1343),(1427,213,1344),(1428,213,1345),(1429,213,1346),(1430,213,1347),(1431,213,1348),(1432,213,1349),(1433,213,1350),(1434,213,1351),(1435,213,1352),(1436,213,1353),(1437,213,1354),(1438,213,1355),(1439,213,1356),(1440,213,1357),(1441,213,1358),(1442,213,1359),(1443,213,1360),(1444,213,1361),(1445,213,1362),(1446,213,1363),(1447,213,1364),(1448,213,1365),(1449,213,1366),(1450,213,1367),(1451,213,1368),(1452,213,1369),(1453,213,1370),(1454,213,1371),(1455,213,1372),(1456,213,1373),(1457,213,1374),(1458,213,1375),(1459,213,1376),(1460,213,1377),(1461,213,1378),(1462,213,1379),(1463,213,1380),(1464,213,1381),(1465,213,1382),(1466,213,1383),(1467,213,1384),(1468,213,1385),(1469,213,1386),(1470,213,1387),(1471,213,1388),(1472,213,1389),(1473,213,1390),(1474,213,1391),(1475,213,1392),(1476,213,1393),(1477,213,1394),(1478,213,1395),(1479,213,1396),(1480,213,1397),(1481,213,1398),(1482,213,1399),(1483,213,1400),(1484,213,1401),(1485,213,1402),(1486,213,1403),(1487,213,1404),(1488,213,1405),(1489,213,1406),(1490,213,1407),(1491,213,1408),(1492,213,1409),(1493,213,1410),(1494,213,1411),(1495,213,1412),(1496,213,1413),(1497,213,1414),(1498,213,1415),(1499,213,1416),(1500,213,1417),(1501,213,1418),(1502,213,1419),(1503,213,1420),(1504,213,1421),(1505,213,1422),(1506,213,1423),(1507,213,1424),(1508,213,1425),(1509,213,1426),(1510,213,1427),(1511,213,1428),(1512,213,1429),(1513,213,1430),(1514,213,1431),(1515,213,1432),(1516,213,1433),(1517,213,1434),(1518,213,1435),(1519,213,1436),(1520,213,1437),(1521,213,1438),(1522,213,1439),(1523,213,1440),(1524,213,1441),(1525,213,1442),(1526,213,1443),(1527,213,1444),(1528,213,1445),(1529,213,1446),(1530,213,1447),(1531,213,1448),(1532,213,1449),(1533,213,1450),(1534,213,1451),(1535,213,1452),(1536,213,1453),(1537,213,1454),(1538,213,1455),(1539,213,1456),(1540,213,1457),(1541,213,1458),(1542,213,1459),(1543,213,1460),(1544,213,1461),(1545,213,1462),(1546,213,1463),(1547,213,1464),(1548,213,1465),(1549,213,1466),(1550,213,1467),(1551,213,1468),(1552,213,1469),(1553,213,1470),(1554,213,1471),(1555,213,1472),(1556,213,1473),(1557,213,1474),(1558,213,1475),(1559,213,1476),(1560,213,1477),(1561,213,1478),(1562,213,1479),(1563,213,1480),(1564,213,1481),(1565,213,1482),(1566,213,1483),(1567,213,1484),(1568,213,1485),(1569,213,1486),(1570,213,1487),(1571,213,1488),(1572,213,1489),(1573,213,1490),(1574,213,1491),(1575,213,1492),(1576,213,1493),(1577,213,1494),(1578,213,1495),(1579,213,1496),(1580,213,1497),(1581,213,1498),(1582,213,1499),(1583,213,1500),(1584,213,1501),(1585,213,1502),(1586,213,1503),(1587,213,1504),(1588,213,1505),(1589,213,1506),(1590,213,1507),(1591,213,1508),(1592,213,1509),(1593,213,1510),(1594,213,1511),(1595,213,1512),(1596,213,1513),(1597,213,1514),(1598,213,1515),(1599,213,1516),(1600,213,1517),(1601,213,1518),(1602,213,1519),(1603,213,1520),(1604,213,1521),(1605,213,1522),(1606,213,1523),(1607,213,1524),(1608,213,1525),(1609,213,1526),(1610,213,1527),(1611,213,1528),(1612,213,1529),(1613,213,1530),(1614,213,1531),(1615,213,1532),(1616,213,1533),(1617,213,1534),(1618,213,1535),(1619,213,1536),(1620,213,1537),(1621,213,1538),(1622,213,1539),(1623,213,1540),(1624,213,1541),(1625,213,1542),(1626,213,1543),(1627,213,1544),(1628,213,1545),(1629,213,1546),(1630,213,1547),(1631,213,1548),(1632,213,1549),(1633,213,1550),(1634,213,1551),(1635,213,1552),(1636,213,1553),(1637,213,1554),(1638,213,1555),(1639,213,1556),(1640,213,1557),(1641,213,1558),(1642,213,1559),(1643,213,1560),(1644,213,1561),(1645,213,1562),(1646,213,1563),(1647,213,1564),(1648,213,1565),(1649,213,1566),(1650,213,1567),(1651,213,1568),(1652,213,1569),(1653,213,1570),(1654,213,1571),(1655,213,1572),(1656,213,1573),(1657,213,1574),(1658,213,1575),(1659,213,1576),(1660,213,1577),(1661,213,1578),(1662,213,1579),(1663,213,1580),(1664,213,1581),(1665,213,1582),(1666,213,1583),(1667,213,1584),(1668,213,1585),(1669,213,1586),(1670,213,1587),(1671,213,1588),(1672,213,1589),(1673,213,1590),(1674,213,1591),(1675,213,1592),(1676,213,1593),(1677,213,1594),(1678,213,1595),(1679,213,1596),(1680,213,1597),(1681,213,1598),(1682,213,1599),(1683,213,1600),(1684,213,1601),(1685,213,1602),(1686,213,1603),(1687,213,1604),(1688,213,1605),(1689,213,1606),(1690,213,1607),(1691,213,1608),(1692,213,1609),(1693,213,1610),(1694,213,1611),(1695,213,1612),(1696,213,1613),(1697,213,1614),(1698,213,1615),(1699,213,1616),(1700,213,1617),(1701,213,1618),(1702,213,1619),(1703,213,1620),(1704,213,1621),(1705,213,1622),(1706,213,1623),(1707,213,1624),(1708,213,1625),(1709,213,1626),(1710,213,1627),(1711,213,1628),(1712,213,1629),(1713,213,1630),(1714,213,1631),(1715,213,1632),(1716,213,1633),(1717,213,1634),(1718,213,1635),(1719,213,1636),(1720,213,1637),(1721,213,1638),(1722,213,1639),(1723,213,1640),(1724,213,1641),(1725,213,1642),(1726,213,1643),(1727,213,1644),(1728,213,1645),(1729,213,1646),(1730,213,1647),(1731,213,1648),(1732,213,1649),(1733,213,1650),(1734,213,1651),(1735,213,1652),(1736,213,1653),(1737,213,1654),(1738,213,1655),(1739,213,1656),(1740,213,1657),(1741,213,1658),(1742,213,1659),(1743,213,1660),(1744,213,1661),(1745,213,1662),(1746,213,1663),(1747,213,1664),(1748,213,1665),(1749,213,1666),(1750,213,1667),(1751,213,1668),(1752,213,1669),(1753,213,1670),(1754,213,1671),(1755,213,1672),(1756,213,1673),(1757,213,1674),(1758,213,1675),(1759,213,1676),(1760,213,1677),(1761,213,1678),(1762,213,1679),(1763,213,1680),(1764,213,1681),(1765,213,1682),(1766,213,1683),(1767,213,1684),(1768,213,1685),(1769,213,1686),(1770,213,1687),(1771,213,1688),(1772,213,1689),(1773,213,1690),(1774,213,1691),(1775,213,1692),(1776,213,1693),(1777,213,1694),(1778,213,1695),(1779,213,1696),(1780,213,1697),(1781,213,1698),(1782,213,1699),(1783,213,1700),(1784,213,1701),(1785,213,1702),(1786,213,1703),(1787,213,1704),(1788,213,1705),(1789,213,1706),(1790,213,1707),(1791,213,1708),(1792,213,1709),(1793,213,1710),(1794,213,1711),(1795,213,1712),(1796,213,1713),(1797,213,1714),(1798,213,1715),(1799,213,1716),(1800,213,1717),(1801,213,1718),(1802,213,1719),(1803,213,1720),(1804,213,1721),(1805,213,1722),(1806,213,1723),(1807,213,1724),(1808,213,1725),(1809,213,1726),(1810,213,1727),(1811,213,1728),(1812,213,1729),(1813,213,1730),(1814,213,1731),(1815,213,1732),(1816,213,1733),(1817,213,1734),(1818,213,1735),(1819,213,1736),(1820,213,1737),(1821,213,1738),(1822,213,1739),(1823,213,1740),(1824,213,1741),(1825,213,1742),(1826,213,1743),(1827,213,1744),(1828,213,1745),(1829,213,1746),(1830,213,1747),(1831,213,1748),(1832,213,1749),(1833,213,1750),(1834,213,1751),(1835,213,1752),(1836,213,1753),(1837,213,1754),(1838,213,1755),(1839,213,1756),(1840,213,1757),(1841,213,1758),(1842,213,1759),(1843,213,1760),(1844,213,1761),(1845,213,1762),(1846,213,1763),(1847,213,1764),(1848,213,1765),(1849,213,1766),(1850,213,1767),(1851,213,1768),(1852,213,1769),(1853,213,1770),(1854,213,1771),(1855,213,1772),(1856,213,1773),(1857,213,1774),(1858,213,1775),(1859,213,1776),(1860,213,1777),(1861,213,1778),(1862,213,1779),(1863,213,1780),(1864,213,1781),(1865,213,1782),(1866,213,1783),(1867,213,1784),(1868,213,1785),(1869,213,1786),(1870,213,1787),(1871,213,1788),(1872,213,1789),(1873,213,1790),(1874,213,1791),(1875,213,1792),(1876,213,1793),(1877,213,1794),(1878,213,1795),(1879,213,1796),(1880,213,1797),(1881,213,1798),(1882,213,1799),(1883,213,1800),(1884,213,1801),(1885,213,1802),(1886,213,1803),(1887,213,1804),(1888,213,1805),(1889,213,1806),(1890,213,1807),(1891,213,1808),(1892,213,1809),(1893,213,1810),(1894,213,1811),(1895,213,1812),(1896,213,1813),(1897,213,1814),(1898,213,1815),(1899,213,1816),(1900,213,1817),(1901,213,1818),(1902,213,1819),(1903,213,1820),(1904,213,1821),(1905,213,1822),(1906,213,1823),(1907,213,1824),(1908,213,1825),(1909,213,1826),(1910,213,1827),(1911,213,1828),(1912,213,1829),(1913,213,1830),(1914,213,1831),(1915,213,1832),(1916,213,1833),(1917,213,1834),(1918,213,1835),(1919,213,1836),(1920,213,1837),(1921,213,1838),(1922,213,1839),(1923,213,1840),(1924,213,1841),(1925,213,1842),(1926,213,1843),(1927,213,1844),(1928,213,1845),(1929,213,1846),(1930,213,1847),(1931,213,1848),(1932,213,1849),(1933,213,1850),(1934,213,1851),(1935,213,1852),(1936,213,1853),(1937,213,1854),(1938,213,1855),(1939,213,1856),(1940,213,1857),(1941,213,1858),(1942,213,1859),(1943,213,1860),(1944,213,1861),(1945,213,1862),(1946,213,1863),(1947,213,1864),(1948,213,1865),(1949,213,1866),(1950,213,1867),(1951,213,1868),(1952,213,1869),(1953,213,1870),(1954,213,1871),(1955,213,1872),(1956,213,1873),(1957,213,1874),(1958,213,1875),(1959,213,1876),(1960,213,1877),(1961,213,1878),(1962,213,1879),(1963,213,1880),(1964,213,1881),(1965,213,1882),(1966,213,1883),(1967,213,1884),(1968,213,1885),(1969,213,1886),(1970,213,1887),(1971,213,1888),(1972,213,1889),(1973,213,1890),(1974,213,1891),(1975,213,1892),(1976,213,1893),(1977,213,1894),(1978,213,1895),(1979,213,1896),(1980,213,1897),(1981,213,1898),(1982,213,1899),(1983,213,1900),(1984,213,1901),(1985,213,1902),(1986,213,1903),(1987,213,1904),(1988,213,1905),(1989,213,1906),(1990,213,1907),(1991,213,1908),(1992,213,1909),(1993,213,1910),(1994,213,1911),(1995,213,1912),(1996,213,1913),(1997,213,1914),(1998,213,1915),(1999,213,1916),(2000,213,1917),(2001,213,1918),(2002,213,1919),(2003,213,1920),(2004,213,1921),(2005,213,1922),(2006,213,1923),(2007,213,1924),(2008,213,1925),(2009,213,1926),(2010,213,1927),(2011,213,1928),(2012,213,1929),(2013,213,1930),(2014,213,1931),(2015,213,1932),(2016,213,1933),(2017,213,1934),(2018,213,1935),(2019,213,1936),(2020,213,1937),(2021,213,1938),(2022,213,1939),(2023,213,1940),(2024,213,1941),(2025,213,1942),(2026,213,1943),(2027,213,1944),(2028,213,1945),(2029,213,1946),(2030,213,1947),(2031,213,1948),(2032,213,1949),(2033,213,1950),(2034,213,1951),(2035,213,1952),(2036,213,1953),(2037,213,1954),(2038,213,1955),(2039,213,1956),(2040,213,1957),(2041,213,1958),(2042,213,1959),(2043,213,1960),(2044,213,1961),(2045,213,1962),(2046,213,1963),(2047,213,1964),(2048,213,1965),(2049,213,1966),(2050,213,1967),(2051,213,1968),(2052,213,1969),(2053,213,1970),(2054,213,1971),(2055,213,1972),(2056,213,1973),(2057,213,1974),(2058,213,1975),(2059,213,1976),(2060,213,1977),(2061,213,1978),(2062,213,1979),(2063,213,1980),(2064,213,1981),(2065,213,1982),(2066,213,1983),(2067,213,1984),(2068,213,1985),(2069,213,1986),(2070,213,1987),(2071,213,1988),(2072,213,1989),(2073,213,1990),(2074,213,1991),(2075,213,1992),(2076,213,1993),(2077,213,1994),(2078,213,1995),(2079,213,1996),(2080,213,1997),(2081,213,1998),(2082,213,1999),(2083,213,2000),(2084,213,2001),(2085,213,2002),(2086,213,2003),(2087,213,2004),(2088,213,2005),(2089,213,2006),(2090,213,2007),(2091,213,2008),(2092,213,2009),(2093,213,2010),(2094,213,2011),(2095,213,2012),(2096,213,2013),(2097,213,2014),(2098,213,2015),(2099,213,2016),(2100,213,2017),(2101,213,2018),(2102,213,2019),(2103,213,2020),(2104,213,2021),(2105,213,2022),(2106,213,2023),(2107,213,2024),(2108,213,2025),(2109,213,2026),(2110,213,2027),(2111,213,2028),(2112,213,2029),(2113,213,2030),(2114,213,2031),(2115,213,2032),(2116,213,2033),(2117,213,2034),(2118,213,2035),(2119,213,2036),(2120,213,2037),(2121,213,2038),(2122,213,2039),(2123,213,2040),(2124,213,2041),(2125,213,2042),(2126,213,2043),(2127,213,2044),(2128,213,2045),(2129,213,2046),(2130,213,2047),(2131,213,2048),(2132,213,2049),(2133,213,2050),(2134,213,2051),(2135,213,2052),(2136,213,2053),(2137,213,2054),(2138,213,2055),(2139,213,2056),(2140,213,2057),(2141,213,2058),(2142,213,2059),(2143,213,2060),(2144,213,2061),(2145,213,2062),(2146,213,2063),(2147,213,2064),(2148,213,2065),(2149,213,2066),(2150,213,2067),(2151,213,2068),(2152,213,2069),(2153,213,2070),(2154,213,2071),(2155,213,2072),(2156,213,2073),(2157,213,2074),(2158,213,2075),(2159,213,2076),(2160,213,2077),(2161,213,2078),(2162,213,2079),(2163,213,2080),(2164,213,2081),(2165,213,2082),(2166,213,2083),(2167,213,2084),(2168,213,2085),(2169,213,2086),(2170,213,2087),(2171,213,2088),(2172,213,2089),(2173,213,2090),(2174,213,2091),(2175,213,2092),(2176,213,2093),(2177,213,2094),(2178,213,2095),(2179,213,2096),(2180,213,2097),(2181,213,2098),(2182,213,2099),(2183,213,2100),(2184,213,2101),(2185,213,2102),(2186,213,2103),(2187,213,2104),(2188,213,2105),(2189,213,2106),(2190,213,2107),(2191,213,2108),(2192,213,2109),(2193,213,2110),(2194,213,2111),(2195,213,2112),(2196,213,2113),(2197,213,2114),(2198,213,2115),(2199,213,2116),(2200,213,2117),(2201,213,2118),(2202,213,2119),(2203,213,2120),(2204,213,2121),(2205,213,2122),(2206,213,2123),(2207,213,2124),(2208,213,2125),(2209,213,2126),(2210,213,2127),(2211,213,2128),(2212,213,2129),(2213,213,2130),(2214,213,2131),(2215,213,2132),(2216,213,2133),(2217,213,2134),(2218,213,2135),(2219,213,2136),(2220,213,2137),(2221,213,2138),(2222,213,2139),(2223,213,2140),(2224,213,2141),(2225,213,2142),(2226,213,2143),(2227,213,2144),(2228,213,2145),(2229,213,2146),(2230,213,2147),(2231,213,2148),(2232,213,2149),(2233,213,2150),(2234,213,2151),(2235,213,2152),(2236,213,2153),(2237,213,2154),(2238,213,2155),(2239,213,2156),(2240,213,2157),(2241,213,2158),(2242,213,2159),(2243,213,2160),(2244,213,2161),(2245,213,2162),(2246,213,2163),(2247,213,2164),(2248,213,2165),(2249,213,2166),(2250,213,2167),(2251,213,2168),(2252,213,2169),(2253,213,2170),(2254,213,2171),(2255,213,2172),(2256,213,2173),(2257,213,2174),(2258,213,2175),(2259,213,2176),(2260,213,2177),(2261,213,2178),(2262,213,2179),(2263,213,2180),(2264,213,2181),(2265,213,2182),(2266,213,2183),(2267,213,2184),(2268,213,2185),(2269,213,2186),(2270,213,2187),(2271,213,2188),(2272,213,2189),(2273,213,2190),(2274,213,2191),(2275,213,2192),(2276,213,2193),(2277,213,2194),(2278,213,2195),(2279,213,2196),(2280,213,2197),(2281,213,2198),(2282,213,2199),(2283,213,2200),(2284,213,2201),(2285,213,2202),(2286,213,2203),(2287,213,2204),(2288,213,2205),(2289,213,2206),(2290,213,2207),(2291,213,2208),(2292,213,2209),(2293,213,2210),(2294,213,2211),(2295,213,2212),(2296,213,2213),(2297,213,2214),(2298,213,2215),(2299,213,2216),(2300,213,2217),(2301,213,2218),(2302,213,2219),(2303,213,2220),(2304,213,2221),(2305,213,2222),(2306,213,2223),(2307,213,2224),(2308,213,2225),(2309,213,2226),(2310,213,2227),(2311,213,2228),(2312,213,2229),(2313,213,2230),(2314,213,2231),(2315,213,2232),(2316,213,2233),(2317,213,2234),(2318,213,2235),(2319,213,2236),(2320,213,2237),(2321,213,2238),(2322,213,2239),(2323,213,2240),(2324,213,2241),(2325,213,2242),(2326,213,2243),(2327,213,2244),(2328,213,2245),(2329,213,2246),(2330,213,2247),(2331,213,2248),(2332,213,2249),(2333,213,2250),(2334,213,2251),(2335,213,2252),(2336,213,2253),(2337,213,2254),(2338,213,2255),(2339,213,2256),(2340,213,2257),(2341,213,2258),(2342,213,2259),(2343,213,2260),(2344,213,2261),(2345,213,2262),(2346,213,2263),(2347,213,2264),(2348,213,2265),(2349,213,2266),(2350,213,2267),(2351,213,2268),(2352,213,2269),(2353,213,2270),(2354,213,2271),(2355,213,2272),(2356,213,2273),(2357,213,2274),(2358,213,2275),(2359,213,2276),(2360,213,2277),(2361,213,2278),(2362,213,2279),(2363,213,2280),(2364,213,2281),(2365,213,2282),(2366,213,2283),(2367,213,2284),(2368,213,2285),(2369,213,2286),(2370,213,2287),(2371,213,2288),(2372,213,2289),(2373,213,2290),(2374,213,2291),(2375,213,2292),(2376,213,2293),(2377,213,2294),(2378,213,2295),(2379,213,2296),(2380,213,2297),(2381,213,2298),(2382,213,2299),(2383,213,2300),(2384,213,2301),(2385,213,2302),(2386,213,2303),(2387,213,2304),(2388,213,2305),(2389,213,2306),(2390,213,2307),(2391,213,2308),(2392,213,2309),(2393,213,2310),(2394,213,2311),(2395,213,2312),(2396,213,2313),(2397,213,2314),(2398,213,2315),(2399,213,2316),(2400,213,2317),(2401,213,2318),(2402,213,2319),(2403,213,2320),(2404,213,2321),(2405,213,2322),(2406,213,2323),(2407,213,2324),(2408,213,2325),(2409,213,2326),(2410,213,2327),(2411,213,2328),(2412,213,2329),(2413,213,2330),(2414,213,2331),(2415,213,2332),(2416,213,2333),(2417,213,2334),(2418,213,2335),(2419,213,2336),(2420,213,2337),(2421,213,2338),(2422,213,2339),(2423,213,2340),(2424,213,2341),(2425,213,2342),(2426,213,2343),(2427,213,2344),(2428,213,2345),(2429,213,2346),(2430,213,2347),(2431,213,2348),(2432,213,2349),(2433,213,2350),(2434,213,2351),(2435,213,2352),(2436,213,2353),(2437,213,2354),(2438,213,2355),(2439,213,2356),(2440,213,2357),(2441,213,2358),(2442,213,2359),(2443,213,2360),(2444,213,2361),(2445,213,2362),(2446,213,2363),(2447,213,2364),(2448,213,2365),(2449,213,2366),(2450,213,2367),(2451,213,2368),(2452,213,2369),(2453,213,2370),(2454,213,2371),(2455,213,2372),(2456,213,2373),(2457,213,2374),(2458,213,2375),(2459,213,2376),(2460,213,2377),(2461,213,2378),(2462,213,2379),(2463,213,2380),(2464,213,2381),(2465,213,2382),(2466,213,2383),(2467,213,2384),(2468,213,2385),(2469,213,2386),(2470,213,2387),(2471,213,2388),(2472,213,2389),(2473,213,2390),(2474,213,2391),(2475,213,2392),(2476,213,2393),(2477,213,2394),(2478,213,2395),(2479,213,2396),(2480,213,2397),(2481,213,2398),(2482,213,2399),(2483,213,2400),(2484,213,2401),(2485,213,2402),(2486,213,2403),(2487,213,2404),(2488,213,2405),(2489,213,2406),(2490,213,2407),(2491,213,2408),(2492,213,2409),(2493,213,2410),(2494,213,2411),(2495,213,2412),(2496,213,2413),(2497,213,2414),(2498,213,2415),(2499,213,2416),(2500,213,2417),(2501,213,2418),(2502,213,2419),(2503,213,2420),(2504,213,2421),(2505,213,2422),(2506,213,2423),(2507,213,2424),(2508,213,2425),(2509,213,2426),(2510,213,2427),(2511,213,2428),(2512,213,2429),(2513,213,2430),(2514,213,2431),(2515,213,2432),(2516,213,2433),(2517,213,2434),(2518,213,2435),(2519,213,2436),(2520,213,2437),(2521,213,2438),(2522,213,2439),(2523,213,2440),(2524,213,2441),(2525,213,2442),(2526,213,2443),(2527,213,2444),(2528,213,2445),(2529,213,2446),(2530,213,2447),(2531,213,2448),(2532,213,2449),(2533,213,2450),(2534,213,2451),(2535,213,2452),(2536,213,2453),(2537,213,2454),(2538,213,2455),(2539,213,2456),(2540,213,2457),(2541,213,2458),(2542,213,2459),(2543,213,2460),(2544,213,2461),(2545,213,2462),(2546,213,2463),(2547,213,2464),(2548,213,2465),(2549,213,2466),(2550,213,2467),(2551,213,2468),(2552,213,2469),(2553,213,2470),(2554,213,2471),(2555,213,2472),(2556,213,2473),(2557,213,2474),(2558,213,2475),(2559,213,2476),(2560,213,2477),(2561,213,2478),(2562,213,2479),(2563,213,2480),(2564,213,2481),(2565,213,2482),(2566,213,2483),(2567,213,2484),(2568,213,2485),(2569,213,2486),(2570,213,2487),(2571,213,2488),(2572,213,2489),(2573,213,2490),(2574,213,2491),(2575,213,2492),(2576,213,2493),(2577,213,2494),(2578,213,2495),(2579,213,2496),(2580,213,2497),(2581,213,2498),(2582,213,2499),(2583,213,2500),(2584,213,2501),(2585,213,2502),(2586,213,2503),(2587,213,2504),(2588,213,2505),(2589,213,2506),(2590,213,2507),(2591,213,2508),(2592,213,2509),(2593,213,2510),(2594,213,2511),(2595,213,2512),(2596,213,2513),(2597,213,2514),(2598,213,2515),(2599,213,2516),(2600,213,2517),(2601,213,2518),(2602,213,2519),(2603,213,2520),(2604,213,2521),(2605,213,2522),(2606,213,2523),(2607,213,2524),(2608,213,2525),(2609,213,2526),(2610,213,2527),(2611,213,2528),(2612,213,2529),(2613,213,2530),(2614,213,2531),(2615,213,2532),(2616,213,2533),(2617,213,2534),(2618,213,2535),(2619,213,2536),(2620,213,2537),(2621,213,2538),(2622,213,2539),(2623,213,2540),(2624,213,2541),(2625,213,2542),(2626,213,2543),(2627,213,2544),(2628,213,2545),(2629,213,2546),(2630,213,2547),(2631,213,2548),(2632,213,2549),(2633,213,2550),(2634,213,2551),(2635,213,2552),(2636,213,2553),(2637,213,2554),(2638,213,2555),(2639,213,2556),(2640,213,2557),(2641,213,2558),(2642,213,2559),(2643,213,2560),(2644,213,2561),(2645,213,2562),(2646,213,2563),(2647,213,2564),(2648,213,2565),(2649,213,2566),(2650,213,2567),(2651,213,2568),(2652,213,2569),(2653,213,2570),(2654,213,2571),(2655,213,2572),(2656,213,2573),(2657,213,2574),(2658,213,2575),(2659,213,2576),(2660,213,2577),(2661,213,2578),(2662,213,2579),(2663,213,2580),(2664,213,2581),(2665,213,2582),(2666,213,2583),(2667,213,2584),(2668,213,2585),(2669,213,2586),(2670,213,2587),(2671,213,2588),(2672,213,2589),(2673,213,2590),(2674,213,2591),(2675,213,2592),(2676,213,2593),(2677,213,2594),(2678,213,2595),(2679,213,2596),(2680,213,2597),(2681,213,2598),(2682,213,2599),(2683,213,2600),(2684,213,2601),(2685,213,2602),(2686,213,2603),(2687,213,2604),(2688,213,2605),(2689,213,2606),(2690,213,2607),(2691,213,2608),(2692,213,2609),(2693,213,2610),(2694,213,2611),(2695,213,2612),(2696,213,2613),(2697,213,2614),(2698,213,2615),(2699,213,2616),(2700,213,2617),(2701,213,2618),(2702,213,2619),(2703,213,2620),(2704,213,2621),(2705,213,2622),(2706,213,2623),(2707,213,2624),(2708,213,2625),(2709,213,2626),(2710,213,2627),(2711,213,2628),(2712,213,2629),(2713,213,2630),(2714,213,2631),(2715,213,2632),(2716,213,2633),(2717,213,2634),(2718,213,2635),(2719,213,2636),(2720,213,2637),(2721,213,2638),(2722,213,2639),(2723,213,2640),(2724,213,2641),(2725,213,2642),(2726,213,2643),(2727,213,2644),(2728,213,2645),(2729,213,2646),(2730,213,2647),(2731,213,2648),(2732,213,2649),(2733,213,2650),(2734,213,2651),(2735,213,2652),(2736,213,2653),(2737,213,2654),(2738,213,2655),(2739,213,2656),(2740,213,2657),(2741,213,2658),(2742,213,2659),(2743,213,2660),(2744,213,2661),(2745,213,2662),(2746,213,2663),(2747,213,2664),(2748,213,2665),(2749,213,2666),(2750,213,2667),(2751,213,2668),(2752,213,2669),(2753,213,2670),(2754,213,2671),(2755,213,2672),(2756,213,2673),(2757,213,2674),(2758,213,2675),(2759,213,2676),(2760,213,2677),(2761,213,2678),(2762,213,2679),(2763,213,2680),(2764,213,2681),(2765,213,2682),(2766,213,2683),(2767,213,2684),(2768,213,2685),(2769,213,2686),(2770,213,2687),(2771,213,2688),(2772,213,2689),(2773,213,2690),(2774,213,2691),(2775,213,2692),(2776,213,2693),(2777,213,2694),(2778,213,2695),(2779,213,2696),(2780,213,2697),(2781,213,2698),(2782,213,2699),(2783,213,2700),(2784,213,2701),(2785,213,2702),(2786,213,2703),(2787,213,2704),(2788,213,2705),(2789,213,2706),(2790,213,2707),(2791,213,2708),(2792,213,2709),(2793,213,2710),(2794,213,2711),(2795,213,2712),(2796,213,2713),(2797,213,2714),(2798,213,2715),(2799,213,2716),(2800,213,2717),(2801,213,2718),(2802,213,2719),(2803,213,2720),(2804,213,2721),(2805,213,2722),(2806,213,2723),(2807,213,2724),(2808,213,2725),(2809,213,2726),(2810,213,2727),(2811,213,2728),(2812,213,2729),(2813,213,2730),(2814,213,2731),(2815,213,2732),(2816,213,2733),(2817,213,2734),(2818,213,2735),(2819,213,2736),(2820,213,2737),(2821,213,2738),(2822,213,2739),(2823,213,2740),(2824,213,2741),(2825,213,2742),(2826,213,2743),(2827,213,2744),(2828,213,2745),(2829,213,2746),(2830,213,2747),(2831,213,2748),(2832,213,2749),(2833,213,2750),(2834,213,2751),(2835,213,2752),(2836,213,2753),(2837,213,2754),(2838,213,2755),(2839,213,2756),(2840,213,2757),(2841,213,2758),(2842,213,2759),(2843,213,2760),(2844,213,2761),(2845,213,2762),(2846,213,2763),(2847,213,2764),(2848,213,2765),(2849,213,2766),(2850,213,2767),(2851,213,2768),(2852,213,2769),(2853,213,2770),(2854,213,2771),(2855,213,2772),(2856,213,2773),(2857,213,2774),(2858,213,2775),(2859,213,2776),(2860,213,2777),(2861,213,2778),(2862,213,2779),(2863,213,2780),(2864,213,2781),(2865,213,2782),(2866,213,2783),(2867,213,2784),(2868,213,2785),(2869,213,2786),(2870,213,2787),(2871,213,2788),(2872,213,2789),(2873,213,2790),(2874,213,2791),(2875,213,2792),(2876,213,2793),(2877,213,2794),(2878,213,2795),(2879,213,2796),(2880,213,2797),(2881,213,2798),(2882,213,2799),(2883,213,2800),(2884,213,2801),(2885,213,2802),(2886,213,2803),(2887,213,2804),(2888,213,2805),(2889,213,2806),(2890,213,2807),(2891,213,2808),(2892,213,2809),(2893,213,2810),(2894,213,2811),(2895,213,2812),(2896,213,2813),(2897,213,2814),(2898,213,2815),(2899,213,2816),(2900,213,2817),(2901,213,2818),(2902,213,2819),(2903,213,2820),(2904,213,2821),(2905,213,2822),(2906,213,2823),(2907,213,2824),(2908,213,2825),(2909,213,2826),(2910,213,2827),(2911,213,2828),(2912,213,2829),(2913,213,2830),(2914,213,2831),(2915,213,2832),(2916,213,2833),(2917,213,2834),(2918,213,2835),(2919,213,2836),(2920,213,2837),(2921,213,2838),(2922,213,2839),(2923,213,2840),(2924,213,2841),(2925,213,2842),(2926,213,2843),(2927,213,2844),(2928,213,2845),(2929,213,2846),(2930,213,2847),(2931,213,2848),(2932,213,2849),(2933,213,2850),(2934,213,2851),(2935,213,2852),(2936,213,2853),(2937,213,2854),(2938,213,2855),(2939,213,2856),(2940,213,2857),(2941,213,2858),(2942,213,2859),(2943,213,2860),(2944,213,2861),(2945,213,2862),(2946,213,2863),(2947,213,2864),(2948,213,2865),(2949,213,2866),(2950,213,2867),(2951,213,2868),(2952,213,2869),(2953,213,2870),(2954,213,2871),(2955,213,2872),(2956,213,2873),(2957,213,2874),(2958,213,2875),(2959,213,2876),(2960,213,2877),(2961,213,2878),(2962,213,2879),(2963,213,2880),(2964,213,2881),(2965,213,2882),(2966,213,2883),(2967,213,2884),(2968,213,2885),(2969,213,2886),(2970,213,2887),(2971,213,2888),(2972,213,2889),(2973,213,2890),(2974,213,2891),(2975,213,2892),(2976,213,2893),(2977,213,2894),(2978,213,2895),(2979,213,2896),(2980,213,2897),(2981,213,2898),(2982,213,2899),(2983,213,2900),(2984,213,2901),(2985,213,2902),(2986,213,2903),(2987,213,2904),(2988,213,2905),(2989,213,2906),(2990,213,2907),(2991,213,2908),(2992,213,2909),(2993,213,2910),(2994,213,2911),(2995,213,2912),(2996,213,2913),(2997,213,2914),(2998,213,2915),(2999,213,2916),(3000,213,2917),(3001,213,2918),(3002,213,2919),(3003,213,2920),(3004,213,2921),(3005,213,2922),(3006,213,2923),(3007,213,2924),(3008,213,2925),(3009,213,2926),(3010,213,2927),(3011,213,2928),(3012,213,2929),(3013,213,2930),(3014,213,2931),(3015,213,2932),(3016,213,2933),(3017,213,2934),(3018,213,2935),(3019,213,2936),(3020,213,2937),(3021,213,2938),(3022,213,2939),(3023,213,2940),(3024,213,2941),(3025,213,2942),(3026,213,2943),(3027,213,2944),(3028,213,2945),(3029,213,2946),(3030,213,2947),(3031,213,2948),(3032,213,2949),(3033,213,2950),(3034,213,2951),(3035,213,2952),(3036,213,2953),(3037,213,2954),(3038,213,2955),(3039,213,2956),(3040,213,2957),(3041,213,2958),(3042,213,2959),(3043,213,2960),(3044,213,2961),(3045,213,2962),(3046,213,2963),(3047,213,2964),(3048,213,2965),(3049,213,2966),(3050,213,2967),(3051,213,2968),(3052,213,2969),(3053,213,2970),(3054,213,2971),(3055,213,2972),(3056,213,2973),(3057,213,2974),(3058,213,2975),(3059,213,2976),(3060,213,2977),(3061,213,2978),(3062,213,2979),(3063,213,2980),(3064,213,2981),(3065,213,2982),(3066,213,2983),(3067,213,2984),(3068,213,2985),(3069,213,2986),(3070,213,2987),(3071,213,2988),(3072,213,2989),(3073,213,2990),(3074,213,2991),(3075,213,2992),(3076,213,2993),(3077,213,2994),(3078,213,2995),(3079,213,2996),(3080,213,2997),(3081,213,2998),(3082,213,2999),(3083,213,3000),(3084,213,3001),(3085,213,3002),(3086,213,3003),(3087,213,3004),(3088,213,3005),(3089,213,3006),(3090,213,3007),(3091,213,3008),(3092,213,3009),(3093,213,3010),(3094,213,3011),(3095,213,3012),(3096,213,3013),(3097,213,3014),(3098,213,3015),(3099,213,3016),(3100,213,3017),(3101,213,3018),(3102,213,3019),(3103,213,3020),(3104,213,3021),(3105,213,3022),(3106,213,3023),(3107,213,3024),(3108,213,3025),(3109,213,3026),(3110,213,3027),(3111,213,3028),(3112,213,3029),(3113,213,3030),(3114,213,3031),(3115,213,3032),(3116,213,3033),(3117,213,3034),(3118,213,3035),(3119,213,3036),(3120,213,3037),(3121,213,3038),(3122,213,3039),(3123,213,3040),(3124,213,3041),(3125,213,3042),(3126,213,3043),(3127,213,3044),(3128,213,3045),(3129,213,3046),(3130,213,3047),(3131,213,3048),(3132,213,3049),(3133,213,3050),(3134,213,3051),(3135,213,3052),(3136,213,3053),(3137,213,3054),(3138,213,3055),(3139,213,3056),(3140,213,3057),(3141,213,3058),(3142,213,3059),(3143,213,3060),(3144,213,3061),(3145,213,3062),(3146,213,3063),(3147,213,3064),(3148,213,3065),(3149,213,3066),(3150,213,3067),(3151,213,3068),(3152,213,3069),(3153,213,3070),(3154,213,3071),(3155,213,3072),(3156,213,3073),(3157,213,3074),(3158,213,3075),(3159,213,3076),(3160,213,3077),(3161,213,3078),(3162,213,3079),(3163,213,3080),(3164,213,3081),(3165,213,3082),(3166,213,3083),(3167,213,3084),(3168,213,3085),(3169,213,3086),(3170,213,3087),(3171,213,3088),(3172,213,3089),(3173,213,3090),(3174,213,3091),(3175,213,3092),(3176,213,3093),(3177,213,3094),(3178,213,3095),(3179,213,3096),(3180,213,3097),(3181,213,3098),(3182,213,3099),(3183,213,3100),(3184,213,3101),(3185,213,3102),(3186,213,3103),(3187,213,3104),(3188,213,3105),(3189,213,3106),(3190,213,3107),(3191,213,3108),(3192,213,3109),(3193,213,3110),(3194,213,3111),(3195,213,3112),(3196,213,3113),(3197,213,3114),(3198,213,3115),(3199,213,3116),(3200,213,3117),(3201,213,3118),(3202,213,3119),(3203,213,3120),(3204,213,3121),(3205,213,3122),(3206,213,3123),(3207,213,3124),(3208,213,3125),(3209,213,3126),(3210,213,3127),(3211,213,3128),(3212,213,3129),(3213,213,3130),(3214,213,3131),(3215,213,3132),(3216,213,3133),(3217,213,3134),(3218,213,3135),(3219,213,3136),(3220,213,3137),(3221,213,3138),(3222,213,3139),(3223,213,3140),(3224,213,3141),(3225,213,3142),(3226,213,3143),(3227,213,3144),(3228,213,3145),(3229,213,3146),(3230,213,3147),(3231,213,3148),(3232,213,3149),(3233,213,3150),(3234,213,3151),(3235,213,3152),(3236,213,3153),(3237,213,3154),(3238,213,3155),(3239,213,3156),(3240,213,3157),(3241,213,3158),(3242,213,3159),(3243,213,3160),(3244,213,3161),(3245,213,3162),(3246,213,3163),(3247,213,3164),(3248,213,3165),(3249,213,3166),(3250,213,3167),(3251,213,3168),(3252,213,3169),(3253,213,3170),(3254,213,3171),(3255,213,3172),(3256,213,3173),(3257,213,3174),(3258,213,3175),(3259,213,3176),(3260,213,3177),(3261,213,3178),(3262,213,3179),(3263,213,3180),(3264,213,3181),(3265,213,3182),(3266,213,3183),(3267,213,3184),(3268,213,3185),(3269,213,3186),(3270,213,3187),(3271,213,3188),(3272,213,3189),(3273,213,3190),(3274,213,3191),(3275,213,3192),(3276,213,3193),(3277,213,3194),(3278,213,3195),(3279,213,3196),(3280,213,3197),(3281,213,3198),(3282,213,3199),(3283,213,3200),(3284,213,3201),(3285,213,3202),(3286,213,3203),(3287,213,3204),(3288,213,3205),(3289,213,3206),(3290,213,3207),(3291,213,3208),(3292,213,3209),(3293,213,3210),(3294,213,3211),(3295,213,3212),(3296,213,3213),(3297,213,3214),(3298,213,3215),(3299,213,3216),(3300,213,3217),(3301,213,3218),(3302,213,3219),(3303,213,3220),(3304,213,3221),(3305,213,3222),(3306,213,3223),(3307,213,3224),(3308,213,3225),(3309,213,3226),(3310,213,3227),(3311,213,3228),(3312,213,3229),(3313,213,3230),(3314,213,3231),(3315,213,3232),(3316,213,3233),(3317,213,3234),(3318,213,3235),(3319,213,3236),(3320,213,3237),(3321,213,3238),(3322,213,3239),(3323,213,3240),(3324,213,3241),(3325,213,3242),(3326,213,3243),(3327,213,3244),(3328,213,3245),(3329,213,3246),(3330,213,3247),(3331,213,3248),(3332,213,3249),(3333,213,3250),(3334,213,3251),(3335,213,3252),(3336,213,3253),(3337,213,3254),(3338,213,3255),(3339,213,3256),(3340,213,3257),(3341,213,3258),(3342,213,3259),(3343,213,3260),(3344,213,3261),(3345,213,3262),(3346,213,3263),(3347,213,3264),(3348,213,3265),(3349,213,3266),(3350,213,3267),(3351,213,3268),(3352,213,3269),(3353,213,3270),(3354,213,3271),(3355,213,3272),(3356,213,3273),(3357,213,3274),(3358,213,3275),(3359,213,3276),(3360,213,3277),(3361,213,3278),(3362,213,3279),(3363,213,3280),(3364,213,3281),(3365,213,3282),(3366,213,3283),(3367,213,3284),(3368,213,3285),(3369,213,3286),(3370,213,3287),(3371,213,3288),(3372,213,3289),(3373,213,3290),(3374,213,3291),(3375,213,3292),(3376,213,3293),(3377,213,3294),(3378,213,3295),(3379,213,3296),(3380,213,3297),(3381,213,3298),(3382,213,3299),(3383,213,3300),(3384,213,3301),(3385,213,3302),(3386,213,3303),(3387,213,3304),(3388,213,3305),(3389,213,3306),(3390,213,3307),(3391,213,3308),(3392,213,3309),(3393,213,3310),(3394,213,3311),(3395,213,3312),(3396,213,3313),(3397,213,3314),(3398,213,3315),(3399,213,3316),(3400,213,3317),(3401,213,3318),(3402,213,3319),(3403,213,3320),(3404,213,3321),(3405,213,3322),(3406,213,3323),(3407,213,3324),(3408,213,3325),(3409,213,3326),(3410,213,3327),(3411,213,3328),(3412,213,3329),(3413,213,3330),(3414,213,3331),(3415,213,3332),(3416,213,3333),(3417,213,3334),(3418,213,3335),(3419,213,3336),(3420,213,3337),(3421,213,3338),(3422,213,3339),(3423,213,3340),(3424,213,3341),(3425,213,3342),(3426,213,3343),(3427,213,3344),(3428,213,3345),(3429,213,3346),(3430,213,3347),(3431,213,3348),(3432,213,3349),(3433,213,3350),(3434,213,3351),(3435,213,3352),(3436,213,3353),(3437,213,3354),(3438,213,3355),(3439,213,3356),(3440,213,3357),(3441,213,3358),(3442,213,3359),(3443,213,3360),(3444,213,3361),(3445,213,3362),(3446,213,3363),(3447,213,3364),(3448,213,3365),(3449,213,3366),(3450,213,3367),(3451,213,3368),(3452,213,3369),(3453,213,3370),(3454,213,3371),(3455,213,3372),(3456,213,3373),(3457,213,3374),(3458,213,3375),(3459,213,3376),(3460,213,3377),(3461,213,3378),(3462,213,3379),(3463,213,3380),(3464,213,3381),(3465,213,3382),(3466,213,3383),(3467,213,3384),(3468,213,3385),(3469,213,3386),(3470,213,3387),(3471,213,3388),(3472,213,3389),(3473,213,3390),(3474,213,3391),(3475,213,3392),(3476,213,3393),(3477,213,3394),(3478,213,3395),(3479,213,3396),(3480,213,3397),(3481,213,3398),(3482,213,3399),(3483,213,3400),(3484,213,3401),(3485,213,3402),(3486,213,3403),(3487,213,3404),(3488,213,3405),(3489,213,3406),(3490,213,3407),(3491,213,3408),(3492,213,3409),(3493,213,3410),(3494,213,3411),(3495,213,3412),(3496,213,3413),(3497,213,3414),(3498,213,3415),(3499,213,3416),(3500,213,3417),(3501,213,3418),(3502,213,3419),(3503,213,3420),(3504,213,3421),(3505,213,3422),(3506,213,3423),(3507,213,3424),(3508,213,3425),(3509,213,3426),(3510,213,3427),(3511,213,3428),(3512,213,3429),(3513,213,3430),(3514,213,3431),(3515,213,3432),(3516,213,3433),(3517,213,3434),(3518,213,3435),(3519,213,3436),(3520,213,3437),(3521,213,3438),(3522,213,3439),(3523,213,3440),(3524,213,3441),(3525,213,3442),(3526,213,3443),(3527,213,3444),(3528,213,3445),(3529,213,3446),(3530,213,3447),(3531,213,3448),(3532,213,3449),(3533,213,3450),(3534,213,3451),(3535,213,3452),(3536,213,3453),(3537,213,3454),(3538,213,3455),(3539,213,3456),(3540,213,3457),(3541,213,3458),(3542,213,3459),(3543,213,3460),(3544,213,3461),(3545,213,3462),(3546,213,3463),(3547,213,3464),(3548,213,3465),(3549,213,3466),(3550,213,3467),(3551,213,3468),(3552,213,3469),(3553,213,3470),(3554,213,3471),(3555,213,3472),(3556,213,3473),(3557,213,3474),(3558,213,3475),(3559,213,3476),(3560,213,3477),(3561,213,3478),(3562,213,3479),(3563,213,3480),(3564,213,3481),(3565,213,3482),(3566,213,3483),(3567,213,3484),(3568,213,3485),(3569,213,3486),(3570,213,3487),(3571,213,3488),(3572,213,3489),(3573,213,3490),(3574,213,3491),(3575,213,3492),(3576,213,3493),(3577,213,3494),(3578,213,3495),(3579,213,3496),(3580,213,3497),(3581,213,3498),(3582,213,3499),(3583,213,3500),(3584,213,3501),(3585,213,3502),(3586,213,3503),(3587,213,3504),(3588,213,3505),(3589,213,3506),(3590,213,3507),(3591,213,3508),(3592,213,3509),(3593,213,3510),(3594,213,3511),(3595,213,3512),(3596,213,3513),(3597,213,3514),(3598,213,3515),(3599,213,3516),(3600,213,3517),(3601,213,3518),(3602,213,3519),(3603,213,3520),(3604,213,3521),(3605,213,3522),(3606,213,3523),(3607,213,3524),(3608,213,3525),(3609,213,3526),(3610,213,3527),(3611,213,3528),(3612,213,3529),(3613,213,3530),(3614,213,3531),(3615,213,3532),(3616,213,3533),(3617,213,3534),(3618,213,3535),(3619,213,3536),(3620,213,3537),(3621,213,3538),(3622,213,3539),(3623,213,3540),(3624,213,3541),(3625,213,3542),(3626,213,3543),(3627,213,3544),(3628,213,3545),(3629,213,3546),(3630,213,3547),(3631,213,3548),(3632,213,3549),(3633,213,3550),(3634,213,3551),(3635,213,3552),(3636,213,3553),(3637,213,3554),(3638,213,3555),(3639,213,3556),(3640,213,3557),(3641,213,3558),(3642,213,3559),(3643,213,3560),(3644,213,3561),(3645,213,3562),(3646,213,3563),(3647,213,3564),(3648,213,3565),(3649,213,3566),(3650,213,3567),(3651,213,3568),(3652,213,3569),(3653,213,3570),(3654,213,3571),(3655,213,3572),(3656,213,3573),(3657,213,3574),(3658,213,3575),(3659,213,3576),(3660,213,3577),(3661,213,3578),(3662,213,3579),(3663,213,3580),(3664,213,3581),(3665,213,3582),(3666,213,3583),(3667,213,3584),(3668,213,3585),(3669,213,3586),(3670,213,3587),(3671,213,3588),(3672,213,3589),(3673,213,3590),(3674,213,3591),(3675,213,3592),(3676,213,3593),(3677,213,3594),(3678,213,3595),(3679,213,3596),(3680,213,3597),(3681,213,3598),(3682,213,3599),(3683,213,3600),(3684,213,3601),(3685,213,3602),(3686,213,3603),(3687,213,3604),(3688,213,3605),(3689,213,3606),(3690,213,3607),(3691,213,3608),(3692,213,3609),(3693,213,3610),(3694,213,3611),(3695,213,3612),(3696,213,3613),(3697,213,3614),(3698,213,3615),(3699,213,3616),(3700,213,3617),(3701,213,3618),(3702,213,3619),(3703,213,3620),(3704,213,3621),(3705,213,3622),(3706,213,3623),(3707,213,3624),(3708,213,3625),(3709,213,3626),(3710,213,3627),(3711,213,3628),(3712,213,3629),(3713,213,3630),(3714,213,3631),(3715,213,3632),(3716,213,3633),(3717,213,3634),(3718,213,3635),(3719,213,3636),(3720,213,3637),(3721,213,3638),(3722,213,3639),(3723,213,3640),(3724,213,3641),(3725,213,3642),(3726,213,3643),(3727,213,3644),(3728,213,3645),(3729,213,3646),(3730,213,3647),(3731,213,3648),(3732,213,3649),(3733,213,3650),(3734,213,3651),(3735,213,3652),(3736,213,3653),(3737,213,3654),(3738,213,3655),(3739,213,3656),(3740,213,3657),(3741,213,3658),(3742,213,3659),(3743,213,3660),(3744,213,3661),(3745,213,3662),(3746,213,3663),(3747,213,3664),(3748,213,3665),(3749,213,3666),(3750,213,3667),(3751,213,3668),(3752,213,3669),(3753,213,3670),(3754,213,3671),(3755,213,3672),(3756,213,3673),(3757,213,3674),(3758,213,3675),(3759,213,3676),(3760,213,3677),(3761,213,3678),(3762,213,3679),(3763,213,3680),(3764,213,3681),(3765,213,3682),(3766,213,3683),(3767,213,3684),(3768,213,3685),(3769,213,3686),(3770,213,3687),(3771,213,3688),(3772,213,3689),(3773,213,3690),(3774,213,3691),(3775,213,3692),(3776,213,3693),(3777,213,3694),(3778,213,3695),(3779,213,3696),(3780,213,3697),(3781,213,3698),(3782,213,3699),(3783,213,3700),(3784,213,3701),(3785,213,3702),(3786,213,3703),(3787,213,3704),(3788,213,3705),(3789,213,3706),(3790,213,3707),(3791,213,3708),(3792,213,3709),(3793,213,3710),(3794,213,3711),(3795,213,3712),(3796,213,3713),(3797,213,3714),(3798,213,3715),(3799,213,3716),(3800,213,3717),(3801,213,3718),(3802,213,3719),(3803,213,3720),(3804,213,3721),(3805,213,3722),(3806,213,3723),(3807,213,3724),(3808,213,3725),(3809,213,3726),(3810,213,3727),(3811,213,3728),(3812,213,3729),(3813,213,3730),(3814,213,3731),(3815,213,3732),(3816,213,3733),(3817,213,3734),(3818,213,3735),(3819,213,3736),(3820,213,3737),(3821,213,3738),(3822,213,3739),(3823,213,3740),(3824,213,3741),(3825,213,3742),(3826,213,3743),(3827,213,3744),(3828,213,3745),(3829,213,3746),(3830,213,3747),(3831,213,3748),(3832,213,3749),(3833,213,3750),(3834,213,3751),(3835,213,3752),(3836,213,3753),(3837,213,3754),(3838,213,3755),(3839,213,3756),(3840,213,3757),(3841,213,3758),(3842,213,3759),(3843,213,3760),(3844,213,3761),(3845,213,3762),(3846,213,3763),(3847,213,3764),(3848,213,3765),(3849,213,3766),(3850,213,3767),(3851,213,3768),(3852,213,3769),(3853,213,3770),(3854,213,3771),(3855,213,3772),(3856,213,3773),(3857,213,3774),(3858,213,3775),(3859,213,3776),(3860,213,3777),(3861,213,3778),(3862,213,3779),(3863,213,3780),(3864,213,3781),(3865,213,3782),(3866,213,3783),(3867,213,3784),(3868,213,3785),(3869,213,3786),(3870,213,3787),(3871,213,3788),(3872,213,3789),(3873,213,3790),(3874,213,3791),(3875,213,3792),(3876,213,3793),(3877,213,3794),(3878,213,3795),(3879,213,3796),(3880,213,3797),(3881,213,3798),(3882,213,3799),(3883,213,3800),(3884,213,3801),(3885,213,3802),(3886,213,3803),(3887,213,3804),(3888,213,3805),(3889,213,3806),(3890,213,3807),(3891,213,3808),(3892,213,3809),(3893,213,3810),(3894,213,3811),(3895,213,3812),(3896,213,3813),(3897,213,3814),(3898,213,3815),(3899,213,3816),(3900,213,3817),(3901,213,3818),(3902,213,3819),(3903,213,3820),(3904,213,3821),(3905,213,3822),(3906,213,3823),(3907,213,3824),(3908,213,3825),(3909,213,3826),(3910,213,3827),(3911,213,3828),(3912,213,3829),(3913,213,3830),(3914,213,3831),(3915,213,3832),(3916,213,3833),(3917,213,3834),(3918,213,3835),(3919,213,3836),(3920,213,3837),(3921,213,3838),(3922,213,3839),(3923,213,3840),(3924,213,3841),(3925,213,3842),(3926,213,3843),(3927,213,3844),(3928,213,3845),(3929,213,3846),(3930,213,3847),(3931,213,3848),(3932,213,3849),(3933,213,3850),(3934,213,3851),(3935,213,3852),(3936,213,3853),(3937,213,3854),(3938,213,3855),(3939,213,3856),(3940,213,3857),(3941,213,3858),(3942,213,3859),(3943,213,3860),(3944,213,3861),(3945,213,3862),(3946,213,3863),(3947,213,3864),(3948,213,3865),(3949,213,3866),(3950,213,3867),(3951,213,3868),(3952,213,3869),(3953,213,3870),(3954,213,3871),(3955,213,3872),(3956,213,3873),(3957,213,3874),(3958,213,3875),(3959,213,3876),(3960,213,3877),(3961,213,3878),(3962,213,3879),(3963,213,3880),(3964,213,3881),(3965,213,3882),(3966,213,3883),(3967,213,3884),(3968,213,3885),(3969,213,3886),(3970,213,3887),(3971,213,3888),(3972,213,3889),(3973,213,3890),(3974,213,3891),(3975,213,3892),(3976,213,3893),(3977,213,3894),(3978,213,3895),(3979,213,3896),(3980,213,3897),(3981,213,3898),(3982,213,3899),(3983,213,3900),(3984,213,3901),(3985,213,3902),(3986,213,3903),(3987,213,3904),(3988,213,3905),(3989,213,3906),(3990,213,3907),(3991,213,3908),(3992,213,3909),(3993,213,3910),(3994,213,3911),(3995,213,3912),(3996,213,3913),(3997,213,3914),(3998,213,3915),(3999,213,3916),(4000,213,3917),(4001,213,3918),(4002,213,3919),(4003,213,3920),(4004,213,3921),(4005,213,3922),(4006,213,3923),(4007,213,3924),(4008,213,3925),(4009,213,3926),(4010,213,3927),(4011,213,3928),(4012,213,3929),(4013,213,3930),(4014,213,3931),(4015,213,3932),(4016,213,3933),(4017,213,3934),(4018,213,3935),(4019,213,3936),(4020,213,3937),(4021,213,3938),(4022,213,3939),(4023,213,3940),(4024,213,3941),(4025,213,3942),(4026,213,3943),(4027,213,3944),(4028,213,3945),(4029,213,3946),(4030,213,3947),(4031,213,3948),(4032,213,3949),(4033,213,3950),(4034,213,3951),(4035,213,3952),(4036,213,3953),(4037,213,3954),(4038,213,3955),(4039,213,3956),(4040,213,3957),(4041,213,3958),(4042,213,3959),(4043,213,3960),(4044,213,3961),(4045,213,3962),(4046,213,3963),(4047,213,3964),(4048,213,3965),(4049,213,3966),(4050,213,3967),(4051,213,3968),(4052,213,3969),(4053,213,3970),(4054,213,3971),(4055,213,3972),(4056,213,3973),(4057,213,3974),(4058,213,3975),(4059,213,3976),(4060,213,3977),(4061,213,3978),(4062,213,3979),(4063,213,3980),(4064,213,3981),(4065,213,3982),(4066,213,3983),(4067,213,3984),(4068,213,3985),(4069,213,3986),(4070,213,3987),(4071,213,3988),(4072,213,3989),(4073,213,3990),(4074,213,3991),(4075,213,3992),(4076,213,3993),(4077,213,3994),(4078,213,3995),(4079,213,3996),(4080,213,3997),(4081,213,3998),(4082,213,3999),(4083,213,4000),(4084,213,4001),(4085,213,4002),(4086,213,4003),(4087,213,4004),(4088,213,4005),(4089,213,4006),(4090,213,4007),(4091,213,4008),(4092,213,4009),(4093,213,4010),(4094,213,4011),(4095,213,4012),(4096,213,4013),(4097,213,4014),(4098,213,4015),(4099,213,4016),(4100,213,4017),(4101,213,4018),(4102,213,4019),(4103,213,4020),(4104,213,4021),(4105,213,4022),(4106,213,4023),(4107,213,4024),(4108,213,4025),(4109,213,4026),(4110,213,4027),(4111,213,4028),(4112,213,4029),(4113,213,4030),(4114,213,4031),(4115,213,4032),(4116,213,4033),(4117,213,4034),(4118,213,4035),(4119,213,4036),(4120,213,4037),(4121,213,4038),(4122,213,4039),(4123,213,4040),(4124,213,4041),(4125,213,4042),(4126,213,4043),(4127,213,4044),(4128,213,4045),(4129,213,4046),(4130,213,4047),(4131,213,4048),(4132,213,4049),(4133,213,4050),(4134,213,4051),(4135,213,4052),(4136,213,4053),(4137,213,4054),(4138,213,4055),(4139,213,4056),(4140,213,4057),(4141,213,4058),(4142,213,4059),(4143,213,4060),(4144,213,4061),(4145,213,4062),(4146,213,4063),(4147,213,4064),(4148,213,4065),(4149,213,4066),(4150,213,4067),(4151,213,4068),(4152,213,4069),(4153,213,4070),(4154,213,4071),(4155,213,4072),(4156,213,4073),(4157,213,4074),(4158,213,4075),(4159,213,4076),(4160,213,4077),(4161,213,4078),(4162,213,4079),(4163,213,4080),(4164,213,4081),(4165,213,4082),(4166,213,4083),(4167,213,4084),(4168,213,4085),(4169,213,4086),(4170,213,4087),(4171,213,4088),(4172,213,4089),(4173,213,4090),(4174,213,4091),(4175,213,4092),(4176,213,4093),(4177,213,4094),(4178,213,4095),(4179,213,4096),(4180,213,4097),(4181,213,4098),(4182,213,4099),(4183,213,4100),(4184,213,4101),(4185,213,4102),(4186,213,4103),(4187,213,4104),(4188,213,4105),(4189,213,4106),(4190,213,4107),(4191,213,4108),(4192,213,4109),(4193,213,4110),(4194,213,4111),(4195,213,4112),(4196,213,4113),(4197,213,4114),(4198,213,4115),(4199,213,4116),(4200,213,4117),(4201,213,4118),(4202,213,4119),(4203,213,4120),(4204,213,4121),(4205,213,4122),(4206,213,4123),(4207,213,4124),(4208,213,4125),(4209,213,4126),(4210,213,4127),(4211,213,4128),(4212,213,4129),(4213,213,4130),(4214,213,4131),(4215,213,4132),(4216,213,4133),(4217,213,4134),(4218,213,4135),(4219,213,4136),(4220,213,4137),(4221,213,4138),(4222,213,4139),(4223,213,4140),(4224,213,4141),(4225,213,4142),(4226,213,4143),(4227,213,4144),(4228,213,4145),(4229,213,4146),(4230,213,4147),(4231,213,4148),(4232,213,4149),(4233,213,4150),(4234,213,4151),(4235,213,4152),(4236,213,4153),(4237,213,4154),(4238,213,4155),(4239,213,4156),(4240,213,4157),(4241,213,4158),(4242,213,4159),(4243,213,4160),(4244,213,4161),(4245,213,4162),(4246,213,4163),(4247,213,4164),(4248,213,4165),(4249,213,4166),(4250,213,4167),(4251,213,4168),(4252,213,4169),(4253,213,4170),(4254,213,4171),(4255,213,4172),(4256,213,4173),(4257,213,4174),(4258,213,4175),(4259,213,4176),(4260,213,4177),(4261,213,4178),(4262,213,4179),(4263,213,4180),(4264,213,4181),(4265,213,4182),(4266,213,4183),(4267,213,4184),(4268,213,4185),(4269,213,4186),(4270,213,4187),(4271,213,4188),(4272,213,4189),(4273,213,4190),(4274,213,4191),(4275,213,4192),(4276,213,4193),(4277,213,4194),(4278,213,4195),(4279,213,4196),(4280,213,4197),(4281,213,4198),(4282,213,4199),(4283,213,4200),(4284,213,4201),(4285,213,4202),(4286,213,4203),(4287,213,4204),(4288,213,4205),(4289,213,4206),(4290,213,4207),(4291,213,4208),(4292,213,4209),(4293,213,4210),(4294,213,4211),(4295,213,4212),(4296,213,4213),(4297,213,4214),(4298,213,4215),(4299,213,4216),(4300,213,4217),(4301,213,4218),(4302,213,4219),(4303,213,4220),(4304,213,4221),(4305,213,4222),(4306,213,4223),(4307,213,4224),(4308,213,4225),(4309,213,4226),(4310,213,4227),(4311,213,4228),(4312,213,4229),(4313,213,4230),(4314,213,4231),(4315,213,4232),(4316,213,4233),(4317,213,4234),(4318,213,4235),(4319,213,4236),(4320,213,4237),(4321,213,4238),(4322,213,4239),(4323,213,4240),(4324,213,4241),(4325,213,4242),(4326,213,4243),(4327,213,4244),(4328,213,4245),(4329,213,4246),(4330,213,4247),(4331,213,4248),(4332,213,4249),(4333,213,4250),(4334,213,4251),(4335,213,4252),(4336,213,4253),(4337,213,4254),(4338,213,4255),(4339,213,4256),(4340,213,4257),(4341,213,4258),(4342,213,4259),(4343,213,4260),(4344,213,4261),(4345,213,4262),(4346,213,4263),(4347,213,4264),(4348,213,4265),(4349,213,4266),(4350,213,4267),(4351,213,4268),(4352,213,4269),(4353,213,4270),(4354,213,4271),(4355,213,4272),(4356,213,4273),(4357,213,4274),(4358,213,4275),(4359,213,4276),(4360,213,4277),(4361,213,4278),(4362,213,4279),(4363,213,4280),(4364,213,4281),(4365,213,4282),(4366,213,4283),(4367,213,4284),(4368,213,4285),(4369,213,4286),(4370,213,4287),(4371,213,4288),(4372,213,4289),(4373,213,4290),(4374,213,4291),(4375,213,4292),(4376,213,4293),(4377,213,4294),(4378,213,4295),(4379,213,4296),(4380,213,4297),(4381,213,4298),(4382,213,4299),(4383,213,4300),(4384,213,4301),(4385,213,4302),(4386,213,4303),(4387,213,4304),(4388,213,4305),(4389,213,4306),(4390,213,4307),(4391,213,4308),(4392,213,4309),(4393,213,4310),(4394,213,4311),(4395,213,4312),(4396,213,4313),(4397,213,4314),(4398,213,4315),(4399,213,4316),(4400,213,4317),(4401,213,4318),(4402,213,4319),(4403,213,4320),(4404,213,4321),(4405,213,4322),(4406,213,4323),(4407,213,4324),(4408,213,4325),(4409,213,4326),(4410,213,4327),(4411,213,4328),(4412,213,4329),(4413,213,4330),(4414,213,4331),(4415,213,4332),(4416,213,4333),(4417,213,4334),(4418,213,4335),(4419,213,4336),(4420,213,4337),(4421,213,4338),(4422,213,4339),(4423,213,4340),(4424,213,4341),(4425,213,4342),(4426,213,4343),(4427,213,4344),(4428,213,4345),(4429,213,4346),(4430,213,4347),(4431,213,4348),(4432,213,4349),(4433,213,4350),(4434,213,4351),(4435,213,4352),(4436,213,4353),(4437,213,4354),(4438,213,4355),(4439,213,4356),(4440,213,4357),(4441,213,4358),(4442,213,4359),(4443,213,4360),(4444,213,4361),(4445,213,4362),(4446,213,4363),(4447,213,4364),(4448,213,4365),(4449,213,4366),(4450,213,4367),(4451,213,4368),(4452,213,4369),(4453,213,4370),(4454,213,4371),(4455,213,4372),(4456,213,4373),(4457,213,4374),(4458,213,4375),(4459,213,4376),(4460,213,4377),(4461,213,4378),(4462,213,4379),(4463,213,4380),(4464,213,4381),(4465,213,4382),(4466,213,4383),(4467,213,4384),(4468,213,4385),(4469,213,4386),(4470,213,4387),(4471,213,4388),(4472,213,4389),(4473,213,4390),(4474,213,4391),(4475,213,4392),(4476,213,4393),(4477,213,4394),(4478,213,4395),(4479,213,4396),(4480,213,4397),(4481,213,4398),(4482,213,4399),(4483,213,4400),(4484,213,4401),(4485,213,4402),(4486,213,4403),(4487,213,4404),(4488,213,4405),(4489,213,4406),(4490,213,4407),(4491,213,4408),(4492,213,4409),(4493,213,4410),(4494,213,4411),(4495,213,4412),(4496,213,4413),(4497,213,4414),(4498,213,4415),(4499,213,4416),(4500,213,4417),(4501,213,4418),(4502,213,4419),(4503,213,4420),(4504,213,4421),(4505,213,4422),(4506,213,4423),(4507,213,4424),(4508,213,4425),(4509,213,4426),(4510,213,4427),(4511,213,4428),(4512,213,4429),(4513,213,4430),(4514,213,4431),(4515,213,4432),(4516,213,4433),(4517,213,4434),(4518,213,4435),(4519,213,4436),(4520,213,4437),(4521,213,4438),(4522,213,4439),(4523,213,4440),(4524,213,4441),(4525,213,4442),(4526,213,4443),(4527,213,4444),(4528,213,4445),(4529,213,4446),(4530,213,4447),(4531,213,4448),(4532,213,4449),(4533,213,4450),(4534,213,4451),(4535,213,4452),(4536,213,4453),(4537,213,4454),(4538,213,4455),(4539,213,4456),(4540,213,4457),(4541,213,4458),(4542,213,4459),(4543,213,4460),(4544,213,4461),(4545,213,4462),(4546,213,4463),(4547,213,4464),(4548,213,4465),(4549,213,4466),(4550,213,4467),(4551,213,4468),(4552,213,4469),(4553,213,4470),(4554,213,4471),(4555,213,4472),(4556,213,4473),(4557,213,4474),(4558,213,4475),(4559,213,4476),(4560,213,4477),(4561,213,4478),(4562,213,4479),(4563,213,4480),(4564,213,4481),(4565,213,4482),(4566,213,4483),(4567,213,4484),(4568,213,4485),(4569,213,4486),(4570,213,4487),(4571,213,4488),(4572,213,4489),(4573,213,4490),(4574,213,4491),(4575,213,4492),(4576,213,4493),(4577,213,4494),(4578,213,4495),(4579,213,4496),(4580,213,4497),(4581,213,4498),(4582,213,4499),(4583,213,4500),(4584,213,4501),(4585,213,4502),(4586,213,4503),(4587,213,4504),(4588,213,4505),(4589,213,4506),(4590,213,4507),(4591,213,4508),(4592,213,4509),(4593,213,4510),(4594,213,4511),(4595,213,4512),(4596,213,4513),(4597,213,4514),(4598,213,4515),(4599,213,4516),(4600,213,4517),(4601,213,4518),(4602,213,4519),(4603,213,4520),(4604,213,4521),(4605,213,4522),(4606,213,4523),(4607,213,4524),(4608,213,4525),(4609,213,4526),(4610,213,4527),(4611,213,4528),(4612,213,4529),(4613,213,4530),(4614,213,4531),(4615,213,4532),(4616,213,4533),(4617,213,4534),(4618,213,4535),(4619,213,4536),(4620,213,4537),(4621,213,4538),(4622,213,4539),(4623,213,4540),(4624,213,4541),(4625,213,4542),(4626,213,4543),(4627,213,4544),(4628,213,4545),(4629,213,4546),(4630,213,4547),(4631,213,4548),(4632,213,4549),(4633,213,4550),(4634,213,4551),(4635,213,4552),(4636,213,4553),(4637,213,4554),(4638,213,4555),(4639,213,4556),(4640,213,4557),(4641,213,4558),(4642,213,4559),(4643,213,4560),(4644,213,4561),(4645,213,4562),(4646,213,4563),(4647,213,4564),(4648,213,4565),(4649,213,4566),(4650,213,4567),(4651,213,4568),(4652,213,4569),(4653,213,4570),(4654,213,4571),(4655,213,4572),(4656,213,4573),(4657,213,4574),(4658,213,4575),(4659,213,4576),(4660,213,4577),(4661,213,4578),(4662,213,4579),(4663,213,4580),(4664,213,4581),(4665,213,4582),(4666,213,4583),(4667,213,4584),(4668,213,4585),(4669,213,4586),(4670,213,4587),(4671,213,4588),(4672,213,4589),(4673,213,4590),(4674,213,4591),(4675,213,4592),(4676,213,4593),(4677,213,4594),(4678,213,4595),(4679,213,4596),(4680,213,4597),(4681,213,4598),(4682,213,4599),(4683,213,4600),(4684,213,4601),(4685,213,4602),(4686,213,4603),(4687,213,4604),(4688,213,4605),(4689,213,4606),(4690,213,4607),(4691,213,4608),(4692,213,4609),(4693,213,4610),(4694,213,4611),(4695,213,4612),(4696,213,4613),(4697,213,4614),(4698,213,4615),(4699,213,4616),(4700,213,4617),(4701,213,4618),(4702,213,4619),(4703,213,4620),(4704,213,4621),(4705,213,4622),(4706,213,4623),(4707,213,4624),(4708,213,4625),(4709,213,4626),(4710,213,4627),(4711,213,4628),(4712,213,4629),(4713,213,4630),(4714,213,4631),(4715,213,4632),(4716,213,4633),(4717,213,4634),(4718,213,4635),(4719,213,4636),(4720,213,4637),(4721,213,4638),(4722,213,4639),(4723,213,4640),(4724,213,4641),(4725,213,4642),(4726,213,4643),(4727,213,4644),(4728,213,4645),(4729,213,4646),(4730,213,4647),(4731,213,4648),(4732,213,4649),(4733,213,4650),(4734,213,4651),(4735,213,4652),(4736,213,4653),(4737,213,4654),(4738,213,4655),(4739,213,4656),(4740,213,4657),(4741,213,4658),(4742,213,4659),(4743,213,4660),(4744,213,4661),(4745,213,4662),(4746,213,4663),(4747,213,4664),(4748,213,4665),(4749,213,4666),(4750,213,4667),(4751,213,4668),(4752,213,4669),(4753,213,4670),(4754,213,4671),(4755,213,4672),(4756,213,4673),(4757,213,4674),(4758,213,4675),(4759,213,4676),(4760,213,4677),(4761,213,4678),(4762,213,4679),(4763,213,4680),(4764,213,4681),(4765,213,4682),(4766,213,4683),(4767,213,4684),(4768,213,4685),(4769,213,4686),(4770,213,4687),(4771,213,4688),(4772,213,4689),(4773,213,4690),(4774,213,4691),(4775,213,4692),(4776,213,4693),(4777,213,4694),(4778,213,4695),(4779,213,4696),(4780,213,4697),(4781,213,4698),(4782,213,4699),(4783,213,4700),(4784,213,4701),(4785,213,4702),(4786,213,4703),(4787,213,4704),(4788,213,4705),(4789,213,4706),(4790,213,4707),(4791,213,4708),(4792,213,4709),(4793,213,4710),(4794,213,4711),(4795,213,4712),(4796,213,4713),(4797,213,4714),(4798,213,4715),(4799,213,4716),(4800,213,4717),(4801,213,4718),(4802,213,4719),(4803,213,4720),(4804,213,4721),(4805,213,4722),(4806,213,4723),(4807,213,4724),(4808,213,4725),(4809,213,4726),(4810,213,4727),(4811,213,4728),(4812,213,4729),(4813,213,4730),(4814,213,4731),(4815,213,4732),(4816,213,4733),(4817,213,4734),(4818,213,4735),(4819,213,4736),(4820,213,4737),(4821,213,4738),(4822,213,4739),(4823,213,4740),(4824,213,4741),(4825,213,4742),(4826,213,4743),(4827,213,4744),(4828,213,4745),(4829,213,4746),(4830,213,4747),(4831,213,4748),(4832,213,4749),(4833,213,4750),(4834,213,4751),(4835,213,4752),(4836,213,4753),(4837,213,4754),(4838,213,4755),(4839,213,4756),(4840,213,4757),(4841,213,4758),(4842,213,4759),(4843,213,4760),(4844,213,4761),(4845,213,4762),(4846,213,4763),(4847,213,4764),(4848,213,4765),(4849,213,4766),(4850,213,4767),(4851,213,4768),(4852,213,4769),(4853,213,4770),(4854,213,4771),(4855,213,4772),(4856,213,4773),(4857,213,4774),(4858,213,4775),(4859,213,4776),(4860,213,4777),(4861,213,4778),(4862,213,4779),(4863,213,4780),(4864,213,4781),(4865,213,4782),(4866,213,4783),(4867,213,4784),(4868,213,4785),(4869,213,4786),(4870,213,4787),(4871,213,4788),(4872,213,4789),(4873,213,4790),(4874,213,4791),(4875,213,4792),(4876,213,4793),(4877,213,4794),(4878,213,4795),(4879,213,4796),(4880,213,4797),(4881,213,4798),(4882,213,4799),(4883,213,4800),(4884,213,4801),(4885,213,4802),(4886,213,4803),(4887,213,4804),(4888,213,4805),(4889,213,4806),(4890,213,4807),(4891,213,4808),(4892,213,4809),(4893,213,4810),(4894,213,4811),(4895,213,4812),(4896,213,4813),(4897,213,4814),(4898,213,4815),(4899,213,4816),(4900,213,4817),(4901,213,4818),(4902,213,4819),(4903,213,4820),(4904,213,4821),(4905,213,4822),(4906,213,4823),(4907,213,4824),(4908,213,4825),(4909,213,4826),(4910,213,4827),(4911,213,4828),(4912,213,4829),(4913,213,4830),(4914,213,4831),(4915,213,4832),(4916,213,4833),(4917,213,4834),(4918,213,4835),(4919,213,4836),(4920,213,4837),(4921,213,4838),(4922,213,4839),(4923,213,4840),(4924,213,4841),(4925,213,4842),(4926,213,4843),(4927,213,4844),(4928,213,4845),(4929,213,4846),(4930,213,4847),(4931,213,4848),(4932,213,4849),(4933,213,4850),(4934,213,4851),(4935,213,4852),(4936,213,4853),(4937,213,4854),(4938,213,4855),(4939,213,4856),(4940,213,4857),(4941,213,4858),(4942,213,4859),(4943,213,4860),(4944,213,4861),(4945,213,4862),(4946,213,4863),(4947,213,4864),(4948,213,4865),(4949,213,4866),(4950,213,4867),(4951,213,4868),(4952,213,4869),(4953,213,4870),(4954,213,4871),(4955,213,4872),(4956,213,4873),(4957,213,4874),(4958,213,4875),(4959,213,4876),(4960,213,4877),(4961,213,4878),(4962,213,4879),(4963,213,4880),(4964,213,4881),(4965,213,4882),(4966,213,4883),(4967,213,4884),(4968,213,4885),(4969,213,4886),(4970,213,4887),(4971,213,4888),(4972,213,4889),(4973,213,4890),(4974,213,4891),(4975,213,4892),(4976,213,4893),(4977,213,4894),(4978,213,4895),(4979,213,4896),(4980,213,4897),(4981,213,4898),(4982,213,4899),(4983,213,4900),(4984,213,4901),(4985,213,4902),(4986,213,4903),(4987,213,4904),(4988,213,4905),(4989,213,4906),(4990,213,4907),(4991,213,4908),(4992,213,4909),(4993,213,4910),(4994,213,4911),(4995,213,4912),(4996,213,4913),(4997,213,4914),(4998,213,4915),(4999,213,4916),(5000,213,4917),(5001,213,4918),(5002,213,4919),(5003,213,4920),(5004,213,4921),(5005,213,4922),(5006,213,4923),(5007,213,4924),(5008,213,4925),(5009,213,4926),(5010,213,4927),(5011,213,4928),(5012,213,4929),(5013,213,4930),(5014,213,4931),(5015,213,4932),(5016,213,4933),(5017,213,4934),(5018,213,4935),(5019,213,4936),(5020,213,4937),(5021,213,4938),(5022,213,4939),(5023,213,4940),(5024,213,4941),(5025,213,4942),(5026,213,4943),(5027,213,4944),(5028,213,4945),(5029,213,4946),(5030,213,4947),(5031,213,4948),(5032,213,4949),(5033,213,4950),(5034,213,4951),(5035,213,4952),(5036,213,4953),(5037,213,4954),(5038,213,4955),(5039,213,4956),(5040,213,4957),(5041,213,4958),(5042,213,4959),(5043,213,4960),(5044,213,4961),(5045,213,4962),(5046,213,4963),(5047,213,4964),(5048,213,4965),(5049,213,4966),(5050,213,4967),(5051,213,4968),(5052,213,4969),(5053,213,4970),(5054,213,4971),(5055,213,4972),(5056,213,4973),(5057,213,4974),(5058,213,4975),(5059,213,4976),(5060,213,4977),(5061,213,4978),(5062,213,4979),(5063,213,4980),(5064,213,4981),(5065,213,4982),(5066,213,4983),(5067,213,4984),(5068,213,4985),(5069,213,4986),(5070,213,4987),(5071,213,4988),(5072,213,4989),(5073,213,4990),(5074,213,4991),(5075,213,4992),(5076,213,4993),(5077,213,4994),(5078,213,4995),(5079,213,4996),(5080,213,4997),(5081,213,4998),(5082,213,4999),(5083,213,5000),(5084,213,5001),(5085,213,5002),(5086,213,5003),(5087,213,5004),(5088,213,5005),(5089,213,5006),(5090,213,5007),(5091,213,5008),(5092,213,5009),(5093,213,5010),(5094,213,5011),(5095,213,5012),(5096,213,5013),(5097,213,5014),(5098,213,5015),(5099,213,5016),(5100,213,5017),(5101,213,5018),(5102,213,5019),(5103,213,5020),(5104,213,5021),(5105,213,5022),(5106,213,5023),(5107,213,5024),(5108,213,5025),(5109,213,5026),(5110,213,5027),(5111,213,5028),(5112,213,5029),(5113,213,5030),(5114,213,5031),(5115,213,5032),(5116,213,5033),(5117,213,5034),(5118,213,5035),(5119,213,5036),(5120,213,5037),(5121,213,5038),(5122,213,5039),(5123,213,5040),(5124,213,5041),(5125,213,5042),(5126,213,5043),(5127,213,5044),(5128,213,5045),(5129,213,5046),(5130,213,5047),(5131,213,5048),(5132,213,5049),(5133,213,5050),(5134,213,5051),(5135,213,5052),(5136,213,5053),(5137,213,5054),(5138,213,5055),(5139,213,5056),(5140,213,5057),(5141,213,5058),(5142,213,5059),(5143,213,5060),(5144,213,5061),(5145,213,5062),(5146,213,5063),(5147,213,5064),(5148,213,5065),(5149,213,5066),(5150,213,5067),(5151,213,5068),(5152,213,5069),(5153,213,5070),(5154,213,5071),(5155,213,5072),(5156,213,5073),(5157,213,5074),(5158,213,5075),(5159,213,5076),(5160,213,5077),(5161,213,5078),(5162,213,5079),(5163,213,5080),(5164,213,5081),(5165,213,5082),(5166,213,5083),(5167,213,5084),(5168,213,5085),(5169,213,5086),(5170,213,5087),(5171,213,5088),(5172,213,5089),(5173,213,5090),(5174,213,5091),(5175,213,5092),(5176,213,5093),(5177,213,5094),(5178,213,5095),(5179,213,5096),(5180,213,5097),(5181,213,5098),(5182,213,5099),(5183,213,5100),(5184,213,5101),(5185,213,5102),(5186,213,5103),(5187,213,5104),(5188,213,5105),(5189,213,5106),(5190,213,5107),(5191,213,5108),(5192,213,5109),(5193,213,5110),(5194,213,5111),(5195,213,5112),(5196,213,5113),(5197,213,5114),(5198,213,5115),(5199,213,5116),(5200,213,5117),(5201,213,5118),(5202,213,5119),(5203,213,5120),(5204,213,5121),(5205,213,5122),(5206,213,5123),(5207,213,5124),(5208,213,5125),(5209,213,5126),(5210,213,5127),(5211,213,5128),(5212,213,5129),(5213,213,5130),(5214,213,5131),(5215,213,5132),(5216,213,5133),(5217,213,5134),(5218,213,5135),(5219,213,5136),(5220,213,5137),(5221,213,5138),(5222,213,5139),(5223,213,5140),(5224,213,5141),(5225,213,5142),(5226,213,5143),(5227,213,5144),(5228,213,5145),(5229,213,5146),(5230,213,5147),(5231,213,5148),(5232,213,5149),(5233,213,5150),(5234,213,5151),(5235,213,5152),(5236,213,5153),(5237,213,5154),(5238,213,5155),(5239,213,5156),(5240,213,5157),(5241,213,5158),(5242,213,5159),(5243,213,5160),(5244,213,5161),(5245,213,5162),(5246,213,5163),(5247,213,5164),(5248,213,5165),(5249,213,5166),(5250,213,5167),(5251,213,5168),(5252,213,5169),(5253,213,5170),(5254,213,5171),(5255,213,5172),(5256,213,5173),(5257,213,5174),(5258,213,5175),(5259,213,5176),(5260,213,5177),(5261,213,5178),(5262,213,5179),(5263,213,5180),(5264,213,5181),(5265,213,5182),(5266,213,5183),(5267,213,5184),(5268,213,5185),(5269,213,5186),(5270,213,5187),(5271,213,5188),(5272,213,5189),(5273,213,5190),(5274,213,5191),(5275,213,5192),(5276,213,5193),(5277,213,5194),(5278,213,5195),(5279,213,5196),(5280,213,5197),(5281,213,5198),(5282,213,5199),(5283,213,5200),(5284,213,5201),(5285,213,5202),(5286,213,5203),(5287,213,5204),(5288,213,5205),(5289,213,5206),(5290,213,5207),(5291,213,5208),(5292,213,5209),(5293,213,5210),(5294,213,5211),(5295,213,5212),(5296,213,5213),(5297,213,5214),(5298,213,5215),(5299,213,5216),(5300,213,5217),(5301,213,5218),(5302,213,5219),(5303,213,5220),(5304,213,5221),(5305,213,5222),(5306,213,5223),(5307,213,5224),(5308,213,5225),(5309,213,5226),(5310,213,5227),(5311,213,5228),(5312,213,5229),(5313,213,5230),(5314,213,5231),(5315,213,5232),(5316,213,5233),(5317,213,5234),(5318,213,5235),(5319,213,5236),(5320,213,5237),(5321,213,5238),(5322,213,5239),(5323,213,5240),(5324,213,5241),(5325,213,5242),(5326,213,5243),(5327,213,5244),(5328,213,5245),(5329,213,5246),(5330,213,5247),(5331,213,5248),(5332,213,5249),(5333,213,5250),(5334,213,5251),(5335,213,5252),(5336,213,5253),(5337,213,5254),(5338,213,5255),(5339,213,5256),(5340,213,5257),(5341,213,5258),(5342,213,5259),(5343,213,5260),(5344,213,5261),(5345,213,5262),(5346,213,5263),(5347,213,5264),(5348,213,5265),(5349,213,5266),(5350,213,5267),(5351,213,5268),(5352,213,5269),(5353,213,5270),(5354,213,5271),(5355,213,5272),(5356,213,5273),(5357,213,5274),(5358,213,5275),(5359,213,5276),(5360,213,5277),(5361,213,5278),(5362,213,5279),(5363,213,5280),(5364,213,5281),(5365,213,5282),(5366,213,5283),(5367,213,5284),(5368,213,5285),(5369,213,5286),(5370,213,5287),(5371,213,5288),(5372,213,5289),(5373,213,5290),(5374,213,5291),(5375,213,5292),(5376,213,5293),(5377,213,5294),(5378,213,5295),(5379,213,5296),(5380,213,5297),(5381,213,5298),(5382,213,5299),(5383,213,5300),(5384,213,5301),(5385,213,5302),(5386,213,5303),(5387,213,5304),(5388,213,5305),(5389,213,5306),(5390,213,5307),(5391,213,5308),(5392,213,5309),(5393,213,5310),(5394,213,5311),(5395,213,5312),(5396,213,5313),(5397,213,5314),(5398,213,5315),(5399,213,5316),(5400,213,5317),(5401,213,5318),(5402,213,5319),(5403,213,5320),(5404,213,5321),(5405,213,5322),(5406,213,5323),(5407,213,5324),(5408,213,5325),(5409,213,5326),(5410,213,5327),(5411,213,5328),(5412,213,5329),(5413,213,5330),(5414,213,5331),(5415,213,5332),(5416,213,5333),(5417,213,5334),(5418,213,5335),(5419,213,5336),(5420,213,5337),(5421,213,5338),(5422,213,5339),(5423,213,5340),(5424,213,5341),(5425,213,5342),(5426,213,5343),(5427,213,5344),(5428,213,5345),(5429,213,5346),(5430,213,5347),(5431,213,5348),(5432,213,5349),(5433,213,5350),(5434,213,5351),(5435,213,5352),(5436,213,5353),(5437,213,5354),(5438,213,5355),(5439,213,5356),(5440,213,5357),(5441,213,5358),(5442,213,5359),(5443,213,5360),(5444,213,5361),(5445,213,5362),(5446,213,5363),(5447,213,5364),(5448,213,5365),(5449,213,5366),(5450,213,5367),(5451,213,5368),(5452,213,5369),(5453,213,5370),(5454,213,5371),(5455,213,5372),(5456,213,5373),(5457,213,5374),(5458,213,5375),(5459,213,5376),(5460,213,5377),(5461,213,5378),(5462,213,5379),(5463,213,5380),(5464,213,5381),(5465,213,5382),(5466,213,5383),(5467,213,5384),(5468,213,5385),(5469,213,5386),(5470,213,5387),(5471,213,5388),(5472,213,5389),(5473,213,5390),(5474,213,5391),(5475,213,5392),(5476,213,5393),(5477,213,5394),(5478,213,5395),(5479,213,5396),(5480,213,5397),(5481,213,5398),(5482,213,5399),(5483,213,5400),(5484,213,5401),(5485,213,5402),(5486,213,5403),(5487,213,5404),(5488,213,5405),(5489,213,5406),(5490,213,5407),(5491,213,5408),(5492,213,5409),(5493,213,5410),(5494,213,5411),(5495,213,5412),(5496,213,5413),(5497,213,5414),(5498,213,5415),(5499,213,5416),(5500,213,5417),(5501,213,5418),(5502,213,5419),(5503,213,5420),(5504,213,5421),(5505,213,5422),(5506,213,5423),(5507,213,5424),(5508,213,5425),(5509,213,5426);
/*!40000 ALTER TABLE `eav_attribute_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_attribute_option_swatch`
--

DROP TABLE IF EXISTS `eav_attribute_option_swatch`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_attribute_option_swatch` (
  `swatch_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Swatch ID',
  `option_id` int(10) unsigned NOT NULL COMMENT 'Option ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `type` smallint(5) unsigned NOT NULL COMMENT 'Swatch type: 0 - text, 1 - visual color, 2 - visual image',
  `value` varchar(255) DEFAULT NULL COMMENT 'Swatch Value',
  PRIMARY KEY (`swatch_id`),
  UNIQUE KEY `EAV_ATTRIBUTE_OPTION_SWATCH_STORE_ID_OPTION_ID` (`store_id`,`option_id`),
  KEY `EAV_ATTR_OPT_SWATCH_OPT_ID_EAV_ATTR_OPT_OPT_ID` (`option_id`),
  KEY `EAV_ATTRIBUTE_OPTION_SWATCH_SWATCH_ID` (`swatch_id`),
  CONSTRAINT `EAV_ATTRIBUTE_OPTION_SWATCH_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ATTR_OPT_SWATCH_OPT_ID_EAV_ATTR_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `eav_attribute_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8 COMMENT='Magento Swatches table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_option_swatch`
--

LOCK TABLES `eav_attribute_option_swatch` WRITE;
/*!40000 ALTER TABLE `eav_attribute_option_swatch` DISABLE KEYS */;
INSERT INTO `eav_attribute_option_swatch` VALUES (3,71,0,1,'#795548'),(4,72,0,1,'#ffffff'),(5,73,0,1,'#1b1b1b'),(6,74,0,1,'#b1adad'),(7,75,0,1,'#3f51b5'),(8,76,0,1,'#f44336'),(9,77,0,0,'xs'),(10,77,1,0,'XS'),(11,78,0,0,'s'),(12,78,1,0,'S'),(13,79,0,0,'m'),(14,79,1,0,'M'),(15,80,0,0,'l'),(16,80,1,0,'L'),(17,81,0,0,'xl'),(18,81,1,0,'XL'),(19,58,0,0,'36'),(20,58,1,0,'36'),(21,59,0,0,'37'),(22,59,1,0,'37'),(25,61,0,0,'39'),(26,61,1,0,'39'),(27,62,0,0,'40'),(28,62,1,0,'40'),(29,63,0,0,'41'),(30,63,1,0,'41'),(31,64,0,0,'42'),(32,64,1,0,'42'),(33,65,0,0,'43'),(34,65,1,0,'43'),(35,66,0,0,'44'),(36,66,1,0,'44'),(37,67,0,0,'45'),(38,67,1,0,'45'),(39,82,0,0,'38'),(40,82,1,0,'38');
/*!40000 ALTER TABLE `eav_attribute_option_swatch` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_attribute_option_value`
--

DROP TABLE IF EXISTS `eav_attribute_option_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_attribute_option_value` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value Id',
  `option_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Option Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  KEY `EAV_ATTRIBUTE_OPTION_VALUE_OPTION_ID` (`option_id`),
  KEY `EAV_ATTRIBUTE_OPTION_VALUE_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_ATTRIBUTE_OPTION_VALUE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ATTR_OPT_VAL_OPT_ID_EAV_ATTR_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `eav_attribute_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5689 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Option Value';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_option_value`
--

LOCK TABLES `eav_attribute_option_value` WRITE;
/*!40000 ALTER TABLE `eav_attribute_option_value` DISABLE KEYS */;
INSERT INTO `eav_attribute_option_value` VALUES (1,1,0,'Male'),(2,2,0,'Female'),(3,3,0,'Not Specified'),(100,71,1,'Brown'),(101,71,0,'brown'),(102,72,1,'White'),(103,72,0,'white'),(104,73,1,'Black'),(105,73,0,'black'),(106,74,1,'Grey'),(107,74,0,'grey'),(108,75,1,'Blue'),(109,75,0,'blue'),(110,76,1,'Red'),(111,76,0,'red'),(232,58,1,'EU 36'),(233,58,0,'EU 36'),(234,59,1,'EU 37'),(235,59,0,'EU 37'),(236,82,1,'EU 38'),(237,82,0,'EU 38'),(238,61,1,'EU 39'),(239,61,0,'EU 39'),(240,62,1,'EU 40'),(241,62,0,'EU 40'),(242,63,1,'EU 41'),(243,63,0,'EU 41'),(244,64,1,'EU 42'),(245,64,0,'EU 42'),(246,65,1,'EU 43'),(247,65,0,'EU 43'),(248,66,1,'EU 44'),(249,66,0,'EU 44'),(250,67,1,'EU 45'),(251,67,0,'EU 45'),(252,77,1,'Extra small size'),(253,77,0,'Extra small size'),(254,78,1,'Small size'),(255,78,0,'Small size'),(256,79,1,'Medium size'),(257,79,0,'Medium size'),(258,80,1,'Large size'),(259,80,0,'Large size'),(260,81,1,'Extra large size'),(261,81,0,'Extra large size'),(262,83,0,'Animals & Pet Supplies'),(263,84,0,'Animals & Pet Supplies > Live Animals'),(264,85,0,'Animals & Pet Supplies > Pet Supplies'),(265,86,0,'Animals & Pet Supplies > Pet Supplies > Bird Supplies'),(266,87,0,'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Cage Accessories'),(267,88,0,'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Cage Accessories > Bird Cage Bird Baths'),(268,89,0,'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Cage Accessories > Bird Cage Food & Water Dishes'),(269,90,0,'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Cages & Stands'),(270,91,0,'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Food'),(271,92,0,'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Gyms & Playstands'),(272,93,0,'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Ladders & Perches'),(273,94,0,'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Toys'),(274,95,0,'Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Treats'),(275,96,0,'Animals & Pet Supplies > Pet Supplies > Cat Supplies'),(276,97,0,'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Apparel'),(277,98,0,'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Beds'),(278,99,0,'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Food'),(279,100,0,'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Furniture'),(280,101,0,'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Furniture Accessories'),(281,102,0,'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Litter'),(282,103,0,'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Litter Box Liners'),(283,104,0,'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Litter Box Mats'),(284,105,0,'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Litter Boxes'),(285,106,0,'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Toys'),(286,107,0,'Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Treats'),(287,108,0,'Animals & Pet Supplies > Pet Supplies > Dog Supplies'),(288,109,0,'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Apparel'),(289,110,0,'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Beds'),(290,111,0,'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Diaper Pads & Liners'),(291,112,0,'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Diapers'),(292,113,0,'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Food'),(293,114,0,'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Houses'),(294,115,0,'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Kennel & Run Accessories'),(295,116,0,'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Kennels & Runs'),(296,117,0,'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Toys'),(297,118,0,'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Treadmills'),(298,119,0,'Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Treats'),(299,120,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies'),(300,121,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium & Pond Tubing'),(301,122,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Air Stones & Diffusers'),(302,123,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Cleaning Supplies'),(303,124,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Decor'),(304,125,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Filters'),(305,126,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Fish Nets'),(306,127,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Gravel & Substrates'),(307,128,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Lighting'),(308,129,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Overflow Boxes'),(309,130,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Stands'),(310,131,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Temperature Controllers'),(311,132,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Water Treatments'),(312,133,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquariums'),(313,134,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquatic Plant Fertilizers'),(314,135,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Fish Feeders'),(315,136,0,'Animals & Pet Supplies > Pet Supplies > Fish Supplies > Fish Food'),(316,137,0,'Animals & Pet Supplies > Pet Supplies > Pet Agility Equipment'),(317,138,0,'Animals & Pet Supplies > Pet Supplies > Pet Apparel Hangers'),(318,139,0,'Animals & Pet Supplies > Pet Supplies > Pet Bed Accessories'),(319,140,0,'Animals & Pet Supplies > Pet Supplies > Pet Bells & Charms'),(320,141,0,'Animals & Pet Supplies > Pet Supplies > Pet Biometric Monitors'),(321,142,0,'Animals & Pet Supplies > Pet Supplies > Pet Biometric Monitors > Pet Glucose Meters'),(322,143,0,'Animals & Pet Supplies > Pet Supplies > Pet Biometric Monitors > Pet Pedometers'),(323,144,0,'Animals & Pet Supplies > Pet Supplies > Pet Biometric Monitors > Pet Thermometers'),(324,145,0,'Animals & Pet Supplies > Pet Supplies > Pet Bowl Mats'),(325,146,0,'Animals & Pet Supplies > Pet Supplies > Pet Bowl Stands'),(326,147,0,'Animals & Pet Supplies > Pet Supplies > Pet Bowls, Feeders & Waterers'),(327,148,0,'Animals & Pet Supplies > Pet Supplies > Pet Carrier & Crate Accessories'),(328,149,0,'Animals & Pet Supplies > Pet Supplies > Pet Carriers & Crates'),(329,150,0,'Animals & Pet Supplies > Pet Supplies > Pet Collars & Harnesses'),(330,151,0,'Animals & Pet Supplies > Pet Supplies > Pet Containment Systems'),(331,152,0,'Animals & Pet Supplies > Pet Supplies > Pet Door Accessories'),(332,153,0,'Animals & Pet Supplies > Pet Supplies > Pet Doors'),(333,154,0,'Animals & Pet Supplies > Pet Supplies > Pet Eye Drops & Lubricants'),(334,155,0,'Animals & Pet Supplies > Pet Supplies > Pet First Aid & Emergency Kits'),(335,156,0,'Animals & Pet Supplies > Pet Supplies > Pet Flea & Tick Control'),(336,157,0,'Animals & Pet Supplies > Pet Supplies > Pet Food Containers'),(337,158,0,'Animals & Pet Supplies > Pet Supplies > Pet Food Scoops'),(338,159,0,'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies'),(339,160,0,'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Combs & Brushes'),(340,161,0,'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Fragrances & Deodorizing Sprays'),(341,162,0,'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Hair Clippers & Trimmers'),(342,163,0,'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Hair Dryers'),(343,164,0,'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Nail Polish'),(344,165,0,'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Nail Tools'),(345,166,0,'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Shampoo & Conditioner'),(346,167,0,'Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Wipes'),(347,168,0,'Animals & Pet Supplies > Pet Supplies > Pet Heating Pad Accessories'),(348,169,0,'Animals & Pet Supplies > Pet Supplies > Pet Heating Pads'),(349,170,0,'Animals & Pet Supplies > Pet Supplies > Pet ID Tags'),(350,171,0,'Animals & Pet Supplies > Pet Supplies > Pet Leash Extensions'),(351,172,0,'Animals & Pet Supplies > Pet Supplies > Pet Leashes'),(352,173,0,'Animals & Pet Supplies > Pet Supplies > Pet Medical Collars'),(353,174,0,'Animals & Pet Supplies > Pet Supplies > Pet Medical Tape & Bandages'),(354,175,0,'Animals & Pet Supplies > Pet Supplies > Pet Medicine'),(355,176,0,'Animals & Pet Supplies > Pet Supplies > Pet Muzzles'),(356,177,0,'Animals & Pet Supplies > Pet Supplies > Pet Oral Care Supplies'),(357,178,0,'Animals & Pet Supplies > Pet Supplies > Pet Playpens'),(358,179,0,'Animals & Pet Supplies > Pet Supplies > Pet Steps & Ramps'),(359,180,0,'Animals & Pet Supplies > Pet Supplies > Pet Strollers'),(360,181,0,'Animals & Pet Supplies > Pet Supplies > Pet Sunscreen'),(361,182,0,'Animals & Pet Supplies > Pet Supplies > Pet Training Aids'),(362,183,0,'Animals & Pet Supplies > Pet Supplies > Pet Training Aids > Pet Training Clickers & Treat Dispensers'),(363,184,0,'Animals & Pet Supplies > Pet Supplies > Pet Training Aids > Pet Training Pad Holders'),(364,185,0,'Animals & Pet Supplies > Pet Supplies > Pet Training Aids > Pet Training Pads'),(365,186,0,'Animals & Pet Supplies > Pet Supplies > Pet Training Aids > Pet Training Sprays & Solutions'),(366,187,0,'Animals & Pet Supplies > Pet Supplies > Pet Vitamins & Supplements'),(367,188,0,'Animals & Pet Supplies > Pet Supplies > Pet Waste Bag Dispensers & Holders'),(368,189,0,'Animals & Pet Supplies > Pet Supplies > Pet Waste Bags'),(369,190,0,'Animals & Pet Supplies > Pet Supplies > Pet Waste Disposal Systems & Tools'),(370,191,0,'Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies'),(371,192,0,'Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies > Reptile & Amphibian Food'),(372,193,0,'Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies > Reptile & Amphibian Habitat Accessories'),(373,194,0,'Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies > Reptile & Amphibian Habitat Heating & Lighting'),(374,195,0,'Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies > Reptile & Amphibian Habitats'),(375,196,0,'Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies > Reptile & Amphibian Substrates'),(376,197,0,'Animals & Pet Supplies > Pet Supplies > Small Animal Supplies'),(377,198,0,'Animals & Pet Supplies > Pet Supplies > Small Animal Supplies > Small Animal Bedding'),(378,199,0,'Animals & Pet Supplies > Pet Supplies > Small Animal Supplies > Small Animal Food'),(379,200,0,'Animals & Pet Supplies > Pet Supplies > Small Animal Supplies > Small Animal Habitat Accessories'),(380,201,0,'Animals & Pet Supplies > Pet Supplies > Small Animal Supplies > Small Animal Habitats & Cages'),(381,202,0,'Animals & Pet Supplies > Pet Supplies > Small Animal Supplies > Small Animal Treats'),(382,203,0,'Animals & Pet Supplies > Pet Supplies > Vehicle Pet Barriers'),(383,204,0,'Apparel & Accessories'),(384,205,0,'Apparel & Accessories > Clothing'),(385,206,0,'Apparel & Accessories > Clothing > Activewear'),(386,207,0,'Apparel & Accessories > Clothing > Activewear > Bicycle Activewear'),(387,208,0,'Apparel & Accessories > Clothing > Activewear > Bicycle Activewear > Bicycle Bibs'),(388,209,0,'Apparel & Accessories > Clothing > Activewear > Bicycle Activewear > Bicycle Jerseys'),(389,210,0,'Apparel & Accessories > Clothing > Activewear > Bicycle Activewear > Bicycle Shorts & Briefs'),(390,211,0,'Apparel & Accessories > Clothing > Activewear > Bicycle Activewear > Bicycle Skinsuits'),(391,212,0,'Apparel & Accessories > Clothing > Activewear > Bicycle Activewear > Bicycle Tights'),(392,213,0,'Apparel & Accessories > Clothing > Activewear > Boxing Shorts'),(393,214,0,'Apparel & Accessories > Clothing > Activewear > Dance Dresses, Skirts & Costumes'),(394,215,0,'Apparel & Accessories > Clothing > Activewear > Football Pants'),(395,216,0,'Apparel & Accessories > Clothing > Activewear > Hunting Clothing'),(396,217,0,'Apparel & Accessories > Clothing > Activewear > Hunting Clothing > Ghillie Suits'),(397,218,0,'Apparel & Accessories > Clothing > Activewear > Hunting Clothing > Hunting & Fishing Vests'),(398,219,0,'Apparel & Accessories > Clothing > Activewear > Hunting Clothing > Hunting & Tactical Pants'),(399,220,0,'Apparel & Accessories > Clothing > Activewear > Martial Arts Shorts'),(400,221,0,'Apparel & Accessories > Clothing > Activewear > Motorcycle Protective Clothing'),(401,222,0,'Apparel & Accessories > Clothing > Activewear > Motorcycle Protective Clothing > Motorcycle Jackets'),(402,223,0,'Apparel & Accessories > Clothing > Activewear > Motorcycle Protective Clothing > Motorcycle Pants'),(403,224,0,'Apparel & Accessories > Clothing > Activewear > Motorcycle Protective Clothing > Motorcycle Suits'),(404,225,0,'Apparel & Accessories > Clothing > Activewear > Paintball Clothing'),(405,226,0,'Apparel & Accessories > Clothing > Baby & Toddler Clothing'),(406,227,0,'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Bottoms'),(407,228,0,'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Diaper Covers'),(408,229,0,'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Dresses'),(409,230,0,'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Outerwear'),(410,231,0,'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Outfits'),(411,232,0,'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Sleepwear'),(412,233,0,'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Socks & Tights'),(413,234,0,'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Swimwear'),(414,235,0,'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Tops'),(415,236,0,'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby One-Pieces'),(416,237,0,'Apparel & Accessories > Clothing > Baby & Toddler Clothing > Toddler Underwear'),(417,238,0,'Apparel & Accessories > Clothing > Dresses'),(418,239,0,'Apparel & Accessories > Clothing > One-Pieces'),(419,240,0,'Apparel & Accessories > Clothing > One-Pieces > Jumpsuits & Rompers'),(420,241,0,'Apparel & Accessories > Clothing > One-Pieces > Leotards & Unitards'),(421,242,0,'Apparel & Accessories > Clothing > One-Pieces > Overalls'),(422,243,0,'Apparel & Accessories > Clothing > Outerwear'),(423,244,0,'Apparel & Accessories > Clothing > Outerwear > Chaps'),(424,245,0,'Apparel & Accessories > Clothing > Outerwear > Coats & Jackets'),(425,246,0,'Apparel & Accessories > Clothing > Outerwear > Rain Pants'),(426,247,0,'Apparel & Accessories > Clothing > Outerwear > Rain Suits'),(427,248,0,'Apparel & Accessories > Clothing > Outerwear > Snow Pants & Suits'),(428,249,0,'Apparel & Accessories > Clothing > Outerwear > Vests'),(429,250,0,'Apparel & Accessories > Clothing > Outfit Sets'),(430,251,0,'Apparel & Accessories > Clothing > Pants'),(431,252,0,'Apparel & Accessories > Clothing > Shirts & Tops'),(432,253,0,'Apparel & Accessories > Clothing > Shorts'),(433,254,0,'Apparel & Accessories > Clothing > Skirts'),(434,255,0,'Apparel & Accessories > Clothing > Skorts'),(435,256,0,'Apparel & Accessories > Clothing > Sleepwear & Loungewear'),(436,257,0,'Apparel & Accessories > Clothing > Sleepwear & Loungewear > Loungewear'),(437,258,0,'Apparel & Accessories > Clothing > Sleepwear & Loungewear > Nightgowns'),(438,259,0,'Apparel & Accessories > Clothing > Sleepwear & Loungewear > Pajamas'),(439,260,0,'Apparel & Accessories > Clothing > Sleepwear & Loungewear > Robes'),(440,261,0,'Apparel & Accessories > Clothing > Suits'),(441,262,0,'Apparel & Accessories > Clothing > Suits > Pant Suits'),(442,263,0,'Apparel & Accessories > Clothing > Suits > Skirt Suits'),(443,264,0,'Apparel & Accessories > Clothing > Suits > Tuxedos'),(444,265,0,'Apparel & Accessories > Clothing > Swimwear'),(445,266,0,'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing'),(446,267,0,'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Dirndls'),(447,268,0,'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Hakama Trousers'),(448,269,0,'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Japanese Black Formal Wear'),(449,270,0,'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Kimono Outerwear'),(450,271,0,'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Kimonos'),(451,272,0,'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Religious Ceremonial Clothing'),(452,273,0,'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Religious Ceremonial Clothing > Baptism & Communion Dresses'),(453,274,0,'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Saris & Lehengas'),(454,275,0,'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Traditional Leather Pants'),(455,276,0,'Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Yukata'),(456,277,0,'Apparel & Accessories > Clothing > Underwear & Socks'),(457,278,0,'Apparel & Accessories > Clothing > Underwear & Socks > Bra Accessories'),(458,279,0,'Apparel & Accessories > Clothing > Underwear & Socks > Bra Accessories > Bra Strap Pads'),(459,280,0,'Apparel & Accessories > Clothing > Underwear & Socks > Bra Accessories > Bra Straps & Extenders'),(460,281,0,'Apparel & Accessories > Clothing > Underwear & Socks > Bra Accessories > Breast Enhancing Inserts'),(461,282,0,'Apparel & Accessories > Clothing > Underwear & Socks > Bra Accessories > Breast Petals & Concealers'),(462,283,0,'Apparel & Accessories > Clothing > Underwear & Socks > Bras'),(463,284,0,'Apparel & Accessories > Clothing > Underwear & Socks > Hosiery'),(464,285,0,'Apparel & Accessories > Clothing > Underwear & Socks > Jock Straps'),(465,286,0,'Apparel & Accessories > Clothing > Underwear & Socks > Lingerie'),(466,287,0,'Apparel & Accessories > Clothing > Underwear & Socks > Lingerie Accessories'),(467,288,0,'Apparel & Accessories > Clothing > Underwear & Socks > Lingerie Accessories > Garter Belts'),(468,289,0,'Apparel & Accessories > Clothing > Underwear & Socks > Lingerie Accessories > Garters'),(469,290,0,'Apparel & Accessories > Clothing > Underwear & Socks > Long Johns'),(470,291,0,'Apparel & Accessories > Clothing > Underwear & Socks > Petticoats & Pettipants'),(471,292,0,'Apparel & Accessories > Clothing > Underwear & Socks > Shapewear'),(472,293,0,'Apparel & Accessories > Clothing > Underwear & Socks > Socks'),(473,294,0,'Apparel & Accessories > Clothing > Underwear & Socks > Undershirts'),(474,295,0,'Apparel & Accessories > Clothing > Underwear & Socks > Underwear'),(475,296,0,'Apparel & Accessories > Clothing > Underwear & Socks > Underwear Slips'),(476,297,0,'Apparel & Accessories > Clothing > Uniforms'),(477,298,0,'Apparel & Accessories > Clothing > Uniforms > Contractor Pants & Coveralls'),(478,299,0,'Apparel & Accessories > Clothing > Uniforms > Flight Suits'),(479,300,0,'Apparel & Accessories > Clothing > Uniforms > Food Service Uniforms'),(480,301,0,'Apparel & Accessories > Clothing > Uniforms > Food Service Uniforms > Chef\'s Hats'),(481,302,0,'Apparel & Accessories > Clothing > Uniforms > Food Service Uniforms > Chef\'s Jackets'),(482,303,0,'Apparel & Accessories > Clothing > Uniforms > Food Service Uniforms > Chef\'s Pants'),(483,304,0,'Apparel & Accessories > Clothing > Uniforms > Military Uniforms'),(484,305,0,'Apparel & Accessories > Clothing > Uniforms > School Uniforms'),(485,306,0,'Apparel & Accessories > Clothing > Uniforms > Security Uniforms'),(486,307,0,'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms'),(487,308,0,'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Baseball Uniforms'),(488,309,0,'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Basketball Uniforms'),(489,310,0,'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Cheerleading Uniforms'),(490,311,0,'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Cricket Uniforms'),(491,312,0,'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Football Uniforms'),(492,313,0,'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Hockey Uniforms'),(493,314,0,'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Martial Arts Uniforms'),(494,315,0,'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Officiating Uniforms'),(495,316,0,'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Soccer Uniforms'),(496,317,0,'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Softball Uniforms'),(497,318,0,'Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Wrestling Uniforms'),(498,319,0,'Apparel & Accessories > Clothing > Uniforms > White Coats'),(499,320,0,'Apparel & Accessories > Clothing > Wedding & Bridal Party Dresses'),(500,321,0,'Apparel & Accessories > Clothing > Wedding & Bridal Party Dresses > Bridal Party Dresses'),(501,322,0,'Apparel & Accessories > Clothing > Wedding & Bridal Party Dresses > Wedding Dresses'),(502,323,0,'Apparel & Accessories > Clothing Accessories'),(503,324,0,'Apparel & Accessories > Clothing Accessories > Arm Warmers & Sleeves'),(504,325,0,'Apparel & Accessories > Clothing Accessories > Baby & Toddler Clothing Accessories'),(505,326,0,'Apparel & Accessories > Clothing Accessories > Baby & Toddler Clothing Accessories > Baby & Toddler Belts'),(506,327,0,'Apparel & Accessories > Clothing Accessories > Baby & Toddler Clothing Accessories > Baby & Toddler Gloves & Mittens'),(507,328,0,'Apparel & Accessories > Clothing Accessories > Baby & Toddler Clothing Accessories > Baby & Toddler Hats'),(508,329,0,'Apparel & Accessories > Clothing Accessories > Baby & Toddler Clothing Accessories > Baby Protective Wear'),(509,330,0,'Apparel & Accessories > Clothing Accessories > Balaclavas'),(510,331,0,'Apparel & Accessories > Clothing Accessories > Bandanas & Headties'),(511,332,0,'Apparel & Accessories > Clothing Accessories > Belt Buckles'),(512,333,0,'Apparel & Accessories > Clothing Accessories > Belts'),(513,334,0,'Apparel & Accessories > Clothing Accessories > Bridal Accessories'),(514,335,0,'Apparel & Accessories > Clothing Accessories > Bridal Accessories > Bridal Veils'),(515,336,0,'Apparel & Accessories > Clothing Accessories > Button Studs'),(516,337,0,'Apparel & Accessories > Clothing Accessories > Collar Stays'),(517,338,0,'Apparel & Accessories > Clothing Accessories > Cufflinks'),(518,339,0,'Apparel & Accessories > Clothing Accessories > Decorative Fans'),(519,340,0,'Apparel & Accessories > Clothing Accessories > Earmuffs'),(520,341,0,'Apparel & Accessories > Clothing Accessories > Gloves & Mittens'),(521,342,0,'Apparel & Accessories > Clothing Accessories > Hair Accessories'),(522,343,0,'Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Bun & Volume Shapers'),(523,344,0,'Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Combs'),(524,345,0,'Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Extensions'),(525,346,0,'Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Forks & Sticks'),(526,347,0,'Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Nets'),(527,348,0,'Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Pins, Claws & Clips'),(528,349,0,'Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Wreaths'),(529,350,0,'Apparel & Accessories > Clothing Accessories > Hair Accessories > Headbands'),(530,351,0,'Apparel & Accessories > Clothing Accessories > Hair Accessories > Ponytail Holders'),(531,352,0,'Apparel & Accessories > Clothing Accessories > Hair Accessories > Tiaras'),(532,353,0,'Apparel & Accessories > Clothing Accessories > Hair Accessories > Wig Accessories'),(533,354,0,'Apparel & Accessories > Clothing Accessories > Hair Accessories > Wig Accessories > Wig Caps'),(534,355,0,'Apparel & Accessories > Clothing Accessories > Hair Accessories > Wig Accessories > Wig Glue & Tape'),(535,356,0,'Apparel & Accessories > Clothing Accessories > Hair Accessories > Wigs'),(536,357,0,'Apparel & Accessories > Clothing Accessories > Hand Muffs'),(537,358,0,'Apparel & Accessories > Clothing Accessories > Handkerchiefs'),(538,359,0,'Apparel & Accessories > Clothing Accessories > Hats'),(539,360,0,'Apparel & Accessories > Clothing Accessories > Headwear'),(540,361,0,'Apparel & Accessories > Clothing Accessories > Headwear > Fascinators'),(541,362,0,'Apparel & Accessories > Clothing Accessories > Headwear > Headdresses'),(542,363,0,'Apparel & Accessories > Clothing Accessories > Headwear > Turbans'),(543,364,0,'Apparel & Accessories > Clothing Accessories > Leg Warmers'),(544,365,0,'Apparel & Accessories > Clothing Accessories > Leis'),(545,366,0,'Apparel & Accessories > Clothing Accessories > Maternity Belts & Support Bands'),(546,367,0,'Apparel & Accessories > Clothing Accessories > Neck Gaiters'),(547,368,0,'Apparel & Accessories > Clothing Accessories > Neckties'),(548,369,0,'Apparel & Accessories > Clothing Accessories > Pinback Buttons'),(549,370,0,'Apparel & Accessories > Clothing Accessories > Sashes'),(550,371,0,'Apparel & Accessories > Clothing Accessories > Scarves & Shawls'),(551,372,0,'Apparel & Accessories > Clothing Accessories > Sunglasses'),(552,373,0,'Apparel & Accessories > Clothing Accessories > Suspenders'),(553,374,0,'Apparel & Accessories > Clothing Accessories > Tie Clips'),(554,375,0,'Apparel & Accessories > Clothing Accessories > Traditional Clothing Accessories'),(555,376,0,'Apparel & Accessories > Clothing Accessories > Traditional Clothing Accessories > Obis'),(556,377,0,'Apparel & Accessories > Clothing Accessories > Traditional Clothing Accessories > Tabi Socks'),(557,378,0,'Apparel & Accessories > Clothing Accessories > Wristbands'),(558,379,0,'Apparel & Accessories > Costumes & Accessories'),(559,380,0,'Apparel & Accessories > Costumes & Accessories > Costume Accessories'),(560,381,0,'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Bald Caps'),(561,382,0,'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Costume Accessory Sets'),(562,383,0,'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Costume Capes'),(563,384,0,'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Costume Gloves'),(564,385,0,'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Costume Hats'),(565,386,0,'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Costume Special Effects'),(566,387,0,'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Costume Tobacco Products'),(567,388,0,'Apparel & Accessories > Costumes & Accessories > Costume Accessories > Pretend Jewelry'),(568,389,0,'Apparel & Accessories > Costumes & Accessories > Costume Shoes'),(569,390,0,'Apparel & Accessories > Costumes & Accessories > Costumes'),(570,391,0,'Apparel & Accessories > Costumes & Accessories > Masks'),(571,392,0,'Apparel & Accessories > Handbag & Wallet Accessories'),(572,393,0,'Apparel & Accessories > Handbag & Wallet Accessories > Checkbook Covers'),(573,394,0,'Apparel & Accessories > Handbag & Wallet Accessories > Keychains'),(574,395,0,'Apparel & Accessories > Handbag & Wallet Accessories > Lanyards'),(575,396,0,'Apparel & Accessories > Handbag & Wallet Accessories > Wallet Chains'),(576,397,0,'Apparel & Accessories > Handbags, Wallets & Cases'),(577,398,0,'Apparel & Accessories > Handbags, Wallets & Cases > Badge & Pass Holders'),(578,399,0,'Apparel & Accessories > Handbags, Wallets & Cases > Business Card Cases'),(579,400,0,'Apparel & Accessories > Handbags, Wallets & Cases > Handbags'),(580,401,0,'Apparel & Accessories > Handbags, Wallets & Cases > Wallets & Money Clips'),(581,402,0,'Apparel & Accessories > Jewelry'),(582,403,0,'Apparel & Accessories > Jewelry > Anklets'),(583,404,0,'Apparel & Accessories > Jewelry > Body Jewelry'),(584,405,0,'Apparel & Accessories > Jewelry > Bracelets'),(585,406,0,'Apparel & Accessories > Jewelry > Brooches & Lapel Pins'),(586,407,0,'Apparel & Accessories > Jewelry > Charms & Pendants'),(587,408,0,'Apparel & Accessories > Jewelry > Earrings'),(588,409,0,'Apparel & Accessories > Jewelry > Jewelry Sets'),(589,410,0,'Apparel & Accessories > Jewelry > Necklaces'),(590,411,0,'Apparel & Accessories > Jewelry > Rings'),(591,412,0,'Apparel & Accessories > Jewelry > Watch Accessories'),(592,413,0,'Apparel & Accessories > Jewelry > Watch Accessories > Watch Bands'),(593,414,0,'Apparel & Accessories > Jewelry > Watch Accessories > Watch Stickers & Decals'),(594,415,0,'Apparel & Accessories > Jewelry > Watch Accessories > Watch Winders'),(595,416,0,'Apparel & Accessories > Jewelry > Watches'),(596,417,0,'Apparel & Accessories > Shoe Accessories'),(597,418,0,'Apparel & Accessories > Shoe Accessories > Boot Liners'),(598,419,0,'Apparel & Accessories > Shoe Accessories > Gaiters'),(599,420,0,'Apparel & Accessories > Shoe Accessories > Shoe Covers'),(600,421,0,'Apparel & Accessories > Shoe Accessories > Shoelaces'),(601,422,0,'Apparel & Accessories > Shoe Accessories > Spurs'),(602,423,0,'Apparel & Accessories > Shoes'),(603,424,0,'Arts & Entertainment'),(604,425,0,'Arts & Entertainment > Event Tickets'),(605,426,0,'Arts & Entertainment > Hobbies & Creative Arts'),(606,427,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts'),(607,428,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits'),(608,429,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Candle Making Kits'),(609,430,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Drawing & Painting Kits'),(610,431,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Fabric Repair Kits'),(611,432,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Incense Making Kits'),(612,433,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Jewelry Making Kits'),(613,434,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Mosaic Kits'),(614,435,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Needlecraft Kits'),(615,436,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Scrapbooking & Stamping Kits'),(616,437,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Craft Kits > Toy Craft Kits'),(617,438,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials'),(618,439,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper'),(619,440,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper > Cardstock & Scrapbooking Paper'),(620,441,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper > Construction Paper'),(621,442,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper > Craft Foil'),(622,443,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper > Drawing & Painting Paper'),(623,444,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper > Origami Paper'),(624,445,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper > Transfer Paper'),(625,446,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Art & Craft Paper > Vellum Paper'),(626,447,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Fasteners & Closures'),(627,448,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Fasteners & Closures > Buttons & Snaps'),(628,449,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Fasteners & Closures > Clasps & Hooks'),(629,450,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Fasteners & Closures > Eyelets & Grommets'),(630,451,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Fasteners & Closures > Hook and Loop Fasteners'),(631,452,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Fasteners & Closures > Zipper Pulls'),(632,453,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Fasteners & Closures > Zippers'),(633,454,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze'),(634,455,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze > Art & Craft Paint'),(635,456,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze > Art Fixatives'),(636,457,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze > Art Ink'),(637,458,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze > Ceramic & Pottery Glazes'),(638,459,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze > Craft Dyes'),(639,460,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze > Ink Pads'),(640,461,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Paint, Ink & Glaze > Paint Mediums'),(641,462,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Shapes & Bases'),(642,463,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Shapes & Bases > Craft Foam & Styrofoam'),(643,464,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Shapes & Bases > Craft Wood & Shapes'),(644,465,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Shapes & Bases > Papier Mache Shapes'),(645,466,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Craft Shapes & Bases > Wreath & Floral Frames'),(646,467,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Adhesives & Magnets'),(647,468,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Adhesives & Magnets > Craft & Office Glue'),(648,469,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Adhesives & Magnets > Craft Magnets'),(649,470,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Adhesives & Magnets > Decorative Tape'),(650,471,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Adhesives & Magnets > Floral Tape'),(651,472,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Adhesives & Magnets > Fusible Tape'),(652,473,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Fibers'),(653,474,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Fibers > Jewelry & Beading Cord'),(654,475,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Fibers > Thread & Floss'),(655,476,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Fibers > Unspun Fiber'),(656,477,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Fibers > Yarn'),(657,478,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Wire'),(658,479,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Wire > Craft Pipe Cleaners'),(659,480,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Wire > Floral Wire'),(660,481,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Crafting Wire > Jewelry & Beading Wire'),(661,482,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims'),(662,483,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Appliques & Patches'),(663,484,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Beads'),(664,485,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Bows & Yo-Yos'),(665,486,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Decorative Stickers'),(666,487,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Elastic'),(667,488,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Feathers'),(668,489,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Jewelry Findings'),(669,490,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Loose Stones'),(670,491,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Rhinestones & Flatbacks'),(671,492,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Ribbons & Trim'),(672,493,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Sequins & Glitter'),(673,494,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embellishments & Trims > Sew-in Labels'),(674,495,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Embossing Powder'),(675,496,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Filling & Padding Material'),(676,497,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Filling & Padding Material > Batting & Stuffing'),(677,498,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Filling & Padding Material > Filling Pellets'),(678,499,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Filling & Padding Material > Pillow Forms'),(679,500,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Leather & Vinyl'),(680,501,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Pottery & Sculpting Materials'),(681,502,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Pottery & Sculpting Materials > Clay & Modeling Dough'),(682,503,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Pottery & Sculpting Materials > Papier Mache Mixes'),(683,504,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Pottery & Sculpting Materials > Plaster Gauze'),(684,505,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Pottery & Sculpting Materials > Pottery Slips'),(685,506,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Raw Candle Wax'),(686,507,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles'),(687,508,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles > Crafting Canvas'),(688,509,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles > Crafting Canvas > Needlecraft Canvas'),(689,510,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles > Crafting Canvas > Painting Canvas'),(690,511,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles > Crafting Canvas > Plastic Canvas'),(691,512,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles > Fabric'),(692,513,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles > Interfacing'),(693,514,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Textiles > Printable Fabric'),(694,515,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Wick Tabs'),(695,516,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Materials > Wicks'),(696,517,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories'),(697,518,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories > Craft Knife Blades'),(698,519,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories > Craft Machine Cases & Covers'),(699,520,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories > Sewing Machine Extension Tables'),(700,521,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories > Sewing Machine Feet'),(701,522,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories > Sewing Machine Replacement Parts'),(702,523,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories > Spinning Wheel Accessories'),(703,524,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tool Accessories > Stamp Blocks'),(704,525,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools'),(705,526,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Blocking Mats'),(706,527,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Blocking Wires'),(707,528,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Color Mixing Tools'),(708,529,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Color Mixing Tools > Palette Knives'),(709,530,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Color Mixing Tools > Palettes'),(710,531,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools'),(711,532,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Craft & Office Scissors'),(712,533,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Craft Cutters & Embossers'),(713,534,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Craft Knives'),(714,535,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Craft Scoring Tools'),(715,536,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Embossing Heat Tools'),(716,537,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Embossing Pens & Styluses'),(717,538,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Seam Rippers'),(718,539,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Cutting & Embossing Tools > Thread & Yarn Cutters'),(719,540,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Decoration Makers'),(720,541,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools'),(721,542,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Art Brushes'),(722,543,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Brayer Rollers'),(723,544,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Decorative Stamps'),(724,545,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Drafting Compasses'),(725,546,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Screen Printing Squeegees'),(726,547,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Stencil Machines'),(727,548,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Stencils & Die Cuts'),(728,549,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Stitch Markers & Counters'),(729,550,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Textile Art Gauges & Rulers'),(730,551,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Craft Measuring & Marking Tools > Wood Burning Tools'),(731,552,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Cutting Mats'),(732,553,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Dress Forms'),(733,554,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Felting Pads & Mats'),(734,555,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Frames, Hoops & Stretchers'),(735,556,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Glue Guns'),(736,557,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Light Boxes'),(737,558,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Needles & Hooks'),(738,559,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Needles & Hooks > Crochet Hooks'),(739,560,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Needles & Hooks > Hand-Sewing Needles'),(740,561,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Needles & Hooks > Knitting Needles'),(741,562,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Needles & Hooks > Latch & Locker Hooks'),(742,563,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Needles & Hooks > Sewing Machine Needles'),(743,564,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Safety Pins'),(744,565,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Straight Pins'),(745,566,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Textile Craft Machines'),(746,567,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Textile Craft Machines > Felting Needles & Machines'),(747,568,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Textile Craft Machines > Hand Looms'),(748,569,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Textile Craft Machines > Mechanical Looms'),(749,570,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Textile Craft Machines > Sewing Machines'),(750,571,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Textile Craft Machines > Spinning Wheels'),(751,572,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thimbles & Sewing Palms'),(752,573,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools'),(753,574,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Fiber Cards & Brushes'),(754,575,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Hand Spindles'),(755,576,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Needle Threaders'),(756,577,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Thread & Yarn Guides'),(757,578,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Thread & Yarn Spools'),(758,579,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Thread, Yarn & Bobbin Winders'),(759,580,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Weaving Beaters'),(760,581,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Art & Crafting Tools > Thread & Yarn Tools > Weaving Shuttles'),(761,582,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Craft Organization'),(762,583,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Craft Organization > Needle, Pin & Hook Organizers'),(763,584,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Craft Organization > Sewing Baskets & Kits'),(764,585,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Craft Organization > Thread & Yarn Organizers'),(765,586,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Crafting Patterns & Molds'),(766,587,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Crafting Patterns & Molds > Beading Patterns'),(767,588,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Crafting Patterns & Molds > Craft Molds'),(768,589,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Crafting Patterns & Molds > Felting Molds'),(769,590,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Crafting Patterns & Molds > Needlecraft Patterns'),(770,591,0,'Arts & Entertainment > Hobbies & Creative Arts > Arts & Crafts > Crafting Patterns & Molds > Sewing Patterns'),(771,592,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles'),(772,593,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Autographs'),(773,594,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Coins & Currency'),(774,595,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Trading Cards'),(775,596,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Weapons'),(776,597,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Weapons > Collectible Guns'),(777,598,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Weapons > Collectible Knives'),(778,599,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Weapons > Collectible Swords'),(779,600,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Weapons > Sword Stands & Displays'),(780,601,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Postage Stamps'),(781,602,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Rocks & Fossils'),(782,603,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Scale Model Accessories'),(783,604,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Scale Models'),(784,605,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Seal Stamps'),(785,606,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles'),(786,607,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia'),(787,608,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Auto Racing Autographed Paraphernalia'),(788,609,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Baseball & Softball Autographed Paraphernalia'),(789,610,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Basketball Autographed Paraphernalia'),(790,611,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Boxing Autographed Paraphernalia'),(791,612,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Football Autographed Paraphernalia'),(792,613,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Hockey Autographed Paraphernalia'),(793,614,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Soccer Autographed Paraphernalia'),(794,615,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Tennis Autographed Sports Paraphernalia'),(795,616,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories'),(796,617,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Auto Racing Fan Accessories'),(797,618,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Baseball & Softball Fan Accessories'),(798,619,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Basketball Fan Accessories'),(799,620,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Football Fan Accessories'),(800,621,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Hockey Fan Accessories'),(801,622,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Soccer Fan Accessories'),(802,623,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Tennis Fan Accessories'),(803,624,0,'Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Vintage Advertisements'),(804,625,0,'Arts & Entertainment > Hobbies & Creative Arts > Homebrewing & Winemaking Supplies'),(805,626,0,'Arts & Entertainment > Hobbies & Creative Arts > Homebrewing & Winemaking Supplies > Beer Brewing Grains & Malts'),(806,627,0,'Arts & Entertainment > Hobbies & Creative Arts > Homebrewing & Winemaking Supplies > Bottling Bottles'),(807,628,0,'Arts & Entertainment > Hobbies & Creative Arts > Homebrewing & Winemaking Supplies > Homebrewing & Winemaking Kits'),(808,629,0,'Arts & Entertainment > Hobbies & Creative Arts > Homebrewing & Winemaking Supplies > Wine Making'),(809,630,0,'Arts & Entertainment > Hobbies & Creative Arts > Juggling'),(810,631,0,'Arts & Entertainment > Hobbies & Creative Arts > Magic & Novelties'),(811,632,0,'Arts & Entertainment > Hobbies & Creative Arts > Model Making'),(812,633,0,'Arts & Entertainment > Hobbies & Creative Arts > Model Making > Model Rocketry'),(813,634,0,'Arts & Entertainment > Hobbies & Creative Arts > Model Making > Model Train Accessories'),(814,635,0,'Arts & Entertainment > Hobbies & Creative Arts > Model Making > Model Trains & Train Sets'),(815,636,0,'Arts & Entertainment > Hobbies & Creative Arts > Model Making > Scale Model Kits'),(816,637,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories'),(817,638,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories'),(818,639,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning'),(819,640,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Care Kits'),(820,641,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Cleaners & Sanitizers'),(821,642,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Cleaning Tools'),(822,643,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Guards'),(823,644,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Lubricants'),(824,645,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Polishing Cloths'),(825,646,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Cases & Gigbags'),(826,647,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Mouthpieces'),(827,648,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Mutes'),(828,649,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Replacement Parts'),(829,650,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Brass Instrument Accessories > Brass Instrument Straps & Stands'),(830,651,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Conductor Batons'),(831,652,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Electronic Tuners'),(832,653,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Metronomes'),(833,654,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Music Benches & Stools'),(834,655,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Music Lyres & Flip Folders'),(835,656,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Music Stand Accessories'),(836,657,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Music Stand Accessories > Music Stand Bags'),(837,658,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Music Stand Accessories > Music Stand Lights'),(838,659,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Music Stand Accessories > Sheet Music Clips'),(839,660,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Music Stands'),(840,661,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifier Accessories'),(841,662,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifier Accessories > Musical Instrument Amplifier Cabinets'),(842,663,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifier Accessories > Musical Instrument Amplifier Covers & Cases'),(843,664,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifier Accessories > Musical Instrument Amplifier Footswitches'),(844,665,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifier Accessories > Musical Instrument Amplifier Knobs'),(845,666,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifier Accessories > Musical Instrument Amplifier Stands'),(846,667,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifier Accessories > Musical Instrument Amplifier Tubes'),(847,668,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Instrument Amplifiers'),(848,669,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Keyboard Accessories'),(849,670,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Keyboard Accessories > Musical Keyboard Bags & Cases'),(850,671,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Keyboard Accessories > Musical Keyboard Stands'),(851,672,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Musical Keyboard Accessories > Sustain Pedals'),(852,673,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories'),(853,674,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Cymbal & Drum Cases'),(854,675,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Cymbal & Drum Mutes'),(855,676,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Heads'),(856,677,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Keys'),(857,678,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Kit Hardware'),(858,679,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Kit Hardware > Bass Drum Beaters'),(859,680,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Kit Hardware > Drum Kit Mounting Hardware'),(860,681,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Kit Hardware > Drum Pedals'),(861,682,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Stick & Brush Accessories'),(862,683,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Stick & Brush Accessories > Drum Stick & Brush Bags & Holders'),(863,684,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Drum Sticks & Brushes'),(864,685,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Electronic Drum Modules'),(865,686,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Hand Percussion Accessories'),(866,687,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Hand Percussion Accessories > Hand Percussion Bags & Cases'),(867,688,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Hand Percussion Accessories > Hand Percussion Stands & Mounts'),(868,689,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Percussion Mallets'),(869,690,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Percussion Accessories > Percussion Stands'),(870,691,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories'),(871,692,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories'),(872,693,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Acoustic Guitar Pickups'),(873,694,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Capos'),(874,695,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Electric Guitar Pickups'),(875,696,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Cases & Gig Bags'),(876,697,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Fittings & Parts'),(877,698,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Humidifiers'),(878,699,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Picks'),(879,700,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Slides'),(880,701,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Stands'),(881,702,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Straps'),(882,703,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar String Winders'),(883,704,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Strings'),(884,705,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Guitar Accessories > Guitar Tuning Pegs'),(885,706,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories'),(886,707,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Bow Cases'),(887,708,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Bows'),(888,709,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Cases'),(889,710,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Fittings & Parts'),(890,711,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Mutes'),(891,712,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Pickups'),(892,713,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Stands'),(893,714,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > Orchestral String Instrument Accessories > Orchestral String Instrument Strings'),(894,715,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > String Instrument Care & Cleaning'),(895,716,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > String Instrument Care & Cleaning > Bow Rosin'),(896,717,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > String Instrument Care & Cleaning > String Instrument Cleaning Cloths'),(897,718,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > String Instrument Accessories > String Instrument Care & Cleaning > String Instrument Polish'),(898,719,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories'),(899,720,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories'),(900,721,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Care & Cleaning'),(901,722,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Care & Cleaning > Bassoon Swabs'),(902,723,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Cases & Gigbags'),(903,724,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Parts'),(904,725,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Parts > Bassoon Bocals'),(905,726,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Parts > Bassoon Small Parts'),(906,727,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Reeds'),(907,728,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Stands'),(908,729,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Straps & Supports'),(909,730,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories'),(910,731,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Care & Cleaning'),(911,732,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Care & Cleaning > Clarinet Care Kits'),(912,733,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Care & Cleaning > Clarinet Pad Savers'),(913,734,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Care & Cleaning > Clarinet Swabs'),(914,735,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Cases & Gigbags'),(915,736,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Ligatures & Caps'),(916,737,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Parts'),(917,738,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Parts > Clarinet Barrels'),(918,739,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Parts > Clarinet Bells'),(919,740,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Parts > Clarinet Mouthpieces'),(920,741,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Parts > Clarinet Small Parts'),(921,742,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Pegs & Stands'),(922,743,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Reeds'),(923,744,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Straps & Supports'),(924,745,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories'),(925,746,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Care & Cleaning'),(926,747,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Care & Cleaning > Flute Care Kits'),(927,748,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Care & Cleaning > Flute Cleaning Rods'),(928,749,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Care & Cleaning > Flute Swabs'),(929,750,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Cases & Gigbags'),(930,751,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Parts'),(931,752,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Parts > Flute Headjoints'),(932,753,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Parts > Flute Small Parts'),(933,754,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Pegs & Stands'),(934,755,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Harmonica Accessories'),(935,756,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Harmonica Accessories > Harmonica Cases'),(936,757,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Harmonica Accessories > Harmonica Holders'),(937,758,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories'),(938,759,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Care & Cleaning'),(939,760,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Care & Cleaning > Oboe Care Kits'),(940,761,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Care & Cleaning > Oboe Swabs'),(941,762,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Cases & Gigbags'),(942,763,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Parts'),(943,764,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Parts > Oboe Small Parts'),(944,765,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Pegs & Stands'),(945,766,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Reeds'),(946,767,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Straps & Supports'),(947,768,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Recorder Accessories'),(948,769,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Recorder Accessories > Recorder Care & Cleaning'),(949,770,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Recorder Accessories > Recorder Cases'),(950,771,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Recorder Accessories > Recorder Parts'),(951,772,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories'),(952,773,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Care & Cleaning'),(953,774,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Care & Cleaning > Saxophone Care Kits'),(954,775,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Care & Cleaning > Saxophone Pad Savers'),(955,776,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Care & Cleaning > Saxophone Swabs'),(956,777,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Cases & Gigbags'),(957,778,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Ligatures & Caps'),(958,779,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Parts'),(959,780,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Parts > Saxophone Mouthpieces'),(960,781,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Parts > Saxophone Necks'),(961,782,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Parts > Saxophone Small Parts'),(962,783,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Pegs & Stands'),(963,784,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Reeds'),(964,785,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Straps & Supports'),(965,786,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Woodwind Cork Grease'),(966,787,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Woodwind Polishing Cloths'),(967,788,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Woodwind Reed Cases'),(968,789,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument & Orchestra Accessories > Woodwind Instrument Accessories > Woodwind Reed Knives'),(969,790,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments'),(970,791,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Accordions & Concertinas'),(971,792,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Bagpipes'),(972,793,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass Instruments'),(973,794,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass Instruments > Alto & Baritone Horns'),(974,795,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass Instruments > Euphoniums'),(975,796,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass Instruments > French Horns'),(976,797,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass Instruments > Trombones'),(977,798,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass Instruments > Trumpets & Cornets'),(978,799,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass Instruments > Tubas'),(979,800,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments'),(980,801,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments > Audio Samplers'),(981,802,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments > MIDI Controllers'),(982,803,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments > Musical Keyboards'),(983,804,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments > Sound Synthesizers'),(984,805,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion'),(985,806,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Bass Drums'),(986,807,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Cymbals'),(987,808,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Drum Kits'),(988,809,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Electronic Drums'),(989,810,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Glockenspiels & Xylophones'),(990,811,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Gongs'),(991,812,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion'),(992,813,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Claves & Castanets'),(993,814,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Finger & Hand Cymbals'),(994,815,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Bells & Chimes'),(995,816,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums'),(996,817,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Bongos'),(997,818,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Cajons'),(998,819,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Congas'),(999,820,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Frame Drums'),(1000,821,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Goblet Drums'),(1001,822,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Tablas'),(1002,823,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Talking Drums'),(1003,824,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Musical Blocks'),(1004,825,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Musical Cowbells'),(1005,826,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Musical Scrapers & Ratchets'),(1006,827,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Musical Shakers'),(1007,828,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Musical Triangles'),(1008,829,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Tambourines'),(1009,830,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Vibraslaps'),(1010,831,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hi-Hats'),(1011,832,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Practice Pads'),(1012,833,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Snare Drums'),(1013,834,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Tom-Toms'),(1014,835,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Pianos'),(1015,836,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments'),(1016,837,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Cellos'),(1017,838,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Guitars'),(1018,839,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Harps'),(1019,840,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Upright Basses'),(1020,841,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Violas'),(1021,842,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Violins'),(1022,843,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds'),(1023,844,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Bassoons'),(1024,845,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Clarinets'),(1025,846,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Flutes'),(1026,847,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Flutophones'),(1027,848,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Harmonicas'),(1028,849,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Jew\'s Harps'),(1029,850,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Melodicas'),(1030,851,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Musical Pipes'),(1031,852,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Oboes & English Horns'),(1032,853,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Ocarinas'),(1033,854,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Recorders'),(1034,855,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Saxophones'),(1035,856,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Tin Whistles'),(1036,857,0,'Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Train Whistles'),(1037,858,0,'Arts & Entertainment > Party & Celebration'),(1038,859,0,'Arts & Entertainment > Party & Celebration > Gift Giving'),(1039,860,0,'Arts & Entertainment > Party & Celebration > Gift Giving > Corsage & BoutonniÃ¨re Pins'),(1040,861,0,'Arts & Entertainment > Party & Celebration > Gift Giving > Corsages & BoutonniÃ¨res'),(1041,862,0,'Arts & Entertainment > Party & Celebration > Gift Giving > Fresh Cut Flowers'),(1042,863,0,'Arts & Entertainment > Party & Celebration > Gift Giving > Gift Cards & Certificates'),(1043,864,0,'Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping'),(1044,865,0,'Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping > Gift Bags'),(1045,866,0,'Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping > Gift Boxes & Tins'),(1046,867,0,'Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping > Gift Tags & Labels'),(1047,868,0,'Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping > Tissue Paper'),(1048,869,0,'Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping > Wrapping Paper'),(1049,870,0,'Arts & Entertainment > Party & Celebration > Gift Giving > Greeting & Note Cards'),(1050,871,0,'Arts & Entertainment > Party & Celebration > Party Supplies'),(1051,872,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Advice Cards'),(1052,873,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Balloon Kits'),(1053,874,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Balloons'),(1054,875,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Banners'),(1055,876,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Birthday Candles'),(1056,877,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Chair Sashes'),(1057,878,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Cocktail Decorations'),(1058,879,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Confetti'),(1059,880,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Decorative Pom-Poms'),(1060,881,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Drinking Games'),(1061,882,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Drinking Games > Beer Pong'),(1062,883,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Drinking Games > Beer Pong > Beer Pong Tables'),(1063,884,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Drinking Straws & Stirrers'),(1064,885,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Envelope Seals'),(1065,886,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Event Programs'),(1066,887,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Fireworks & Firecrackers'),(1067,888,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Inflatable Party Decorations'),(1068,889,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Invitations'),(1069,890,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Noisemakers & Party Blowers'),(1070,891,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Party Favors'),(1071,892,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Party Favors > Wedding Favors'),(1072,893,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Party Games'),(1073,894,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Party Hats'),(1074,895,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Party Streamers & Curtains'),(1075,896,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Party Supply Kits'),(1076,897,0,'Arts & Entertainment > Party & Celebration > Party Supplies > PiÃ±atas'),(1077,898,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Place Card Holders'),(1078,899,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Place Cards'),(1079,900,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Response Cards'),(1080,901,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Sparklers'),(1081,902,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Special Occasion Card Boxes & Holders'),(1082,903,0,'Arts & Entertainment > Party & Celebration > Party Supplies > Spray String'),(1083,904,0,'Arts & Entertainment > Party & Celebration > Special Effects'),(1084,905,0,'Arts & Entertainment > Party & Celebration > Special Effects > Disco Balls'),(1085,906,0,'Arts & Entertainment > Party & Celebration > Special Effects > Fog Machines'),(1086,907,0,'Arts & Entertainment > Party & Celebration > Special Effects > Special Effects Controllers'),(1087,908,0,'Arts & Entertainment > Party & Celebration > Special Effects > Special Effects Light Stands'),(1088,909,0,'Arts & Entertainment > Party & Celebration > Special Effects > Special Effects Lighting'),(1089,910,0,'Arts & Entertainment > Party & Celebration > Trophies & Awards'),(1090,911,0,'Baby & Toddler'),(1091,912,0,'Baby & Toddler > Baby Bathing'),(1092,913,0,'Baby & Toddler > Baby Bathing > Baby Bathtubs & Bath Seats'),(1093,914,0,'Baby & Toddler > Baby Bathing > Shower Visors'),(1094,915,0,'Baby & Toddler > Baby Gift Sets'),(1095,916,0,'Baby & Toddler > Baby Health'),(1096,917,0,'Baby & Toddler > Baby Health > Baby Health & Grooming Kits'),(1097,918,0,'Baby & Toddler > Baby Health > Nasal Aspirators'),(1098,919,0,'Baby & Toddler > Baby Health > Pacifier Clips & Holders'),(1099,920,0,'Baby & Toddler > Baby Health > Pacifier Wipes'),(1100,921,0,'Baby & Toddler > Baby Health > Pacifiers & Teethers'),(1101,922,0,'Baby & Toddler > Baby Safety'),(1102,923,0,'Baby & Toddler > Baby Safety > Baby & Pet Gate Accessories'),(1103,924,0,'Baby & Toddler > Baby Safety > Baby & Pet Gates'),(1104,925,0,'Baby & Toddler > Baby Safety > Baby Monitors'),(1105,926,0,'Baby & Toddler > Baby Safety > Baby Safety Harnesses & Leashes'),(1106,927,0,'Baby & Toddler > Baby Safety > Baby Safety Locks & Guards'),(1107,928,0,'Baby & Toddler > Baby Safety > Baby Safety Rails'),(1108,929,0,'Baby & Toddler > Baby Toys & Activity Equipment'),(1109,930,0,'Baby & Toddler > Baby Toys & Activity Equipment > Alphabet Toys'),(1110,931,0,'Baby & Toddler > Baby Toys & Activity Equipment > Baby Activity Toys'),(1111,932,0,'Baby & Toddler > Baby Toys & Activity Equipment > Baby Bouncers & Rockers'),(1112,933,0,'Baby & Toddler > Baby Toys & Activity Equipment > Baby Jumpers & Swings'),(1113,934,0,'Baby & Toddler > Baby Toys & Activity Equipment > Baby Mobile Accessories'),(1114,935,0,'Baby & Toddler > Baby Toys & Activity Equipment > Baby Mobiles'),(1115,936,0,'Baby & Toddler > Baby Toys & Activity Equipment > Baby Soothers'),(1116,937,0,'Baby & Toddler > Baby Toys & Activity Equipment > Baby Walkers & Entertainers'),(1117,938,0,'Baby & Toddler > Baby Toys & Activity Equipment > Play Mats & Gyms'),(1118,939,0,'Baby & Toddler > Baby Toys & Activity Equipment > Play Yards'),(1119,940,0,'Baby & Toddler > Baby Toys & Activity Equipment > Push & Pull Toys'),(1120,941,0,'Baby & Toddler > Baby Toys & Activity Equipment > Rattles'),(1121,942,0,'Baby & Toddler > Baby Toys & Activity Equipment > Sorting & Stacking Toys'),(1122,943,0,'Baby & Toddler > Baby Transport'),(1123,944,0,'Baby & Toddler > Baby Transport > Baby & Toddler Car Seats'),(1124,945,0,'Baby & Toddler > Baby Transport > Baby Carriers'),(1125,946,0,'Baby & Toddler > Baby Transport > Baby Strollers'),(1126,947,0,'Baby & Toddler > Baby Transport Accessories'),(1127,948,0,'Baby & Toddler > Baby Transport Accessories > Baby & Toddler Car Seat Accessories'),(1128,949,0,'Baby & Toddler > Baby Transport Accessories > Baby Carrier Accessories'),(1129,950,0,'Baby & Toddler > Baby Transport Accessories > Baby Stroller Accessories'),(1130,951,0,'Baby & Toddler > Baby Transport Accessories > Baby Transport Liners & Sacks'),(1131,952,0,'Baby & Toddler > Baby Transport Accessories > Shopping Cart & High Chair Covers'),(1132,953,0,'Baby & Toddler > Diapering'),(1133,954,0,'Baby & Toddler > Diapering > Baby Wipe Dispensers & Warmers'),(1134,955,0,'Baby & Toddler > Diapering > Baby Wipes'),(1135,956,0,'Baby & Toddler > Diapering > Changing Mat & Tray Covers'),(1136,957,0,'Baby & Toddler > Diapering > Changing Mats & Trays'),(1137,958,0,'Baby & Toddler > Diapering > Diaper Kits'),(1138,959,0,'Baby & Toddler > Diapering > Diaper Liners'),(1139,960,0,'Baby & Toddler > Diapering > Diaper Organizers'),(1140,961,0,'Baby & Toddler > Diapering > Diaper Pail Accessories'),(1141,962,0,'Baby & Toddler > Diapering > Diaper Pails'),(1142,963,0,'Baby & Toddler > Diapering > Diaper Rash Treatments'),(1143,964,0,'Baby & Toddler > Diapering > Diaper Wet Bags'),(1144,965,0,'Baby & Toddler > Diapering > Diapers'),(1145,966,0,'Baby & Toddler > Nursing & Feeding'),(1146,967,0,'Baby & Toddler > Nursing & Feeding > Baby & Toddler Food'),(1147,968,0,'Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Baby Cereal'),(1148,969,0,'Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Baby Drinks'),(1149,970,0,'Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Baby Food'),(1150,971,0,'Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Baby Formula'),(1151,972,0,'Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Baby Snacks'),(1152,973,0,'Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Toddler Nutrition Drinks & Shakes'),(1153,974,0,'Baby & Toddler > Nursing & Feeding > Baby Bottle Nipples & Liners'),(1154,975,0,'Baby & Toddler > Nursing & Feeding > Baby Bottles'),(1155,976,0,'Baby & Toddler > Nursing & Feeding > Baby Care Timers'),(1156,977,0,'Baby & Toddler > Nursing & Feeding > Bibs'),(1157,978,0,'Baby & Toddler > Nursing & Feeding > Bottle Warmers & Sterilizers'),(1158,979,0,'Baby & Toddler > Nursing & Feeding > Breast Milk Storage Containers'),(1159,980,0,'Baby & Toddler > Nursing & Feeding > Breast Pump Accessories'),(1160,981,0,'Baby & Toddler > Nursing & Feeding > Breast Pumps'),(1161,982,0,'Baby & Toddler > Nursing & Feeding > Burp Cloths'),(1162,983,0,'Baby & Toddler > Nursing & Feeding > Nursing Covers'),(1163,984,0,'Baby & Toddler > Nursing & Feeding > Nursing Pads & Shields'),(1164,985,0,'Baby & Toddler > Nursing & Feeding > Nursing Pillow Covers'),(1165,986,0,'Baby & Toddler > Nursing & Feeding > Nursing Pillows'),(1166,987,0,'Baby & Toddler > Nursing & Feeding > Sippy Cups'),(1167,988,0,'Baby & Toddler > Potty Training'),(1168,989,0,'Baby & Toddler > Potty Training > Potty Seats'),(1169,990,0,'Baby & Toddler > Potty Training > Potty Training Kits'),(1170,991,0,'Baby & Toddler > Swaddling & Receiving Blankets'),(1171,992,0,'Business & Industrial'),(1172,993,0,'Business & Industrial > Advertising & Marketing'),(1173,994,0,'Business & Industrial > Advertising & Marketing > Brochures'),(1174,995,0,'Business & Industrial > Advertising & Marketing > Trade Show Counters'),(1175,996,0,'Business & Industrial > Advertising & Marketing > Trade Show Displays'),(1176,997,0,'Business & Industrial > Agriculture'),(1177,998,0,'Business & Industrial > Agriculture > Animal Husbandry'),(1178,999,0,'Business & Industrial > Agriculture > Animal Husbandry > Egg Incubators'),(1179,1000,0,'Business & Industrial > Agriculture > Animal Husbandry > Livestock Feed'),(1180,1001,0,'Business & Industrial > Agriculture > Animal Husbandry > Livestock Feeders & Waterers'),(1181,1002,0,'Business & Industrial > Agriculture > Animal Husbandry > Livestock Halters'),(1182,1003,0,'Business & Industrial > Automation Control Components'),(1183,1004,0,'Business & Industrial > Automation Control Components > Programmable Logic Controllers'),(1184,1005,0,'Business & Industrial > Automation Control Components > Variable Frequency & Adjustable Speed Drives'),(1185,1006,0,'Business & Industrial > Construction'),(1186,1007,0,'Business & Industrial > Construction > Surveying'),(1187,1008,0,'Business & Industrial > Construction > Traffic Cones & Barrels'),(1188,1009,0,'Business & Industrial > Dentistry'),(1189,1010,0,'Business & Industrial > Dentistry > Dental Cement'),(1190,1011,0,'Business & Industrial > Dentistry > Dental Tools'),(1191,1012,0,'Business & Industrial > Dentistry > Dental Tools > Dappen Dishes'),(1192,1013,0,'Business & Industrial > Dentistry > Dental Tools > Dental Mirrors'),(1193,1014,0,'Business & Industrial > Dentistry > Dental Tools > Dental Tool Sets'),(1194,1015,0,'Business & Industrial > Dentistry > Dental Tools > Prophy Cups'),(1195,1016,0,'Business & Industrial > Dentistry > Dental Tools > Prophy Heads'),(1196,1017,0,'Business & Industrial > Dentistry > Prophy Paste'),(1197,1018,0,'Business & Industrial > Film & Television'),(1198,1019,0,'Business & Industrial > Finance & Insurance'),(1199,1020,0,'Business & Industrial > Finance & Insurance > Bullion'),(1200,1021,0,'Business & Industrial > Food Service'),(1201,1022,0,'Business & Industrial > Food Service > Bakery Boxes'),(1202,1023,0,'Business & Industrial > Food Service > Bus Tubs'),(1203,1024,0,'Business & Industrial > Food Service > Check Presenters'),(1204,1025,0,'Business & Industrial > Food Service > Concession Food Containers'),(1205,1026,0,'Business & Industrial > Food Service > Disposable Lids'),(1206,1027,0,'Business & Industrial > Food Service > Disposable Serveware'),(1207,1028,0,'Business & Industrial > Food Service > Disposable Serveware > Disposable Serving Trays'),(1208,1029,0,'Business & Industrial > Food Service > Disposable Tableware'),(1209,1030,0,'Business & Industrial > Food Service > Disposable Tableware > Disposable Bowls'),(1210,1031,0,'Business & Industrial > Food Service > Disposable Tableware > Disposable Cups'),(1211,1032,0,'Business & Industrial > Food Service > Disposable Tableware > Disposable Cutlery'),(1212,1033,0,'Business & Industrial > Food Service > Disposable Tableware > Disposable Plates'),(1213,1034,0,'Business & Industrial > Food Service > Food Service Baskets'),(1214,1035,0,'Business & Industrial > Food Service > Food Service Carts'),(1215,1036,0,'Business & Industrial > Food Service > Food Washers & Dryers'),(1216,1037,0,'Business & Industrial > Food Service > Hot Dog Rollers'),(1217,1038,0,'Business & Industrial > Food Service > Ice Bins'),(1218,1039,0,'Business & Industrial > Food Service > Plate & Dish Warmers'),(1219,1040,0,'Business & Industrial > Food Service > Sneeze Guards'),(1220,1041,0,'Business & Industrial > Food Service > Take-Out Containers'),(1221,1042,0,'Business & Industrial > Food Service > Tilt Skillets'),(1222,1043,0,'Business & Industrial > Food Service > Vending Machines'),(1223,1044,0,'Business & Industrial > Forestry & Logging'),(1224,1045,0,'Business & Industrial > Hairdressing & Cosmetology'),(1225,1046,0,'Business & Industrial > Hairdressing & Cosmetology > Hairdressing Capes & Neck Covers'),(1226,1047,0,'Business & Industrial > Hairdressing & Cosmetology > Pedicure Chairs'),(1227,1048,0,'Business & Industrial > Hairdressing & Cosmetology > Salon Chairs'),(1228,1049,0,'Business & Industrial > Heavy Machinery'),(1229,1050,0,'Business & Industrial > Heavy Machinery > Chippers'),(1230,1051,0,'Business & Industrial > Hotel & Hospitality'),(1231,1052,0,'Business & Industrial > Industrial Storage'),(1232,1053,0,'Business & Industrial > Industrial Storage > Industrial Cabinets'),(1233,1054,0,'Business & Industrial > Industrial Storage > Industrial Shelving'),(1234,1055,0,'Business & Industrial > Industrial Storage > Shipping Containers'),(1235,1056,0,'Business & Industrial > Industrial Storage > Wire Partitions, Enclosures & Doors'),(1236,1057,0,'Business & Industrial > Industrial Storage Accessories'),(1237,1058,0,'Business & Industrial > Janitorial Carts & Caddies'),(1238,1059,0,'Business & Industrial > Law Enforcement'),(1239,1060,0,'Business & Industrial > Law Enforcement > Cuffs'),(1240,1061,0,'Business & Industrial > Law Enforcement > Metal Detectors'),(1241,1062,0,'Business & Industrial > Manufacturing'),(1242,1063,0,'Business & Industrial > Material Handling'),(1243,1064,0,'Business & Industrial > Material Handling > Conveyors'),(1244,1065,0,'Business & Industrial > Material Handling > Lifts & Hoists'),(1245,1066,0,'Business & Industrial > Material Handling > Lifts & Hoists > Hoists, Cranes & Trolleys'),(1246,1067,0,'Business & Industrial > Material Handling > Lifts & Hoists > Jacks & Lift Trucks'),(1247,1068,0,'Business & Industrial > Material Handling > Lifts & Hoists > Personnel Lifts'),(1248,1069,0,'Business & Industrial > Material Handling > Lifts & Hoists > Pulleys, Blocks & Sheaves'),(1249,1070,0,'Business & Industrial > Material Handling > Lifts & Hoists > Winches'),(1250,1071,0,'Business & Industrial > Material Handling > Pallets & Loading Platforms'),(1251,1072,0,'Business & Industrial > Medical'),(1252,1073,0,'Business & Industrial > Medical > Hospital Curtains'),(1253,1074,0,'Business & Industrial > Medical > Hospital Gowns'),(1254,1075,0,'Business & Industrial > Medical > Medical Bedding'),(1255,1076,0,'Business & Industrial > Medical > Medical Equipment'),(1256,1077,0,'Business & Industrial > Medical > Medical Equipment > Automated External Defibrillators'),(1257,1078,0,'Business & Industrial > Medical > Medical Equipment > Gait Belts'),(1258,1079,0,'Business & Industrial > Medical > Medical Equipment > Medical Reflex Hammers & Tuning Forks'),(1259,1080,0,'Business & Industrial > Medical > Medical Equipment > Medical Stretchers & Gurneys'),(1260,1081,0,'Business & Industrial > Medical > Medical Equipment > Otoscopes & Ophthalmoscopes'),(1261,1082,0,'Business & Industrial > Medical > Medical Equipment > Patient Lifts'),(1262,1083,0,'Business & Industrial > Medical > Medical Equipment > Stethoscopes'),(1263,1084,0,'Business & Industrial > Medical > Medical Equipment > Vital Signs Monitor Accessories'),(1264,1085,0,'Business & Industrial > Medical > Medical Equipment > Vital Signs Monitors'),(1265,1086,0,'Business & Industrial > Medical > Medical Furniture'),(1266,1087,0,'Business & Industrial > Medical > Medical Furniture > Chiropractic Tables'),(1267,1088,0,'Business & Industrial > Medical > Medical Furniture > Examination Chairs & Tables'),(1268,1089,0,'Business & Industrial > Medical > Medical Furniture > Homecare & Hospital Beds'),(1269,1090,0,'Business & Industrial > Medical > Medical Furniture > Medical Cabinets'),(1270,1091,0,'Business & Industrial > Medical > Medical Furniture > Medical Carts'),(1271,1092,0,'Business & Industrial > Medical > Medical Furniture > Medical Carts > Crash Carts'),(1272,1093,0,'Business & Industrial > Medical > Medical Furniture > Medical Carts > IV Poles & Carts'),(1273,1094,0,'Business & Industrial > Medical > Medical Furniture > Surgical Tables'),(1274,1095,0,'Business & Industrial > Medical > Medical Instruments'),(1275,1096,0,'Business & Industrial > Medical > Medical Instruments > Medical Forceps'),(1276,1097,0,'Business & Industrial > Medical > Medical Instruments > Scalpel Blades'),(1277,1098,0,'Business & Industrial > Medical > Medical Instruments > Scalpels'),(1278,1099,0,'Business & Industrial > Medical > Medical Instruments > Surgical Needles & Sutures'),(1279,1100,0,'Business & Industrial > Medical > Medical Supplies'),(1280,1101,0,'Business & Industrial > Medical > Medical Supplies > Disposable Gloves'),(1281,1102,0,'Business & Industrial > Medical > Medical Supplies > Finger Cots'),(1282,1103,0,'Business & Industrial > Medical > Medical Supplies > Medical Needles & Syringes'),(1283,1104,0,'Business & Industrial > Medical > Medical Supplies > Ostomy Supplies'),(1284,1105,0,'Business & Industrial > Medical > Medical Supplies > Tongue Depressors'),(1285,1106,0,'Business & Industrial > Medical > Medical Teaching Equipment'),(1286,1107,0,'Business & Industrial > Medical > Medical Teaching Equipment > Medical & Emergency Response Training Mannequins'),(1287,1108,0,'Business & Industrial > Medical > Scrub Caps'),(1288,1109,0,'Business & Industrial > Medical > Scrubs'),(1289,1110,0,'Business & Industrial > Medical > Surgical Gowns'),(1290,1111,0,'Business & Industrial > Mining & Quarrying'),(1291,1112,0,'Business & Industrial > Piercing & Tattooing'),(1292,1113,0,'Business & Industrial > Piercing & Tattooing > Piercing Supplies'),(1293,1114,0,'Business & Industrial > Piercing & Tattooing > Piercing Supplies > Piercing Needles'),(1294,1115,0,'Business & Industrial > Piercing & Tattooing > Tattooing Supplies'),(1295,1116,0,'Business & Industrial > Piercing & Tattooing > Tattooing Supplies > Tattoo Cover-Ups'),(1296,1117,0,'Business & Industrial > Piercing & Tattooing > Tattooing Supplies > Tattooing Inks'),(1297,1118,0,'Business & Industrial > Piercing & Tattooing > Tattooing Supplies > Tattooing Machines'),(1298,1119,0,'Business & Industrial > Piercing & Tattooing > Tattooing Supplies > Tattooing Needles'),(1299,1120,0,'Business & Industrial > Retail'),(1300,1121,0,'Business & Industrial > Retail > Clothing Display Racks'),(1301,1122,0,'Business & Industrial > Retail > Display Mannequins'),(1302,1123,0,'Business & Industrial > Retail > Mannequin Parts'),(1303,1124,0,'Business & Industrial > Retail > Money Handling'),(1304,1125,0,'Business & Industrial > Retail > Money Handling > Banknote Verifiers'),(1305,1126,0,'Business & Industrial > Retail > Money Handling > Cash Register & POS Terminal Accessories'),(1306,1127,0,'Business & Industrial > Retail > Money Handling > Cash Register & POS Terminal Accessories > Cash Drawers & Trays'),(1307,1128,0,'Business & Industrial > Retail > Money Handling > Cash Register & POS Terminal Accessories > Credit Card Terminals'),(1308,1129,0,'Business & Industrial > Retail > Money Handling > Cash Register & POS Terminal Accessories > Signature Capture Pads'),(1309,1130,0,'Business & Industrial > Retail > Money Handling > Cash Registers & POS Terminals'),(1310,1131,0,'Business & Industrial > Retail > Money Handling > Coin & Bill Counters'),(1311,1132,0,'Business & Industrial > Retail > Money Handling > Money Changers'),(1312,1133,0,'Business & Industrial > Retail > Money Handling > Money Deposit Bags'),(1313,1134,0,'Business & Industrial > Retail > Money Handling > Paper Coin Wrappers & Bill Straps'),(1314,1135,0,'Business & Industrial > Retail > Paper & Plastic Shopping Bags'),(1315,1136,0,'Business & Industrial > Retail > Pricing Guns'),(1316,1137,0,'Business & Industrial > Retail > Retail Display Cases'),(1317,1138,0,'Business & Industrial > Retail > Retail Display Props & Models'),(1318,1139,0,'Business & Industrial > Science & Laboratory'),(1319,1140,0,'Business & Industrial > Science & Laboratory > Biochemicals'),(1320,1141,0,'Business & Industrial > Science & Laboratory > Dissection Kits'),(1321,1142,0,'Business & Industrial > Science & Laboratory > Laboratory Chemicals'),(1322,1143,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment'),(1323,1144,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Autoclaves'),(1324,1145,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Centrifuges'),(1325,1146,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Dry Ice Makers'),(1326,1147,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Freeze-Drying Machines'),(1327,1148,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Laboratory Blenders'),(1328,1149,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Laboratory Freezers'),(1329,1150,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Laboratory Funnels'),(1330,1151,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Laboratory Hot Plates'),(1331,1152,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Laboratory Ovens'),(1332,1153,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories'),(1333,1154,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories > Microscope Cameras'),(1334,1155,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories > Microscope Eyepieces & Adapters'),(1335,1156,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories > Microscope Objective Lenses'),(1336,1157,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories > Microscope Replacement Bulbs'),(1337,1158,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories > Microscope Slides'),(1338,1159,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscopes'),(1339,1160,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Microtomes'),(1340,1161,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Spectrometer Accessories'),(1341,1162,0,'Business & Industrial > Science & Laboratory > Laboratory Equipment > Spectrometers'),(1342,1163,0,'Business & Industrial > Science & Laboratory > Laboratory Specimens'),(1343,1164,0,'Business & Industrial > Science & Laboratory > Laboratory Supplies'),(1344,1165,0,'Business & Industrial > Science & Laboratory > Laboratory Supplies > Beakers'),(1345,1166,0,'Business & Industrial > Science & Laboratory > Laboratory Supplies > Graduated Cylinders'),(1346,1167,0,'Business & Industrial > Science & Laboratory > Laboratory Supplies > Laboratory Flasks'),(1347,1168,0,'Business & Industrial > Science & Laboratory > Laboratory Supplies > Petri Dishes'),(1348,1169,0,'Business & Industrial > Science & Laboratory > Laboratory Supplies > Pipettes'),(1349,1170,0,'Business & Industrial > Science & Laboratory > Laboratory Supplies > Test Tube Racks'),(1350,1171,0,'Business & Industrial > Science & Laboratory > Laboratory Supplies > Test Tubes'),(1351,1172,0,'Business & Industrial > Science & Laboratory > Laboratory Supplies > Wash Bottles'),(1352,1173,0,'Business & Industrial > Signage'),(1353,1174,0,'Business & Industrial > Signage > Business Hour Signs'),(1354,1175,0,'Business & Industrial > Signage > Digital Signs'),(1355,1176,0,'Business & Industrial > Signage > Electric Signs'),(1356,1177,0,'Business & Industrial > Signage > Electric Signs > LED Signs'),(1357,1178,0,'Business & Industrial > Signage > Electric Signs > Neon Signs'),(1358,1179,0,'Business & Industrial > Signage > Emergency & Exit Signs'),(1359,1180,0,'Business & Industrial > Signage > Facility Identification Signs'),(1360,1181,0,'Business & Industrial > Signage > Open & Closed Signs'),(1361,1182,0,'Business & Industrial > Signage > Parking Signs & Permits'),(1362,1183,0,'Business & Industrial > Signage > Policy Signs'),(1363,1184,0,'Business & Industrial > Signage > Retail & Sale Signs'),(1364,1185,0,'Business & Industrial > Signage > Road & Traffic Signs'),(1365,1186,0,'Business & Industrial > Signage > Safety & Warning Signs'),(1366,1187,0,'Business & Industrial > Signage > Security Signs'),(1367,1188,0,'Business & Industrial > Signage > Sidewalk & Yard Signs'),(1368,1189,0,'Business & Industrial > Work Safety Protective Gear'),(1369,1190,0,'Business & Industrial > Work Safety Protective Gear > Bullet Proof Vests'),(1370,1191,0,'Business & Industrial > Work Safety Protective Gear > Gas Mask & Respirator Accessories'),(1371,1192,0,'Business & Industrial > Work Safety Protective Gear > Hardhats'),(1372,1193,0,'Business & Industrial > Work Safety Protective Gear > Hazardous Material Suits'),(1373,1194,0,'Business & Industrial > Work Safety Protective Gear > Protective Aprons'),(1374,1195,0,'Business & Industrial > Work Safety Protective Gear > Protective Eyewear'),(1375,1196,0,'Business & Industrial > Work Safety Protective Gear > Protective Masks'),(1376,1197,0,'Business & Industrial > Work Safety Protective Gear > Protective Masks > Dust Masks'),(1377,1198,0,'Business & Industrial > Work Safety Protective Gear > Protective Masks > Fireman\'s Masks'),(1378,1199,0,'Business & Industrial > Work Safety Protective Gear > Protective Masks > Gas Masks & Respirators'),(1379,1200,0,'Business & Industrial > Work Safety Protective Gear > Protective Masks > Medical Masks'),(1380,1201,0,'Business & Industrial > Work Safety Protective Gear > Safety Gloves'),(1381,1202,0,'Business & Industrial > Work Safety Protective Gear > Safety Knee Pads'),(1382,1203,0,'Business & Industrial > Work Safety Protective Gear > Welding Helmets'),(1383,1204,0,'Business & Industrial > Work Safety Protective Gear > Work Safety Harnesses'),(1384,1205,0,'Business & Industrial > Work Safety Protective Gear > Work Safety Tethers'),(1385,1206,0,'Cameras & Optics'),(1386,1207,0,'Cameras & Optics > Camera & Optic Accessories'),(1387,1208,0,'Cameras & Optics > Camera & Optic Accessories > Camera & Optic Replacement Cables'),(1388,1209,0,'Cameras & Optics > Camera & Optic Accessories > Camera & Video Camera Lenses'),(1389,1210,0,'Cameras & Optics > Camera & Optic Accessories > Camera & Video Camera Lenses > Camera Lenses'),(1390,1211,0,'Cameras & Optics > Camera & Optic Accessories > Camera & Video Camera Lenses > Surveillance Camera Lenses'),(1391,1212,0,'Cameras & Optics > Camera & Optic Accessories > Camera & Video Camera Lenses > Video Camera Lenses'),(1392,1213,0,'Cameras & Optics > Camera & Optic Accessories > Camera Lens Accessories'),(1393,1214,0,'Cameras & Optics > Camera & Optic Accessories > Camera Lens Accessories > Lens & Filter Adapter Rings'),(1394,1215,0,'Cameras & Optics > Camera & Optic Accessories > Camera Lens Accessories > Lens Bags'),(1395,1216,0,'Cameras & Optics > Camera & Optic Accessories > Camera Lens Accessories > Lens Caps'),(1396,1217,0,'Cameras & Optics > Camera & Optic Accessories > Camera Lens Accessories > Lens Converters'),(1397,1218,0,'Cameras & Optics > Camera & Optic Accessories > Camera Lens Accessories > Lens Filters'),(1398,1219,0,'Cameras & Optics > Camera & Optic Accessories > Camera Lens Accessories > Lens Hoods'),(1399,1220,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories'),(1400,1221,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Accessory Sets'),(1401,1222,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Bags & Cases'),(1402,1223,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Body Replacement Panels & Doors'),(1403,1224,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Digital Backs'),(1404,1225,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Film'),(1405,1226,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Flash Accessories'),(1406,1227,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Flashes'),(1407,1228,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Focus Devices'),(1408,1229,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Gears'),(1409,1230,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Grips'),(1410,1231,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Image Sensors'),(1411,1232,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Lens Zoom Units'),(1412,1233,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Remote Controls'),(1413,1234,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Replacement Buttons & Knobs'),(1414,1235,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Replacement Screens & Displays'),(1415,1236,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Silencers & Sound Blimps'),(1416,1237,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Stabilizers & Supports'),(1417,1238,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Straps'),(1418,1239,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Camera Sun Hoods & Viewfinder Attachments'),(1419,1240,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Flash Brackets'),(1420,1241,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > On-Camera Monitors'),(1421,1242,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Surveillance Camera Accessories'),(1422,1243,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Underwater Camera Housing Accessories'),(1423,1244,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Underwater Camera Housings'),(1424,1245,0,'Cameras & Optics > Camera & Optic Accessories > Camera Parts & Accessories > Video Camera Lights'),(1425,1246,0,'Cameras & Optics > Camera & Optic Accessories > Optic Accessories'),(1426,1247,0,'Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Binocular & Monocular Accessories'),(1427,1248,0,'Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Optics Bags & Cases'),(1428,1249,0,'Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Rangefinder Accessories'),(1429,1250,0,'Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Spotting Scope Accessories'),(1430,1251,0,'Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Telescope Accessories'),(1431,1252,0,'Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Thermal Optic Accessories'),(1432,1253,0,'Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Weapon Scope & Sight Accessories'),(1433,1254,0,'Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories'),(1434,1255,0,'Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories > Tripod & Monopod Cases'),(1435,1256,0,'Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories > Tripod & Monopod Heads'),(1436,1257,0,'Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories > Tripod Collars & Mounts'),(1437,1258,0,'Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories > Tripod Handles'),(1438,1259,0,'Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories > Tripod Spreaders'),(1439,1260,0,'Cameras & Optics > Camera & Optic Accessories > Tripods & Monopods'),(1440,1261,0,'Cameras & Optics > Cameras'),(1441,1262,0,'Cameras & Optics > Cameras > Borescopes'),(1442,1263,0,'Cameras & Optics > Cameras > Digital Cameras'),(1443,1264,0,'Cameras & Optics > Cameras > Disposable Cameras'),(1444,1265,0,'Cameras & Optics > Cameras > Film Cameras'),(1445,1266,0,'Cameras & Optics > Cameras > Surveillance Cameras'),(1446,1267,0,'Cameras & Optics > Cameras > Trail Cameras'),(1447,1268,0,'Cameras & Optics > Cameras > Video Cameras'),(1448,1269,0,'Cameras & Optics > Cameras > Webcams'),(1449,1270,0,'Cameras & Optics > Optics'),(1450,1271,0,'Cameras & Optics > Optics > Binoculars'),(1451,1272,0,'Cameras & Optics > Optics > Monoculars'),(1452,1273,0,'Cameras & Optics > Optics > Rangefinders'),(1453,1274,0,'Cameras & Optics > Optics > Scopes'),(1454,1275,0,'Cameras & Optics > Optics > Scopes > Spotting Scopes'),(1455,1276,0,'Cameras & Optics > Optics > Scopes > Telescopes'),(1456,1277,0,'Cameras & Optics > Optics > Scopes > Weapon Scopes & Sights'),(1457,1278,0,'Cameras & Optics > Photography'),(1458,1279,0,'Cameras & Optics > Photography > Darkroom'),(1459,1280,0,'Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment'),(1460,1281,0,'Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment > Copystands'),(1461,1282,0,'Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment > Darkroom Sinks'),(1462,1283,0,'Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment > Developing Tanks & Reels'),(1463,1284,0,'Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment > Print Trays, Washers & Dryers'),(1464,1285,0,'Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment > Retouching Equipment & Supplies'),(1465,1286,0,'Cameras & Optics > Photography > Darkroom > Enlarging Equipment'),(1466,1287,0,'Cameras & Optics > Photography > Darkroom > Enlarging Equipment > Darkroom Easels'),(1467,1288,0,'Cameras & Optics > Photography > Darkroom > Enlarging Equipment > Darkroom Timers'),(1468,1289,0,'Cameras & Optics > Photography > Darkroom > Enlarging Equipment > Focusing Aids'),(1469,1290,0,'Cameras & Optics > Photography > Darkroom > Enlarging Equipment > Photographic Analyzers'),(1470,1291,0,'Cameras & Optics > Photography > Darkroom > Enlarging Equipment > Photographic Enlargers'),(1471,1292,0,'Cameras & Optics > Photography > Darkroom > Photographic Chemicals'),(1472,1293,0,'Cameras & Optics > Photography > Darkroom > Photographic Paper'),(1473,1294,0,'Cameras & Optics > Photography > Darkroom > Safelights'),(1474,1295,0,'Cameras & Optics > Photography > Lighting & Studio'),(1475,1296,0,'Cameras & Optics > Photography > Lighting & Studio > Light Meter Accessories'),(1476,1297,0,'Cameras & Optics > Photography > Lighting & Studio > Light Meters'),(1477,1298,0,'Cameras & Optics > Photography > Lighting & Studio > Studio Backgrounds'),(1478,1299,0,'Cameras & Optics > Photography > Lighting & Studio > Studio Light & Flash Accessories'),(1479,1300,0,'Cameras & Optics > Photography > Lighting & Studio > Studio Lighting Controls'),(1480,1301,0,'Cameras & Optics > Photography > Lighting & Studio > Studio Lighting Controls > Flash Diffusers'),(1481,1302,0,'Cameras & Optics > Photography > Lighting & Studio > Studio Lighting Controls > Flash Reflectors'),(1482,1303,0,'Cameras & Optics > Photography > Lighting & Studio > Studio Lighting Controls > Lighting Filters & Gobos'),(1483,1304,0,'Cameras & Optics > Photography > Lighting & Studio > Studio Lighting Controls > Softboxes'),(1484,1305,0,'Cameras & Optics > Photography > Lighting & Studio > Studio Lights & Flashes'),(1485,1306,0,'Cameras & Optics > Photography > Lighting & Studio > Studio Stand & Mount Accessories'),(1486,1307,0,'Cameras & Optics > Photography > Lighting & Studio > Studio Stands & Mounts'),(1487,1308,0,'Cameras & Optics > Photography > Photo Mounting Supplies'),(1488,1309,0,'Cameras & Optics > Photography > Photo Negative & Slide Storage'),(1489,1310,0,'Electronics'),(1490,1311,0,'Electronics > Arcade Equipment'),(1491,1312,0,'Electronics > Arcade Equipment > Basketball Arcade Games'),(1492,1313,0,'Electronics > Arcade Equipment > Pinball Machine Accessories'),(1493,1314,0,'Electronics > Arcade Equipment > Pinball Machines'),(1494,1315,0,'Electronics > Arcade Equipment > Skee-Ball Machines'),(1495,1316,0,'Electronics > Arcade Equipment > Video Game Arcade Cabinet Accessories'),(1496,1317,0,'Electronics > Arcade Equipment > Video Game Arcade Cabinets'),(1497,1318,0,'Electronics > Audio'),(1498,1319,0,'Electronics > Audio > Audio Accessories'),(1499,1320,0,'Electronics > Audio > Audio Accessories > Audio & Video Receiver Accessories'),(1500,1321,0,'Electronics > Audio > Audio Accessories > Headphone & Headset Accessories'),(1501,1322,0,'Electronics > Audio > Audio Accessories > Headphone & Headset Accessories > Headphone Cushions & Tips'),(1502,1323,0,'Electronics > Audio > Audio Accessories > Karaoke System Accessories'),(1503,1324,0,'Electronics > Audio > Audio Accessories > Karaoke System Accessories > Karaoke Chips'),(1504,1325,0,'Electronics > Audio > Audio Accessories > MP3 Player Accessories'),(1505,1326,0,'Electronics > Audio > Audio Accessories > MP3 Player Accessories > MP3 Player & Mobile Phone Accessory Sets'),(1506,1327,0,'Electronics > Audio > Audio Accessories > MP3 Player Accessories > MP3 Player Cases'),(1507,1328,0,'Electronics > Audio > Audio Accessories > Microphone Accessories'),(1508,1329,0,'Electronics > Audio > Audio Accessories > Microphone Stands'),(1509,1330,0,'Electronics > Audio > Audio Accessories > Satellite Radio Accessories'),(1510,1331,0,'Electronics > Audio > Audio Accessories > Speaker Accessories'),(1511,1332,0,'Electronics > Audio > Audio Accessories > Speaker Accessories > Speaker Bags, Covers & Cases'),(1512,1333,0,'Electronics > Audio > Audio Accessories > Speaker Accessories > Speaker Components & Kits'),(1513,1334,0,'Electronics > Audio > Audio Accessories > Speaker Accessories > Speaker Stand Bags'),(1514,1335,0,'Electronics > Audio > Audio Accessories > Speaker Accessories > Speaker Stands & Mounts'),(1515,1336,0,'Electronics > Audio > Audio Accessories > Speaker Accessories > Tactile Transducers'),(1516,1337,0,'Electronics > Audio > Audio Accessories > Turntable Accessories'),(1517,1338,0,'Electronics > Audio > Audio Components'),(1518,1339,0,'Electronics > Audio > Audio Components > Audio & Video Receivers'),(1519,1340,0,'Electronics > Audio > Audio Components > Audio Amplifiers'),(1520,1341,0,'Electronics > Audio > Audio Components > Audio Amplifiers > Headphone Amplifiers'),(1521,1342,0,'Electronics > Audio > Audio Components > Audio Amplifiers > Power Amplifiers'),(1522,1343,0,'Electronics > Audio > Audio Components > Audio Mixers'),(1523,1344,0,'Electronics > Audio > Audio Components > Audio Transmitters'),(1524,1345,0,'Electronics > Audio > Audio Components > Audio Transmitters > Bluetooth Transmitters'),(1525,1346,0,'Electronics > Audio > Audio Components > Audio Transmitters > FM Transmitters'),(1526,1347,0,'Electronics > Audio > Audio Components > Channel Strips'),(1527,1348,0,'Electronics > Audio > Audio Components > Direct Boxes'),(1528,1349,0,'Electronics > Audio > Audio Components > Headphones & Headsets'),(1529,1350,0,'Electronics > Audio > Audio Components > Microphones'),(1530,1351,0,'Electronics > Audio > Audio Components > Signal Processors'),(1531,1352,0,'Electronics > Audio > Audio Components > Signal Processors > Crossovers'),(1532,1353,0,'Electronics > Audio > Audio Components > Signal Processors > Effects Processors'),(1533,1354,0,'Electronics > Audio > Audio Components > Signal Processors > Equalizers'),(1534,1355,0,'Electronics > Audio > Audio Components > Signal Processors > Loudspeaker Management Systems'),(1535,1356,0,'Electronics > Audio > Audio Components > Signal Processors > Microphone Preamps'),(1536,1357,0,'Electronics > Audio > Audio Components > Signal Processors > Noise Gates & Compressors'),(1537,1358,0,'Electronics > Audio > Audio Components > Signal Processors > Phono Preamps'),(1538,1359,0,'Electronics > Audio > Audio Components > Speakers'),(1539,1360,0,'Electronics > Audio > Audio Components > Studio Recording Bundles'),(1540,1361,0,'Electronics > Audio > Audio Players & Recorders'),(1541,1362,0,'Electronics > Audio > Audio Players & Recorders > Boomboxes'),(1542,1363,0,'Electronics > Audio > Audio Players & Recorders > CD Players & Recorders'),(1543,1364,0,'Electronics > Audio > Audio Players & Recorders > Cassette Players & Recorders'),(1544,1365,0,'Electronics > Audio > Audio Players & Recorders > Home Theater Systems'),(1545,1366,0,'Electronics > Audio > Audio Players & Recorders > Jukeboxes'),(1546,1367,0,'Electronics > Audio > Audio Players & Recorders > Karaoke Systems'),(1547,1368,0,'Electronics > Audio > Audio Players & Recorders > MP3 Players'),(1548,1369,0,'Electronics > Audio > Audio Players & Recorders > MiniDisc Players & Recorders'),(1549,1370,0,'Electronics > Audio > Audio Players & Recorders > Multitrack Recorders'),(1550,1371,0,'Electronics > Audio > Audio Players & Recorders > Radios'),(1551,1372,0,'Electronics > Audio > Audio Players & Recorders > Reel-to-Reel Tape Players & Recorders'),(1552,1373,0,'Electronics > Audio > Audio Players & Recorders > Stereo Systems'),(1553,1374,0,'Electronics > Audio > Audio Players & Recorders > Turntables & Record Players'),(1554,1375,0,'Electronics > Audio > Audio Players & Recorders > Voice Recorders'),(1555,1376,0,'Electronics > Audio > Bullhorns'),(1556,1377,0,'Electronics > Audio > DJ & Specialty Audio'),(1557,1378,0,'Electronics > Audio > DJ & Specialty Audio > DJ CD Players'),(1558,1379,0,'Electronics > Audio > DJ & Specialty Audio > DJ Systems'),(1559,1380,0,'Electronics > Audio > Public Address Systems'),(1560,1381,0,'Electronics > Audio > Stage Equipment'),(1561,1382,0,'Electronics > Audio > Stage Equipment > Wireless Transmitters'),(1562,1383,0,'Electronics > Circuit Boards & Components'),(1563,1384,0,'Electronics > Circuit Boards & Components > Circuit Board Accessories'),(1564,1385,0,'Electronics > Circuit Boards & Components > Circuit Decoders & Encoders'),(1565,1386,0,'Electronics > Circuit Boards & Components > Circuit Prototyping'),(1566,1387,0,'Electronics > Circuit Boards & Components > Circuit Prototyping > Breadboards'),(1567,1388,0,'Electronics > Circuit Boards & Components > Electronic Filters'),(1568,1389,0,'Electronics > Circuit Boards & Components > Passive Circuit Components'),(1569,1390,0,'Electronics > Circuit Boards & Components > Passive Circuit Components > Capacitors'),(1570,1391,0,'Electronics > Circuit Boards & Components > Passive Circuit Components > Electronic Oscillators'),(1571,1392,0,'Electronics > Circuit Boards & Components > Passive Circuit Components > Inductors'),(1572,1393,0,'Electronics > Circuit Boards & Components > Passive Circuit Components > Resistors'),(1573,1394,0,'Electronics > Circuit Boards & Components > Printed Circuit Boards'),(1574,1395,0,'Electronics > Circuit Boards & Components > Printed Circuit Boards > Camera Circuit Boards'),(1575,1396,0,'Electronics > Circuit Boards & Components > Printed Circuit Boards > Computer Circuit Boards'),(1576,1397,0,'Electronics > Circuit Boards & Components > Printed Circuit Boards > Computer Circuit Boards > Computer Inverter Boards'),(1577,1398,0,'Electronics > Circuit Boards & Components > Printed Circuit Boards > Computer Circuit Boards > Hard Drive Circuit Boards'),(1578,1399,0,'Electronics > Circuit Boards & Components > Printed Circuit Boards > Computer Circuit Boards > Motherboards'),(1579,1400,0,'Electronics > Circuit Boards & Components > Printed Circuit Boards > Development Boards'),(1580,1401,0,'Electronics > Circuit Boards & Components > Printed Circuit Boards > Exercise Machine Circuit Boards'),(1581,1402,0,'Electronics > Circuit Boards & Components > Printed Circuit Boards > Household Appliance Circuit Boards'),(1582,1403,0,'Electronics > Circuit Boards & Components > Printed Circuit Boards > Pool & Spa Circuit Boards'),(1583,1404,0,'Electronics > Circuit Boards & Components > Printed Circuit Boards > Printer, Copier, & Fax Machine Circuit Boards'),(1584,1405,0,'Electronics > Circuit Boards & Components > Printed Circuit Boards > Scanner Circuit Boards'),(1585,1406,0,'Electronics > Circuit Boards & Components > Printed Circuit Boards > Television Circuit Boards'),(1586,1407,0,'Electronics > Circuit Boards & Components > Semiconductors'),(1587,1408,0,'Electronics > Circuit Boards & Components > Semiconductors > Diodes'),(1588,1409,0,'Electronics > Circuit Boards & Components > Semiconductors > Integrated Circuits & Chips'),(1589,1410,0,'Electronics > Circuit Boards & Components > Semiconductors > Microcontrollers'),(1590,1411,0,'Electronics > Circuit Boards & Components > Semiconductors > Transistors'),(1591,1412,0,'Electronics > Communications'),(1592,1413,0,'Electronics > Communications > Answering Machines'),(1593,1414,0,'Electronics > Communications > Caller IDs'),(1594,1415,0,'Electronics > Communications > Communication Radio Accessories'),(1595,1416,0,'Electronics > Communications > Communication Radios'),(1596,1417,0,'Electronics > Communications > Communication Radios > CB Radios'),(1597,1418,0,'Electronics > Communications > Communication Radios > Radio Scanners'),(1598,1419,0,'Electronics > Communications > Communication Radios > Two-Way Radios'),(1599,1420,0,'Electronics > Communications > Intercom Accessories'),(1600,1421,0,'Electronics > Communications > Intercoms'),(1601,1422,0,'Electronics > Communications > Pagers'),(1602,1423,0,'Electronics > Communications > Telephony'),(1603,1424,0,'Electronics > Communications > Telephony > Conference Phones'),(1604,1425,0,'Electronics > Communications > Telephony > Corded Phones'),(1605,1426,0,'Electronics > Communications > Telephony > Cordless Phones'),(1606,1427,0,'Electronics > Communications > Telephony > Mobile Phone Accessories'),(1607,1428,0,'Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Camera Accessories'),(1608,1429,0,'Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Cases'),(1609,1430,0,'Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Charms & Straps'),(1610,1431,0,'Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Pre-Paid Cards & SIM Cards'),(1611,1432,0,'Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Replacement Parts'),(1612,1433,0,'Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Stands'),(1613,1434,0,'Electronics > Communications > Telephony > Mobile Phone Accessories > SIM Card Ejection Tools'),(1614,1435,0,'Electronics > Communications > Telephony > Mobile Phones'),(1615,1436,0,'Electronics > Communications > Telephony > Satellite Phones'),(1616,1437,0,'Electronics > Communications > Telephony > Telephone Accessories'),(1617,1438,0,'Electronics > Communications > Telephony > Telephone Accessories > Phone Cards'),(1618,1439,0,'Electronics > Communications > Video Conferencing'),(1619,1440,0,'Electronics > Components'),(1620,1441,0,'Electronics > Components > Accelerometers'),(1621,1442,0,'Electronics > Components > Converters'),(1622,1443,0,'Electronics > Components > Converters > Audio Converters'),(1623,1444,0,'Electronics > Components > Converters > Scan Converters'),(1624,1445,0,'Electronics > Components > Electronics Component Connectors'),(1625,1446,0,'Electronics > Components > Modulators'),(1626,1447,0,'Electronics > Components > Splitters'),(1627,1448,0,'Electronics > Computers'),(1628,1449,0,'Electronics > Computers > Barebone Computers'),(1629,1450,0,'Electronics > Computers > Computer Servers'),(1630,1451,0,'Electronics > Computers > Desktop Computers'),(1631,1452,0,'Electronics > Computers > Handheld Devices'),(1632,1453,0,'Electronics > Computers > Handheld Devices > Data Collectors'),(1633,1454,0,'Electronics > Computers > Handheld Devices > E-Book Readers'),(1634,1455,0,'Electronics > Computers > Handheld Devices > PDAs'),(1635,1456,0,'Electronics > Computers > Interactive Kiosks'),(1636,1457,0,'Electronics > Computers > Laptops'),(1637,1458,0,'Electronics > Computers > Smart Glasses'),(1638,1459,0,'Electronics > Computers > Tablet Computers'),(1639,1460,0,'Electronics > Computers > Thin & Zero Clients'),(1640,1461,0,'Electronics > Computers > Touch Table Computers'),(1641,1462,0,'Electronics > Electronics Accessories'),(1642,1463,0,'Electronics > Electronics Accessories > Adapters'),(1643,1464,0,'Electronics > Electronics Accessories > Adapters > Audio & Video Cable Adapters & Couplers'),(1644,1465,0,'Electronics > Electronics Accessories > Adapters > Memory Card Adapters'),(1645,1466,0,'Electronics > Electronics Accessories > Adapters > USB Adapters'),(1646,1467,0,'Electronics > Electronics Accessories > Antenna Accessories'),(1647,1468,0,'Electronics > Electronics Accessories > Antenna Accessories > Antenna Mounts & Brackets'),(1648,1469,0,'Electronics > Electronics Accessories > Antenna Accessories > Antenna Rotators'),(1649,1470,0,'Electronics > Electronics Accessories > Antenna Accessories > Satellite LNBs'),(1650,1471,0,'Electronics > Electronics Accessories > Antennas'),(1651,1472,0,'Electronics > Electronics Accessories > Audio & Video Splitters & Switches'),(1652,1473,0,'Electronics > Electronics Accessories > Audio & Video Splitters & Switches > DVI Splitters & Switches'),(1653,1474,0,'Electronics > Electronics Accessories > Audio & Video Splitters & Switches > HDMI Splitters & Switches'),(1654,1475,0,'Electronics > Electronics Accessories > Audio & Video Splitters & Switches > VGA Splitters & Switches'),(1655,1476,0,'Electronics > Electronics Accessories > Blank Media'),(1656,1477,0,'Electronics > Electronics Accessories > Cable Management'),(1657,1478,0,'Electronics > Electronics Accessories > Cable Management > Cable Clips'),(1658,1479,0,'Electronics > Electronics Accessories > Cable Management > Cable Tie Guns'),(1659,1480,0,'Electronics > Electronics Accessories > Cable Management > Cable Trays'),(1660,1481,0,'Electronics > Electronics Accessories > Cable Management > Patch Panels'),(1661,1482,0,'Electronics > Electronics Accessories > Cable Management > Wire & Cable Identification Markers'),(1662,1483,0,'Electronics > Electronics Accessories > Cable Management > Wire & Cable Sleeves'),(1663,1484,0,'Electronics > Electronics Accessories > Cable Management > Wire & Cable Ties'),(1664,1485,0,'Electronics > Electronics Accessories > Cables'),(1665,1486,0,'Electronics > Electronics Accessories > Cables > Audio & Video Cables'),(1666,1487,0,'Electronics > Electronics Accessories > Cables > KVM Cables'),(1667,1488,0,'Electronics > Electronics Accessories > Cables > Network Cables'),(1668,1489,0,'Electronics > Electronics Accessories > Cables > Storage & Data Transfer Cables'),(1669,1490,0,'Electronics > Electronics Accessories > Cables > System & Power Cables'),(1670,1491,0,'Electronics > Electronics Accessories > Cables > Telephone Cables'),(1671,1492,0,'Electronics > Electronics Accessories > Computer Accessories'),(1672,1493,0,'Electronics > Electronics Accessories > Computer Accessories > Computer Accessory Sets'),(1673,1494,0,'Electronics > Electronics Accessories > Computer Accessories > Computer Covers & Skins'),(1674,1495,0,'Electronics > Electronics Accessories > Computer Accessories > Computer Risers & Stands'),(1675,1496,0,'Electronics > Electronics Accessories > Computer Accessories > Handheld Device Accessories'),(1676,1497,0,'Electronics > Electronics Accessories > Computer Accessories > Handheld Device Accessories > E-Book Reader Accessories'),(1677,1498,0,'Electronics > Electronics Accessories > Computer Accessories > Handheld Device Accessories > E-Book Reader Accessories > E-Book Reader Cases'),(1678,1499,0,'Electronics > Electronics Accessories > Computer Accessories > Handheld Device Accessories > PDA Accessories'),(1679,1500,0,'Electronics > Electronics Accessories > Computer Accessories > Handheld Device Accessories > PDA Accessories > PDA Cases'),(1680,1501,0,'Electronics > Electronics Accessories > Computer Accessories > Keyboard & Mouse Wrist Rests'),(1681,1502,0,'Electronics > Electronics Accessories > Computer Accessories > Keyboard Trays & Platforms'),(1682,1503,0,'Electronics > Electronics Accessories > Computer Accessories > Laptop Docking Stations'),(1683,1504,0,'Electronics > Electronics Accessories > Computer Accessories > Mouse Pads'),(1684,1505,0,'Electronics > Electronics Accessories > Computer Accessories > Stylus Pen Nibs & Refills'),(1685,1506,0,'Electronics > Electronics Accessories > Computer Accessories > Stylus Pens'),(1686,1507,0,'Electronics > Electronics Accessories > Computer Accessories > Tablet Computer Docks & Stands'),(1687,1508,0,'Electronics > Electronics Accessories > Computer Components'),(1688,1509,0,'Electronics > Electronics Accessories > Computer Components > Blade Server Enclosures'),(1689,1510,0,'Electronics > Electronics Accessories > Computer Components > Computer Backplates & I/O Shields'),(1690,1511,0,'Electronics > Electronics Accessories > Computer Components > Computer Power Supplies'),(1691,1512,0,'Electronics > Electronics Accessories > Computer Components > Computer Processors'),(1692,1513,0,'Electronics > Electronics Accessories > Computer Components > Computer Racks & Mounts'),(1693,1514,0,'Electronics > Electronics Accessories > Computer Components > Computer Starter Kits'),(1694,1515,0,'Electronics > Electronics Accessories > Computer Components > Computer System Cooling Parts'),(1695,1516,0,'Electronics > Electronics Accessories > Computer Components > Desktop Computer & Server Cases'),(1696,1517,0,'Electronics > Electronics Accessories > Computer Components > E-Book Reader Parts'),(1697,1518,0,'Electronics > Electronics Accessories > Computer Components > E-Book Reader Parts > E-Book Reader Screens & Screen Digitizers'),(1698,1519,0,'Electronics > Electronics Accessories > Computer Components > I/O Cards & Adapters'),(1699,1520,0,'Electronics > Electronics Accessories > Computer Components > I/O Cards & Adapters > Audio Cards & Adapters'),(1700,1521,0,'Electronics > Electronics Accessories > Computer Components > I/O Cards & Adapters > Computer Interface Cards & Adapters'),(1701,1522,0,'Electronics > Electronics Accessories > Computer Components > I/O Cards & Adapters > Riser Cards'),(1702,1523,0,'Electronics > Electronics Accessories > Computer Components > I/O Cards & Adapters > TV Tuner Cards & Adapters'),(1703,1524,0,'Electronics > Electronics Accessories > Computer Components > I/O Cards & Adapters > Video Cards & Adapters'),(1704,1525,0,'Electronics > Electronics Accessories > Computer Components > Input Device Accessories'),(1705,1526,0,'Electronics > Electronics Accessories > Computer Components > Input Device Accessories > Barcode Scanner Stands'),(1706,1527,0,'Electronics > Electronics Accessories > Computer Components > Input Device Accessories > Game Controller Accessories'),(1707,1528,0,'Electronics > Electronics Accessories > Computer Components > Input Device Accessories > Keyboard Keys & Caps'),(1708,1529,0,'Electronics > Electronics Accessories > Computer Components > Input Device Accessories > Mice & Trackball Accessories'),(1709,1530,0,'Electronics > Electronics Accessories > Computer Components > Input Devices'),(1710,1531,0,'Electronics > Electronics Accessories > Computer Components > Input Devices > Barcode Scanners'),(1711,1532,0,'Electronics > Electronics Accessories > Computer Components > Input Devices > Digital Note Taking Pens'),(1712,1533,0,'Electronics > Electronics Accessories > Computer Components > Input Devices > Electronic Card Readers'),(1713,1534,0,'Electronics > Electronics Accessories > Computer Components > Input Devices > Fingerprint Readers'),(1714,1535,0,'Electronics > Electronics Accessories > Computer Components > Input Devices > Game Controllers'),(1715,1536,0,'Electronics > Electronics Accessories > Computer Components > Input Devices > Gesture Control Input Devices'),(1716,1537,0,'Electronics > Electronics Accessories > Computer Components > Input Devices > Graphics Tablets'),(1717,1538,0,'Electronics > Electronics Accessories > Computer Components > Input Devices > KVM Switches'),(1718,1539,0,'Electronics > Electronics Accessories > Computer Components > Input Devices > Keyboards'),(1719,1540,0,'Electronics > Electronics Accessories > Computer Components > Input Devices > Memory Card Readers'),(1720,1541,0,'Electronics > Electronics Accessories > Computer Components > Input Devices > Mice & Trackballs'),(1721,1542,0,'Electronics > Electronics Accessories > Computer Components > Input Devices > Numeric Keypads'),(1722,1543,0,'Electronics > Electronics Accessories > Computer Components > Input Devices > Touchpads'),(1723,1544,0,'Electronics > Electronics Accessories > Computer Components > Laptop Parts'),(1724,1545,0,'Electronics > Electronics Accessories > Computer Components > Laptop Parts > Laptop Hinges'),(1725,1546,0,'Electronics > Electronics Accessories > Computer Components > Laptop Parts > Laptop Housings & Trim'),(1726,1547,0,'Electronics > Electronics Accessories > Computer Components > Laptop Parts > Laptop Replacement Cables'),(1727,1548,0,'Electronics > Electronics Accessories > Computer Components > Laptop Parts > Laptop Replacement Keyboards'),(1728,1549,0,'Electronics > Electronics Accessories > Computer Components > Laptop Parts > Laptop Replacement Screens'),(1729,1550,0,'Electronics > Electronics Accessories > Computer Components > Laptop Parts > Laptop Replacement Speakers'),(1730,1551,0,'Electronics > Electronics Accessories > Computer Components > Laptop Parts > Laptop Screen Digitizers'),(1731,1552,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices'),(1732,1553,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices > Disk Duplicators'),(1733,1554,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices > Disk Duplicators > CD/DVD Duplicators'),(1734,1555,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices > Disk Duplicators > Hard Drive Duplicators'),(1735,1556,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices > Disk Duplicators > USB Drive Duplicators'),(1736,1557,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices > Floppy Drives'),(1737,1558,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices > Hard Drive Accessories'),(1738,1559,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices > Hard Drive Accessories > Hard Drive Carrying Cases'),(1739,1560,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices > Hard Drive Accessories > Hard Drive Docks'),(1740,1561,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices > Hard Drive Accessories > Hard Drive Enclosures & Mounts'),(1741,1562,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices > Hard Drive Arrays'),(1742,1563,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices > Hard Drives'),(1743,1564,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices > Network Storage Systems'),(1744,1565,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices > Optical Drives'),(1745,1566,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices > Tape Drives'),(1746,1567,0,'Electronics > Electronics Accessories > Computer Components > Storage Devices > USB Flash Drives'),(1747,1568,0,'Electronics > Electronics Accessories > Computer Components > Tablet Computer Parts'),(1748,1569,0,'Electronics > Electronics Accessories > Computer Components > Tablet Computer Parts > Tablet Computer Housings & Trim'),(1749,1570,0,'Electronics > Electronics Accessories > Computer Components > Tablet Computer Parts > Tablet Computer Replacement Speakers'),(1750,1571,0,'Electronics > Electronics Accessories > Computer Components > Tablet Computer Parts > Tablet Computer Screens & Screen Digitizers'),(1751,1572,0,'Electronics > Electronics Accessories > Computer Components > USB & FireWire Hubs'),(1752,1573,0,'Electronics > Electronics Accessories > Electronics Cleaners'),(1753,1574,0,'Electronics > Electronics Accessories > Electronics Films & Shields'),(1754,1575,0,'Electronics > Electronics Accessories > Electronics Films & Shields > Electronics Stickers & Decals'),(1755,1576,0,'Electronics > Electronics Accessories > Electronics Films & Shields > Keyboard Protectors'),(1756,1577,0,'Electronics > Electronics Accessories > Electronics Films & Shields > Privacy Filters'),(1757,1578,0,'Electronics > Electronics Accessories > Electronics Films & Shields > Screen Protectors'),(1758,1579,0,'Electronics > Electronics Accessories > Memory'),(1759,1580,0,'Electronics > Electronics Accessories > Memory > Cache Memory'),(1760,1581,0,'Electronics > Electronics Accessories > Memory > Flash Memory'),(1761,1582,0,'Electronics > Electronics Accessories > Memory > Flash Memory > Flash Memory Cards'),(1762,1583,0,'Electronics > Electronics Accessories > Memory > RAM'),(1763,1584,0,'Electronics > Electronics Accessories > Memory > ROM'),(1764,1585,0,'Electronics > Electronics Accessories > Memory > Video Memory'),(1765,1586,0,'Electronics > Electronics Accessories > Memory Accessories'),(1766,1587,0,'Electronics > Electronics Accessories > Memory Accessories > Memory Cases'),(1767,1588,0,'Electronics > Electronics Accessories > Mobile Phone & Tablet Tripods & Monopods'),(1768,1589,0,'Electronics > Electronics Accessories > Power'),(1769,1590,0,'Electronics > Electronics Accessories > Power > Batteries'),(1770,1591,0,'Electronics > Electronics Accessories > Power > Batteries > Camera Batteries'),(1771,1592,0,'Electronics > Electronics Accessories > Power > Batteries > Cordless Phone Batteries'),(1772,1593,0,'Electronics > Electronics Accessories > Power > Batteries > E-Book Reader Batteries'),(1773,1594,0,'Electronics > Electronics Accessories > Power > Batteries > General Purpose Batteries'),(1774,1595,0,'Electronics > Electronics Accessories > Power > Batteries > Laptop Batteries'),(1775,1596,0,'Electronics > Electronics Accessories > Power > Batteries > MP3 Player Batteries'),(1776,1597,0,'Electronics > Electronics Accessories > Power > Batteries > Mobile Phone Batteries'),(1777,1598,0,'Electronics > Electronics Accessories > Power > Batteries > PDA Batteries'),(1778,1599,0,'Electronics > Electronics Accessories > Power > Batteries > Tablet Computer Batteries'),(1779,1600,0,'Electronics > Electronics Accessories > Power > Batteries > UPS Batteries'),(1780,1601,0,'Electronics > Electronics Accessories > Power > Batteries > Video Camera Batteries'),(1781,1602,0,'Electronics > Electronics Accessories > Power > Batteries > Video Game Console & Controller Batteries'),(1782,1603,0,'Electronics > Electronics Accessories > Power > Battery Accessories'),(1783,1604,0,'Electronics > Electronics Accessories > Power > Battery Accessories > Battery Charge Controllers'),(1784,1605,0,'Electronics > Electronics Accessories > Power > Battery Accessories > Battery Holders'),(1785,1606,0,'Electronics > Electronics Accessories > Power > Battery Accessories > Camera Battery Chargers'),(1786,1607,0,'Electronics > Electronics Accessories > Power > Battery Accessories > General Purpose Battery Chargers'),(1787,1608,0,'Electronics > Electronics Accessories > Power > Battery Accessories > General Purpose Battery Testers'),(1788,1609,0,'Electronics > Electronics Accessories > Power > Fuel Cells'),(1789,1610,0,'Electronics > Electronics Accessories > Power > Power Adapter & Charger Accessories'),(1790,1611,0,'Electronics > Electronics Accessories > Power > Power Adapters & Chargers'),(1791,1612,0,'Electronics > Electronics Accessories > Power > Power Control Units'),(1792,1613,0,'Electronics > Electronics Accessories > Power > Power Strips & Surge Suppressors'),(1793,1614,0,'Electronics > Electronics Accessories > Power > Power Supply Enclosures'),(1794,1615,0,'Electronics > Electronics Accessories > Power > Surge Protection Devices'),(1795,1616,0,'Electronics > Electronics Accessories > Power > Travel Converters & Adapters'),(1796,1617,0,'Electronics > Electronics Accessories > Power > UPS'),(1797,1618,0,'Electronics > Electronics Accessories > Power > UPS Accessories'),(1798,1619,0,'Electronics > Electronics Accessories > Remote Controls'),(1799,1620,0,'Electronics > Electronics Accessories > Signal Boosters'),(1800,1621,0,'Electronics > Electronics Accessories > Signal Jammers'),(1801,1622,0,'Electronics > Electronics Accessories > Signal Jammers > GPS Jammers'),(1802,1623,0,'Electronics > Electronics Accessories > Signal Jammers > Mobile Phone Jammers'),(1803,1624,0,'Electronics > Electronics Accessories > Signal Jammers > Radar Jammers'),(1804,1625,0,'Electronics > GPS Accessories'),(1805,1626,0,'Electronics > GPS Accessories > GPS Cases'),(1806,1627,0,'Electronics > GPS Accessories > GPS Mounts'),(1807,1628,0,'Electronics > GPS Navigation Systems'),(1808,1629,0,'Electronics > GPS Tracking Devices'),(1809,1630,0,'Electronics > Marine Electronics'),(1810,1631,0,'Electronics > Marine Electronics > Fish Finders'),(1811,1632,0,'Electronics > Marine Electronics > Marine Audio & Video Receivers'),(1812,1633,0,'Electronics > Marine Electronics > Marine Chartplotters & GPS'),(1813,1634,0,'Electronics > Marine Electronics > Marine Radar'),(1814,1635,0,'Electronics > Marine Electronics > Marine Radios'),(1815,1636,0,'Electronics > Marine Electronics > Marine Speakers'),(1816,1637,0,'Electronics > Networking'),(1817,1638,0,'Electronics > Networking > Bridges & Routers'),(1818,1639,0,'Electronics > Networking > Bridges & Routers > Network Bridges'),(1819,1640,0,'Electronics > Networking > Bridges & Routers > VoIP Gateways & Routers'),(1820,1641,0,'Electronics > Networking > Bridges & Routers > Wireless Access Points'),(1821,1642,0,'Electronics > Networking > Bridges & Routers > Wireless Routers'),(1822,1643,0,'Electronics > Networking > Concentrators & Multiplexers'),(1823,1644,0,'Electronics > Networking > Hubs & Switches'),(1824,1645,0,'Electronics > Networking > Modem Accessories'),(1825,1646,0,'Electronics > Networking > Modems'),(1826,1647,0,'Electronics > Networking > Network Cards & Adapters'),(1827,1648,0,'Electronics > Networking > Network Security & Firewall Devices'),(1828,1649,0,'Electronics > Networking > Power Over Ethernet Adapters'),(1829,1650,0,'Electronics > Networking > Print Servers'),(1830,1651,0,'Electronics > Networking > Repeaters & Transceivers'),(1831,1652,0,'Electronics > Print, Copy, Scan & Fax'),(1832,1653,0,'Electronics > Print, Copy, Scan & Fax > 3D Printer Accessories'),(1833,1654,0,'Electronics > Print, Copy, Scan & Fax > 3D Printers'),(1834,1655,0,'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories'),(1835,1656,0,'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables'),(1836,1657,0,'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables > Printer Drums & Drum Kits'),(1837,1658,0,'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables > Printer Filters'),(1838,1659,0,'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables > Printer Maintenance Kits'),(1839,1660,0,'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables > Printer Ribbons'),(1840,1661,0,'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables > Printheads'),(1841,1662,0,'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables > Toner & Inkjet Cartridge Refills'),(1842,1663,0,'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Consumables > Toner & Inkjet Cartridges'),(1843,1664,0,'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Duplexers'),(1844,1665,0,'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Memory'),(1845,1666,0,'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer Stands'),(1846,1667,0,'Electronics > Print, Copy, Scan & Fax > Printer, Copier & Fax Machine Accessories > Printer, Copier & Fax Machine Replacement Parts'),(1847,1668,0,'Electronics > Print, Copy, Scan & Fax > Printers, Copiers & Fax Machines'),(1848,1669,0,'Electronics > Print, Copy, Scan & Fax > Scanner Accessories'),(1849,1670,0,'Electronics > Print, Copy, Scan & Fax > Scanners'),(1850,1671,0,'Electronics > Radar Detectors'),(1851,1672,0,'Electronics > Speed Radars'),(1852,1673,0,'Electronics > Toll Collection Devices'),(1853,1674,0,'Electronics > Video'),(1854,1675,0,'Electronics > Video > Computer Monitors'),(1855,1676,0,'Electronics > Video > Projectors'),(1856,1677,0,'Electronics > Video > Projectors > Multimedia Projectors'),(1857,1678,0,'Electronics > Video > Projectors > Overhead Projectors'),(1858,1679,0,'Electronics > Video > Projectors > Slide Projectors'),(1859,1680,0,'Electronics > Video > Satellite & Cable TV'),(1860,1681,0,'Electronics > Video > Satellite & Cable TV > Cable TV Receivers'),(1861,1682,0,'Electronics > Video > Satellite & Cable TV > Satellite Receivers'),(1862,1683,0,'Electronics > Video > Televisions'),(1863,1684,0,'Electronics > Video > Video Accessories'),(1864,1685,0,'Electronics > Video > Video Accessories > 3D Glasses'),(1865,1686,0,'Electronics > Video > Video Accessories > Computer Monitor Accessories'),(1866,1687,0,'Electronics > Video > Video Accessories > Computer Monitor Accessories > Color Calibrators'),(1867,1688,0,'Electronics > Video > Video Accessories > Projector Accessories'),(1868,1689,0,'Electronics > Video > Video Accessories > Projector Accessories > Projection & Tripod Skirts'),(1869,1690,0,'Electronics > Video > Video Accessories > Projector Accessories > Projection Screen Stands'),(1870,1691,0,'Electronics > Video > Video Accessories > Projector Accessories > Projection Screens'),(1871,1692,0,'Electronics > Video > Video Accessories > Projector Accessories > Projector Mounts'),(1872,1693,0,'Electronics > Video > Video Accessories > Projector Accessories > Projector Replacement Lamps'),(1873,1694,0,'Electronics > Video > Video Accessories > Rewinders'),(1874,1695,0,'Electronics > Video > Video Accessories > Television Parts & Accessories'),(1875,1696,0,'Electronics > Video > Video Accessories > Television Parts & Accessories > TV & Monitor Mounts'),(1876,1697,0,'Electronics > Video > Video Accessories > Television Parts & Accessories > TV Converter Boxes'),(1877,1698,0,'Electronics > Video > Video Accessories > Television Parts & Accessories > TV Replacement Lamps'),(1878,1699,0,'Electronics > Video > Video Accessories > Television Parts & Accessories > TV Replacement Speakers'),(1879,1700,0,'Electronics > Video > Video Editing Hardware & Production Equipment'),(1880,1701,0,'Electronics > Video > Video Multiplexers'),(1881,1702,0,'Electronics > Video > Video Players & Recorders'),(1882,1703,0,'Electronics > Video > Video Players & Recorders > DVD & Blu-ray Players'),(1883,1704,0,'Electronics > Video > Video Players & Recorders > DVD Recorders'),(1884,1705,0,'Electronics > Video > Video Players & Recorders > Digital Video Recorders'),(1885,1706,0,'Electronics > Video > Video Players & Recorders > Streaming & Home Media Players'),(1886,1707,0,'Electronics > Video > Video Players & Recorders > VCRs'),(1887,1708,0,'Electronics > Video > Video Servers'),(1888,1709,0,'Electronics > Video > Video Transmitters'),(1889,1710,0,'Electronics > Video Game Console Accessories'),(1890,1711,0,'Electronics > Video Game Console Accessories > Home Game Console Accessories'),(1891,1712,0,'Electronics > Video Game Console Accessories > Portable Game Console Accessories'),(1892,1713,0,'Electronics > Video Game Consoles'),(1893,1714,0,'Food, Beverages & Tobacco'),(1894,1715,0,'Food, Beverages & Tobacco > Beverages'),(1895,1716,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages'),(1896,1717,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Beer'),(1897,1718,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Bitters'),(1898,1719,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Cocktail Mixes'),(1899,1720,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Flavored Alcoholic Beverages'),(1900,1721,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Hard Cider'),(1901,1722,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits'),(1902,1723,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Absinthe'),(1903,1724,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Brandy'),(1904,1725,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Gin'),(1905,1726,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Liqueurs'),(1906,1727,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Rum'),(1907,1728,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Shochu & Soju'),(1908,1729,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Tequila'),(1909,1730,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Vodka'),(1910,1731,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Liquor & Spirits > Whiskey'),(1911,1732,0,'Food, Beverages & Tobacco > Beverages > Alcoholic Beverages > Wine'),(1912,1733,0,'Food, Beverages & Tobacco > Beverages > Buttermilk'),(1913,1734,0,'Food, Beverages & Tobacco > Beverages > Coffee'),(1914,1735,0,'Food, Beverages & Tobacco > Beverages > Eggnog'),(1915,1736,0,'Food, Beverages & Tobacco > Beverages > Fruit Flavored Drinks'),(1916,1737,0,'Food, Beverages & Tobacco > Beverages > Hot Chocolate'),(1917,1738,0,'Food, Beverages & Tobacco > Beverages > Juice'),(1918,1739,0,'Food, Beverages & Tobacco > Beverages > Milk'),(1919,1740,0,'Food, Beverages & Tobacco > Beverages > Non-Dairy Milk'),(1920,1741,0,'Food, Beverages & Tobacco > Beverages > Powdered Beverage Mixes'),(1921,1742,0,'Food, Beverages & Tobacco > Beverages > Soda'),(1922,1743,0,'Food, Beverages & Tobacco > Beverages > Sports & Energy Drinks'),(1923,1744,0,'Food, Beverages & Tobacco > Beverages > Tea & Infusions'),(1924,1745,0,'Food, Beverages & Tobacco > Beverages > Vinegar Drinks'),(1925,1746,0,'Food, Beverages & Tobacco > Beverages > Water'),(1926,1747,0,'Food, Beverages & Tobacco > Food Items'),(1927,1748,0,'Food, Beverages & Tobacco > Food Items > Bakery'),(1928,1749,0,'Food, Beverages & Tobacco > Food Items > Bakery > Bagels'),(1929,1750,0,'Food, Beverages & Tobacco > Food Items > Bakery > Bakery Assortments'),(1930,1751,0,'Food, Beverages & Tobacco > Food Items > Bakery > Breads & Buns'),(1931,1752,0,'Food, Beverages & Tobacco > Food Items > Bakery > Cakes & Dessert Bars'),(1932,1753,0,'Food, Beverages & Tobacco > Food Items > Bakery > Coffee Cakes'),(1933,1754,0,'Food, Beverages & Tobacco > Food Items > Bakery > Cookies'),(1934,1755,0,'Food, Beverages & Tobacco > Food Items > Bakery > Cupcakes'),(1935,1756,0,'Food, Beverages & Tobacco > Food Items > Bakery > Donuts'),(1936,1757,0,'Food, Beverages & Tobacco > Food Items > Bakery > Fudge'),(1937,1758,0,'Food, Beverages & Tobacco > Food Items > Bakery > Ice Cream Cones'),(1938,1759,0,'Food, Beverages & Tobacco > Food Items > Bakery > Muffins'),(1939,1760,0,'Food, Beverages & Tobacco > Food Items > Bakery > Pastries & Scones'),(1940,1761,0,'Food, Beverages & Tobacco > Food Items > Bakery > Pies & Tarts'),(1941,1762,0,'Food, Beverages & Tobacco > Food Items > Bakery > Taco Shells & Tostadas'),(1942,1763,0,'Food, Beverages & Tobacco > Food Items > Bakery > Tortillas & Wraps'),(1943,1764,0,'Food, Beverages & Tobacco > Food Items > Candied & Chocolate Covered Fruit'),(1944,1765,0,'Food, Beverages & Tobacco > Food Items > Candy & Chocolate'),(1945,1766,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces'),(1946,1767,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Cocktail Sauce'),(1947,1768,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Curry Sauce'),(1948,1769,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Dessert Toppings'),(1949,1770,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Dessert Toppings > Fruit Toppings'),(1950,1771,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Dessert Toppings > Ice Cream Syrup'),(1951,1772,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Fish Sauce'),(1952,1773,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Gravy'),(1953,1774,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Honey'),(1954,1775,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Horseradish Sauce'),(1955,1776,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Hot Sauce'),(1956,1777,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Ketchup'),(1957,1778,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Marinades & Grilling Sauces'),(1958,1779,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Mayonnaise'),(1959,1780,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Mustard'),(1960,1781,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Olives & Capers'),(1961,1782,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Pasta Sauce'),(1962,1783,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Pickled Fruits & Vegetables'),(1963,1784,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Pizza Sauce'),(1964,1785,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Relish & Chutney'),(1965,1786,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Salad Dressing'),(1966,1787,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Satay Sauce'),(1967,1788,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Soy Sauce'),(1968,1789,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Sweet and Sour Sauces'),(1969,1790,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Syrup'),(1970,1791,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Tahini'),(1971,1792,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Tartar Sauce'),(1972,1793,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > White & Cream Sauces'),(1973,1794,0,'Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Worcestershire Sauce'),(1974,1795,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients'),(1975,1796,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Chips'),(1976,1797,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Chocolate'),(1977,1798,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Flavors & Extracts'),(1978,1799,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Mixes'),(1979,1800,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Powder'),(1980,1801,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Soda'),(1981,1802,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Batter & Coating Mixes'),(1982,1803,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Bean Paste'),(1983,1804,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Bread Crumbs'),(1984,1805,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Canned & Dry Milk'),(1985,1806,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cookie Decorating Kits'),(1986,1807,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oils'),(1987,1808,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Starch'),(1988,1809,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Wine'),(1989,1810,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Corn Syrup'),(1990,1811,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Dough'),(1991,1812,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Dough > Bread & Pastry Dough'),(1992,1813,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Dough > Cookie & Brownie Dough'),(1993,1814,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Dough > Pie Crusts'),(1994,1815,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Edible Baking Decorations'),(1995,1816,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Floss Sugar'),(1996,1817,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Flour'),(1997,1818,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Food Coloring'),(1998,1819,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Frosting & Icing'),(1999,1820,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Lemon & Lime Juice'),(2000,1821,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Marshmallows'),(2001,1822,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Meal'),(2002,1823,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Molasses'),(2003,1824,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Pie & Pastry Fillings'),(2004,1825,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Shortening & Lard'),(2005,1826,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Starter Cultures'),(2006,1827,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Sugar & Sweeteners'),(2007,1828,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Tapioca Pearls'),(2008,1829,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Tomato Paste'),(2009,1830,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Unflavored Gelatin'),(2010,1831,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Vinegar'),(2011,1832,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Waffle & Pancake Mixes'),(2012,1833,0,'Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Yeast'),(2013,1834,0,'Food, Beverages & Tobacco > Food Items > Dairy Products'),(2014,1835,0,'Food, Beverages & Tobacco > Food Items > Dairy Products > Butter & Margarine'),(2015,1836,0,'Food, Beverages & Tobacco > Food Items > Dairy Products > Cheese'),(2016,1837,0,'Food, Beverages & Tobacco > Food Items > Dairy Products > Coffee Creamer'),(2017,1838,0,'Food, Beverages & Tobacco > Food Items > Dairy Products > Cottage Cheese'),(2018,1839,0,'Food, Beverages & Tobacco > Food Items > Dairy Products > Cream'),(2019,1840,0,'Food, Beverages & Tobacco > Food Items > Dairy Products > Sour Cream'),(2020,1841,0,'Food, Beverages & Tobacco > Food Items > Dairy Products > Whipped Cream'),(2021,1842,0,'Food, Beverages & Tobacco > Food Items > Dairy Products > Yogurt'),(2022,1843,0,'Food, Beverages & Tobacco > Food Items > Dips & Spreads'),(2023,1844,0,'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Apple Butter'),(2024,1845,0,'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Cheese Dips & Spreads'),(2025,1846,0,'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Cream Cheese'),(2026,1847,0,'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Guacamole'),(2027,1848,0,'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Hummus'),(2028,1849,0,'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Jams & Jellies'),(2029,1850,0,'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Nut Butters'),(2030,1851,0,'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Salsa'),(2031,1852,0,'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Tapenade'),(2032,1853,0,'Food, Beverages & Tobacco > Food Items > Dips & Spreads > Vegetable Dip'),(2033,1854,0,'Food, Beverages & Tobacco > Food Items > Food Gift Baskets'),(2034,1855,0,'Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties'),(2035,1856,0,'Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties > Ice Cream & Frozen Yogurt'),(2036,1857,0,'Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties > Ice Cream Novelties'),(2037,1858,0,'Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties > Ice Pops'),(2038,1859,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables'),(2039,1860,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Canned & Jarred Fruits'),(2040,1861,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Canned & Jarred Vegetables'),(2041,1862,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Canned & Prepared Beans'),(2042,1863,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Dried Fruits'),(2043,1864,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Dried Vegetables'),(2044,1865,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Dry Beans'),(2045,1866,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits'),(2046,1867,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Apples'),(2047,1868,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Atemoyas'),(2048,1869,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Avocados'),(2049,1870,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Babacos'),(2050,1871,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Bananas'),(2051,1872,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Berries'),(2052,1873,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Breadfruit'),(2053,1874,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Cactus Pears'),(2054,1875,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Cherimoyas'),(2055,1876,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits'),(2056,1877,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits > Grapefruits'),(2057,1878,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits > Kumquats'),(2058,1879,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits > Lemons'),(2059,1880,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits > Limequats'),(2060,1881,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits > Limes'),(2061,1882,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits > Oranges'),(2062,1883,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Citrus Fruits > Tangelos'),(2063,1884,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Coconuts'),(2064,1885,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Dates'),(2065,1886,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Feijoas'),(2066,1887,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Figs'),(2067,1888,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Fruit Mixes'),(2068,1889,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Grapes'),(2069,1890,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Guavas'),(2070,1891,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Homely Fruits'),(2071,1892,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Kiwis'),(2072,1893,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Longan'),(2073,1894,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Loquats'),(2074,1895,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Lychees'),(2075,1896,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > MadroÃ±o'),(2076,1897,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Mamey'),(2077,1898,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Mangosteens'),(2078,1899,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Melons'),(2079,1900,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Papayas'),(2080,1901,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Passion Fruit'),(2081,1902,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Pears'),(2082,1903,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Persimmons'),(2083,1904,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Physalis'),(2084,1905,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Pineapples'),(2085,1906,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Pitahayas'),(2086,1907,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Pomegranates'),(2087,1908,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Quince'),(2088,1909,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Rambutans'),(2089,1910,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Sapodillo'),(2090,1911,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Sapote'),(2091,1912,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Soursops'),(2092,1913,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Starfruits'),(2093,1914,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Stone Fruits'),(2094,1915,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Stone Fruits > Apricots'),(2095,1916,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Stone Fruits > Cherries'),(2096,1917,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Stone Fruits > Mangoes'),(2097,1918,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Stone Fruits > Peaches & Nectarines'),(2098,1919,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Stone Fruits > Plumcots'),(2099,1920,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Stone Fruits > Plums'),(2100,1921,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Sugar Apples'),(2101,1922,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Tamarindo'),(2102,1923,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables'),(2103,1924,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Arracachas'),(2104,1925,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Artichokes'),(2105,1926,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Asparagus'),(2106,1927,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Beans'),(2107,1928,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Beets'),(2108,1929,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Borage'),(2109,1930,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Broccoli'),(2110,1931,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Brussel Sprouts'),(2111,1932,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Cabbage'),(2112,1933,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Cactus Leaves'),(2113,1934,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Cardoon'),(2114,1935,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Carrots'),(2115,1936,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Cauliflower'),(2116,1937,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Celery'),(2117,1938,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Celery Roots'),(2118,1939,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Corn'),(2119,1940,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Cucumbers'),(2120,1941,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Eggplants'),(2121,1942,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Fennel Bulbs'),(2122,1943,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Fiddlehead Ferns'),(2123,1944,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Gai Choy'),(2124,1945,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Gai Lan'),(2125,1946,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Garlic'),(2126,1947,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Ginger Root'),(2127,1948,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Gobo Root'),(2128,1949,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens'),(2129,1950,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Arugula'),(2130,1951,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Beet Greens'),(2131,1952,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Bok Choy'),(2132,1953,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Chard'),(2133,1954,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Chicory'),(2134,1955,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Choy Sum'),(2135,1956,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Kale'),(2136,1957,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Lettuce'),(2137,1958,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > On Choy'),(2138,1959,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Salad Mixes'),(2139,1960,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Spinach'),(2140,1961,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens > Yu Choy'),(2141,1962,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Horseradish Root'),(2142,1963,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Jicama'),(2143,1964,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Kohlrabi'),(2144,1965,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Leeks'),(2145,1966,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Lotus Roots'),(2146,1967,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Malangas'),(2147,1968,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Mushrooms'),(2148,1969,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Okra'),(2149,1970,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Onions'),(2150,1971,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Parsley Roots'),(2151,1972,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Parsnips'),(2152,1973,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Peas'),(2153,1974,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Peppers'),(2154,1975,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Potatoes'),(2155,1976,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Radishes'),(2156,1977,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Rhubarb'),(2157,1978,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Shallots'),(2158,1979,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Sprouts'),(2159,1980,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Squashes & Gourds'),(2160,1981,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Sugar Cane'),(2161,1982,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Sunchokes'),(2162,1983,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Sweet Potatoes'),(2163,1984,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Tamarillos'),(2164,1985,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Taro Root'),(2165,1986,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Tomatoes'),(2166,1987,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Turnips & Rutabagas'),(2167,1988,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Vegetable Mixes'),(2168,1989,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Water Chestnuts'),(2169,1990,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Watercress'),(2170,1991,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Wheatgrass'),(2171,1992,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Yams'),(2172,1993,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Yuca Root'),(2173,1994,0,'Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fruit Sauces'),(2174,1995,0,'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal'),(2175,1996,0,'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Amaranth'),(2176,1997,0,'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Barley'),(2177,1998,0,'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Buckwheat'),(2178,1999,0,'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Cereal & Granola'),(2179,2000,0,'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Couscous'),(2180,2001,0,'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Millet'),(2181,2002,0,'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Oats, Grits & Hot Cereal'),(2182,2003,0,'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Quinoa'),(2183,2004,0,'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Rice'),(2184,2005,0,'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Rye'),(2185,2006,0,'Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Wheat'),(2186,2007,0,'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs'),(2187,2008,0,'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Eggs'),(2188,2009,0,'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Meat'),(2189,2010,0,'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Meat > Canned Meats'),(2190,2011,0,'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Meat > Fresh & Frozen Meats'),(2191,2012,0,'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Meat > Lunch & Deli Meats'),(2192,2013,0,'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Seafood'),(2193,2014,0,'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Seafood > Canned Seafood'),(2194,2015,0,'Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Seafood > Fresh & Frozen Seafood'),(2195,2016,0,'Food, Beverages & Tobacco > Food Items > Nuts & Seeds'),(2196,2017,0,'Food, Beverages & Tobacco > Food Items > Pasta & Noodles'),(2197,2018,0,'Food, Beverages & Tobacco > Food Items > Prepared Foods'),(2198,2019,0,'Food, Beverages & Tobacco > Food Items > Prepared Foods > Prepared Appetizers & Side Dishes'),(2199,2020,0,'Food, Beverages & Tobacco > Food Items > Prepared Foods > Prepared Meals & EntrÃ©es'),(2200,2021,0,'Food, Beverages & Tobacco > Food Items > Seasonings & Spices'),(2201,2022,0,'Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices'),(2202,2023,0,'Food, Beverages & Tobacco > Food Items > Seasonings & Spices > MSG'),(2203,2024,0,'Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Pepper'),(2204,2025,0,'Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Salt'),(2205,2026,0,'Food, Beverages & Tobacco > Food Items > Snack Foods'),(2206,2027,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Breadsticks'),(2207,2028,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Cereal & Granola Bars'),(2208,2029,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Cheese Puffs'),(2209,2030,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Chips'),(2210,2031,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Crackers'),(2211,2032,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Croutons'),(2212,2033,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Fruit Snacks'),(2213,2034,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Jerky'),(2214,2035,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Popcorn'),(2215,2036,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Pork Rinds'),(2216,2037,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Pretzels'),(2217,2038,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Pudding & Gelatin Snacks'),(2218,2039,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Puffed Rice Cakes'),(2219,2040,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Salad Toppings'),(2220,2041,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Sesame Sticks'),(2221,2042,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Snack Cakes'),(2222,2043,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Sticky Rice Cakes'),(2223,2044,0,'Food, Beverages & Tobacco > Food Items > Snack Foods > Trail & Snack Mixes'),(2224,2045,0,'Food, Beverages & Tobacco > Food Items > Soups & Broths'),(2225,2046,0,'Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products'),(2226,2047,0,'Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products > Cheese Alternatives'),(2227,2048,0,'Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products > Meat Alternatives'),(2228,2049,0,'Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products > Seitan'),(2229,2050,0,'Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products > Tempeh'),(2230,2051,0,'Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products > Tofu'),(2231,2052,0,'Food, Beverages & Tobacco > Tobacco Products'),(2232,2053,0,'Food, Beverages & Tobacco > Tobacco Products > Chewing Tobacco'),(2233,2054,0,'Food, Beverages & Tobacco > Tobacco Products > Cigarettes'),(2234,2055,0,'Food, Beverages & Tobacco > Tobacco Products > Cigars'),(2235,2056,0,'Food, Beverages & Tobacco > Tobacco Products > Loose Tobacco'),(2236,2057,0,'Food, Beverages & Tobacco > Tobacco Products > Smoking Pipes'),(2237,2058,0,'Food, Beverages & Tobacco > Tobacco Products > Vaporizers & Electronic Cigarettes'),(2238,2059,0,'Furniture'),(2239,2060,0,'Furniture > Baby & Toddler Furniture'),(2240,2061,0,'Furniture > Baby & Toddler Furniture > Baby & Toddler Furniture Sets'),(2241,2062,0,'Furniture > Baby & Toddler Furniture > Bassinet & Cradle Accessories'),(2242,2063,0,'Furniture > Baby & Toddler Furniture > Bassinets & Cradles'),(2243,2064,0,'Furniture > Baby & Toddler Furniture > Changing Tables'),(2244,2065,0,'Furniture > Baby & Toddler Furniture > Crib & Toddler Bed Accessories'),(2245,2066,0,'Furniture > Baby & Toddler Furniture > Crib & Toddler Bed Accessories > Crib Bumpers & Liners'),(2246,2067,0,'Furniture > Baby & Toddler Furniture > Crib & Toddler Bed Accessories > Crib Conversion Kits'),(2247,2068,0,'Furniture > Baby & Toddler Furniture > Cribs & Toddler Beds'),(2248,2069,0,'Furniture > Baby & Toddler Furniture > High Chair & Booster Seat Accessories'),(2249,2070,0,'Furniture > Baby & Toddler Furniture > High Chairs & Booster Seats'),(2250,2071,0,'Furniture > Beds & Accessories'),(2251,2072,0,'Furniture > Beds & Accessories > Bed & Bed Frame Accessories'),(2252,2073,0,'Furniture > Beds & Accessories > Beds & Bed Frames'),(2253,2074,0,'Furniture > Beds & Accessories > Headboards & Footboards'),(2254,2075,0,'Furniture > Beds & Accessories > Mattress Foundations'),(2255,2076,0,'Furniture > Beds & Accessories > Mattresses'),(2256,2077,0,'Furniture > Benches'),(2257,2078,0,'Furniture > Benches > Kitchen & Dining Benches'),(2258,2079,0,'Furniture > Benches > Storage & Entryway Benches'),(2259,2080,0,'Furniture > Benches > Vanity Benches'),(2260,2081,0,'Furniture > Cabinets & Storage'),(2261,2082,0,'Furniture > Cabinets & Storage > Armoires & Wardrobes'),(2262,2083,0,'Furniture > Cabinets & Storage > Buffets & Sideboards'),(2263,2084,0,'Furniture > Cabinets & Storage > China Cabinets & Hutches'),(2264,2085,0,'Furniture > Cabinets & Storage > Dressers'),(2265,2086,0,'Furniture > Cabinets & Storage > File Cabinets'),(2266,2087,0,'Furniture > Cabinets & Storage > Ironing Centers'),(2267,2088,0,'Furniture > Cabinets & Storage > Kitchen Cabinets'),(2268,2089,0,'Furniture > Cabinets & Storage > Magazine Racks'),(2269,2090,0,'Furniture > Cabinets & Storage > Media Storage Cabinets & Racks'),(2270,2091,0,'Furniture > Cabinets & Storage > Storage Cabinets & Lockers'),(2271,2092,0,'Furniture > Cabinets & Storage > Storage Chests'),(2272,2093,0,'Furniture > Cabinets & Storage > Storage Chests > Hope Chests'),(2273,2094,0,'Furniture > Cabinets & Storage > Storage Chests > Toy Chests'),(2274,2095,0,'Furniture > Cabinets & Storage > Vanities'),(2275,2096,0,'Furniture > Cabinets & Storage > Vanities > Bathroom Vanities'),(2276,2097,0,'Furniture > Cabinets & Storage > Vanities > Bedroom Vanities'),(2277,2098,0,'Furniture > Cabinets & Storage > Wine & Liquor Cabinets'),(2278,2099,0,'Furniture > Cabinets & Storage > Wine Racks'),(2279,2100,0,'Furniture > Carts & Islands'),(2280,2101,0,'Furniture > Carts & Islands > Kitchen & Dining Carts'),(2281,2102,0,'Furniture > Carts & Islands > Kitchen Islands'),(2282,2103,0,'Furniture > Chair Accessories'),(2283,2104,0,'Furniture > Chair Accessories > Hanging Chair Replacement Parts'),(2284,2105,0,'Furniture > Chairs'),(2285,2106,0,'Furniture > Chairs > Arm Chairs, Recliners & Sleeper Chairs'),(2286,2107,0,'Furniture > Chairs > Bean Bag Chairs'),(2287,2108,0,'Furniture > Chairs > Chaises'),(2288,2109,0,'Furniture > Chairs > Electric Massaging Chairs'),(2289,2110,0,'Furniture > Chairs > Floor Chairs'),(2290,2111,0,'Furniture > Chairs > Folding Chairs & Stools'),(2291,2112,0,'Furniture > Chairs > Gaming Chairs'),(2292,2113,0,'Furniture > Chairs > Hanging Chairs'),(2293,2114,0,'Furniture > Chairs > Kitchen & Dining Room Chairs'),(2294,2115,0,'Furniture > Chairs > Rocking Chairs'),(2295,2116,0,'Furniture > Chairs > Slipper Chairs'),(2296,2117,0,'Furniture > Chairs > Table & Bar Stools'),(2297,2118,0,'Furniture > Entertainment Centers & TV Stands'),(2298,2119,0,'Furniture > Furniture Sets'),(2299,2120,0,'Furniture > Furniture Sets > Bathroom Furniture Sets'),(2300,2121,0,'Furniture > Furniture Sets > Bedroom Furniture Sets'),(2301,2122,0,'Furniture > Furniture Sets > Kitchen & Dining Furniture Sets'),(2302,2123,0,'Furniture > Furniture Sets > Living Room Furniture Sets'),(2303,2124,0,'Furniture > Futon Frames'),(2304,2125,0,'Furniture > Futon Pads'),(2305,2126,0,'Furniture > Futons'),(2306,2127,0,'Furniture > Office Furniture'),(2307,2128,0,'Furniture > Office Furniture > Desks'),(2308,2129,0,'Furniture > Office Furniture > Office Chairs'),(2309,2130,0,'Furniture > Office Furniture > Office Furniture Sets'),(2310,2131,0,'Furniture > Office Furniture > Workspace Tables'),(2311,2132,0,'Furniture > Office Furniture > Workspace Tables > Art & Drafting Tables'),(2312,2133,0,'Furniture > Office Furniture > Workspace Tables > Conference Room Tables'),(2313,2134,0,'Furniture > Office Furniture > Workstations & Cubicles'),(2314,2135,0,'Furniture > Office Furniture Accessories'),(2315,2136,0,'Furniture > Office Furniture Accessories > Desk Parts & Accessories'),(2316,2137,0,'Furniture > Office Furniture Accessories > Office Chair Accessories'),(2317,2138,0,'Furniture > Office Furniture Accessories > Workstation & Cubicle Accessories'),(2318,2139,0,'Furniture > Ottomans'),(2319,2140,0,'Furniture > Outdoor Furniture'),(2320,2141,0,'Furniture > Outdoor Furniture > Outdoor Beds'),(2321,2142,0,'Furniture > Outdoor Furniture > Outdoor Furniture Sets'),(2322,2143,0,'Furniture > Outdoor Furniture > Outdoor Ottomans'),(2323,2144,0,'Furniture > Outdoor Furniture > Outdoor Seating'),(2324,2145,0,'Furniture > Outdoor Furniture > Outdoor Seating > Outdoor Benches'),(2325,2146,0,'Furniture > Outdoor Furniture > Outdoor Seating > Outdoor Chairs'),(2326,2147,0,'Furniture > Outdoor Furniture > Outdoor Seating > Outdoor Sectional Sofa Units'),(2327,2148,0,'Furniture > Outdoor Furniture > Outdoor Seating > Outdoor Sofas'),(2328,2149,0,'Furniture > Outdoor Furniture > Outdoor Seating > Sunloungers'),(2329,2150,0,'Furniture > Outdoor Furniture > Outdoor Storage Boxes'),(2330,2151,0,'Furniture > Outdoor Furniture > Outdoor Tables'),(2331,2152,0,'Furniture > Outdoor Furniture Accessories'),(2332,2153,0,'Furniture > Outdoor Furniture Accessories > Outdoor Furniture Covers'),(2333,2154,0,'Furniture > Room Divider Accessories'),(2334,2155,0,'Furniture > Room Dividers'),(2335,2156,0,'Furniture > Shelving'),(2336,2157,0,'Furniture > Shelving > Bookcases & Standing Shelves'),(2337,2158,0,'Furniture > Shelving > Wall Shelves & Ledges'),(2338,2159,0,'Furniture > Shelving Accessories'),(2339,2160,0,'Furniture > Shelving Accessories > Replacement Shelves'),(2340,2161,0,'Furniture > Sofa Accessories'),(2341,2162,0,'Furniture > Sofa Accessories > Chair & Sofa Supports'),(2342,2163,0,'Furniture > Sofa Accessories > Sectional Sofa Units'),(2343,2164,0,'Furniture > Sofas'),(2344,2165,0,'Furniture > Table Accessories'),(2345,2166,0,'Furniture > Table Accessories > Table Legs'),(2346,2167,0,'Furniture > Table Accessories > Table Tops'),(2347,2168,0,'Furniture > Tables'),(2348,2169,0,'Furniture > Tables > Accent Tables'),(2349,2170,0,'Furniture > Tables > Accent Tables > Coffee Tables'),(2350,2171,0,'Furniture > Tables > Accent Tables > End Tables'),(2351,2172,0,'Furniture > Tables > Accent Tables > Sofa Tables'),(2352,2173,0,'Furniture > Tables > Activity Tables'),(2353,2174,0,'Furniture > Tables > Folding Tables'),(2354,2175,0,'Furniture > Tables > Kitchen & Dining Room Tables'),(2355,2176,0,'Furniture > Tables > Kotatsu'),(2356,2177,0,'Furniture > Tables > Nightstands'),(2357,2178,0,'Furniture > Tables > Poker & Game Tables'),(2358,2179,0,'Furniture > Tables > Sewing Machine Tables'),(2359,2180,0,'Hardware'),(2360,2181,0,'Hardware > Building Consumables'),(2361,2182,0,'Hardware > Building Consumables > Chemicals'),(2362,2183,0,'Hardware > Building Consumables > Chemicals > Acid Neutralizers'),(2363,2184,0,'Hardware > Building Consumables > Chemicals > Ammonia'),(2364,2185,0,'Hardware > Building Consumables > Chemicals > Chimney Cleaners'),(2365,2186,0,'Hardware > Building Consumables > Chemicals > Concrete & Masonry Cleaners'),(2366,2187,0,'Hardware > Building Consumables > Chemicals > De-icers'),(2367,2188,0,'Hardware > Building Consumables > Chemicals > Deck & Fence Cleaners'),(2368,2189,0,'Hardware > Building Consumables > Chemicals > Drain Cleaners'),(2369,2190,0,'Hardware > Building Consumables > Chemicals > Electrical Freeze Sprays'),(2370,2191,0,'Hardware > Building Consumables > Chemicals > Lighter Fluid'),(2371,2192,0,'Hardware > Building Consumables > Chemicals > Septic Tank & Cesspool Treatments'),(2372,2193,0,'Hardware > Building Consumables > Hardware Glue & Adhesives'),(2373,2194,0,'Hardware > Building Consumables > Hardware Tape'),(2374,2195,0,'Hardware > Building Consumables > Lubricants'),(2375,2196,0,'Hardware > Building Consumables > Masonry Consumables'),(2376,2197,0,'Hardware > Building Consumables > Masonry Consumables > Bricks & Concrete Blocks'),(2377,2198,0,'Hardware > Building Consumables > Masonry Consumables > Cement, Mortar & Concrete Mixes'),(2378,2199,0,'Hardware > Building Consumables > Masonry Consumables > Grout'),(2379,2200,0,'Hardware > Building Consumables > Painting Consumables'),(2380,2201,0,'Hardware > Building Consumables > Painting Consumables > Paint'),(2381,2202,0,'Hardware > Building Consumables > Painting Consumables > Paint Binders'),(2382,2203,0,'Hardware > Building Consumables > Painting Consumables > Primers'),(2383,2204,0,'Hardware > Building Consumables > Painting Consumables > Stains'),(2384,2205,0,'Hardware > Building Consumables > Painting Consumables > Varnishes & Finishes'),(2385,2206,0,'Hardware > Building Consumables > Plumbing Primer'),(2386,2207,0,'Hardware > Building Consumables > Protective Coatings & Sealants'),(2387,2208,0,'Hardware > Building Consumables > Solder & Flux'),(2388,2209,0,'Hardware > Building Consumables > Solvents, Strippers & Thinners'),(2389,2210,0,'Hardware > Building Consumables > Wall Patching Compounds & Plaster'),(2390,2211,0,'Hardware > Building Materials'),(2391,2212,0,'Hardware > Building Materials > Countertops'),(2392,2213,0,'Hardware > Building Materials > Door Hardware'),(2393,2214,0,'Hardware > Building Materials > Door Hardware > Door Bells & Chimes'),(2394,2215,0,'Hardware > Building Materials > Door Hardware > Door Closers'),(2395,2216,0,'Hardware > Building Materials > Door Hardware > Door Frames'),(2396,2217,0,'Hardware > Building Materials > Door Hardware > Door Keyhole Escutcheons'),(2397,2218,0,'Hardware > Building Materials > Door Hardware > Door Knobs & Handles'),(2398,2219,0,'Hardware > Building Materials > Door Hardware > Door Knockers'),(2399,2220,0,'Hardware > Building Materials > Door Hardware > Door Push Plates'),(2400,2221,0,'Hardware > Building Materials > Door Hardware > Door Stops'),(2401,2222,0,'Hardware > Building Materials > Door Hardware > Door Strikes'),(2402,2223,0,'Hardware > Building Materials > Doors'),(2403,2224,0,'Hardware > Building Materials > Doors > Garage Doors'),(2404,2225,0,'Hardware > Building Materials > Doors > Home Doors'),(2405,2226,0,'Hardware > Building Materials > Drywall'),(2406,2227,0,'Hardware > Building Materials > Flooring & Carpet'),(2407,2228,0,'Hardware > Building Materials > Glass'),(2408,2229,0,'Hardware > Building Materials > Handrails & Railing Systems'),(2409,2230,0,'Hardware > Building Materials > Hatches'),(2410,2231,0,'Hardware > Building Materials > Insulation'),(2411,2232,0,'Hardware > Building Materials > Lumber & Sheet Stock'),(2412,2233,0,'Hardware > Building Materials > Molding'),(2413,2234,0,'Hardware > Building Materials > Rebar & Remesh'),(2414,2235,0,'Hardware > Building Materials > Roofing'),(2415,2236,0,'Hardware > Building Materials > Roofing > Gutter Accessories'),(2416,2237,0,'Hardware > Building Materials > Roofing > Gutters'),(2417,2238,0,'Hardware > Building Materials > Roofing > Roof Flashings'),(2418,2239,0,'Hardware > Building Materials > Roofing > Roofing Shingles & Tiles'),(2419,2240,0,'Hardware > Building Materials > Shutters'),(2420,2241,0,'Hardware > Building Materials > Siding'),(2421,2242,0,'Hardware > Building Materials > Sound Dampening Panels & Foam'),(2422,2243,0,'Hardware > Building Materials > Staircases'),(2423,2244,0,'Hardware > Building Materials > Wall & Ceiling Tile'),(2424,2245,0,'Hardware > Building Materials > Wall Paneling'),(2425,2246,0,'Hardware > Building Materials > Weather Stripping & Weatherization Supplies'),(2426,2247,0,'Hardware > Building Materials > Window Hardware'),(2427,2248,0,'Hardware > Building Materials > Window Hardware > Window Cranks'),(2428,2249,0,'Hardware > Building Materials > Window Hardware > Window Frames'),(2429,2250,0,'Hardware > Building Materials > Windows'),(2430,2251,0,'Hardware > Fencing & Barriers'),(2431,2252,0,'Hardware > Fencing & Barriers > Fence & Gate Accessories'),(2432,2253,0,'Hardware > Fencing & Barriers > Fence Panels'),(2433,2254,0,'Hardware > Fencing & Barriers > Fence Pickets'),(2434,2255,0,'Hardware > Fencing & Barriers > Fence Posts & Rails'),(2435,2256,0,'Hardware > Fencing & Barriers > Garden Borders & Edging'),(2436,2257,0,'Hardware > Fencing & Barriers > Gates'),(2437,2258,0,'Hardware > Fencing & Barriers > Lattice'),(2438,2259,0,'Hardware > Fencing & Barriers > Safety & Crowd Control Barriers'),(2439,2260,0,'Hardware > Fuel Containers & Tanks'),(2440,2261,0,'Hardware > Hardware Accessories'),(2441,2262,0,'Hardware > Hardware Accessories > Brackets & Reinforcement Braces'),(2442,2263,0,'Hardware > Hardware Accessories > Cabinet Hardware'),(2443,2264,0,'Hardware > Hardware Accessories > Cabinet Hardware > Cabinet & Furniture Keyhole Escutcheons'),(2444,2265,0,'Hardware > Hardware Accessories > Cabinet Hardware > Cabinet Backplates'),(2445,2266,0,'Hardware > Hardware Accessories > Cabinet Hardware > Cabinet Catches'),(2446,2267,0,'Hardware > Hardware Accessories > Cabinet Hardware > Cabinet Doors'),(2447,2268,0,'Hardware > Hardware Accessories > Cabinet Hardware > Cabinet Knobs & Handles'),(2448,2269,0,'Hardware > Hardware Accessories > Casters'),(2449,2270,0,'Hardware > Hardware Accessories > Chain, Wire & Rope'),(2450,2271,0,'Hardware > Hardware Accessories > Chain, Wire & Rope > Bungee Cords'),(2451,2272,0,'Hardware > Hardware Accessories > Chain, Wire & Rope > Chains'),(2452,2273,0,'Hardware > Hardware Accessories > Chain, Wire & Rope > Pull Chains'),(2453,2274,0,'Hardware > Hardware Accessories > Chain, Wire & Rope > Ropes & Hardware Cable'),(2454,2275,0,'Hardware > Hardware Accessories > Chain, Wire & Rope > Tie Down Straps'),(2455,2276,0,'Hardware > Hardware Accessories > Chain, Wire & Rope > Twine'),(2456,2277,0,'Hardware > Hardware Accessories > Chain, Wire & Rope > Utility Wire'),(2457,2278,0,'Hardware > Hardware Accessories > Coils'),(2458,2279,0,'Hardware > Hardware Accessories > Concrete Molds'),(2459,2280,0,'Hardware > Hardware Accessories > Dowel Pins & Rods'),(2460,2281,0,'Hardware > Hardware Accessories > Drawer Slides'),(2461,2282,0,'Hardware > Hardware Accessories > Drop Cloths'),(2462,2283,0,'Hardware > Hardware Accessories > Filters & Screens'),(2463,2284,0,'Hardware > Hardware Accessories > Flagging & Caution Tape'),(2464,2285,0,'Hardware > Hardware Accessories > Gas Hoses'),(2465,2286,0,'Hardware > Hardware Accessories > Ground Spikes'),(2466,2287,0,'Hardware > Hardware Accessories > Hardware Fasteners'),(2467,2288,0,'Hardware > Hardware Accessories > Hardware Fasteners > Drywall Anchors'),(2468,2289,0,'Hardware > Hardware Accessories > Hardware Fasteners > Nails'),(2469,2290,0,'Hardware > Hardware Accessories > Hardware Fasteners > Nuts & Bolts'),(2470,2291,0,'Hardware > Hardware Accessories > Hardware Fasteners > Rivets'),(2471,2292,0,'Hardware > Hardware Accessories > Hardware Fasteners > Screw Posts'),(2472,2293,0,'Hardware > Hardware Accessories > Hardware Fasteners > Screws'),(2473,2294,0,'Hardware > Hardware Accessories > Hardware Fasteners > Threaded Rods'),(2474,2295,0,'Hardware > Hardware Accessories > Hardware Fasteners > Washers'),(2475,2296,0,'Hardware > Hardware Accessories > Hinges'),(2476,2297,0,'Hardware > Hardware Accessories > Hooks, Buckles & Fasteners'),(2477,2298,0,'Hardware > Hardware Accessories > Hooks, Buckles & Fasteners > Chain Connectors & Links'),(2478,2299,0,'Hardware > Hardware Accessories > Hooks, Buckles & Fasteners > Gear Ties'),(2479,2300,0,'Hardware > Hardware Accessories > Hooks, Buckles & Fasteners > Lifting Hooks, Clamps & Shackles'),(2480,2301,0,'Hardware > Hardware Accessories > Hooks, Buckles & Fasteners > Utility Buckles'),(2481,2302,0,'Hardware > Hardware Accessories > Lubrication Hoses'),(2482,2303,0,'Hardware > Hardware Accessories > Metal Casting Molds'),(2483,2304,0,'Hardware > Hardware Accessories > Moving & Soundproofing Blankets & Covers'),(2484,2305,0,'Hardware > Hardware Accessories > Pneumatic Hoses'),(2485,2306,0,'Hardware > Hardware Accessories > Post Base Plates'),(2486,2307,0,'Hardware > Hardware Accessories > Springs'),(2487,2308,0,'Hardware > Hardware Accessories > Tarps'),(2488,2309,0,'Hardware > Hardware Accessories > Tool Storage & Organization'),(2489,2310,0,'Hardware > Hardware Accessories > Tool Storage & Organization > Garden Hose Storage'),(2490,2311,0,'Hardware > Hardware Accessories > Tool Storage & Organization > Tool & Equipment Belts'),(2491,2312,0,'Hardware > Hardware Accessories > Tool Storage & Organization > Tool Bags'),(2492,2313,0,'Hardware > Hardware Accessories > Tool Storage & Organization > Tool Boxes'),(2493,2314,0,'Hardware > Hardware Accessories > Tool Storage & Organization > Tool Cabinets & Chests'),(2494,2315,0,'Hardware > Hardware Accessories > Tool Storage & Organization > Tool Organizer Liners & Inserts'),(2495,2316,0,'Hardware > Hardware Accessories > Tool Storage & Organization > Tool Sheaths'),(2496,2317,0,'Hardware > Hardware Accessories > Tool Storage & Organization > Work Benches'),(2497,2318,0,'Hardware > Hardware Accessories > Wall Jacks & Braces'),(2498,2319,0,'Hardware > Hardware Pumps'),(2499,2320,0,'Hardware > Hardware Pumps > Home Appliance Pumps'),(2500,2321,0,'Hardware > Hardware Pumps > Pool, Fountain & Pond Pumps'),(2501,2322,0,'Hardware > Hardware Pumps > Sprinkler, Booster & Irrigation System Pumps'),(2502,2323,0,'Hardware > Hardware Pumps > Sump, Sewage & Effluent Pumps'),(2503,2324,0,'Hardware > Hardware Pumps > Utility Pumps'),(2504,2325,0,'Hardware > Hardware Pumps > Well Pumps & Systems'),(2505,2326,0,'Hardware > Heating, Ventilation & Air Conditioning'),(2506,2327,0,'Hardware > Heating, Ventilation & Air Conditioning > Air & Filter Dryers'),(2507,2328,0,'Hardware > Heating, Ventilation & Air Conditioning > Air Ducts'),(2508,2329,0,'Hardware > Heating, Ventilation & Air Conditioning > HVAC Controls'),(2509,2330,0,'Hardware > Heating, Ventilation & Air Conditioning > HVAC Controls > Control Panels'),(2510,2331,0,'Hardware > Heating, Ventilation & Air Conditioning > HVAC Controls > Humidistats'),(2511,2332,0,'Hardware > Heating, Ventilation & Air Conditioning > HVAC Controls > Thermostats'),(2512,2333,0,'Hardware > Heating, Ventilation & Air Conditioning > Vents & Flues'),(2513,2334,0,'Hardware > Locks & Keys'),(2514,2335,0,'Hardware > Locks & Keys > Key Blanks'),(2515,2336,0,'Hardware > Locks & Keys > Key Caps'),(2516,2337,0,'Hardware > Locks & Keys > Key Card Entry Systems'),(2517,2338,0,'Hardware > Locks & Keys > Locks & Latches'),(2518,2339,0,'Hardware > Plumbing'),(2519,2340,0,'Hardware > Plumbing > Plumbing Fittings & Supports'),(2520,2341,0,'Hardware > Plumbing > Plumbing Fittings & Supports > Gaskets & O-Rings'),(2521,2342,0,'Hardware > Plumbing > Plumbing Fittings & Supports > In-Wall Carriers & Mounting Frames'),(2522,2343,0,'Hardware > Plumbing > Plumbing Fittings & Supports > Nozzles'),(2523,2344,0,'Hardware > Plumbing > Plumbing Fittings & Supports > Pipe Adapters & Bushings'),(2524,2345,0,'Hardware > Plumbing > Plumbing Fittings & Supports > Pipe Caps & Plugs'),(2525,2346,0,'Hardware > Plumbing > Plumbing Fittings & Supports > Pipe Connectors'),(2526,2347,0,'Hardware > Plumbing > Plumbing Fittings & Supports > Plumbing Flanges'),(2527,2348,0,'Hardware > Plumbing > Plumbing Fittings & Supports > Plumbing Pipe Clamps'),(2528,2349,0,'Hardware > Plumbing > Plumbing Fittings & Supports > Plumbing Regulators'),(2529,2350,0,'Hardware > Plumbing > Plumbing Fittings & Supports > Plumbing Valves'),(2530,2351,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts'),(2531,2352,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Bathtub Accessories'),(2532,2353,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Bathtub Accessories > Bathtub Bases & Feet'),(2533,2354,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Bathtub Accessories > Bathtub Skirts'),(2534,2355,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Bathtub Accessories > Bathtub Spouts'),(2535,2356,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components'),(2536,2357,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components > Drain Covers & Strainers'),(2537,2358,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components > Drain Frames'),(2538,2359,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components > Drain Liners'),(2539,2360,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components > Drain Openers'),(2540,2361,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components > Drain Rods'),(2541,2362,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components > Plumbing Traps'),(2542,2363,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drain Components > Plumbing Wastes'),(2543,2364,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Drains'),(2544,2365,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Faucet Accessories'),(2545,2366,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Faucet Accessories > Faucet Aerators'),(2546,2367,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Faucet Accessories > Faucet Handles & Controls'),(2547,2368,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Fixture Plates'),(2548,2369,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts'),(2549,2370,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Bathtub & Shower Jets'),(2550,2371,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Electric & Power Showers'),(2551,2372,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Shower Arms & Connectors'),(2552,2373,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Shower Bases'),(2553,2374,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Shower Columns'),(2554,2375,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Shower Doors & Enclosures'),(2555,2376,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Shower Heads'),(2556,2377,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Shower Walls & Surrounds'),(2557,2378,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Shower Parts > Shower Water Filters'),(2558,2379,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Sink Accessories'),(2559,2380,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Sink Accessories > Sink Legs'),(2560,2381,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories'),(2561,2382,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Ballcocks & Flappers'),(2562,2383,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Bidet Faucets & Sprayers'),(2563,2384,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Toilet & Bidet Seats'),(2564,2385,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Toilet Seat Covers'),(2565,2386,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Toilet Seat Lid Covers'),(2566,2387,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Toilet Tank Covers'),(2567,2388,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Toilet Tank Levers'),(2568,2389,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Toilet Tanks'),(2569,2390,0,'Hardware > Plumbing > Plumbing Fixture Hardware & Parts > Toilet & Bidet Accessories > Toilet Trim'),(2570,2391,0,'Hardware > Plumbing > Plumbing Fixtures'),(2571,2392,0,'Hardware > Plumbing > Plumbing Fixtures > Bathroom Suites'),(2572,2393,0,'Hardware > Plumbing > Plumbing Fixtures > Bathtubs'),(2573,2394,0,'Hardware > Plumbing > Plumbing Fixtures > Faucets'),(2574,2395,0,'Hardware > Plumbing > Plumbing Fixtures > Shower Stalls & Kits'),(2575,2396,0,'Hardware > Plumbing > Plumbing Fixtures > Sinks'),(2576,2397,0,'Hardware > Plumbing > Plumbing Fixtures > Sinks > Bathroom Sinks'),(2577,2398,0,'Hardware > Plumbing > Plumbing Fixtures > Sinks > Kitchen & Utility Sinks'),(2578,2399,0,'Hardware > Plumbing > Plumbing Fixtures > Toilets & Bidets'),(2579,2400,0,'Hardware > Plumbing > Plumbing Fixtures > Toilets & Bidets > Bidets'),(2580,2401,0,'Hardware > Plumbing > Plumbing Fixtures > Toilets & Bidets > Toilets'),(2581,2402,0,'Hardware > Plumbing > Plumbing Fixtures > Toilets & Bidets > Urinals'),(2582,2403,0,'Hardware > Plumbing > Plumbing Hoses & Supply Lines'),(2583,2404,0,'Hardware > Plumbing > Plumbing Pipes'),(2584,2405,0,'Hardware > Plumbing > Plumbing Repair Kits'),(2585,2406,0,'Hardware > Plumbing > Water Dispensing & Filtration'),(2586,2407,0,'Hardware > Plumbing > Water Dispensing & Filtration > In-Line Water Filters'),(2587,2408,0,'Hardware > Plumbing > Water Dispensing & Filtration > Water Dispensers'),(2588,2409,0,'Hardware > Plumbing > Water Dispensing & Filtration > Water Dispensers > Drinking Fountains'),(2589,2410,0,'Hardware > Plumbing > Water Dispensing & Filtration > Water Dispensers > Water Chillers'),(2590,2411,0,'Hardware > Plumbing > Water Dispensing & Filtration > Water Distillers'),(2591,2412,0,'Hardware > Plumbing > Water Dispensing & Filtration > Water Filtration Accessories'),(2592,2413,0,'Hardware > Plumbing > Water Dispensing & Filtration > Water Filtration Accessories > Water Filter Cartridges'),(2593,2414,0,'Hardware > Plumbing > Water Dispensing & Filtration > Water Filtration Accessories > Water Filter Housings'),(2594,2415,0,'Hardware > Plumbing > Water Dispensing & Filtration > Water Softener Salt'),(2595,2416,0,'Hardware > Plumbing > Water Dispensing & Filtration > Water Softeners'),(2596,2417,0,'Hardware > Plumbing > Water Levelers'),(2597,2418,0,'Hardware > Plumbing > Water Timers'),(2598,2419,0,'Hardware > Plumbing > Well Supplies'),(2599,2420,0,'Hardware > Power & Electrical Supplies'),(2600,2421,0,'Hardware > Power & Electrical Supplies > Armatures, Rotors & Stators'),(2601,2422,0,'Hardware > Power & Electrical Supplies > Ballasts & Starters'),(2602,2423,0,'Hardware > Power & Electrical Supplies > Carbon Brushes'),(2603,2424,0,'Hardware > Power & Electrical Supplies > Circuit Breaker Panels'),(2604,2425,0,'Hardware > Power & Electrical Supplies > Conduit & Housings'),(2605,2426,0,'Hardware > Power & Electrical Supplies > Conduit & Housings > Electrical Conduit'),(2606,2427,0,'Hardware > Power & Electrical Supplies > Conduit & Housings > Heat-Shrink Tubing'),(2607,2428,0,'Hardware > Power & Electrical Supplies > Electrical Motors'),(2608,2429,0,'Hardware > Power & Electrical Supplies > Electrical Mount Boxes & Brackets'),(2609,2430,0,'Hardware > Power & Electrical Supplies > Electrical Plug Caps'),(2610,2431,0,'Hardware > Power & Electrical Supplies > Electrical Switches'),(2611,2432,0,'Hardware > Power & Electrical Supplies > Electrical Switches > Light Switches'),(2612,2433,0,'Hardware > Power & Electrical Supplies > Electrical Switches > Specialty Electrical Switches & Relays'),(2613,2434,0,'Hardware > Power & Electrical Supplies > Electrical Wires & Cable'),(2614,2435,0,'Hardware > Power & Electrical Supplies > Extension Cord Accessories'),(2615,2436,0,'Hardware > Power & Electrical Supplies > Extension Cords'),(2616,2437,0,'Hardware > Power & Electrical Supplies > Generator Accessories'),(2617,2438,0,'Hardware > Power & Electrical Supplies > Generators'),(2618,2439,0,'Hardware > Power & Electrical Supplies > Home Automation Kits'),(2619,2440,0,'Hardware > Power & Electrical Supplies > Phone & Data Jacks'),(2620,2441,0,'Hardware > Power & Electrical Supplies > Power Converters'),(2621,2442,0,'Hardware > Power & Electrical Supplies > Power Inlets'),(2622,2443,0,'Hardware > Power & Electrical Supplies > Power Inverters'),(2623,2444,0,'Hardware > Power & Electrical Supplies > Power Outlets & Sockets'),(2624,2445,0,'Hardware > Power & Electrical Supplies > Solar Energy Kits'),(2625,2446,0,'Hardware > Power & Electrical Supplies > Solar Panels'),(2626,2447,0,'Hardware > Power & Electrical Supplies > Voltage Transformers & Regulators'),(2627,2448,0,'Hardware > Power & Electrical Supplies > Wall Plates & Covers'),(2628,2449,0,'Hardware > Power & Electrical Supplies > Wall Socket Controls & Sensors'),(2629,2450,0,'Hardware > Power & Electrical Supplies > Wire Caps & Nuts'),(2630,2451,0,'Hardware > Power & Electrical Supplies > Wire Terminals & Connectors'),(2631,2452,0,'Hardware > Small Engines'),(2632,2453,0,'Hardware > Storage Tanks'),(2633,2454,0,'Hardware > Tool Accessories'),(2634,2455,0,'Hardware > Tool Accessories > Abrasive Blaster Accessories'),(2635,2456,0,'Hardware > Tool Accessories > Abrasive Blaster Accessories > Sandblasting Cabinets'),(2636,2457,0,'Hardware > Tool Accessories > Axe Accessories'),(2637,2458,0,'Hardware > Tool Accessories > Axe Accessories > Axe Handles'),(2638,2459,0,'Hardware > Tool Accessories > Axe Accessories > Axe Heads'),(2639,2460,0,'Hardware > Tool Accessories > Cutter Accessories'),(2640,2461,0,'Hardware > Tool Accessories > Cutter Accessories > Nibbler Dies'),(2641,2462,0,'Hardware > Tool Accessories > Drill & Screwdriver Accessories'),(2642,2463,0,'Hardware > Tool Accessories > Drill & Screwdriver Accessories > Drill & Screwdriver Bits'),(2643,2464,0,'Hardware > Tool Accessories > Drill & Screwdriver Accessories > Drill Bit Extensions'),(2644,2465,0,'Hardware > Tool Accessories > Drill & Screwdriver Accessories > Drill Bit Sharpeners'),(2645,2466,0,'Hardware > Tool Accessories > Drill & Screwdriver Accessories > Drill Chucks'),(2646,2467,0,'Hardware > Tool Accessories > Drill & Screwdriver Accessories > Drill Stands & Guides'),(2647,2468,0,'Hardware > Tool Accessories > Drill & Screwdriver Accessories > Hole Saws'),(2648,2469,0,'Hardware > Tool Accessories > Driver Accessories'),(2649,2470,0,'Hardware > Tool Accessories > Flashlight Accessories'),(2650,2471,0,'Hardware > Tool Accessories > Grinder Accessories'),(2651,2472,0,'Hardware > Tool Accessories > Grinder Accessories > Grinding Wheels & Points'),(2652,2473,0,'Hardware > Tool Accessories > Hammer Accessories'),(2653,2474,0,'Hardware > Tool Accessories > Hammer Accessories > Air Hammer Accessories'),(2654,2475,0,'Hardware > Tool Accessories > Hammer Accessories > Hammer Handles'),(2655,2476,0,'Hardware > Tool Accessories > Hammer Accessories > Hammer Heads'),(2656,2477,0,'Hardware > Tool Accessories > Industrial Staples'),(2657,2478,0,'Hardware > Tool Accessories > Jigs'),(2658,2479,0,'Hardware > Tool Accessories > Magnetizers & Demagnetizers'),(2659,2480,0,'Hardware > Tool Accessories > Mattock & Pickaxe Accessories'),(2660,2481,0,'Hardware > Tool Accessories > Mattock & Pickaxe Accessories > Mattock & Pickaxe Handles'),(2661,2482,0,'Hardware > Tool Accessories > Measuring Tool & Sensor Accessories'),(2662,2483,0,'Hardware > Tool Accessories > Measuring Tool & Sensor Accessories > Electrical Testing Tool Accessories'),(2663,2484,0,'Hardware > Tool Accessories > Measuring Tool & Sensor Accessories > Gas Detector Accessories'),(2664,2485,0,'Hardware > Tool Accessories > Measuring Tool & Sensor Accessories > Measuring Scale Accessories'),(2665,2486,0,'Hardware > Tool Accessories > Measuring Tool & Sensor Accessories > Multimeter Accessories'),(2666,2487,0,'Hardware > Tool Accessories > Mixing Tool Paddles'),(2667,2488,0,'Hardware > Tool Accessories > Paint Tool Accessories'),(2668,2489,0,'Hardware > Tool Accessories > Paint Tool Accessories > Airbrush Accessories'),(2669,2490,0,'Hardware > Tool Accessories > Paint Tool Accessories > Paint Brush Cleaning Solutions'),(2670,2491,0,'Hardware > Tool Accessories > Paint Tool Accessories > Paint Roller Accessories'),(2671,2492,0,'Hardware > Tool Accessories > Power Tool Batteries'),(2672,2493,0,'Hardware > Tool Accessories > Power Tool Chargers'),(2673,2494,0,'Hardware > Tool Accessories > Router Accessories'),(2674,2495,0,'Hardware > Tool Accessories > Router Accessories > Router Bits'),(2675,2496,0,'Hardware > Tool Accessories > Router Accessories > Router Tables'),(2676,2497,0,'Hardware > Tool Accessories > Sanding Accessories'),(2677,2498,0,'Hardware > Tool Accessories > Sanding Accessories > Sandpaper & Sanding Sponges'),(2678,2499,0,'Hardware > Tool Accessories > Saw Accessories'),(2679,2500,0,'Hardware > Tool Accessories > Saw Accessories > Band Saw Accessories'),(2680,2501,0,'Hardware > Tool Accessories > Saw Accessories > Handheld Circular Saw Accessories'),(2681,2502,0,'Hardware > Tool Accessories > Saw Accessories > Jigsaw Accessories'),(2682,2503,0,'Hardware > Tool Accessories > Saw Accessories > Miter Saw Accessories'),(2683,2504,0,'Hardware > Tool Accessories > Saw Accessories > Table Saw Accessories'),(2684,2505,0,'Hardware > Tool Accessories > Shaper Accessories'),(2685,2506,0,'Hardware > Tool Accessories > Shaper Accessories > Shaper Cutters'),(2686,2507,0,'Hardware > Tool Accessories > Soldering Iron Accessories'),(2687,2508,0,'Hardware > Tool Accessories > Soldering Iron Accessories > Soldering Iron Stands'),(2688,2509,0,'Hardware > Tool Accessories > Soldering Iron Accessories > Soldering Iron Tips'),(2689,2510,0,'Hardware > Tool Accessories > Tool Blades'),(2690,2511,0,'Hardware > Tool Accessories > Tool Blades > Cutter & Scraper Blades'),(2691,2512,0,'Hardware > Tool Accessories > Tool Blades > Saw Blades'),(2692,2513,0,'Hardware > Tool Accessories > Tool Handle Wedges'),(2693,2514,0,'Hardware > Tool Accessories > Tool Safety Tethers'),(2694,2515,0,'Hardware > Tool Accessories > Tool Sockets'),(2695,2516,0,'Hardware > Tool Accessories > Tool Stands'),(2696,2517,0,'Hardware > Tool Accessories > Tool Stands > Saw Stands'),(2697,2518,0,'Hardware > Tool Accessories > Wedge Tools'),(2698,2519,0,'Hardware > Tool Accessories > Welding Accessories'),(2699,2520,0,'Hardware > Tools'),(2700,2521,0,'Hardware > Tools > Abrasive Blasters'),(2701,2522,0,'Hardware > Tools > Anvils'),(2702,2523,0,'Hardware > Tools > Axes'),(2703,2524,0,'Hardware > Tools > Carpentry Jointers'),(2704,2525,0,'Hardware > Tools > Carving Chisels & Gouges'),(2705,2526,0,'Hardware > Tools > Caulking Tools'),(2706,2527,0,'Hardware > Tools > Chimney Brushes'),(2707,2528,0,'Hardware > Tools > Compactors'),(2708,2529,0,'Hardware > Tools > Compressors'),(2709,2530,0,'Hardware > Tools > Concrete Brooms'),(2710,2531,0,'Hardware > Tools > Cutters'),(2711,2532,0,'Hardware > Tools > Cutters > Bolt Cutters'),(2712,2533,0,'Hardware > Tools > Cutters > Glass Cutters'),(2713,2534,0,'Hardware > Tools > Cutters > Handheld Metal Shears & Nibblers'),(2714,2535,0,'Hardware > Tools > Cutters > Nippers'),(2715,2536,0,'Hardware > Tools > Cutters > Pipe Cutters'),(2716,2537,0,'Hardware > Tools > Cutters > Rebar Cutters'),(2717,2538,0,'Hardware > Tools > Cutters > Tile & Shingle Cutters'),(2718,2539,0,'Hardware > Tools > Cutters > Utility Knives'),(2719,2540,0,'Hardware > Tools > Deburrers'),(2720,2541,0,'Hardware > Tools > Dollies & Hand Trucks'),(2721,2542,0,'Hardware > Tools > Drills'),(2722,2543,0,'Hardware > Tools > Drills > Augers'),(2723,2544,0,'Hardware > Tools > Drills > Drill Presses'),(2724,2545,0,'Hardware > Tools > Drills > Handheld Power Drills'),(2725,2546,0,'Hardware > Tools > Drills > Mortisers'),(2726,2547,0,'Hardware > Tools > Drills > Pneumatic Drills'),(2727,2548,0,'Hardware > Tools > Electrician Fish Tape'),(2728,2549,0,'Hardware > Tools > Flashlights & Headlamps'),(2729,2550,0,'Hardware > Tools > Grease Guns'),(2730,2551,0,'Hardware > Tools > Grinders'),(2731,2552,0,'Hardware > Tools > Grips'),(2732,2553,0,'Hardware > Tools > Hammers'),(2733,2554,0,'Hardware > Tools > Hammers > Manual Hammers'),(2734,2555,0,'Hardware > Tools > Hammers > Powered Hammers'),(2735,2556,0,'Hardware > Tools > Handheld Power Mixers'),(2736,2557,0,'Hardware > Tools > Hardware Torches'),(2737,2558,0,'Hardware > Tools > Heat Guns'),(2738,2559,0,'Hardware > Tools > Impact Wrenches & Drivers'),(2739,2560,0,'Hardware > Tools > Industrial Vibrators'),(2740,2561,0,'Hardware > Tools > Inspection Mirrors'),(2741,2562,0,'Hardware > Tools > Ladders & Scaffolding'),(2742,2563,0,'Hardware > Tools > Ladders & Scaffolding > Ladder Carts'),(2743,2564,0,'Hardware > Tools > Ladders & Scaffolding > Ladders'),(2744,2565,0,'Hardware > Tools > Ladders & Scaffolding > Scaffolding'),(2745,2566,0,'Hardware > Tools > Ladders & Scaffolding > Step Stools'),(2746,2567,0,'Hardware > Tools > Ladders & Scaffolding > Work Platforms'),(2747,2568,0,'Hardware > Tools > Lathes'),(2748,2569,0,'Hardware > Tools > Light Bulb Changers'),(2749,2570,0,'Hardware > Tools > Lighters & Matches'),(2750,2571,0,'Hardware > Tools > Log Splitters'),(2751,2572,0,'Hardware > Tools > Magnetic Sweepers'),(2752,2573,0,'Hardware > Tools > Marking Tools'),(2753,2574,0,'Hardware > Tools > Masonry Tools'),(2754,2575,0,'Hardware > Tools > Masonry Tools > Brick Tools'),(2755,2576,0,'Hardware > Tools > Masonry Tools > Cement Mixers'),(2756,2577,0,'Hardware > Tools > Masonry Tools > Construction Lines'),(2757,2578,0,'Hardware > Tools > Masonry Tools > Floats'),(2758,2579,0,'Hardware > Tools > Masonry Tools > Grout Sponges'),(2759,2580,0,'Hardware > Tools > Masonry Tools > Masonry Edgers & Groovers'),(2760,2581,0,'Hardware > Tools > Masonry Tools > Masonry Jointers'),(2761,2582,0,'Hardware > Tools > Masonry Tools > Masonry Trowels'),(2762,2583,0,'Hardware > Tools > Masonry Tools > Power Trowels'),(2763,2584,0,'Hardware > Tools > Mattocks & Pickaxes'),(2764,2585,0,'Hardware > Tools > Measuring Tools & Sensors'),(2765,2586,0,'Hardware > Tools > Measuring Tools & Sensors > Air Quality Meters'),(2766,2587,0,'Hardware > Tools > Measuring Tools & Sensors > Altimeters'),(2767,2588,0,'Hardware > Tools > Measuring Tools & Sensors > Anemometers'),(2768,2589,0,'Hardware > Tools > Measuring Tools & Sensors > Barometers'),(2769,2590,0,'Hardware > Tools > Measuring Tools & Sensors > Calipers'),(2770,2591,0,'Hardware > Tools > Measuring Tools & Sensors > Cruising Rods'),(2771,2592,0,'Hardware > Tools > Measuring Tools & Sensors > Distance Meters'),(2772,2593,0,'Hardware > Tools > Measuring Tools & Sensors > Dividers'),(2773,2594,0,'Hardware > Tools > Measuring Tools & Sensors > Electrical Testing Tools'),(2774,2595,0,'Hardware > Tools > Measuring Tools & Sensors > Flow Meters & Controllers'),(2775,2596,0,'Hardware > Tools > Measuring Tools & Sensors > Gas Detectors'),(2776,2597,0,'Hardware > Tools > Measuring Tools & Sensors > Gauges'),(2777,2598,0,'Hardware > Tools > Measuring Tools & Sensors > Geiger Counters'),(2778,2599,0,'Hardware > Tools > Measuring Tools & Sensors > Hygrometers'),(2779,2600,0,'Hardware > Tools > Measuring Tools & Sensors > Infrared Thermometers'),(2780,2601,0,'Hardware > Tools > Measuring Tools & Sensors > Knife Guides'),(2781,2602,0,'Hardware > Tools > Measuring Tools & Sensors > Levels'),(2782,2603,0,'Hardware > Tools > Measuring Tools & Sensors > Levels > Bubble Levels'),(2783,2604,0,'Hardware > Tools > Measuring Tools & Sensors > Levels > Laser Levels'),(2784,2605,0,'Hardware > Tools > Measuring Tools & Sensors > Levels > Sight Levels'),(2785,2606,0,'Hardware > Tools > Measuring Tools & Sensors > Measuring Scales'),(2786,2607,0,'Hardware > Tools > Measuring Tools & Sensors > Measuring Wheels'),(2787,2608,0,'Hardware > Tools > Measuring Tools & Sensors > Moisture Meters'),(2788,2609,0,'Hardware > Tools > Measuring Tools & Sensors > Probes & Finders'),(2789,2610,0,'Hardware > Tools > Measuring Tools & Sensors > Protractors'),(2790,2611,0,'Hardware > Tools > Measuring Tools & Sensors > Rebar Locators'),(2791,2612,0,'Hardware > Tools > Measuring Tools & Sensors > Rulers'),(2792,2613,0,'Hardware > Tools > Measuring Tools & Sensors > Seismometer'),(2793,2614,0,'Hardware > Tools > Measuring Tools & Sensors > Sound Meters'),(2794,2615,0,'Hardware > Tools > Measuring Tools & Sensors > Squares'),(2795,2616,0,'Hardware > Tools > Measuring Tools & Sensors > Straight Edges'),(2796,2617,0,'Hardware > Tools > Measuring Tools & Sensors > Stud Sensors'),(2797,2618,0,'Hardware > Tools > Measuring Tools & Sensors > Tape Measures'),(2798,2619,0,'Hardware > Tools > Measuring Tools & Sensors > Theodolites'),(2799,2620,0,'Hardware > Tools > Measuring Tools & Sensors > Thermal Imaging Cameras'),(2800,2621,0,'Hardware > Tools > Measuring Tools & Sensors > Thermocouples & Thermopiles'),(2801,2622,0,'Hardware > Tools > Measuring Tools & Sensors > Transducers'),(2802,2623,0,'Hardware > Tools > Measuring Tools & Sensors > UV Light Meters'),(2803,2624,0,'Hardware > Tools > Measuring Tools & Sensors > Vibration Meters'),(2804,2625,0,'Hardware > Tools > Measuring Tools & Sensors > Weather Forecasters & Stations'),(2805,2626,0,'Hardware > Tools > Measuring Tools & Sensors > pH Meters'),(2806,2627,0,'Hardware > Tools > Milling Machines'),(2807,2628,0,'Hardware > Tools > Multifunction Power Tools'),(2808,2629,0,'Hardware > Tools > Nail Pullers'),(2809,2630,0,'Hardware > Tools > Nailers & Staplers'),(2810,2631,0,'Hardware > Tools > Oil Filter Drains'),(2811,2632,0,'Hardware > Tools > Paint Tools'),(2812,2633,0,'Hardware > Tools > Paint Tools > Airbrushes'),(2813,2634,0,'Hardware > Tools > Paint Tools > Paint Brushes'),(2814,2635,0,'Hardware > Tools > Paint Tools > Paint Edgers'),(2815,2636,0,'Hardware > Tools > Paint Tools > Paint Rollers'),(2816,2637,0,'Hardware > Tools > Paint Tools > Paint Shakers'),(2817,2638,0,'Hardware > Tools > Paint Tools > Paint Sponges'),(2818,2639,0,'Hardware > Tools > Paint Tools > Paint Sprayers'),(2819,2640,0,'Hardware > Tools > Paint Tools > Paint Strainers'),(2820,2641,0,'Hardware > Tools > Paint Tools > Paint Trays'),(2821,2642,0,'Hardware > Tools > Pickup Tools'),(2822,2643,0,'Hardware > Tools > Pipe & Bar Benders'),(2823,2644,0,'Hardware > Tools > Pipe & Tube Cleaners'),(2824,2645,0,'Hardware > Tools > Pipe Brushes'),(2825,2646,0,'Hardware > Tools > Planers'),(2826,2647,0,'Hardware > Tools > Planes'),(2827,2648,0,'Hardware > Tools > Pliers'),(2828,2649,0,'Hardware > Tools > Plungers'),(2829,2650,0,'Hardware > Tools > Polishers & Buffers'),(2830,2651,0,'Hardware > Tools > Post Hole Diggers'),(2831,2652,0,'Hardware > Tools > Pry Bars'),(2832,2653,0,'Hardware > Tools > Punches & Awls'),(2833,2654,0,'Hardware > Tools > Putty Knives & Scrapers'),(2834,2655,0,'Hardware > Tools > Reamers'),(2835,2656,0,'Hardware > Tools > Riveting Tools'),(2836,2657,0,'Hardware > Tools > Riveting Tools > Rivet Guns'),(2837,2658,0,'Hardware > Tools > Riveting Tools > Rivet Pliers'),(2838,2659,0,'Hardware > Tools > Routing Tools'),(2839,2660,0,'Hardware > Tools > Sanders'),(2840,2661,0,'Hardware > Tools > Sanding Blocks'),(2841,2662,0,'Hardware > Tools > Saw Horses'),(2842,2663,0,'Hardware > Tools > Saws'),(2843,2664,0,'Hardware > Tools > Saws > Band Saws'),(2844,2665,0,'Hardware > Tools > Saws > Cut-Off Saws'),(2845,2666,0,'Hardware > Tools > Saws > Hand Saws'),(2846,2667,0,'Hardware > Tools > Saws > Handheld Circular Saws'),(2847,2668,0,'Hardware > Tools > Saws > Jigsaws'),(2848,2669,0,'Hardware > Tools > Saws > Masonry & Tile Saws'),(2849,2670,0,'Hardware > Tools > Saws > Miter Saws'),(2850,2671,0,'Hardware > Tools > Saws > Panel Saws'),(2851,2672,0,'Hardware > Tools > Saws > Reciprocating Saws'),(2852,2673,0,'Hardware > Tools > Saws > Scroll Saws'),(2853,2674,0,'Hardware > Tools > Saws > Table Saws'),(2854,2675,0,'Hardware > Tools > Screwdrivers'),(2855,2676,0,'Hardware > Tools > Shapers'),(2856,2677,0,'Hardware > Tools > Sharpeners'),(2857,2678,0,'Hardware > Tools > Socket Drivers'),(2858,2679,0,'Hardware > Tools > Soldering Irons'),(2859,2680,0,'Hardware > Tools > Tap Reseaters'),(2860,2681,0,'Hardware > Tools > Taps & Dies'),(2861,2682,0,'Hardware > Tools > Threading Machines'),(2862,2683,0,'Hardware > Tools > Tool Clamps & Vises'),(2863,2684,0,'Hardware > Tools > Tool Files'),(2864,2685,0,'Hardware > Tools > Tool Keys'),(2865,2686,0,'Hardware > Tools > Tool Knives'),(2866,2687,0,'Hardware > Tools > Tool Sets'),(2867,2688,0,'Hardware > Tools > Tool Sets > Hand Tool Sets'),(2868,2689,0,'Hardware > Tools > Tool Sets > Power Tool Combo Sets'),(2869,2690,0,'Hardware > Tools > Welding Guns & Plasma Cutters'),(2870,2691,0,'Hardware > Tools > Wire & Cable Hand Tools'),(2871,2692,0,'Hardware > Tools > Work Lights'),(2872,2693,0,'Hardware > Tools > Wrenches'),(2873,2694,0,'Health & Beauty'),(2874,2695,0,'Health & Beauty > Health Care'),(2875,2696,0,'Health & Beauty > Health Care > Acupuncture'),(2876,2697,0,'Health & Beauty > Health Care > Acupuncture > Acupuncture Models'),(2877,2698,0,'Health & Beauty > Health Care > Acupuncture > Acupuncture Needles'),(2878,2699,0,'Health & Beauty > Health Care > Bed Pans'),(2879,2700,0,'Health & Beauty > Health Care > Biometric Monitor Accessories'),(2880,2701,0,'Health & Beauty > Health Care > Biometric Monitor Accessories > Activity Monitor Accessories'),(2881,2702,0,'Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Glucose Meter Accessories'),(2882,2703,0,'Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Glucose Meter Accessories > Blood Glucose Control Solution'),(2883,2704,0,'Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Glucose Meter Accessories > Blood Glucose Test Strips'),(2884,2705,0,'Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Glucose Meter Accessories > Lancing Devices'),(2885,2706,0,'Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Pressure Monitor Accessories'),(2886,2707,0,'Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Pressure Monitor Accessories > Blood Pressure Monitor Cuffs'),(2887,2708,0,'Health & Beauty > Health Care > Biometric Monitor Accessories > Body Weight Scale Accessories'),(2888,2709,0,'Health & Beauty > Health Care > Biometric Monitors'),(2889,2710,0,'Health & Beauty > Health Care > Biometric Monitors > Activity Monitors'),(2890,2711,0,'Health & Beauty > Health Care > Biometric Monitors > Blood Glucose Meters'),(2891,2712,0,'Health & Beauty > Health Care > Biometric Monitors > Blood Pressure Monitors'),(2892,2713,0,'Health & Beauty > Health Care > Biometric Monitors > Body Fat Analyzers'),(2893,2714,0,'Health & Beauty > Health Care > Biometric Monitors > Body Weight Scales'),(2894,2715,0,'Health & Beauty > Health Care > Biometric Monitors > Breathalyzers'),(2895,2716,0,'Health & Beauty > Health Care > Biometric Monitors > Cholesterol Analyzers'),(2896,2717,0,'Health & Beauty > Health Care > Biometric Monitors > Fertility Monitors and Ovulation Tests'),(2897,2718,0,'Health & Beauty > Health Care > Biometric Monitors > Medical Thermometers'),(2898,2719,0,'Health & Beauty > Health Care > Biometric Monitors > Prenatal Heart Rate Monitors'),(2899,2720,0,'Health & Beauty > Health Care > Biometric Monitors > Pulse Oximeters'),(2900,2721,0,'Health & Beauty > Health Care > Condoms'),(2901,2722,0,'Health & Beauty > Health Care > Conductivity Gels & Lotions'),(2902,2723,0,'Health & Beauty > Health Care > Contraceptive Cases'),(2903,2724,0,'Health & Beauty > Health Care > First Aid'),(2904,2725,0,'Health & Beauty > Health Care > First Aid > Antiseptics & Cleaning Supplies'),(2905,2726,0,'Health & Beauty > Health Care > First Aid > Cast & Bandage Protectors'),(2906,2727,0,'Health & Beauty > Health Care > First Aid > Eye Wash Supplies'),(2907,2728,0,'Health & Beauty > Health Care > First Aid > First Aid Kits'),(2908,2729,0,'Health & Beauty > Health Care > First Aid > Hot & Cold Therapies'),(2909,2730,0,'Health & Beauty > Health Care > First Aid > Hot & Cold Therapies > Heat Rubs'),(2910,2731,0,'Health & Beauty > Health Care > First Aid > Hot & Cold Therapies > Heating Pads'),(2911,2732,0,'Health & Beauty > Health Care > First Aid > Hot & Cold Therapies > Ice Packs'),(2912,2733,0,'Health & Beauty > Health Care > First Aid > Medical Tape & Bandages'),(2913,2734,0,'Health & Beauty > Health Care > Fitness & Nutrition'),(2914,2735,0,'Health & Beauty > Health Care > Fitness & Nutrition > Nutrition Bars'),(2915,2736,0,'Health & Beauty > Health Care > Fitness & Nutrition > Nutrition Drinks & Shakes'),(2916,2737,0,'Health & Beauty > Health Care > Fitness & Nutrition > Nutrition Gels & Chews'),(2917,2738,0,'Health & Beauty > Health Care > Fitness & Nutrition > Nutritional Food PurÃ©es'),(2918,2739,0,'Health & Beauty > Health Care > Fitness & Nutrition > Tube Feeding Supplements'),(2919,2740,0,'Health & Beauty > Health Care > Fitness & Nutrition > Vitamins & Supplements'),(2920,2741,0,'Health & Beauty > Health Care > Hearing Aids'),(2921,2742,0,'Health & Beauty > Health Care > Incontinence Aids'),(2922,2743,0,'Health & Beauty > Health Care > Light Therapy Lamps'),(2923,2744,0,'Health & Beauty > Health Care > Medical Alarm Systems'),(2924,2745,0,'Health & Beauty > Health Care > Medical Identification Tags & Jewelry'),(2925,2746,0,'Health & Beauty > Health Care > Medical Tests'),(2926,2747,0,'Health & Beauty > Health Care > Medical Tests > Allergy Test Kits'),(2927,2748,0,'Health & Beauty > Health Care > Medical Tests > Blood Typing Test Kits'),(2928,2749,0,'Health & Beauty > Health Care > Medical Tests > Drug Tests'),(2929,2750,0,'Health & Beauty > Health Care > Medical Tests > HIV Tests'),(2930,2751,0,'Health & Beauty > Health Care > Medical Tests > Pregnancy Tests'),(2931,2752,0,'Health & Beauty > Health Care > Medical Tests > Urinary Tract Infection Tests'),(2932,2753,0,'Health & Beauty > Health Care > Medicine & Drugs'),(2933,2754,0,'Health & Beauty > Health Care > Mobility & Accessibility'),(2934,2755,0,'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment'),(2935,2756,0,'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment > Mobility Scooters'),(2936,2757,0,'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment > Stair Lifts'),(2937,2758,0,'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment > Transfer Boards & Sheets'),(2938,2759,0,'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment > Wheelchairs'),(2939,2760,0,'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment Accessories'),(2940,2761,0,'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Furniture & Fixtures'),(2941,2762,0,'Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Furniture & Fixtures > Shower Benches & Seats'),(2942,2763,0,'Health & Beauty > Health Care > Mobility & Accessibility > Walking Aid Accessories'),(2943,2764,0,'Health & Beauty > Health Care > Mobility & Accessibility > Walking Aids'),(2944,2765,0,'Health & Beauty > Health Care > Mobility & Accessibility > Walking Aids > Canes & Walking Sticks'),(2945,2766,0,'Health & Beauty > Health Care > Mobility & Accessibility > Walking Aids > Crutches'),(2946,2767,0,'Health & Beauty > Health Care > Mobility & Accessibility > Walking Aids > Walkers'),(2947,2768,0,'Health & Beauty > Health Care > Occupational & Physical Therapy Equipment'),(2948,2769,0,'Health & Beauty > Health Care > Occupational & Physical Therapy Equipment > Electrical Muscle Stimulators'),(2949,2770,0,'Health & Beauty > Health Care > Occupational & Physical Therapy Equipment > Therapeutic Swings'),(2950,2771,0,'Health & Beauty > Health Care > Pillboxes'),(2951,2772,0,'Health & Beauty > Health Care > Respiratory Care'),(2952,2773,0,'Health & Beauty > Health Care > Respiratory Care > Nebulizers'),(2953,2774,0,'Health & Beauty > Health Care > Respiratory Care > Oxygen Tanks'),(2954,2775,0,'Health & Beauty > Health Care > Respiratory Care > PAP Machines'),(2955,2776,0,'Health & Beauty > Health Care > Respiratory Care > PAP Masks'),(2956,2777,0,'Health & Beauty > Health Care > Respiratory Care > Steam Inhalers'),(2957,2778,0,'Health & Beauty > Health Care > Specimen Cups'),(2958,2779,0,'Health & Beauty > Health Care > Spermicides'),(2959,2780,0,'Health & Beauty > Health Care > Stump Shrinkers'),(2960,2781,0,'Health & Beauty > Health Care > Supports & Braces'),(2961,2782,0,'Health & Beauty > Health Care > Surgical Lubricants'),(2962,2783,0,'Health & Beauty > Jewelry Cleaning & Care'),(2963,2784,0,'Health & Beauty > Jewelry Cleaning & Care > Jewelry Cleaning Solutions & Polishes'),(2964,2785,0,'Health & Beauty > Jewelry Cleaning & Care > Jewelry Cleaning Tools'),(2965,2786,0,'Health & Beauty > Jewelry Cleaning & Care > Jewelry Holders'),(2966,2787,0,'Health & Beauty > Jewelry Cleaning & Care > Jewelry Steam Cleaners'),(2967,2788,0,'Health & Beauty > Jewelry Cleaning & Care > Watch Repair Kits'),(2968,2789,0,'Health & Beauty > Personal Care'),(2969,2790,0,'Health & Beauty > Personal Care > Back Care'),(2970,2791,0,'Health & Beauty > Personal Care > Back Care > Back & Lumbar Support Cushions'),(2971,2792,0,'Health & Beauty > Personal Care > Cosmetics'),(2972,2793,0,'Health & Beauty > Personal Care > Cosmetics > Bath & Body'),(2973,2794,0,'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Adult Hygienic Wipes'),(2974,2795,0,'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Bar Soap'),(2975,2796,0,'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Bath Additives'),(2976,2797,0,'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Bath Brushes'),(2977,2798,0,'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Bath Sponges & Loofahs'),(2978,2799,0,'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Body Wash'),(2979,2800,0,'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Hand Sanitizers & Wipes'),(2980,2801,0,'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Liquid Hand Soap'),(2981,2802,0,'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Powdered Hand Soap'),(2982,2803,0,'Health & Beauty > Personal Care > Cosmetics > Bath & Body > Shower Caps'),(2983,2804,0,'Health & Beauty > Personal Care > Cosmetics > Bath & Body Gift Sets'),(2984,2805,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Sets'),(2985,2806,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tool Cleansers'),(2986,2807,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools'),(2987,2808,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools'),(2988,2809,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Double Eyelid Glue & Tape'),(2989,2810,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Eyebrow Stencils'),(2990,2811,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Eyelash Curler Refills'),(2991,2812,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Eyelash Curlers'),(2992,2813,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Face Mirrors'),(2993,2814,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Facial Blotting Paper'),(2994,2815,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > False Eyelash Accessories'),(2995,2816,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > False Eyelash Accessories > False Eyelash Adhesive'),(2996,2817,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > False Eyelash Accessories > False Eyelash Applicators'),(2997,2818,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > False Eyelash Accessories > False Eyelash Remover'),(2998,2819,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Makeup Brushes'),(2999,2820,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Makeup Sponges'),(3000,2821,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Refillable Makeup Palettes & Cases'),(3001,2822,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools'),(3002,2823,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Cuticle Pushers'),(3003,2824,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Cuticle Scissors'),(3004,2825,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Manicure & Pedicure Spacers'),(3005,2826,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Manicure Tool Sets'),(3006,2827,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Buffers'),(3007,2828,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Clippers'),(3008,2829,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Drill Accessories'),(3009,2830,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Drills'),(3010,2831,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Dryers'),(3011,2832,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Files & Emery Boards'),(3012,2833,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools'),(3013,2834,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Facial Saunas'),(3014,2835,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Foot Files'),(3015,2836,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Lotion & Sunscreen Applicators'),(3016,2837,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Pumice Stones'),(3017,2838,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Skin Care Extractors'),(3018,2839,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Skin Care Rollers'),(3019,2840,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Skin Cleansing Brush Heads'),(3020,2841,0,'Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Skin Cleansing Brushes & Systems'),(3021,2842,0,'Health & Beauty > Personal Care > Cosmetics > Makeup'),(3022,2843,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Body Makeup'),(3023,2844,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Body Makeup > Body & Hair Glitter'),(3024,2845,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Body Makeup > Body Paint & Foundation'),(3025,2846,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Costume & Stage Makeup'),(3026,2847,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup'),(3027,2848,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Eye Primer'),(3028,2849,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Eye Shadow'),(3029,2850,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Eyebrow Enhancers'),(3030,2851,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Eyeliner'),(3031,2852,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > False Eyelashes'),(3032,2853,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Lash & Brow Growth Treatments'),(3033,2854,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Mascara'),(3034,2855,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Mascara Primer'),(3035,2856,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup'),(3036,2857,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup > Blushes & Bronzers'),(3037,2858,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup > Face Powder'),(3038,2859,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup > Face Primer'),(3039,2860,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup > Foundations & Concealers'),(3040,2861,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup > Highlighters & Luminizers'),(3041,2862,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup'),(3042,2863,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup > Lip & Cheek Stains'),(3043,2864,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup > Lip Gloss'),(3044,2865,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup > Lip Liner'),(3045,2866,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup > Lip Primer'),(3046,2867,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup > Lipstick'),(3047,2868,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Makeup Finishing Sprays'),(3048,2869,0,'Health & Beauty > Personal Care > Cosmetics > Makeup > Temporary Tattoos'),(3049,2870,0,'Health & Beauty > Personal Care > Cosmetics > Nail Care'),(3050,2871,0,'Health & Beauty > Personal Care > Cosmetics > Nail Care > Cuticle Cream & Oil'),(3051,2872,0,'Health & Beauty > Personal Care > Cosmetics > Nail Care > False Nails'),(3052,2873,0,'Health & Beauty > Personal Care > Cosmetics > Nail Care > Manicure Glue'),(3053,2874,0,'Health & Beauty > Personal Care > Cosmetics > Nail Care > Nail Art Kits & Accessories'),(3054,2875,0,'Health & Beauty > Personal Care > Cosmetics > Nail Care > Nail Polish Drying Drops & Sprays'),(3055,2876,0,'Health & Beauty > Personal Care > Cosmetics > Nail Care > Nail Polish Removers'),(3056,2877,0,'Health & Beauty > Personal Care > Cosmetics > Nail Care > Nail Polish Thinners'),(3057,2878,0,'Health & Beauty > Personal Care > Cosmetics > Nail Care > Nail Polishes'),(3058,2879,0,'Health & Beauty > Personal Care > Cosmetics > Perfume & Cologne'),(3059,2880,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care'),(3060,2881,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Acne Treatments & Kits'),(3061,2882,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Anti-Aging Skin Care Kits'),(3062,2883,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Body Oil'),(3063,2884,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Body Powder'),(3064,2885,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Compressed Skin Care Mask Sheets'),(3065,2886,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Facial Cleansers'),(3066,2887,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Facial Cleansing Kits'),(3067,2888,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Facial Pore Strips'),(3068,2889,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Lip Balms & Treatments'),(3069,2890,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Lotion & Moisturizer'),(3070,2891,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Makeup Removers'),(3071,2892,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Petroleum Jelly'),(3072,2893,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Skin Care Masks & Peels'),(3073,2894,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Skin Insect Repellent'),(3074,2895,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Sunscreen'),(3075,2896,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Tanning Products'),(3076,2897,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Tanning Products > Self Tanner'),(3077,2898,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Tanning Products > Tanning Oil & Lotion'),(3078,2899,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Toners & Astringents'),(3079,2900,0,'Health & Beauty > Personal Care > Cosmetics > Skin Care > Wart Removers'),(3080,2901,0,'Health & Beauty > Personal Care > Cotton Balls'),(3081,2902,0,'Health & Beauty > Personal Care > Cotton Swabs'),(3082,2903,0,'Health & Beauty > Personal Care > Deodorant & Anti-Perspirant'),(3083,2904,0,'Health & Beauty > Personal Care > Ear Care'),(3084,2905,0,'Health & Beauty > Personal Care > Ear Care > Ear Candles'),(3085,2906,0,'Health & Beauty > Personal Care > Ear Care > Ear Drops'),(3086,2907,0,'Health & Beauty > Personal Care > Ear Care > Ear Dryers'),(3087,2908,0,'Health & Beauty > Personal Care > Ear Care > Ear Picks & Spoons'),(3088,2909,0,'Health & Beauty > Personal Care > Ear Care > Ear Syringes'),(3089,2910,0,'Health & Beauty > Personal Care > Ear Care > Ear Wax Removal Kits'),(3090,2911,0,'Health & Beauty > Personal Care > Ear Care > Earplug Dispensers'),(3091,2912,0,'Health & Beauty > Personal Care > Ear Care > Earplugs'),(3092,2913,0,'Health & Beauty > Personal Care > Enema Kits & Supplies'),(3093,2914,0,'Health & Beauty > Personal Care > Feminine Sanitary Supplies'),(3094,2915,0,'Health & Beauty > Personal Care > Feminine Sanitary Supplies > Feminine Deodorant'),(3095,2916,0,'Health & Beauty > Personal Care > Feminine Sanitary Supplies > Feminine Douches & Creams'),(3096,2917,0,'Health & Beauty > Personal Care > Feminine Sanitary Supplies > Feminine Pads & Protectors'),(3097,2918,0,'Health & Beauty > Personal Care > Feminine Sanitary Supplies > Menstrual Cups'),(3098,2919,0,'Health & Beauty > Personal Care > Feminine Sanitary Supplies > Tampons'),(3099,2920,0,'Health & Beauty > Personal Care > Foot Care'),(3100,2921,0,'Health & Beauty > Personal Care > Foot Care > Bunion Care Supplies'),(3101,2922,0,'Health & Beauty > Personal Care > Foot Care > Corn & Callus Care Supplies'),(3102,2923,0,'Health & Beauty > Personal Care > Foot Care > Foot Odor Removers'),(3103,2924,0,'Health & Beauty > Personal Care > Foot Care > Insoles & Inserts'),(3104,2925,0,'Health & Beauty > Personal Care > Foot Care > Toe Spacers'),(3105,2926,0,'Health & Beauty > Personal Care > Hair Care'),(3106,2927,0,'Health & Beauty > Personal Care > Hair Care > Hair Care Kits'),(3107,2928,0,'Health & Beauty > Personal Care > Hair Care > Hair Color'),(3108,2929,0,'Health & Beauty > Personal Care > Hair Care > Hair Color Removers'),(3109,2930,0,'Health & Beauty > Personal Care > Hair Care > Hair Coloring Accessories'),(3110,2931,0,'Health & Beauty > Personal Care > Hair Care > Hair Loss Concealers'),(3111,2932,0,'Health & Beauty > Personal Care > Hair Care > Hair Loss Treatments'),(3112,2933,0,'Health & Beauty > Personal Care > Hair Care > Hair Permanents & Straighteners'),(3113,2934,0,'Health & Beauty > Personal Care > Hair Care > Hair Shears'),(3114,2935,0,'Health & Beauty > Personal Care > Hair Care > Hair Steamers & Heat Caps'),(3115,2936,0,'Health & Beauty > Personal Care > Hair Care > Hair Styling Products'),(3116,2937,0,'Health & Beauty > Personal Care > Hair Care > Hair Styling Tool Accessories'),(3117,2938,0,'Health & Beauty > Personal Care > Hair Care > Hair Styling Tool Accessories > Hair Curler Clips & Pins'),(3118,2939,0,'Health & Beauty > Personal Care > Hair Care > Hair Styling Tool Accessories > Hair Dryer Accessories'),(3119,2940,0,'Health & Beauty > Personal Care > Hair Care > Hair Styling Tool Accessories > Hair Iron Accessories'),(3120,2941,0,'Health & Beauty > Personal Care > Hair Care > Hair Styling Tools'),(3121,2942,0,'Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Combs & Brushes'),(3122,2943,0,'Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Curling Irons'),(3123,2944,0,'Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Hair Curlers'),(3124,2945,0,'Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Hair Dryers'),(3125,2946,0,'Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Hair Straighteners'),(3126,2947,0,'Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Hair Styling Tool Sets'),(3127,2948,0,'Health & Beauty > Personal Care > Hair Care > Shampoo & Conditioner'),(3128,2949,0,'Health & Beauty > Personal Care > Massage & Relaxation'),(3129,2950,0,'Health & Beauty > Personal Care > Massage & Relaxation > Back Scratchers'),(3130,2951,0,'Health & Beauty > Personal Care > Massage & Relaxation > Eye Pillows'),(3131,2952,0,'Health & Beauty > Personal Care > Massage & Relaxation > Massage Chairs'),(3132,2953,0,'Health & Beauty > Personal Care > Massage & Relaxation > Massage Oil'),(3133,2954,0,'Health & Beauty > Personal Care > Massage & Relaxation > Massage Stone Warmers'),(3134,2955,0,'Health & Beauty > Personal Care > Massage & Relaxation > Massage Stones'),(3135,2956,0,'Health & Beauty > Personal Care > Massage & Relaxation > Massage Tables'),(3136,2957,0,'Health & Beauty > Personal Care > Massage & Relaxation > Massagers'),(3137,2958,0,'Health & Beauty > Personal Care > Oral Care'),(3138,2959,0,'Health & Beauty > Personal Care > Oral Care > Breath Spray'),(3139,2960,0,'Health & Beauty > Personal Care > Oral Care > Dental Floss'),(3140,2961,0,'Health & Beauty > Personal Care > Oral Care > Dental Mouthguards'),(3141,2962,0,'Health & Beauty > Personal Care > Oral Care > Dental Water Jet Replacement Tips'),(3142,2963,0,'Health & Beauty > Personal Care > Oral Care > Dental Water Jets'),(3143,2964,0,'Health & Beauty > Personal Care > Oral Care > Denture Adhesives'),(3144,2965,0,'Health & Beauty > Personal Care > Oral Care > Denture Cleaners'),(3145,2966,0,'Health & Beauty > Personal Care > Oral Care > Denture Repair Kits'),(3146,2967,0,'Health & Beauty > Personal Care > Oral Care > Dentures'),(3147,2968,0,'Health & Beauty > Personal Care > Oral Care > Gum Stimulators'),(3148,2969,0,'Health & Beauty > Personal Care > Oral Care > Mouthwash'),(3149,2970,0,'Health & Beauty > Personal Care > Oral Care > Orthodontic Appliance Cases'),(3150,2971,0,'Health & Beauty > Personal Care > Oral Care > Power Flossers'),(3151,2972,0,'Health & Beauty > Personal Care > Oral Care > Teeth Whiteners'),(3152,2973,0,'Health & Beauty > Personal Care > Oral Care > Tongue Scrapers'),(3153,2974,0,'Health & Beauty > Personal Care > Oral Care > Toothbrush Accessories'),(3154,2975,0,'Health & Beauty > Personal Care > Oral Care > Toothbrush Accessories > Toothbrush Covers'),(3155,2976,0,'Health & Beauty > Personal Care > Oral Care > Toothbrush Accessories > Toothbrush Replacement Heads'),(3156,2977,0,'Health & Beauty > Personal Care > Oral Care > Toothbrush Accessories > Toothbrush Sanitizers'),(3157,2978,0,'Health & Beauty > Personal Care > Oral Care > Toothbrushes'),(3158,2979,0,'Health & Beauty > Personal Care > Oral Care > Toothpaste'),(3159,2980,0,'Health & Beauty > Personal Care > Oral Care > Toothpaste Squeezers & Dispensers'),(3160,2981,0,'Health & Beauty > Personal Care > Oral Care > Toothpicks'),(3161,2982,0,'Health & Beauty > Personal Care > Personal Lubricants'),(3162,2983,0,'Health & Beauty > Personal Care > Shaving & Grooming'),(3163,2984,0,'Health & Beauty > Personal Care > Shaving & Grooming > Aftershave'),(3164,2985,0,'Health & Beauty > Personal Care > Shaving & Grooming > Body & Facial Hair Bleach'),(3165,2986,0,'Health & Beauty > Personal Care > Shaving & Grooming > Electric Razor Accessories'),(3166,2987,0,'Health & Beauty > Personal Care > Shaving & Grooming > Electric Razors'),(3167,2988,0,'Health & Beauty > Personal Care > Shaving & Grooming > Hair Clipper & Trimmer Accessories'),(3168,2989,0,'Health & Beauty > Personal Care > Shaving & Grooming > Hair Clippers & Trimmers'),(3169,2990,0,'Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal'),(3170,2991,0,'Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Depilatories'),(3171,2992,0,'Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Electrolysis Devices'),(3172,2993,0,'Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Epilators'),(3173,2994,0,'Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Hair Removal Wax Warmers'),(3174,2995,0,'Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Laser & IPL Hair Removal Devices'),(3175,2996,0,'Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Waxing Kits & Supplies'),(3176,2997,0,'Health & Beauty > Personal Care > Shaving & Grooming > Razors & Razor Blades'),(3177,2998,0,'Health & Beauty > Personal Care > Shaving & Grooming > Shaving Bowls & Mugs'),(3178,2999,0,'Health & Beauty > Personal Care > Shaving & Grooming > Shaving Brushes'),(3179,3000,0,'Health & Beauty > Personal Care > Shaving & Grooming > Shaving Cream'),(3180,3001,0,'Health & Beauty > Personal Care > Shaving & Grooming > Shaving Kits'),(3181,3002,0,'Health & Beauty > Personal Care > Shaving & Grooming > Styptic Pencils'),(3182,3003,0,'Health & Beauty > Personal Care > Sleeping Aids'),(3183,3004,0,'Health & Beauty > Personal Care > Sleeping Aids > Eye Masks'),(3184,3005,0,'Health & Beauty > Personal Care > Sleeping Aids > Snoring & Sleep Apnea Aids'),(3185,3006,0,'Health & Beauty > Personal Care > Sleeping Aids > Travel Pillows'),(3186,3007,0,'Health & Beauty > Personal Care > Sleeping Aids > White Noise Machines'),(3187,3008,0,'Health & Beauty > Personal Care > Spray Tanning Tents'),(3188,3009,0,'Health & Beauty > Personal Care > Tanning Beds'),(3189,3010,0,'Health & Beauty > Personal Care > Tweezers'),(3190,3011,0,'Health & Beauty > Personal Care > Vision Care'),(3191,3012,0,'Health & Beauty > Personal Care > Vision Care > Contact Lens Care'),(3192,3013,0,'Health & Beauty > Personal Care > Vision Care > Contact Lens Care > Contact Lens Care Kits'),(3193,3014,0,'Health & Beauty > Personal Care > Vision Care > Contact Lens Care > Contact Lens Cases'),(3194,3015,0,'Health & Beauty > Personal Care > Vision Care > Contact Lens Care > Contact Lens Solution'),(3195,3016,0,'Health & Beauty > Personal Care > Vision Care > Contact Lenses'),(3196,3017,0,'Health & Beauty > Personal Care > Vision Care > Eye Drops & Lubricants'),(3197,3018,0,'Health & Beauty > Personal Care > Vision Care > Eyeglass Lenses'),(3198,3019,0,'Health & Beauty > Personal Care > Vision Care > Eyeglasses'),(3199,3020,0,'Health & Beauty > Personal Care > Vision Care > Eyewear Accessories'),(3200,3021,0,'Health & Beauty > Personal Care > Vision Care > Eyewear Accessories > Eyewear Cases & Holders'),(3201,3022,0,'Health & Beauty > Personal Care > Vision Care > Eyewear Accessories > Eyewear Lens Cleaning Solutions'),(3202,3023,0,'Health & Beauty > Personal Care > Vision Care > Eyewear Accessories > Eyewear Straps & Chains'),(3203,3024,0,'Health & Beauty > Personal Care > Vision Care > Sunglass Lenses'),(3204,3025,0,'Home & Garden'),(3205,3026,0,'Home & Garden > Bathroom Accessories'),(3206,3027,0,'Home & Garden > Bathroom Accessories > Bath Caddies'),(3207,3028,0,'Home & Garden > Bathroom Accessories > Bath Mats & Rugs'),(3208,3029,0,'Home & Garden > Bathroom Accessories > Bath Pillows'),(3209,3030,0,'Home & Garden > Bathroom Accessories > Bathroom Accessory Mounts'),(3210,3031,0,'Home & Garden > Bathroom Accessories > Bathroom Accessory Sets'),(3211,3032,0,'Home & Garden > Bathroom Accessories > Facial Tissue Holders'),(3212,3033,0,'Home & Garden > Bathroom Accessories > Hand Dryer Accessories'),(3213,3034,0,'Home & Garden > Bathroom Accessories > Hand Dryers'),(3214,3035,0,'Home & Garden > Bathroom Accessories > Medicine Cabinets'),(3215,3036,0,'Home & Garden > Bathroom Accessories > Robe Hooks'),(3216,3037,0,'Home & Garden > Bathroom Accessories > Safety Grab Bars'),(3217,3038,0,'Home & Garden > Bathroom Accessories > Shower Curtain Rings'),(3218,3039,0,'Home & Garden > Bathroom Accessories > Shower Curtains'),(3219,3040,0,'Home & Garden > Bathroom Accessories > Shower Rods'),(3220,3041,0,'Home & Garden > Bathroom Accessories > Soap & Lotion Dispensers'),(3221,3042,0,'Home & Garden > Bathroom Accessories > Soap Dishes & Holders'),(3222,3043,0,'Home & Garden > Bathroom Accessories > Toilet Brush Replacement Heads'),(3223,3044,0,'Home & Garden > Bathroom Accessories > Toilet Brushes & Holders'),(3224,3045,0,'Home & Garden > Bathroom Accessories > Toilet Paper Holders'),(3225,3046,0,'Home & Garden > Bathroom Accessories > Toothbrush Holders'),(3226,3047,0,'Home & Garden > Bathroom Accessories > Towel Racks & Holders'),(3227,3048,0,'Home & Garden > Business & Home Security'),(3228,3049,0,'Home & Garden > Business & Home Security > Dummy Surveillance Cameras'),(3229,3050,0,'Home & Garden > Business & Home Security > Home Alarm Systems'),(3230,3051,0,'Home & Garden > Business & Home Security > Motion Sensors'),(3231,3052,0,'Home & Garden > Business & Home Security > Safety & Security Mirrors'),(3232,3053,0,'Home & Garden > Business & Home Security > Security Lights'),(3233,3054,0,'Home & Garden > Business & Home Security > Security Monitors & Recorders'),(3234,3055,0,'Home & Garden > Business & Home Security > Security Safe Accessories'),(3235,3056,0,'Home & Garden > Business & Home Security > Security Safes'),(3236,3057,0,'Home & Garden > Business & Home Security > Security System Sensors'),(3237,3058,0,'Home & Garden > Decor'),(3238,3059,0,'Home & Garden > Decor > Address Signs'),(3239,3060,0,'Home & Garden > Decor > Artificial Flora'),(3240,3061,0,'Home & Garden > Decor > Artificial Food'),(3241,3062,0,'Home & Garden > Decor > Artwork'),(3242,3063,0,'Home & Garden > Decor > Artwork > Decorative Tapestries'),(3243,3064,0,'Home & Garden > Decor > Artwork > Posters, Prints, & Visual Artwork'),(3244,3065,0,'Home & Garden > Decor > Artwork > Sculptures & Statues'),(3245,3066,0,'Home & Garden > Decor > Backrest Pillows'),(3246,3067,0,'Home & Garden > Decor > Baskets'),(3247,3068,0,'Home & Garden > Decor > Bird & Wildlife Feeder Accessories'),(3248,3069,0,'Home & Garden > Decor > Bird & Wildlife Feeders'),(3249,3070,0,'Home & Garden > Decor > Bird & Wildlife Feeders > Bird Feeders'),(3250,3071,0,'Home & Garden > Decor > Bird & Wildlife Feeders > Butterfly Feeders'),(3251,3072,0,'Home & Garden > Decor > Bird & Wildlife Feeders > Squirrel Feeders'),(3252,3073,0,'Home & Garden > Decor > Bird & Wildlife House Accessories'),(3253,3074,0,'Home & Garden > Decor > Bird & Wildlife Houses'),(3254,3075,0,'Home & Garden > Decor > Bird & Wildlife Houses > Bat Houses'),(3255,3076,0,'Home & Garden > Decor > Bird & Wildlife Houses > Birdhouses'),(3256,3077,0,'Home & Garden > Decor > Bird & Wildlife Houses > Butterfly Houses'),(3257,3078,0,'Home & Garden > Decor > Bird Baths'),(3258,3079,0,'Home & Garden > Decor > Bookends'),(3259,3080,0,'Home & Garden > Decor > Cardboard Cutouts'),(3260,3081,0,'Home & Garden > Decor > Chair & Sofa Cushions'),(3261,3082,0,'Home & Garden > Decor > Clock Parts'),(3262,3083,0,'Home & Garden > Decor > Clocks'),(3263,3084,0,'Home & Garden > Decor > Clocks > Alarm Clocks'),(3264,3085,0,'Home & Garden > Decor > Clocks > Desk & Shelf Clocks'),(3265,3086,0,'Home & Garden > Decor > Clocks > Floor & Grandfather Clocks'),(3266,3087,0,'Home & Garden > Decor > Clocks > Wall Clocks'),(3267,3088,0,'Home & Garden > Decor > Coat & Hat Racks'),(3268,3089,0,'Home & Garden > Decor > Decorative Bells'),(3269,3090,0,'Home & Garden > Decor > Decorative Bottles'),(3270,3091,0,'Home & Garden > Decor > Decorative Bowls'),(3271,3092,0,'Home & Garden > Decor > Decorative Jars'),(3272,3093,0,'Home & Garden > Decor > Decorative Plaques'),(3273,3094,0,'Home & Garden > Decor > Decorative Plates'),(3274,3095,0,'Home & Garden > Decor > Decorative Trays'),(3275,3096,0,'Home & Garden > Decor > Door Mats'),(3276,3097,0,'Home & Garden > Decor > Dreamcatchers'),(3277,3098,0,'Home & Garden > Decor > Dried Flowers'),(3278,3099,0,'Home & Garden > Decor > Ecospheres'),(3279,3100,0,'Home & Garden > Decor > Figurines'),(3280,3101,0,'Home & Garden > Decor > Finials'),(3281,3102,0,'Home & Garden > Decor > Flag & Windsock Accessories'),(3282,3103,0,'Home & Garden > Decor > Flag & Windsock Accessories > Flag & Windsock Pole Lights'),(3283,3104,0,'Home & Garden > Decor > Flag & Windsock Accessories > Flag & Windsock Pole Mounting Hardware & Kits'),(3284,3105,0,'Home & Garden > Decor > Flag & Windsock Accessories > Flag & Windsock Poles'),(3285,3106,0,'Home & Garden > Decor > Flags & Windsocks'),(3286,3107,0,'Home & Garden > Decor > Flameless Candles'),(3287,3108,0,'Home & Garden > Decor > Fountains & Ponds'),(3288,3109,0,'Home & Garden > Decor > Fountains & Ponds > Fountain & Pond Accessories'),(3289,3110,0,'Home & Garden > Decor > Fountains & Ponds > Fountains & Waterfalls'),(3290,3111,0,'Home & Garden > Decor > Fountains & Ponds > Ponds'),(3291,3112,0,'Home & Garden > Decor > Garden & Stepping Stones'),(3292,3113,0,'Home & Garden > Decor > Growth Charts'),(3293,3114,0,'Home & Garden > Decor > Home Decor Decals'),(3294,3115,0,'Home & Garden > Decor > Home Fragrance Accessories'),(3295,3116,0,'Home & Garden > Decor > Home Fragrance Accessories > Candle & Oil Warmers'),(3296,3117,0,'Home & Garden > Decor > Home Fragrance Accessories > Candle Holders'),(3297,3118,0,'Home & Garden > Decor > Home Fragrance Accessories > Candle Snuffers'),(3298,3119,0,'Home & Garden > Decor > Home Fragrance Accessories > Incense Holders'),(3299,3120,0,'Home & Garden > Decor > Home Fragrances'),(3300,3121,0,'Home & Garden > Decor > Home Fragrances > Air Fresheners'),(3301,3122,0,'Home & Garden > Decor > Home Fragrances > Candles'),(3302,3123,0,'Home & Garden > Decor > Home Fragrances > Fragrance Oil'),(3303,3124,0,'Home & Garden > Decor > Home Fragrances > Incense'),(3304,3125,0,'Home & Garden > Decor > Home Fragrances > Potpourri'),(3305,3126,0,'Home & Garden > Decor > Home Fragrances > Wax Tarts'),(3306,3127,0,'Home & Garden > Decor > Hourglasses'),(3307,3128,0,'Home & Garden > Decor > House Numbers & Letters'),(3308,3129,0,'Home & Garden > Decor > Lawn Ornaments & Garden Sculptures'),(3309,3130,0,'Home & Garden > Decor > Mail Slots'),(3310,3131,0,'Home & Garden > Decor > Mailbox Accessories'),(3311,3132,0,'Home & Garden > Decor > Mailbox Accessories > Mailbox Covers'),(3312,3133,0,'Home & Garden > Decor > Mailbox Accessories > Mailbox Enclosures'),(3313,3134,0,'Home & Garden > Decor > Mailbox Accessories > Mailbox Flags'),(3314,3135,0,'Home & Garden > Decor > Mailbox Accessories > Mailbox Posts'),(3315,3136,0,'Home & Garden > Decor > Mailbox Accessories > Mailbox Replacement Doors'),(3316,3137,0,'Home & Garden > Decor > Mailboxes'),(3317,3138,0,'Home & Garden > Decor > Mirrors'),(3318,3139,0,'Home & Garden > Decor > Music Boxes'),(3319,3140,0,'Home & Garden > Decor > Napkin Rings'),(3320,3141,0,'Home & Garden > Decor > Novelty Signs'),(3321,3142,0,'Home & Garden > Decor > Ottoman Cushions'),(3322,3143,0,'Home & Garden > Decor > Picture Frames'),(3323,3144,0,'Home & Garden > Decor > Piggy Banks & Money Jars'),(3324,3145,0,'Home & Garden > Decor > Rain Chains'),(3325,3146,0,'Home & Garden > Decor > Rain Gauges'),(3326,3147,0,'Home & Garden > Decor > Refrigerator Magnets'),(3327,3148,0,'Home & Garden > Decor > Rugs'),(3328,3149,0,'Home & Garden > Decor > Seasonal & Holiday Decorations'),(3329,3150,0,'Home & Garden > Decor > Seasonal & Holiday Decorations > Advent Calendars'),(3330,3151,0,'Home & Garden > Decor > Seasonal & Holiday Decorations > Christmas Tree Skirts'),(3331,3152,0,'Home & Garden > Decor > Seasonal & Holiday Decorations > Christmas Tree Stands'),(3332,3153,0,'Home & Garden > Decor > Seasonal & Holiday Decorations > Easter Egg Decorating Kits'),(3333,3154,0,'Home & Garden > Decor > Seasonal & Holiday Decorations > Holiday Ornament Displays & Stands'),(3334,3155,0,'Home & Garden > Decor > Seasonal & Holiday Decorations > Holiday Ornament Hooks'),(3335,3156,0,'Home & Garden > Decor > Seasonal & Holiday Decorations > Holiday Ornaments'),(3336,3157,0,'Home & Garden > Decor > Seasonal & Holiday Decorations > Holiday Stocking Hangers'),(3337,3158,0,'Home & Garden > Decor > Seasonal & Holiday Decorations > Holiday Stockings'),(3338,3159,0,'Home & Garden > Decor > Seasonal & Holiday Decorations > Japanese Traditional Dolls'),(3339,3160,0,'Home & Garden > Decor > Seasonal & Holiday Decorations > Nativity Sets'),(3340,3161,0,'Home & Garden > Decor > Seasonal & Holiday Decorations > Seasonal Village Sets & Accessories'),(3341,3162,0,'Home & Garden > Decor > Shadow Boxes'),(3342,3163,0,'Home & Garden > Decor > Slipcovers'),(3343,3164,0,'Home & Garden > Decor > Snow Globes'),(3344,3165,0,'Home & Garden > Decor > Suncatchers'),(3345,3166,0,'Home & Garden > Decor > Sundials'),(3346,3167,0,'Home & Garden > Decor > Throw Pillows'),(3347,3168,0,'Home & Garden > Decor > Trunks'),(3348,3169,0,'Home & Garden > Decor > Vase Fillers & Table Scatters'),(3349,3170,0,'Home & Garden > Decor > Vases'),(3350,3171,0,'Home & Garden > Decor > Wallpaper'),(3351,3172,0,'Home & Garden > Decor > Weather Vanes & Roof Decor'),(3352,3173,0,'Home & Garden > Decor > Wind Chimes'),(3353,3174,0,'Home & Garden > Decor > Wind Wheels & Spinners'),(3354,3175,0,'Home & Garden > Decor > Window Magnets'),(3355,3176,0,'Home & Garden > Decor > Window Treatment Accessories'),(3356,3177,0,'Home & Garden > Decor > Window Treatment Accessories > Curtain & Drape Rings'),(3357,3178,0,'Home & Garden > Decor > Window Treatment Accessories > Curtain & Drape Rods'),(3358,3179,0,'Home & Garden > Decor > Window Treatment Accessories > Curtain Holdbacks & Tassels'),(3359,3180,0,'Home & Garden > Decor > Window Treatment Accessories > Window Treatment Replacement Parts'),(3360,3181,0,'Home & Garden > Decor > Window Treatments'),(3361,3182,0,'Home & Garden > Decor > Window Treatments > Curtains & Drapes'),(3362,3183,0,'Home & Garden > Decor > Window Treatments > Stained Glass Panels'),(3363,3184,0,'Home & Garden > Decor > Window Treatments > Window Blinds & Shades'),(3364,3185,0,'Home & Garden > Decor > Window Treatments > Window Films'),(3365,3186,0,'Home & Garden > Decor > Window Treatments > Window Screens'),(3366,3187,0,'Home & Garden > Decor > Window Treatments > Window Valances & Cornices'),(3367,3188,0,'Home & Garden > Decor > World Globes'),(3368,3189,0,'Home & Garden > Decor > Wreaths & Garlands'),(3369,3190,0,'Home & Garden > Emergency Preparedness'),(3370,3191,0,'Home & Garden > Emergency Preparedness > Earthquake Alarms'),(3371,3192,0,'Home & Garden > Emergency Preparedness > Emergency Blankets'),(3372,3193,0,'Home & Garden > Emergency Preparedness > Emergency Food Kits'),(3373,3194,0,'Home & Garden > Emergency Preparedness > Emergency Tools & Kits'),(3374,3195,0,'Home & Garden > Emergency Preparedness > Furniture Anchors'),(3375,3196,0,'Home & Garden > Fireplace & Wood Stove Accessories'),(3376,3197,0,'Home & Garden > Fireplace & Wood Stove Accessories > Bellows'),(3377,3198,0,'Home & Garden > Fireplace & Wood Stove Accessories > Fireplace & Wood Stove Grates'),(3378,3199,0,'Home & Garden > Fireplace & Wood Stove Accessories > Fireplace Andirons'),(3379,3200,0,'Home & Garden > Fireplace & Wood Stove Accessories > Fireplace Reflectors'),(3380,3201,0,'Home & Garden > Fireplace & Wood Stove Accessories > Fireplace Screens'),(3381,3202,0,'Home & Garden > Fireplace & Wood Stove Accessories > Fireplace Tools'),(3382,3203,0,'Home & Garden > Fireplace & Wood Stove Accessories > Firewood & Fuel'),(3383,3204,0,'Home & Garden > Fireplace & Wood Stove Accessories > Hearth Pads'),(3384,3205,0,'Home & Garden > Fireplace & Wood Stove Accessories > Log Rack & Carrier Accessories'),(3385,3206,0,'Home & Garden > Fireplace & Wood Stove Accessories > Log Racks & Carriers'),(3386,3207,0,'Home & Garden > Fireplace & Wood Stove Accessories > Wood Stove Fans & Blowers'),(3387,3208,0,'Home & Garden > Fireplaces'),(3388,3209,0,'Home & Garden > Flood, Fire & Gas Safety'),(3389,3210,0,'Home & Garden > Flood, Fire & Gas Safety > Fire Alarm Control Panels'),(3390,3211,0,'Home & Garden > Flood, Fire & Gas Safety > Fire Alarms'),(3391,3212,0,'Home & Garden > Flood, Fire & Gas Safety > Fire Extinguisher & Equipment Storage'),(3392,3213,0,'Home & Garden > Flood, Fire & Gas Safety > Fire Extinguishers'),(3393,3214,0,'Home & Garden > Flood, Fire & Gas Safety > Fire Sprinklers'),(3394,3215,0,'Home & Garden > Flood, Fire & Gas Safety > Heat Detectors'),(3395,3216,0,'Home & Garden > Flood, Fire & Gas Safety > Smoke & Carbon Monoxide Detectors'),(3396,3217,0,'Home & Garden > Flood, Fire & Gas Safety > Water & Flood Detectors'),(3397,3218,0,'Home & Garden > Household Appliance Accessories'),(3398,3219,0,'Home & Garden > Household Appliance Accessories > Air Conditioner Accessories'),(3399,3220,0,'Home & Garden > Household Appliance Accessories > Air Conditioner Accessories > Air Conditioner Covers'),(3400,3221,0,'Home & Garden > Household Appliance Accessories > Air Conditioner Accessories > Air Conditioner Filters'),(3401,3222,0,'Home & Garden > Household Appliance Accessories > Air Purifier Accessories'),(3402,3223,0,'Home & Garden > Household Appliance Accessories > Air Purifier Accessories > Air Purifier Filters'),(3403,3224,0,'Home & Garden > Household Appliance Accessories > Dehumidifier Accessories'),(3404,3225,0,'Home & Garden > Household Appliance Accessories > Fan Accessories'),(3405,3226,0,'Home & Garden > Household Appliance Accessories > Floor & Steam Cleaner Accessories'),(3406,3227,0,'Home & Garden > Household Appliance Accessories > Furnace & Boiler Accessories'),(3407,3228,0,'Home & Garden > Household Appliance Accessories > Heating Radiator Accessories'),(3408,3229,0,'Home & Garden > Household Appliance Accessories > Heating Radiator Accessories > Heating Radiator Reflectors'),(3409,3230,0,'Home & Garden > Household Appliance Accessories > Humidifier Accessories'),(3410,3231,0,'Home & Garden > Household Appliance Accessories > Humidifier Accessories > Humidifier Filters'),(3411,3232,0,'Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories'),(3412,3233,0,'Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Garment Steamer Accessories'),(3413,3234,0,'Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Iron Accessories'),(3414,3235,0,'Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Steam Press Accessories'),(3415,3236,0,'Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Washer & Dryer Accessories'),(3416,3237,0,'Home & Garden > Household Appliance Accessories > Patio Heater Accessories'),(3417,3238,0,'Home & Garden > Household Appliance Accessories > Patio Heater Accessories > Patio Heater Covers'),(3418,3239,0,'Home & Garden > Household Appliance Accessories > Vacuum Accessories'),(3419,3240,0,'Home & Garden > Household Appliance Accessories > Water Heater Accessories'),(3420,3241,0,'Home & Garden > Household Appliance Accessories > Water Heater Accessories > Anode Rods'),(3421,3242,0,'Home & Garden > Household Appliance Accessories > Water Heater Accessories > Hot Water Tanks'),(3422,3243,0,'Home & Garden > Household Appliance Accessories > Water Heater Accessories > Water Heater Elements'),(3423,3244,0,'Home & Garden > Household Appliance Accessories > Water Heater Accessories > Water Heater Expansion Tanks'),(3424,3245,0,'Home & Garden > Household Appliance Accessories > Water Heater Accessories > Water Heater Pans'),(3425,3246,0,'Home & Garden > Household Appliance Accessories > Water Heater Accessories > Water Heater Stacks'),(3426,3247,0,'Home & Garden > Household Appliance Accessories > Water Heater Accessories > Water Heater Vents'),(3427,3248,0,'Home & Garden > Household Appliances'),(3428,3249,0,'Home & Garden > Household Appliances > Climate Control Appliances'),(3429,3250,0,'Home & Garden > Household Appliances > Climate Control Appliances > Air Conditioners'),(3430,3251,0,'Home & Garden > Household Appliances > Climate Control Appliances > Air Purifiers'),(3431,3252,0,'Home & Garden > Household Appliances > Climate Control Appliances > Dehumidifiers'),(3432,3253,0,'Home & Garden > Household Appliances > Climate Control Appliances > Duct Heaters'),(3433,3254,0,'Home & Garden > Household Appliances > Climate Control Appliances > Evaporative Coolers'),(3434,3255,0,'Home & Garden > Household Appliances > Climate Control Appliances > Fans'),(3435,3256,0,'Home & Garden > Household Appliances > Climate Control Appliances > Fans > Ceiling Fans'),(3436,3257,0,'Home & Garden > Household Appliances > Climate Control Appliances > Fans > Desk & Pedestal Fans'),(3437,3258,0,'Home & Garden > Household Appliances > Climate Control Appliances > Fans > Powered Hand Fans & Misters'),(3438,3259,0,'Home & Garden > Household Appliances > Climate Control Appliances > Fans > Ventilation Fans'),(3439,3260,0,'Home & Garden > Household Appliances > Climate Control Appliances > Fans > Wall Mount Fans'),(3440,3261,0,'Home & Garden > Household Appliances > Climate Control Appliances > Furnaces & Boilers'),(3441,3262,0,'Home & Garden > Household Appliances > Climate Control Appliances > Heating Radiators'),(3442,3263,0,'Home & Garden > Household Appliances > Climate Control Appliances > Humidifiers'),(3443,3264,0,'Home & Garden > Household Appliances > Climate Control Appliances > Outdoor Misting Systems'),(3444,3265,0,'Home & Garden > Household Appliances > Climate Control Appliances > Patio Heaters'),(3445,3266,0,'Home & Garden > Household Appliances > Climate Control Appliances > Space Heaters'),(3446,3267,0,'Home & Garden > Household Appliances > Floor & Carpet Dryers'),(3447,3268,0,'Home & Garden > Household Appliances > Floor & Steam Cleaners'),(3448,3269,0,'Home & Garden > Household Appliances > Floor Polishers & Buffers'),(3449,3270,0,'Home & Garden > Household Appliances > Futon Dryers'),(3450,3271,0,'Home & Garden > Household Appliances > Garage Door Keypads & Remotes'),(3451,3272,0,'Home & Garden > Household Appliances > Garage Door Openers'),(3452,3273,0,'Home & Garden > Household Appliances > Laundry Appliances'),(3453,3274,0,'Home & Garden > Household Appliances > Laundry Appliances > Dryers'),(3454,3275,0,'Home & Garden > Household Appliances > Laundry Appliances > Garment Steamers'),(3455,3276,0,'Home & Garden > Household Appliances > Laundry Appliances > Irons & Ironing Systems'),(3456,3277,0,'Home & Garden > Household Appliances > Laundry Appliances > Laundry Combo Units'),(3457,3278,0,'Home & Garden > Household Appliances > Laundry Appliances > Steam Presses'),(3458,3279,0,'Home & Garden > Household Appliances > Laundry Appliances > Washing Machines'),(3459,3280,0,'Home & Garden > Household Appliances > Ultrasonic Cleaners'),(3460,3281,0,'Home & Garden > Household Appliances > Vacuums'),(3461,3282,0,'Home & Garden > Household Appliances > Wallpaper Steamers'),(3462,3283,0,'Home & Garden > Household Appliances > Water Heaters'),(3463,3284,0,'Home & Garden > Household Supplies'),(3464,3285,0,'Home & Garden > Household Supplies > Drawer & Shelf Liners'),(3465,3286,0,'Home & Garden > Household Supplies > Floor Protection Films & Runners'),(3466,3287,0,'Home & Garden > Household Supplies > Furniture Floor Protectors'),(3467,3288,0,'Home & Garden > Household Supplies > Garage Floor Mats'),(3468,3289,0,'Home & Garden > Household Supplies > Garbage Bags'),(3469,3290,0,'Home & Garden > Household Supplies > Household Cleaning Supplies'),(3470,3291,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Broom & Mop Handles'),(3471,3292,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Broom Heads'),(3472,3293,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Brooms'),(3473,3294,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Buckets'),(3474,3295,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Carpet Sweepers'),(3475,3296,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Cleaning Gloves'),(3476,3297,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Duster Refills'),(3477,3298,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Dusters'),(3478,3299,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Dustpans'),(3479,3300,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Fabric & Upholstery Protectors'),(3480,3301,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products'),(3481,3302,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > All-Purpose Cleaners'),(3482,3303,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Carpet Cleaners'),(3483,3304,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Descalers & Decalcifiers'),(3484,3305,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Dish Detergent & Soap'),(3485,3306,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Dishwasher Cleaners'),(3486,3307,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Fabric & Upholstery Cleaners'),(3487,3308,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Floor Cleaners'),(3488,3309,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Furniture Cleaners & Polish'),(3489,3310,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Glass & Surface Cleaners'),(3490,3311,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Household Disinfectants'),(3491,3312,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Oven & Grill Cleaners'),(3492,3313,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Pet Odor & Stain Removers'),(3493,3314,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Rinse Aids'),(3494,3315,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Stainless Steel Cleaners & Polishes'),(3495,3316,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Toilet Bowl Cleaners'),(3496,3317,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Tub & Tile Cleaners'),(3497,3318,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Washing Machine Cleaners'),(3498,3319,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Mop Heads & Refills'),(3499,3320,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Mops'),(3500,3321,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Scrub Brush Heads & Refills'),(3501,3322,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Scrub Brushes'),(3502,3323,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Shop Towels & General-Purpose Cleaning Cloths'),(3503,3324,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Sponges & Scouring Pads'),(3504,3325,0,'Home & Garden > Household Supplies > Household Cleaning Supplies > Squeegees'),(3505,3326,0,'Home & Garden > Household Supplies > Household Paper Products'),(3506,3327,0,'Home & Garden > Household Supplies > Household Paper Products > Facial Tissues'),(3507,3328,0,'Home & Garden > Household Supplies > Household Paper Products > Paper Napkins'),(3508,3329,0,'Home & Garden > Household Supplies > Household Paper Products > Paper Towels'),(3509,3330,0,'Home & Garden > Household Supplies > Household Paper Products > Toilet Paper'),(3510,3331,0,'Home & Garden > Household Supplies > Household Thermometers'),(3511,3332,0,'Home & Garden > Household Supplies > Laundry Supplies'),(3512,3333,0,'Home & Garden > Household Supplies > Laundry Supplies > Bleach'),(3513,3334,0,'Home & Garden > Household Supplies > Laundry Supplies > Clothespins'),(3514,3335,0,'Home & Garden > Household Supplies > Laundry Supplies > Dry Cleaning Kits'),(3515,3336,0,'Home & Garden > Household Supplies > Laundry Supplies > Drying Racks & Hangers'),(3516,3337,0,'Home & Garden > Household Supplies > Laundry Supplies > Fabric Refreshers'),(3517,3338,0,'Home & Garden > Household Supplies > Laundry Supplies > Fabric Shavers'),(3518,3339,0,'Home & Garden > Household Supplies > Laundry Supplies > Fabric Softeners & Dryer Sheets'),(3519,3340,0,'Home & Garden > Household Supplies > Laundry Supplies > Fabric Stain Removers'),(3520,3341,0,'Home & Garden > Household Supplies > Laundry Supplies > Fabric Starch'),(3521,3342,0,'Home & Garden > Household Supplies > Laundry Supplies > Garment Shields'),(3522,3343,0,'Home & Garden > Household Supplies > Laundry Supplies > Iron Rests'),(3523,3344,0,'Home & Garden > Household Supplies > Laundry Supplies > Ironing Board Pads & Covers'),(3524,3345,0,'Home & Garden > Household Supplies > Laundry Supplies > Ironing Board Replacement Parts'),(3525,3346,0,'Home & Garden > Household Supplies > Laundry Supplies > Ironing Boards'),(3526,3347,0,'Home & Garden > Household Supplies > Laundry Supplies > Laundry Balls'),(3527,3348,0,'Home & Garden > Household Supplies > Laundry Supplies > Laundry Baskets'),(3528,3349,0,'Home & Garden > Household Supplies > Laundry Supplies > Laundry Detergent'),(3529,3350,0,'Home & Garden > Household Supplies > Laundry Supplies > Laundry Wash Bags & Frames'),(3530,3351,0,'Home & Garden > Household Supplies > Laundry Supplies > Lint Rollers'),(3531,3352,0,'Home & Garden > Household Supplies > Laundry Supplies > Wrinkle Releasers & Anti-Static Sprays'),(3532,3353,0,'Home & Garden > Household Supplies > Moisture Absorbers'),(3533,3354,0,'Home & Garden > Household Supplies > Pest Control'),(3534,3355,0,'Home & Garden > Household Supplies > Pest Control > Fly Swatters'),(3535,3356,0,'Home & Garden > Household Supplies > Pest Control > Pest Control Traps'),(3536,3357,0,'Home & Garden > Household Supplies > Pest Control > Pesticides'),(3537,3358,0,'Home & Garden > Household Supplies > Pest Control > Repellents'),(3538,3359,0,'Home & Garden > Household Supplies > Pest Control > Repellents > Animal & Pet Repellents'),(3539,3360,0,'Home & Garden > Household Supplies > Pest Control > Repellents > Household Insect Repellents'),(3540,3361,0,'Home & Garden > Household Supplies > Rug Pads'),(3541,3362,0,'Home & Garden > Household Supplies > Shoe Care & Tools'),(3542,3363,0,'Home & Garden > Household Supplies > Shoe Care & Tools > Boot Pulls'),(3543,3364,0,'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Bags'),(3544,3365,0,'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Brushes'),(3545,3366,0,'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Care Kits'),(3546,3367,0,'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Dryers'),(3547,3368,0,'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Horns & Dressing Aids'),(3548,3369,0,'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Polishers'),(3549,3370,0,'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Polishes & Waxes'),(3550,3371,0,'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Scrapers'),(3551,3372,0,'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Treatments & Dyes'),(3552,3373,0,'Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Trees & Shapers'),(3553,3374,0,'Home & Garden > Household Supplies > Stair Treads'),(3554,3375,0,'Home & Garden > Household Supplies > Storage & Organization'),(3555,3376,0,'Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage'),(3556,3377,0,'Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage > Charging Valets'),(3557,3378,0,'Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage > Closet Organizers & Garment Racks'),(3558,3379,0,'Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage > Clothes Valets'),(3559,3380,0,'Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage > Hangers'),(3560,3381,0,'Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage > Hat Boxes'),(3561,3382,0,'Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage > Shoe Racks & Organizers'),(3562,3383,0,'Home & Garden > Household Supplies > Storage & Organization > Flatware Chests'),(3563,3384,0,'Home & Garden > Household Supplies > Storage & Organization > Household Drawer Organizer Inserts'),(3564,3385,0,'Home & Garden > Household Supplies > Storage & Organization > Household Storage Bags'),(3565,3386,0,'Home & Garden > Household Supplies > Storage & Organization > Household Storage Caddies'),(3566,3387,0,'Home & Garden > Household Supplies > Storage & Organization > Household Storage Containers'),(3567,3388,0,'Home & Garden > Household Supplies > Storage & Organization > Household Storage Drawers'),(3568,3389,0,'Home & Garden > Household Supplies > Storage & Organization > Photo Storage'),(3569,3390,0,'Home & Garden > Household Supplies > Storage & Organization > Photo Storage > Photo Albums'),(3570,3391,0,'Home & Garden > Household Supplies > Storage & Organization > Photo Storage > Photo Storage Boxes'),(3571,3392,0,'Home & Garden > Household Supplies > Storage & Organization > Storage Hooks & Racks'),(3572,3393,0,'Home & Garden > Household Supplies > Storage & Organization > Storage Hooks & Racks > Ironing Board Hooks & Racks'),(3573,3394,0,'Home & Garden > Household Supplies > Storage & Organization > Storage Hooks & Racks > Umbrella Stands & Racks'),(3574,3395,0,'Home & Garden > Household Supplies > Storage & Organization > Storage Hooks & Racks > Utility Hooks'),(3575,3396,0,'Home & Garden > Household Supplies > Trash Compactor Accessories'),(3576,3397,0,'Home & Garden > Household Supplies > Waste Containment'),(3577,3398,0,'Home & Garden > Household Supplies > Waste Containment > Dumpsters'),(3578,3399,0,'Home & Garden > Household Supplies > Waste Containment > Hazardous Waste Containers'),(3579,3400,0,'Home & Garden > Household Supplies > Waste Containment > Recycling Containers'),(3580,3401,0,'Home & Garden > Household Supplies > Waste Containment > Trash Cans & Wastebaskets'),(3581,3402,0,'Home & Garden > Household Supplies > Waste Containment Accessories'),(3582,3403,0,'Home & Garden > Household Supplies > Waste Containment Accessories > Waste Container Carts'),(3583,3404,0,'Home & Garden > Household Supplies > Waste Containment Accessories > Waste Container Enclosures'),(3584,3405,0,'Home & Garden > Household Supplies > Waste Containment Accessories > Waste Container Labels & Signs'),(3585,3406,0,'Home & Garden > Household Supplies > Waste Containment Accessories > Waste Container Lids'),(3586,3407,0,'Home & Garden > Household Supplies > Waste Containment Accessories > Waste Container Wheels'),(3587,3408,0,'Home & Garden > Kitchen & Dining'),(3588,3409,0,'Home & Garden > Kitchen & Dining > Barware'),(3589,3410,0,'Home & Garden > Kitchen & Dining > Barware > Absinthe Fountains'),(3590,3411,0,'Home & Garden > Kitchen & Dining > Barware > Beer Dispensers & Taps'),(3591,3412,0,'Home & Garden > Kitchen & Dining > Barware > Beverage Chilling Cubes & Sticks'),(3592,3413,0,'Home & Garden > Kitchen & Dining > Barware > Beverage Tubs & Chillers'),(3593,3414,0,'Home & Garden > Kitchen & Dining > Barware > Bottle Caps'),(3594,3415,0,'Home & Garden > Kitchen & Dining > Barware > Bottle Stoppers & Savers'),(3595,3416,0,'Home & Garden > Kitchen & Dining > Barware > Coaster Holders'),(3596,3417,0,'Home & Garden > Kitchen & Dining > Barware > Coasters'),(3597,3418,0,'Home & Garden > Kitchen & Dining > Barware > Cocktail & Barware Tool Sets'),(3598,3419,0,'Home & Garden > Kitchen & Dining > Barware > Cocktail Shakers & Tools'),(3599,3420,0,'Home & Garden > Kitchen & Dining > Barware > Cocktail Shakers & Tools > Bar Ice Picks'),(3600,3421,0,'Home & Garden > Kitchen & Dining > Barware > Cocktail Shakers & Tools > Bottle Openers'),(3601,3422,0,'Home & Garden > Kitchen & Dining > Barware > Cocktail Shakers & Tools > Cocktail Shakers'),(3602,3423,0,'Home & Garden > Kitchen & Dining > Barware > Cocktail Shakers & Tools > Cocktail Strainers'),(3603,3424,0,'Home & Garden > Kitchen & Dining > Barware > Cocktail Shakers & Tools > Muddlers'),(3604,3425,0,'Home & Garden > Kitchen & Dining > Barware > Corkscrews'),(3605,3426,0,'Home & Garden > Kitchen & Dining > Barware > Decanters'),(3606,3427,0,'Home & Garden > Kitchen & Dining > Barware > Foil Cutters'),(3607,3428,0,'Home & Garden > Kitchen & Dining > Barware > Wine Aerators'),(3608,3429,0,'Home & Garden > Kitchen & Dining > Barware > Wine Bottle Holders'),(3609,3430,0,'Home & Garden > Kitchen & Dining > Barware > Wine Glass Charms'),(3610,3431,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware'),(3611,3432,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware'),(3612,3433,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Bakeware Sets'),(3613,3434,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Baking & Cookie Sheets'),(3614,3435,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Bread Pans & Molds'),(3615,3436,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Broiling Pans'),(3616,3437,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Cake Pans & Molds'),(3617,3438,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Muffin & Pastry Pans'),(3618,3439,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Pie & Quiche Pans'),(3619,3440,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Pizza Pans'),(3620,3441,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Pizza Stones'),(3621,3442,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Ramekins & Souffle Dishes'),(3622,3443,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Roasting Pans'),(3623,3444,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware Accessories'),(3624,3445,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware Accessories > Baking Mats & Liners'),(3625,3446,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware Accessories > Baking Weights'),(3626,3447,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware Accessories > Roasting Pan Racks'),(3627,3448,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware'),(3628,3449,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware & Bakeware Combo Sets'),(3629,3450,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Casserole Dishes'),(3630,3451,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Cookware Sets'),(3631,3452,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > CrÃªpe & Blini Pans'),(3632,3453,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Double Boilers'),(3633,3454,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Dutch Ovens'),(3634,3455,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Fermentation & Pickling Crocks'),(3635,3456,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Griddles & Grill Pans'),(3636,3457,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Grill Presses'),(3637,3458,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Paella Pans'),(3638,3459,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Pressure Cookers & Canners'),(3639,3460,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Saucepans'),(3640,3461,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > SautÃ© Pans'),(3641,3462,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Skillets & Frying Pans'),(3642,3463,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Stock Pots'),(3643,3464,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Stovetop Kettles'),(3644,3465,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Tagines & Clay Cooking Pots'),(3645,3466,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Woks'),(3646,3467,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories'),(3647,3468,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Pot & Pan Handles'),(3648,3469,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Pot & Pan Lids'),(3649,3470,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Pressure Cooker & Canner Accessories'),(3650,3471,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Steamer Baskets'),(3651,3472,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Wok Accessories'),(3652,3473,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Wok Accessories > Wok Brushes'),(3653,3474,0,'Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Wok Accessories > Wok Rings'),(3654,3475,0,'Home & Garden > Kitchen & Dining > Food & Beverage Carriers'),(3655,3476,0,'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Airpots'),(3656,3477,0,'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Canteens'),(3657,3478,0,'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Coolers'),(3658,3479,0,'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Drink Sleeves'),(3659,3480,0,'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Drink Sleeves > Can & Bottle Sleeves'),(3660,3481,0,'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Drink Sleeves > Cup Sleeves'),(3661,3482,0,'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Flasks'),(3662,3483,0,'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Insulated Bags'),(3663,3484,0,'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Lunch Boxes & Totes'),(3664,3485,0,'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Picnic Baskets'),(3665,3486,0,'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Replacement Drink Lids'),(3666,3487,0,'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Thermoses'),(3667,3488,0,'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Water Bottles'),(3668,3489,0,'Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Wine Carrier Bags'),(3669,3490,0,'Home & Garden > Kitchen & Dining > Food Storage'),(3670,3491,0,'Home & Garden > Kitchen & Dining > Food Storage > Bread Boxes & Bags'),(3671,3492,0,'Home & Garden > Kitchen & Dining > Food Storage > Candy Buckets'),(3672,3493,0,'Home & Garden > Kitchen & Dining > Food Storage > Cookie Jars'),(3673,3494,0,'Home & Garden > Kitchen & Dining > Food Storage > Food Container Covers'),(3674,3495,0,'Home & Garden > Kitchen & Dining > Food Storage > Food Storage Bags'),(3675,3496,0,'Home & Garden > Kitchen & Dining > Food Storage > Food Storage Containers'),(3676,3497,0,'Home & Garden > Kitchen & Dining > Food Storage > Food Wraps'),(3677,3498,0,'Home & Garden > Kitchen & Dining > Food Storage > Food Wraps > Foil'),(3678,3499,0,'Home & Garden > Kitchen & Dining > Food Storage > Food Wraps > Parchment Paper'),(3679,3500,0,'Home & Garden > Kitchen & Dining > Food Storage > Food Wraps > Plastic Wrap'),(3680,3501,0,'Home & Garden > Kitchen & Dining > Food Storage > Food Wraps > Wax Paper'),(3681,3502,0,'Home & Garden > Kitchen & Dining > Food Storage > Honey Jars'),(3682,3503,0,'Home & Garden > Kitchen & Dining > Food Storage Accessories'),(3683,3504,0,'Home & Garden > Kitchen & Dining > Food Storage Accessories > Food & Beverage Labels'),(3684,3505,0,'Home & Garden > Kitchen & Dining > Food Storage Accessories > Food Wrap Dispensers'),(3685,3506,0,'Home & Garden > Kitchen & Dining > Food Storage Accessories > Oxygen Absorbers'),(3686,3507,0,'Home & Garden > Kitchen & Dining > Food Storage Accessories > Twist Ties & Bag Clips'),(3687,3508,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories'),(3688,3509,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Breadmaker Accessories'),(3689,3510,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories'),(3690,3511,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Decanter Warmers'),(3691,3512,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Decanters'),(3692,3513,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Filter Baskets'),(3693,3514,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Filters'),(3694,3515,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Grinder Accessories'),(3695,3516,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Grinders'),(3696,3517,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Maker & Espresso Machine Replacement Parts'),(3697,3518,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Maker Water Filters'),(3698,3519,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Frothing Pitchers'),(3699,3520,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Portafilters'),(3700,3521,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Cooktop, Oven & Range Accessories'),(3701,3522,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Cotton Candy Machine Accessories'),(3702,3523,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Deep Fryer Accessories'),(3703,3524,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Dishwasher Parts & Accessories'),(3704,3525,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Electric Kettle Accessories'),(3705,3526,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Electric Skillet & Wok Accessories'),(3706,3527,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Fondue Set Accessories'),(3707,3528,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Fondue Set Accessories > Cooking Gel Fuels'),(3708,3529,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Fondue Set Accessories > Fondue Forks'),(3709,3530,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Fondue Set Accessories > Fondue Pot Stands'),(3710,3531,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Dehydrator Accessories'),(3711,3532,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Dehydrator Accessories > Food Dehydrator Sheets'),(3712,3533,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Dehydrator Accessories > Food Dehydrator Trays'),(3713,3534,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Grinder Accessories'),(3714,3535,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Mixer & Blender Accessories'),(3715,3536,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Freezer Accessories'),(3716,3537,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Garbage Disposal Accessories'),(3717,3538,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Ice Cream Maker Accessories'),(3718,3539,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Ice Cream Maker Accessories > Ice Cream Maker Freezer Bowls'),(3719,3540,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Ice Crusher & Shaver Accessories'),(3720,3541,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Ice Maker Accessories'),(3721,3542,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Juicer Accessories'),(3722,3543,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Microwave Oven Accessories'),(3723,3544,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories'),(3724,3545,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Charcoal Briquettes'),(3725,3546,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Charcoal Chimneys'),(3726,3547,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grill Carts'),(3727,3548,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grill Covers'),(3728,3549,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grill Racks & Toppers'),(3729,3550,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grill Replacement Parts'),(3730,3551,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grill Spits & Baskets'),(3731,3552,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grilling Planks'),(3732,3553,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Smoking Chips & Pellets'),(3733,3554,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Pasta Maker Accessories'),(3734,3555,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Popcorn Maker Accessories'),(3735,3556,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Portable Cooking Stove Accessories'),(3736,3557,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Range Hood Accessories'),(3737,3558,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Refrigerator Accessories'),(3738,3559,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Soda Maker Accessories'),(3739,3560,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Steam Table Accessories'),(3740,3561,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Steam Table Accessories > Steam Table Pan Covers'),(3741,3562,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Steam Table Accessories > Steam Table Pans'),(3742,3563,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Toaster Accessories'),(3743,3564,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Vacuum Sealer Accessories'),(3744,3565,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Vacuum Sealer Accessories > Vacuum Sealer Bags'),(3745,3566,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Waffle Iron Accessories'),(3746,3567,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Water Cooler Accessories'),(3747,3568,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Water Cooler Accessories > Water Cooler Bottles'),(3748,3569,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Wine Fridge Accessories'),(3749,3570,0,'Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Yogurt Maker Accessories'),(3750,3571,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances'),(3751,3572,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Beverage Warmers'),(3752,3573,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Breadmakers'),(3753,3574,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Chocolate Tempering Machines'),(3754,3575,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines'),(3755,3576,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > Drip Coffee Makers'),(3756,3577,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > Electric & Stovetop Espresso Pots'),(3757,3578,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > Espresso Machines'),(3758,3579,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > French Presses'),(3759,3580,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > Percolators'),(3760,3581,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > Vacuum Coffee Makers'),(3761,3582,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Cooktops'),(3762,3583,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Cotton Candy Machines'),(3763,3584,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Deep Fryers'),(3764,3585,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Deli Slicers'),(3765,3586,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Dishwashers'),(3766,3587,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Electric Griddles & Grills'),(3767,3588,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Electric Kettles'),(3768,3589,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Electric Skillets & Woks'),(3769,3590,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Fondue Pots & Sets'),(3770,3591,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers'),(3771,3592,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Egg Cookers'),(3772,3593,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Food Steamers'),(3773,3594,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Rice Cookers'),(3774,3595,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Slow Cookers'),(3775,3596,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Thermal Cookers'),(3776,3597,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Water Ovens'),(3777,3598,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Dehydrators'),(3778,3599,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Grinders & Mills'),(3779,3600,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Mixers & Blenders'),(3780,3601,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Smokers'),(3781,3602,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Warmers'),(3782,3603,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Warmers > Chafing Dishes'),(3783,3604,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Warmers > Food Heat Lamps'),(3784,3605,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Warmers > Rice Keepers'),(3785,3606,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Warmers > Steam Tables'),(3786,3607,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Freezers'),(3787,3608,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Frozen Drink Makers'),(3788,3609,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Garbage Disposals'),(3789,3610,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Gas Griddles'),(3790,3611,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Hot Drink Makers'),(3791,3612,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Hot Plates'),(3792,3613,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Ice Cream Makers'),(3793,3614,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Ice Crushers & Shavers'),(3794,3615,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Ice Makers'),(3795,3616,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Juicers'),(3796,3617,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Knife Sharpeners'),(3797,3618,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Microwave Ovens'),(3798,3619,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Milk Frothers & Steamers'),(3799,3620,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Mochi Makers'),(3800,3621,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Outdoor Grills'),(3801,3622,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Ovens'),(3802,3623,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Pasta Makers'),(3803,3624,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Popcorn Makers'),(3804,3625,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Portable Cooking Stoves'),(3805,3626,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Range Hoods'),(3806,3627,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Ranges'),(3807,3628,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Refrigerators'),(3808,3629,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Roaster Ovens & Rotisseries'),(3809,3630,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Soda Makers'),(3810,3631,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Soy Milk Makers'),(3811,3632,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Tea Makers'),(3812,3633,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills'),(3813,3634,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Countertop & Toaster Ovens'),(3814,3635,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Donut Makers'),(3815,3636,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Muffin & Cupcake Makers'),(3816,3637,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Pizza Makers & Ovens'),(3817,3638,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Pizzelle Makers'),(3818,3639,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Pretzel Makers'),(3819,3640,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Sandwich Makers'),(3820,3641,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Toasters'),(3821,3642,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Tortilla & Flatbread Makers'),(3822,3643,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Waffle Irons'),(3823,3644,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Trash Compactors'),(3824,3645,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Vacuum Sealers'),(3825,3646,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Water Coolers'),(3826,3647,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Water Filters'),(3827,3648,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Wine Fridges'),(3828,3649,0,'Home & Garden > Kitchen & Dining > Kitchen Appliances > Yogurt Makers'),(3829,3650,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils'),(3830,3651,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Aprons'),(3831,3652,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Baking Peels'),(3832,3653,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Basters'),(3833,3654,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Basting Brushes'),(3834,3655,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Beverage Dispensers'),(3835,3656,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cake Decorating Supplies'),(3836,3657,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cake Servers'),(3837,3658,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Can Crushers'),(3838,3659,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Can Openers'),(3839,3660,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Carving Forks'),(3840,3661,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Channel Knives'),(3841,3662,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Colanders & Strainers'),(3842,3663,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Condiment Dispensers'),(3843,3664,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cookie Cutters'),(3844,3665,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cookie Presses'),(3845,3666,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cooking Thermometer Accessories'),(3846,3667,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cooking Thermometers'),(3847,3668,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cooking Timers'),(3848,3669,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cooking Torches'),(3849,3670,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cooling Racks'),(3850,3671,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cutting Boards'),(3851,3672,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Dish Racks & Drain Boards'),(3852,3673,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Dough Wheels'),(3853,3674,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Electric Knife Accessories'),(3854,3675,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Electric Knife Accessories > Electric Knife Replacement Blades'),(3855,3676,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Electric Knives'),(3856,3677,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Flour Sifters'),(3857,3678,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food & Drink Stencils'),(3858,3679,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Crackers'),(3859,3680,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Crackers > Lobster & Crab Crackers'),(3860,3681,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Crackers > Nutcrackers'),(3861,3682,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Crackers > Nutcrackers > Decorative Nutcrackers'),(3862,3683,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Dispensers'),(3863,3684,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Graters & Zesters'),(3864,3685,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Peelers & Corers'),(3865,3686,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Steaming Bags'),(3866,3687,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Sticks & Skewers'),(3867,3688,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Funnels'),(3868,3689,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Garlic Presses'),(3869,3690,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Gelatin Molds'),(3870,3691,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Ice Cube Trays'),(3871,3692,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Jerky Guns'),(3872,3693,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Knives'),(3873,3694,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Molds'),(3874,3695,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers'),(3875,3696,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Can Organizers'),(3876,3697,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Drinkware Holders'),(3877,3698,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Kitchen Cabinet Organizers'),(3878,3699,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Kitchen Counter & Beverage Station Organizers'),(3879,3700,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Kitchen Utensil Holders & Racks'),(3880,3701,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Knife Blocks & Holders'),(3881,3702,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Napkin Holders & Dispensers'),(3882,3703,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Paper Towel Holders & Dispensers'),(3883,3704,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Pot Racks'),(3884,3705,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Spice Organizers'),(3885,3706,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Straw Holders & Dispensers'),(3886,3707,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Sugar Caddies'),(3887,3708,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Toothpick Holders & Dispensers'),(3888,3709,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Utensil & Flatware Trays'),(3889,3710,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Scrapers'),(3890,3711,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Scrapers > Bench Scrapers'),(3891,3712,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Scrapers > Bowl Scrapers'),(3892,3713,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Scrapers > Grill Scrapers'),(3893,3714,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Shears'),(3894,3715,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Slicers'),(3895,3716,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Utensil Sets'),(3896,3717,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Ladles'),(3897,3718,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Mashers'),(3898,3719,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Measuring Cups & Spoons'),(3899,3720,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Meat Tenderizers'),(3900,3721,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Mixing Bowls'),(3901,3722,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Mortars & Pestles'),(3902,3723,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Oil & Vinegar Dispensers'),(3903,3724,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Oven Bags'),(3904,3725,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Oven Mitts & Pot Holders'),(3905,3726,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Pasta Molds & Stamps'),(3906,3727,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Pastry Blenders'),(3907,3728,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Pastry Cloths'),(3908,3729,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Pizza Cutter Accessories'),(3909,3730,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Pizza Cutters'),(3910,3731,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Ricers'),(3911,3732,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Rolling Pin Accessories'),(3912,3733,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Rolling Pin Accessories > Rolling Pin Covers & Sleeves'),(3913,3734,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Rolling Pin Accessories > Rolling Pin Rings'),(3914,3735,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Rolling Pins'),(3915,3736,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Salad Dressing Mixers & Shakers'),(3916,3737,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Salad Spinners'),(3917,3738,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Scoops'),(3918,3739,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Scoops > Ice Cream Scoops'),(3919,3740,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Scoops > Ice Scoops'),(3920,3741,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Scoops > Melon Ballers'),(3921,3742,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Scoops > Popcorn & French Fry Scoops'),(3922,3743,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Sink Caddies'),(3923,3744,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Sink Mats & Grids'),(3924,3745,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Slotted Spoons'),(3925,3746,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Spatulas'),(3926,3747,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Spice Grinder Accessories'),(3927,3748,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Spice Grinders'),(3928,3749,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Spoon Rests'),(3929,3750,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Sugar Dispensers'),(3930,3751,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Sushi Mats'),(3931,3752,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Tea Strainers'),(3932,3753,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Tongs'),(3933,3754,0,'Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Whisks'),(3934,3755,0,'Home & Garden > Kitchen & Dining > Prefabricated Kitchens & Kitchenettes'),(3935,3756,0,'Home & Garden > Kitchen & Dining > Tableware'),(3936,3757,0,'Home & Garden > Kitchen & Dining > Tableware > Coffee & Tea Sets'),(3937,3758,0,'Home & Garden > Kitchen & Dining > Tableware > Coffee Servers & Tea Pots'),(3938,3759,0,'Home & Garden > Kitchen & Dining > Tableware > Dinnerware'),(3939,3760,0,'Home & Garden > Kitchen & Dining > Tableware > Dinnerware > Bowls'),(3940,3761,0,'Home & Garden > Kitchen & Dining > Tableware > Dinnerware > Dinnerware Sets'),(3941,3762,0,'Home & Garden > Kitchen & Dining > Tableware > Dinnerware > Plates'),(3942,3763,0,'Home & Garden > Kitchen & Dining > Tableware > Drinkware'),(3943,3764,0,'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Beer Glasses'),(3944,3765,0,'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Coffee & Tea Cups'),(3945,3766,0,'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Coffee & Tea Saucers'),(3946,3767,0,'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Drinkware Sets'),(3947,3768,0,'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Mugs'),(3948,3769,0,'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Shot Glasses'),(3949,3770,0,'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Stemware'),(3950,3771,0,'Home & Garden > Kitchen & Dining > Tableware > Drinkware > Tumblers'),(3951,3772,0,'Home & Garden > Kitchen & Dining > Tableware > Flatware'),(3952,3773,0,'Home & Garden > Kitchen & Dining > Tableware > Flatware > Chopstick Accessories'),(3953,3774,0,'Home & Garden > Kitchen & Dining > Tableware > Flatware > Chopsticks'),(3954,3775,0,'Home & Garden > Kitchen & Dining > Tableware > Flatware > Flatware Sets'),(3955,3776,0,'Home & Garden > Kitchen & Dining > Tableware > Flatware > Forks'),(3956,3777,0,'Home & Garden > Kitchen & Dining > Tableware > Flatware > Spoons'),(3957,3778,0,'Home & Garden > Kitchen & Dining > Tableware > Flatware > Table Knives'),(3958,3779,0,'Home & Garden > Kitchen & Dining > Tableware > Salt & Pepper Shakers'),(3959,3780,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware'),(3960,3781,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware > Butter Dishes'),(3961,3782,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware > Cake Boards'),(3962,3783,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware > Cake Stands'),(3963,3784,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware > Egg Cups'),(3964,3785,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware > Gravy Boats'),(3965,3786,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware > Punch Bowls'),(3966,3787,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware > Serving Pitchers & Carafes'),(3967,3788,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware > Serving Platters'),(3968,3789,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware > Serving Trays'),(3969,3790,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware > Sugar Bowls & Creamers'),(3970,3791,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware > Tureens'),(3971,3792,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware Accessories'),(3972,3793,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware Accessories > Punch Bowl Stands'),(3973,3794,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware Accessories > Tureen Lids'),(3974,3795,0,'Home & Garden > Kitchen & Dining > Tableware > Serveware Accessories > Tureen Stands'),(3975,3796,0,'Home & Garden > Kitchen & Dining > Tableware > Tablecloth Clips & Weights'),(3976,3797,0,'Home & Garden > Kitchen & Dining > Tableware > Trivets'),(3977,3798,0,'Home & Garden > Lawn & Garden'),(3978,3799,0,'Home & Garden > Lawn & Garden > Gardening'),(3979,3800,0,'Home & Garden > Lawn & Garden > Gardening > Composting'),(3980,3801,0,'Home & Garden > Lawn & Garden > Gardening > Composting > Compost'),(3981,3802,0,'Home & Garden > Lawn & Garden > Gardening > Composting > Compost Aerators'),(3982,3803,0,'Home & Garden > Lawn & Garden > Gardening > Composting > Composters'),(3983,3804,0,'Home & Garden > Lawn & Garden > Gardening > Disease Control'),(3984,3805,0,'Home & Garden > Lawn & Garden > Gardening > Fertilizers'),(3985,3806,0,'Home & Garden > Lawn & Garden > Gardening > Garden Pot Saucers & Trays'),(3986,3807,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Accessories'),(3987,3808,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Accessories > Gardening Scooters, Seats & Kneelers'),(3988,3809,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Accessories > Gardening Totes'),(3989,3810,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Accessories > Potting Benches'),(3990,3811,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tool Accessories'),(3991,3812,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tool Accessories > Gardening Tool Handles'),(3992,3813,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tool Accessories > Gardening Tool Heads'),(3993,3814,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tool Accessories > Wheelbarrow Parts'),(3994,3815,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tools'),(3995,3816,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Bulb Planting Tools'),(3996,3817,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Cultivating Tools'),(3997,3818,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Gardening Forks'),(3998,3819,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Gardening Sickles & Machetes'),(3999,3820,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Gardening Trowels'),(4000,3821,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Lawn & Garden Sprayers'),(4001,3822,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Lawn Rollers'),(4002,3823,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Pruning Saws'),(4003,3824,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Pruning Shears'),(4004,3825,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Rakes'),(4005,3826,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Shovels & Spades'),(4006,3827,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Spreaders'),(4007,3828,0,'Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Wheelbarrows'),(4008,3829,0,'Home & Garden > Lawn & Garden > Gardening > Greenhouses'),(4009,3830,0,'Home & Garden > Lawn & Garden > Gardening > Herbicides'),(4010,3831,0,'Home & Garden > Lawn & Garden > Gardening > Landscape Fabric'),(4011,3832,0,'Home & Garden > Lawn & Garden > Gardening > Landscape Fabric Accessories'),(4012,3833,0,'Home & Garden > Lawn & Garden > Gardening > Landscape Fabric Accessories > Landscape Fabric Staples & Pins'),(4013,3834,0,'Home & Garden > Lawn & Garden > Gardening > Landscape Fabric Accessories > Landscape Fabric Tape'),(4014,3835,0,'Home & Garden > Lawn & Garden > Gardening > Mulch'),(4015,3836,0,'Home & Garden > Lawn & Garden > Gardening > Plant Cages & Supports'),(4016,3837,0,'Home & Garden > Lawn & Garden > Gardening > Plant Stands'),(4017,3838,0,'Home & Garden > Lawn & Garden > Gardening > Pot & Planter Liners'),(4018,3839,0,'Home & Garden > Lawn & Garden > Gardening > Pots & Planters'),(4019,3840,0,'Home & Garden > Lawn & Garden > Gardening > Rain Barrels'),(4020,3841,0,'Home & Garden > Lawn & Garden > Gardening > Sands & Soils'),(4021,3842,0,'Home & Garden > Lawn & Garden > Outdoor Living'),(4022,3843,0,'Home & Garden > Lawn & Garden > Outdoor Living > Awning Accessories'),(4023,3844,0,'Home & Garden > Lawn & Garden > Outdoor Living > Awnings'),(4024,3845,0,'Home & Garden > Lawn & Garden > Outdoor Living > Hammock Parts & Accessories'),(4025,3846,0,'Home & Garden > Lawn & Garden > Outdoor Living > Hammocks'),(4026,3847,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Blankets'),(4027,3848,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Blankets > Beach Mats'),(4028,3849,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Blankets > Picnic Blankets'),(4029,3850,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Blankets > Poncho Liners'),(4030,3851,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures'),(4031,3852,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopies & Gazebos'),(4032,3853,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories'),(4033,3854,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories > Canopy & Gazebo Enclosure Kits'),(4034,3855,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories > Canopy & Gazebo Frames'),(4035,3856,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories > Canopy & Gazebo Tops'),(4036,3857,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories > Canopy Poles'),(4037,3858,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories > Canopy Weights'),(4038,3859,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Garden Arches, Trellises, Arbors & Pergolas'),(4039,3860,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Garden Bridges'),(4040,3861,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Sheds, Garages & Carports'),(4041,3862,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories'),(4042,3863,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories > Outdoor Umbrella & Sunshade Fabric'),(4043,3864,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories > Outdoor Umbrella Bases'),(4044,3865,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories > Outdoor Umbrella Covers'),(4045,3866,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories > Outdoor Umbrella Enclosure Kits'),(4046,3867,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories > Outdoor Umbrella Lights'),(4047,3868,0,'Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrellas & Sunshades'),(4048,3869,0,'Home & Garden > Lawn & Garden > Outdoor Living > Porch Swing Accessories'),(4049,3870,0,'Home & Garden > Lawn & Garden > Outdoor Living > Porch Swings'),(4050,3871,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment'),(4051,3872,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Chainsaws'),(4052,3873,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Grass Edgers'),(4053,3874,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Hedge Trimmers'),(4054,3875,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Aerators & Dethatchers'),(4055,3876,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Mowers'),(4056,3877,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Mowers > Riding Mowers'),(4057,3878,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Mowers > Robotic Mowers'),(4058,3879,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Mowers > Tow-Behind Mowers'),(4059,3880,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Mowers > Walk-Behind Mowers'),(4060,3881,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Vacuums'),(4061,3882,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Leaf Blowers'),(4062,3883,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Outdoor Power Equipment Base Units'),(4063,3884,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Outdoor Power Equipment Sets'),(4064,3885,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Power Sweepers'),(4065,3886,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Power Tillers & Cultivators'),(4066,3887,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Pressure Washers'),(4067,3888,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Snow Blowers'),(4068,3889,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Tractors'),(4069,3890,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment > Weed Trimmers'),(4070,3891,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories'),(4071,3892,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Chainsaw Accessories'),(4072,3893,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Chainsaw Accessories > Chainsaw Bars'),(4073,3894,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Chainsaw Accessories > Chainsaw Chains'),(4074,3895,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Grass Edger Accessories'),(4075,3896,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Hedge Trimmer Accessories'),(4076,3897,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories'),(4077,3898,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Brush Mower Attachments'),(4078,3899,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Bags'),(4079,3900,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Belts'),(4080,3901,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Blades'),(4081,3902,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Covers'),(4082,3903,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Mulch Kits'),(4083,3904,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Mulch Plugs & Plates'),(4084,3905,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Pulleys & Idlers'),(4085,3906,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Tire Tubes'),(4086,3907,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Tires'),(4087,3908,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Wheels'),(4088,3909,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Striping Kits'),(4089,3910,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Sweepers'),(4090,3911,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Leaf Blower Accessories'),(4091,3912,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Leaf Blower Accessories > Leaf Blower Tubes'),(4092,3913,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Multifunction Outdoor Power Equipment Attachments'),(4093,3914,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Multifunction Outdoor Power Equipment Attachments > Grass Edger Attachments'),(4094,3915,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Multifunction Outdoor Power Equipment Attachments > Ground & Leaf Blower Attachments'),(4095,3916,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Multifunction Outdoor Power Equipment Attachments > Hedge Trimmer Attachments'),(4096,3917,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Multifunction Outdoor Power Equipment Attachments > Pole Saw Attachments'),(4097,3918,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Multifunction Outdoor Power Equipment Attachments > Tiller & Cultivator Attachments'),(4098,3919,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Multifunction Outdoor Power Equipment Attachments > Weed Trimmer Attachments'),(4099,3920,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Outdoor Power Equipment Batteries'),(4100,3921,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Pressure Washer Accessories'),(4101,3922,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Snow Blower Accessories'),(4102,3923,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Tractor Parts & Accessories'),(4103,3924,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Tractor Parts & Accessories > Tractor Tires'),(4104,3925,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Tractor Parts & Accessories > Tractor Wheels'),(4105,3926,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Weed Trimmer Accessories'),(4106,3927,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Weed Trimmer Accessories > Weed Trimmer Blades & Spools'),(4107,3928,0,'Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Weed Trimmer Accessories > Weed Trimmer Spool Covers'),(4108,3929,0,'Home & Garden > Lawn & Garden > Snow Removal'),(4109,3930,0,'Home & Garden > Lawn & Garden > Snow Removal > Ice Scrapers & Snow Brushes'),(4110,3931,0,'Home & Garden > Lawn & Garden > Snow Removal > Snow Shovels'),(4111,3932,0,'Home & Garden > Lawn & Garden > Watering & Irrigation'),(4112,3933,0,'Home & Garden > Lawn & Garden > Watering & Irrigation > Garden Hose Fittings & Valves'),(4113,3934,0,'Home & Garden > Lawn & Garden > Watering & Irrigation > Garden Hose Spray Nozzles'),(4114,3935,0,'Home & Garden > Lawn & Garden > Watering & Irrigation > Garden Hoses'),(4115,3936,0,'Home & Garden > Lawn & Garden > Watering & Irrigation > Sprinkler Accessories'),(4116,3937,0,'Home & Garden > Lawn & Garden > Watering & Irrigation > Sprinkler Accessories > Sprinkler Controls'),(4117,3938,0,'Home & Garden > Lawn & Garden > Watering & Irrigation > Sprinkler Accessories > Sprinkler Valves'),(4118,3939,0,'Home & Garden > Lawn & Garden > Watering & Irrigation > Sprinklers & Sprinkler Heads'),(4119,3940,0,'Home & Garden > Lawn & Garden > Watering & Irrigation > Watering Can Accesssories'),(4120,3941,0,'Home & Garden > Lawn & Garden > Watering & Irrigation > Watering Cans'),(4121,3942,0,'Home & Garden > Lawn & Garden > Watering & Irrigation > Watering Globes & Spikes'),(4122,3943,0,'Home & Garden > Lighting'),(4123,3944,0,'Home & Garden > Lighting > Emergency Lighting'),(4124,3945,0,'Home & Garden > Lighting > Floating & Submersible Lights'),(4125,3946,0,'Home & Garden > Lighting > Flood & Spot Lights'),(4126,3947,0,'Home & Garden > Lighting > In-Ground Lights'),(4127,3948,0,'Home & Garden > Lighting > Lamps'),(4128,3949,0,'Home & Garden > Lighting > Landscape Pathway Lighting'),(4129,3950,0,'Home & Garden > Lighting > Light Bulbs'),(4130,3951,0,'Home & Garden > Lighting > Light Bulbs > Compact Fluorescent Lamps'),(4131,3952,0,'Home & Garden > Lighting > Light Bulbs > Fluorescent Tubes'),(4132,3953,0,'Home & Garden > Lighting > Light Bulbs > Incandescent Light Bulbs'),(4133,3954,0,'Home & Garden > Lighting > Light Bulbs > LED Light Bulbs'),(4134,3955,0,'Home & Garden > Lighting > Light Ropes & Strings'),(4135,3956,0,'Home & Garden > Lighting > Lighting Fixtures'),(4136,3957,0,'Home & Garden > Lighting > Lighting Fixtures > Cabinet Light Fixtures'),(4137,3958,0,'Home & Garden > Lighting > Lighting Fixtures > Ceiling Light Fixtures'),(4138,3959,0,'Home & Garden > Lighting > Lighting Fixtures > Chandeliers'),(4139,3960,0,'Home & Garden > Lighting > Lighting Fixtures > Wall Light Fixtures'),(4140,3961,0,'Home & Garden > Lighting > Night Lights & Ambient Lighting'),(4141,3962,0,'Home & Garden > Lighting > Picture Lights'),(4142,3963,0,'Home & Garden > Lighting > Tiki Torches & Oil Lamps'),(4143,3964,0,'Home & Garden > Lighting > Track Lighting'),(4144,3965,0,'Home & Garden > Lighting > Track Lighting > Track Lighting Accessories'),(4145,3966,0,'Home & Garden > Lighting > Track Lighting > Track Lighting Fixtures'),(4146,3967,0,'Home & Garden > Lighting > Track Lighting > Track Lighting Rails'),(4147,3968,0,'Home & Garden > Lighting Accessories'),(4148,3969,0,'Home & Garden > Lighting Accessories > Lamp Post Bases'),(4149,3970,0,'Home & Garden > Lighting Accessories > Lamp Post Mounts'),(4150,3971,0,'Home & Garden > Lighting Accessories > Lamp Shades'),(4151,3972,0,'Home & Garden > Lighting Accessories > Lighting Timers'),(4152,3973,0,'Home & Garden > Lighting Accessories > Oil Lamp Fuel'),(4153,3974,0,'Home & Garden > Linens & Bedding'),(4154,3975,0,'Home & Garden > Linens & Bedding > Bedding'),(4155,3976,0,'Home & Garden > Linens & Bedding > Bedding > Bed Canopies'),(4156,3977,0,'Home & Garden > Linens & Bedding > Bedding > Bed Sheets'),(4157,3978,0,'Home & Garden > Linens & Bedding > Bedding > Bedskirts'),(4158,3979,0,'Home & Garden > Linens & Bedding > Bedding > Blankets'),(4159,3980,0,'Home & Garden > Linens & Bedding > Bedding > Duvet Covers'),(4160,3981,0,'Home & Garden > Linens & Bedding > Bedding > Mattress Protectors'),(4161,3982,0,'Home & Garden > Linens & Bedding > Bedding > Mattress Protectors > Mattress Encasements'),(4162,3983,0,'Home & Garden > Linens & Bedding > Bedding > Mattress Protectors > Mattress Pads'),(4163,3984,0,'Home & Garden > Linens & Bedding > Bedding > Nap Mats'),(4164,3985,0,'Home & Garden > Linens & Bedding > Bedding > Pillowcases & Shams'),(4165,3986,0,'Home & Garden > Linens & Bedding > Bedding > Pillows'),(4166,3987,0,'Home & Garden > Linens & Bedding > Bedding > Quilts & Comforters'),(4167,3988,0,'Home & Garden > Linens & Bedding > Kitchen Linens Sets'),(4168,3989,0,'Home & Garden > Linens & Bedding > Table Linens'),(4169,3990,0,'Home & Garden > Linens & Bedding > Table Linens > Cloth Napkins'),(4170,3991,0,'Home & Garden > Linens & Bedding > Table Linens > Doilies'),(4171,3992,0,'Home & Garden > Linens & Bedding > Table Linens > Placemats'),(4172,3993,0,'Home & Garden > Linens & Bedding > Table Linens > Table Runners'),(4173,3994,0,'Home & Garden > Linens & Bedding > Table Linens > Table Skirts'),(4174,3995,0,'Home & Garden > Linens & Bedding > Table Linens > Tablecloths'),(4175,3996,0,'Home & Garden > Linens & Bedding > Towels'),(4176,3997,0,'Home & Garden > Linens & Bedding > Towels > Bath Towels & Washcloths'),(4177,3998,0,'Home & Garden > Linens & Bedding > Towels > Beach Towels'),(4178,3999,0,'Home & Garden > Linens & Bedding > Towels > Kitchen Towels'),(4179,4000,0,'Home & Garden > Parasols & Rain Umbrellas'),(4180,4001,0,'Home & Garden > Plants'),(4181,4002,0,'Home & Garden > Plants > Aquatic Plants'),(4182,4003,0,'Home & Garden > Plants > Flowers'),(4183,4004,0,'Home & Garden > Plants > Indoor & Outdoor Plants'),(4184,4005,0,'Home & Garden > Plants > Plant & Herb Growing Kits'),(4185,4006,0,'Home & Garden > Plants > Seeds'),(4186,4007,0,'Home & Garden > Plants > Trees'),(4187,4008,0,'Home & Garden > Pool & Spa'),(4188,4009,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories'),(4189,4010,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Diving Boards'),(4190,4011,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool & Spa Chlorine Generators'),(4191,4012,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool & Spa Filters'),(4192,4013,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool & Spa Maintenance Kits'),(4193,4014,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Brushes & Brooms'),(4194,4015,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Cleaner Hoses'),(4195,4016,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Cleaners & Chemicals'),(4196,4017,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Cover Accessories'),(4197,4018,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Covers & Ground Cloths'),(4198,4019,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Deck Kits'),(4199,4020,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Floats & Loungers'),(4200,4021,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Heaters'),(4201,4022,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Ladders, Steps & Ramps'),(4202,4023,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Liners'),(4203,4024,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Skimmers'),(4204,4025,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Sweeps & Vacuums'),(4205,4026,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Toys'),(4206,4027,0,'Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Water Slides'),(4207,4028,0,'Home & Garden > Pool & Spa > Saunas'),(4208,4029,0,'Home & Garden > Pool & Spa > Spas'),(4209,4030,0,'Home & Garden > Pool & Spa > Swimming Pools'),(4210,4031,0,'Home & Garden > Smoking Accessories'),(4211,4032,0,'Home & Garden > Smoking Accessories > Ashtrays'),(4212,4033,0,'Home & Garden > Smoking Accessories > Cigar Cases'),(4213,4034,0,'Home & Garden > Smoking Accessories > Cigar Cutters & Punches'),(4214,4035,0,'Home & Garden > Smoking Accessories > Cigarette Cases'),(4215,4036,0,'Home & Garden > Smoking Accessories > Cigarette Holders'),(4216,4037,0,'Home & Garden > Smoking Accessories > Humidor Accessories'),(4217,4038,0,'Home & Garden > Smoking Accessories > Humidors'),(4218,4039,0,'Home & Garden > Umbrella Sleeves & Cases'),(4219,4040,0,'Home & Garden > Wood Stoves'),(4220,4041,0,'Luggage & Bags'),(4221,4042,0,'Luggage & Bags > Backpacks'),(4222,4043,0,'Luggage & Bags > Briefcases'),(4223,4044,0,'Luggage & Bags > Cosmetic & Toiletry Bags'),(4224,4045,0,'Luggage & Bags > Diaper Bags'),(4225,4046,0,'Luggage & Bags > Dry Boxes'),(4226,4047,0,'Luggage & Bags > Duffel Bags'),(4227,4048,0,'Luggage & Bags > Fanny Packs'),(4228,4049,0,'Luggage & Bags > Garment Bags'),(4229,4050,0,'Luggage & Bags > Luggage Accessories'),(4230,4051,0,'Luggage & Bags > Luggage Accessories > Dry Box Liners & Inserts'),(4231,4052,0,'Luggage & Bags > Luggage Accessories > Luggage Covers'),(4232,4053,0,'Luggage & Bags > Luggage Accessories > Luggage Racks & Stands'),(4233,4054,0,'Luggage & Bags > Luggage Accessories > Luggage Straps'),(4234,4055,0,'Luggage & Bags > Luggage Accessories > Luggage Tags'),(4235,4056,0,'Luggage & Bags > Luggage Accessories > Packing Organizers'),(4236,4057,0,'Luggage & Bags > Luggage Accessories > Travel Bottles & Containers'),(4237,4058,0,'Luggage & Bags > Luggage Accessories > Travel Pouches'),(4238,4059,0,'Luggage & Bags > Messenger Bags'),(4239,4060,0,'Luggage & Bags > Shopping Totes'),(4240,4061,0,'Luggage & Bags > Suitcases'),(4241,4062,0,'Luggage & Bags > Train Cases'),(4242,4063,0,'Mature'),(4243,4064,0,'Mature > Erotic'),(4244,4065,0,'Mature > Erotic > Erotic Books'),(4245,4066,0,'Mature > Erotic > Erotic Clothing'),(4246,4067,0,'Mature > Erotic > Erotic DVDs & Videos'),(4247,4068,0,'Mature > Erotic > Erotic Food & Edibles'),(4248,4069,0,'Mature > Erotic > Erotic Games'),(4249,4070,0,'Mature > Erotic > Erotic Magazines'),(4250,4071,0,'Mature > Erotic > Pole Dancing Kits'),(4251,4072,0,'Mature > Erotic > Sex Toys'),(4252,4073,0,'Mature > Weapons'),(4253,4074,0,'Mature > Weapons > Brass Knuckles'),(4254,4075,0,'Mature > Weapons > Clubs & Batons'),(4255,4076,0,'Mature > Weapons > Combat Knives'),(4256,4077,0,'Mature > Weapons > Gun Care & Accessories'),(4257,4078,0,'Mature > Weapons > Gun Care & Accessories > Ammunition'),(4258,4079,0,'Mature > Weapons > Gun Care & Accessories > Ammunition Cases & Holders'),(4259,4080,0,'Mature > Weapons > Gun Care & Accessories > Gun Cases & Range Bags'),(4260,4081,0,'Mature > Weapons > Gun Care & Accessories > Gun Cleaning'),(4261,4082,0,'Mature > Weapons > Gun Care & Accessories > Gun Cleaning > Gun Cleaning Cloths & Swabs'),(4262,4083,0,'Mature > Weapons > Gun Care & Accessories > Gun Cleaning > Gun Cleaning Patches'),(4263,4084,0,'Mature > Weapons > Gun Care & Accessories > Gun Cleaning > Gun Cleaning Solvents'),(4264,4085,0,'Mature > Weapons > Gun Care & Accessories > Gun Grips'),(4265,4086,0,'Mature > Weapons > Gun Care & Accessories > Gun Holsters'),(4266,4087,0,'Mature > Weapons > Gun Care & Accessories > Gun Lights'),(4267,4088,0,'Mature > Weapons > Gun Care & Accessories > Gun Rails'),(4268,4089,0,'Mature > Weapons > Gun Care & Accessories > Gun Slings'),(4269,4090,0,'Mature > Weapons > Gun Care & Accessories > Reloading Supplies & Equipment'),(4270,4091,0,'Mature > Weapons > Gun Care & Accessories > Reloading Supplies & Equipment > Ammunition Reloading Presses'),(4271,4092,0,'Mature > Weapons > Guns'),(4272,4093,0,'Mature > Weapons > Mace & Pepper Spray'),(4273,4094,0,'Mature > Weapons > Nunchucks'),(4274,4095,0,'Mature > Weapons > Spears'),(4275,4096,0,'Mature > Weapons > Staff & Stick Weapons'),(4276,4097,0,'Mature > Weapons > Stun Guns & Tasers'),(4277,4098,0,'Mature > Weapons > Swords'),(4278,4099,0,'Mature > Weapons > Throwing Stars'),(4279,4100,0,'Mature > Weapons > Whips'),(4280,4101,0,'Media'),(4281,4102,0,'Media > Books'),(4282,4103,0,'Media > Carpentry & Woodworking Project Plans'),(4283,4104,0,'Media > DVDs & Videos'),(4284,4105,0,'Media > Magazines & Newspapers'),(4285,4106,0,'Media > Music & Sound Recordings'),(4286,4107,0,'Media > Product Manuals'),(4287,4108,0,'Media > Product Manuals > Camera & Optics Manuals'),(4288,4109,0,'Media > Product Manuals > Electronics Manuals'),(4289,4110,0,'Media > Product Manuals > Exercise & Fitness Equipment Manuals'),(4290,4111,0,'Media > Product Manuals > Household Appliance Manuals'),(4291,4112,0,'Media > Product Manuals > Kitchen Appliance Manuals'),(4292,4113,0,'Media > Product Manuals > Model & Toys Manuals'),(4293,4114,0,'Media > Product Manuals > Office Supply Manuals'),(4294,4115,0,'Media > Product Manuals > Power Tool & Equipment Manuals'),(4295,4116,0,'Media > Product Manuals > Vehicle Service Manuals'),(4296,4117,0,'Media > Sheet Music'),(4297,4118,0,'Office Supplies'),(4298,4119,0,'Office Supplies > Book Accessories'),(4299,4120,0,'Office Supplies > Book Accessories > Book Covers'),(4300,4121,0,'Office Supplies > Book Accessories > Book Lights'),(4301,4122,0,'Office Supplies > Book Accessories > Book Stands & Rests'),(4302,4123,0,'Office Supplies > Book Accessories > Bookmarks'),(4303,4124,0,'Office Supplies > Desk Pads & Blotters'),(4304,4125,0,'Office Supplies > Filing & Organization'),(4305,4126,0,'Office Supplies > Filing & Organization > Address Books'),(4306,4127,0,'Office Supplies > Filing & Organization > Binding Supplies'),(4307,4128,0,'Office Supplies > Filing & Organization > Binding Supplies > Binder Accessories'),(4308,4129,0,'Office Supplies > Filing & Organization > Binding Supplies > Binder Accessories > Binder Rings'),(4309,4130,0,'Office Supplies > Filing & Organization > Binding Supplies > Binder Accessories > Index Dividers'),(4310,4131,0,'Office Supplies > Filing & Organization > Binding Supplies > Binder Accessories > Sheet Protectors'),(4311,4132,0,'Office Supplies > Filing & Organization > Binding Supplies > Binders'),(4312,4133,0,'Office Supplies > Filing & Organization > Binding Supplies > Binding Combs & Spines'),(4313,4134,0,'Office Supplies > Filing & Organization > Binding Supplies > Binding Machines'),(4314,4135,0,'Office Supplies > Filing & Organization > Business Card Books'),(4315,4136,0,'Office Supplies > Filing & Organization > Business Card Stands'),(4316,4137,0,'Office Supplies > Filing & Organization > CD/DVD Cases & Organizers'),(4317,4138,0,'Office Supplies > Filing & Organization > Calendars, Organizers & Planners'),(4318,4139,0,'Office Supplies > Filing & Organization > Card Files'),(4319,4140,0,'Office Supplies > Filing & Organization > Card Sleeves'),(4320,4141,0,'Office Supplies > Filing & Organization > Cash Boxes'),(4321,4142,0,'Office Supplies > Filing & Organization > Desk Organizers'),(4322,4143,0,'Office Supplies > Filing & Organization > File Boxes'),(4323,4144,0,'Office Supplies > Filing & Organization > File Folders'),(4324,4145,0,'Office Supplies > Filing & Organization > Folders & Report Covers'),(4325,4146,0,'Office Supplies > Filing & Organization > Greeting Card Organizers'),(4326,4147,0,'Office Supplies > Filing & Organization > Mail Sorters'),(4327,4148,0,'Office Supplies > Filing & Organization > Pen & Pencil Cases'),(4328,4149,0,'Office Supplies > Filing & Organization > Portfolios & Padfolios'),(4329,4150,0,'Office Supplies > Filing & Organization > Recipe Card Boxes'),(4330,4151,0,'Office Supplies > General Office Supplies'),(4331,4152,0,'Office Supplies > General Office Supplies > Brass Fasteners'),(4332,4153,0,'Office Supplies > General Office Supplies > Correction Fluids, Pens & Tapes'),(4333,4154,0,'Office Supplies > General Office Supplies > Erasers'),(4334,4155,0,'Office Supplies > General Office Supplies > Labels & Tags'),(4335,4156,0,'Office Supplies > General Office Supplies > Labels & Tags > Address Labels'),(4336,4157,0,'Office Supplies > General Office Supplies > Labels & Tags > Folder Tabs'),(4337,4158,0,'Office Supplies > General Office Supplies > Labels & Tags > Label Clips'),(4338,4159,0,'Office Supplies > General Office Supplies > Labels & Tags > Label Tapes & Refill Rolls'),(4339,4160,0,'Office Supplies > General Office Supplies > Labels & Tags > Shipping Labels'),(4340,4161,0,'Office Supplies > General Office Supplies > Labels & Tags > Shipping Tags'),(4341,4162,0,'Office Supplies > General Office Supplies > Laminating Film, Pouches & Sheets'),(4342,4163,0,'Office Supplies > General Office Supplies > Mounting Putty'),(4343,4164,0,'Office Supplies > General Office Supplies > Office Tape'),(4344,4165,0,'Office Supplies > General Office Supplies > Paper Clips & Clamps'),(4345,4166,0,'Office Supplies > General Office Supplies > Paper Products'),(4346,4167,0,'Office Supplies > General Office Supplies > Paper Products > Binder Paper'),(4347,4168,0,'Office Supplies > General Office Supplies > Paper Products > Blank ID Cards'),(4348,4169,0,'Office Supplies > General Office Supplies > Paper Products > Business Cards'),(4349,4170,0,'Office Supplies > General Office Supplies > Paper Products > Business Forms & Receipts'),(4350,4171,0,'Office Supplies > General Office Supplies > Paper Products > Checks'),(4351,4172,0,'Office Supplies > General Office Supplies > Paper Products > Cover Paper'),(4352,4173,0,'Office Supplies > General Office Supplies > Paper Products > Envelopes'),(4353,4174,0,'Office Supplies > General Office Supplies > Paper Products > Index Cards'),(4354,4175,0,'Office Supplies > General Office Supplies > Paper Products > Notebooks & Notepads'),(4355,4176,0,'Office Supplies > General Office Supplies > Paper Products > Post Cards'),(4356,4177,0,'Office Supplies > General Office Supplies > Paper Products > Printer & Copier Paper'),(4357,4178,0,'Office Supplies > General Office Supplies > Paper Products > Receipt & Adding Machine Paper Rolls'),(4358,4179,0,'Office Supplies > General Office Supplies > Paper Products > Stationery'),(4359,4180,0,'Office Supplies > General Office Supplies > Paper Products > Sticky Notes'),(4360,4181,0,'Office Supplies > General Office Supplies > Rubber Bands'),(4361,4182,0,'Office Supplies > General Office Supplies > Staples'),(4362,4183,0,'Office Supplies > General Office Supplies > Tacks & Pushpins'),(4363,4184,0,'Office Supplies > Impulse Sealers'),(4364,4185,0,'Office Supplies > Lap Desks'),(4365,4186,0,'Office Supplies > Name Plates'),(4366,4187,0,'Office Supplies > Office & Chair Mats'),(4367,4188,0,'Office Supplies > Office & Chair Mats > Anti-Fatigue Mats'),(4368,4189,0,'Office Supplies > Office & Chair Mats > Chair Mats'),(4369,4190,0,'Office Supplies > Office & Chair Mats > Office Mats'),(4370,4191,0,'Office Supplies > Office Carts'),(4371,4192,0,'Office Supplies > Office Carts > AV Carts'),(4372,4193,0,'Office Supplies > Office Carts > Book Carts'),(4373,4194,0,'Office Supplies > Office Carts > File Carts'),(4374,4195,0,'Office Supplies > Office Carts > Mail Carts'),(4375,4196,0,'Office Supplies > Office Carts > Utility Carts'),(4376,4197,0,'Office Supplies > Office Equipment'),(4377,4198,0,'Office Supplies > Office Equipment > Calculator Accessories'),(4378,4199,0,'Office Supplies > Office Equipment > Calculators'),(4379,4200,0,'Office Supplies > Office Equipment > Electronic Dictionaries & Translators'),(4380,4201,0,'Office Supplies > Office Equipment > Label Makers'),(4381,4202,0,'Office Supplies > Office Equipment > Laminators'),(4382,4203,0,'Office Supplies > Office Equipment > Office Shredders'),(4383,4204,0,'Office Supplies > Office Equipment > Postage Meters'),(4384,4205,0,'Office Supplies > Office Equipment > Time & Attendance Clocks'),(4385,4206,0,'Office Supplies > Office Equipment > Transcribers & Dictation Systems'),(4386,4207,0,'Office Supplies > Office Equipment > Typewriters'),(4387,4208,0,'Office Supplies > Office Instruments'),(4388,4209,0,'Office Supplies > Office Instruments > Call Bells'),(4389,4210,0,'Office Supplies > Office Instruments > Clipboards'),(4390,4211,0,'Office Supplies > Office Instruments > Letter Openers'),(4391,4212,0,'Office Supplies > Office Instruments > Magnifiers'),(4392,4213,0,'Office Supplies > Office Instruments > Office Rubber Stamps'),(4393,4214,0,'Office Supplies > Office Instruments > Pencil Sharpeners'),(4394,4215,0,'Office Supplies > Office Instruments > Staple Removers'),(4395,4216,0,'Office Supplies > Office Instruments > Staplers'),(4396,4217,0,'Office Supplies > Office Instruments > Tape Dispensers'),(4397,4218,0,'Office Supplies > Office Instruments > Writing & Drawing Instrument Accessories'),(4398,4219,0,'Office Supplies > Office Instruments > Writing & Drawing Instrument Accessories > Marker & Highlighter Ink Refills'),(4399,4220,0,'Office Supplies > Office Instruments > Writing & Drawing Instrument Accessories > Pen Ink & Refills'),(4400,4221,0,'Office Supplies > Office Instruments > Writing & Drawing Instrument Accessories > Pencil Lead & Refills'),(4401,4222,0,'Office Supplies > Office Instruments > Writing & Drawing Instruments'),(4402,4223,0,'Office Supplies > Office Instruments > Writing & Drawing Instruments > Art Charcoals'),(4403,4224,0,'Office Supplies > Office Instruments > Writing & Drawing Instruments > Chalk'),(4404,4225,0,'Office Supplies > Office Instruments > Writing & Drawing Instruments > Crayons'),(4405,4226,0,'Office Supplies > Office Instruments > Writing & Drawing Instruments > Markers & Highlighters'),(4406,4227,0,'Office Supplies > Office Instruments > Writing & Drawing Instruments > Multifunction Writing Instruments'),(4407,4228,0,'Office Supplies > Office Instruments > Writing & Drawing Instruments > Pastels'),(4408,4229,0,'Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils'),(4409,4230,0,'Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Pen & Pencil Sets'),(4410,4231,0,'Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Pencils'),(4411,4232,0,'Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Pencils > Art Pencils'),(4412,4233,0,'Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Pencils > Writing Pencils'),(4413,4234,0,'Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Pens'),(4414,4235,0,'Office Supplies > Paper Handling'),(4415,4236,0,'Office Supplies > Paper Handling > Fingertip Grips'),(4416,4237,0,'Office Supplies > Paper Handling > Hole Punches'),(4417,4238,0,'Office Supplies > Paper Handling > Paper Folding Machines'),(4418,4239,0,'Office Supplies > Paper Handling > Paper Joggers'),(4419,4240,0,'Office Supplies > Paper Handling > Paperweights'),(4420,4241,0,'Office Supplies > Paper Handling > Pencil Boards'),(4421,4242,0,'Office Supplies > Presentation Supplies'),(4422,4243,0,'Office Supplies > Presentation Supplies > Chalkboards'),(4423,4244,0,'Office Supplies > Presentation Supplies > Display Boards'),(4424,4245,0,'Office Supplies > Presentation Supplies > Display Boards > Bulletin Board Accessories'),(4425,4246,0,'Office Supplies > Presentation Supplies > Display Boards > Bulletin Board Accessories > Bulletin Board Trim'),(4426,4247,0,'Office Supplies > Presentation Supplies > Display Boards > Bulletin Boards'),(4427,4248,0,'Office Supplies > Presentation Supplies > Display Boards > Foam Boards'),(4428,4249,0,'Office Supplies > Presentation Supplies > Display Boards > Mounting Boards'),(4429,4250,0,'Office Supplies > Presentation Supplies > Display Boards > Poster Boards'),(4430,4251,0,'Office Supplies > Presentation Supplies > Document Cameras'),(4431,4252,0,'Office Supplies > Presentation Supplies > Dry-Erase Boards'),(4432,4253,0,'Office Supplies > Presentation Supplies > Easel Pads'),(4433,4254,0,'Office Supplies > Presentation Supplies > Easels'),(4434,4255,0,'Office Supplies > Presentation Supplies > Laser Pointers'),(4435,4256,0,'Office Supplies > Presentation Supplies > Lecterns'),(4436,4257,0,'Office Supplies > Presentation Supplies > Transparencies'),(4437,4258,0,'Office Supplies > Presentation Supplies > Wireless Presenters'),(4438,4259,0,'Office Supplies > Shipping Supplies'),(4439,4260,0,'Office Supplies > Shipping Supplies > Moving & Shipping Boxes'),(4440,4261,0,'Office Supplies > Shipping Supplies > Packing Materials'),(4441,4262,0,'Office Supplies > Shipping Supplies > Packing Tape'),(4442,4263,0,'Religious & Ceremonial'),(4443,4264,0,'Religious & Ceremonial > Memorial Ceremony Supplies'),(4444,4265,0,'Religious & Ceremonial > Memorial Ceremony Supplies > Memorial Urns'),(4445,4266,0,'Religious & Ceremonial > Religious Items'),(4446,4267,0,'Religious & Ceremonial > Religious Items > Prayer Beads'),(4447,4268,0,'Religious & Ceremonial > Religious Items > Prayer Cards'),(4448,4269,0,'Religious & Ceremonial > Religious Items > Religious Altars'),(4449,4270,0,'Religious & Ceremonial > Religious Items > Religious Veils'),(4450,4271,0,'Religious & Ceremonial > Religious Items > Tarot Cards'),(4451,4272,0,'Religious & Ceremonial > Wedding Ceremony Supplies'),(4452,4273,0,'Religious & Ceremonial > Wedding Ceremony Supplies > Aisle Runners'),(4453,4274,0,'Religious & Ceremonial > Wedding Ceremony Supplies > Flower Girl Baskets'),(4454,4275,0,'Religious & Ceremonial > Wedding Ceremony Supplies > Ring Pillows & Holders'),(4455,4276,0,'Software'),(4456,4277,0,'Software > Computer Software'),(4457,4278,0,'Software > Computer Software > Antivirus & Security Software'),(4458,4279,0,'Software > Computer Software > Business & Productivity Software'),(4459,4280,0,'Software > Computer Software > Compilers & Programming Tools'),(4460,4281,0,'Software > Computer Software > Computer Utilities & Maintenance Software'),(4461,4282,0,'Software > Computer Software > Dictionary & Translation Software'),(4462,4283,0,'Software > Computer Software > Educational Software'),(4463,4284,0,'Software > Computer Software > Financial, Tax & Accounting Software'),(4464,4285,0,'Software > Computer Software > GPS Map Data & Software'),(4465,4286,0,'Software > Computer Software > Handheld & PDA Software'),(4466,4287,0,'Software > Computer Software > Multimedia & Design Software'),(4467,4288,0,'Software > Computer Software > Multimedia & Design Software > 3D Modeling Software'),(4468,4289,0,'Software > Computer Software > Multimedia & Design Software > Animation Editing Software'),(4469,4290,0,'Software > Computer Software > Multimedia & Design Software > Graphic Design & Illustration Software'),(4470,4291,0,'Software > Computer Software > Multimedia & Design Software > Home & Interior Design Software'),(4471,4292,0,'Software > Computer Software > Multimedia & Design Software > Home Publishing Software'),(4472,4293,0,'Software > Computer Software > Multimedia & Design Software > Media Viewing Software'),(4473,4294,0,'Software > Computer Software > Multimedia & Design Software > Music Composition Software'),(4474,4295,0,'Software > Computer Software > Multimedia & Design Software > Sound Editing Software'),(4475,4296,0,'Software > Computer Software > Multimedia & Design Software > Video Editing Software'),(4476,4297,0,'Software > Computer Software > Multimedia & Design Software > Web Design Software'),(4477,4298,0,'Software > Computer Software > Network Software'),(4478,4299,0,'Software > Computer Software > Office Application Software'),(4479,4300,0,'Software > Computer Software > Operating Systems'),(4480,4301,0,'Software > Computer Software > Restore Disks'),(4481,4302,0,'Software > Digital Goods & Currency'),(4482,4303,0,'Software > Digital Goods & Currency > Computer Icons'),(4483,4304,0,'Software > Digital Goods & Currency > Desktop Wallpaper'),(4484,4305,0,'Software > Digital Goods & Currency > Digital Artwork'),(4485,4306,0,'Software > Digital Goods & Currency > Document Templates'),(4486,4307,0,'Software > Digital Goods & Currency > Fonts'),(4487,4308,0,'Software > Digital Goods & Currency > Stock Photographs & Video Footage'),(4488,4309,0,'Software > Digital Goods & Currency > Virtual Currency'),(4489,4310,0,'Software > Video Game Software'),(4490,4311,0,'Sporting Goods'),(4491,4312,0,'Sporting Goods > Athletics'),(4492,4313,0,'Sporting Goods > Athletics > Baseball & Softball'),(4493,4314,0,'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Bases & Plates'),(4494,4315,0,'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Batting Gloves'),(4495,4316,0,'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Gloves & Mitts'),(4496,4317,0,'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Pitching Mats'),(4497,4318,0,'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Pitching Mounds'),(4498,4319,0,'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Protective Gear'),(4499,4320,0,'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Protective Gear > Baseball & Softball Batting Helmets'),(4500,4321,0,'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Protective Gear > Baseball & Softball Chest Protectors'),(4501,4322,0,'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Protective Gear > Baseball & Softball Leg Guards'),(4502,4323,0,'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Protective Gear > Catchers Equipment Sets'),(4503,4324,0,'Sporting Goods > Athletics > Baseball & Softball > Baseball & Softball Protective Gear > Catchers Helmets & Masks'),(4504,4325,0,'Sporting Goods > Athletics > Baseball & Softball > Baseball Bats'),(4505,4326,0,'Sporting Goods > Athletics > Baseball & Softball > Baseballs'),(4506,4327,0,'Sporting Goods > Athletics > Baseball & Softball > Pitching Machines'),(4507,4328,0,'Sporting Goods > Athletics > Baseball & Softball > Softball Bats'),(4508,4329,0,'Sporting Goods > Athletics > Baseball & Softball > Softballs'),(4509,4330,0,'Sporting Goods > Athletics > Basketball'),(4510,4331,0,'Sporting Goods > Athletics > Basketball > Basketball Hoop Parts & Accessories'),(4511,4332,0,'Sporting Goods > Athletics > Basketball > Basketball Hoop Parts & Accessories > Basketball Backboards'),(4512,4333,0,'Sporting Goods > Athletics > Basketball > Basketball Hoop Parts & Accessories > Basketball Hoop Padding'),(4513,4334,0,'Sporting Goods > Athletics > Basketball > Basketball Hoop Parts & Accessories > Basketball Hoop Posts'),(4514,4335,0,'Sporting Goods > Athletics > Basketball > Basketball Hoop Parts & Accessories > Basketball Nets'),(4515,4336,0,'Sporting Goods > Athletics > Basketball > Basketball Hoop Parts & Accessories > Basketball Rims'),(4516,4337,0,'Sporting Goods > Athletics > Basketball > Basketball Hoops'),(4517,4338,0,'Sporting Goods > Athletics > Basketball > Basketball Training Aids'),(4518,4339,0,'Sporting Goods > Athletics > Basketball > Basketballs'),(4519,4340,0,'Sporting Goods > Athletics > Boxing & Martial Arts'),(4520,4341,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Protective Gear'),(4521,4342,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Protective Gear > Boxing & MMA Hand Wraps'),(4522,4343,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Protective Gear > Boxing & Martial Arts Arm Guards'),(4523,4344,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Protective Gear > Boxing & Martial Arts Body Protectors'),(4524,4345,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Protective Gear > Boxing & Martial Arts Headgear'),(4525,4346,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Protective Gear > Boxing Gloves & Mitts'),(4526,4347,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Protective Gear > MMA Shin Guards'),(4527,4348,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Training Equipment'),(4528,4349,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Training Equipment > Boxing & MMA Punch Mitts'),(4529,4350,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Training Equipment > Grappling Dummies'),(4530,4351,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Training Equipment > Punching & Training Bag Accessories'),(4531,4352,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Training Equipment > Punching & Training Bags'),(4532,4353,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing & Martial Arts Training Equipment > Strike Shields'),(4533,4354,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing Ring Parts'),(4534,4355,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Boxing Rings'),(4535,4356,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Martial Arts Belts'),(4536,4357,0,'Sporting Goods > Athletics > Boxing & Martial Arts > Martial Arts Weapons'),(4537,4358,0,'Sporting Goods > Athletics > Broomball Equipment'),(4538,4359,0,'Sporting Goods > Athletics > Cheerleading'),(4539,4360,0,'Sporting Goods > Athletics > Cheerleading > Cheerleading Pom Poms'),(4540,4361,0,'Sporting Goods > Athletics > Coaching & Officiating'),(4541,4362,0,'Sporting Goods > Athletics > Coaching & Officiating > Captains Armbands'),(4542,4363,0,'Sporting Goods > Athletics > Coaching & Officiating > Field & Court Boundary Markers'),(4543,4364,0,'Sporting Goods > Athletics > Coaching & Officiating > Flip Coins & Discs'),(4544,4365,0,'Sporting Goods > Athletics > Coaching & Officiating > Linesman Flags'),(4545,4366,0,'Sporting Goods > Athletics > Coaching & Officiating > Penalty Cards & Flags'),(4546,4367,0,'Sporting Goods > Athletics > Coaching & Officiating > Pitch Counters'),(4547,4368,0,'Sporting Goods > Athletics > Coaching & Officiating > Referee Stands & Chairs'),(4548,4369,0,'Sporting Goods > Athletics > Coaching & Officiating > Referee Wallets'),(4549,4370,0,'Sporting Goods > Athletics > Coaching & Officiating > Scoreboards'),(4550,4371,0,'Sporting Goods > Athletics > Coaching & Officiating > Sport & Safety Whistles'),(4551,4372,0,'Sporting Goods > Athletics > Coaching & Officiating > Umpire Indicators'),(4552,4373,0,'Sporting Goods > Athletics > Cricket'),(4553,4374,0,'Sporting Goods > Athletics > Cricket > Cricket Balls'),(4554,4375,0,'Sporting Goods > Athletics > Cricket > Cricket Bat Accessories'),(4555,4376,0,'Sporting Goods > Athletics > Cricket > Cricket Bat Accessories > Cricket Bat Grips'),(4556,4377,0,'Sporting Goods > Athletics > Cricket > Cricket Bats'),(4557,4378,0,'Sporting Goods > Athletics > Cricket > Cricket Equipment Sets'),(4558,4379,0,'Sporting Goods > Athletics > Cricket > Cricket Protective Gear'),(4559,4380,0,'Sporting Goods > Athletics > Cricket > Cricket Protective Gear > Cricket Gloves'),(4560,4381,0,'Sporting Goods > Athletics > Cricket > Cricket Protective Gear > Cricket Helmets'),(4561,4382,0,'Sporting Goods > Athletics > Cricket > Cricket Protective Gear > Cricket Leg Guards'),(4562,4383,0,'Sporting Goods > Athletics > Cricket > Cricket Stumps'),(4563,4384,0,'Sporting Goods > Athletics > Dancing'),(4564,4385,0,'Sporting Goods > Athletics > Dancing > Ballet Barres'),(4565,4386,0,'Sporting Goods > Athletics > Fencing'),(4566,4387,0,'Sporting Goods > Athletics > Fencing > Fencing Protective Gear'),(4567,4388,0,'Sporting Goods > Athletics > Fencing > Fencing Protective Gear > Fencing Gloves & Cuffs'),(4568,4389,0,'Sporting Goods > Athletics > Fencing > Fencing Protective Gear > Fencing Jackets & LamÃ©s'),(4569,4390,0,'Sporting Goods > Athletics > Fencing > Fencing Protective Gear > Fencing Masks'),(4570,4391,0,'Sporting Goods > Athletics > Fencing > Fencing Weapons'),(4571,4392,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse'),(4572,4393,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey & Lacrosse Protective Gear'),(4573,4394,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey & Lacrosse Protective Gear > Field Hockey & Lacrosse Gloves'),(4574,4395,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey & Lacrosse Protective Gear > Field Hockey & Lacrosse Helmets'),(4575,4396,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey & Lacrosse Protective Gear > Field Hockey & Lacrosse Masks & Goggles'),(4576,4397,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey & Lacrosse Protective Gear > Field Hockey & Lacrosse Pads'),(4577,4398,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey Balls'),(4578,4399,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey Goals'),(4579,4400,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Field Hockey Sticks'),(4580,4401,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Balls'),(4581,4402,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Equipment Sets'),(4582,4403,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Goals'),(4583,4404,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Stick Parts'),(4584,4405,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Stick Parts > Lacrosse Mesh & String'),(4585,4406,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Stick Parts > Lacrosse Stick Heads'),(4586,4407,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Stick Parts > Lacrosse Stick Shafts'),(4587,4408,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Sticks'),(4588,4409,0,'Sporting Goods > Athletics > Field Hockey & Lacrosse > Lacrosse Training Aids'),(4589,4410,0,'Sporting Goods > Athletics > Figure Skating & Hockey'),(4590,4411,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Balls & Pucks'),(4591,4412,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Goals'),(4592,4413,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear'),(4593,4414,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Elbow Pads'),(4594,4415,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Gloves'),(4595,4416,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Goalie Equipment Sets'),(4596,4417,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Helmets'),(4597,4418,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Pants'),(4598,4419,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Shin Guards & Leg Pads'),(4599,4420,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Shoulder Pads & Chest Protectors'),(4600,4421,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Protective Gear > Hockey Suspenders & Belts'),(4601,4422,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Sledges'),(4602,4423,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Stick Care'),(4603,4424,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Stick Parts'),(4604,4425,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Stick Parts > Hockey Stick Blades'),(4605,4426,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Stick Parts > Hockey Stick Shafts'),(4606,4427,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Hockey Sticks'),(4607,4428,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Ice Skate Parts & Accessories'),(4608,4429,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Ice Skate Parts & Accessories > Figure Skate Boots'),(4609,4430,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Ice Skate Parts & Accessories > Ice Skate Blades'),(4610,4431,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Ice Skate Parts & Accessories > Ice Skate Sharpeners'),(4611,4432,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Ice Skate Parts & Accessories > Skate Blade Guards'),(4612,4433,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Ice Skate Parts & Accessories > Skate Lace Tighteners'),(4613,4434,0,'Sporting Goods > Athletics > Figure Skating & Hockey > Ice Skates'),(4614,4435,0,'Sporting Goods > Athletics > Football'),(4615,4436,0,'Sporting Goods > Athletics > Football > Football Gloves'),(4616,4437,0,'Sporting Goods > Athletics > Football > Football Goal Posts'),(4617,4438,0,'Sporting Goods > Athletics > Football > Football Kicking Tees & Holders'),(4618,4439,0,'Sporting Goods > Athletics > Football > Football Protective Gear'),(4619,4440,0,'Sporting Goods > Athletics > Football > Football Protective Gear > Football Girdles'),(4620,4441,0,'Sporting Goods > Athletics > Football > Football Protective Gear > Football Helmet Accessories'),(4621,4442,0,'Sporting Goods > Athletics > Football > Football Protective Gear > Football Helmet Accessories > Football Chin Straps'),(4622,4443,0,'Sporting Goods > Athletics > Football > Football Protective Gear > Football Helmet Accessories > Football Face Masks'),(4623,4444,0,'Sporting Goods > Athletics > Football > Football Protective Gear > Football Helmet Accessories > Football Helmet Padding'),(4624,4445,0,'Sporting Goods > Athletics > Football > Football Protective Gear > Football Helmet Accessories > Football Helmet Visors'),(4625,4446,0,'Sporting Goods > Athletics > Football > Football Protective Gear > Football Helmets'),(4626,4447,0,'Sporting Goods > Athletics > Football > Football Protective Gear > Football Neck Rolls'),(4627,4448,0,'Sporting Goods > Athletics > Football > Football Protective Gear > Football Rib Protection Shirts & Vests'),(4628,4449,0,'Sporting Goods > Athletics > Football > Football Protective Gear > Football Shoulder Pads'),(4629,4450,0,'Sporting Goods > Athletics > Football > Football Training Equipment'),(4630,4451,0,'Sporting Goods > Athletics > Football > Football Training Equipment > Football Dummies & Sleds'),(4631,4452,0,'Sporting Goods > Athletics > Football > Footballs'),(4632,4453,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment'),(4633,4454,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment > Altitude Training Masks'),(4634,4455,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment > Athletic Cups'),(4635,4456,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment > Ball Carrying Bags & Carts'),(4636,4457,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment > Ball Pump Accessories'),(4637,4458,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment > Ball Pump Accessories > Ball Pump Needles'),(4638,4459,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment > Ball Pumps'),(4639,4460,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment > Exercise & Gym Mat Storage Racks & Carts'),(4640,4461,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment > Grip Spray & Chalk'),(4641,4462,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment > Gym Mats'),(4642,4463,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment > Practice Nets & Screens'),(4643,4464,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment > Speed & Agility Ladders & Hurdles'),(4644,4465,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment > Sports & Agility Cones'),(4645,4466,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment > Sports Megaphones'),(4646,4467,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment > Sports Mouthguards'),(4647,4468,0,'Sporting Goods > Athletics > General Purpose Athletic Equipment > Stadium Seats & Cushions'),(4648,4469,0,'Sporting Goods > Athletics > Gymnastics'),(4649,4470,0,'Sporting Goods > Athletics > Gymnastics > Gymnastics Bars & Balance Beams'),(4650,4471,0,'Sporting Goods > Athletics > Gymnastics > Gymnastics Protective Gear'),(4651,4472,0,'Sporting Goods > Athletics > Gymnastics > Gymnastics Protective Gear > Gymnastics Grips'),(4652,4473,0,'Sporting Goods > Athletics > Gymnastics > Gymnastics Rings'),(4653,4474,0,'Sporting Goods > Athletics > Gymnastics > Gymnastics Springboards'),(4654,4475,0,'Sporting Goods > Athletics > Gymnastics > Pommel Horses'),(4655,4476,0,'Sporting Goods > Athletics > Gymnastics > Vaulting Horses'),(4656,4477,0,'Sporting Goods > Athletics > Racquetball & Squash'),(4657,4478,0,'Sporting Goods > Athletics > Racquetball & Squash > Racquetball & Squash Balls'),(4658,4479,0,'Sporting Goods > Athletics > Racquetball & Squash > Racquetball & Squash Eyewear'),(4659,4480,0,'Sporting Goods > Athletics > Racquetball & Squash > Racquetball & Squash Gloves'),(4660,4481,0,'Sporting Goods > Athletics > Racquetball & Squash > Racquetball Racquets'),(4661,4482,0,'Sporting Goods > Athletics > Racquetball & Squash > Squash Racquets'),(4662,4483,0,'Sporting Goods > Athletics > Rounders'),(4663,4484,0,'Sporting Goods > Athletics > Rounders > Rounders Bats'),(4664,4485,0,'Sporting Goods > Athletics > Rounders > Rounders Gloves'),(4665,4486,0,'Sporting Goods > Athletics > Rugby'),(4666,4487,0,'Sporting Goods > Athletics > Rugby > Rugby Balls'),(4667,4488,0,'Sporting Goods > Athletics > Rugby > Rugby Gloves'),(4668,4489,0,'Sporting Goods > Athletics > Rugby > Rugby Posts'),(4669,4490,0,'Sporting Goods > Athletics > Rugby > Rugby Protective Gear'),(4670,4491,0,'Sporting Goods > Athletics > Rugby > Rugby Protective Gear > Rugby Headgear'),(4671,4492,0,'Sporting Goods > Athletics > Rugby > Rugby Training Aids'),(4672,4493,0,'Sporting Goods > Athletics > Soccer'),(4673,4494,0,'Sporting Goods > Athletics > Soccer > Soccer Balls'),(4674,4495,0,'Sporting Goods > Athletics > Soccer > Soccer Corner Flags'),(4675,4496,0,'Sporting Goods > Athletics > Soccer > Soccer Gloves'),(4676,4497,0,'Sporting Goods > Athletics > Soccer > Soccer Goal Accessories'),(4677,4498,0,'Sporting Goods > Athletics > Soccer > Soccer Goals'),(4678,4499,0,'Sporting Goods > Athletics > Soccer > Soccer Protective Gear'),(4679,4500,0,'Sporting Goods > Athletics > Soccer > Soccer Protective Gear > Soccer Shin Guards'),(4680,4501,0,'Sporting Goods > Athletics > Team Handball'),(4681,4502,0,'Sporting Goods > Athletics > Team Handball > Handballs'),(4682,4503,0,'Sporting Goods > Athletics > Tennis'),(4683,4504,0,'Sporting Goods > Athletics > Tennis > Tennis Ball Hoppers & Carts'),(4684,4505,0,'Sporting Goods > Athletics > Tennis > Tennis Ball Machines'),(4685,4506,0,'Sporting Goods > Athletics > Tennis > Tennis Ball Savers'),(4686,4507,0,'Sporting Goods > Athletics > Tennis > Tennis Balls'),(4687,4508,0,'Sporting Goods > Athletics > Tennis > Tennis Nets'),(4688,4509,0,'Sporting Goods > Athletics > Tennis > Tennis Racquet Accessories'),(4689,4510,0,'Sporting Goods > Athletics > Tennis > Tennis Racquet Accessories > Racquet Vibration Dampeners'),(4690,4511,0,'Sporting Goods > Athletics > Tennis > Tennis Racquet Accessories > Tennis Racquet Bags'),(4691,4512,0,'Sporting Goods > Athletics > Tennis > Tennis Racquet Accessories > Tennis Racquet Grips & Tape'),(4692,4513,0,'Sporting Goods > Athletics > Tennis > Tennis Racquet Accessories > Tennis Racquet Grommets'),(4693,4514,0,'Sporting Goods > Athletics > Tennis > Tennis Racquet Accessories > Tennis Racquet String'),(4694,4515,0,'Sporting Goods > Athletics > Tennis > Tennis Racquets'),(4695,4516,0,'Sporting Goods > Athletics > Track & Field'),(4696,4517,0,'Sporting Goods > Athletics > Track & Field > Discus'),(4697,4518,0,'Sporting Goods > Athletics > Track & Field > High Jump Crossbars'),(4698,4519,0,'Sporting Goods > Athletics > Track & Field > High Jump Pits'),(4699,4520,0,'Sporting Goods > Athletics > Track & Field > Javelins'),(4700,4521,0,'Sporting Goods > Athletics > Track & Field > Pole Vault Pits'),(4701,4522,0,'Sporting Goods > Athletics > Track & Field > Relay Batons'),(4702,4523,0,'Sporting Goods > Athletics > Track & Field > Shot Puts'),(4703,4524,0,'Sporting Goods > Athletics > Track & Field > Starter Pistols'),(4704,4525,0,'Sporting Goods > Athletics > Track & Field > Throwing Hammers'),(4705,4526,0,'Sporting Goods > Athletics > Track & Field > Track Hurdles'),(4706,4527,0,'Sporting Goods > Athletics > Track & Field > Track Starting Blocks'),(4707,4528,0,'Sporting Goods > Athletics > Track & Field > Vaulting Poles'),(4708,4529,0,'Sporting Goods > Athletics > Volleyball'),(4709,4530,0,'Sporting Goods > Athletics > Volleyball > Volleyball Nets'),(4710,4531,0,'Sporting Goods > Athletics > Volleyball > Volleyball Protective Gear'),(4711,4532,0,'Sporting Goods > Athletics > Volleyball > Volleyball Protective Gear > Volleyball Knee Pads'),(4712,4533,0,'Sporting Goods > Athletics > Volleyball > Volleyball Training Aids'),(4713,4534,0,'Sporting Goods > Athletics > Volleyball > Volleyballs'),(4714,4535,0,'Sporting Goods > Athletics > Wallyball Equipment'),(4715,4536,0,'Sporting Goods > Athletics > Water Polo'),(4716,4537,0,'Sporting Goods > Athletics > Water Polo > Water Polo Balls'),(4717,4538,0,'Sporting Goods > Athletics > Water Polo > Water Polo Caps'),(4718,4539,0,'Sporting Goods > Athletics > Water Polo > Water Polo Goals'),(4719,4540,0,'Sporting Goods > Athletics > Wrestling'),(4720,4541,0,'Sporting Goods > Athletics > Wrestling > Wrestling Protective Gear'),(4721,4542,0,'Sporting Goods > Athletics > Wrestling > Wrestling Protective Gear > Wrestling Headgear'),(4722,4543,0,'Sporting Goods > Athletics > Wrestling > Wrestling Protective Gear > Wrestling Knee Pads'),(4723,4544,0,'Sporting Goods > Exercise & Fitness'),(4724,4545,0,'Sporting Goods > Exercise & Fitness > Ab Wheels & Rollers'),(4725,4546,0,'Sporting Goods > Exercise & Fitness > Aerobic Steps'),(4726,4547,0,'Sporting Goods > Exercise & Fitness > Balance Trainers'),(4727,4548,0,'Sporting Goods > Exercise & Fitness > Cardio'),(4728,4549,0,'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machine Accessories'),(4729,4550,0,'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machine Accessories > Elliptical Trainer Accessories'),(4730,4551,0,'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machine Accessories > Exercise Bike Accessories'),(4731,4552,0,'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machine Accessories > Rowing Machine Accessories'),(4732,4553,0,'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machine Accessories > Stair Climber & Stepper Accessories'),(4733,4554,0,'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machine Accessories > Treadmill Accessories'),(4734,4555,0,'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machines'),(4735,4556,0,'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machines > Elliptical Trainers'),(4736,4557,0,'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machines > Exercise Bikes'),(4737,4558,0,'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machines > Rowing Machines'),(4738,4559,0,'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machines > Stair Climbers & Steppers'),(4739,4560,0,'Sporting Goods > Exercise & Fitness > Cardio > Cardio Machines > Treadmills'),(4740,4561,0,'Sporting Goods > Exercise & Fitness > Cardio > Jump Ropes'),(4741,4562,0,'Sporting Goods > Exercise & Fitness > Exercise Balls'),(4742,4563,0,'Sporting Goods > Exercise & Fitness > Exercise Bands'),(4743,4564,0,'Sporting Goods > Exercise & Fitness > Exercise Benches'),(4744,4565,0,'Sporting Goods > Exercise & Fitness > Exercise Equipment Mats'),(4745,4566,0,'Sporting Goods > Exercise & Fitness > Exercise Machine & Equipment Sets'),(4746,4567,0,'Sporting Goods > Exercise & Fitness > Exercise Wedges'),(4747,4568,0,'Sporting Goods > Exercise & Fitness > Foam Roller Accessories'),(4748,4569,0,'Sporting Goods > Exercise & Fitness > Foam Roller Accessories > Foam Roller Storage Bags'),(4749,4570,0,'Sporting Goods > Exercise & Fitness > Foam Rollers'),(4750,4571,0,'Sporting Goods > Exercise & Fitness > Hand Exercisers'),(4751,4572,0,'Sporting Goods > Exercise & Fitness > Inversion Tables & Systems'),(4752,4573,0,'Sporting Goods > Exercise & Fitness > Medicine Balls'),(4753,4574,0,'Sporting Goods > Exercise & Fitness > Power Towers'),(4754,4575,0,'Sporting Goods > Exercise & Fitness > Push Up & Pull Up Bars'),(4755,4576,0,'Sporting Goods > Exercise & Fitness > Reaction Balls'),(4756,4577,0,'Sporting Goods > Exercise & Fitness > Speed & Resistance Parachutes'),(4757,4578,0,'Sporting Goods > Exercise & Fitness > Sport Safety Lights & Reflectors'),(4758,4579,0,'Sporting Goods > Exercise & Fitness > Stopwatches'),(4759,4580,0,'Sporting Goods > Exercise & Fitness > Suspension Trainers'),(4760,4581,0,'Sporting Goods > Exercise & Fitness > Vibration Exercise Machines'),(4761,4582,0,'Sporting Goods > Exercise & Fitness > Weight Lifting'),(4762,4583,0,'Sporting Goods > Exercise & Fitness > Weight Lifting > Free Weight Accessories'),(4763,4584,0,'Sporting Goods > Exercise & Fitness > Weight Lifting > Free Weight Accessories > Free Weight Storage Racks'),(4764,4585,0,'Sporting Goods > Exercise & Fitness > Weight Lifting > Free Weight Accessories > Weight Bar Collars'),(4765,4586,0,'Sporting Goods > Exercise & Fitness > Weight Lifting > Free Weight Accessories > Weight Bars'),(4766,4587,0,'Sporting Goods > Exercise & Fitness > Weight Lifting > Free Weights'),(4767,4588,0,'Sporting Goods > Exercise & Fitness > Weight Lifting > Weight Lifting Belts'),(4768,4589,0,'Sporting Goods > Exercise & Fitness > Weight Lifting > Weight Lifting Gloves & Hand Supports'),(4769,4590,0,'Sporting Goods > Exercise & Fitness > Weight Lifting > Weight Lifting Machine & Exercise Bench Accessories'),(4770,4591,0,'Sporting Goods > Exercise & Fitness > Weight Lifting > Weight Lifting Machines & Racks'),(4771,4592,0,'Sporting Goods > Exercise & Fitness > Weighted Clothing'),(4772,4593,0,'Sporting Goods > Exercise & Fitness > Yoga & Pilates'),(4773,4594,0,'Sporting Goods > Exercise & Fitness > Yoga & Pilates > Pilates Machines'),(4774,4595,0,'Sporting Goods > Exercise & Fitness > Yoga & Pilates > Yoga & Pilates Blocks'),(4775,4596,0,'Sporting Goods > Exercise & Fitness > Yoga & Pilates > Yoga & Pilates Mats'),(4776,4597,0,'Sporting Goods > Exercise & Fitness > Yoga & Pilates > Yoga & Pilates Towels'),(4777,4598,0,'Sporting Goods > Exercise & Fitness > Yoga & Pilates > Yoga Mat Bags & Straps'),(4778,4599,0,'Sporting Goods > Indoor Games'),(4779,4600,0,'Sporting Goods > Indoor Games > Air Hockey'),(4780,4601,0,'Sporting Goods > Indoor Games > Air Hockey > Air Hockey Equipment'),(4781,4602,0,'Sporting Goods > Indoor Games > Air Hockey > Air Hockey Table Parts'),(4782,4603,0,'Sporting Goods > Indoor Games > Air Hockey > Air Hockey Tables'),(4783,4604,0,'Sporting Goods > Indoor Games > Billiards'),(4784,4605,0,'Sporting Goods > Indoor Games > Billiards > Billiard Ball Racks'),(4785,4606,0,'Sporting Goods > Indoor Games > Billiards > Billiard Balls'),(4786,4607,0,'Sporting Goods > Indoor Games > Billiards > Billiard Cue Accessories'),(4787,4608,0,'Sporting Goods > Indoor Games > Billiards > Billiard Cue Accessories > Billiard Cue Cases'),(4788,4609,0,'Sporting Goods > Indoor Games > Billiards > Billiard Cue Accessories > Billiard Cue Chalk'),(4789,4610,0,'Sporting Goods > Indoor Games > Billiards > Billiard Cue Accessories > Billiard Cue Racks'),(4790,4611,0,'Sporting Goods > Indoor Games > Billiards > Billiard Cues & Bridges'),(4791,4612,0,'Sporting Goods > Indoor Games > Billiards > Billiard Gloves'),(4792,4613,0,'Sporting Goods > Indoor Games > Billiards > Billiard Table Lights'),(4793,4614,0,'Sporting Goods > Indoor Games > Billiards > Billiard Table Parts & Accessories'),(4794,4615,0,'Sporting Goods > Indoor Games > Billiards > Billiard Table Parts & Accessories > Billiard Pockets'),(4795,4616,0,'Sporting Goods > Indoor Games > Billiards > Billiard Table Parts & Accessories > Billiard Table Brushes'),(4796,4617,0,'Sporting Goods > Indoor Games > Billiards > Billiard Table Parts & Accessories > Billiard Table Cloth'),(4797,4618,0,'Sporting Goods > Indoor Games > Billiards > Billiard Table Parts & Accessories > Billiard Table Covers'),(4798,4619,0,'Sporting Goods > Indoor Games > Billiards > Billiard Tables'),(4799,4620,0,'Sporting Goods > Indoor Games > Bowling'),(4800,4621,0,'Sporting Goods > Indoor Games > Bowling > Bowling Ball Bags'),(4801,4622,0,'Sporting Goods > Indoor Games > Bowling > Bowling Balls'),(4802,4623,0,'Sporting Goods > Indoor Games > Bowling > Bowling Gloves'),(4803,4624,0,'Sporting Goods > Indoor Games > Bowling > Bowling Pins'),(4804,4625,0,'Sporting Goods > Indoor Games > Bowling > Bowling Wrist Supports'),(4805,4626,0,'Sporting Goods > Indoor Games > Foosball'),(4806,4627,0,'Sporting Goods > Indoor Games > Foosball > Foosball Balls'),(4807,4628,0,'Sporting Goods > Indoor Games > Foosball > Foosball Table Parts & Accessories'),(4808,4629,0,'Sporting Goods > Indoor Games > Foosball > Foosball Tables'),(4809,4630,0,'Sporting Goods > Indoor Games > Multi-Game Tables'),(4810,4631,0,'Sporting Goods > Indoor Games > Ping Pong'),(4811,4632,0,'Sporting Goods > Indoor Games > Ping Pong > Ping Pong Balls'),(4812,4633,0,'Sporting Goods > Indoor Games > Ping Pong > Ping Pong Nets & Posts'),(4813,4634,0,'Sporting Goods > Indoor Games > Ping Pong > Ping Pong Paddle Accessories'),(4814,4635,0,'Sporting Goods > Indoor Games > Ping Pong > Ping Pong Paddles & Sets'),(4815,4636,0,'Sporting Goods > Indoor Games > Ping Pong > Ping Pong Robot Accessories'),(4816,4637,0,'Sporting Goods > Indoor Games > Ping Pong > Ping Pong Robots'),(4817,4638,0,'Sporting Goods > Indoor Games > Ping Pong > Ping Pong Tables'),(4818,4639,0,'Sporting Goods > Indoor Games > Table Shuffleboard'),(4819,4640,0,'Sporting Goods > Indoor Games > Table Shuffleboard > Shuffleboard Tables'),(4820,4641,0,'Sporting Goods > Indoor Games > Table Shuffleboard > Table Shuffleboard Powder'),(4821,4642,0,'Sporting Goods > Indoor Games > Table Shuffleboard > Table Shuffleboard Pucks'),(4822,4643,0,'Sporting Goods > Indoor Games > Throwing Darts'),(4823,4644,0,'Sporting Goods > Indoor Games > Throwing Darts > Dart Backboards'),(4824,4645,0,'Sporting Goods > Indoor Games > Throwing Darts > Dart Parts'),(4825,4646,0,'Sporting Goods > Indoor Games > Throwing Darts > Dart Parts > Dart Flights'),(4826,4647,0,'Sporting Goods > Indoor Games > Throwing Darts > Dart Parts > Dart Shafts'),(4827,4648,0,'Sporting Goods > Indoor Games > Throwing Darts > Dart Parts > Dart Tips'),(4828,4649,0,'Sporting Goods > Indoor Games > Throwing Darts > Dartboards'),(4829,4650,0,'Sporting Goods > Indoor Games > Throwing Darts > Darts'),(4830,4651,0,'Sporting Goods > Outdoor Recreation'),(4831,4652,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports'),(4832,4653,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting'),(4833,4654,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Boating Gloves'),(4834,4655,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Canoe Accessories'),(4835,4656,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Canoes'),(4836,4657,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Kayak Accessories'),(4837,4658,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Kayaks'),(4838,4659,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Paddle Leashes'),(4839,4660,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Paddles & Oars'),(4840,4661,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Pedal Boats'),(4841,4662,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Row Boats'),(4842,4663,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Rafting > Whitewater Rafts'),(4843,4664,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel'),(4844,4665,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Drysuits'),(4845,4666,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Life Jacket Accessories'),(4846,4667,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Life Jackets'),(4847,4668,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Rash Guards & Swim Shirts'),(4848,4669,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Water Sport Helmets'),(4849,4670,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Wetsuit Pieces'),(4850,4671,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Wetsuit Pieces > Wetsuit Bottoms'),(4851,4672,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Wetsuit Pieces > Wetsuit Hoods, Gloves & Boots'),(4852,4673,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Wetsuit Pieces > Wetsuit Tops'),(4853,4674,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Boating & Water Sport Apparel > Wetsuits'),(4854,4675,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling'),(4855,4676,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Buoyancy Compensators'),(4856,4677,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Dive Computers'),(4857,4678,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Diving & Snorkeling Equipment Sets'),(4858,4679,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Diving & Snorkeling Fins'),(4859,4680,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Diving & Snorkeling Masks'),(4860,4681,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Diving Belts'),(4861,4682,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Diving Knives & Shears'),(4862,4683,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Diving Regulators'),(4863,4684,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Diving & Snorkeling > Snorkels'),(4864,4685,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Kitesurfing'),(4865,4686,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Kitesurfing > Kiteboard Cases'),(4866,4687,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Kitesurfing > Kiteboard Parts'),(4867,4688,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Kitesurfing > Kiteboards'),(4868,4689,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Kitesurfing > Kitesurfing & Windsurfing Harnesses'),(4869,4690,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Kitesurfing > Kitesurfing Kites'),(4870,4691,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing'),(4871,4692,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Bodyboards'),(4872,4693,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Paddleboards'),(4873,4694,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Skimboards'),(4874,4695,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Surf Leashes'),(4875,4696,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Surfboard Cases & Bags'),(4876,4697,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Surfboard Fins'),(4877,4698,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Surfboard Wax'),(4878,4699,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Surfboards'),(4879,4700,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Surfing Gloves'),(4880,4701,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Surfing > Surfing Tail Pads'),(4881,4702,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming'),(4882,4703,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Child Swimming Aids'),(4883,4704,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Hand Paddles'),(4884,4705,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Kickboards'),(4885,4706,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Pull Buoys'),(4886,4707,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swim Belts'),(4887,4708,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swim Caps'),(4888,4709,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swim Gloves'),(4889,4710,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swim Goggle & Mask Accessories'),(4890,4711,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swim Goggles & Masks'),(4891,4712,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swim Weights'),(4892,4713,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swimming Fins'),(4893,4714,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swimming Fins > Monofins'),(4894,4715,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swimming Fins > Training Fins'),(4895,4716,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swimming Machines'),(4896,4717,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Swimming > Swimming Nose Clips'),(4897,4718,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports'),(4898,4719,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Kneeboarding'),(4899,4720,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Kneeboarding > Kneeboards'),(4900,4721,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Towable Rafts & Tubes'),(4901,4722,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Towed Water Sport Gloves'),(4902,4723,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Wakeboarding'),(4903,4724,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Wakeboarding > Kiteboard & Wakeboard Bindings'),(4904,4725,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Wakeboarding > Wakeboard Parts'),(4905,4726,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Wakeboarding > Wakeboards'),(4906,4727,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Water Skiing'),(4907,4728,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Water Skiing > Sit-Down Hydrofoils'),(4908,4729,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Water Skiing > Water Ski Bindings'),(4909,4730,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Water Skiing > Water Ski Cases & Bags'),(4910,4731,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Water Skiing > Water Skis'),(4911,4732,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Towed Water Sports > Water Sport Tow Cables'),(4912,4733,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Watercraft Storage Racks'),(4913,4734,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Watercraft Storage Racks > Boat Storage Racks'),(4914,4735,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Watercraft Storage Racks > Water Sport Board Storage Racks'),(4915,4736,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Windsurfing'),(4916,4737,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Windsurfing > Windsurfing Board Parts'),(4917,4738,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Windsurfing > Windsurfing Board Parts > Windsurfing Board Fins'),(4918,4739,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Windsurfing > Windsurfing Board Parts > Windsurfing Board Masts'),(4919,4740,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Windsurfing > Windsurfing Boards'),(4920,4741,0,'Sporting Goods > Outdoor Recreation > Boating & Water Sports > Windsurfing > Windsurfing Sails'),(4921,4742,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking'),(4922,4743,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camp Furniture'),(4923,4744,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camp Furniture > Air Mattress & Sleeping Pad Accessories'),(4924,4745,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camp Furniture > Air Mattresses'),(4925,4746,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camp Furniture > Cots'),(4926,4747,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camping Cookware & Dinnerware'),(4927,4748,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camping Lights & Lanterns'),(4928,4749,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camping Tools'),(4929,4750,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camping Tools > Hunting & Survival Knives'),(4930,4751,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Camping Tools > Multifunction Tools & Knives'),(4931,4752,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Chemical Hand Warmers'),(4932,4753,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Compression Sacks'),(4933,4754,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Hiking Pole Accessories'),(4934,4755,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Hiking Poles'),(4935,4756,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Mosquito Nets & Insect Screens'),(4936,4757,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Navigational Compasses'),(4937,4758,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Portable Toilets & Showers'),(4938,4759,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Portable Toilets & Showers > Portable Showers & Privacy Enclosures'),(4939,4760,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Portable Toilets & Showers > Portable Toilets & Urination Devices'),(4940,4761,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Portable Water Filters & Purifiers'),(4941,4762,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Sleeping Bag Liners'),(4942,4763,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Sleeping Bags'),(4943,4764,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Sleeping Pads'),(4944,4765,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Tent Accessories'),(4945,4766,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Tent Accessories > Inner Tents'),(4946,4767,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Tent Accessories > Tent Footprints'),(4947,4768,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Tent Accessories > Tent Poles & Stakes'),(4948,4769,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Tent Accessories > Tent Vestibules'),(4949,4770,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Tents'),(4950,4771,0,'Sporting Goods > Outdoor Recreation > Camping & Hiking > Windbreaks'),(4951,4772,0,'Sporting Goods > Outdoor Recreation > Climbing'),(4952,4773,0,'Sporting Goods > Outdoor Recreation > Climbing > Belay Devices'),(4953,4774,0,'Sporting Goods > Outdoor Recreation > Climbing > Carabiners'),(4954,4775,0,'Sporting Goods > Outdoor Recreation > Climbing > Climbing Apparel & Accessories'),(4955,4776,0,'Sporting Goods > Outdoor Recreation > Climbing > Climbing Apparel & Accessories > Climbing Gloves'),(4956,4777,0,'Sporting Goods > Outdoor Recreation > Climbing > Climbing Apparel & Accessories > Climbing Helmets'),(4957,4778,0,'Sporting Goods > Outdoor Recreation > Climbing > Climbing Apparel & Accessories > Crampons'),(4958,4779,0,'Sporting Goods > Outdoor Recreation > Climbing > Climbing Ascenders & Descenders'),(4959,4780,0,'Sporting Goods > Outdoor Recreation > Climbing > Climbing Chalk Bags'),(4960,4781,0,'Sporting Goods > Outdoor Recreation > Climbing > Climbing Crash Pads'),(4961,4782,0,'Sporting Goods > Outdoor Recreation > Climbing > Climbing Harnesses'),(4962,4783,0,'Sporting Goods > Outdoor Recreation > Climbing > Climbing Protection Devices'),(4963,4784,0,'Sporting Goods > Outdoor Recreation > Climbing > Climbing Rope'),(4964,4785,0,'Sporting Goods > Outdoor Recreation > Climbing > Climbing Rope Bags'),(4965,4786,0,'Sporting Goods > Outdoor Recreation > Climbing > Climbing Webbing'),(4966,4787,0,'Sporting Goods > Outdoor Recreation > Climbing > Ice Climbing Tools'),(4967,4788,0,'Sporting Goods > Outdoor Recreation > Climbing > Ice Screws'),(4968,4789,0,'Sporting Goods > Outdoor Recreation > Climbing > Indoor Climbing Holds'),(4969,4790,0,'Sporting Goods > Outdoor Recreation > Climbing > Quickdraws'),(4970,4791,0,'Sporting Goods > Outdoor Recreation > Cycling'),(4971,4792,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories'),(4972,4793,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Bags & Panniers'),(4973,4794,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Baskets'),(4974,4795,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Bells & Horns'),(4975,4796,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Cages'),(4976,4797,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Child Seat Accessories'),(4977,4798,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Child Seats'),(4978,4799,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Computer Accessories'),(4979,4800,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Computers'),(4980,4801,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Covers'),(4981,4802,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Fenders'),(4982,4803,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Front & Rear Racks'),(4983,4804,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Handlebar Grips & Decor'),(4984,4805,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Locks'),(4985,4806,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Mirrors'),(4986,4807,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Pumps'),(4987,4808,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Saddle Pads & Seat Covers'),(4988,4809,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Shock Pumps'),(4989,4810,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Spoke Beads'),(4990,4811,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Stands & Storage'),(4991,4812,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Tire Repair Supplies & Kits'),(4992,4813,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Toe Straps & Clips'),(4993,4814,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Tools'),(4994,4815,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Trailers'),(4995,4816,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Trainers'),(4996,4817,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Training Wheels'),(4997,4818,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Transport Bags & Cases'),(4998,4819,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Water Sport Board Racks'),(4999,4820,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Electric Bicycle Conversion Kits'),(5000,4821,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts'),(5001,4822,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Brake Parts'),(5002,4823,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Brake Parts > Bicycle Brake Calipers'),(5003,4824,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Brake Parts > Bicycle Brake Levers'),(5004,4825,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Brake Parts > Bicycle Brake Rotors'),(5005,4826,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Brake Parts > Bicycle Brake Sets'),(5006,4827,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Cable Housings'),(5007,4828,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Cables'),(5008,4829,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts'),(5009,4830,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Bottom Brackets'),(5010,4831,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Cassettes & Freewheels'),(5011,4832,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Chainrings'),(5012,4833,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Chains'),(5013,4834,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Cranks'),(5014,4835,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Derailleurs'),(5015,4836,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Pedals'),(5016,4837,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Shifters'),(5017,4838,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Forks'),(5018,4839,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Frames'),(5019,4840,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Groupsets'),(5020,4841,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Handlebar Extensions'),(5021,4842,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Handlebars'),(5022,4843,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Headset Parts'),(5023,4844,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Headset Parts > Bicycle Headset Bearings'),(5024,4845,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Headset Parts > Bicycle Headset Spacers'),(5025,4846,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Headsets'),(5026,4847,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Kickstands'),(5027,4848,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Saddles'),(5028,4849,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Seatpost Clamps'),(5029,4850,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Seatposts'),(5030,4851,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Small Parts'),(5031,4852,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Stems'),(5032,4853,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Tire Valve Adapters'),(5033,4854,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Tire Valve Caps'),(5034,4855,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Tire Valves'),(5035,4856,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Tires'),(5036,4857,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Tubes'),(5037,4858,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts'),(5038,4859,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Foot Pegs'),(5039,4860,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Hub Parts'),(5040,4861,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Hubs'),(5041,4862,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Rim Strips'),(5042,4863,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Spokes'),(5043,4864,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Wheel Axles & Skewers'),(5044,4865,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Wheel Nipples'),(5045,4866,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Wheel Rims'),(5046,4867,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheels'),(5047,4868,0,'Sporting Goods > Outdoor Recreation > Cycling > Bicycles'),(5048,4869,0,'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories'),(5049,4870,0,'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Cleat Accessories'),(5050,4871,0,'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Cleat Accessories > Bicycle Cleat Bolts'),(5051,4872,0,'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Cleat Accessories > Bicycle Cleat Covers'),(5052,4873,0,'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Cleat Accessories > Bicycle Cleat Shims & Wedges'),(5053,4874,0,'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Cleats'),(5054,4875,0,'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Gloves'),(5055,4876,0,'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Helmet Parts & Accessories'),(5056,4877,0,'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Helmets'),(5057,4878,0,'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Protective Pads'),(5058,4879,0,'Sporting Goods > Outdoor Recreation > Cycling > Cycling Apparel & Accessories > Bicycle Shoe Covers'),(5059,4880,0,'Sporting Goods > Outdoor Recreation > Cycling > Tricycle Accessories'),(5060,4881,0,'Sporting Goods > Outdoor Recreation > Cycling > Tricycles'),(5061,4882,0,'Sporting Goods > Outdoor Recreation > Cycling > Unicycle Accessories'),(5062,4883,0,'Sporting Goods > Outdoor Recreation > Cycling > Unicycles'),(5063,4884,0,'Sporting Goods > Outdoor Recreation > Equestrian'),(5064,4885,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care'),(5065,4886,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Blankets & Sheets'),(5066,4887,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Boots & Leg Wraps'),(5067,4888,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Feed'),(5068,4889,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Fly Masks'),(5069,4890,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Grooming'),(5070,4891,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Grooming > Horse Clippers & Trimmers'),(5071,4892,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Grooming > Horse Grooming Combs, Brushes & Mitts'),(5072,4893,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Treats'),(5073,4894,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Vitamins & Supplements'),(5074,4895,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Care > Horse Wormers'),(5075,4896,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack'),(5076,4897,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Bridle Bits'),(5077,4898,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Bridles'),(5078,4899,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Cinches'),(5079,4900,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Horse Halters'),(5080,4901,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Horse Harnesses'),(5081,4902,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Horse Leads'),(5082,4903,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Reins'),(5083,4904,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Saddles'),(5084,4905,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Stirrups'),(5085,4906,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories'),(5086,4907,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories > Horse Tack Boxes'),(5087,4908,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories > Saddle Accessories'),(5088,4909,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories > Saddle Accessories > Saddle Bags & Panniers'),(5089,4910,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories > Saddle Accessories > Saddle Covers & Cases'),(5090,4911,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories > Saddle Accessories > Saddle Pads & Blankets'),(5091,4912,0,'Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories > Saddle Accessories > Saddle Racks'),(5092,4913,0,'Sporting Goods > Outdoor Recreation > Equestrian > Riding Apparel & Accessories'),(5093,4914,0,'Sporting Goods > Outdoor Recreation > Equestrian > Riding Apparel & Accessories > Equestrian Gloves'),(5094,4915,0,'Sporting Goods > Outdoor Recreation > Equestrian > Riding Apparel & Accessories > Equestrian Helmets'),(5095,4916,0,'Sporting Goods > Outdoor Recreation > Equestrian > Riding Apparel & Accessories > Riding Crops & Whips'),(5096,4917,0,'Sporting Goods > Outdoor Recreation > Equestrian > Riding Apparel & Accessories > Riding Pants'),(5097,4918,0,'Sporting Goods > Outdoor Recreation > Fishing'),(5098,4919,0,'Sporting Goods > Outdoor Recreation > Fishing > Bite Alarms'),(5099,4920,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing & Hunting Waders'),(5100,4921,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Bait & Chum Containers'),(5101,4922,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Gaffs'),(5102,4923,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Hook Removal Tools'),(5103,4924,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Lines & Leaders'),(5104,4925,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Nets'),(5105,4926,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Reel Accessories'),(5106,4927,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Reel Accessories > Fishing Reel Bags & Cases'),(5107,4928,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Reel Accessories > Fishing Reel Lubricants'),(5108,4929,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Reel Accessories > Fishing Reel Replacement Spools'),(5109,4930,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Reels'),(5110,4931,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Rod Accessories'),(5111,4932,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Rod Accessories > Fishing Rod Bags & Cases'),(5112,4933,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Rod Accessories > Fishing Rod Holders & Storage Racks'),(5113,4934,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Rods'),(5114,4935,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Spears'),(5115,4936,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Tackle'),(5116,4937,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Tackle > Fishing Baits & Lures'),(5117,4938,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Tackle > Fishing Floats'),(5118,4939,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Tackle > Fishing Hooks'),(5119,4940,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Tackle > Fishing Sinkers'),(5120,4941,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Tackle > Fishing Snaps & Swivels'),(5121,4942,0,'Sporting Goods > Outdoor Recreation > Fishing > Fishing Traps'),(5122,4943,0,'Sporting Goods > Outdoor Recreation > Fishing > Fly Tying Materials'),(5123,4944,0,'Sporting Goods > Outdoor Recreation > Fishing > Fly Tying Materials > Fishing Beads'),(5124,4945,0,'Sporting Goods > Outdoor Recreation > Fishing > Fly Tying Materials > Fishing Yarn'),(5125,4946,0,'Sporting Goods > Outdoor Recreation > Fishing > Live Bait'),(5126,4947,0,'Sporting Goods > Outdoor Recreation > Fishing > Tackle Bags & Boxes'),(5127,4948,0,'Sporting Goods > Outdoor Recreation > Golf'),(5128,4949,0,'Sporting Goods > Outdoor Recreation > Golf > Divot Tools'),(5129,4950,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Accessory Sets'),(5130,4951,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Bag Accessories'),(5131,4952,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Bag Accessories > Golf Bag Carts'),(5132,4953,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Bag Accessories > Golf Bag Covers & Cases'),(5133,4954,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Bags'),(5134,4955,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Ball Markers'),(5135,4956,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Balls'),(5136,4957,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Club Parts & Accessories'),(5137,4958,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Club Parts & Accessories > Golf Club Grips'),(5138,4959,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Club Parts & Accessories > Golf Club Headcovers'),(5139,4960,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Club Parts & Accessories > Golf Club Shafts'),(5140,4961,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Clubs'),(5141,4962,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Flags'),(5142,4963,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Gloves'),(5143,4964,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Tees'),(5144,4965,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Towels'),(5145,4966,0,'Sporting Goods > Outdoor Recreation > Golf > Golf Training Aids'),(5146,4967,0,'Sporting Goods > Outdoor Recreation > Hang Gliding & Skydiving'),(5147,4968,0,'Sporting Goods > Outdoor Recreation > Hang Gliding & Skydiving > Air Suits'),(5148,4969,0,'Sporting Goods > Outdoor Recreation > Hang Gliding & Skydiving > Hang Gliders'),(5149,4970,0,'Sporting Goods > Outdoor Recreation > Hang Gliding & Skydiving > Parachutes'),(5150,4971,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting'),(5151,4972,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery'),(5152,4973,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Archery Armguards'),(5153,4974,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Archery Gloves & Releases'),(5154,4975,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Archery Targets'),(5155,4976,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Arrow Parts & Accessories'),(5156,4977,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Arrow Parts & Accessories > Arrow Fletchings'),(5157,4978,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Arrow Parts & Accessories > Arrow Nocks'),(5158,4979,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Arrow Parts & Accessories > Broadheads & Field Points'),(5159,4980,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Arrows & Bolts'),(5160,4981,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Bow & Crossbow Accessories'),(5161,4982,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Bows & Crossbows'),(5162,4983,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Bows & Crossbows > Compound Bows'),(5163,4984,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Bows & Crossbows > Crossbows'),(5164,4985,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Bows & Crossbows > Recurve & Longbows'),(5165,4986,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Archery > Quivers'),(5166,4987,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Clay Pigeon Shooting'),(5167,4988,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Clay Pigeon Shooting > Clay Pigeon Throwers'),(5168,4989,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Clay Pigeon Shooting > Clay Pigeons'),(5169,4990,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting'),(5170,4991,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting & Shooting Protective Gear'),(5171,4992,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting & Shooting Protective Gear > Hunting & Shooting Gloves'),(5172,4993,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting & Shooting Protective Gear > Hunting & Shooting Jackets'),(5173,4994,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Animal Traps'),(5174,4995,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Hearing Enhancers'),(5175,4996,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Hunting Blinds & Screens'),(5176,4997,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Hunting Dog Equipment'),(5177,4998,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Tree Stands'),(5178,4999,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Wild Game Feeders'),(5179,5000,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Wildlife Attractants'),(5180,5001,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Wildlife Attractants > Cover Scents & Scent Attractants'),(5181,5002,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Wildlife Attractants > Hunting & Wildlife Calls'),(5182,5003,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Wildlife Attractants > Hunting & Wildlife Decoys'),(5183,5004,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Hunting > Wildlife Attractants > Wildlife Bait, Feed & Minerals'),(5184,5005,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft'),(5185,5006,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Airsoft'),(5186,5007,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Airsoft > Airsoft Gun Parts & Accessories'),(5187,5008,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Airsoft > Airsoft Gun Parts & Accessories > Airsoft Gun Batteries'),(5188,5009,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Airsoft > Airsoft Guns'),(5189,5010,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Airsoft > Airsoft Pellets'),(5190,5011,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball'),(5191,5012,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball & Airsoft Protective Gear'),(5192,5013,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball & Airsoft Protective Gear > Paintball & Airsoft Gloves'),(5193,5014,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball & Airsoft Protective Gear > Paintball & Airsoft Goggles & Masks'),(5194,5015,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball & Airsoft Protective Gear > Paintball & Airsoft Pads'),(5195,5016,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball & Airsoft Protective Gear > Paintball & Airsoft Vests'),(5196,5017,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Grenade Launchers'),(5197,5018,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Grenades'),(5198,5019,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Gun Parts & Accessories'),(5199,5020,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Gun Parts & Accessories > Paintball Air Tanks'),(5200,5021,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Gun Parts & Accessories > Paintball Gun Barrels'),(5201,5022,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Gun Parts & Accessories > Paintball Gun Drop Forwards'),(5202,5023,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Gun Parts & Accessories > Paintball Hoppers'),(5203,5024,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Guns'),(5204,5025,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintball Harnesses & Packs'),(5205,5026,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Paintball & Airsoft > Paintball > Paintballs'),(5206,5027,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Shooting & Range Accessories'),(5207,5028,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Shooting & Range Accessories > Shooting Rests'),(5208,5029,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Shooting & Range Accessories > Shooting Sticks & Bipods'),(5209,5030,0,'Sporting Goods > Outdoor Recreation > Hunting & Shooting > Shooting & Range Accessories > Shooting Targets'),(5210,5031,0,'Sporting Goods > Outdoor Recreation > Hydration System Accessories'),(5211,5032,0,'Sporting Goods > Outdoor Recreation > Hydration Systems'),(5212,5033,0,'Sporting Goods > Outdoor Recreation > Inline & Roller Skating'),(5213,5034,0,'Sporting Goods > Outdoor Recreation > Inline & Roller Skating > Inline & Roller Skating Protective Gear'),(5214,5035,0,'Sporting Goods > Outdoor Recreation > Inline & Roller Skating > Inline & Roller Skating Protective Gear > Roller Skating Pads'),(5215,5036,0,'Sporting Goods > Outdoor Recreation > Inline & Roller Skating > Inline Skate Parts'),(5216,5037,0,'Sporting Goods > Outdoor Recreation > Inline & Roller Skating > Inline Skates'),(5217,5038,0,'Sporting Goods > Outdoor Recreation > Inline & Roller Skating > Roller Skate Parts'),(5218,5039,0,'Sporting Goods > Outdoor Recreation > Inline & Roller Skating > Roller Skates'),(5219,5040,0,'Sporting Goods > Outdoor Recreation > Inline & Roller Skating > Roller Skis'),(5220,5041,0,'Sporting Goods > Outdoor Recreation > Kite Buggying'),(5221,5042,0,'Sporting Goods > Outdoor Recreation > Kite Buggying > Kite Buggies'),(5222,5043,0,'Sporting Goods > Outdoor Recreation > Kite Buggying > Kite Buggy Accessories'),(5223,5044,0,'Sporting Goods > Outdoor Recreation > Outdoor Games'),(5224,5045,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Badminton'),(5225,5046,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Badminton > Badminton Nets'),(5226,5047,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Badminton > Badminton Racquets & Sets'),(5227,5048,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Badminton > Shuttlecocks'),(5228,5049,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Deck Shuffleboard'),(5229,5050,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Deck Shuffleboard > Deck Shuffleboard Cues'),(5230,5051,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Deck Shuffleboard > Deck Shuffleboard Pucks'),(5231,5052,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Disc Golf'),(5232,5053,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Disc Golf > Disc Golf Bags'),(5233,5054,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Disc Golf > Disc Golf Baskets'),(5234,5055,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Lawn Games'),(5235,5056,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Paddle Ball Sets'),(5236,5057,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Pickleball'),(5237,5058,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Pickleball > Pickleball Paddles'),(5238,5059,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Pickleball > Pickleballs'),(5239,5060,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Platform & Paddle Tennis'),(5240,5061,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Platform & Paddle Tennis > Platform & Paddle Tennis Paddles'),(5241,5062,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Platform & Paddle Tennis > Platform Tennis Balls'),(5242,5063,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Tetherball'),(5243,5064,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Tetherball > Tetherball Poles'),(5244,5065,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Tetherball > Tetherball Sets'),(5245,5066,0,'Sporting Goods > Outdoor Recreation > Outdoor Games > Tetherball > Tetherballs'),(5246,5067,0,'Sporting Goods > Outdoor Recreation > Riding Scooters'),(5247,5068,0,'Sporting Goods > Outdoor Recreation > Skateboarding'),(5248,5069,0,'Sporting Goods > Outdoor Recreation > Skateboarding > Skate Rails'),(5249,5070,0,'Sporting Goods > Outdoor Recreation > Skateboarding > Skate Ramps'),(5250,5071,0,'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Parts'),(5251,5072,0,'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Parts > Skateboard Decks'),(5252,5073,0,'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Parts > Skateboard Small Parts'),(5253,5074,0,'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Parts > Skateboard Trucks'),(5254,5075,0,'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Parts > Skateboard Wheels'),(5255,5076,0,'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboarding Protective Gear'),(5256,5077,0,'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboarding Protective Gear > Skate Helmets'),(5257,5078,0,'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboarding Protective Gear > Skateboarding Gloves'),(5258,5079,0,'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboarding Protective Gear > Skateboarding Pads'),(5259,5080,0,'Sporting Goods > Outdoor Recreation > Skateboarding > Skateboards'),(5260,5081,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities'),(5261,5082,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Avalanche Safety'),(5262,5083,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Avalanche Safety > Avalanche Probes'),(5263,5084,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Avalanche Safety > Avalanche Safety Airbags'),(5264,5085,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding'),(5265,5086,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Bags'),(5266,5087,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Goggle Accessories'),(5267,5088,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Goggle Accessories > Ski & Snowboard Goggle Lenses'),(5268,5089,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Goggles'),(5269,5090,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Helmets'),(5270,5091,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Leashes'),(5271,5092,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Storage Racks'),(5272,5093,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Tuning Tools'),(5273,5094,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski & Snowboard Wax'),(5274,5095,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski Binding Parts'),(5275,5096,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski Bindings'),(5276,5097,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski Boots'),(5277,5098,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Ski Poles'),(5278,5099,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Skis'),(5279,5100,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Skis > Cross-Country Skis'),(5280,5101,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Skis > Downhill Skis'),(5281,5102,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Snowboard Binding Parts'),(5282,5103,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Snowboard Bindings'),(5283,5104,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Snowboard Boots'),(5284,5105,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Skiing & Snowboarding > Snowboards'),(5285,5106,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Sleds'),(5286,5107,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Snowshoeing'),(5287,5108,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Snowshoeing > Snowshoe Bindings'),(5288,5109,0,'Sporting Goods > Outdoor Recreation > Winter Sports & Activities > Snowshoeing > Snowshoes'),(5289,5110,0,'Toys & Games'),(5290,5111,0,'Toys & Games > Game Timers'),(5291,5112,0,'Toys & Games > Games'),(5292,5113,0,'Toys & Games > Games > Battle Top Accessories'),(5293,5114,0,'Toys & Games > Games > Battle Tops'),(5294,5115,0,'Toys & Games > Games > Bingo Sets'),(5295,5116,0,'Toys & Games > Games > Blackjack & Craps Sets'),(5296,5117,0,'Toys & Games > Games > Board Games'),(5297,5118,0,'Toys & Games > Games > Card Game Accessories'),(5298,5119,0,'Toys & Games > Games > Card Games'),(5299,5120,0,'Toys & Games > Games > Dexterity Games'),(5300,5121,0,'Toys & Games > Games > Dice Sets & Games'),(5301,5122,0,'Toys & Games > Games > Poker Chip Accessories'),(5302,5123,0,'Toys & Games > Games > Poker Chip Accessories > Poker Chip Carriers & Trays'),(5303,5124,0,'Toys & Games > Games > Poker Chips & Sets'),(5304,5125,0,'Toys & Games > Games > Portable Electronic Games'),(5305,5126,0,'Toys & Games > Games > Roulette Wheels & Sets'),(5306,5127,0,'Toys & Games > Games > Slot Machines'),(5307,5128,0,'Toys & Games > Games > Tile Games'),(5308,5129,0,'Toys & Games > Outdoor Play Equipment'),(5309,5130,0,'Toys & Games > Outdoor Play Equipment > Inflatable Bouncer Accessories'),(5310,5131,0,'Toys & Games > Outdoor Play Equipment > Inflatable Bouncers'),(5311,5132,0,'Toys & Games > Outdoor Play Equipment > Play Swings'),(5312,5133,0,'Toys & Games > Outdoor Play Equipment > Play Tents & Tunnels'),(5313,5134,0,'Toys & Games > Outdoor Play Equipment > Playhouses'),(5314,5135,0,'Toys & Games > Outdoor Play Equipment > Pogo Sticks'),(5315,5136,0,'Toys & Games > Outdoor Play Equipment > Sandboxes'),(5316,5137,0,'Toys & Games > Outdoor Play Equipment > See Saws'),(5317,5138,0,'Toys & Games > Outdoor Play Equipment > Slides'),(5318,5139,0,'Toys & Games > Outdoor Play Equipment > Stilts'),(5319,5140,0,'Toys & Games > Outdoor Play Equipment > Swing Set & Playset Accessories'),(5320,5141,0,'Toys & Games > Outdoor Play Equipment > Swing Sets & Playsets'),(5321,5142,0,'Toys & Games > Outdoor Play Equipment > Trampoline Accessories'),(5322,5143,0,'Toys & Games > Outdoor Play Equipment > Trampolines'),(5323,5144,0,'Toys & Games > Outdoor Play Equipment > Water Play Equipment'),(5324,5145,0,'Toys & Games > Outdoor Play Equipment > Water Play Equipment > Play Sprinkers'),(5325,5146,0,'Toys & Games > Outdoor Play Equipment > Water Play Equipment > Water Parks & Slides'),(5326,5147,0,'Toys & Games > Outdoor Play Equipment > Water Play Equipment > Water Tables'),(5327,5148,0,'Toys & Games > Puzzles'),(5328,5149,0,'Toys & Games > Puzzles > Jigsaw Puzzle Accessories'),(5329,5150,0,'Toys & Games > Puzzles > Jigsaw Puzzles'),(5330,5151,0,'Toys & Games > Puzzles > Mechanical Puzzles'),(5331,5152,0,'Toys & Games > Puzzles > Wooden & Pegged Puzzles'),(5332,5153,0,'Toys & Games > Toys'),(5333,5154,0,'Toys & Games > Toys > Activity Toys'),(5334,5155,0,'Toys & Games > Toys > Activity Toys > Ball & Cup Games'),(5335,5156,0,'Toys & Games > Toys > Activity Toys > Bouncy Balls'),(5336,5157,0,'Toys & Games > Toys > Activity Toys > Bubble Blowing Solution'),(5337,5158,0,'Toys & Games > Toys > Activity Toys > Bubble Blowing Toys'),(5338,5159,0,'Toys & Games > Toys > Activity Toys > Coiled Spring Toys'),(5339,5160,0,'Toys & Games > Toys > Activity Toys > Marbles'),(5340,5161,0,'Toys & Games > Toys > Activity Toys > Paddle Ball Toys'),(5341,5162,0,'Toys & Games > Toys > Activity Toys > Ribbon & Streamer Toys'),(5342,5163,0,'Toys & Games > Toys > Activity Toys > Spinning Tops'),(5343,5164,0,'Toys & Games > Toys > Activity Toys > Toy Jacks'),(5344,5165,0,'Toys & Games > Toys > Activity Toys > Yo-Yo Parts & Accessories'),(5345,5166,0,'Toys & Games > Toys > Activity Toys > Yo-Yos'),(5346,5167,0,'Toys & Games > Toys > Art & Drawing Toys'),(5347,5168,0,'Toys & Games > Toys > Art & Drawing Toys > Play Dough & Putty'),(5348,5169,0,'Toys & Games > Toys > Art & Drawing Toys > Toy Drawing Tablets'),(5349,5170,0,'Toys & Games > Toys > Ball Pit Accessories'),(5350,5171,0,'Toys & Games > Toys > Ball Pit Accessories > Ball Pit Balls'),(5351,5172,0,'Toys & Games > Toys > Ball Pits'),(5352,5173,0,'Toys & Games > Toys > Bath Toys'),(5353,5174,0,'Toys & Games > Toys > Beach & Sand Toys'),(5354,5175,0,'Toys & Games > Toys > Building Toys'),(5355,5176,0,'Toys & Games > Toys > Building Toys > Construction Set Toys'),(5356,5177,0,'Toys & Games > Toys > Building Toys > Foam Blocks'),(5357,5178,0,'Toys & Games > Toys > Building Toys > Interlocking Blocks'),(5358,5179,0,'Toys & Games > Toys > Building Toys > Marble Track Sets'),(5359,5180,0,'Toys & Games > Toys > Building Toys > Wooden Blocks'),(5360,5181,0,'Toys & Games > Toys > Dolls, Playsets & Toy Figures'),(5361,5182,0,'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Action & Toy Figures'),(5362,5183,0,'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Bobblehead Figures'),(5363,5184,0,'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Doll & Action Figure Accessories'),(5364,5185,0,'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Dollhouse Accessories'),(5365,5186,0,'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Dollhouses'),(5366,5187,0,'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Dolls'),(5367,5188,0,'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Paper & Magnetic Dolls'),(5368,5189,0,'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Puppet & Puppet Theater Accessories'),(5369,5190,0,'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Puppet Theaters'),(5370,5191,0,'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Puppets & Marionettes'),(5371,5192,0,'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Stuffed Animals'),(5372,5193,0,'Toys & Games > Toys > Dolls, Playsets & Toy Figures > Toy Playsets'),(5373,5194,0,'Toys & Games > Toys > Educational Toys'),(5374,5195,0,'Toys & Games > Toys > Educational Toys > Ant Farms'),(5375,5196,0,'Toys & Games > Toys > Educational Toys > Astronomy Toys & Models'),(5376,5197,0,'Toys & Games > Toys > Educational Toys > Bug Collecting Kits'),(5377,5198,0,'Toys & Games > Toys > Educational Toys > Educational Flash Cards'),(5378,5199,0,'Toys & Games > Toys > Educational Toys > Reading Toys'),(5379,5200,0,'Toys & Games > Toys > Educational Toys > Science & Exploration Sets'),(5380,5201,0,'Toys & Games > Toys > Educational Toys > Toy Abacuses'),(5381,5202,0,'Toys & Games > Toys > Executive Toys'),(5382,5203,0,'Toys & Games > Toys > Executive Toys > Magnet Toys'),(5383,5204,0,'Toys & Games > Toys > Flying Toy Accessories'),(5384,5205,0,'Toys & Games > Toys > Flying Toy Accessories > Kite Accessories'),(5385,5206,0,'Toys & Games > Toys > Flying Toy Accessories > Kite Accessories > Kite Line Reels & Winders'),(5386,5207,0,'Toys & Games > Toys > Flying Toys'),(5387,5208,0,'Toys & Games > Toys > Flying Toys > Air & Water Rockets'),(5388,5209,0,'Toys & Games > Toys > Flying Toys > Kites'),(5389,5210,0,'Toys & Games > Toys > Flying Toys > Toy Gliders'),(5390,5211,0,'Toys & Games > Toys > Flying Toys > Toy Parachutes'),(5391,5212,0,'Toys & Games > Toys > Musical Toys'),(5392,5213,0,'Toys & Games > Toys > Musical Toys > Toy Instruments'),(5393,5214,0,'Toys & Games > Toys > Play Vehicle Accessories'),(5394,5215,0,'Toys & Games > Toys > Play Vehicle Accessories > Toy Race Car & Track Accessories'),(5395,5216,0,'Toys & Games > Toys > Play Vehicle Accessories > Toy Train Accessories'),(5396,5217,0,'Toys & Games > Toys > Play Vehicles'),(5397,5218,0,'Toys & Games > Toys > Play Vehicles > Toy Airplanes'),(5398,5219,0,'Toys & Games > Toys > Play Vehicles > Toy Boats'),(5399,5220,0,'Toys & Games > Toys > Play Vehicles > Toy Cars'),(5400,5221,0,'Toys & Games > Toys > Play Vehicles > Toy Helicopters'),(5401,5222,0,'Toys & Games > Toys > Play Vehicles > Toy Motorcycles'),(5402,5223,0,'Toys & Games > Toys > Play Vehicles > Toy Race Car & Track Sets'),(5403,5224,0,'Toys & Games > Toys > Play Vehicles > Toy Spaceships'),(5404,5225,0,'Toys & Games > Toys > Play Vehicles > Toy Trains & Train Sets'),(5405,5226,0,'Toys & Games > Toys > Play Vehicles > Toy Trucks & Construction Vehicles'),(5406,5227,0,'Toys & Games > Toys > Pretend Play'),(5407,5228,0,'Toys & Games > Toys > Pretend Play > Play Money & Banking'),(5408,5229,0,'Toys & Games > Toys > Pretend Play > Pretend Electronics'),(5409,5230,0,'Toys & Games > Toys > Pretend Play > Pretend Housekeeping'),(5410,5231,0,'Toys & Games > Toys > Pretend Play > Pretend Lawn & Garden'),(5411,5232,0,'Toys & Games > Toys > Pretend Play > Pretend Professions & Role Playing'),(5412,5233,0,'Toys & Games > Toys > Pretend Play > Pretend Shopping & Grocery'),(5413,5234,0,'Toys & Games > Toys > Pretend Play > Toy Kitchens & Play Food'),(5414,5235,0,'Toys & Games > Toys > Pretend Play > Toy Tools'),(5415,5236,0,'Toys & Games > Toys > Remote Control Toy Accessories'),(5416,5237,0,'Toys & Games > Toys > Remote Control Toys'),(5417,5238,0,'Toys & Games > Toys > Remote Control Toys > Remote Control Airships & Blimps'),(5418,5239,0,'Toys & Games > Toys > Remote Control Toys > Remote Control Boats & Watercraft'),(5419,5240,0,'Toys & Games > Toys > Remote Control Toys > Remote Control Cars & Trucks'),(5420,5241,0,'Toys & Games > Toys > Remote Control Toys > Remote Control Helicopters'),(5421,5242,0,'Toys & Games > Toys > Remote Control Toys > Remote Control Motorcycles'),(5422,5243,0,'Toys & Games > Toys > Remote Control Toys > Remote Control Planes'),(5423,5244,0,'Toys & Games > Toys > Remote Control Toys > Remote Control Robots'),(5424,5245,0,'Toys & Games > Toys > Remote Control Toys > Remote Control Tanks'),(5425,5246,0,'Toys & Games > Toys > Riding Toy Accessories'),(5426,5247,0,'Toys & Games > Toys > Riding Toys'),(5427,5248,0,'Toys & Games > Toys > Riding Toys > Electric Riding Vehicles'),(5428,5249,0,'Toys & Games > Toys > Riding Toys > Hobby Horses'),(5429,5250,0,'Toys & Games > Toys > Riding Toys > Push & Pedal Riding Vehicles'),(5430,5251,0,'Toys & Games > Toys > Riding Toys > Rocking & Spring Riding Toys'),(5431,5252,0,'Toys & Games > Toys > Riding Toys > Wagons'),(5432,5253,0,'Toys & Games > Toys > Robotic Toys'),(5433,5254,0,'Toys & Games > Toys > Sports Toy Accessories'),(5434,5255,0,'Toys & Games > Toys > Sports Toy Accessories > Fitness Toy Accessories'),(5435,5256,0,'Toys & Games > Toys > Sports Toy Accessories > Fitness Toy Accessories > Hula Hoop Accessories'),(5436,5257,0,'Toys & Games > Toys > Sports Toys'),(5437,5258,0,'Toys & Games > Toys > Sports Toys > Baseball Toys'),(5438,5259,0,'Toys & Games > Toys > Sports Toys > Basketball Toys'),(5439,5260,0,'Toys & Games > Toys > Sports Toys > Boomerangs'),(5440,5261,0,'Toys & Games > Toys > Sports Toys > Bowling Toys'),(5441,5262,0,'Toys & Games > Toys > Sports Toys > Fingerboards & Fingerboard Sets'),(5442,5263,0,'Toys & Games > Toys > Sports Toys > Fishing Toys'),(5443,5264,0,'Toys & Games > Toys > Sports Toys > Fitness Toys'),(5444,5265,0,'Toys & Games > Toys > Sports Toys > Fitness Toys > Hula Hoops'),(5445,5266,0,'Toys & Games > Toys > Sports Toys > Flying Discs'),(5446,5267,0,'Toys & Games > Toys > Sports Toys > Footbags'),(5447,5268,0,'Toys & Games > Toys > Sports Toys > Golf Toys'),(5448,5269,0,'Toys & Games > Toys > Sports Toys > Hockey Toys'),(5449,5270,0,'Toys & Games > Toys > Sports Toys > Playground Balls'),(5450,5271,0,'Toys & Games > Toys > Sports Toys > Racquet Sport Toys'),(5451,5272,0,'Toys & Games > Toys > Sports Toys > Toy Footballs'),(5452,5273,0,'Toys & Games > Toys > Toy Gift Baskets'),(5453,5274,0,'Toys & Games > Toys > Toy Weapon & Gadget Accessories'),(5454,5275,0,'Toys & Games > Toys > Toy Weapons & Gadgets'),(5455,5276,0,'Toys & Games > Toys > Visual Toys'),(5456,5277,0,'Toys & Games > Toys > Visual Toys > Kaleidoscopes'),(5457,5278,0,'Toys & Games > Toys > Visual Toys > Prisms'),(5458,5279,0,'Toys & Games > Toys > Wind-Up Toys'),(5459,5280,0,'Vehicles & Parts'),(5460,5281,0,'Vehicles & Parts > Vehicle Parts & Accessories'),(5461,5282,0,'Vehicles & Parts > Vehicle Parts & Accessories > Aircraft Parts & Accessories'),(5462,5283,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics'),(5463,5284,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle A/V Players & In-Dash Systems'),(5464,5285,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Amplifiers'),(5465,5286,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Cassette Adapters'),(5466,5287,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Cassette Players'),(5467,5288,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Equalizers & Crossovers'),(5468,5289,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Parking Cameras'),(5469,5290,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Speakerphones'),(5470,5291,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Speakers'),(5471,5292,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Subwoofers'),(5472,5293,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Electronics > Motor Vehicle Video Monitor Mounts'),(5473,5294,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts'),(5474,5295,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Braking'),(5475,5296,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Carpet & Upholstery'),(5476,5297,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Climate Control'),(5477,5298,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Controls'),(5478,5299,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Oil Circulation'),(5479,5300,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts'),(5480,5301,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engines'),(5481,5302,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Exhaust'),(5482,5303,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Frame & Body Parts'),(5483,5304,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Fuel Systems'),(5484,5305,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Interior Fittings'),(5485,5306,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Lighting'),(5486,5307,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Mirrors'),(5487,5308,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Power & Electrical Systems'),(5488,5309,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Seating'),(5489,5310,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Sensors & Gauges'),(5490,5311,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Suspension Parts'),(5491,5312,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Towing'),(5492,5313,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Transmission & Drivetrain Parts'),(5493,5314,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems'),(5494,5315,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Rims & Wheels'),(5495,5316,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Rims & Wheels > Automotive Rims & Wheels'),(5496,5317,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Rims & Wheels > Motorcycle Rims & Wheels'),(5497,5318,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Rims & Wheels > Off-Road and All-Terrain Vehicle Rims & Wheels'),(5498,5319,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tire Accessories'),(5499,5320,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tires'),(5500,5321,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tires > Automotive Tires'),(5501,5322,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tires > Motorcycle Tires'),(5502,5323,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tires > Off-Road and All-Terrain Vehicle Tires'),(5503,5324,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Wheel Parts'),(5504,5325,0,'Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Window Parts & Accessories'),(5505,5326,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor'),(5506,5327,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Portable Fuel Cans'),(5507,5328,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Cleaning'),(5508,5329,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Cleaning > Car Wash Brushes'),(5509,5330,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Cleaning > Car Wash Solutions'),(5510,5331,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Cleaning > Vehicle Carpet & Upholstery Cleaners'),(5511,5332,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Cleaning > Vehicle Fuel Injection Cleaning Kits'),(5512,5333,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Cleaning > Vehicle Glass Cleaners'),(5513,5334,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Cleaning > Vehicle Waxes, Polishes & Protectants'),(5514,5335,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers'),(5515,5336,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Golf Cart Enclosures'),(5516,5337,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Motor Vehicle Windshield Covers'),(5517,5338,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Tonneau Covers'),(5518,5339,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Hardtops'),(5519,5340,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Soft Tops'),(5520,5341,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Storage Covers'),(5521,5342,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Storage Covers > Automotive Storage Covers'),(5522,5343,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Storage Covers > Golf Cart Storage Covers'),(5523,5344,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Storage Covers > Motorcycle Storage Covers'),(5524,5345,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Storage Covers > Recreational Vehicle Storage Covers'),(5525,5346,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Covers > Vehicle Storage Covers > Watercraft Storage Covers'),(5526,5347,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor'),(5527,5348,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Bumper Stickers'),(5528,5349,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Air Fresheners'),(5529,5350,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Antenna Balls'),(5530,5351,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Dashboard Accessories'),(5531,5352,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Decals'),(5532,5353,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Decor Accessory Sets'),(5533,5354,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Display Flags'),(5534,5355,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Emblems & Hood Ornaments'),(5535,5356,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Hitch Covers'),(5536,5357,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle License Plate Covers'),(5537,5358,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle License Plate Frames'),(5538,5359,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle License Plate Mounts & Holders'),(5539,5360,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle License Plates'),(5540,5361,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Magnets'),(5541,5362,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Rear View Mirror Ornaments'),(5542,5363,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Shift Boots'),(5543,5364,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Shift Knobs'),(5544,5365,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Steering Wheel Covers'),(5545,5366,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Decor > Vehicle Wraps'),(5546,5367,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids'),(5547,5368,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Antifreeze'),(5548,5369,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Brake Fluid'),(5549,5370,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Cooling System Additives'),(5550,5371,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Engine Degreasers'),(5551,5372,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Fuel System Cleaners'),(5552,5373,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Greases'),(5553,5374,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Hydraulic Clutch Fluid'),(5554,5375,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Motor Oil'),(5555,5376,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Performance Additives'),(5556,5377,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Power Steering Fluid'),(5557,5378,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Transmission Fluid'),(5558,5379,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Fluids > Vehicle Windshield Fluid'),(5559,5380,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Paint'),(5560,5381,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Paint > Motor Vehicle Body Paint'),(5561,5382,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Paint > Motor Vehicle Brake Caliper Paint'),(5562,5383,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools'),(5563,5384,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Motor Vehicle Brake Service Kits'),(5564,5385,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Motor Vehicle Clutch Alignment & Removal Tools'),(5565,5386,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Vehicle Battery Chargers'),(5566,5387,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Vehicle Battery Testers'),(5567,5388,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Vehicle Body Filler'),(5568,5389,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Vehicle Diagnostic Scanners'),(5569,5390,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Vehicle Jump Starters'),(5570,5391,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Vehicle Jumper Cables'),(5571,5392,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Vehicle Tire Repair & Tire Changing Tools'),(5572,5393,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Maintenance, Care & Decor > Vehicle Repair & Specialty Tools > Windshield Repair Kits'),(5573,5394,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security'),(5574,5395,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear'),(5575,5396,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Chest & Back Protectors'),(5576,5397,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Elbow & Wrist Guards'),(5577,5398,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Gloves'),(5578,5399,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Goggles'),(5579,5400,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Hand Guards'),(5580,5401,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Helmet Parts & Accessories'),(5581,5402,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Helmets'),(5582,5403,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Kidney Belts'),(5583,5404,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Knee & Shin Guards'),(5584,5405,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Motorcycle Protective Gear > Motorcycle Neck Braces'),(5585,5406,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Off-Road & All-Terrain Vehicle Protective Gear'),(5586,5407,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Off-Road & All-Terrain Vehicle Protective Gear > ATV & UTV Bar Pads'),(5587,5408,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks'),(5588,5409,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Automotive Alarm Accessories'),(5589,5410,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Automotive Alarm Systems'),(5590,5411,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Motorcycle Alarms & Locks'),(5591,5412,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Door Locks & Parts'),(5592,5413,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Door Locks & Parts > Vehicle Door Lock Actuators'),(5593,5414,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Door Locks & Parts > Vehicle Door Lock Knobs'),(5594,5415,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Door Locks & Parts > Vehicle Door Locks & Locking Systems'),(5595,5416,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Hitch Locks'),(5596,5417,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Immobilizers'),(5597,5418,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Remote Keyless Systems'),(5598,5419,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Steering Wheel Locks'),(5599,5420,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Alarms & Locks > Vehicle Wheel Clamps'),(5600,5421,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment'),(5601,5422,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Car Window Nets'),(5602,5423,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Emergency Road Flares'),(5603,5424,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Motor Vehicle Airbag Parts'),(5604,5425,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Motor Vehicle Roll Cages & Bars'),(5605,5426,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Vehicle Seat Belt Buckles'),(5606,5427,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Vehicle Seat Belt Covers'),(5607,5428,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Vehicle Seat Belt Straps'),(5608,5429,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Vehicle Seat Belts'),(5609,5430,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Vehicle Warning Whips'),(5610,5431,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Safety & Security > Vehicle Safety Equipment > Vehicle Wheel Chocks'),(5611,5432,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo'),(5612,5433,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Cargo Nets'),(5613,5434,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Rack Accessories'),(5614,5435,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Rack Accessories > Vehicle Bicycle Rack Accessories'),(5615,5436,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Rack Accessories > Vehicle Ski & Snowboard Rack Accessories'),(5616,5437,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks'),(5617,5438,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Base Rack Systems'),(5618,5439,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Bicycle Racks'),(5619,5440,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Boat Racks'),(5620,5441,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Cargo Racks'),(5621,5442,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Fishing Rod Racks'),(5622,5443,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Gun Racks'),(5623,5444,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Motorcycle & Scooter Racks'),(5624,5445,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Ski & Snowboard Racks'),(5625,5446,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Carrying Racks > Vehicle Water Sport Board Racks'),(5626,5447,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Loading Ramps'),(5627,5448,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Trailers'),(5628,5449,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Trailers > Boat Trailers'),(5629,5450,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Trailers > Horse & Livestock Trailers'),(5630,5451,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Trailers > Travel Trailers'),(5631,5452,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motor Vehicle Trailers > Utility & Cargo Trailers'),(5632,5453,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Motorcycle Bags & Panniers'),(5633,5454,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Truck Bed Storage Boxes & Organizers'),(5634,5455,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Vehicle Headrest Hangers & Hooks'),(5635,5456,0,'Vehicles & Parts > Vehicle Parts & Accessories > Vehicle Storage & Cargo > Vehicle Organizers'),(5636,5457,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories'),(5637,5458,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring'),(5638,5459,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Anchor Chains'),(5639,5460,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Anchor Lines & Ropes'),(5640,5461,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Anchor Windlasses'),(5641,5462,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Anchors'),(5642,5463,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Boat Hooks'),(5643,5464,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Boat Ladders'),(5644,5465,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Dock Cleats'),(5645,5466,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Dock Steps'),(5646,5467,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Sailboat Parts'),(5647,5468,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Care'),(5648,5469,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Care > Watercraft Cleaners'),(5649,5470,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Care > Watercraft Polishes'),(5650,5471,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts'),(5651,5472,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Alternators'),(5652,5473,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Carburetors & Parts'),(5653,5474,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Engine Controls'),(5654,5475,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Ignition Parts'),(5655,5476,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Impellers'),(5656,5477,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Motor Locks'),(5657,5478,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Motor Mounts'),(5658,5479,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Pistons & Parts'),(5659,5480,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Propellers'),(5660,5481,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engines & Motors'),(5661,5482,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Exhaust Parts'),(5662,5483,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Exhaust Parts > Watercraft Manifolds'),(5663,5484,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Exhaust Parts > Watercraft Mufflers & Parts'),(5664,5485,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Fuel Systems'),(5665,5486,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Fuel Systems > Watercraft Fuel Lines & Parts'),(5666,5487,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Fuel Systems > Watercraft Fuel Meters'),(5667,5488,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Fuel Systems > Watercraft Fuel Pumps & Parts'),(5668,5489,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Fuel Systems > Watercraft Fuel Tanks & Parts'),(5669,5490,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Lighting'),(5670,5491,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Steering Parts'),(5671,5492,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Steering Parts > Watercraft Steering Cables'),(5672,5493,0,'Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Steering Parts > Watercraft Steering Wheels'),(5673,5494,0,'Vehicles & Parts > Vehicles'),(5674,5495,0,'Vehicles & Parts > Vehicles > Aircraft'),(5675,5496,0,'Vehicles & Parts > Vehicles > Motor Vehicles'),(5676,5497,0,'Vehicles & Parts > Vehicles > Motor Vehicles > Cars, Trucks & Vans'),(5677,5498,0,'Vehicles & Parts > Vehicles > Motor Vehicles > Golf Carts'),(5678,5499,0,'Vehicles & Parts > Vehicles > Motor Vehicles > Motorcycles & Scooters'),(5679,5500,0,'Vehicles & Parts > Vehicles > Motor Vehicles > Off-Road and All-Terrain Vehicles'),(5680,5501,0,'Vehicles & Parts > Vehicles > Motor Vehicles > Off-Road and All-Terrain Vehicles > ATVs & UTVs'),(5681,5502,0,'Vehicles & Parts > Vehicles > Motor Vehicles > Off-Road and All-Terrain Vehicles > Go Karts & Dune Buggies'),(5682,5503,0,'Vehicles & Parts > Vehicles > Motor Vehicles > Recreational Vehicles'),(5683,5504,0,'Vehicles & Parts > Vehicles > Motor Vehicles > Snowmobiles'),(5684,5505,0,'Vehicles & Parts > Vehicles > Watercraft'),(5685,5506,0,'Vehicles & Parts > Vehicles > Watercraft > Motor Boats'),(5686,5507,0,'Vehicles & Parts > Vehicles > Watercraft > Personal Watercraft'),(5687,5508,0,'Vehicles & Parts > Vehicles > Watercraft > Sailboats'),(5688,5509,0,'Vehicles & Parts > Vehicles > Watercraft > Yachts');
/*!40000 ALTER TABLE `eav_attribute_option_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_attribute_set`
--

DROP TABLE IF EXISTS `eav_attribute_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_attribute_set` (
  `attribute_set_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Set Id',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type Id',
  `attribute_set_name` varchar(255) DEFAULT NULL COMMENT 'Attribute Set Name',
  `sort_order` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`attribute_set_id`),
  UNIQUE KEY `EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_ATTRIBUTE_SET_NAME` (`entity_type_id`,`attribute_set_name`),
  KEY `EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_SORT_ORDER` (`entity_type_id`,`sort_order`),
  CONSTRAINT `EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Set';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_set`
--

LOCK TABLES `eav_attribute_set` WRITE;
/*!40000 ALTER TABLE `eav_attribute_set` DISABLE KEYS */;
INSERT INTO `eav_attribute_set` VALUES (1,1,'Default',2),(2,2,'Default',2),(3,3,'Default',1),(4,4,'Default',1),(5,5,'Default',1),(6,6,'Default',1),(7,7,'Default',1),(8,8,'Default',1),(9,4,'General',0),(10,4,'Shoes',0),(11,4,'Bags',0);
/*!40000 ALTER TABLE `eav_attribute_set` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_entity`
--

DROP TABLE IF EXISTS `eav_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type Id',
  `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set Id',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment Id',
  `parent_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Parent Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `is_active` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Defines Is Entity Active',
  PRIMARY KEY (`entity_id`),
  KEY `EAV_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`),
  KEY `EAV_ENTITY_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_ENTITY_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity`
--

LOCK TABLES `eav_entity` WRITE;
/*!40000 ALTER TABLE `eav_entity` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_entity_attribute`
--

DROP TABLE IF EXISTS `eav_entity_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_attribute` (
  `entity_attribute_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Attribute Id',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type Id',
  `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set Id',
  `attribute_group_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Group Id',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Id',
  `sort_order` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`entity_attribute_id`),
  UNIQUE KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_SET_ID_ATTRIBUTE_ID` (`attribute_set_id`,`attribute_id`),
  UNIQUE KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_GROUP_ID_ATTRIBUTE_ID` (`attribute_group_id`,`attribute_id`),
  KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_SET_ID_SORT_ORDER` (`attribute_set_id`,`sort_order`),
  KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTT_ATTR_ATTR_GROUP_ID_EAV_ATTR_GROUP_ATTR_GROUP_ID` FOREIGN KEY (`attribute_group_id`) REFERENCES `eav_attribute_group` (`attribute_group_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1276 DEFAULT CHARSET=utf8 COMMENT='Eav Entity Attributes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_attribute`
--

LOCK TABLES `eav_entity_attribute` WRITE;
/*!40000 ALTER TABLE `eav_entity_attribute` DISABLE KEYS */;
INSERT INTO `eav_entity_attribute` VALUES (1,1,1,1,1,10),(2,1,1,1,2,20),(3,1,1,1,3,20),(4,1,1,1,4,30),(5,1,1,1,5,40),(6,1,1,1,6,50),(7,1,1,1,7,60),(8,1,1,1,8,70),(9,1,1,1,9,80),(10,1,1,1,10,25),(11,1,1,1,11,90),(12,1,1,1,12,81),(13,1,1,1,13,115),(14,1,1,1,14,120),(15,1,1,1,15,82),(16,1,1,1,16,83),(17,1,1,1,17,100),(18,1,1,1,18,0),(19,1,1,1,19,0),(20,1,1,1,20,110),(21,1,1,1,21,28),(22,2,2,2,22,10),(23,2,2,2,23,20),(24,2,2,2,24,30),(25,2,2,2,25,40),(26,2,2,2,26,50),(27,2,2,2,27,60),(28,2,2,2,28,70),(29,2,2,2,29,80),(30,2,2,2,30,90),(31,2,2,2,31,100),(32,2,2,2,32,100),(33,2,2,2,33,110),(34,2,2,2,34,120),(35,2,2,2,35,130),(36,2,2,2,36,140),(37,2,2,2,37,132),(38,2,2,2,38,133),(39,2,2,2,39,134),(40,2,2,2,40,135),(41,1,1,1,41,87),(42,1,1,1,42,100),(43,1,1,1,43,110),(44,1,1,1,44,120),(45,3,3,4,45,1),(46,3,3,4,46,2),(47,3,3,4,47,4),(48,3,3,4,48,5),(49,3,3,4,49,6),(50,3,3,4,50,7),(51,3,3,4,51,8),(52,3,3,5,52,10),(53,3,3,5,53,20),(54,3,3,5,54,30),(55,3,3,4,55,12),(56,3,3,4,56,13),(57,3,3,4,57,14),(58,3,3,4,58,15),(59,3,3,4,59,16),(60,3,3,6,60,10),(61,3,3,6,61,30),(62,3,3,6,62,40),(63,3,3,6,63,50),(64,3,3,6,64,60),(65,3,3,4,65,24),(66,3,3,4,66,25),(67,3,3,5,67,40),(68,3,3,5,68,50),(69,3,3,4,69,10),(70,3,3,6,70,5),(71,3,3,6,71,6),(72,3,3,5,72,51),(90,4,4,7,91,6),(96,4,4,8,98,8),(105,4,4,7,107,14),(106,4,4,7,108,15),(107,4,4,7,109,16),(108,4,4,7,110,17),(109,4,4,7,111,18),(110,4,4,7,112,19),(111,4,4,7,113,20),(117,3,3,4,119,3),(118,3,3,4,120,17),(120,4,4,7,122,11),(126,4,4,7,128,111),(127,4,4,7,129,112),(128,4,4,7,130,113),(129,4,4,7,131,114),(670,4,4,7,73,2),(671,4,4,7,74,3),(672,4,4,7,77,5),(673,4,4,7,82,13),(674,4,4,7,93,10),(675,4,4,7,94,17),(676,4,4,7,95,18),(677,4,4,7,97,1),(678,4,4,7,99,16),(679,4,4,7,105,15),(680,4,4,7,114,19),(681,4,4,7,115,12),(682,4,4,7,123,31),(683,4,4,7,124,21),(684,4,4,7,125,71),(685,4,4,7,134,7),(687,4,4,7,208,8),(688,4,4,7,209,20),(689,4,4,7,210,21),(690,4,4,7,211,22),(691,4,4,7,212,9),(692,4,4,13,75,1),(693,4,4,13,76,2),(694,4,4,10,87,1),(695,4,4,10,88,2),(696,4,4,10,89,3),(697,4,4,10,90,5),(698,4,4,10,96,6),(699,4,4,10,133,4),(700,4,4,19,127,1),(701,4,4,9,84,2),(702,4,4,9,85,3),(703,4,4,9,86,4),(704,4,4,9,121,1),(705,4,4,8,78,1),(706,4,4,8,79,2),(707,4,4,8,80,3),(709,4,4,8,92,5),(710,4,4,8,117,6),(711,4,4,8,118,7),(712,4,4,8,126,8),(713,4,4,11,103,3),(714,4,4,11,104,1),(715,4,4,11,106,2),(716,4,4,14,100,3),(717,4,4,14,101,1),(718,4,4,14,102,2),(719,4,4,14,116,4),(721,4,4,21,139,2),(724,4,4,21,206,1),(725,4,4,20,132,1),(746,4,9,27,98,8),(766,4,9,32,91,6),(772,4,9,32,122,11),(775,4,9,32,107,14),(778,4,9,32,108,15),(780,4,9,32,109,16),(781,4,9,32,110,17),(783,4,9,32,111,18),(785,4,9,32,112,19),(787,4,9,32,113,20),(791,4,9,32,128,111),(792,4,9,32,129,112),(793,4,9,32,130,113),(794,4,9,32,131,114),(869,4,10,38,98,8),(889,4,10,43,91,6),(895,4,10,43,122,11),(898,4,10,43,107,14),(901,4,10,43,108,15),(903,4,10,43,109,16),(904,4,10,43,110,17),(906,4,10,43,111,18),(908,4,10,43,112,19),(910,4,10,43,113,20),(914,4,10,43,128,111),(915,4,10,43,129,112),(916,4,10,43,130,113),(917,4,10,43,131,114),(1026,4,9,32,73,2),(1027,4,9,32,74,3),(1028,4,9,32,77,5),(1029,4,9,32,82,11),(1030,4,9,32,93,9),(1031,4,9,32,94,15),(1032,4,9,32,95,16),(1033,4,9,32,97,1),(1034,4,9,32,99,14),(1035,4,9,32,105,13),(1036,4,9,32,114,17),(1037,4,9,32,115,10),(1038,4,9,32,123,31),(1039,4,9,32,124,21),(1040,4,9,32,125,71),(1041,4,9,32,134,7),(1042,4,9,32,209,18),(1043,4,9,32,210,19),(1044,4,9,32,211,20),(1045,4,9,32,212,8),(1046,4,9,31,75,1),(1047,4,9,31,76,2),(1048,4,9,30,87,1),(1049,4,9,30,88,2),(1050,4,9,30,89,3),(1051,4,9,30,90,5),(1052,4,9,30,96,6),(1053,4,9,30,133,4),(1054,4,9,29,127,1),(1055,4,9,28,84,2),(1056,4,9,28,85,3),(1057,4,9,28,86,4),(1058,4,9,28,121,1),(1059,4,9,27,78,1),(1060,4,9,27,79,2),(1061,4,9,27,80,3),(1063,4,9,27,92,5),(1064,4,9,27,117,6),(1065,4,9,27,118,7),(1066,4,9,27,126,8),(1067,4,9,26,103,3),(1068,4,9,26,104,1),(1069,4,9,26,106,2),(1070,4,9,25,100,3),(1071,4,9,25,101,1),(1072,4,9,25,102,2),(1073,4,9,25,116,4),(1075,4,9,23,139,2),(1078,4,9,23,206,1),(1079,4,9,22,132,1),(1080,4,10,43,73,2),(1081,4,10,43,74,3),(1082,4,10,43,77,5),(1083,4,10,43,82,11),(1084,4,10,43,93,9),(1085,4,10,43,94,15),(1086,4,10,43,95,16),(1087,4,10,43,97,1),(1088,4,10,43,99,14),(1089,4,10,43,105,13),(1090,4,10,43,114,17),(1091,4,10,43,115,10),(1092,4,10,43,123,31),(1093,4,10,43,124,21),(1094,4,10,43,125,71),(1095,4,10,43,134,7),(1096,4,10,43,208,8),(1097,4,10,43,209,18),(1098,4,10,43,210,19),(1099,4,10,43,211,20),(1100,4,10,42,75,1),(1101,4,10,42,76,2),(1102,4,10,41,87,1),(1103,4,10,41,88,2),(1104,4,10,41,89,3),(1105,4,10,41,90,5),(1106,4,10,41,96,6),(1107,4,10,41,133,4),(1108,4,10,40,127,1),(1109,4,10,39,84,2),(1110,4,10,39,85,3),(1111,4,10,39,86,4),(1112,4,10,39,121,1),(1113,4,10,38,78,1),(1114,4,10,38,79,2),(1115,4,10,38,80,3),(1117,4,10,38,92,5),(1118,4,10,38,117,6),(1119,4,10,38,118,7),(1120,4,10,38,126,8),(1121,4,10,37,103,3),(1122,4,10,37,104,1),(1123,4,10,37,106,2),(1124,4,10,36,100,3),(1125,4,10,36,101,1),(1126,4,10,36,102,2),(1127,4,10,36,116,4),(1129,4,10,34,139,2),(1132,4,10,34,206,1),(1133,4,10,33,132,1),(1154,4,11,49,98,8),(1174,4,11,54,91,6),(1180,4,11,54,122,11),(1183,4,11,54,107,14),(1186,4,11,54,108,15),(1188,4,11,54,109,16),(1189,4,11,54,110,17),(1191,4,11,54,111,18),(1193,4,11,54,112,19),(1195,4,11,54,113,20),(1199,4,11,54,128,111),(1200,4,11,54,129,112),(1201,4,11,54,130,113),(1202,4,11,54,131,114),(1203,4,11,54,73,2),(1204,4,11,54,74,3),(1205,4,11,54,77,5),(1206,4,11,54,82,10),(1207,4,11,54,93,8),(1208,4,11,54,94,14),(1209,4,11,54,95,15),(1210,4,11,54,97,1),(1211,4,11,54,99,13),(1212,4,11,54,105,12),(1213,4,11,54,114,16),(1214,4,11,54,115,9),(1215,4,11,54,123,31),(1216,4,11,54,124,21),(1217,4,11,54,125,71),(1218,4,11,54,134,7),(1219,4,11,54,209,17),(1220,4,11,54,210,18),(1221,4,11,54,211,19),(1222,4,11,53,75,1),(1223,4,11,53,76,2),(1224,4,11,52,87,1),(1225,4,11,52,88,2),(1226,4,11,52,89,3),(1227,4,11,52,90,5),(1228,4,11,52,96,6),(1229,4,11,52,133,4),(1230,4,11,51,127,1),(1231,4,11,50,84,2),(1232,4,11,50,85,3),(1233,4,11,50,86,4),(1234,4,11,50,121,1),(1235,4,11,49,78,1),(1236,4,11,49,79,2),(1237,4,11,49,80,3),(1239,4,11,49,92,5),(1240,4,11,49,117,6),(1241,4,11,49,118,7),(1242,4,11,49,126,8),(1243,4,11,48,103,3),(1244,4,11,48,104,1),(1245,4,11,48,106,2),(1246,4,11,47,100,3),(1247,4,11,47,101,1),(1248,4,11,47,102,2),(1249,4,11,47,116,4),(1251,4,11,45,139,2),(1254,4,11,45,206,1),(1255,4,11,44,132,1),(1256,4,11,54,213,115),(1257,4,4,7,213,115),(1258,4,9,32,213,115),(1259,4,10,43,213,115),(1260,4,11,54,214,70),(1261,4,4,7,214,70),(1262,4,9,32,214,70),(1263,4,10,43,214,70),(1264,4,11,54,215,71),(1265,4,4,7,215,71),(1266,4,9,32,215,71),(1267,4,10,43,215,71),(1268,4,11,54,216,100),(1269,4,4,7,216,100),(1270,4,9,32,216,100),(1271,4,10,43,216,100),(1272,4,11,54,217,101),(1273,4,4,7,217,101),(1274,4,9,32,217,101),(1275,4,10,43,217,101);
/*!40000 ALTER TABLE `eav_entity_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_entity_datetime`
--

DROP TABLE IF EXISTS `eav_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_datetime` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value Id',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type Id',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `EAV_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `EAV_ENTITY_DATETIME_STORE_ID` (`store_id`),
  KEY `EAV_ENTITY_DATETIME_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `EAV_ENTITY_DATETIME_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `EAV_ENTITY_DATETIME_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTT_DTIME_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_datetime`
--

LOCK TABLES `eav_entity_datetime` WRITE;
/*!40000 ALTER TABLE `eav_entity_datetime` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_entity_decimal`
--

DROP TABLE IF EXISTS `eav_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_decimal` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value Id',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type Id',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `EAV_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `EAV_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  KEY `EAV_ENTITY_DECIMAL_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `EAV_ENTITY_DECIMAL_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `EAV_ENTITY_DECIMAL_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_DECIMAL_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_decimal`
--

LOCK TABLES `eav_entity_decimal` WRITE;
/*!40000 ALTER TABLE `eav_entity_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_entity_int`
--

DROP TABLE IF EXISTS `eav_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value Id',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type Id',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` int(11) NOT NULL DEFAULT '0' COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `EAV_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `EAV_ENTITY_INT_STORE_ID` (`store_id`),
  KEY `EAV_ENTITY_INT_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `EAV_ENTITY_INT_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `EAV_ENTITY_INT_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_INT_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_int`
--

LOCK TABLES `eav_entity_int` WRITE;
/*!40000 ALTER TABLE `eav_entity_int` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_entity_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_entity_store`
--

DROP TABLE IF EXISTS `eav_entity_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_store` (
  `entity_store_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Store Id',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `increment_prefix` varchar(20) DEFAULT NULL COMMENT 'Increment Prefix',
  `increment_last_id` varchar(50) DEFAULT NULL COMMENT 'Last Incremented Id',
  PRIMARY KEY (`entity_store_id`),
  KEY `EAV_ENTITY_STORE_ENTITY_TYPE_ID` (`entity_type_id`),
  KEY `EAV_ENTITY_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_ENTITY_STORE_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_store`
--

LOCK TABLES `eav_entity_store` WRITE;
/*!40000 ALTER TABLE `eav_entity_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_entity_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_entity_text`
--

DROP TABLE IF EXISTS `eav_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value Id',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type Id',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` text NOT NULL COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `EAV_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `EAV_ENTITY_TEXT_ENTITY_TYPE_ID` (`entity_type_id`),
  KEY `EAV_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `EAV_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_ENTITY_TEXT_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_TEXT_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_text`
--

LOCK TABLES `eav_entity_text` WRITE;
/*!40000 ALTER TABLE `eav_entity_text` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_entity_type`
--

DROP TABLE IF EXISTS `eav_entity_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_type` (
  `entity_type_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Type Id',
  `entity_type_code` varchar(50) NOT NULL COMMENT 'Entity Type Code',
  `entity_model` varchar(255) NOT NULL COMMENT 'Entity Model',
  `attribute_model` varchar(255) DEFAULT NULL COMMENT 'Attribute Model',
  `entity_table` varchar(255) DEFAULT NULL COMMENT 'Entity Table',
  `value_table_prefix` varchar(255) DEFAULT NULL COMMENT 'Value Table Prefix',
  `entity_id_field` varchar(255) DEFAULT NULL COMMENT 'Entity ID Field',
  `is_data_sharing` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Defines Is Data Sharing',
  `data_sharing_key` varchar(100) DEFAULT 'default' COMMENT 'Data Sharing Key',
  `default_attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Default Attribute Set Id',
  `increment_model` varchar(255) DEFAULT NULL COMMENT 'Increment Model',
  `increment_per_store` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Increment Per Store',
  `increment_pad_length` smallint(5) unsigned NOT NULL DEFAULT '8' COMMENT 'Increment Pad Length',
  `increment_pad_char` varchar(1) NOT NULL DEFAULT '0' COMMENT 'Increment Pad Char',
  `additional_attribute_table` varchar(255) DEFAULT NULL COMMENT 'Additional Attribute Table',
  `entity_attribute_collection` varchar(255) DEFAULT NULL COMMENT 'Entity Attribute Collection',
  PRIMARY KEY (`entity_type_id`),
  KEY `EAV_ENTITY_TYPE_ENTITY_TYPE_CODE` (`entity_type_code`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Eav Entity Type';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_type`
--

LOCK TABLES `eav_entity_type` WRITE;
/*!40000 ALTER TABLE `eav_entity_type` DISABLE KEYS */;
INSERT INTO `eav_entity_type` VALUES (1,'customer','Magento\\Customer\\Model\\ResourceModel\\Customer','Magento\\Customer\\Model\\Attribute','customer_entity',NULL,NULL,1,'default',1,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',0,8,'0','customer_eav_attribute','Magento\\Customer\\Model\\ResourceModel\\Attribute\\Collection'),(2,'customer_address','Magento\\Customer\\Model\\ResourceModel\\Address','Magento\\Customer\\Model\\Attribute','customer_address_entity',NULL,NULL,1,'default',2,NULL,0,8,'0','customer_eav_attribute','Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Collection'),(3,'catalog_category','Magento\\Catalog\\Model\\ResourceModel\\Category','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','catalog_category_entity',NULL,NULL,1,'default',3,NULL,0,8,'0','catalog_eav_attribute','Magento\\Catalog\\Model\\ResourceModel\\Category\\Attribute\\Collection'),(4,'catalog_product','Magento\\Catalog\\Model\\ResourceModel\\Product','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','catalog_product_entity',NULL,NULL,1,'default',4,NULL,0,8,'0','catalog_eav_attribute','Magento\\Catalog\\Model\\ResourceModel\\Product\\Attribute\\Collection'),(5,'order','Magento\\Sales\\Model\\ResourceModel\\Order',NULL,'sales_order',NULL,NULL,1,'default',5,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(6,'invoice','Magento\\Sales\\Model\\ResourceModel\\Order\\Invoice',NULL,'sales_invoice',NULL,NULL,1,'default',6,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(7,'creditmemo','Magento\\Sales\\Model\\ResourceModel\\Order\\Creditmemo',NULL,'sales_creditmemo',NULL,NULL,1,'default',7,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(8,'shipment','Magento\\Sales\\Model\\ResourceModel\\Order\\Shipment',NULL,'sales_shipment',NULL,NULL,1,'default',8,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL);
/*!40000 ALTER TABLE `eav_entity_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_entity_varchar`
--

DROP TABLE IF EXISTS `eav_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_varchar` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value Id',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type Id',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `EAV_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `EAV_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  KEY `EAV_ENTITY_VARCHAR_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `EAV_ENTITY_VARCHAR_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `EAV_ENTITY_VARCHAR_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_VARCHAR_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_varchar`
--

LOCK TABLES `eav_entity_varchar` WRITE;
/*!40000 ALTER TABLE `eav_entity_varchar` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_form_element`
--

DROP TABLE IF EXISTS `eav_form_element`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_form_element` (
  `element_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Element Id',
  `type_id` smallint(5) unsigned NOT NULL COMMENT 'Type Id',
  `fieldset_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Fieldset Id',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute Id',
  `sort_order` int(11) NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`element_id`),
  UNIQUE KEY `EAV_FORM_ELEMENT_TYPE_ID_ATTRIBUTE_ID` (`type_id`,`attribute_id`),
  KEY `EAV_FORM_ELEMENT_FIELDSET_ID` (`fieldset_id`),
  KEY `EAV_FORM_ELEMENT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `EAV_FORM_ELEMENT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_FORM_ELEMENT_FIELDSET_ID_EAV_FORM_FIELDSET_FIELDSET_ID` FOREIGN KEY (`fieldset_id`) REFERENCES `eav_form_fieldset` (`fieldset_id`) ON DELETE SET NULL,
  CONSTRAINT `EAV_FORM_ELEMENT_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8 COMMENT='Eav Form Element';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_form_element`
--

LOCK TABLES `eav_form_element` WRITE;
/*!40000 ALTER TABLE `eav_form_element` DISABLE KEYS */;
INSERT INTO `eav_form_element` VALUES (1,1,NULL,23,0),(2,1,NULL,25,1),(3,1,NULL,27,2),(4,1,NULL,9,3),(5,1,NULL,28,4),(6,1,NULL,29,5),(7,1,NULL,31,6),(8,1,NULL,33,7),(9,1,NULL,30,8),(10,1,NULL,34,9),(11,1,NULL,35,10),(12,2,NULL,23,0),(13,2,NULL,25,1),(14,2,NULL,27,2),(15,2,NULL,9,3),(16,2,NULL,28,4),(17,2,NULL,29,5),(18,2,NULL,31,6),(19,2,NULL,33,7),(20,2,NULL,30,8),(21,2,NULL,34,9),(22,2,NULL,35,10),(23,3,NULL,23,0),(24,3,NULL,25,1),(25,3,NULL,27,2),(26,3,NULL,28,3),(27,3,NULL,29,4),(28,3,NULL,31,5),(29,3,NULL,33,6),(30,3,NULL,30,7),(31,3,NULL,34,8),(32,3,NULL,35,9),(33,4,NULL,23,0),(34,4,NULL,25,1),(35,4,NULL,27,2),(36,4,NULL,28,3),(37,4,NULL,29,4),(38,4,NULL,31,5),(39,4,NULL,33,6),(40,4,NULL,30,7),(41,4,NULL,34,8),(42,4,NULL,35,9);
/*!40000 ALTER TABLE `eav_form_element` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_form_fieldset`
--

DROP TABLE IF EXISTS `eav_form_fieldset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_form_fieldset` (
  `fieldset_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Fieldset Id',
  `type_id` smallint(5) unsigned NOT NULL COMMENT 'Type Id',
  `code` varchar(64) NOT NULL COMMENT 'Code',
  `sort_order` int(11) NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  PRIMARY KEY (`fieldset_id`),
  UNIQUE KEY `EAV_FORM_FIELDSET_TYPE_ID_CODE` (`type_id`,`code`),
  CONSTRAINT `EAV_FORM_FIELDSET_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Fieldset';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_form_fieldset`
--

LOCK TABLES `eav_form_fieldset` WRITE;
/*!40000 ALTER TABLE `eav_form_fieldset` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_form_fieldset` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_form_fieldset_label`
--

DROP TABLE IF EXISTS `eav_form_fieldset_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_form_fieldset_label` (
  `fieldset_id` smallint(5) unsigned NOT NULL COMMENT 'Fieldset Id',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id',
  `label` varchar(255) NOT NULL COMMENT 'Label',
  PRIMARY KEY (`fieldset_id`,`store_id`),
  KEY `EAV_FORM_FIELDSET_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_FORM_FIELDSET_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_FORM_FSET_LBL_FSET_ID_EAV_FORM_FSET_FSET_ID` FOREIGN KEY (`fieldset_id`) REFERENCES `eav_form_fieldset` (`fieldset_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Fieldset Label';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_form_fieldset_label`
--

LOCK TABLES `eav_form_fieldset_label` WRITE;
/*!40000 ALTER TABLE `eav_form_fieldset_label` DISABLE KEYS */;
/*!40000 ALTER TABLE `eav_form_fieldset_label` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_form_type`
--

DROP TABLE IF EXISTS `eav_form_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_form_type` (
  `type_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Type Id',
  `code` varchar(64) NOT NULL COMMENT 'Code',
  `label` varchar(255) NOT NULL COMMENT 'Label',
  `is_system` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is System',
  `theme` varchar(64) DEFAULT NULL COMMENT 'Theme',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id',
  PRIMARY KEY (`type_id`),
  UNIQUE KEY `EAV_FORM_TYPE_CODE_THEME_STORE_ID` (`code`,`theme`,`store_id`),
  KEY `EAV_FORM_TYPE_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_FORM_TYPE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Eav Form Type';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_form_type`
--

LOCK TABLES `eav_form_type` WRITE;
/*!40000 ALTER TABLE `eav_form_type` DISABLE KEYS */;
INSERT INTO `eav_form_type` VALUES (1,'checkout_onepage_register','checkout_onepage_register',1,'',0),(2,'checkout_onepage_register_guest','checkout_onepage_register_guest',1,'',0),(3,'checkout_onepage_billing_address','checkout_onepage_billing_address',1,'',0),(4,'checkout_onepage_shipping_address','checkout_onepage_shipping_address',1,'',0);
/*!40000 ALTER TABLE `eav_form_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_form_type_entity`
--

DROP TABLE IF EXISTS `eav_form_type_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_form_type_entity` (
  `type_id` smallint(5) unsigned NOT NULL COMMENT 'Type Id',
  `entity_type_id` smallint(5) unsigned NOT NULL COMMENT 'Entity Type Id',
  PRIMARY KEY (`type_id`,`entity_type_id`),
  KEY `EAV_FORM_TYPE_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`),
  CONSTRAINT `EAV_FORM_TYPE_ENTITY_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_FORM_TYPE_ENTT_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Type Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_form_type_entity`
--

LOCK TABLES `eav_form_type_entity` WRITE;
/*!40000 ALTER TABLE `eav_form_type_entity` DISABLE KEYS */;
INSERT INTO `eav_form_type_entity` VALUES (1,1),(2,1),(1,2),(2,2),(3,2),(4,2);
/*!40000 ALTER TABLE `eav_form_type_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_abandoned_cart`
--

DROP TABLE IF EXISTS `email_abandoned_cart`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_abandoned_cart` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `quote_id` int(10) unsigned DEFAULT NULL COMMENT 'Quote Id',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `email` varchar(255) NOT NULL DEFAULT '' COMMENT 'Email',
  `is_active` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Quote Active',
  `quote_updated_at` timestamp NULL DEFAULT NULL COMMENT 'Quote updated at',
  `abandoned_cart_number` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Abandoned Cart number',
  `items_count` smallint(5) unsigned DEFAULT '0' COMMENT 'Quote items count',
  `items_ids` varchar(255) DEFAULT NULL COMMENT 'Quote item ids',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated at',
  `status` text NOT NULL COMMENT 'Contact Status',
  PRIMARY KEY (`id`),
  KEY `EMAIL_ABANDONED_CART_QUOTE_ID` (`quote_id`),
  KEY `EMAIL_ABANDONED_CART_STORE_ID` (`store_id`),
  KEY `EMAIL_ABANDONED_CART_CUSTOMER_ID` (`customer_id`),
  KEY `EMAIL_ABANDONED_CART_EMAIL` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Abandoned Carts Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_abandoned_cart`
--

LOCK TABLES `email_abandoned_cart` WRITE;
/*!40000 ALTER TABLE `email_abandoned_cart` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_abandoned_cart` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_automation`
--

DROP TABLE IF EXISTS `email_automation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_automation` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `automation_type` varchar(255) DEFAULT NULL COMMENT 'Automation Type',
  `store_name` varchar(255) DEFAULT NULL COMMENT 'Automation Type',
  `enrolment_status` varchar(255) NOT NULL COMMENT 'Entrolment Status',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `type_id` varchar(255) DEFAULT NULL COMMENT 'Type ID',
  `program_id` varchar(255) DEFAULT NULL COMMENT 'Program ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `message` varchar(255) NOT NULL COMMENT 'Message',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time',
  PRIMARY KEY (`id`),
  KEY `EMAIL_AUTOMATION_AUTOMATION_TYPE` (`automation_type`),
  KEY `EMAIL_AUTOMATION_ENROLMENT_STATUS` (`enrolment_status`),
  KEY `EMAIL_AUTOMATION_TYPE_ID` (`type_id`),
  KEY `EMAIL_AUTOMATION_EMAIL` (`email`),
  KEY `EMAIL_AUTOMATION_PROGRAM_ID` (`program_id`),
  KEY `EMAIL_AUTOMATION_CREATED_AT` (`created_at`),
  KEY `EMAIL_AUTOMATION_UPDATED_AT` (`updated_at`),
  KEY `EMAIL_AUTOMATION_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Automation Status';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_automation`
--

LOCK TABLES `email_automation` WRITE;
/*!40000 ALTER TABLE `email_automation` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_automation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_campaign`
--

DROP TABLE IF EXISTS `email_campaign`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_campaign` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `campaign_id` int(10) unsigned NOT NULL COMMENT 'Campaign ID',
  `email` varchar(255) NOT NULL DEFAULT '' COMMENT 'Contact Email',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer ID',
  `sent_at` timestamp NULL DEFAULT NULL COMMENT 'Send Date',
  `order_increment_id` varchar(50) NOT NULL COMMENT 'Order Increment ID',
  `quote_id` int(10) unsigned NOT NULL COMMENT 'Sales Quote ID',
  `message` varchar(255) NOT NULL DEFAULT '' COMMENT 'Error Message',
  `checkout_method` varchar(255) NOT NULL DEFAULT '' COMMENT 'Checkout Method Used',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `event_name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Event Name',
  `send_id` varchar(255) NOT NULL DEFAULT '' COMMENT 'Send Id',
  `send_status` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Campaign send status',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time',
  PRIMARY KEY (`id`),
  KEY `EMAIL_CAMPAIGN_STORE_ID` (`store_id`),
  KEY `EMAIL_CAMPAIGN_CAMPAIGN_ID` (`campaign_id`),
  KEY `EMAIL_CAMPAIGN_EMAIL` (`email`),
  KEY `EMAIL_CAMPAIGN_SEND_ID` (`send_id`),
  KEY `EMAIL_CAMPAIGN_SEND_STATUS` (`send_status`),
  KEY `EMAIL_CAMPAIGN_CREATED_AT` (`created_at`),
  KEY `EMAIL_CAMPAIGN_UPDATED_AT` (`updated_at`),
  KEY `EMAIL_CAMPAIGN_SENT_AT` (`sent_at`),
  KEY `EMAIL_CAMPAIGN_EVENT_NAME` (`event_name`),
  KEY `EMAIL_CAMPAIGN_MESSAGE` (`message`),
  KEY `EMAIL_CAMPAIGN_QUOTE_ID` (`quote_id`),
  KEY `EMAIL_CAMPAIGN_CUSTOMER_ID` (`customer_id`),
  CONSTRAINT `EMAIL_CAMPAIGN_STORE_ID_CORE/STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Connector Campaigns';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_campaign`
--

LOCK TABLES `email_campaign` WRITE;
/*!40000 ALTER TABLE `email_campaign` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_campaign` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_catalog`
--

DROP TABLE IF EXISTS `email_catalog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_catalog` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `imported` smallint(5) unsigned DEFAULT NULL COMMENT 'Product Imported',
  `modified` smallint(5) unsigned DEFAULT NULL COMMENT 'Product Modified',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time',
  PRIMARY KEY (`id`),
  KEY `EMAIL_CATALOG_PRODUCT_ID` (`product_id`),
  KEY `EMAIL_CATALOG_IMPORTED` (`imported`),
  KEY `EMAIL_CATALOG_MODIFIED` (`modified`),
  KEY `EMAIL_CATALOG_CREATED_AT` (`created_at`),
  KEY `EMAIL_CATALOG_UPDATED_AT` (`updated_at`),
  CONSTRAINT `EMAIL_CATALOG_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2525 DEFAULT CHARSET=utf8 COMMENT='Connector Catalog';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_catalog`
--

LOCK TABLES `email_catalog` WRITE;
/*!40000 ALTER TABLE `email_catalog` DISABLE KEYS */;
INSERT INTO `email_catalog` VALUES (1,1,NULL,NULL,'2018-11-30 16:23:00',NULL),(2,2,NULL,NULL,'2018-11-30 16:29:36',NULL),(3,3,NULL,NULL,'2018-11-30 16:52:17',NULL),(4,4,NULL,NULL,'2018-11-30 17:04:32',NULL),(5,5,NULL,NULL,'2018-11-30 17:10:24',NULL),(6,6,NULL,NULL,'2018-11-30 17:21:24',NULL),(7,7,NULL,NULL,'2018-11-30 17:37:13',NULL),(8,8,NULL,NULL,'2018-11-30 17:40:06',NULL),(9,9,NULL,NULL,'2018-11-30 17:40:46',NULL),(10,10,NULL,NULL,'2018-11-30 17:42:45',NULL),(11,11,NULL,NULL,'2018-11-30 17:49:09',NULL),(12,12,NULL,NULL,'2018-11-30 17:52:28',NULL),(13,15,NULL,NULL,'2018-11-30 18:04:46',NULL),(14,16,NULL,NULL,'2018-11-30 18:11:48',NULL),(15,17,NULL,NULL,'2018-11-30 18:14:12',NULL),(16,18,NULL,NULL,'2018-11-30 18:15:14',NULL),(17,19,NULL,NULL,'2018-11-30 18:16:34',NULL),(18,20,NULL,NULL,'2018-11-30 18:17:13',NULL),(19,22,NULL,NULL,'2018-11-30 18:19:49',NULL),(20,24,NULL,NULL,'2018-11-30 18:22:02',NULL),(21,25,NULL,NULL,'2018-11-30 18:22:18',NULL),(22,26,NULL,NULL,'2018-11-30 18:23:50',NULL),(23,29,NULL,NULL,'2018-11-30 18:26:45',NULL),(24,30,NULL,NULL,'2018-11-30 18:27:15',NULL),(25,31,NULL,NULL,'2018-11-30 18:27:34',NULL),(26,32,NULL,NULL,'2018-11-30 18:33:47',NULL),(27,33,NULL,NULL,'2018-11-30 18:34:48',NULL),(28,34,NULL,NULL,'2018-11-30 18:35:20',NULL),(29,35,NULL,NULL,'2018-11-30 18:35:29',NULL),(30,36,NULL,NULL,'2018-11-30 18:37:17',NULL),(31,38,NULL,NULL,'2018-11-30 18:40:07',NULL),(32,41,NULL,NULL,'2018-11-30 18:41:23',NULL),(33,42,NULL,NULL,'2018-11-30 18:41:45',NULL),(34,43,NULL,NULL,'2018-11-30 18:42:17',NULL),(35,44,NULL,NULL,'2018-11-30 18:42:25',NULL),(36,45,NULL,NULL,'2018-11-30 18:43:14',NULL),(37,46,NULL,NULL,'2018-11-30 18:43:26',NULL),(38,47,NULL,NULL,'2018-11-30 18:44:53',NULL),(39,48,NULL,NULL,'2018-11-30 18:46:09',NULL),(40,49,NULL,NULL,'2018-11-30 18:46:58',NULL),(41,50,NULL,NULL,'2018-11-30 18:48:26',NULL),(42,51,NULL,NULL,'2018-11-30 18:48:27',NULL),(43,53,NULL,NULL,'2018-11-30 18:50:07',NULL),(44,54,NULL,NULL,'2018-11-30 18:50:18',NULL),(45,55,NULL,NULL,'2018-11-30 18:51:36',NULL),(46,56,NULL,NULL,'2018-11-30 18:51:50',NULL),(47,57,NULL,NULL,'2018-11-30 18:52:37',NULL),(48,58,NULL,NULL,'2018-11-30 18:54:48',NULL),(49,59,NULL,NULL,'2018-11-30 18:54:57',NULL),(50,60,NULL,NULL,'2018-11-30 18:55:21',NULL),(51,61,NULL,NULL,'2018-11-30 18:55:52',NULL),(52,63,NULL,NULL,'2018-11-30 18:57:22',NULL),(53,64,NULL,NULL,'2018-11-30 18:57:56',NULL),(54,65,NULL,NULL,'2018-11-30 18:58:34',NULL),(55,66,NULL,NULL,'2018-11-30 19:00:08',NULL),(56,68,NULL,NULL,'2018-11-30 19:01:47',NULL),(57,69,NULL,NULL,'2018-11-30 19:06:23',NULL),(58,70,NULL,NULL,'2018-11-30 19:06:26',NULL),(59,71,NULL,NULL,'2018-11-30 19:07:33',NULL),(60,72,NULL,NULL,'2018-11-30 19:08:26',NULL),(61,73,NULL,NULL,'2018-11-30 19:10:16',NULL),(62,74,NULL,NULL,'2018-11-30 19:10:36',NULL),(63,75,NULL,NULL,'2018-11-30 19:11:13',NULL),(64,76,NULL,NULL,'2018-11-30 19:11:45',NULL),(65,77,NULL,NULL,'2018-11-30 19:12:33',NULL),(66,78,NULL,NULL,'2018-11-30 19:13:25',NULL),(67,79,NULL,NULL,'2018-11-30 19:14:58',NULL),(68,80,NULL,NULL,'2018-11-30 19:15:05',NULL),(69,81,NULL,NULL,'2018-11-30 19:17:28',NULL),(70,82,NULL,NULL,'2018-11-30 19:19:17',NULL),(71,83,NULL,NULL,'2018-11-30 19:19:28',NULL),(72,84,NULL,NULL,'2018-11-30 19:22:20',NULL),(73,85,NULL,NULL,'2018-11-30 19:26:12',NULL),(74,86,NULL,NULL,'2018-11-30 19:27:00',NULL),(75,87,NULL,NULL,'2018-11-30 19:27:49',NULL),(76,88,NULL,NULL,'2018-11-30 19:29:43',NULL),(77,89,NULL,NULL,'2018-11-30 19:31:12',NULL),(78,91,NULL,NULL,'2018-11-30 19:37:11',NULL),(79,92,NULL,NULL,'2018-11-30 19:40:00',NULL),(80,93,NULL,NULL,'2018-11-30 19:42:21',NULL),(81,95,NULL,NULL,'2018-11-30 19:44:28',NULL),(82,97,NULL,NULL,'2018-11-30 19:46:51',NULL),(83,98,NULL,NULL,'2018-11-30 19:47:42',NULL),(84,99,NULL,NULL,'2018-11-30 19:48:08',NULL),(85,100,NULL,NULL,'2018-11-30 19:49:42',NULL),(86,101,NULL,NULL,'2018-11-30 20:05:03',NULL),(87,102,NULL,NULL,'2018-11-30 20:05:42',NULL),(88,103,NULL,NULL,'2018-11-30 20:07:45',NULL),(89,104,NULL,NULL,'2018-11-30 20:09:24',NULL),(90,105,NULL,NULL,'2018-11-30 20:11:42',NULL),(91,106,NULL,NULL,'2018-11-30 20:30:31',NULL),(92,107,NULL,NULL,'2018-11-30 20:32:34',NULL),(93,108,NULL,NULL,'2018-11-30 20:35:28',NULL),(94,109,NULL,NULL,'2018-11-30 20:43:31',NULL),(95,110,NULL,NULL,'2018-11-30 20:43:43',NULL),(96,111,NULL,NULL,'2018-11-30 20:47:16',NULL),(97,112,NULL,NULL,'2018-11-30 20:48:50',NULL),(98,113,NULL,NULL,'2018-11-30 20:51:21',NULL),(99,114,NULL,NULL,'2018-11-30 20:52:08',NULL),(100,115,NULL,NULL,'2018-11-30 20:53:13',NULL),(101,116,NULL,NULL,'2018-11-30 20:55:33',NULL),(102,117,NULL,NULL,'2018-11-30 20:55:58',NULL),(103,118,NULL,NULL,'2018-11-30 20:58:28',NULL),(104,119,NULL,NULL,'2018-11-30 20:59:10',NULL),(105,120,NULL,NULL,'2018-11-30 20:59:34',NULL),(106,121,NULL,NULL,'2018-11-30 21:06:05',NULL),(107,122,NULL,NULL,'2018-11-30 21:06:25',NULL),(108,123,NULL,NULL,'2018-11-30 21:12:15',NULL),(109,124,NULL,NULL,'2018-11-30 21:32:28',NULL),(110,125,NULL,NULL,'2018-11-30 21:38:29',NULL),(111,126,NULL,NULL,'2018-11-30 21:45:50',NULL),(112,127,NULL,NULL,'2018-11-30 22:02:09',NULL),(113,128,NULL,NULL,'2018-12-03 09:33:36',NULL),(114,129,NULL,NULL,'2019-02-08 08:12:05','2019-02-08 08:12:05'),(115,130,NULL,NULL,'2019-02-08 12:14:48','2019-02-08 12:14:48'),(116,131,NULL,NULL,'2019-02-08 12:14:49','2019-02-08 12:14:49'),(117,132,NULL,NULL,'2019-02-08 14:39:09','2019-02-08 14:39:09'),(118,133,NULL,NULL,'2019-02-08 14:39:10','2019-02-08 14:39:10'),(119,134,NULL,NULL,'2019-02-08 14:39:10','2019-02-08 14:39:10'),(120,135,NULL,NULL,'2019-02-08 14:54:37','2019-02-08 14:54:37'),(121,136,NULL,NULL,'2019-02-08 14:54:38','2019-02-08 14:54:38'),(122,137,NULL,NULL,'2019-02-08 14:54:38','2019-02-08 14:54:38'),(123,138,NULL,NULL,'2019-02-08 15:07:20','2019-02-08 15:07:20'),(124,139,NULL,NULL,'2019-02-08 15:07:21','2019-02-08 15:07:21'),(125,140,NULL,NULL,'2019-02-08 15:07:21','2019-02-08 15:07:21'),(126,141,NULL,NULL,'2019-02-08 15:07:21','2019-02-08 15:07:21'),(127,142,NULL,NULL,'2019-02-08 15:07:22','2019-02-08 15:07:22'),(128,143,NULL,NULL,'2019-02-08 15:07:22','2019-02-08 15:07:22'),(129,144,NULL,NULL,'2019-02-08 15:07:22','2019-02-08 15:07:22'),(130,145,NULL,NULL,'2019-02-08 16:20:29','2019-02-08 16:20:29'),(131,146,NULL,NULL,'2019-02-08 16:20:30','2019-02-08 16:20:30'),(132,147,NULL,NULL,'2019-02-08 16:20:30','2019-02-08 16:20:30'),(133,148,NULL,NULL,'2019-02-08 16:20:30','2019-02-08 16:20:30'),(134,149,NULL,NULL,'2019-02-08 16:20:31','2019-02-08 16:20:31'),(135,150,NULL,NULL,'2019-02-08 16:22:14','2019-02-08 16:22:14'),(136,151,NULL,NULL,'2019-02-08 16:22:14','2019-02-08 16:22:14'),(137,152,NULL,NULL,'2019-02-08 16:22:15','2019-02-08 16:22:15'),(138,153,NULL,NULL,'2019-02-08 16:23:50','2019-02-08 16:23:50'),(139,154,NULL,NULL,'2019-02-08 16:23:51','2019-02-08 16:23:51'),(140,155,NULL,NULL,'2019-02-08 16:23:51','2019-02-08 16:23:51'),(141,156,NULL,NULL,'2019-02-08 16:23:51','2019-02-08 16:23:51'),(142,157,NULL,NULL,'2019-02-08 16:25:45','2019-02-08 16:25:45'),(143,158,NULL,NULL,'2019-02-08 16:25:45','2019-02-08 16:25:45'),(144,159,NULL,NULL,'2019-02-08 16:25:45','2019-02-08 16:25:45'),(145,160,NULL,NULL,'2019-02-08 16:27:31','2019-02-08 16:27:31'),(146,161,NULL,NULL,'2019-02-08 16:27:31','2019-02-08 16:27:31'),(147,162,NULL,NULL,'2019-02-08 16:27:31','2019-02-08 16:27:31'),(148,163,NULL,NULL,'2019-02-08 16:33:47','2019-02-08 16:33:47'),(149,164,NULL,NULL,'2019-02-08 16:33:48','2019-02-08 16:33:48'),(150,165,NULL,NULL,'2019-02-08 16:33:48','2019-02-08 16:33:48'),(151,166,NULL,NULL,'2019-02-11 06:49:41','2019-02-11 06:49:41'),(152,167,NULL,NULL,'2019-02-11 06:49:41','2019-02-11 06:49:41'),(153,168,NULL,NULL,'2019-02-11 06:49:41','2019-02-11 06:49:41'),(154,169,NULL,NULL,'2019-02-11 06:49:42','2019-02-11 06:49:42'),(155,170,NULL,NULL,'2019-02-11 06:51:21','2019-02-11 06:51:21'),(156,171,NULL,NULL,'2019-02-11 06:51:22','2019-02-11 06:51:22'),(157,172,NULL,NULL,'2019-02-11 06:51:56','2019-02-11 06:51:56'),(158,173,NULL,NULL,'2019-02-11 06:51:57','2019-02-11 06:51:57'),(159,174,NULL,NULL,'2019-02-11 06:51:57','2019-02-11 06:51:57'),(160,175,NULL,NULL,'2019-02-11 06:52:49','2019-02-11 06:52:49'),(161,176,NULL,NULL,'2019-02-11 06:52:49','2019-02-11 06:52:49'),(162,177,NULL,NULL,'2019-02-11 06:52:49','2019-02-11 06:52:49'),(163,178,NULL,NULL,'2019-02-11 06:52:50','2019-02-11 06:52:50'),(164,179,NULL,NULL,'2019-02-11 06:52:50','2019-02-11 06:52:50'),(165,180,NULL,NULL,'2019-02-11 06:53:31','2019-02-11 06:53:31'),(166,181,NULL,NULL,'2019-02-11 06:53:32','2019-02-11 06:53:32'),(167,182,NULL,NULL,'2019-02-11 06:53:32','2019-02-11 06:53:32'),(168,183,NULL,NULL,'2019-02-11 06:53:32','2019-02-11 06:53:32'),(169,184,NULL,NULL,'2019-02-11 06:53:33','2019-02-11 06:53:33'),(170,185,NULL,NULL,'2019-02-11 06:53:33','2019-02-11 06:53:33'),(171,186,NULL,NULL,'2019-02-11 06:54:08','2019-02-11 06:54:08'),(172,187,NULL,NULL,'2019-02-11 06:54:09','2019-02-11 06:54:09'),(173,188,NULL,NULL,'2019-02-11 06:54:09','2019-02-11 06:54:09'),(174,189,NULL,NULL,'2019-02-11 06:54:09','2019-02-11 06:54:09'),(175,190,NULL,NULL,'2019-02-11 06:54:49','2019-02-11 06:54:49'),(176,191,NULL,NULL,'2019-02-11 06:54:50','2019-02-11 06:54:50'),(177,192,NULL,NULL,'2019-02-11 06:54:50','2019-02-11 06:54:50'),(178,193,NULL,NULL,'2019-02-11 06:54:50','2019-02-11 06:54:50'),(179,194,NULL,NULL,'2019-02-11 06:55:15','2019-02-11 06:55:15'),(180,195,NULL,NULL,'2019-02-11 06:55:16','2019-02-11 06:55:16'),(181,196,NULL,NULL,'2019-02-11 06:55:16','2019-02-11 06:55:16'),(182,197,NULL,NULL,'2019-02-11 06:55:50','2019-02-11 06:55:50'),(183,198,NULL,NULL,'2019-02-11 06:55:50','2019-02-11 06:55:50'),(184,199,NULL,NULL,'2019-02-11 06:55:50','2019-02-11 06:55:50'),(185,200,NULL,NULL,'2019-02-11 06:55:51','2019-02-11 06:55:51'),(186,201,NULL,NULL,'2019-02-11 06:55:51','2019-02-11 06:55:51'),(187,202,NULL,NULL,'2019-02-11 06:55:51','2019-02-11 06:55:51'),(188,203,NULL,NULL,'2019-02-11 06:56:41','2019-02-11 06:56:41'),(189,204,NULL,NULL,'2019-02-11 06:56:41','2019-02-11 06:56:41'),(190,205,NULL,NULL,'2019-02-11 06:56:41','2019-02-11 06:56:41'),(191,206,NULL,NULL,'2019-02-11 06:56:41','2019-02-11 06:56:41'),(192,207,NULL,NULL,'2019-02-11 06:57:14','2019-02-11 06:57:14'),(193,208,NULL,NULL,'2019-02-11 06:57:14','2019-02-11 06:57:14'),(194,209,NULL,NULL,'2019-02-11 06:57:14','2019-02-11 06:57:14'),(195,210,NULL,NULL,'2019-02-11 06:58:50','2019-02-11 06:58:50'),(196,211,NULL,NULL,'2019-02-11 06:58:50','2019-02-11 06:58:50'),(197,212,NULL,NULL,'2019-02-11 06:58:51','2019-02-11 06:58:51'),(198,213,NULL,NULL,'2019-02-11 06:58:51','2019-02-11 06:58:51'),(199,214,NULL,NULL,'2019-02-11 06:58:51','2019-02-11 06:58:51'),(200,215,NULL,NULL,'2019-02-11 06:58:51','2019-02-11 06:58:51'),(201,216,NULL,NULL,'2019-02-11 06:58:52','2019-02-11 06:58:52'),(202,217,NULL,NULL,'2019-02-11 06:59:33','2019-02-11 06:59:33'),(203,218,NULL,NULL,'2019-02-11 06:59:34','2019-02-11 06:59:34'),(204,219,NULL,NULL,'2019-02-11 06:59:34','2019-02-11 06:59:34'),(205,220,NULL,NULL,'2019-02-11 06:59:34','2019-02-11 06:59:34'),(206,221,NULL,NULL,'2019-02-11 06:59:35','2019-02-11 06:59:35'),(207,222,NULL,NULL,'2019-02-11 07:00:05','2019-02-11 07:00:05'),(208,223,NULL,NULL,'2019-02-11 07:00:06','2019-02-11 07:00:06'),(209,224,NULL,NULL,'2019-02-11 07:00:06','2019-02-11 07:00:06'),(210,225,NULL,NULL,'2019-02-11 07:00:06','2019-02-11 07:00:06'),(211,226,NULL,NULL,'2019-02-11 07:00:07','2019-02-11 07:00:07'),(212,227,NULL,NULL,'2019-02-11 07:00:07','2019-02-11 07:00:07'),(213,228,NULL,NULL,'2019-02-11 07:00:37','2019-02-11 07:00:37'),(214,229,NULL,NULL,'2019-02-11 07:00:38','2019-02-11 07:00:38'),(215,230,NULL,NULL,'2019-02-11 07:00:38','2019-02-11 07:00:38'),(216,231,NULL,NULL,'2019-02-11 07:01:40','2019-02-11 07:01:40'),(217,232,NULL,NULL,'2019-02-11 07:01:40','2019-02-11 07:01:40'),(218,233,NULL,NULL,'2019-02-11 07:02:28','2019-02-11 07:02:28'),(219,234,NULL,NULL,'2019-02-11 07:02:28','2019-02-11 07:02:28'),(220,235,NULL,NULL,'2019-02-11 07:03:00','2019-02-11 07:03:00'),(221,236,NULL,NULL,'2019-02-11 07:03:00','2019-02-11 07:03:00'),(222,237,NULL,NULL,'2019-02-11 07:03:00','2019-02-11 07:03:00'),(223,238,NULL,NULL,'2019-02-11 07:03:01','2019-02-11 07:03:01'),(224,239,NULL,NULL,'2019-02-11 07:03:34','2019-02-11 07:03:34'),(225,240,NULL,NULL,'2019-02-11 07:03:35','2019-02-11 07:03:35'),(226,241,NULL,NULL,'2019-02-11 07:03:35','2019-02-11 07:03:35'),(227,242,NULL,NULL,'2019-02-11 07:03:35','2019-02-11 07:03:35'),(228,243,NULL,NULL,'2019-02-11 07:04:15','2019-02-11 07:04:15'),(229,244,NULL,NULL,'2019-02-11 07:04:15','2019-02-11 07:04:15'),(230,245,NULL,NULL,'2019-02-11 07:04:16','2019-02-11 07:04:16'),(231,246,NULL,NULL,'2019-02-11 07:04:16','2019-02-11 07:04:16'),(232,247,NULL,NULL,'2019-02-11 07:04:16','2019-02-11 07:04:16'),(233,248,NULL,NULL,'2019-02-11 07:04:16','2019-02-11 07:04:16'),(234,249,NULL,NULL,'2019-02-11 07:05:02','2019-02-11 07:05:02'),(235,250,NULL,NULL,'2019-02-11 07:05:02','2019-02-11 07:05:02'),(236,251,NULL,NULL,'2019-02-11 07:05:02','2019-02-11 07:05:02'),(237,252,NULL,NULL,'2019-02-11 07:05:03','2019-02-11 07:05:03'),(238,253,NULL,NULL,'2019-02-11 07:05:03','2019-02-11 07:05:03'),(239,254,NULL,NULL,'2019-02-11 07:05:35','2019-02-11 07:05:35'),(240,255,NULL,NULL,'2019-02-11 07:05:35','2019-02-11 07:05:35'),(241,256,NULL,NULL,'2019-02-11 07:05:35','2019-02-11 07:05:35'),(242,257,NULL,NULL,'2019-02-11 07:06:07','2019-02-11 07:06:07'),(243,258,NULL,NULL,'2019-02-11 07:06:07','2019-02-11 07:06:07'),(244,259,NULL,NULL,'2019-02-11 07:06:07','2019-02-11 07:06:07'),(245,260,NULL,NULL,'2019-02-11 07:06:08','2019-02-11 07:06:08'),(246,261,NULL,NULL,'2019-02-11 07:06:42','2019-02-11 07:06:42'),(247,262,NULL,NULL,'2019-02-11 07:06:42','2019-02-11 07:06:42'),(248,263,NULL,NULL,'2019-02-11 07:06:43','2019-02-11 07:06:43'),(249,264,NULL,NULL,'2019-02-11 07:06:43','2019-02-11 07:06:43'),(250,265,NULL,NULL,'2019-02-11 07:09:30','2019-02-11 07:09:30'),(251,266,NULL,NULL,'2019-02-11 07:09:31','2019-02-11 07:09:31'),(252,267,NULL,NULL,'2019-02-11 07:09:31','2019-02-11 07:09:31'),(253,268,NULL,NULL,'2019-02-11 07:09:31','2019-02-11 07:09:31'),(254,269,NULL,NULL,'2019-02-11 07:09:32','2019-02-11 07:09:32'),(255,270,NULL,NULL,'2019-02-11 07:09:45','2019-02-11 07:09:45'),(256,271,NULL,NULL,'2019-02-11 07:09:45','2019-02-11 07:09:45'),(257,272,NULL,NULL,'2019-02-11 07:10:12','2019-02-11 07:10:12'),(258,273,NULL,NULL,'2019-02-11 07:10:12','2019-02-11 07:10:12'),(259,274,NULL,NULL,'2019-02-11 07:10:13','2019-02-11 07:10:13'),(260,275,NULL,NULL,'2019-02-11 07:10:13','2019-02-11 07:10:13'),(261,276,NULL,NULL,'2019-02-11 07:10:13','2019-02-11 07:10:13'),(262,277,NULL,NULL,'2019-02-11 07:10:32','2019-02-11 07:10:32'),(263,278,NULL,NULL,'2019-02-11 07:10:33','2019-02-11 07:10:33'),(264,279,NULL,NULL,'2019-02-11 07:10:33','2019-02-11 07:10:33'),(265,280,NULL,NULL,'2019-02-11 07:10:33','2019-02-11 07:10:33'),(266,281,NULL,NULL,'2019-02-11 07:10:57','2019-02-11 07:10:57'),(267,282,NULL,NULL,'2019-02-11 07:10:58','2019-02-11 07:10:58'),(268,283,NULL,NULL,'2019-02-11 07:10:58','2019-02-11 07:10:58'),(269,284,NULL,NULL,'2019-02-11 07:10:58','2019-02-11 07:10:58'),(270,285,NULL,NULL,'2019-02-11 07:11:36','2019-02-11 07:11:36'),(271,286,NULL,NULL,'2019-02-11 07:11:37','2019-02-11 07:11:37'),(272,287,NULL,NULL,'2019-02-11 07:12:06','2019-02-11 07:12:06'),(273,288,NULL,NULL,'2019-02-11 07:12:07','2019-02-11 07:12:07'),(274,289,NULL,NULL,'2019-02-11 07:12:07','2019-02-11 07:12:07'),(275,290,NULL,NULL,'2019-02-11 07:12:43','2019-02-11 07:12:43'),(276,291,NULL,NULL,'2019-02-11 07:12:44','2019-02-11 07:12:44'),(277,292,NULL,NULL,'2019-02-11 07:12:44','2019-02-11 07:12:44'),(278,293,NULL,NULL,'2019-02-11 07:12:44','2019-02-11 07:12:44'),(279,294,NULL,NULL,'2019-02-11 07:12:45','2019-02-11 07:12:45'),(280,295,NULL,NULL,'2019-02-11 07:12:45','2019-02-11 07:12:45'),(281,296,NULL,NULL,'2019-02-11 07:13:15','2019-02-11 07:13:15'),(282,297,NULL,NULL,'2019-02-11 07:13:16','2019-02-11 07:13:16'),(283,298,NULL,NULL,'2019-02-11 07:13:16','2019-02-11 07:13:16'),(284,299,NULL,NULL,'2019-02-11 07:13:16','2019-02-11 07:13:16'),(285,300,NULL,NULL,'2019-02-11 07:13:46','2019-02-11 07:13:46'),(286,301,NULL,NULL,'2019-02-11 07:13:46','2019-02-11 07:13:46'),(287,302,NULL,NULL,'2019-02-11 07:13:47','2019-02-11 07:13:47'),(288,303,NULL,NULL,'2019-02-11 07:13:47','2019-02-11 07:13:47'),(289,304,NULL,NULL,'2019-02-11 07:13:47','2019-02-11 07:13:47'),(290,305,NULL,NULL,'2019-02-11 07:13:48','2019-02-11 07:13:48'),(291,306,NULL,NULL,'2019-02-11 07:16:09','2019-02-11 07:16:09'),(292,307,NULL,NULL,'2019-02-11 07:16:09','2019-02-11 07:16:09'),(293,308,NULL,NULL,'2019-02-11 07:16:10','2019-02-11 07:16:10'),(294,309,NULL,NULL,'2019-02-11 07:16:37','2019-02-11 07:16:37'),(295,310,NULL,NULL,'2019-02-11 07:16:37','2019-02-11 07:16:37'),(296,311,NULL,NULL,'2019-02-11 07:16:38','2019-02-11 07:16:38'),(297,312,NULL,NULL,'2019-02-11 07:17:32','2019-02-11 07:17:32'),(298,313,NULL,NULL,'2019-02-11 07:17:33','2019-02-11 07:17:33'),(299,314,NULL,NULL,'2019-02-11 07:17:33','2019-02-11 07:17:33'),(300,315,NULL,NULL,'2019-02-11 07:17:33','2019-02-11 07:17:33'),(301,316,NULL,NULL,'2019-02-11 07:24:31','2019-02-11 07:24:31'),(302,317,NULL,NULL,'2019-02-11 07:24:31','2019-02-11 07:24:31'),(303,318,NULL,NULL,'2019-02-11 07:24:59','2019-02-11 07:24:59'),(304,319,NULL,NULL,'2019-02-11 07:25:00','2019-02-11 07:25:00'),(305,320,NULL,NULL,'2019-02-11 07:25:00','2019-02-11 07:25:00'),(306,321,NULL,NULL,'2019-02-11 07:25:00','2019-02-11 07:25:00'),(307,322,NULL,NULL,'2019-02-11 07:25:23','2019-02-11 07:25:23'),(308,323,NULL,NULL,'2019-02-11 07:25:23','2019-02-11 07:25:23'),(309,324,NULL,NULL,'2019-02-11 07:25:23','2019-02-11 07:25:23'),(310,325,NULL,NULL,'2019-02-11 07:25:24','2019-02-11 07:25:24'),(311,326,NULL,NULL,'2019-02-11 07:25:24','2019-02-11 07:25:24'),(312,327,NULL,NULL,'2019-02-11 07:25:24','2019-02-11 07:25:24'),(313,328,NULL,NULL,'2019-02-11 07:25:54','2019-02-11 07:25:54'),(314,329,NULL,NULL,'2019-02-11 07:25:54','2019-02-11 07:25:54'),(315,330,NULL,NULL,'2019-02-11 07:26:13','2019-02-11 07:26:13'),(316,331,NULL,NULL,'2019-02-11 07:26:14','2019-02-11 07:26:14'),(317,332,NULL,NULL,'2019-02-11 07:26:14','2019-02-11 07:26:14'),(318,333,NULL,NULL,'2019-02-11 07:26:14','2019-02-11 07:26:14'),(319,334,NULL,NULL,'2019-02-11 07:26:41','2019-02-11 07:26:41'),(320,335,NULL,NULL,'2019-02-11 07:26:41','2019-02-11 07:26:41'),(321,336,NULL,NULL,'2019-02-11 07:26:42','2019-02-11 07:26:42'),(322,337,NULL,NULL,'2019-02-11 07:26:42','2019-02-11 07:26:42'),(323,338,NULL,NULL,'2019-02-11 07:27:05','2019-02-11 07:27:05'),(324,339,NULL,NULL,'2019-02-11 07:27:06','2019-02-11 07:27:06'),(325,340,NULL,NULL,'2019-02-11 07:27:06','2019-02-11 07:27:06'),(326,341,NULL,NULL,'2019-02-11 07:27:24','2019-02-11 07:27:24'),(327,342,NULL,NULL,'2019-02-11 07:27:24','2019-02-11 07:27:24'),(328,343,NULL,NULL,'2019-02-11 07:27:24','2019-02-11 07:27:24'),(329,344,NULL,NULL,'2019-02-11 07:27:25','2019-02-11 07:27:25'),(330,345,NULL,NULL,'2019-02-11 07:27:25','2019-02-11 07:27:25'),(331,346,NULL,NULL,'2019-02-11 07:28:07','2019-02-11 07:28:07'),(332,347,NULL,NULL,'2019-02-11 07:28:07','2019-02-11 07:28:07'),(333,348,NULL,NULL,'2019-02-11 07:28:07','2019-02-11 07:28:07'),(334,349,NULL,NULL,'2019-02-11 07:28:07','2019-02-11 07:28:07'),(335,350,NULL,NULL,'2019-02-11 07:28:40','2019-02-11 07:28:40'),(336,351,NULL,NULL,'2019-02-11 07:28:40','2019-02-11 07:28:40'),(337,352,NULL,NULL,'2019-02-11 07:28:41','2019-02-11 07:28:41'),(338,353,NULL,NULL,'2019-02-11 07:28:41','2019-02-11 07:28:41'),(339,354,NULL,NULL,'2019-02-11 07:30:27','2019-02-11 07:30:27'),(340,355,NULL,NULL,'2019-02-11 07:30:27','2019-02-11 07:30:27'),(341,356,NULL,NULL,'2019-02-11 07:30:28','2019-02-11 07:30:28'),(342,357,NULL,NULL,'2019-02-11 07:30:28','2019-02-11 07:30:28'),(343,358,NULL,NULL,'2019-02-11 07:31:00','2019-02-11 07:31:00'),(344,359,NULL,NULL,'2019-02-11 07:31:00','2019-02-11 07:31:00'),(345,360,NULL,NULL,'2019-02-11 07:31:00','2019-02-11 07:31:00'),(346,361,NULL,NULL,'2019-02-11 07:31:01','2019-02-11 07:31:01'),(347,362,NULL,NULL,'2019-02-11 07:31:01','2019-02-11 07:31:01'),(348,363,NULL,NULL,'2019-02-11 07:31:01','2019-02-11 07:31:01'),(349,364,NULL,NULL,'2019-02-11 07:31:30','2019-02-11 07:31:30'),(350,365,NULL,NULL,'2019-02-11 07:31:30','2019-02-11 07:31:30'),(351,366,NULL,NULL,'2019-02-11 07:31:31','2019-02-11 07:31:31'),(352,367,NULL,NULL,'2019-02-11 07:31:31','2019-02-11 07:31:31'),(353,368,NULL,NULL,'2019-02-11 07:31:58','2019-02-11 07:31:58'),(354,369,NULL,NULL,'2019-02-11 07:31:59','2019-02-11 07:31:59'),(355,370,NULL,NULL,'2019-02-11 07:31:59','2019-02-11 07:31:59'),(356,371,NULL,NULL,'2019-02-11 07:31:59','2019-02-11 07:31:59'),(357,372,NULL,NULL,'2019-02-11 07:31:59','2019-02-11 07:31:59'),(358,373,NULL,NULL,'2019-02-11 07:32:00','2019-02-11 07:32:00'),(359,374,NULL,NULL,'2019-02-11 07:32:00','2019-02-11 07:32:00'),(360,375,NULL,NULL,'2019-02-11 07:32:00','2019-02-11 07:32:00'),(361,376,NULL,NULL,'2019-02-11 07:33:28','2019-02-11 07:33:28'),(362,377,NULL,NULL,'2019-02-11 07:33:28','2019-02-11 07:33:28'),(363,378,NULL,NULL,'2019-02-11 07:33:28','2019-02-11 07:33:28'),(364,379,NULL,NULL,'2019-02-11 07:33:29','2019-02-11 07:33:29'),(365,380,NULL,NULL,'2019-02-11 07:34:02','2019-02-11 07:34:02'),(366,381,NULL,NULL,'2019-02-11 07:34:02','2019-02-11 07:34:02'),(367,382,NULL,NULL,'2019-02-11 07:34:03','2019-02-11 07:34:03'),(368,383,NULL,NULL,'2019-02-11 07:34:03','2019-02-11 07:34:03'),(369,384,NULL,NULL,'2019-02-11 07:34:03','2019-02-11 07:34:03'),(370,385,NULL,NULL,'2019-02-11 07:34:27','2019-02-11 07:34:27'),(371,386,NULL,NULL,'2019-02-11 07:34:28','2019-02-11 07:34:28'),(372,387,NULL,NULL,'2019-02-11 07:34:28','2019-02-11 07:34:28'),(373,388,NULL,NULL,'2019-02-11 07:34:58','2019-02-11 07:34:58'),(374,389,NULL,NULL,'2019-02-11 07:34:59','2019-02-11 07:34:59'),(375,390,NULL,NULL,'2019-02-11 07:34:59','2019-02-11 07:34:59'),(376,391,NULL,NULL,'2019-02-11 07:37:26','2019-02-11 07:37:26'),(377,392,NULL,NULL,'2019-02-11 07:37:26','2019-02-11 07:37:26'),(378,393,NULL,NULL,'2019-02-11 07:37:26','2019-02-11 07:37:26'),(379,394,NULL,NULL,'2019-02-11 07:38:02','2019-02-11 07:38:02'),(380,395,NULL,NULL,'2019-02-11 07:38:02','2019-02-11 07:38:02'),(381,396,NULL,NULL,'2019-02-11 07:38:02','2019-02-11 07:38:02'),(382,397,NULL,NULL,'2019-02-11 07:38:26','2019-02-11 07:38:26'),(383,398,NULL,NULL,'2019-02-11 07:38:27','2019-02-11 07:38:27'),(384,399,NULL,NULL,'2019-02-11 07:38:27','2019-02-11 07:38:27'),(385,400,NULL,NULL,'2019-02-11 07:38:27','2019-02-11 07:38:27'),(386,401,NULL,NULL,'2019-02-11 07:40:21','2019-02-11 07:40:21'),(387,402,NULL,NULL,'2019-02-11 07:40:22','2019-02-11 07:40:22'),(388,403,NULL,NULL,'2019-02-11 07:40:22','2019-02-11 07:40:22'),(389,404,NULL,NULL,'2019-02-11 07:40:22','2019-02-11 07:40:22'),(390,405,NULL,NULL,'2019-02-11 07:40:23','2019-02-11 07:40:23'),(391,406,NULL,NULL,'2019-02-11 07:40:23','2019-02-11 07:40:23'),(392,407,NULL,NULL,'2019-02-11 07:40:51','2019-02-11 07:40:51'),(393,408,NULL,NULL,'2019-02-11 07:40:51','2019-02-11 07:40:51'),(394,409,NULL,NULL,'2019-02-11 07:40:52','2019-02-11 07:40:52'),(395,410,NULL,NULL,'2019-02-11 07:40:52','2019-02-11 07:40:52'),(396,411,NULL,NULL,'2019-02-11 07:40:52','2019-02-11 07:40:52'),(397,412,NULL,NULL,'2019-02-11 07:41:15','2019-02-11 07:41:15'),(398,413,NULL,NULL,'2019-02-11 07:41:15','2019-02-11 07:41:15'),(399,414,NULL,NULL,'2019-02-11 07:41:16','2019-02-11 07:41:16'),(400,415,NULL,NULL,'2019-02-11 07:41:16','2019-02-11 07:41:16'),(401,416,NULL,NULL,'2019-02-11 07:41:49','2019-02-11 07:41:49'),(402,417,NULL,NULL,'2019-02-11 07:41:49','2019-02-11 07:41:49'),(403,418,NULL,NULL,'2019-02-11 07:41:50','2019-02-11 07:41:50'),(404,419,NULL,NULL,'2019-02-11 07:41:50','2019-02-11 07:41:50'),(405,420,NULL,NULL,'2019-02-11 07:41:50','2019-02-11 07:41:50'),(406,421,NULL,NULL,'2019-02-11 07:41:51','2019-02-11 07:41:51'),(407,422,NULL,NULL,'2019-02-11 07:41:51','2019-02-11 07:41:51'),(408,423,NULL,NULL,'2019-02-11 07:41:51','2019-02-11 07:41:51'),(409,424,NULL,NULL,'2019-02-11 07:41:52','2019-02-11 07:41:52'),(410,425,NULL,NULL,'2019-02-11 07:41:52','2019-02-11 07:41:52'),(411,426,NULL,NULL,'2019-02-11 07:42:16','2019-02-11 07:42:16'),(412,427,NULL,NULL,'2019-02-11 07:42:17','2019-02-11 07:42:17'),(413,428,NULL,NULL,'2019-02-11 07:42:17','2019-02-11 07:42:17'),(414,429,NULL,NULL,'2019-02-11 07:42:43','2019-02-11 07:42:43'),(415,430,NULL,NULL,'2019-02-11 07:42:43','2019-02-11 07:42:43'),(416,431,NULL,NULL,'2019-02-11 07:42:44','2019-02-11 07:42:44'),(417,432,NULL,NULL,'2019-02-11 07:42:44','2019-02-11 07:42:44'),(418,433,NULL,NULL,'2019-02-11 07:42:44','2019-02-11 07:42:44'),(419,434,NULL,NULL,'2019-02-11 07:42:44','2019-02-11 07:42:44'),(420,435,NULL,NULL,'2019-02-11 07:42:45','2019-02-11 07:42:45'),(421,436,NULL,NULL,'2019-02-11 07:42:45','2019-02-11 07:42:45'),(422,437,NULL,NULL,'2019-02-11 07:43:08','2019-02-11 07:43:08'),(423,438,NULL,NULL,'2019-02-11 07:43:09','2019-02-11 07:43:09'),(424,439,NULL,NULL,'2019-02-11 07:43:09','2019-02-11 07:43:09'),(425,440,NULL,NULL,'2019-02-11 07:43:41','2019-02-11 07:43:41'),(426,441,NULL,NULL,'2019-02-11 07:43:41','2019-02-11 07:43:41'),(427,442,NULL,NULL,'2019-02-11 07:43:42','2019-02-11 07:43:42'),(428,443,NULL,NULL,'2019-02-11 07:44:08','2019-02-11 07:44:08'),(429,444,NULL,NULL,'2019-02-11 07:44:08','2019-02-11 07:44:08'),(430,445,NULL,NULL,'2019-02-11 07:44:09','2019-02-11 07:44:09'),(431,446,NULL,NULL,'2019-02-11 07:44:09','2019-02-11 07:44:09'),(432,447,NULL,NULL,'2019-02-11 07:44:09','2019-02-11 07:44:09'),(433,448,NULL,NULL,'2019-02-11 07:44:10','2019-02-11 07:44:10'),(434,449,NULL,NULL,'2019-02-11 07:44:10','2019-02-11 07:44:10'),(435,450,NULL,NULL,'2019-02-11 07:44:10','2019-02-11 07:44:10'),(436,451,NULL,NULL,'2019-02-11 07:44:11','2019-02-11 07:44:11'),(437,452,NULL,NULL,'2019-02-11 07:44:11','2019-02-11 07:44:11'),(438,453,NULL,NULL,'2019-02-11 07:44:11','2019-02-11 07:44:11'),(439,454,NULL,NULL,'2019-02-11 07:44:11','2019-02-11 07:44:11'),(440,455,NULL,NULL,'2019-02-11 07:44:31','2019-02-11 07:44:31'),(441,456,NULL,NULL,'2019-02-11 07:44:31','2019-02-11 07:44:31'),(442,457,NULL,NULL,'2019-02-11 07:44:32','2019-02-11 07:44:32'),(443,458,NULL,NULL,'2019-02-11 07:45:00','2019-02-11 07:45:00'),(444,459,NULL,NULL,'2019-02-11 07:45:00','2019-02-11 07:45:00'),(445,460,NULL,NULL,'2019-02-11 07:45:00','2019-02-11 07:45:00'),(446,461,NULL,NULL,'2019-02-11 07:45:29','2019-02-11 07:45:29'),(447,462,NULL,NULL,'2019-02-11 07:45:29','2019-02-11 07:45:29'),(448,463,NULL,NULL,'2019-02-11 07:45:30','2019-02-11 07:45:30'),(449,464,NULL,NULL,'2019-02-11 07:45:30','2019-02-11 07:45:30'),(450,465,NULL,NULL,'2019-02-11 07:45:54','2019-02-11 07:45:54'),(451,466,NULL,NULL,'2019-02-11 07:45:55','2019-02-11 07:45:55'),(452,467,NULL,NULL,'2019-02-11 07:45:55','2019-02-11 07:45:55'),(453,468,NULL,NULL,'2019-02-11 07:46:18','2019-02-11 07:46:18'),(454,469,NULL,NULL,'2019-02-11 07:46:18','2019-02-11 07:46:18'),(455,470,NULL,NULL,'2019-02-11 07:46:19','2019-02-11 07:46:19'),(456,471,NULL,NULL,'2019-02-11 07:46:44','2019-02-11 07:46:44'),(457,472,NULL,NULL,'2019-02-11 07:46:44','2019-02-11 07:46:44'),(458,473,NULL,NULL,'2019-02-11 07:46:45','2019-02-11 07:46:45'),(459,474,NULL,NULL,'2019-02-11 07:46:45','2019-02-11 07:46:45'),(460,475,NULL,NULL,'2019-02-11 07:47:10','2019-02-11 07:47:10'),(461,476,NULL,NULL,'2019-02-11 07:47:10','2019-02-11 07:47:10'),(462,477,NULL,NULL,'2019-02-11 07:47:11','2019-02-11 07:47:11'),(463,478,NULL,NULL,'2019-02-11 07:47:34','2019-02-11 07:47:34'),(464,479,NULL,NULL,'2019-02-11 07:47:34','2019-02-11 07:47:34'),(465,480,NULL,NULL,'2019-02-11 07:47:35','2019-02-11 07:47:35'),(466,481,NULL,NULL,'2019-02-11 07:51:32','2019-02-11 07:51:32'),(467,482,NULL,NULL,'2019-02-11 07:51:32','2019-02-11 07:51:32'),(468,483,NULL,NULL,'2019-02-11 07:51:32','2019-02-11 07:51:32'),(469,484,NULL,NULL,'2019-02-11 07:51:33','2019-02-11 07:51:33'),(470,485,NULL,NULL,'2019-02-11 07:52:00','2019-02-11 07:52:00'),(471,486,NULL,NULL,'2019-02-11 07:52:00','2019-02-11 07:52:00'),(472,487,NULL,NULL,'2019-02-11 07:52:01','2019-02-11 07:52:01'),(473,488,NULL,NULL,'2019-02-11 07:52:30','2019-02-11 07:52:30'),(474,489,NULL,NULL,'2019-02-11 07:52:30','2019-02-11 07:52:30'),(475,490,NULL,NULL,'2019-02-11 07:52:30','2019-02-11 07:52:30'),(476,491,NULL,NULL,'2019-02-11 07:53:02','2019-02-11 07:53:02'),(477,492,NULL,NULL,'2019-02-11 07:53:02','2019-02-11 07:53:02'),(478,493,NULL,NULL,'2019-02-11 07:53:02','2019-02-11 07:53:02'),(479,494,NULL,NULL,'2019-02-11 07:53:03','2019-02-11 07:53:03'),(480,495,NULL,NULL,'2019-02-11 07:53:34','2019-02-11 07:53:34'),(481,496,NULL,NULL,'2019-02-11 07:53:35','2019-02-11 07:53:35'),(482,497,NULL,NULL,'2019-02-11 07:53:35','2019-02-11 07:53:35'),(483,498,NULL,NULL,'2019-02-11 07:54:12','2019-02-11 07:54:12'),(484,499,NULL,NULL,'2019-02-11 07:54:13','2019-02-11 07:54:13'),(485,500,NULL,NULL,'2019-02-11 07:54:13','2019-02-11 07:54:13'),(486,501,NULL,NULL,'2019-02-11 07:55:03','2019-02-11 07:55:03'),(487,502,NULL,NULL,'2019-02-11 07:55:04','2019-02-11 07:55:04'),(488,503,NULL,NULL,'2019-02-11 07:55:04','2019-02-11 07:55:04'),(489,504,NULL,NULL,'2019-02-11 07:55:13','2019-02-11 07:55:13'),(490,505,NULL,NULL,'2019-02-11 07:55:13','2019-02-11 07:55:13'),(491,506,NULL,NULL,'2019-02-11 07:55:13','2019-02-11 07:55:13'),(492,507,NULL,NULL,'2019-02-11 07:55:14','2019-02-11 07:55:14'),(493,508,NULL,NULL,'2019-02-11 07:55:14','2019-02-11 07:55:14'),(494,509,NULL,NULL,'2019-02-11 07:55:14','2019-02-11 07:55:14'),(495,510,NULL,NULL,'2019-02-11 07:55:35','2019-02-11 07:55:35'),(496,511,NULL,NULL,'2019-02-11 07:55:35','2019-02-11 07:55:35'),(497,512,NULL,NULL,'2019-02-11 07:55:35','2019-02-11 07:55:35'),(498,513,NULL,NULL,'2019-02-11 07:55:58','2019-02-11 07:55:58'),(499,514,NULL,NULL,'2019-02-11 07:55:58','2019-02-11 07:55:58'),(500,515,NULL,NULL,'2019-02-11 07:55:59','2019-02-11 07:55:59'),(501,516,NULL,NULL,'2019-02-11 07:56:30','2019-02-11 07:56:30'),(502,517,NULL,NULL,'2019-02-11 07:57:02','2019-02-11 07:57:02'),(503,518,NULL,NULL,'2019-02-11 07:57:02','2019-02-11 07:57:02'),(504,519,NULL,NULL,'2019-02-11 07:57:03','2019-02-11 07:57:03'),(505,520,NULL,NULL,'2019-02-11 07:57:37','2019-02-11 07:57:37'),(506,521,NULL,NULL,'2019-02-11 07:57:38','2019-02-11 07:57:38'),(507,522,NULL,NULL,'2019-02-11 07:57:38','2019-02-11 07:57:38'),(508,523,NULL,NULL,'2019-02-11 07:58:06','2019-02-11 07:58:06'),(509,524,NULL,NULL,'2019-02-11 07:58:31','2019-02-11 07:58:31'),(510,525,NULL,NULL,'2019-02-11 07:58:32','2019-02-11 07:58:32'),(511,526,NULL,NULL,'2019-02-11 07:58:32','2019-02-11 07:58:32'),(512,527,NULL,NULL,'2019-02-11 07:59:07','2019-02-11 07:59:07'),(513,528,NULL,NULL,'2019-02-11 07:59:34','2019-02-11 07:59:34'),(514,529,NULL,NULL,'2019-02-11 07:59:34','2019-02-11 07:59:34'),(515,530,NULL,NULL,'2019-02-11 07:59:35','2019-02-11 07:59:35'),(516,531,NULL,NULL,'2019-02-11 08:00:00','2019-02-11 08:00:00'),(517,532,NULL,NULL,'2019-02-11 08:00:25','2019-02-11 08:00:25'),(518,533,NULL,NULL,'2019-02-11 08:00:25','2019-02-11 08:00:25'),(519,534,NULL,NULL,'2019-02-11 08:00:25','2019-02-11 08:00:25'),(520,535,NULL,NULL,'2019-02-11 08:00:44','2019-02-11 08:00:44'),(521,536,NULL,NULL,'2019-02-11 08:00:44','2019-02-11 08:00:44'),(522,537,NULL,NULL,'2019-02-11 08:00:45','2019-02-11 08:00:45'),(523,538,NULL,NULL,'2019-02-11 08:01:25','2019-02-11 08:01:25'),(524,539,NULL,NULL,'2019-02-11 08:01:25','2019-02-11 08:01:25'),(525,540,NULL,NULL,'2019-02-11 08:01:26','2019-02-11 08:01:26'),(526,541,NULL,NULL,'2019-02-11 08:01:41','2019-02-11 08:01:41'),(527,542,NULL,NULL,'2019-02-11 08:02:02','2019-02-11 08:02:02'),(528,543,NULL,NULL,'2019-02-11 08:02:02','2019-02-11 08:02:02'),(529,544,NULL,NULL,'2019-02-11 08:02:24','2019-02-11 08:02:24'),(530,545,NULL,NULL,'2019-02-11 08:02:42','2019-02-11 08:02:42'),(531,546,NULL,NULL,'2019-02-11 08:03:10','2019-02-11 08:03:10'),(532,547,NULL,NULL,'2019-02-11 08:03:25','2019-02-11 08:03:25'),(533,548,NULL,NULL,'2019-02-11 08:03:46','2019-02-11 08:03:46'),(534,549,NULL,NULL,'2019-02-27 11:04:36','2019-02-27 11:04:36'),(535,550,NULL,NULL,'2019-02-27 11:04:40','2019-02-27 11:04:40'),(536,551,NULL,NULL,'2019-02-27 11:04:42','2019-02-27 11:04:42'),(537,552,NULL,NULL,'2019-02-27 11:04:43','2019-02-27 11:04:43'),(538,553,NULL,NULL,'2019-02-27 11:04:45','2019-02-27 11:04:45'),(539,554,NULL,NULL,'2019-02-27 11:04:47','2019-02-27 11:04:47'),(540,555,NULL,NULL,'2019-02-27 11:04:49','2019-02-27 11:04:49'),(541,556,NULL,NULL,'2019-02-27 11:04:51','2019-02-27 11:04:51'),(542,557,NULL,NULL,'2019-02-27 11:04:53','2019-02-27 11:04:53'),(543,558,NULL,NULL,'2019-02-27 11:04:55','2019-02-27 11:04:55'),(544,559,NULL,NULL,'2019-02-27 11:04:57','2019-02-27 11:04:57'),(545,560,NULL,NULL,'2019-02-27 11:04:59','2019-02-27 11:04:59'),(546,561,NULL,NULL,'2019-02-27 11:05:01','2019-02-27 11:05:01'),(547,562,NULL,NULL,'2019-02-27 11:05:03','2019-02-27 11:05:03'),(548,563,NULL,NULL,'2019-02-27 11:05:04','2019-02-27 11:05:04'),(549,564,NULL,NULL,'2019-02-27 11:05:06','2019-02-27 11:05:06'),(550,565,NULL,NULL,'2019-02-27 11:05:08','2019-02-27 11:05:08'),(551,566,NULL,NULL,'2019-02-27 11:05:10','2019-02-27 11:05:10'),(552,567,NULL,NULL,'2019-02-27 11:05:12','2019-02-27 11:05:12'),(553,568,NULL,NULL,'2019-02-27 11:05:14','2019-02-27 11:05:14'),(554,569,NULL,NULL,'2019-02-27 11:05:16','2019-02-27 11:05:16'),(555,570,NULL,NULL,'2019-02-27 11:05:18','2019-02-27 11:05:18'),(556,571,NULL,NULL,'2019-02-27 11:05:20','2019-02-27 11:05:20'),(557,572,NULL,NULL,'2019-02-27 11:05:22','2019-02-27 11:05:22'),(558,573,NULL,NULL,'2019-02-27 11:05:24','2019-02-27 11:05:24'),(559,574,NULL,NULL,'2019-02-27 11:05:26','2019-02-27 11:05:26'),(560,575,NULL,NULL,'2019-02-27 11:05:28','2019-02-27 11:05:28'),(561,576,NULL,NULL,'2019-02-27 11:05:30','2019-02-27 11:05:30'),(562,577,NULL,NULL,'2019-02-27 11:05:32','2019-02-27 11:05:32'),(563,578,NULL,NULL,'2019-02-27 11:05:34','2019-02-27 11:05:34'),(564,579,NULL,NULL,'2019-02-27 11:29:24','2019-02-27 11:29:24'),(565,580,NULL,NULL,'2019-02-27 11:29:28','2019-02-27 11:29:28'),(566,581,NULL,NULL,'2019-02-27 11:29:32','2019-02-27 11:29:32'),(567,582,NULL,NULL,'2019-02-27 11:29:35','2019-02-27 11:29:35'),(568,583,NULL,NULL,'2019-02-27 11:29:39','2019-02-27 11:29:39'),(569,584,NULL,NULL,'2019-02-27 11:29:42','2019-02-27 11:29:42'),(570,585,NULL,NULL,'2019-02-27 11:29:46','2019-02-27 11:29:46'),(571,586,NULL,NULL,'2019-02-27 11:29:50','2019-02-27 11:29:50'),(572,587,NULL,NULL,'2019-02-27 11:29:53','2019-02-27 11:29:53'),(573,588,NULL,NULL,'2019-02-27 11:29:56','2019-02-27 11:29:56'),(574,589,NULL,NULL,'2019-02-27 11:29:59','2019-02-27 11:29:59'),(575,590,NULL,NULL,'2019-02-27 11:30:03','2019-02-27 11:30:03'),(576,591,NULL,NULL,'2019-02-27 11:30:06','2019-02-27 11:30:06'),(577,592,NULL,NULL,'2019-02-27 11:30:09','2019-02-27 11:30:09'),(578,593,NULL,NULL,'2019-02-27 11:30:13','2019-02-27 11:30:13'),(579,594,NULL,NULL,'2019-02-27 11:30:16','2019-02-27 11:30:16'),(580,595,NULL,NULL,'2019-02-27 11:30:20','2019-02-27 11:30:20'),(581,596,NULL,NULL,'2019-02-27 11:30:23','2019-02-27 11:30:23'),(582,597,NULL,NULL,'2019-02-27 11:30:27','2019-02-27 11:30:27'),(583,598,NULL,NULL,'2019-02-27 11:30:30','2019-02-27 11:30:30'),(584,599,NULL,NULL,'2019-02-27 11:30:34','2019-02-27 11:30:34'),(585,600,NULL,NULL,'2019-02-27 11:30:37','2019-02-27 11:30:37'),(586,601,NULL,NULL,'2019-02-27 11:30:41','2019-02-27 11:30:41'),(587,602,NULL,NULL,'2019-02-27 11:30:44','2019-02-27 11:30:44'),(588,603,NULL,NULL,'2019-02-27 11:30:48','2019-02-27 11:30:48'),(589,604,NULL,NULL,'2019-02-27 11:30:52','2019-02-27 11:30:52'),(590,605,NULL,NULL,'2019-02-27 11:30:55','2019-02-27 11:30:55'),(591,606,NULL,NULL,'2019-02-27 11:30:59','2019-02-27 11:30:59'),(592,607,NULL,NULL,'2019-02-27 11:31:03','2019-02-27 11:31:03'),(593,608,NULL,NULL,'2019-02-27 11:31:06','2019-02-27 11:31:06'),(594,609,NULL,NULL,'2019-02-27 11:31:10','2019-02-27 11:31:10'),(595,610,NULL,NULL,'2019-02-27 11:31:14','2019-02-27 11:31:14'),(596,611,NULL,NULL,'2019-02-27 11:31:17','2019-02-27 11:31:17'),(597,612,NULL,NULL,'2019-02-27 11:31:21','2019-02-27 11:31:21'),(598,613,NULL,NULL,'2019-02-27 11:31:24','2019-02-27 11:31:24'),(599,614,NULL,NULL,'2019-02-27 12:22:12','2019-02-27 12:22:12'),(600,615,NULL,NULL,'2019-02-27 12:22:14','2019-02-27 12:22:14'),(601,616,NULL,NULL,'2019-02-27 12:22:16','2019-02-27 12:22:16'),(602,617,NULL,NULL,'2019-02-27 12:22:17','2019-02-27 12:22:17'),(603,618,NULL,NULL,'2019-02-27 12:22:19','2019-02-27 12:22:19'),(604,619,NULL,NULL,'2019-02-27 12:22:20','2019-02-27 12:22:20'),(605,620,NULL,NULL,'2019-02-27 12:22:22','2019-02-27 12:22:22'),(606,621,NULL,NULL,'2019-02-27 12:22:23','2019-02-27 12:22:23'),(607,622,NULL,NULL,'2019-02-27 12:22:24','2019-02-27 12:22:24'),(608,623,NULL,NULL,'2019-02-27 12:22:26','2019-02-27 12:22:26'),(609,624,NULL,NULL,'2019-02-27 12:22:27','2019-02-27 12:22:27'),(610,625,NULL,NULL,'2019-02-27 12:22:29','2019-02-27 12:22:29'),(611,626,NULL,NULL,'2019-02-27 12:22:30','2019-02-27 12:22:30'),(612,627,NULL,NULL,'2019-02-27 12:22:32','2019-02-27 12:22:32'),(613,628,NULL,NULL,'2019-02-27 12:22:33','2019-02-27 12:22:33'),(614,629,NULL,NULL,'2019-02-27 12:22:35','2019-02-27 12:22:35'),(615,630,NULL,NULL,'2019-02-27 12:22:36','2019-02-27 12:22:36'),(616,631,NULL,NULL,'2019-02-27 12:22:38','2019-02-27 12:22:38'),(617,632,NULL,NULL,'2019-02-27 12:22:39','2019-02-27 12:22:39'),(618,633,NULL,NULL,'2019-02-27 12:22:41','2019-02-27 12:22:41'),(619,634,NULL,NULL,'2019-02-27 12:22:42','2019-02-27 12:22:42'),(620,635,NULL,NULL,'2019-02-27 12:22:44','2019-02-27 12:22:44'),(621,636,NULL,NULL,'2019-02-27 12:22:45','2019-02-27 12:22:45'),(622,637,NULL,NULL,'2019-02-27 12:22:47','2019-02-27 12:22:47'),(623,638,NULL,NULL,'2019-02-27 12:22:48','2019-02-27 12:22:48'),(624,639,NULL,NULL,'2019-02-27 12:22:50','2019-02-27 12:22:50'),(625,640,NULL,NULL,'2019-02-27 12:22:51','2019-02-27 12:22:51'),(626,641,NULL,NULL,'2019-02-27 12:22:53','2019-02-27 12:22:53'),(627,642,NULL,NULL,'2019-02-27 12:22:54','2019-02-27 12:22:54'),(628,643,NULL,NULL,'2019-02-27 12:22:56','2019-02-27 12:22:56'),(629,644,NULL,NULL,'2019-02-27 12:33:22','2019-02-27 12:33:22'),(630,645,NULL,NULL,'2019-02-27 12:33:24','2019-02-27 12:33:24'),(631,646,NULL,NULL,'2019-02-27 12:33:26','2019-02-27 12:33:26'),(632,647,NULL,NULL,'2019-02-27 12:33:28','2019-02-27 12:33:28'),(633,648,NULL,NULL,'2019-02-27 12:33:30','2019-02-27 12:33:30'),(634,649,NULL,NULL,'2019-02-27 12:33:32','2019-02-27 12:33:32'),(635,650,NULL,NULL,'2019-02-27 12:33:34','2019-02-27 12:33:34'),(636,651,NULL,NULL,'2019-02-27 12:33:36','2019-02-27 12:33:36'),(637,652,NULL,NULL,'2019-02-27 12:33:38','2019-02-27 12:33:38'),(638,653,NULL,NULL,'2019-02-27 12:33:40','2019-02-27 12:33:40'),(639,654,NULL,NULL,'2019-02-27 12:33:42','2019-02-27 12:33:42'),(640,655,NULL,NULL,'2019-02-27 12:33:44','2019-02-27 12:33:44'),(641,656,NULL,NULL,'2019-02-27 12:33:46','2019-02-27 12:33:46'),(642,657,NULL,NULL,'2019-02-27 12:33:48','2019-02-27 12:33:48'),(643,658,NULL,NULL,'2019-02-27 12:33:50','2019-02-27 12:33:50'),(644,659,NULL,NULL,'2019-02-27 12:33:51','2019-02-27 12:33:51'),(645,660,NULL,NULL,'2019-02-27 12:33:53','2019-02-27 12:33:53'),(646,661,NULL,NULL,'2019-02-27 12:33:55','2019-02-27 12:33:55'),(647,662,NULL,NULL,'2019-02-27 12:33:57','2019-02-27 12:33:57'),(648,663,NULL,NULL,'2019-02-27 12:33:59','2019-02-27 12:33:59'),(649,664,NULL,NULL,'2019-02-27 12:34:01','2019-02-27 12:34:01'),(650,665,NULL,NULL,'2019-02-27 12:34:03','2019-02-27 12:34:03'),(651,666,NULL,NULL,'2019-02-27 12:34:05','2019-02-27 12:34:05'),(652,667,NULL,NULL,'2019-02-27 12:34:07','2019-02-27 12:34:07'),(653,668,NULL,NULL,'2019-02-27 12:34:09','2019-02-27 12:34:09'),(654,669,NULL,NULL,'2019-02-27 12:34:11','2019-02-27 12:34:11'),(655,670,NULL,NULL,'2019-02-27 12:34:13','2019-02-27 12:34:13'),(656,671,NULL,NULL,'2019-02-27 12:34:15','2019-02-27 12:34:15'),(657,672,NULL,NULL,'2019-02-27 12:34:17','2019-02-27 12:34:17'),(658,673,NULL,NULL,'2019-02-27 12:34:19','2019-02-27 12:34:19'),(659,674,NULL,NULL,'2019-02-27 12:51:21','2019-02-27 12:51:21'),(660,675,NULL,NULL,'2019-02-27 12:51:23','2019-02-27 12:51:23'),(661,676,NULL,NULL,'2019-02-27 12:51:25','2019-02-27 12:51:25'),(662,677,NULL,NULL,'2019-02-27 12:51:27','2019-02-27 12:51:27'),(663,678,NULL,NULL,'2019-02-27 12:51:29','2019-02-27 12:51:29'),(664,679,NULL,NULL,'2019-02-27 12:51:31','2019-02-27 12:51:31'),(665,680,NULL,NULL,'2019-02-27 12:51:33','2019-02-27 12:51:33'),(666,681,NULL,NULL,'2019-02-27 12:51:35','2019-02-27 12:51:35'),(667,682,NULL,NULL,'2019-02-27 12:51:37','2019-02-27 12:51:37'),(668,683,NULL,NULL,'2019-02-27 12:51:39','2019-02-27 12:51:39'),(669,684,NULL,NULL,'2019-02-27 12:51:41','2019-02-27 12:51:41'),(670,685,NULL,NULL,'2019-02-27 12:51:43','2019-02-27 12:51:43'),(671,686,NULL,NULL,'2019-02-27 12:51:45','2019-02-27 12:51:45'),(672,687,NULL,NULL,'2019-02-27 12:51:47','2019-02-27 12:51:47'),(673,688,NULL,NULL,'2019-02-27 12:51:48','2019-02-27 12:51:48'),(674,689,NULL,NULL,'2019-02-27 12:51:50','2019-02-27 12:51:50'),(675,690,NULL,NULL,'2019-02-27 12:51:52','2019-02-27 12:51:52'),(676,691,NULL,NULL,'2019-02-27 12:51:54','2019-02-27 12:51:54'),(677,692,NULL,NULL,'2019-02-27 12:51:56','2019-02-27 12:51:56'),(678,693,NULL,NULL,'2019-02-27 12:51:58','2019-02-27 12:51:58'),(679,694,NULL,NULL,'2019-02-27 12:52:00','2019-02-27 12:52:00'),(680,695,NULL,NULL,'2019-02-27 12:52:02','2019-02-27 12:52:02'),(681,696,NULL,NULL,'2019-02-27 12:52:04','2019-02-27 12:52:04'),(682,697,NULL,NULL,'2019-02-27 12:52:06','2019-02-27 12:52:06'),(683,698,NULL,NULL,'2019-02-27 12:52:08','2019-02-27 12:52:08'),(684,699,NULL,NULL,'2019-02-28 15:45:13','2019-02-28 15:45:13'),(685,700,NULL,NULL,'2019-02-28 15:45:15','2019-02-28 15:45:15'),(686,701,NULL,NULL,'2019-02-28 15:45:17','2019-02-28 15:45:17'),(687,702,NULL,NULL,'2019-02-28 15:45:19','2019-02-28 15:45:19'),(688,703,NULL,NULL,'2019-02-28 15:45:21','2019-02-28 15:45:21'),(689,704,NULL,NULL,'2019-02-28 15:45:23','2019-02-28 15:45:23'),(690,705,NULL,NULL,'2019-02-28 15:45:25','2019-02-28 15:45:25'),(691,706,NULL,NULL,'2019-02-28 15:45:27','2019-02-28 15:45:27'),(692,707,NULL,NULL,'2019-02-28 15:45:29','2019-02-28 15:45:29'),(693,708,NULL,NULL,'2019-02-28 15:45:31','2019-02-28 15:45:31'),(694,709,NULL,NULL,'2019-02-28 15:45:33','2019-02-28 15:45:33'),(695,710,NULL,NULL,'2019-02-28 15:45:35','2019-02-28 15:45:35'),(696,711,NULL,NULL,'2019-02-28 15:45:37','2019-02-28 15:45:37'),(697,712,NULL,NULL,'2019-02-28 15:45:39','2019-02-28 15:45:39'),(698,713,NULL,NULL,'2019-02-28 15:45:41','2019-02-28 15:45:41'),(699,714,NULL,NULL,'2019-02-28 16:06:54','2019-02-28 16:06:54'),(700,715,NULL,NULL,'2019-02-28 16:06:56','2019-02-28 16:06:56'),(701,716,NULL,NULL,'2019-02-28 16:06:58','2019-02-28 16:06:58'),(702,717,NULL,NULL,'2019-02-28 16:06:59','2019-02-28 16:06:59'),(703,718,NULL,NULL,'2019-02-28 16:07:01','2019-02-28 16:07:01'),(704,719,NULL,NULL,'2019-02-28 16:07:03','2019-02-28 16:07:03'),(705,720,NULL,NULL,'2019-02-28 16:07:04','2019-02-28 16:07:04'),(706,721,NULL,NULL,'2019-02-28 16:07:06','2019-02-28 16:07:06'),(707,722,NULL,NULL,'2019-02-28 16:07:07','2019-02-28 16:07:07'),(708,723,NULL,NULL,'2019-02-28 16:07:09','2019-02-28 16:07:09'),(709,724,NULL,NULL,'2019-02-28 16:07:10','2019-02-28 16:07:10'),(710,725,NULL,NULL,'2019-02-28 16:07:12','2019-02-28 16:07:12'),(711,726,NULL,NULL,'2019-02-28 16:07:13','2019-02-28 16:07:13'),(712,727,NULL,NULL,'2019-02-28 16:07:15','2019-02-28 16:07:15'),(713,728,NULL,NULL,'2019-02-28 16:07:16','2019-02-28 16:07:16'),(714,729,NULL,NULL,'2019-02-28 16:07:18','2019-02-28 16:07:18'),(715,730,NULL,NULL,'2019-02-28 16:07:19','2019-02-28 16:07:19'),(716,731,NULL,NULL,'2019-02-28 16:07:21','2019-02-28 16:07:21'),(717,732,NULL,NULL,'2019-02-28 16:07:23','2019-02-28 16:07:23'),(718,733,NULL,NULL,'2019-02-28 16:07:24','2019-02-28 16:07:24'),(719,734,NULL,NULL,'2019-02-28 17:09:20','2019-02-28 17:09:20'),(720,735,NULL,NULL,'2019-02-28 17:09:22','2019-02-28 17:09:22'),(721,736,NULL,NULL,'2019-02-28 17:09:23','2019-02-28 17:09:23'),(722,737,NULL,NULL,'2019-02-28 17:09:25','2019-02-28 17:09:25'),(723,738,NULL,NULL,'2019-02-28 17:09:26','2019-02-28 17:09:26'),(724,739,NULL,NULL,'2019-02-28 17:09:28','2019-02-28 17:09:28'),(725,740,NULL,NULL,'2019-02-28 17:09:29','2019-02-28 17:09:29'),(726,741,NULL,NULL,'2019-02-28 17:09:31','2019-02-28 17:09:31'),(727,742,NULL,NULL,'2019-02-28 17:09:32','2019-02-28 17:09:32'),(728,743,NULL,NULL,'2019-02-28 17:09:34','2019-02-28 17:09:34'),(729,744,NULL,NULL,'2019-02-28 17:09:36','2019-02-28 17:09:36'),(730,745,NULL,NULL,'2019-02-28 17:09:37','2019-02-28 17:09:37'),(731,746,NULL,NULL,'2019-02-28 17:09:39','2019-02-28 17:09:39'),(732,747,NULL,NULL,'2019-02-28 17:09:40','2019-02-28 17:09:40'),(733,748,NULL,NULL,'2019-02-28 17:09:42','2019-02-28 17:09:42'),(734,749,NULL,NULL,'2019-02-28 17:21:29','2019-02-28 17:21:29'),(735,750,NULL,NULL,'2019-02-28 17:21:30','2019-02-28 17:21:30'),(736,751,NULL,NULL,'2019-02-28 17:21:32','2019-02-28 17:21:32'),(737,752,NULL,NULL,'2019-02-28 17:21:33','2019-02-28 17:21:33'),(738,753,NULL,NULL,'2019-02-28 17:21:35','2019-02-28 17:21:35'),(739,754,NULL,NULL,'2019-02-28 17:21:36','2019-02-28 17:21:36'),(740,755,NULL,NULL,'2019-02-28 17:21:38','2019-02-28 17:21:38'),(741,756,NULL,NULL,'2019-02-28 17:21:39','2019-02-28 17:21:39'),(742,757,NULL,NULL,'2019-02-28 17:21:41','2019-02-28 17:21:41'),(743,758,NULL,NULL,'2019-02-28 17:21:43','2019-02-28 17:21:43'),(744,759,NULL,NULL,'2019-02-28 17:21:44','2019-02-28 17:21:44'),(745,760,NULL,NULL,'2019-02-28 17:21:46','2019-02-28 17:21:46'),(746,761,NULL,NULL,'2019-02-28 17:21:47','2019-02-28 17:21:47'),(747,762,NULL,NULL,'2019-02-28 17:21:49','2019-02-28 17:21:49'),(748,763,NULL,NULL,'2019-02-28 17:21:50','2019-02-28 17:21:50'),(749,764,NULL,NULL,'2019-02-28 17:21:52','2019-02-28 17:21:52'),(750,765,NULL,NULL,'2019-02-28 17:21:53','2019-02-28 17:21:53'),(751,766,NULL,NULL,'2019-02-28 17:21:55','2019-02-28 17:21:55'),(752,767,NULL,NULL,'2019-02-28 17:21:56','2019-02-28 17:21:56'),(753,768,NULL,NULL,'2019-02-28 17:21:58','2019-02-28 17:21:58'),(754,769,NULL,NULL,'2019-02-28 17:44:17','2019-02-28 17:44:17'),(755,770,NULL,NULL,'2019-02-28 17:44:19','2019-02-28 17:44:19'),(756,771,NULL,NULL,'2019-02-28 17:44:21','2019-02-28 17:44:21'),(757,772,NULL,NULL,'2019-02-28 17:44:23','2019-02-28 17:44:23'),(758,773,NULL,NULL,'2019-02-28 17:44:24','2019-02-28 17:44:24'),(759,774,NULL,NULL,'2019-02-28 17:44:26','2019-02-28 17:44:26'),(760,775,NULL,NULL,'2019-02-28 17:44:27','2019-02-28 17:44:27'),(761,776,NULL,NULL,'2019-02-28 17:44:29','2019-02-28 17:44:29'),(762,777,NULL,NULL,'2019-02-28 17:44:30','2019-02-28 17:44:30'),(763,778,NULL,NULL,'2019-02-28 17:44:32','2019-02-28 17:44:32'),(764,779,NULL,NULL,'2019-02-28 17:44:33','2019-02-28 17:44:33'),(765,780,NULL,NULL,'2019-02-28 17:44:35','2019-02-28 17:44:35'),(766,781,NULL,NULL,'2019-02-28 17:44:37','2019-02-28 17:44:37'),(767,782,NULL,NULL,'2019-02-28 17:44:38','2019-02-28 17:44:38'),(768,783,NULL,NULL,'2019-02-28 17:44:40','2019-02-28 17:44:40'),(769,784,NULL,NULL,'2019-02-28 17:44:41','2019-02-28 17:44:41'),(770,785,NULL,NULL,'2019-02-28 17:44:43','2019-02-28 17:44:43'),(771,786,NULL,NULL,'2019-02-28 17:44:44','2019-02-28 17:44:44'),(772,787,NULL,NULL,'2019-02-28 17:44:46','2019-02-28 17:44:46'),(773,788,NULL,NULL,'2019-02-28 17:44:47','2019-02-28 17:44:47'),(774,789,NULL,NULL,'2019-02-28 18:10:57','2019-02-28 18:10:57'),(775,790,NULL,NULL,'2019-02-28 18:10:58','2019-02-28 18:10:58'),(776,791,NULL,NULL,'2019-02-28 18:11:00','2019-02-28 18:11:00'),(777,792,NULL,NULL,'2019-02-28 18:11:01','2019-02-28 18:11:01'),(778,793,NULL,NULL,'2019-02-28 18:11:03','2019-02-28 18:11:03'),(779,794,NULL,NULL,'2019-02-28 18:11:04','2019-02-28 18:11:04'),(780,795,NULL,NULL,'2019-02-28 18:11:06','2019-02-28 18:11:06'),(781,796,NULL,NULL,'2019-02-28 18:11:07','2019-02-28 18:11:07'),(782,797,NULL,NULL,'2019-02-28 18:11:09','2019-02-28 18:11:09'),(783,798,NULL,NULL,'2019-02-28 18:11:10','2019-02-28 18:11:10'),(784,799,NULL,NULL,'2019-02-28 18:11:12','2019-02-28 18:11:12'),(785,800,NULL,NULL,'2019-02-28 18:11:13','2019-02-28 18:11:13'),(786,801,NULL,NULL,'2019-02-28 18:11:15','2019-02-28 18:11:15'),(787,802,NULL,NULL,'2019-02-28 18:11:16','2019-02-28 18:11:16'),(788,803,NULL,NULL,'2019-02-28 18:11:18','2019-02-28 18:11:18'),(789,804,NULL,NULL,'2019-02-28 18:56:45','2019-02-28 18:56:45'),(790,805,NULL,NULL,'2019-02-28 18:56:47','2019-02-28 18:56:47'),(791,806,NULL,NULL,'2019-02-28 18:56:48','2019-02-28 18:56:48'),(792,807,NULL,NULL,'2019-02-28 18:56:50','2019-02-28 18:56:50'),(793,808,NULL,NULL,'2019-02-28 18:56:51','2019-02-28 18:56:51'),(794,809,NULL,NULL,'2019-02-28 18:56:53','2019-02-28 18:56:53'),(795,810,NULL,NULL,'2019-02-28 18:56:54','2019-02-28 18:56:54'),(796,811,NULL,NULL,'2019-02-28 18:56:56','2019-02-28 18:56:56'),(797,812,NULL,NULL,'2019-02-28 18:56:57','2019-02-28 18:56:57'),(798,813,NULL,NULL,'2019-02-28 18:56:59','2019-02-28 18:56:59'),(799,814,NULL,NULL,'2019-02-28 18:57:01','2019-02-28 18:57:01'),(800,815,NULL,NULL,'2019-02-28 18:57:02','2019-02-28 18:57:02'),(801,816,NULL,NULL,'2019-02-28 18:57:04','2019-02-28 18:57:04'),(802,817,NULL,NULL,'2019-02-28 18:57:05','2019-02-28 18:57:05'),(803,818,NULL,NULL,'2019-02-28 18:57:07','2019-02-28 18:57:07'),(804,819,NULL,NULL,'2019-02-28 18:57:08','2019-02-28 18:57:08'),(805,820,NULL,NULL,'2019-02-28 18:57:10','2019-02-28 18:57:10'),(806,821,NULL,NULL,'2019-02-28 18:57:11','2019-02-28 18:57:11'),(807,822,NULL,NULL,'2019-02-28 18:57:13','2019-02-28 18:57:13'),(808,823,NULL,NULL,'2019-02-28 18:57:14','2019-02-28 18:57:14'),(809,824,NULL,NULL,'2019-03-01 07:00:48','2019-03-01 07:00:48'),(810,825,NULL,NULL,'2019-03-01 07:00:52','2019-03-01 07:00:52'),(811,826,NULL,NULL,'2019-03-01 07:00:56','2019-03-01 07:00:56'),(812,827,NULL,NULL,'2019-03-01 07:01:00','2019-03-01 07:01:00'),(813,828,NULL,NULL,'2019-03-01 07:01:04','2019-03-01 07:01:04'),(814,829,NULL,NULL,'2019-03-01 07:01:08','2019-03-01 07:01:08'),(815,830,NULL,NULL,'2019-03-01 07:01:12','2019-03-01 07:01:12'),(816,831,NULL,NULL,'2019-03-01 07:01:16','2019-03-01 07:01:16'),(817,832,NULL,NULL,'2019-03-01 07:01:19','2019-03-01 07:01:19'),(818,833,NULL,NULL,'2019-03-01 07:01:23','2019-03-01 07:01:23'),(819,834,NULL,NULL,'2019-03-01 07:01:27','2019-03-01 07:01:27'),(820,835,NULL,NULL,'2019-03-01 07:01:31','2019-03-01 07:01:31'),(821,836,NULL,NULL,'2019-03-01 07:01:35','2019-03-01 07:01:35'),(822,837,NULL,NULL,'2019-03-01 07:01:39','2019-03-01 07:01:39'),(823,838,NULL,NULL,'2019-03-01 07:01:43','2019-03-01 07:01:43'),(824,839,NULL,NULL,'2019-03-01 07:01:47','2019-03-01 07:01:47'),(825,840,NULL,NULL,'2019-03-01 07:01:51','2019-03-01 07:01:51'),(826,841,NULL,NULL,'2019-03-01 07:01:55','2019-03-01 07:01:55'),(827,842,NULL,NULL,'2019-03-01 07:01:59','2019-03-01 07:01:59'),(828,843,NULL,NULL,'2019-03-01 07:02:03','2019-03-01 07:02:03'),(829,844,NULL,NULL,'2019-03-01 08:21:21','2019-03-01 08:21:21'),(830,845,NULL,NULL,'2019-03-01 08:21:25','2019-03-01 08:21:25'),(831,846,NULL,NULL,'2019-03-01 08:21:27','2019-03-01 08:21:27'),(832,847,NULL,NULL,'2019-03-01 08:21:30','2019-03-01 08:21:30'),(833,848,NULL,NULL,'2019-03-01 08:21:33','2019-03-01 08:21:33'),(834,849,NULL,NULL,'2019-03-01 08:21:36','2019-03-01 08:21:36'),(835,850,NULL,NULL,'2019-03-01 08:21:38','2019-03-01 08:21:38'),(836,851,NULL,NULL,'2019-03-01 08:21:41','2019-03-01 08:21:41'),(837,852,NULL,NULL,'2019-03-01 08:21:44','2019-03-01 08:21:44'),(838,853,NULL,NULL,'2019-03-01 08:21:47','2019-03-01 08:21:47'),(839,854,NULL,NULL,'2019-03-01 08:21:49','2019-03-01 08:21:49'),(840,855,NULL,NULL,'2019-03-01 08:21:52','2019-03-01 08:21:52'),(841,856,NULL,NULL,'2019-03-01 08:21:55','2019-03-01 08:21:55'),(842,857,NULL,NULL,'2019-03-01 08:21:58','2019-03-01 08:21:58'),(843,858,NULL,NULL,'2019-03-01 08:22:00','2019-03-01 08:22:00'),(844,859,NULL,NULL,'2019-03-01 08:22:03','2019-03-01 08:22:03'),(845,860,NULL,NULL,'2019-03-01 08:22:06','2019-03-01 08:22:06'),(846,861,NULL,NULL,'2019-03-01 08:22:10','2019-03-01 08:22:10'),(847,862,NULL,NULL,'2019-03-01 08:22:14','2019-03-01 08:22:14'),(848,863,NULL,NULL,'2019-03-01 08:22:16','2019-03-01 08:22:16'),(849,864,NULL,NULL,'2019-03-01 08:56:58','2019-03-01 08:56:58'),(850,865,NULL,NULL,'2019-03-01 08:57:00','2019-03-01 08:57:00'),(851,866,NULL,NULL,'2019-03-01 08:57:02','2019-03-01 08:57:02'),(852,867,NULL,NULL,'2019-03-01 08:57:03','2019-03-01 08:57:03'),(853,868,NULL,NULL,'2019-03-01 08:57:05','2019-03-01 08:57:05'),(854,869,NULL,NULL,'2019-03-01 08:57:06','2019-03-01 08:57:06'),(855,870,NULL,NULL,'2019-03-01 08:57:08','2019-03-01 08:57:08'),(856,871,NULL,NULL,'2019-03-01 08:57:09','2019-03-01 08:57:09'),(857,872,NULL,NULL,'2019-03-01 08:57:11','2019-03-01 08:57:11'),(858,873,NULL,NULL,'2019-03-01 08:57:12','2019-03-01 08:57:12'),(859,874,NULL,NULL,'2019-03-01 08:57:14','2019-03-01 08:57:14'),(860,875,NULL,NULL,'2019-03-01 08:57:16','2019-03-01 08:57:16'),(861,876,NULL,NULL,'2019-03-01 08:57:18','2019-03-01 08:57:18'),(862,877,NULL,NULL,'2019-03-01 08:57:20','2019-03-01 08:57:20'),(863,878,NULL,NULL,'2019-03-01 08:57:21','2019-03-01 08:57:21'),(864,879,NULL,NULL,'2019-03-01 10:10:01','2019-03-01 10:10:01'),(865,880,NULL,NULL,'2019-03-01 10:10:03','2019-03-01 10:10:03'),(866,881,NULL,NULL,'2019-03-01 10:10:06','2019-03-01 10:10:06'),(867,882,NULL,NULL,'2019-03-01 10:10:08','2019-03-01 10:10:08'),(868,883,NULL,NULL,'2019-03-01 10:10:10','2019-03-01 10:10:10'),(869,884,NULL,NULL,'2019-03-01 10:10:13','2019-03-01 10:10:13'),(870,885,NULL,NULL,'2019-03-01 10:10:15','2019-03-01 10:10:15'),(871,886,NULL,NULL,'2019-03-01 10:10:18','2019-03-01 10:10:18'),(872,887,NULL,NULL,'2019-03-01 10:10:20','2019-03-01 10:10:20'),(873,888,NULL,NULL,'2019-03-01 10:10:22','2019-03-01 10:10:22'),(874,889,NULL,NULL,'2019-03-01 10:10:25','2019-03-01 10:10:25'),(875,890,NULL,NULL,'2019-03-01 10:10:27','2019-03-01 10:10:27'),(876,891,NULL,NULL,'2019-03-01 10:10:30','2019-03-01 10:10:30'),(877,892,NULL,NULL,'2019-03-01 10:10:32','2019-03-01 10:10:32'),(878,893,NULL,NULL,'2019-03-01 10:10:34','2019-03-01 10:10:34'),(879,894,NULL,NULL,'2019-03-01 10:10:37','2019-03-01 10:10:37'),(880,895,NULL,NULL,'2019-03-01 10:10:39','2019-03-01 10:10:39'),(881,896,NULL,NULL,'2019-03-01 10:10:41','2019-03-01 10:10:41'),(882,897,NULL,NULL,'2019-03-01 10:10:44','2019-03-01 10:10:44'),(883,898,NULL,NULL,'2019-03-01 10:10:46','2019-03-01 10:10:46'),(884,899,NULL,NULL,'2019-03-01 10:10:49','2019-03-01 10:10:49'),(885,900,NULL,NULL,'2019-03-01 10:10:51','2019-03-01 10:10:51'),(886,901,NULL,NULL,'2019-03-01 10:10:53','2019-03-01 10:10:53'),(887,902,NULL,NULL,'2019-03-01 10:10:56','2019-03-01 10:10:56'),(888,903,NULL,NULL,'2019-03-01 10:10:58','2019-03-01 10:10:58'),(889,904,NULL,NULL,'2019-03-01 11:08:58','2019-03-01 11:08:58'),(890,905,NULL,NULL,'2019-03-01 11:09:03','2019-03-01 11:09:03'),(891,906,NULL,NULL,'2019-03-01 11:09:07','2019-03-01 11:09:07'),(892,907,NULL,NULL,'2019-03-01 11:09:11','2019-03-01 11:09:11'),(893,908,NULL,NULL,'2019-03-01 11:09:14','2019-03-01 11:09:14'),(894,909,NULL,NULL,'2019-03-01 11:09:18','2019-03-01 11:09:18'),(895,910,NULL,NULL,'2019-03-01 11:09:22','2019-03-01 11:09:22'),(896,911,NULL,NULL,'2019-03-01 11:09:26','2019-03-01 11:09:26'),(897,912,NULL,NULL,'2019-03-01 11:09:30','2019-03-01 11:09:30'),(898,913,NULL,NULL,'2019-03-01 11:09:34','2019-03-01 11:09:34'),(899,914,NULL,NULL,'2019-03-01 11:09:38','2019-03-01 11:09:38'),(900,915,NULL,NULL,'2019-03-01 11:09:42','2019-03-01 11:09:42'),(909,924,NULL,NULL,'2019-03-01 11:36:25','2019-03-01 11:36:25'),(910,925,NULL,NULL,'2019-03-01 11:36:27','2019-03-01 11:36:27'),(911,926,NULL,NULL,'2019-03-01 11:36:28','2019-03-01 11:36:28'),(912,927,NULL,NULL,'2019-03-01 11:36:30','2019-03-01 11:36:30'),(913,928,NULL,NULL,'2019-03-01 11:36:31','2019-03-01 11:36:31'),(914,929,NULL,NULL,'2019-03-01 11:36:33','2019-03-01 11:36:33'),(915,930,NULL,NULL,'2019-03-04 05:42:41','2019-03-04 05:42:41'),(916,931,NULL,NULL,'2019-03-04 05:42:43','2019-03-04 05:42:43'),(917,932,NULL,NULL,'2019-03-04 05:42:44','2019-03-04 05:42:44'),(918,933,NULL,NULL,'2019-03-04 05:57:36','2019-03-04 05:57:36'),(919,934,NULL,NULL,'2019-03-04 05:57:37','2019-03-04 05:57:37'),(920,935,NULL,NULL,'2019-03-04 05:57:39','2019-03-04 05:57:39'),(921,936,NULL,NULL,'2019-03-04 05:57:40','2019-03-04 05:57:40'),(922,937,NULL,NULL,'2019-03-04 05:57:42','2019-03-04 05:57:42'),(923,938,NULL,NULL,'2019-03-04 05:57:43','2019-03-04 05:57:43'),(924,939,NULL,NULL,'2019-03-04 06:04:07','2019-03-04 06:04:07'),(925,940,NULL,NULL,'2019-03-04 06:04:09','2019-03-04 06:04:09'),(926,941,NULL,NULL,'2019-03-04 06:04:10','2019-03-04 06:04:10'),(927,942,NULL,NULL,'2019-03-04 06:19:25','2019-03-04 06:19:25'),(928,943,NULL,NULL,'2019-03-04 06:19:28','2019-03-04 06:19:28'),(929,944,NULL,NULL,'2019-03-04 06:19:31','2019-03-04 06:19:31'),(930,945,NULL,NULL,'2019-03-04 06:19:34','2019-03-04 06:19:34'),(931,946,NULL,NULL,'2019-03-04 06:19:36','2019-03-04 06:19:36'),(932,947,NULL,NULL,'2019-03-04 06:19:39','2019-03-04 06:19:39'),(933,948,NULL,NULL,'2019-03-04 06:43:18','2019-03-04 06:43:18'),(934,949,NULL,NULL,'2019-03-04 06:43:22','2019-03-04 06:43:22'),(935,950,NULL,NULL,'2019-03-04 06:43:25','2019-03-04 06:43:25'),(936,951,NULL,NULL,'2019-03-04 06:43:27','2019-03-04 06:43:27'),(937,952,NULL,NULL,'2019-03-04 06:43:30','2019-03-04 06:43:30'),(938,953,NULL,NULL,'2019-03-04 06:43:33','2019-03-04 06:43:33'),(939,954,NULL,NULL,'2019-03-04 06:43:36','2019-03-04 06:43:36'),(940,955,NULL,NULL,'2019-03-04 06:43:39','2019-03-04 06:43:39'),(941,956,NULL,NULL,'2019-03-04 06:43:41','2019-03-04 06:43:41'),(942,957,NULL,NULL,'2019-03-04 06:43:44','2019-03-04 06:43:44'),(943,958,NULL,NULL,'2019-03-04 06:52:45','2019-03-04 06:52:45'),(944,959,NULL,NULL,'2019-03-04 06:52:47','2019-03-04 06:52:47'),(957,972,NULL,NULL,'2019-03-04 07:14:29','2019-03-04 07:14:29'),(958,973,NULL,NULL,'2019-03-04 07:14:32','2019-03-04 07:14:32'),(959,974,NULL,NULL,'2019-03-04 07:14:34','2019-03-04 07:14:34'),(960,975,NULL,NULL,'2019-03-04 07:14:36','2019-03-04 07:14:36'),(961,976,NULL,NULL,'2019-03-04 07:14:38','2019-03-04 07:14:38'),(962,977,NULL,NULL,'2019-03-04 07:14:39','2019-03-04 07:14:39'),(963,978,NULL,NULL,'2019-03-04 07:14:41','2019-03-04 07:14:41'),(964,979,NULL,NULL,'2019-03-04 07:14:43','2019-03-04 07:14:43'),(965,980,NULL,NULL,'2019-03-04 07:14:45','2019-03-04 07:14:45'),(966,981,NULL,NULL,'2019-03-04 07:14:47','2019-03-04 07:14:47'),(967,982,NULL,NULL,'2019-03-04 07:14:49','2019-03-04 07:14:49'),(968,983,NULL,NULL,'2019-03-04 07:14:51','2019-03-04 07:14:51'),(969,984,NULL,NULL,'2019-03-04 07:14:53','2019-03-04 07:14:53'),(970,985,NULL,NULL,'2019-03-04 07:14:55','2019-03-04 07:14:55'),(971,986,NULL,NULL,'2019-03-04 07:23:21','2019-03-04 07:23:21'),(972,987,NULL,NULL,'2019-03-04 07:23:23','2019-03-04 07:23:23'),(973,988,NULL,NULL,'2019-03-04 07:23:25','2019-03-04 07:23:25'),(974,989,NULL,NULL,'2019-03-04 07:23:27','2019-03-04 07:23:27'),(975,990,NULL,NULL,'2019-03-04 07:23:29','2019-03-04 07:23:29'),(976,991,NULL,NULL,'2019-03-04 07:23:31','2019-03-04 07:23:31'),(977,992,NULL,NULL,'2019-03-04 07:23:33','2019-03-04 07:23:33'),(978,993,NULL,NULL,'2019-03-04 07:23:35','2019-03-04 07:23:35'),(979,994,NULL,NULL,'2019-03-04 07:23:37','2019-03-04 07:23:37'),(980,995,NULL,NULL,'2019-03-04 07:23:39','2019-03-04 07:23:39'),(981,996,NULL,NULL,'2019-03-04 07:23:41','2019-03-04 07:23:41'),(982,997,NULL,NULL,'2019-03-04 07:23:43','2019-03-04 07:23:43'),(983,998,NULL,NULL,'2019-03-04 07:23:45','2019-03-04 07:23:45'),(984,999,NULL,NULL,'2019-03-04 07:23:47','2019-03-04 07:23:47'),(985,1000,NULL,NULL,'2019-03-04 07:23:49','2019-03-04 07:23:49'),(986,1001,NULL,NULL,'2019-03-04 07:23:51','2019-03-04 07:23:51'),(987,1002,NULL,NULL,'2019-03-04 07:23:53','2019-03-04 07:23:53'),(988,1003,NULL,NULL,'2019-03-04 07:23:55','2019-03-04 07:23:55'),(989,1004,NULL,NULL,'2019-03-04 07:38:10','2019-03-04 07:38:10'),(990,1005,NULL,NULL,'2019-03-04 07:38:13','2019-03-04 07:38:13'),(991,1006,NULL,NULL,'2019-03-04 07:38:15','2019-03-04 07:38:15'),(992,1007,NULL,NULL,'2019-03-04 07:38:17','2019-03-04 07:38:17'),(993,1008,NULL,NULL,'2019-03-04 07:38:18','2019-03-04 07:38:18'),(994,1009,NULL,NULL,'2019-03-04 07:38:20','2019-03-04 07:38:20'),(995,1010,NULL,NULL,'2019-03-04 07:38:22','2019-03-04 07:38:22'),(996,1011,NULL,NULL,'2019-03-04 07:38:24','2019-03-04 07:38:24'),(997,1012,NULL,NULL,'2019-03-04 07:38:26','2019-03-04 07:38:26'),(998,1013,NULL,NULL,'2019-03-04 07:38:28','2019-03-04 07:38:28'),(999,1014,NULL,NULL,'2019-03-04 07:47:19','2019-03-04 07:47:19'),(1000,1015,NULL,NULL,'2019-03-04 07:47:22','2019-03-04 07:47:22'),(1001,1016,NULL,NULL,'2019-03-04 07:47:24','2019-03-04 07:47:24'),(1002,1017,NULL,NULL,'2019-03-04 07:47:26','2019-03-04 07:47:26'),(1003,1018,NULL,NULL,'2019-03-04 07:47:28','2019-03-04 07:47:28'),(1004,1019,NULL,NULL,'2019-03-04 07:47:30','2019-03-04 07:47:30'),(1005,1020,NULL,NULL,'2019-03-04 07:47:32','2019-03-04 07:47:32'),(1006,1021,NULL,NULL,'2019-03-04 07:47:35','2019-03-04 07:47:35'),(1007,1022,NULL,NULL,'2019-03-04 07:47:37','2019-03-04 07:47:37'),(1008,1023,NULL,NULL,'2019-03-04 08:39:53','2019-03-04 08:39:53'),(1009,1024,NULL,NULL,'2019-03-04 08:39:58','2019-03-04 08:39:58'),(1010,1025,NULL,NULL,'2019-03-04 08:40:01','2019-03-04 08:40:01'),(1011,1026,NULL,NULL,'2019-03-04 08:40:05','2019-03-04 08:40:05'),(1012,1027,NULL,NULL,'2019-03-04 08:40:09','2019-03-04 08:40:09'),(1013,1028,NULL,NULL,'2019-03-04 08:40:13','2019-03-04 08:40:13'),(1014,1029,NULL,NULL,'2019-03-04 08:55:32','2019-03-04 08:55:32'),(1015,1030,NULL,NULL,'2019-03-04 08:55:34','2019-03-04 08:55:34'),(1016,1031,NULL,NULL,'2019-03-04 08:55:35','2019-03-04 08:55:35'),(1017,1032,NULL,NULL,'2019-03-04 08:55:37','2019-03-04 08:55:37'),(1018,1033,NULL,NULL,'2019-03-04 08:55:38','2019-03-04 08:55:38'),(1019,1034,NULL,NULL,'2019-03-04 08:55:40','2019-03-04 08:55:40'),(1020,1035,NULL,NULL,'2019-03-04 09:38:15','2019-03-04 09:38:15'),(1021,1036,NULL,NULL,'2019-03-04 09:38:20','2019-03-04 09:38:20'),(1022,1037,NULL,NULL,'2019-03-04 09:38:24','2019-03-04 09:38:24'),(1023,1038,NULL,NULL,'2019-03-04 09:38:28','2019-03-04 09:38:28'),(1024,1039,NULL,NULL,'2019-03-04 09:38:31','2019-03-04 09:38:31'),(1025,1040,NULL,NULL,'2019-03-04 09:38:35','2019-03-04 09:38:35'),(1026,1041,NULL,NULL,'2019-03-04 09:38:39','2019-03-04 09:38:39'),(1027,1042,NULL,NULL,'2019-03-04 09:38:43','2019-03-04 09:38:43'),(1028,1043,NULL,NULL,'2019-03-04 11:24:44','2019-03-04 11:24:44'),(1029,1044,NULL,NULL,'2019-03-04 11:24:46','2019-03-04 11:24:46'),(1030,1045,NULL,NULL,'2019-03-04 11:24:48','2019-03-04 11:24:48'),(1031,1046,NULL,NULL,'2019-03-04 11:24:49','2019-03-04 11:24:49'),(1032,1047,NULL,NULL,'2019-03-04 11:24:51','2019-03-04 11:24:51'),(1033,1048,NULL,NULL,'2019-03-04 11:24:52','2019-03-04 11:24:52'),(1034,1049,NULL,NULL,'2019-03-04 12:04:30','2019-03-04 12:04:30'),(1035,1050,NULL,NULL,'2019-03-04 12:05:05','2019-03-04 12:05:05'),(1036,1051,NULL,NULL,'2019-03-04 12:05:08','2019-03-04 12:05:08'),(1037,1052,NULL,NULL,'2019-03-04 12:05:12','2019-03-04 12:05:12'),(1038,1053,NULL,NULL,'2019-03-04 12:05:15','2019-03-04 12:05:15'),(1039,1054,NULL,NULL,'2019-03-04 12:05:19','2019-03-04 12:05:19'),(1040,1055,NULL,NULL,'2019-03-04 12:05:23','2019-03-04 12:05:23'),(1041,1056,NULL,NULL,'2019-03-04 12:05:27','2019-03-04 12:05:27'),(1042,1057,NULL,NULL,'2019-03-04 12:36:42','2019-03-04 12:36:42'),(1043,1058,NULL,NULL,'2019-03-04 12:36:44','2019-03-04 12:36:44'),(1044,1059,NULL,NULL,'2019-03-04 12:36:45','2019-03-04 12:36:45'),(1045,1060,NULL,NULL,'2019-03-04 12:36:47','2019-03-04 12:36:47'),(1046,1061,NULL,NULL,'2019-03-04 12:36:48','2019-03-04 12:36:48'),(1047,1062,NULL,NULL,'2019-03-04 12:36:50','2019-03-04 12:36:50'),(1048,1063,NULL,NULL,'2019-03-04 13:04:59','2019-03-04 13:04:59'),(1049,1064,NULL,NULL,'2019-03-04 13:05:04','2019-03-04 13:05:04'),(1050,1065,NULL,NULL,'2019-03-04 13:05:09','2019-03-04 13:05:09'),(1051,1066,NULL,NULL,'2019-03-04 13:05:13','2019-03-04 13:05:13'),(1052,1067,NULL,NULL,'2019-03-04 13:05:17','2019-03-04 13:05:17'),(1053,1068,NULL,NULL,'2019-03-04 13:05:24','2019-03-04 13:05:24'),(1054,1069,NULL,NULL,'2019-03-04 13:33:47','2019-03-04 13:33:47'),(1055,1070,NULL,NULL,'2019-03-04 13:33:48','2019-03-04 13:33:48'),(1056,1071,NULL,NULL,'2019-03-04 13:33:50','2019-03-04 13:33:50'),(1057,1072,NULL,NULL,'2019-03-04 13:33:51','2019-03-04 13:33:51'),(1058,1073,NULL,NULL,'2019-03-04 13:33:53','2019-03-04 13:33:53'),(1059,1074,NULL,NULL,'2019-03-04 13:33:54','2019-03-04 13:33:54'),(1060,1075,NULL,NULL,'2019-03-04 14:13:26','2019-03-04 14:13:26'),(1061,1076,NULL,NULL,'2019-03-04 14:13:28','2019-03-04 14:13:28'),(1062,1077,NULL,NULL,'2019-03-04 14:13:29','2019-03-04 14:13:29'),(1063,1078,NULL,NULL,'2019-03-04 14:13:31','2019-03-04 14:13:31'),(1064,1079,NULL,NULL,'2019-03-04 14:13:32','2019-03-04 14:13:32'),(1065,1080,NULL,NULL,'2019-03-04 14:13:34','2019-03-04 14:13:34'),(1066,1081,NULL,NULL,'2019-03-04 14:13:35','2019-03-04 14:13:35'),(1067,1082,NULL,NULL,'2019-03-04 14:13:37','2019-03-04 14:13:37'),(1068,1083,NULL,NULL,'2019-03-05 11:32:37','2019-03-05 11:32:37'),(1069,1084,NULL,NULL,'2019-03-05 11:32:39','2019-03-05 11:32:39'),(1070,1085,NULL,NULL,'2019-03-05 11:32:41','2019-03-05 11:32:41'),(1071,1086,NULL,NULL,'2019-03-05 11:32:42','2019-03-05 11:32:42'),(1072,1087,NULL,NULL,'2019-03-05 11:32:44','2019-03-05 11:32:44'),(1073,1088,NULL,NULL,'2019-03-05 11:40:40','2019-03-05 11:40:40'),(1074,1089,NULL,NULL,'2019-03-05 11:40:42','2019-03-05 11:40:42'),(1075,1090,NULL,NULL,'2019-03-05 11:40:43','2019-03-05 11:40:43'),(1076,1091,NULL,NULL,'2019-03-05 11:49:59','2019-03-05 11:49:59'),(1077,1092,NULL,NULL,'2019-03-05 11:50:00','2019-03-05 11:50:00'),(1078,1093,NULL,NULL,'2019-03-05 11:50:01','2019-03-05 11:50:01'),(1079,1094,NULL,NULL,'2019-03-05 11:50:03','2019-03-05 11:50:03'),(1080,1095,NULL,NULL,'2019-03-05 11:53:34','2019-03-05 11:53:34'),(1081,1096,NULL,NULL,'2019-03-05 11:53:36','2019-03-05 11:53:36'),(1082,1097,NULL,NULL,'2019-03-05 11:53:37','2019-03-05 11:53:37'),(1083,1098,NULL,NULL,'2019-03-05 11:57:10','2019-03-05 11:57:10'),(1084,1099,NULL,NULL,'2019-03-05 11:57:13','2019-03-05 11:57:13'),(1085,1100,NULL,NULL,'2019-03-05 11:57:17','2019-03-05 11:57:17'),(1086,1101,NULL,NULL,'2019-03-05 12:13:45','2019-03-05 12:13:45'),(1087,1102,NULL,NULL,'2019-03-05 12:13:47','2019-03-05 12:13:47'),(1088,1103,NULL,NULL,'2019-03-05 12:13:48','2019-03-05 12:13:48'),(1089,1104,NULL,NULL,'2019-03-05 12:39:40','2019-03-05 12:39:40'),(1090,1105,NULL,NULL,'2019-03-05 12:39:44','2019-03-05 12:39:44'),(1091,1106,NULL,NULL,'2019-03-05 12:39:48','2019-03-05 12:39:48'),(1092,1107,NULL,NULL,'2019-03-05 12:53:00','2019-03-05 12:53:00'),(1093,1108,NULL,NULL,'2019-03-05 12:53:04','2019-03-05 12:53:04'),(1094,1109,NULL,NULL,'2019-03-05 12:53:08','2019-03-05 12:53:08'),(1095,1110,NULL,NULL,'2019-03-05 13:19:08','2019-03-05 13:19:08'),(1096,1111,NULL,NULL,'2019-03-05 13:19:12','2019-03-05 13:19:12'),(1097,1112,NULL,NULL,'2019-03-05 13:19:16','2019-03-05 13:19:16'),(1098,1113,NULL,NULL,'2019-03-05 13:19:20','2019-03-05 13:19:20'),(1099,1114,NULL,NULL,'2019-03-05 13:36:59','2019-03-05 13:36:59'),(1100,1115,NULL,NULL,'2019-03-05 13:37:03','2019-03-05 13:37:03'),(1101,1116,NULL,NULL,'2019-03-05 13:37:07','2019-03-05 13:37:07'),(1102,1117,NULL,NULL,'2019-03-05 13:37:10','2019-03-05 13:37:10'),(1103,1118,NULL,NULL,'2019-03-05 13:53:56','2019-03-05 13:53:56'),(1104,1119,NULL,NULL,'2019-03-05 13:54:00','2019-03-05 13:54:00'),(1105,1120,NULL,NULL,'2019-03-05 13:54:04','2019-03-05 13:54:04'),(1106,1121,NULL,NULL,'2019-03-05 14:20:52','2019-03-05 14:20:52'),(1107,1122,NULL,NULL,'2019-03-05 14:20:56','2019-03-05 14:20:56'),(1108,1123,NULL,NULL,'2019-03-05 14:21:00','2019-03-05 14:21:00'),(1109,1124,NULL,NULL,'2019-03-05 15:03:05','2019-03-05 15:03:05'),(1110,1125,NULL,NULL,'2019-03-05 15:03:09','2019-03-05 15:03:09'),(1111,1126,NULL,NULL,'2019-03-05 15:03:13','2019-03-05 15:03:13'),(1112,1127,NULL,NULL,'2019-03-05 15:04:53','2019-03-05 15:04:53'),(1113,1128,NULL,NULL,'2019-03-05 15:04:57','2019-03-05 15:04:57'),(1114,1129,NULL,NULL,'2019-03-05 15:05:01','2019-03-05 15:05:01'),(1115,1130,NULL,NULL,'2019-03-05 15:15:18','2019-03-05 15:15:18'),(1116,1131,NULL,NULL,'2019-03-05 15:15:22','2019-03-05 15:15:22'),(1117,1132,NULL,NULL,'2019-03-05 15:15:26','2019-03-05 15:15:26'),(1118,1133,NULL,NULL,'2019-03-05 15:22:24','2019-03-05 15:22:24'),(1119,1134,NULL,NULL,'2019-03-05 15:22:26','2019-03-05 15:22:26'),(1120,1135,NULL,NULL,'2019-03-05 15:28:52','2019-03-05 15:28:52'),(1121,1136,NULL,NULL,'2019-03-05 15:28:56','2019-03-05 15:28:56'),(1122,1137,NULL,NULL,'2019-03-05 15:29:00','2019-03-05 15:29:00'),(1123,1138,NULL,NULL,'2019-03-05 16:44:43','2019-03-05 16:44:43'),(1124,1139,NULL,NULL,'2019-03-05 16:44:48','2019-03-05 16:44:48'),(1125,1140,NULL,NULL,'2019-03-05 16:44:52','2019-03-05 16:44:52'),(1126,1141,NULL,NULL,'2019-03-05 17:03:38','2019-03-05 17:03:38'),(1127,1142,NULL,NULL,'2019-03-05 17:03:42','2019-03-05 17:03:42'),(1128,1143,NULL,NULL,'2019-03-05 17:03:46','2019-03-05 17:03:46'),(1129,1144,NULL,NULL,'2019-03-05 17:03:50','2019-03-05 17:03:50'),(1130,1145,NULL,NULL,'2019-03-05 17:24:45','2019-03-05 17:24:45'),(1131,1146,NULL,NULL,'2019-03-05 17:24:47','2019-03-05 17:24:47'),(1132,1147,NULL,NULL,'2019-03-05 17:24:48','2019-03-05 17:24:48'),(1133,1148,NULL,NULL,'2019-03-05 17:34:04','2019-03-05 17:34:04'),(1134,1149,NULL,NULL,'2019-03-05 17:34:09','2019-03-05 17:34:09'),(1135,1150,NULL,NULL,'2019-03-05 17:34:13','2019-03-05 17:34:13'),(1136,1151,NULL,NULL,'2019-03-05 17:34:17','2019-03-05 17:34:17'),(1137,1152,NULL,NULL,'2019-03-05 17:43:53','2019-03-05 17:43:53'),(1138,1153,NULL,NULL,'2019-03-05 17:43:57','2019-03-05 17:43:57'),(1139,1154,NULL,NULL,'2019-03-05 17:44:02','2019-03-05 17:44:02'),(1140,1155,NULL,NULL,'2019-03-05 17:44:05','2019-03-05 17:44:05'),(1141,1156,NULL,NULL,'2019-03-05 17:50:42','2019-03-05 17:50:42'),(1142,1157,NULL,NULL,'2019-03-05 17:50:46','2019-03-05 17:50:46'),(1143,1158,NULL,NULL,'2019-03-05 17:50:50','2019-03-05 17:50:50'),(1144,1159,NULL,NULL,'2019-03-05 17:50:54','2019-03-05 17:50:54'),(1145,1160,NULL,NULL,'2019-03-05 17:54:55','2019-03-05 17:54:55'),(1146,1161,NULL,NULL,'2019-03-05 17:54:56','2019-03-05 17:54:56'),(1147,1162,NULL,NULL,'2019-03-05 18:03:07','2019-03-05 18:03:07'),(1148,1163,NULL,NULL,'2019-03-05 18:03:11','2019-03-05 18:03:11'),(1149,1164,NULL,NULL,'2019-03-05 18:12:31','2019-03-05 18:12:31'),(1150,1165,NULL,NULL,'2019-03-05 18:12:33','2019-03-05 18:12:33'),(1151,1166,NULL,NULL,'2019-03-05 18:12:34','2019-03-05 18:12:34'),(1152,1167,NULL,NULL,'2019-03-05 18:24:05','2019-03-05 18:24:05'),(1153,1168,NULL,NULL,'2019-03-05 18:24:09','2019-03-05 18:24:09'),(1154,1169,NULL,NULL,'2019-03-05 18:24:14','2019-03-05 18:24:14'),(1155,1170,NULL,NULL,'2019-03-05 18:24:18','2019-03-05 18:24:18'),(1156,1171,NULL,NULL,'2019-03-05 18:31:28','2019-03-05 18:31:28'),(1157,1172,NULL,NULL,'2019-03-05 18:31:32','2019-03-05 18:31:32'),(1158,1173,NULL,NULL,'2019-03-05 18:31:36','2019-03-05 18:31:36'),(1159,1174,NULL,NULL,'2019-03-05 18:31:41','2019-03-05 18:31:41'),(1160,1175,NULL,NULL,'2019-03-05 18:40:44','2019-03-05 18:40:44'),(1161,1176,NULL,NULL,'2019-03-05 18:40:48','2019-03-05 18:40:48'),(1162,1177,NULL,NULL,'2019-03-05 18:40:52','2019-03-05 18:40:52'),(1163,1178,NULL,NULL,'2019-03-05 18:40:56','2019-03-05 18:40:56'),(1164,1179,NULL,NULL,'2019-03-05 18:40:59','2019-03-05 18:40:59'),(1165,1180,NULL,NULL,'2019-03-05 19:21:06','2019-03-05 19:21:06'),(1166,1181,NULL,NULL,'2019-03-05 19:21:10','2019-03-05 19:21:10'),(1167,1182,NULL,NULL,'2019-03-05 19:21:14','2019-03-05 19:21:14'),(1168,1183,NULL,NULL,'2019-03-05 19:21:18','2019-03-05 19:21:18'),(1169,1184,NULL,NULL,'2019-03-05 19:38:08','2019-03-05 19:38:08'),(1170,1185,NULL,NULL,'2019-03-05 19:38:13','2019-03-05 19:38:13'),(1171,1186,NULL,NULL,'2019-03-05 19:38:17','2019-03-05 19:38:17'),(1172,1187,NULL,NULL,'2019-03-05 19:47:11','2019-03-05 19:47:11'),(1173,1188,NULL,NULL,'2019-03-05 19:47:14','2019-03-05 19:47:14'),(1174,1189,NULL,NULL,'2019-03-05 19:47:19','2019-03-05 19:47:19'),(1175,1190,NULL,NULL,'2019-03-05 19:47:23','2019-03-05 19:47:23'),(1176,1191,NULL,NULL,'2019-03-05 19:55:18','2019-03-05 19:55:18'),(1177,1192,NULL,NULL,'2019-03-05 19:55:19','2019-03-05 19:55:19'),(1178,1193,NULL,NULL,'2019-03-05 19:55:21','2019-03-05 19:55:21'),(1179,1194,NULL,NULL,'2019-03-05 19:55:23','2019-03-05 19:55:23'),(1180,1195,NULL,NULL,'2019-03-05 19:55:24','2019-03-05 19:55:24'),(1181,1196,NULL,NULL,'2019-03-05 20:03:43','2019-03-05 20:03:43'),(1182,1197,NULL,NULL,'2019-03-05 20:03:46','2019-03-05 20:03:46'),(1183,1198,NULL,NULL,'2019-03-05 20:03:49','2019-03-05 20:03:49'),(1184,1199,NULL,NULL,'2019-03-05 20:17:21','2019-03-05 20:17:21'),(1185,1200,NULL,NULL,'2019-03-05 20:17:23','2019-03-05 20:17:23'),(1186,1201,NULL,NULL,'2019-03-05 20:17:24','2019-03-05 20:17:24'),(1187,1202,NULL,NULL,'2019-03-05 20:25:37','2019-03-05 20:25:37'),(1188,1203,NULL,NULL,'2019-03-05 20:25:41','2019-03-05 20:25:41'),(1189,1204,NULL,NULL,'2019-03-05 20:25:45','2019-03-05 20:25:45'),(1190,1205,NULL,NULL,'2019-03-05 20:33:38','2019-03-05 20:33:38'),(1191,1206,NULL,NULL,'2019-03-05 20:33:42','2019-03-05 20:33:42'),(1192,1207,NULL,NULL,'2019-03-05 20:33:46','2019-03-05 20:33:46'),(1193,1208,NULL,NULL,'2019-03-05 20:41:15','2019-03-05 20:41:15'),(1194,1209,NULL,NULL,'2019-03-05 20:41:19','2019-03-05 20:41:19'),(1195,1210,NULL,NULL,'2019-03-05 20:41:23','2019-03-05 20:41:23'),(1196,1211,NULL,NULL,'2019-03-05 20:48:12','2019-03-05 20:48:12'),(1197,1212,NULL,NULL,'2019-03-05 20:48:16','2019-03-05 20:48:16'),(1198,1213,NULL,NULL,'2019-03-05 20:48:22','2019-03-05 20:48:22'),(1199,1214,NULL,NULL,'2019-03-05 20:54:29','2019-03-05 20:54:29'),(1200,1215,NULL,NULL,'2019-03-05 20:54:31','2019-03-05 20:54:31'),(1201,1216,NULL,NULL,'2019-03-05 20:54:33','2019-03-05 20:54:33'),(1202,1217,NULL,NULL,'2019-03-05 20:54:35','2019-03-05 20:54:35'),(1203,1218,NULL,NULL,'2019-03-05 20:54:37','2019-03-05 20:54:37'),(1204,1219,NULL,NULL,'2019-03-05 20:58:23','2019-03-05 20:58:23'),(1205,1220,NULL,NULL,'2019-03-05 20:58:26','2019-03-05 20:58:26'),(1206,1221,NULL,NULL,'2019-03-05 20:58:29','2019-03-05 20:58:29'),(1207,1222,NULL,NULL,'2019-03-05 21:09:16','2019-03-05 21:09:16'),(1208,1223,NULL,NULL,'2019-03-05 21:09:18','2019-03-05 21:09:18'),(1209,1224,NULL,NULL,'2019-03-05 21:09:19','2019-03-05 21:09:19'),(1210,1225,NULL,NULL,'2019-03-05 21:09:21','2019-03-05 21:09:21'),(1211,1226,NULL,NULL,'2019-03-05 21:09:22','2019-03-05 21:09:22'),(1212,1227,NULL,NULL,'2019-03-05 21:09:24','2019-03-05 21:09:24'),(1213,1228,NULL,NULL,'2019-03-05 21:26:36','2019-03-05 21:26:36'),(1214,1229,NULL,NULL,'2019-03-05 21:26:41','2019-03-05 21:26:41'),(1215,1230,NULL,NULL,'2019-03-05 21:26:45','2019-03-05 21:26:45'),(1216,1231,NULL,NULL,'2019-03-05 21:32:46','2019-03-05 21:32:46'),(1217,1232,NULL,NULL,'2019-03-05 21:32:48','2019-03-05 21:32:48'),(1218,1233,NULL,NULL,'2019-03-05 21:32:50','2019-03-05 21:32:50'),(1219,1234,NULL,NULL,'2019-03-05 21:39:23','2019-03-05 21:39:23'),(1220,1235,NULL,NULL,'2019-03-05 21:39:27','2019-03-05 21:39:27'),(1221,1236,NULL,NULL,'2019-03-05 21:39:33','2019-03-05 21:39:33'),(1222,1237,NULL,NULL,'2019-03-05 21:39:38','2019-03-05 21:39:38'),(1223,1238,NULL,NULL,'2019-03-05 21:45:44','2019-03-05 21:45:44'),(1224,1239,NULL,NULL,'2019-03-05 21:45:50','2019-03-05 21:45:50'),(1225,1240,NULL,NULL,'2019-03-05 21:45:55','2019-03-05 21:45:55'),(1226,1241,NULL,NULL,'2019-03-05 21:45:59','2019-03-05 21:45:59'),(1227,1242,NULL,NULL,'2019-03-05 21:51:34','2019-03-05 21:51:34'),(1228,1243,NULL,NULL,'2019-03-05 21:51:39','2019-03-05 21:51:39'),(1229,1244,NULL,NULL,'2019-03-05 21:51:43','2019-03-05 21:51:43'),(1230,1245,NULL,NULL,'2019-03-05 21:51:48','2019-03-05 21:51:48'),(1231,1246,NULL,NULL,'2019-03-05 21:51:52','2019-03-05 21:51:52'),(1232,1247,NULL,NULL,'2019-03-06 06:03:32','2019-03-06 06:03:32'),(1233,1248,NULL,NULL,'2019-03-06 06:03:34','2019-03-06 06:03:34'),(1234,1249,NULL,NULL,'2019-03-06 06:03:35','2019-03-06 06:03:35'),(1235,1250,NULL,NULL,'2019-03-06 06:03:37','2019-03-06 06:03:37'),(1236,1251,NULL,NULL,'2019-03-06 06:07:53','2019-03-06 06:07:53'),(1237,1252,NULL,NULL,'2019-03-06 06:07:55','2019-03-06 06:07:55'),(1238,1253,NULL,NULL,'2019-03-06 06:07:57','2019-03-06 06:07:57'),(1239,1254,NULL,NULL,'2019-03-06 06:07:58','2019-03-06 06:07:58'),(1240,1255,NULL,NULL,'2019-03-06 06:08:00','2019-03-06 06:08:00'),(1241,1256,NULL,NULL,'2019-03-06 06:08:03','2019-03-06 06:08:03'),(1242,1257,NULL,NULL,'2019-03-06 06:13:52','2019-03-06 06:13:52'),(1243,1258,NULL,NULL,'2019-03-06 06:13:57','2019-03-06 06:13:57'),(1244,1259,NULL,NULL,'2019-03-06 06:14:02','2019-03-06 06:14:02'),(1245,1260,NULL,NULL,'2019-03-06 06:14:05','2019-03-06 06:14:05'),(1246,1261,NULL,NULL,'2019-03-06 06:24:10','2019-03-06 06:24:10'),(1247,1262,NULL,NULL,'2019-03-06 06:24:12','2019-03-06 06:24:12'),(1248,1263,NULL,NULL,'2019-03-06 06:24:13','2019-03-06 06:24:13'),(1249,1264,NULL,NULL,'2019-03-06 06:24:15','2019-03-06 06:24:15'),(1250,1265,NULL,NULL,'2019-03-06 06:24:16','2019-03-06 06:24:16'),(1251,1266,NULL,NULL,'2019-03-06 06:29:08','2019-03-06 06:29:08'),(1252,1267,NULL,NULL,'2019-03-06 06:29:10','2019-03-06 06:29:10'),(1253,1268,NULL,NULL,'2019-03-06 06:29:12','2019-03-06 06:29:12'),(1254,1269,NULL,NULL,'2019-03-06 06:29:14','2019-03-06 06:29:14'),(1255,1270,NULL,NULL,'2019-03-06 06:29:16','2019-03-06 06:29:16'),(1256,1271,NULL,NULL,'2019-03-06 06:29:17','2019-03-06 06:29:17'),(1257,1272,NULL,NULL,'2019-03-06 06:38:53','2019-03-06 06:38:53'),(1258,1273,NULL,NULL,'2019-03-06 06:38:55','2019-03-06 06:38:55'),(1259,1274,NULL,NULL,'2019-03-06 06:38:56','2019-03-06 06:38:56'),(1260,1275,NULL,NULL,'2019-03-06 06:38:58','2019-03-06 06:38:58'),(1261,1276,NULL,NULL,'2019-03-06 06:38:59','2019-03-06 06:38:59'),(1262,1277,NULL,NULL,'2019-03-06 06:39:00','2019-03-06 06:39:00'),(1263,1278,NULL,NULL,'2019-03-06 06:39:02','2019-03-06 06:39:02'),(1264,1279,NULL,NULL,'2019-03-06 06:39:04','2019-03-06 06:39:04'),(1265,1280,NULL,NULL,'2019-03-06 06:44:26','2019-03-06 06:44:26'),(1266,1281,NULL,NULL,'2019-03-06 06:44:31','2019-03-06 06:44:31'),(1267,1282,NULL,NULL,'2019-03-06 06:44:35','2019-03-06 06:44:35'),(1268,1283,NULL,NULL,'2019-03-06 06:44:39','2019-03-06 06:44:39'),(1269,1284,NULL,NULL,'2019-03-06 06:58:29','2019-03-06 06:58:29'),(1270,1285,NULL,NULL,'2019-03-06 06:58:33','2019-03-06 06:58:33'),(1271,1286,NULL,NULL,'2019-03-06 06:58:37','2019-03-06 06:58:37'),(1272,1287,NULL,NULL,'2019-03-06 07:05:53','2019-03-06 07:05:53'),(1273,1288,NULL,NULL,'2019-03-06 07:06:05','2019-03-06 07:06:05'),(1274,1289,NULL,NULL,'2019-03-06 07:06:09','2019-03-06 07:06:09'),(1275,1290,NULL,NULL,'2019-03-06 07:15:38','2019-03-06 07:15:38'),(1276,1291,NULL,NULL,'2019-03-06 07:15:41','2019-03-06 07:15:41'),(1277,1292,NULL,NULL,'2019-03-06 07:15:43','2019-03-06 07:15:43'),(1278,1293,NULL,NULL,'2019-03-06 07:20:54','2019-03-06 07:20:54'),(1279,1294,NULL,NULL,'2019-03-06 07:20:58','2019-03-06 07:20:58'),(1280,1295,NULL,NULL,'2019-03-06 07:21:03','2019-03-06 07:21:03'),(1281,1296,NULL,NULL,'2019-03-06 07:26:40','2019-03-06 07:26:40'),(1282,1297,NULL,NULL,'2019-03-06 07:26:45','2019-03-06 07:26:45'),(1283,1298,NULL,NULL,'2019-03-06 07:26:49','2019-03-06 07:26:49'),(1284,1299,NULL,NULL,'2019-03-06 07:31:58','2019-03-06 07:31:58'),(1285,1300,NULL,NULL,'2019-03-06 07:32:02','2019-03-06 07:32:02'),(1286,1301,NULL,NULL,'2019-03-06 07:32:07','2019-03-06 07:32:07'),(1287,1302,NULL,NULL,'2019-03-06 07:36:30','2019-03-06 07:36:30'),(1288,1303,NULL,NULL,'2019-03-06 07:36:34','2019-03-06 07:36:34'),(1289,1304,NULL,NULL,'2019-03-06 07:36:38','2019-03-06 07:36:38'),(1290,1305,NULL,NULL,'2019-03-06 07:41:21','2019-03-06 07:41:21'),(1291,1306,NULL,NULL,'2019-03-06 07:41:24','2019-03-06 07:41:24'),(1292,1307,NULL,NULL,'2019-03-06 07:41:26','2019-03-06 07:41:26'),(1293,1308,NULL,NULL,'2019-03-06 07:45:44','2019-03-06 07:45:44'),(1294,1309,NULL,NULL,'2019-03-06 07:54:42','2019-03-06 07:54:42'),(1295,1310,NULL,NULL,'2019-03-06 07:54:45','2019-03-06 07:54:45'),(1296,1311,NULL,NULL,'2019-03-06 07:59:35','2019-03-06 07:59:35'),(1297,1312,NULL,NULL,'2019-03-06 08:03:49','2019-03-06 08:03:49'),(1298,1313,NULL,NULL,'2019-03-06 08:03:51','2019-03-06 08:03:51'),(1299,1314,NULL,NULL,'2019-03-06 08:08:59','2019-03-06 08:08:59'),(1300,1315,NULL,NULL,'2019-03-06 08:19:27','2019-03-06 08:19:27'),(1301,1316,NULL,NULL,'2019-03-06 08:19:29','2019-03-06 08:19:29'),(1302,1317,NULL,NULL,'2019-03-06 08:27:45','2019-03-06 08:27:45'),(1303,1318,NULL,NULL,'2019-03-06 08:42:46','2019-03-06 08:42:46'),(1304,1319,NULL,NULL,'2019-03-06 08:48:22','2019-03-06 08:48:22'),(1305,1320,NULL,NULL,'2019-03-06 08:52:39','2019-03-06 08:52:39'),(1306,1321,NULL,NULL,'2019-03-06 09:00:36','2019-03-06 09:00:36'),(1307,1322,NULL,NULL,'2019-03-06 09:24:14','2019-03-06 09:24:14'),(1308,1323,NULL,NULL,'2019-03-06 09:24:16','2019-03-06 09:24:16'),(1309,1324,NULL,NULL,'2019-03-06 09:24:18','2019-03-06 09:24:18'),(1310,1325,NULL,NULL,'2019-03-06 09:33:26','2019-03-06 09:33:26'),(1311,1326,NULL,NULL,'2019-03-06 09:33:29','2019-03-06 09:33:29'),(1312,1327,NULL,NULL,'2019-03-06 09:39:54','2019-03-06 09:39:54'),(1313,1328,NULL,NULL,'2019-03-06 09:39:56','2019-03-06 09:39:56'),(1314,1329,NULL,NULL,'2019-03-06 09:45:25','2019-03-06 09:45:25'),(1315,1330,NULL,NULL,'2019-03-06 09:45:28','2019-03-06 09:45:28'),(1316,1331,NULL,NULL,'2019-03-06 09:49:50','2019-03-06 09:49:50'),(1317,1332,NULL,NULL,'2019-03-06 09:56:29','2019-03-06 09:56:29'),(1318,1333,NULL,NULL,'2019-03-06 10:04:47','2019-03-06 10:04:47'),(1319,1334,NULL,NULL,'2019-03-06 10:04:48','2019-03-06 10:04:48'),(1320,1335,NULL,NULL,'2019-03-06 10:04:48','2019-03-06 10:04:48'),(1321,1336,NULL,NULL,'2019-03-06 10:04:49','2019-03-06 10:04:49'),(1322,1337,NULL,NULL,'2019-03-06 10:04:50','2019-03-06 10:04:50'),(1323,1338,NULL,NULL,'2019-03-06 10:04:50','2019-03-06 10:04:50'),(1324,1339,NULL,NULL,'2019-03-06 10:04:51','2019-03-06 10:04:51'),(1325,1340,NULL,NULL,'2019-03-06 10:04:52','2019-03-06 10:04:52'),(1326,1341,NULL,NULL,'2019-03-06 10:04:53','2019-03-06 10:04:53'),(1327,1343,NULL,NULL,'2019-03-06 10:22:52','2019-03-06 10:22:52'),(1328,1344,NULL,NULL,'2019-03-06 10:22:55','2019-03-06 10:22:55'),(1329,1345,NULL,NULL,'2019-03-06 10:42:19','2019-03-06 10:42:19'),(1330,1346,NULL,NULL,'2019-03-06 10:42:21','2019-03-06 10:42:21'),(1331,1347,NULL,NULL,'2019-03-06 10:42:22','2019-03-06 10:42:22'),(1332,1348,NULL,NULL,'2019-03-06 10:42:23','2019-03-06 10:42:23'),(1333,1349,NULL,NULL,'2019-03-06 10:42:24','2019-03-06 10:42:24'),(1334,1350,NULL,NULL,'2019-03-06 10:42:25','2019-03-06 10:42:25'),(1335,1351,NULL,NULL,'2019-03-06 10:42:26','2019-03-06 10:42:26'),(1336,1352,NULL,NULL,'2019-03-06 10:48:28','2019-03-06 10:48:28'),(1337,1353,NULL,NULL,'2019-03-06 10:48:29','2019-03-06 10:48:29'),(1338,1354,NULL,NULL,'2019-03-06 10:48:30','2019-03-06 10:48:30'),(1339,1355,NULL,NULL,'2019-03-06 10:48:31','2019-03-06 10:48:31'),(1340,1356,NULL,NULL,'2019-03-06 10:48:31','2019-03-06 10:48:31'),(1341,1357,NULL,NULL,'2019-03-06 10:48:32','2019-03-06 10:48:32'),(1342,1358,NULL,NULL,'2019-03-06 10:48:32','2019-03-06 10:48:32'),(1343,1359,NULL,NULL,'2019-03-06 10:48:33','2019-03-06 10:48:33'),(1344,1360,NULL,NULL,'2019-03-06 10:48:34','2019-03-06 10:48:34'),(1345,1361,NULL,NULL,'2019-03-06 10:48:34','2019-03-06 10:48:34'),(1346,1362,NULL,NULL,'2019-03-06 10:48:35','2019-03-06 10:48:35'),(1347,1363,NULL,NULL,'2019-03-06 10:48:35','2019-03-06 10:48:35'),(1348,1364,NULL,NULL,'2019-03-06 10:48:36','2019-03-06 10:48:36'),(1349,1365,NULL,NULL,'2019-03-06 10:48:36','2019-03-06 10:48:36'),(1350,1366,NULL,NULL,'2019-03-06 10:48:37','2019-03-06 10:48:37'),(1351,1367,NULL,NULL,'2019-03-06 10:48:38','2019-03-06 10:48:38'),(1352,1368,NULL,NULL,'2019-03-06 10:48:38','2019-03-06 10:48:38'),(1353,1369,NULL,NULL,'2019-03-06 10:48:39','2019-03-06 10:48:39'),(1354,1370,NULL,NULL,'2019-03-06 10:48:39','2019-03-06 10:48:39'),(1355,1371,NULL,NULL,'2019-03-06 10:48:40','2019-03-06 10:48:40'),(1356,1372,NULL,NULL,'2019-03-06 10:48:40','2019-03-06 10:48:40'),(1357,1373,NULL,NULL,'2019-03-06 10:48:40','2019-03-06 10:48:40'),(1358,1374,NULL,NULL,'2019-03-06 10:48:41','2019-03-06 10:48:41'),(1359,1375,NULL,NULL,'2019-03-06 10:48:41','2019-03-06 10:48:41'),(1360,1376,NULL,NULL,'2019-03-06 10:48:42','2019-03-06 10:48:42'),(1361,1377,NULL,NULL,'2019-03-06 10:48:43','2019-03-06 10:48:43'),(1362,1378,NULL,NULL,'2019-03-06 10:48:44','2019-03-06 10:48:44'),(1363,1379,NULL,NULL,'2019-03-06 10:48:45','2019-03-06 10:48:45'),(1364,1380,NULL,NULL,'2019-03-06 10:48:45','2019-03-06 10:48:45'),(1365,1381,NULL,NULL,'2019-03-06 10:48:46','2019-03-06 10:48:46'),(1366,1383,NULL,NULL,'2019-03-06 11:18:34','2019-03-06 11:18:34'),(1367,1384,NULL,NULL,'2019-03-06 11:18:36','2019-03-06 11:18:36'),(1368,1385,NULL,NULL,'2019-03-06 11:18:37','2019-03-06 11:18:37'),(1369,1386,NULL,NULL,'2019-03-06 11:18:39','2019-03-06 11:18:39'),(1370,1387,NULL,NULL,'2019-03-06 11:18:40','2019-03-06 11:18:40'),(1371,1388,NULL,NULL,'2019-03-06 11:18:41','2019-03-06 11:18:41'),(1372,1389,NULL,NULL,'2019-03-06 11:18:43','2019-03-06 11:18:43'),(1373,1390,NULL,NULL,'2019-03-06 11:18:44','2019-03-06 11:18:44'),(1374,1391,NULL,NULL,'2019-03-06 11:18:45','2019-03-06 11:18:45'),(1375,1392,NULL,NULL,'2019-03-06 11:18:47','2019-03-06 11:18:47'),(1376,1393,NULL,NULL,'2019-03-06 11:18:48','2019-03-06 11:18:48'),(1377,1394,NULL,NULL,'2019-03-06 11:18:49','2019-03-06 11:18:49'),(1378,1395,NULL,NULL,'2019-03-06 11:18:51','2019-03-06 11:18:51'),(1379,1396,NULL,NULL,'2019-03-06 11:18:52','2019-03-06 11:18:52'),(1380,1397,NULL,NULL,'2019-03-06 11:18:53','2019-03-06 11:18:53'),(1381,1398,NULL,NULL,'2019-03-06 11:18:55','2019-03-06 11:18:55'),(1382,1399,NULL,NULL,'2019-03-06 11:18:56','2019-03-06 11:18:56'),(1383,1400,NULL,NULL,'2019-03-06 11:18:57','2019-03-06 11:18:57'),(1384,1401,NULL,NULL,'2019-03-06 11:18:58','2019-03-06 11:18:58'),(1385,1402,NULL,NULL,'2019-03-06 11:19:00','2019-03-06 11:19:00'),(1386,1403,NULL,NULL,'2019-03-06 11:19:01','2019-03-06 11:19:01'),(1387,1404,NULL,NULL,'2019-03-06 11:19:02','2019-03-06 11:19:02'),(1388,1405,NULL,NULL,'2019-03-06 11:19:04','2019-03-06 11:19:04'),(1389,1406,NULL,NULL,'2019-03-06 11:19:05','2019-03-06 11:19:05'),(1390,1407,NULL,NULL,'2019-03-06 11:19:06','2019-03-06 11:19:06'),(1391,1408,NULL,NULL,'2019-03-06 11:19:07','2019-03-06 11:19:07'),(1392,1409,NULL,NULL,'2019-03-06 11:19:09','2019-03-06 11:19:09'),(1393,1410,NULL,NULL,'2019-03-06 11:19:10','2019-03-06 11:19:10'),(1394,1411,NULL,NULL,'2019-03-06 11:19:11','2019-03-06 11:19:11'),(1395,1412,NULL,NULL,'2019-03-06 11:19:12','2019-03-06 11:19:12'),(1396,1413,NULL,NULL,'2019-03-06 11:19:13','2019-03-06 11:19:13'),(1397,1414,NULL,NULL,'2019-03-06 12:28:56','2019-03-06 12:28:56'),(1398,1415,NULL,NULL,'2019-03-06 12:28:57','2019-03-06 12:28:57'),(1399,1416,NULL,NULL,'2019-03-06 12:28:58','2019-03-06 12:28:58'),(1400,1417,NULL,NULL,'2019-03-06 12:28:59','2019-03-06 12:28:59'),(1401,1418,NULL,NULL,'2019-03-06 12:29:00','2019-03-06 12:29:00'),(1402,1419,NULL,NULL,'2019-03-06 12:29:01','2019-03-06 12:29:01'),(1403,1420,NULL,NULL,'2019-03-06 12:31:11','2019-03-06 12:31:11'),(1404,1421,NULL,NULL,'2019-03-06 12:31:16','2019-03-06 12:31:16'),(1405,1422,NULL,NULL,'2019-03-06 12:31:21','2019-03-06 12:31:21'),(1406,1423,NULL,NULL,'2019-03-06 12:31:25','2019-03-06 12:31:25'),(1407,1424,NULL,NULL,'2019-03-06 12:31:30','2019-03-06 12:31:30'),(1408,1425,NULL,NULL,'2019-03-06 12:31:35','2019-03-06 12:31:35'),(1409,1426,NULL,NULL,'2019-03-06 12:31:39','2019-03-06 12:31:39'),(1410,1427,NULL,NULL,'2019-03-06 12:31:44','2019-03-06 12:31:44'),(1411,1428,NULL,NULL,'2019-03-06 12:31:49','2019-03-06 12:31:49'),(1412,1429,NULL,NULL,'2019-03-06 12:31:53','2019-03-06 12:31:53'),(1413,1430,NULL,NULL,'2019-03-06 12:31:56','2019-03-06 12:31:56'),(1414,1431,NULL,NULL,'2019-03-06 12:32:01','2019-03-06 12:32:01'),(1415,1432,NULL,NULL,'2019-03-06 12:32:06','2019-03-06 12:32:06'),(1416,1433,NULL,NULL,'2019-03-06 12:32:10','2019-03-06 12:32:10'),(1417,1434,NULL,NULL,'2019-03-06 12:32:14','2019-03-06 12:32:14'),(1418,1435,NULL,NULL,'2019-03-06 12:32:17','2019-03-06 12:32:17'),(1419,1436,NULL,NULL,'2019-03-06 12:32:20','2019-03-06 12:32:20'),(1420,1437,NULL,NULL,'2019-03-06 12:32:24','2019-03-06 12:32:24'),(1421,1438,NULL,NULL,'2019-03-06 12:32:27','2019-03-06 12:32:27'),(1422,1439,NULL,NULL,'2019-03-06 12:32:34','2019-03-06 12:32:34'),(1423,1440,NULL,NULL,'2019-03-06 12:32:37','2019-03-06 12:32:37'),(1424,1441,NULL,NULL,'2019-03-06 12:32:40','2019-03-06 12:32:40'),(1425,1442,NULL,NULL,'2019-03-06 12:32:44','2019-03-06 12:32:44'),(1426,1443,NULL,NULL,'2019-03-06 12:32:48','2019-03-06 12:32:48'),(1427,1444,NULL,NULL,'2019-03-06 12:32:52','2019-03-06 12:32:52'),(1428,1445,NULL,NULL,'2019-03-06 12:32:55','2019-03-06 12:32:55'),(1429,1446,NULL,NULL,'2019-03-06 12:32:59','2019-03-06 12:32:59'),(1430,1447,NULL,NULL,'2019-03-06 12:33:04','2019-03-06 12:33:04'),(1431,1448,NULL,NULL,'2019-03-06 12:33:09','2019-03-06 12:33:09'),(1432,1449,NULL,NULL,'2019-03-06 12:33:13','2019-03-06 12:33:13'),(1433,1450,NULL,NULL,'2019-03-06 12:33:17','2019-03-06 12:33:17'),(1434,1451,NULL,NULL,'2019-03-06 12:33:21','2019-03-06 12:33:21'),(1435,1452,NULL,NULL,'2019-03-06 12:33:24','2019-03-06 12:33:24'),(1436,1453,NULL,NULL,'2019-03-06 12:33:28','2019-03-06 12:33:28'),(1437,1454,NULL,NULL,'2019-03-06 12:33:32','2019-03-06 12:33:32'),(1438,1455,NULL,NULL,'2019-03-06 12:33:38','2019-03-06 12:33:38'),(1439,1456,NULL,NULL,'2019-03-06 12:43:39','2019-03-06 12:43:39'),(1440,1457,NULL,NULL,'2019-03-06 12:43:45','2019-03-06 12:43:45'),(1441,1458,NULL,NULL,'2019-03-06 12:43:48','2019-03-06 12:43:48'),(1442,1459,NULL,NULL,'2019-03-06 12:43:51','2019-03-06 12:43:51'),(1443,1460,NULL,NULL,'2019-03-06 12:43:55','2019-03-06 12:43:55'),(1444,1461,NULL,NULL,'2019-03-06 12:43:59','2019-03-06 12:43:59'),(1445,1462,NULL,NULL,'2019-03-06 12:44:04','2019-03-06 12:44:04'),(1446,1463,NULL,NULL,'2019-03-06 12:44:10','2019-03-06 12:44:10'),(1447,1464,NULL,NULL,'2019-03-06 12:44:15','2019-03-06 12:44:15'),(1448,1465,NULL,NULL,'2019-03-06 12:51:45','2019-03-06 12:51:45'),(1449,1466,NULL,NULL,'2019-03-06 12:51:46','2019-03-06 12:51:46'),(1450,1467,NULL,NULL,'2019-03-06 12:51:48','2019-03-06 12:51:48'),(1451,1468,NULL,NULL,'2019-03-06 12:51:49','2019-03-06 12:51:49'),(1452,1469,NULL,NULL,'2019-03-06 12:51:51','2019-03-06 12:51:51'),(1453,1470,NULL,NULL,'2019-03-06 12:51:52','2019-03-06 12:51:52'),(1454,1471,NULL,NULL,'2019-03-06 12:51:54','2019-03-06 12:51:54'),(1455,1472,NULL,NULL,'2019-03-06 12:51:56','2019-03-06 12:51:56'),(1456,1473,NULL,NULL,'2019-03-06 12:51:57','2019-03-06 12:51:57'),(1457,1474,NULL,NULL,'2019-03-06 12:51:59','2019-03-06 12:51:59'),(1458,1475,NULL,NULL,'2019-03-06 12:52:02','2019-03-06 12:52:02'),(1459,1476,NULL,NULL,'2019-03-06 12:52:04','2019-03-06 12:52:04'),(1460,1477,NULL,NULL,'2019-03-06 12:52:05','2019-03-06 12:52:05'),(1461,1478,NULL,NULL,'2019-03-06 12:52:07','2019-03-06 12:52:07'),(1462,1479,NULL,NULL,'2019-03-06 12:52:08','2019-03-06 12:52:08'),(1463,1480,NULL,NULL,'2019-03-06 12:52:10','2019-03-06 12:52:10'),(1464,1481,NULL,NULL,'2019-03-06 12:52:13','2019-03-06 12:52:13'),(1465,1482,NULL,NULL,'2019-03-06 12:52:16','2019-03-06 12:52:16'),(1466,1483,NULL,NULL,'2019-03-06 12:52:19','2019-03-06 12:52:19'),(1467,1484,NULL,NULL,'2019-03-06 12:52:22','2019-03-06 12:52:22'),(1468,1485,NULL,NULL,'2019-03-06 12:52:25','2019-03-06 12:52:25'),(1469,1486,NULL,NULL,'2019-03-06 12:52:27','2019-03-06 12:52:27'),(1470,1487,NULL,NULL,'2019-03-06 12:52:31','2019-03-06 12:52:31'),(1471,1488,NULL,NULL,'2019-03-06 12:52:34','2019-03-06 12:52:34'),(1472,1489,NULL,NULL,'2019-03-06 12:52:37','2019-03-06 12:52:37'),(1473,1490,NULL,NULL,'2019-03-06 12:52:40','2019-03-06 12:52:40'),(1474,1491,NULL,NULL,'2019-03-06 12:52:42','2019-03-06 12:52:42'),(1475,1492,NULL,NULL,'2019-03-06 12:52:45','2019-03-06 12:52:45'),(1476,1493,NULL,NULL,'2019-03-06 12:52:47','2019-03-06 12:52:47'),(1477,1494,NULL,NULL,'2019-03-06 12:52:49','2019-03-06 12:52:49'),(1478,1495,NULL,NULL,'2019-03-06 12:52:51','2019-03-06 12:52:51'),(1479,1496,NULL,NULL,'2019-03-06 13:12:54','2019-03-06 13:12:54'),(1480,1497,NULL,NULL,'2019-03-06 13:12:57','2019-03-06 13:12:57'),(1481,1498,NULL,NULL,'2019-03-06 13:12:59','2019-03-06 13:12:59'),(1482,1499,NULL,NULL,'2019-03-06 13:13:01','2019-03-06 13:13:01'),(1483,1500,NULL,NULL,'2019-03-06 13:13:03','2019-03-06 13:13:03'),(1484,1501,NULL,NULL,'2019-03-06 13:13:06','2019-03-06 13:13:06'),(1485,1502,NULL,NULL,'2019-03-06 13:13:08','2019-03-06 13:13:08'),(1486,1503,NULL,NULL,'2019-03-06 13:13:10','2019-03-06 13:13:10'),(1487,1504,NULL,NULL,'2019-03-06 13:13:12','2019-03-06 13:13:12'),(1488,1505,NULL,NULL,'2019-03-06 13:13:14','2019-03-06 13:13:14'),(1489,1506,NULL,NULL,'2019-03-06 13:13:16','2019-03-06 13:13:16'),(1490,1507,NULL,NULL,'2019-03-06 13:13:18','2019-03-06 13:13:18'),(1491,1508,NULL,NULL,'2019-03-06 13:13:20','2019-03-06 13:13:20'),(1492,1509,NULL,NULL,'2019-03-06 13:13:22','2019-03-06 13:13:22'),(1493,1510,NULL,NULL,'2019-03-06 13:13:24','2019-03-06 13:13:24'),(1494,1511,NULL,NULL,'2019-03-06 13:13:26','2019-03-06 13:13:26'),(1495,1512,NULL,NULL,'2019-03-06 13:13:28','2019-03-06 13:13:28'),(1496,1513,NULL,NULL,'2019-03-06 13:13:30','2019-03-06 13:13:30'),(1497,1514,NULL,NULL,'2019-03-06 13:13:32','2019-03-06 13:13:32'),(1498,1515,NULL,NULL,'2019-03-06 13:13:37','2019-03-06 13:13:37'),(1499,1516,NULL,NULL,'2019-03-06 13:13:39','2019-03-06 13:13:39'),(1500,1517,NULL,NULL,'2019-03-06 13:13:43','2019-03-06 13:13:43'),(1501,1518,NULL,NULL,'2019-03-06 13:13:47','2019-03-06 13:13:47'),(1502,1519,NULL,NULL,'2019-03-06 13:13:49','2019-03-06 13:13:49'),(1503,1520,NULL,NULL,'2019-03-06 13:13:51','2019-03-06 13:13:51'),(1504,1521,NULL,NULL,'2019-03-06 13:13:53','2019-03-06 13:13:53'),(1505,1522,NULL,NULL,'2019-03-06 13:13:56','2019-03-06 13:13:56'),(1506,1523,NULL,NULL,'2019-03-06 13:13:58','2019-03-06 13:13:58'),(1507,1524,NULL,NULL,'2019-03-06 13:14:00','2019-03-06 13:14:00'),(1508,1525,NULL,NULL,'2019-03-06 13:14:02','2019-03-06 13:14:02'),(1509,1526,NULL,NULL,'2019-03-06 13:14:04','2019-03-06 13:14:04'),(1510,1527,NULL,NULL,'2019-03-06 13:16:31','2019-03-06 13:16:31'),(1511,1528,NULL,NULL,'2019-03-06 13:16:36','2019-03-06 13:16:36'),(1512,1529,NULL,NULL,'2019-03-06 13:16:40','2019-03-06 13:16:40'),(1513,1530,NULL,NULL,'2019-03-06 13:16:44','2019-03-06 13:16:44'),(1514,1531,NULL,NULL,'2019-03-06 13:16:47','2019-03-06 13:16:47'),(1515,1532,NULL,NULL,'2019-03-06 13:16:51','2019-03-06 13:16:51'),(1516,1533,NULL,NULL,'2019-03-06 13:16:55','2019-03-06 13:16:55'),(1517,1534,NULL,NULL,'2019-03-06 13:16:59','2019-03-06 13:16:59'),(1518,1535,NULL,NULL,'2019-03-06 13:17:03','2019-03-06 13:17:03'),(1519,1536,NULL,NULL,'2019-03-06 13:25:46','2019-03-06 13:25:46'),(1520,1537,NULL,NULL,'2019-03-06 13:25:48','2019-03-06 13:25:48'),(1521,1538,NULL,NULL,'2019-03-06 13:25:50','2019-03-06 13:25:50'),(1522,1539,NULL,NULL,'2019-03-06 13:25:52','2019-03-06 13:25:52'),(1523,1540,NULL,NULL,'2019-03-06 13:25:54','2019-03-06 13:25:54'),(1524,1541,NULL,NULL,'2019-03-06 13:25:56','2019-03-06 13:25:56'),(1525,1542,NULL,NULL,'2019-03-06 13:25:58','2019-03-06 13:25:58'),(1526,1543,NULL,NULL,'2019-03-06 13:26:00','2019-03-06 13:26:00'),(1527,1544,NULL,NULL,'2019-03-06 13:26:02','2019-03-06 13:26:02'),(1528,1545,NULL,NULL,'2019-03-06 13:26:05','2019-03-06 13:26:05'),(1529,1546,NULL,NULL,'2019-03-06 13:26:07','2019-03-06 13:26:07'),(1530,1547,NULL,NULL,'2019-03-06 13:26:09','2019-03-06 13:26:09'),(1531,1548,NULL,NULL,'2019-03-06 13:26:11','2019-03-06 13:26:11'),(1532,1549,NULL,NULL,'2019-03-06 13:26:13','2019-03-06 13:26:13'),(1533,1550,NULL,NULL,'2019-03-06 13:26:16','2019-03-06 13:26:16'),(1534,1551,NULL,NULL,'2019-03-06 13:26:19','2019-03-06 13:26:19'),(1535,1552,NULL,NULL,'2019-03-06 13:26:21','2019-03-06 13:26:21'),(1536,1553,NULL,NULL,'2019-03-06 13:26:23','2019-03-06 13:26:23'),(1537,1554,NULL,NULL,'2019-03-06 13:26:25','2019-03-06 13:26:25'),(1538,1555,NULL,NULL,'2019-03-06 13:26:27','2019-03-06 13:26:27'),(1539,1556,NULL,NULL,'2019-03-06 13:26:28','2019-03-06 13:26:28'),(1540,1557,NULL,NULL,'2019-03-06 13:26:30','2019-03-06 13:26:30'),(1541,1558,NULL,NULL,'2019-03-06 13:26:32','2019-03-06 13:26:32'),(1542,1559,NULL,NULL,'2019-03-06 13:26:34','2019-03-06 13:26:34'),(1543,1560,NULL,NULL,'2019-03-06 13:26:36','2019-03-06 13:26:36'),(1544,1561,NULL,NULL,'2019-03-06 13:26:38','2019-03-06 13:26:38'),(1545,1562,NULL,NULL,'2019-03-06 13:28:21','2019-03-06 13:28:21'),(1546,1563,NULL,NULL,'2019-03-06 13:28:25','2019-03-06 13:28:25'),(1547,1564,NULL,NULL,'2019-03-06 13:28:30','2019-03-06 13:28:30'),(1548,1565,NULL,NULL,'2019-03-06 13:28:34','2019-03-06 13:28:34'),(1549,1566,NULL,NULL,'2019-03-06 13:28:39','2019-03-06 13:28:39'),(1550,1567,NULL,NULL,'2019-03-06 13:28:42','2019-03-06 13:28:42'),(1551,1568,NULL,NULL,'2019-03-06 13:28:46','2019-03-06 13:28:46'),(1552,1569,NULL,NULL,'2019-03-06 13:37:39','2019-03-06 13:37:39'),(1553,1570,NULL,NULL,'2019-03-06 13:37:44','2019-03-06 13:37:44'),(1554,1571,NULL,NULL,'2019-03-06 13:37:48','2019-03-06 13:37:48'),(1555,1572,NULL,NULL,'2019-03-06 13:37:52','2019-03-06 13:37:52'),(1556,1573,NULL,NULL,'2019-03-06 13:37:54','2019-03-06 13:37:54'),(1557,1574,NULL,NULL,'2019-03-06 13:37:57','2019-03-06 13:37:57'),(1558,1575,NULL,NULL,'2019-03-06 13:38:00','2019-03-06 13:38:00'),(1559,1576,NULL,NULL,'2019-03-06 13:38:00','2019-03-06 13:38:00'),(1560,1577,NULL,NULL,'2019-03-06 13:38:03','2019-03-06 13:38:03'),(1561,1578,NULL,NULL,'2019-03-06 13:38:06','2019-03-06 13:38:06'),(1562,1579,NULL,NULL,'2019-03-06 13:38:08','2019-03-06 13:38:08'),(1563,1580,NULL,NULL,'2019-03-06 13:38:09','2019-03-06 13:38:09'),(1564,1581,NULL,NULL,'2019-03-06 13:38:12','2019-03-06 13:38:12'),(1565,1582,NULL,NULL,'2019-03-06 13:38:15','2019-03-06 13:38:15'),(1566,1583,NULL,NULL,'2019-03-06 13:38:16','2019-03-06 13:38:16'),(1567,1584,NULL,NULL,'2019-03-06 13:38:18','2019-03-06 13:38:18'),(1568,1585,NULL,NULL,'2019-03-06 13:38:21','2019-03-06 13:38:21'),(1569,1586,NULL,NULL,'2019-03-06 13:38:24','2019-03-06 13:38:24'),(1570,1587,NULL,NULL,'2019-03-06 13:38:27','2019-03-06 13:38:27'),(1571,1588,NULL,NULL,'2019-03-06 13:38:28','2019-03-06 13:38:28'),(1572,1589,NULL,NULL,'2019-03-06 13:38:30','2019-03-06 13:38:30'),(1573,1590,NULL,NULL,'2019-03-06 13:38:32','2019-03-06 13:38:32'),(1574,1591,NULL,NULL,'2019-03-06 13:38:34','2019-03-06 13:38:34'),(1575,1592,NULL,NULL,'2019-03-06 13:38:36','2019-03-06 13:38:36'),(1576,1593,NULL,NULL,'2019-03-06 13:38:40','2019-03-06 13:38:40'),(1577,1594,NULL,NULL,'2019-03-06 13:38:41','2019-03-06 13:38:41'),(1578,1595,NULL,NULL,'2019-03-06 13:38:44','2019-03-06 13:38:44'),(1579,1596,NULL,NULL,'2019-03-06 13:38:46','2019-03-06 13:38:46'),(1580,1597,NULL,NULL,'2019-03-06 14:06:09','2019-03-06 14:06:09'),(1581,1598,NULL,NULL,'2019-03-06 14:10:33','2019-03-06 14:10:33'),(1582,1599,NULL,NULL,'2019-03-06 14:10:35','2019-03-06 14:10:35'),(1583,1600,NULL,NULL,'2019-03-06 14:10:36','2019-03-06 14:10:36'),(1584,1601,NULL,NULL,'2019-03-06 14:10:38','2019-03-06 14:10:38'),(1585,1602,NULL,NULL,'2019-03-06 14:10:41','2019-03-06 14:10:41'),(1586,1603,NULL,NULL,'2019-03-06 14:10:43','2019-03-06 14:10:43'),(1587,1604,NULL,NULL,'2019-03-06 14:10:46','2019-03-06 14:10:46'),(1588,1605,NULL,NULL,'2019-03-06 14:14:58','2019-03-06 14:14:58'),(1589,1606,NULL,NULL,'2019-03-06 14:15:01','2019-03-06 14:15:01'),(1590,1607,NULL,NULL,'2019-03-06 14:15:03','2019-03-06 14:15:03'),(1591,1608,NULL,NULL,'2019-03-06 14:15:07','2019-03-06 14:15:07'),(1592,1609,NULL,NULL,'2019-03-06 14:15:10','2019-03-06 14:15:10'),(1593,1610,NULL,NULL,'2019-03-06 14:15:12','2019-03-06 14:15:12'),(1594,1611,NULL,NULL,'2019-03-06 14:15:14','2019-03-06 14:15:14'),(1595,1612,NULL,NULL,'2019-03-06 14:15:16','2019-03-06 14:15:16'),(1596,1613,NULL,NULL,'2019-03-06 14:15:19','2019-03-06 14:15:19'),(1597,1614,NULL,NULL,'2019-03-06 14:15:21','2019-03-06 14:15:21'),(1598,1615,NULL,NULL,'2019-03-06 14:15:23','2019-03-06 14:15:23'),(1599,1616,NULL,NULL,'2019-03-06 14:15:25','2019-03-06 14:15:25'),(1600,1617,NULL,NULL,'2019-03-06 14:15:27','2019-03-06 14:15:27'),(1601,1618,NULL,NULL,'2019-03-06 14:15:29','2019-03-06 14:15:29'),(1602,1619,NULL,NULL,'2019-03-06 14:15:30','2019-03-06 14:15:30'),(1603,1620,NULL,NULL,'2019-03-06 14:20:50','2019-03-06 14:20:50'),(1604,1621,NULL,NULL,'2019-03-06 14:20:53','2019-03-06 14:20:53'),(1605,1622,NULL,NULL,'2019-03-06 14:20:55','2019-03-06 14:20:55'),(1606,1623,NULL,NULL,'2019-03-06 14:20:58','2019-03-06 14:20:58'),(1607,1624,NULL,NULL,'2019-03-06 14:21:00','2019-03-06 14:21:00'),(1608,1625,NULL,NULL,'2019-03-06 14:21:02','2019-03-06 14:21:02'),(1609,1626,NULL,NULL,'2019-03-06 14:21:03','2019-03-06 14:21:03'),(1610,1627,NULL,NULL,'2019-03-06 14:21:05','2019-03-06 14:21:05'),(1611,1628,NULL,NULL,'2019-03-06 14:21:06','2019-03-06 14:21:06'),(1612,1629,NULL,NULL,'2019-03-06 14:21:08','2019-03-06 14:21:08'),(1613,1630,NULL,NULL,'2019-03-06 14:21:09','2019-03-06 14:21:09'),(1614,1631,NULL,NULL,'2019-03-06 14:24:19','2019-03-06 14:24:19'),(1615,1632,NULL,NULL,'2019-03-06 14:24:20','2019-03-06 14:24:20'),(1616,1633,NULL,NULL,'2019-03-06 14:24:22','2019-03-06 14:24:22'),(1617,1634,NULL,NULL,'2019-03-06 14:24:24','2019-03-06 14:24:24'),(1618,1635,NULL,NULL,'2019-03-06 14:24:25','2019-03-06 14:24:25'),(1619,1636,NULL,NULL,'2019-03-06 14:24:27','2019-03-06 14:24:27'),(1620,1637,NULL,NULL,'2019-03-06 14:24:29','2019-03-06 14:24:29'),(1621,1638,NULL,NULL,'2019-03-06 14:24:31','2019-03-06 14:24:31'),(1622,1639,NULL,NULL,'2019-03-06 14:24:32','2019-03-06 14:24:32'),(1623,1640,NULL,NULL,'2019-03-06 14:24:34','2019-03-06 14:24:34'),(1624,1641,NULL,NULL,'2019-03-06 14:24:35','2019-03-06 14:24:35'),(1625,1642,NULL,NULL,'2019-03-06 14:24:37','2019-03-06 14:24:37'),(1626,1643,NULL,NULL,'2019-03-06 14:24:38','2019-03-06 14:24:38'),(1627,1644,NULL,NULL,'2019-03-06 14:31:37','2019-03-06 14:31:37'),(1628,1645,NULL,NULL,'2019-03-06 14:31:39','2019-03-06 14:31:39'),(1629,1646,NULL,NULL,'2019-03-06 14:31:41','2019-03-06 14:31:41'),(1630,1647,NULL,NULL,'2019-03-06 14:31:42','2019-03-06 14:31:42'),(1631,1648,NULL,NULL,'2019-03-06 14:31:43','2019-03-06 14:31:43'),(1632,1649,NULL,NULL,'2019-03-06 14:31:45','2019-03-06 14:31:45'),(1633,1650,NULL,NULL,'2019-03-06 14:31:46','2019-03-06 14:31:46'),(1634,1651,NULL,NULL,'2019-03-06 14:31:48','2019-03-06 14:31:48'),(1635,1652,NULL,NULL,'2019-03-06 14:31:49','2019-03-06 14:31:49'),(1636,1653,NULL,NULL,'2019-03-06 14:31:51','2019-03-06 14:31:51'),(1637,1654,NULL,NULL,'2019-03-06 14:31:52','2019-03-06 14:31:52'),(1638,1655,NULL,NULL,'2019-03-06 14:31:54','2019-03-06 14:31:54'),(1639,1656,NULL,NULL,'2019-03-06 14:31:55','2019-03-06 14:31:55'),(1640,1657,NULL,NULL,'2019-03-06 14:34:31','2019-03-06 14:34:31'),(1641,1658,NULL,NULL,'2019-03-06 14:34:33','2019-03-06 14:34:33'),(1642,1659,NULL,NULL,'2019-03-06 14:34:35','2019-03-06 14:34:35'),(1643,1660,NULL,NULL,'2019-03-06 14:34:37','2019-03-06 14:34:37'),(1644,1661,NULL,NULL,'2019-03-06 14:34:38','2019-03-06 14:34:38'),(1645,1662,NULL,NULL,'2019-03-06 14:34:40','2019-03-06 14:34:40'),(1646,1663,NULL,NULL,'2019-03-06 14:34:43','2019-03-06 14:34:43'),(1647,1664,NULL,NULL,'2019-03-06 14:34:45','2019-03-06 14:34:45'),(1648,1665,NULL,NULL,'2019-03-06 14:34:46','2019-03-06 14:34:46'),(1649,1666,NULL,NULL,'2019-03-06 14:34:48','2019-03-06 14:34:48'),(1650,1667,NULL,NULL,'2019-03-06 14:34:50','2019-03-06 14:34:50'),(1651,1668,NULL,NULL,'2019-03-06 14:34:53','2019-03-06 14:34:53'),(1652,1669,NULL,NULL,'2019-03-06 14:34:55','2019-03-06 14:34:55'),(1653,1670,NULL,NULL,'2019-03-06 14:34:57','2019-03-06 14:34:57'),(1654,1671,NULL,NULL,'2019-03-06 14:34:58','2019-03-06 14:34:58'),(1655,1672,NULL,NULL,'2019-03-06 14:35:00','2019-03-06 14:35:00'),(1656,1673,NULL,NULL,'2019-03-06 14:35:01','2019-03-06 14:35:01'),(1657,1674,NULL,NULL,'2019-03-06 14:35:03','2019-03-06 14:35:03'),(1658,1675,NULL,NULL,'2019-03-06 14:35:05','2019-03-06 14:35:05'),(1659,1676,NULL,NULL,'2019-03-06 14:35:06','2019-03-06 14:35:06'),(1660,1677,NULL,NULL,'2019-03-06 14:35:08','2019-03-06 14:35:08'),(1661,1678,NULL,NULL,'2019-03-06 14:41:32','2019-03-06 14:41:32'),(1662,1679,NULL,NULL,'2019-03-06 14:41:34','2019-03-06 14:41:34'),(1663,1680,NULL,NULL,'2019-03-06 14:41:35','2019-03-06 14:41:35'),(1664,1681,NULL,NULL,'2019-03-06 14:41:37','2019-03-06 14:41:37'),(1665,1682,NULL,NULL,'2019-03-06 14:41:39','2019-03-06 14:41:39'),(1666,1683,NULL,NULL,'2019-03-06 14:41:41','2019-03-06 14:41:41'),(1667,1684,NULL,NULL,'2019-03-06 14:41:42','2019-03-06 14:41:42'),(1668,1685,NULL,NULL,'2019-03-06 14:41:44','2019-03-06 14:41:44'),(1669,1686,NULL,NULL,'2019-03-06 14:41:45','2019-03-06 14:41:45'),(1670,1687,NULL,NULL,'2019-03-06 14:41:47','2019-03-06 14:41:47'),(1671,1688,NULL,NULL,'2019-03-06 14:41:49','2019-03-06 14:41:49'),(1672,1689,NULL,NULL,'2019-03-06 14:41:50','2019-03-06 14:41:50'),(1673,1690,NULL,NULL,'2019-03-06 14:41:52','2019-03-06 14:41:52'),(1674,1692,NULL,NULL,'2019-03-06 14:41:54','2019-03-06 14:41:54'),(1675,1693,NULL,NULL,'2019-03-06 14:41:57','2019-03-06 14:41:57'),(1676,1694,NULL,NULL,'2019-03-06 14:41:58','2019-03-06 14:41:58'),(1677,1695,NULL,NULL,'2019-03-06 14:42:00','2019-03-06 14:42:00'),(1678,1696,NULL,NULL,'2019-03-06 14:42:02','2019-03-06 14:42:02'),(1679,1697,NULL,NULL,'2019-03-06 14:42:04','2019-03-06 14:42:04'),(1680,1698,NULL,NULL,'2019-03-06 14:42:05','2019-03-06 14:42:05'),(1681,1699,NULL,NULL,'2019-03-06 14:42:07','2019-03-06 14:42:07'),(1682,1700,NULL,NULL,'2019-03-06 14:47:21','2019-03-06 14:47:21'),(1683,1701,NULL,NULL,'2019-03-06 14:47:23','2019-03-06 14:47:23'),(1684,1702,NULL,NULL,'2019-03-06 14:47:24','2019-03-06 14:47:24'),(1685,1703,NULL,NULL,'2019-03-06 14:47:25','2019-03-06 14:47:25'),(1686,1704,NULL,NULL,'2019-03-06 14:47:27','2019-03-06 14:47:27'),(1687,1705,NULL,NULL,'2019-03-06 14:47:29','2019-03-06 14:47:29'),(1688,1706,NULL,NULL,'2019-03-06 14:47:31','2019-03-06 14:47:31'),(1689,1707,NULL,NULL,'2019-03-06 14:47:33','2019-03-06 14:47:33'),(1690,1708,NULL,NULL,'2019-03-06 14:47:34','2019-03-06 14:47:34'),(1691,1709,NULL,NULL,'2019-03-06 14:47:36','2019-03-06 14:47:36'),(1692,1710,NULL,NULL,'2019-03-06 14:51:15','2019-03-06 14:51:15'),(1693,1711,NULL,NULL,'2019-03-06 14:51:17','2019-03-06 14:51:17'),(1694,1712,NULL,NULL,'2019-03-06 14:51:18','2019-03-06 14:51:18'),(1695,1713,NULL,NULL,'2019-03-06 14:51:20','2019-03-06 14:51:20'),(1696,1714,NULL,NULL,'2019-03-06 14:51:21','2019-03-06 14:51:21'),(1697,1715,NULL,NULL,'2019-03-06 14:51:23','2019-03-06 14:51:23'),(1698,1716,NULL,NULL,'2019-03-06 14:51:24','2019-03-06 14:51:24'),(1699,1717,NULL,NULL,'2019-03-06 14:51:26','2019-03-06 14:51:26'),(1700,1718,NULL,NULL,'2019-03-06 14:51:28','2019-03-06 14:51:28'),(1701,1719,NULL,NULL,'2019-03-06 14:51:29','2019-03-06 14:51:29'),(1702,1720,NULL,NULL,'2019-03-06 14:51:31','2019-03-06 14:51:31'),(1703,1721,NULL,NULL,'2019-03-06 14:51:33','2019-03-06 14:51:33'),(1704,1722,NULL,NULL,'2019-03-06 14:51:34','2019-03-06 14:51:34'),(1705,1723,NULL,NULL,'2019-03-06 14:51:36','2019-03-06 14:51:36'),(1706,1724,NULL,NULL,'2019-03-06 14:51:37','2019-03-06 14:51:37'),(1707,1725,NULL,NULL,'2019-03-06 14:51:39','2019-03-06 14:51:39'),(1708,1726,NULL,NULL,'2019-03-06 14:56:22','2019-03-06 14:56:22'),(1709,1727,NULL,NULL,'2019-03-06 14:56:25','2019-03-06 14:56:25'),(1710,1728,NULL,NULL,'2019-03-06 14:56:29','2019-03-06 14:56:29'),(1711,1729,NULL,NULL,'2019-03-06 14:56:34','2019-03-06 14:56:34'),(1712,1730,NULL,NULL,'2019-03-06 14:56:38','2019-03-06 14:56:38'),(1713,1731,NULL,NULL,'2019-03-06 14:56:42','2019-03-06 14:56:42'),(1714,1732,NULL,NULL,'2019-03-06 14:56:50','2019-03-06 14:56:50'),(1715,1733,NULL,NULL,'2019-03-06 14:56:57','2019-03-06 14:56:57'),(1716,1734,NULL,NULL,'2019-03-06 14:57:03','2019-03-06 14:57:03'),(1717,1735,NULL,NULL,'2019-03-06 14:57:10','2019-03-06 14:57:10'),(1718,1736,NULL,NULL,'2019-03-06 15:00:22','2019-03-06 15:00:22'),(1719,1737,NULL,NULL,'2019-03-06 15:00:24','2019-03-06 15:00:24'),(1720,1738,NULL,NULL,'2019-03-06 15:00:25','2019-03-06 15:00:25'),(1721,1739,NULL,NULL,'2019-03-06 15:00:27','2019-03-06 15:00:27'),(1722,1740,NULL,NULL,'2019-03-06 15:00:28','2019-03-06 15:00:28'),(1723,1741,NULL,NULL,'2019-03-06 15:00:30','2019-03-06 15:00:30'),(1724,1742,NULL,NULL,'2019-03-06 15:00:31','2019-03-06 15:00:31'),(1725,1743,NULL,NULL,'2019-03-06 15:00:33','2019-03-06 15:00:33'),(1726,1744,NULL,NULL,'2019-03-06 15:00:34','2019-03-06 15:00:34'),(1727,1745,NULL,NULL,'2019-03-06 15:00:36','2019-03-06 15:00:36'),(1728,1746,NULL,NULL,'2019-03-06 15:00:37','2019-03-06 15:00:37'),(1729,1747,NULL,NULL,'2019-03-06 15:00:39','2019-03-06 15:00:39'),(1730,1748,NULL,NULL,'2019-03-06 15:00:40','2019-03-06 15:00:40'),(1731,1749,NULL,NULL,'2019-03-06 15:00:42','2019-03-06 15:00:42'),(1732,1750,NULL,NULL,'2019-03-06 15:00:43','2019-03-06 15:00:43'),(1733,1751,NULL,NULL,'2019-03-06 15:00:45','2019-03-06 15:00:45'),(1734,1752,NULL,NULL,'2019-03-06 15:00:46','2019-03-06 15:00:46'),(1735,1753,NULL,NULL,'2019-03-06 15:00:48','2019-03-06 15:00:48'),(1736,1754,NULL,NULL,'2019-03-06 15:00:50','2019-03-06 15:00:50'),(1737,1755,NULL,NULL,'2019-03-06 15:00:51','2019-03-06 15:00:51'),(1738,1756,NULL,NULL,'2019-03-06 15:00:53','2019-03-06 15:00:53'),(1739,1757,NULL,NULL,'2019-03-06 15:17:40','2019-03-06 15:17:40'),(1740,1758,NULL,NULL,'2019-03-06 15:17:44','2019-03-06 15:17:44'),(1741,1759,NULL,NULL,'2019-03-06 15:17:49','2019-03-06 15:17:49'),(1742,1760,NULL,NULL,'2019-03-06 15:17:52','2019-03-06 15:17:52'),(1743,1761,NULL,NULL,'2019-03-06 15:17:57','2019-03-06 15:17:57'),(1744,1762,NULL,NULL,'2019-03-06 15:18:01','2019-03-06 15:18:01'),(1745,1763,NULL,NULL,'2019-03-06 15:18:05','2019-03-06 15:18:05'),(1746,1764,NULL,NULL,'2019-03-06 15:18:09','2019-03-06 15:18:09'),(1747,1765,NULL,NULL,'2019-03-06 15:18:13','2019-03-06 15:18:13'),(1748,1766,NULL,NULL,'2019-03-06 15:18:18','2019-03-06 15:18:18'),(1749,1767,NULL,NULL,'2019-03-06 15:18:22','2019-03-06 15:18:22'),(1750,1768,NULL,NULL,'2019-03-06 15:18:26','2019-03-06 15:18:26'),(1751,1769,NULL,NULL,'2019-03-06 15:18:30','2019-03-06 15:18:30'),(1752,1770,NULL,NULL,'2019-03-06 15:18:35','2019-03-06 15:18:35'),(1753,1771,NULL,NULL,'2019-03-06 15:18:39','2019-03-06 15:18:39'),(1754,1772,NULL,NULL,'2019-03-06 15:18:43','2019-03-06 15:18:43'),(1755,1773,NULL,NULL,'2019-03-06 15:18:47','2019-03-06 15:18:47'),(1756,1774,NULL,NULL,'2019-03-06 15:18:51','2019-03-06 15:18:51'),(1757,1775,NULL,NULL,'2019-03-06 15:18:55','2019-03-06 15:18:55'),(1758,1776,NULL,NULL,'2019-03-06 15:18:59','2019-03-06 15:18:59'),(1759,1777,NULL,NULL,'2019-03-06 15:19:03','2019-03-06 15:19:03'),(1760,1778,NULL,NULL,'2019-03-06 15:19:47','2019-03-06 15:19:47'),(1761,1779,NULL,NULL,'2019-03-06 15:19:48','2019-03-06 15:19:48'),(1762,1780,NULL,NULL,'2019-03-06 15:19:50','2019-03-06 15:19:50'),(1763,1781,NULL,NULL,'2019-03-06 15:19:51','2019-03-06 15:19:51'),(1764,1782,NULL,NULL,'2019-03-06 15:19:53','2019-03-06 15:19:53'),(1765,1783,NULL,NULL,'2019-03-06 15:19:54','2019-03-06 15:19:54'),(1766,1784,NULL,NULL,'2019-03-06 15:19:56','2019-03-06 15:19:56'),(1767,1785,NULL,NULL,'2019-03-06 15:19:58','2019-03-06 15:19:58'),(1768,1786,NULL,NULL,'2019-03-06 15:19:59','2019-03-06 15:19:59'),(1769,1787,NULL,NULL,'2019-03-06 15:20:01','2019-03-06 15:20:01'),(1770,1788,NULL,NULL,'2019-03-06 15:24:47','2019-03-06 15:24:47'),(1771,1789,NULL,NULL,'2019-03-06 15:24:50','2019-03-06 15:24:50'),(1772,1790,NULL,NULL,'2019-03-06 15:24:53','2019-03-06 15:24:53'),(1773,1791,NULL,NULL,'2019-03-06 15:24:56','2019-03-06 15:24:56'),(1774,1792,NULL,NULL,'2019-03-06 15:24:59','2019-03-06 15:24:59'),(1775,1793,NULL,NULL,'2019-03-06 15:25:02','2019-03-06 15:25:02'),(1776,1794,NULL,NULL,'2019-03-06 15:25:05','2019-03-06 15:25:05'),(1777,1795,NULL,NULL,'2019-03-06 15:25:08','2019-03-06 15:25:08'),(1778,1796,NULL,NULL,'2019-03-06 15:25:10','2019-03-06 15:25:10'),(1779,1797,NULL,NULL,'2019-03-06 15:25:13','2019-03-06 15:25:13'),(1780,1798,NULL,NULL,'2019-03-06 15:25:16','2019-03-06 15:25:16'),(1781,1799,NULL,NULL,'2019-03-06 15:25:19','2019-03-06 15:25:19'),(1782,1800,NULL,NULL,'2019-03-06 15:25:22','2019-03-06 15:25:22'),(1783,1801,NULL,NULL,'2019-03-06 15:25:24','2019-03-06 15:25:24'),(1784,1802,NULL,NULL,'2019-03-06 15:25:27','2019-03-06 15:25:27'),(1785,1803,NULL,NULL,'2019-03-06 15:25:30','2019-03-06 15:25:30'),(1786,1804,NULL,NULL,'2019-03-06 15:25:33','2019-03-06 15:25:33'),(1787,1805,NULL,NULL,'2019-03-06 15:25:36','2019-03-06 15:25:36'),(1788,1806,NULL,NULL,'2019-03-06 15:25:38','2019-03-06 15:25:38'),(1789,1807,NULL,NULL,'2019-03-06 15:25:41','2019-03-06 15:25:41'),(1790,1808,NULL,NULL,'2019-03-06 15:25:44','2019-03-06 15:25:44'),(1791,1809,NULL,NULL,'2019-03-06 15:30:56','2019-03-06 15:30:56'),(1792,1810,NULL,NULL,'2019-03-06 15:30:58','2019-03-06 15:30:58'),(1793,1811,NULL,NULL,'2019-03-06 15:31:01','2019-03-06 15:31:01'),(1794,1812,NULL,NULL,'2019-03-06 15:31:04','2019-03-06 15:31:04'),(1795,1813,NULL,NULL,'2019-03-06 15:31:05','2019-03-06 15:31:05'),(1796,1814,NULL,NULL,'2019-03-06 15:31:06','2019-03-06 15:31:06'),(1797,1815,NULL,NULL,'2019-03-06 15:31:07','2019-03-06 15:31:07'),(1798,1816,NULL,NULL,'2019-03-06 15:31:10','2019-03-06 15:31:10'),(1799,1817,NULL,NULL,'2019-03-06 15:31:12','2019-03-06 15:31:12'),(1816,1834,NULL,NULL,'2019-03-06 15:40:36','2019-03-06 15:40:36'),(1817,1835,NULL,NULL,'2019-03-06 15:40:37','2019-03-06 15:40:37'),(1818,1836,NULL,NULL,'2019-03-06 15:40:38','2019-03-06 15:40:38'),(1819,1837,NULL,NULL,'2019-03-06 15:40:39','2019-03-06 15:40:39'),(1820,1838,NULL,NULL,'2019-03-06 15:40:40','2019-03-06 15:40:40'),(1821,1839,NULL,NULL,'2019-03-06 15:40:41','2019-03-06 15:40:41'),(1822,1840,NULL,NULL,'2019-03-06 15:40:41','2019-03-06 15:40:41'),(1823,1841,NULL,NULL,'2019-03-06 15:44:32','2019-03-06 15:44:32'),(1824,1842,NULL,NULL,'2019-03-06 15:44:34','2019-03-06 15:44:34'),(1825,1843,NULL,NULL,'2019-03-06 15:44:37','2019-03-06 15:44:37'),(1826,1844,NULL,NULL,'2019-03-06 15:44:39','2019-03-06 15:44:39'),(1827,1845,NULL,NULL,'2019-03-06 15:44:42','2019-03-06 15:44:42'),(1828,1846,NULL,NULL,'2019-03-06 15:44:44','2019-03-06 15:44:44'),(1829,1847,NULL,NULL,'2019-03-06 15:44:46','2019-03-06 15:44:46'),(1830,1848,NULL,NULL,'2019-03-06 15:44:50','2019-03-06 15:44:50'),(1831,1849,NULL,NULL,'2019-03-06 15:44:53','2019-03-06 15:44:53'),(1832,1850,NULL,NULL,'2019-03-06 15:44:56','2019-03-06 15:44:56'),(1833,1851,NULL,NULL,'2019-03-06 15:44:58','2019-03-06 15:44:58'),(1834,1852,NULL,NULL,'2019-03-06 15:45:01','2019-03-06 15:45:01'),(1835,1853,NULL,NULL,'2019-03-06 15:45:03','2019-03-06 15:45:03'),(1836,1854,NULL,NULL,'2019-03-06 15:45:06','2019-03-06 15:45:06'),(1837,1855,NULL,NULL,'2019-03-06 15:45:09','2019-03-06 15:45:09'),(1838,1856,NULL,NULL,'2019-03-06 15:45:11','2019-03-06 15:45:11'),(1839,1857,NULL,NULL,'2019-03-06 15:45:14','2019-03-06 15:45:14'),(1840,1858,NULL,NULL,'2019-03-06 15:45:16','2019-03-06 15:45:16'),(1841,1859,NULL,NULL,'2019-03-06 15:45:18','2019-03-06 15:45:18'),(1842,1860,NULL,NULL,'2019-03-06 15:45:21','2019-03-06 15:45:21'),(1843,1861,NULL,NULL,'2019-03-06 15:45:24','2019-03-06 15:45:24'),(1844,1862,NULL,NULL,'2019-03-06 15:45:26','2019-03-06 15:45:26'),(1845,1863,NULL,NULL,'2019-03-06 15:45:28','2019-03-06 15:45:28'),(1846,1864,NULL,NULL,'2019-03-06 15:45:31','2019-03-06 15:45:31'),(1847,1865,NULL,NULL,'2019-03-06 15:45:33','2019-03-06 15:45:33'),(1848,1866,NULL,NULL,'2019-03-06 15:45:36','2019-03-06 15:45:36'),(1849,1867,NULL,NULL,'2019-03-06 15:50:32','2019-03-06 15:50:32'),(1850,1868,NULL,NULL,'2019-03-06 15:50:34','2019-03-06 15:50:34'),(1851,1869,NULL,NULL,'2019-03-06 15:50:35','2019-03-06 15:50:35'),(1852,1870,NULL,NULL,'2019-03-06 15:50:36','2019-03-06 15:50:36'),(1853,1871,NULL,NULL,'2019-03-06 15:50:37','2019-03-06 15:50:37'),(1854,1872,NULL,NULL,'2019-03-06 15:50:38','2019-03-06 15:50:38'),(1855,1873,NULL,NULL,'2019-03-06 15:50:40','2019-03-06 15:50:40'),(1856,1874,NULL,NULL,'2019-03-06 15:50:41','2019-03-06 15:50:41'),(1857,1875,NULL,NULL,'2019-03-06 15:50:42','2019-03-06 15:50:42'),(1858,1876,NULL,NULL,'2019-03-06 15:52:06','2019-03-06 15:52:06'),(1859,1877,NULL,NULL,'2019-03-06 15:52:11','2019-03-06 15:52:11'),(1860,1878,NULL,NULL,'2019-03-06 15:52:15','2019-03-06 15:52:15'),(1861,1879,NULL,NULL,'2019-03-06 15:52:19','2019-03-06 15:52:19'),(1862,1880,NULL,NULL,'2019-03-06 15:52:22','2019-03-06 15:52:22'),(1863,1881,NULL,NULL,'2019-03-06 15:52:26','2019-03-06 15:52:26'),(1864,1882,NULL,NULL,'2019-03-06 15:52:30','2019-03-06 15:52:30'),(1865,1883,NULL,NULL,'2019-03-06 15:52:34','2019-03-06 15:52:34'),(1866,1884,NULL,NULL,'2019-03-06 15:52:38','2019-03-06 15:52:38'),(1867,1885,NULL,NULL,'2019-03-06 15:52:41','2019-03-06 15:52:41'),(1868,1886,NULL,NULL,'2019-03-06 15:52:45','2019-03-06 15:52:45'),(1869,1887,NULL,NULL,'2019-03-06 15:52:49','2019-03-06 15:52:49'),(1870,1888,NULL,NULL,'2019-03-06 15:52:53','2019-03-06 15:52:53'),(1871,1889,NULL,NULL,'2019-03-06 15:57:33','2019-03-06 15:57:33'),(1872,1890,NULL,NULL,'2019-03-06 15:57:36','2019-03-06 15:57:36'),(1873,1891,NULL,NULL,'2019-03-06 15:57:37','2019-03-06 15:57:37'),(1874,1892,NULL,NULL,'2019-03-06 15:57:39','2019-03-06 15:57:39'),(1875,1893,NULL,NULL,'2019-03-06 16:01:17','2019-03-06 16:01:17'),(1876,1894,NULL,NULL,'2019-03-06 16:01:18','2019-03-06 16:01:18'),(1877,1895,NULL,NULL,'2019-03-06 16:01:20','2019-03-06 16:01:20'),(1878,1896,NULL,NULL,'2019-03-06 16:01:22','2019-03-06 16:01:22'),(1879,1897,NULL,NULL,'2019-03-06 16:01:53','2019-03-06 16:01:53'),(1880,1898,NULL,NULL,'2019-03-06 16:01:54','2019-03-06 16:01:54'),(1881,1899,NULL,NULL,'2019-03-06 16:01:55','2019-03-06 16:01:55'),(1882,1900,NULL,NULL,'2019-03-06 16:01:57','2019-03-06 16:01:57'),(1883,1901,NULL,NULL,'2019-03-06 16:01:58','2019-03-06 16:01:58'),(1884,1902,NULL,NULL,'2019-03-06 16:01:59','2019-03-06 16:01:59'),(1885,1903,NULL,NULL,'2019-03-06 16:02:00','2019-03-06 16:02:00'),(1886,1904,NULL,NULL,'2019-03-06 16:06:01','2019-03-06 16:06:01'),(1887,1905,NULL,NULL,'2019-03-06 16:06:04','2019-03-06 16:06:04'),(1888,1906,NULL,NULL,'2019-03-06 16:06:07','2019-03-06 16:06:07'),(1889,1907,NULL,NULL,'2019-03-06 16:06:10','2019-03-06 16:06:10'),(1890,1908,NULL,NULL,'2019-03-06 16:06:12','2019-03-06 16:06:12'),(1891,1909,NULL,NULL,'2019-03-06 16:06:16','2019-03-06 16:06:16'),(1892,1910,NULL,NULL,'2019-03-06 16:06:18','2019-03-06 16:06:18'),(1893,1911,NULL,NULL,'2019-03-06 16:11:14','2019-03-06 16:11:14'),(1894,1912,NULL,NULL,'2019-03-06 16:11:17','2019-03-06 16:11:17'),(1895,1913,NULL,NULL,'2019-03-06 16:11:20','2019-03-06 16:11:20'),(1896,1914,NULL,NULL,'2019-03-06 16:11:22','2019-03-06 16:11:22'),(1897,1915,NULL,NULL,'2019-03-06 16:11:24','2019-03-06 16:11:24'),(1898,1916,NULL,NULL,'2019-03-06 16:11:26','2019-03-06 16:11:26'),(1899,1917,NULL,NULL,'2019-03-06 16:11:29','2019-03-06 16:11:29'),(1900,1918,NULL,NULL,'2019-03-06 16:11:31','2019-03-06 16:11:31'),(1901,1919,NULL,NULL,'2019-03-06 16:11:33','2019-03-06 16:11:33'),(1902,1920,NULL,NULL,'2019-03-06 16:11:36','2019-03-06 16:11:36'),(1910,1928,NULL,NULL,'2019-03-06 16:35:33','2019-03-06 16:35:33'),(1911,1929,NULL,NULL,'2019-03-06 16:35:35','2019-03-06 16:35:35'),(1912,1930,NULL,NULL,'2019-03-06 16:35:35','2019-03-06 16:35:35'),(1913,1931,NULL,NULL,'2019-03-06 16:35:36','2019-03-06 16:35:36'),(1914,1932,NULL,NULL,'2019-03-06 16:35:37','2019-03-06 16:35:37'),(1915,1933,NULL,NULL,'2019-03-06 16:35:38','2019-03-06 16:35:38'),(1916,1934,NULL,NULL,'2019-03-06 16:35:39','2019-03-06 16:35:39'),(1917,1935,NULL,NULL,'2019-03-06 16:35:40','2019-03-06 16:35:40'),(1918,1936,NULL,NULL,'2019-03-06 16:35:41','2019-03-06 16:35:41'),(1919,1937,NULL,NULL,'2019-03-06 16:35:42','2019-03-06 16:35:42'),(1920,1938,NULL,NULL,'2019-03-06 16:35:43','2019-03-06 16:35:43'),(1921,1939,NULL,NULL,'2019-03-06 16:35:43','2019-03-06 16:35:43'),(1922,1940,NULL,NULL,'2019-03-06 16:35:44','2019-03-06 16:35:44'),(1923,1941,NULL,NULL,'2019-03-06 16:35:45','2019-03-06 16:35:45'),(1924,1942,NULL,NULL,'2019-03-06 16:35:46','2019-03-06 16:35:46'),(1925,1943,NULL,NULL,'2019-03-06 16:35:47','2019-03-06 16:35:47'),(1926,1944,NULL,NULL,'2019-03-06 16:42:26','2019-03-06 16:42:26'),(1927,1945,NULL,NULL,'2019-03-06 16:42:28','2019-03-06 16:42:28'),(1928,1946,NULL,NULL,'2019-03-06 16:42:29','2019-03-06 16:42:29'),(1929,1947,NULL,NULL,'2019-03-06 16:50:12','2019-03-06 16:50:12'),(1930,1948,NULL,NULL,'2019-03-06 16:50:14','2019-03-06 16:50:14'),(1931,1949,NULL,NULL,'2019-03-06 16:50:15','2019-03-06 16:50:15'),(1932,1950,NULL,NULL,'2019-03-06 16:50:16','2019-03-06 16:50:16'),(1933,1951,NULL,NULL,'2019-03-06 16:50:17','2019-03-06 16:50:17'),(1934,1952,NULL,NULL,'2019-03-06 16:50:18','2019-03-06 16:50:18'),(1935,1953,NULL,NULL,'2019-03-06 16:50:19','2019-03-06 16:50:19'),(1936,1954,NULL,NULL,'2019-03-06 16:50:20','2019-03-06 16:50:20'),(1937,1955,NULL,NULL,'2019-03-06 16:50:21','2019-03-06 16:50:21'),(1938,1956,NULL,NULL,'2019-03-06 16:50:23','2019-03-06 16:50:23'),(1939,1957,NULL,NULL,'2019-03-06 16:50:24','2019-03-06 16:50:24'),(1940,1958,NULL,NULL,'2019-03-06 16:50:25','2019-03-06 16:50:25'),(1941,1959,NULL,NULL,'2019-03-06 16:50:26','2019-03-06 16:50:26'),(1942,1960,NULL,NULL,'2019-03-06 16:50:27','2019-03-06 16:50:27'),(1943,1961,NULL,NULL,'2019-03-06 16:50:28','2019-03-06 16:50:28'),(1944,1962,NULL,NULL,'2019-03-06 16:58:40','2019-03-06 16:58:40'),(1945,1963,NULL,NULL,'2019-03-06 16:58:42','2019-03-06 16:58:42'),(1946,1964,NULL,NULL,'2019-03-06 16:58:43','2019-03-06 16:58:43'),(1947,1965,NULL,NULL,'2019-03-06 16:58:44','2019-03-06 16:58:44'),(1948,1966,NULL,NULL,'2019-03-06 16:58:45','2019-03-06 16:58:45'),(1949,1967,NULL,NULL,'2019-03-06 16:58:46','2019-03-06 16:58:46'),(1950,1968,NULL,NULL,'2019-03-06 16:58:47','2019-03-06 16:58:47'),(1951,1969,NULL,NULL,'2019-03-06 16:58:48','2019-03-06 16:58:48'),(1952,1970,NULL,NULL,'2019-03-06 16:58:49','2019-03-06 16:58:49'),(1953,1971,NULL,NULL,'2019-03-06 16:58:51','2019-03-06 16:58:51'),(1954,1972,NULL,NULL,'2019-03-06 16:58:52','2019-03-06 16:58:52'),(1955,1973,NULL,NULL,'2019-03-06 17:08:40','2019-03-06 17:08:40'),(1956,1974,NULL,NULL,'2019-03-06 17:08:41','2019-03-06 17:08:41'),(1957,1975,NULL,NULL,'2019-03-06 17:08:42','2019-03-06 17:08:42'),(1958,1976,NULL,NULL,'2019-03-06 17:08:43','2019-03-06 17:08:43'),(1959,1977,NULL,NULL,'2019-03-06 17:08:44','2019-03-06 17:08:44'),(1960,1978,NULL,NULL,'2019-03-06 17:08:45','2019-03-06 17:08:45'),(1961,1979,NULL,NULL,'2019-03-06 17:08:47','2019-03-06 17:08:47'),(1962,1980,NULL,NULL,'2019-03-06 17:08:48','2019-03-06 17:08:48'),(1963,1981,NULL,NULL,'2019-03-06 17:08:49','2019-03-06 17:08:49'),(1964,1982,NULL,NULL,'2019-03-06 17:08:50','2019-03-06 17:08:50'),(1965,1983,NULL,NULL,'2019-03-06 17:08:51','2019-03-06 17:08:51'),(1966,1984,NULL,NULL,'2019-03-06 17:08:52','2019-03-06 17:08:52'),(1967,1985,NULL,NULL,'2019-03-06 17:08:53','2019-03-06 17:08:53'),(1968,1986,NULL,NULL,'2019-03-06 17:08:54','2019-03-06 17:08:54'),(1969,1987,NULL,NULL,'2019-03-06 17:08:55','2019-03-06 17:08:55'),(1970,1988,NULL,NULL,'2019-03-06 17:08:56','2019-03-06 17:08:56'),(1971,1989,NULL,NULL,'2019-03-06 17:08:57','2019-03-06 17:08:57'),(1972,1990,NULL,NULL,'2019-03-06 17:08:59','2019-03-06 17:08:59'),(1973,1991,NULL,NULL,'2019-03-06 17:09:00','2019-03-06 17:09:00'),(1974,1992,NULL,NULL,'2019-03-07 08:06:45','2019-03-07 08:06:45'),(1975,1993,NULL,NULL,'2019-03-07 08:06:46','2019-03-07 08:06:46'),(1976,1994,NULL,NULL,'2019-03-07 08:06:48','2019-03-07 08:06:48'),(1977,1995,NULL,NULL,'2019-03-07 08:06:49','2019-03-07 08:06:49'),(1978,1996,NULL,NULL,'2019-03-07 08:06:51','2019-03-07 08:06:51'),(1979,1997,NULL,NULL,'2019-03-07 08:11:15','2019-03-07 08:11:15'),(1980,1998,NULL,NULL,'2019-03-07 08:11:17','2019-03-07 08:11:17'),(1981,1999,NULL,NULL,'2019-03-07 08:11:19','2019-03-07 08:11:19'),(1982,2000,NULL,NULL,'2019-03-07 08:11:20','2019-03-07 08:11:20'),(1983,2001,NULL,NULL,'2019-03-07 08:11:22','2019-03-07 08:11:22'),(1984,2002,NULL,NULL,'2019-03-07 08:14:47','2019-03-07 08:14:47'),(1985,2003,NULL,NULL,'2019-03-07 08:14:50','2019-03-07 08:14:50'),(1986,2004,NULL,NULL,'2019-03-07 08:14:54','2019-03-07 08:14:54'),(1987,2005,NULL,NULL,'2019-03-07 08:14:58','2019-03-07 08:14:58'),(1988,2006,NULL,NULL,'2019-03-07 08:15:01','2019-03-07 08:15:01'),(1989,2007,NULL,NULL,'2019-03-07 08:15:05','2019-03-07 08:15:05'),(1990,2008,NULL,NULL,'2019-03-07 08:15:09','2019-03-07 08:15:09'),(1991,2009,NULL,NULL,'2019-03-07 08:15:14','2019-03-07 08:15:14'),(1992,2010,NULL,NULL,'2019-03-07 08:15:18','2019-03-07 08:15:18'),(1993,2011,NULL,NULL,'2019-03-07 08:19:41','2019-03-07 08:19:41'),(1994,2012,NULL,NULL,'2019-03-07 08:19:42','2019-03-07 08:19:42'),(1995,2013,NULL,NULL,'2019-03-07 08:19:43','2019-03-07 08:19:43'),(1996,2014,NULL,NULL,'2019-03-07 08:19:45','2019-03-07 08:19:45'),(1997,2015,NULL,NULL,'2019-03-07 08:19:46','2019-03-07 08:19:46'),(1998,2016,NULL,NULL,'2019-03-07 08:19:47','2019-03-07 08:19:47'),(1999,2017,NULL,NULL,'2019-03-07 08:19:48','2019-03-07 08:19:48'),(2000,2018,NULL,NULL,'2019-03-07 08:23:14','2019-03-07 08:23:14'),(2001,2019,NULL,NULL,'2019-03-07 08:23:16','2019-03-07 08:23:16'),(2002,2020,NULL,NULL,'2019-03-07 08:23:17','2019-03-07 08:23:17'),(2003,2021,NULL,NULL,'2019-03-07 08:24:21','2019-03-07 08:24:21'),(2004,2022,NULL,NULL,'2019-03-07 08:24:25','2019-03-07 08:24:25'),(2005,2023,NULL,NULL,'2019-03-07 08:24:28','2019-03-07 08:24:28'),(2006,2024,NULL,NULL,'2019-03-07 08:24:32','2019-03-07 08:24:32'),(2007,2025,NULL,NULL,'2019-03-07 08:24:35','2019-03-07 08:24:35'),(2008,2026,NULL,NULL,'2019-03-07 08:24:39','2019-03-07 08:24:39'),(2009,2027,NULL,NULL,'2019-03-07 08:24:43','2019-03-07 08:24:43'),(2010,2028,NULL,NULL,'2019-03-07 08:24:47','2019-03-07 08:24:47'),(2011,2029,NULL,NULL,'2019-03-07 08:24:51','2019-03-07 08:24:51'),(2012,2030,NULL,NULL,'2019-03-07 08:29:38','2019-03-07 08:29:38'),(2013,2031,NULL,NULL,'2019-03-07 08:29:39','2019-03-07 08:29:39'),(2014,2032,NULL,NULL,'2019-03-07 08:29:41','2019-03-07 08:29:41'),(2024,2042,NULL,NULL,'2019-03-07 08:36:30','2019-03-07 08:36:30'),(2025,2043,NULL,NULL,'2019-03-07 08:36:34','2019-03-07 08:36:34'),(2026,2044,NULL,NULL,'2019-03-07 08:36:38','2019-03-07 08:36:38'),(2027,2045,NULL,NULL,'2019-03-07 08:36:42','2019-03-07 08:36:42'),(2028,2046,NULL,NULL,'2019-03-07 08:36:46','2019-03-07 08:36:46'),(2029,2047,NULL,NULL,'2019-03-07 08:36:50','2019-03-07 08:36:50'),(2030,2048,NULL,NULL,'2019-03-07 08:36:54','2019-03-07 08:36:54'),(2031,2049,NULL,NULL,'2019-03-07 08:36:57','2019-03-07 08:36:57'),(2032,2050,NULL,NULL,'2019-03-07 08:37:01','2019-03-07 08:37:01'),(2033,2051,NULL,NULL,'2019-03-07 08:38:51','2019-03-07 08:38:51'),(2034,2052,NULL,NULL,'2019-03-07 08:38:53','2019-03-07 08:38:53'),(2035,2053,NULL,NULL,'2019-03-07 08:38:55','2019-03-07 08:38:55'),(2036,2054,NULL,NULL,'2019-03-07 08:38:57','2019-03-07 08:38:57'),(2037,2055,NULL,NULL,'2019-03-07 08:38:58','2019-03-07 08:38:58'),(2038,2056,NULL,NULL,'2019-03-07 08:40:36','2019-03-07 08:40:36'),(2039,2057,NULL,NULL,'2019-03-07 08:40:37','2019-03-07 08:40:37'),(2040,2058,NULL,NULL,'2019-03-07 08:40:38','2019-03-07 08:40:38'),(2041,2059,NULL,NULL,'2019-03-07 08:40:39','2019-03-07 08:40:39'),(2042,2060,NULL,NULL,'2019-03-07 08:40:40','2019-03-07 08:40:40'),(2043,2061,NULL,NULL,'2019-03-07 08:45:17','2019-03-07 08:45:17'),(2044,2062,NULL,NULL,'2019-03-07 08:45:21','2019-03-07 08:45:21'),(2045,2063,NULL,NULL,'2019-03-07 08:45:24','2019-03-07 08:45:24'),(2046,2064,NULL,NULL,'2019-03-07 08:45:28','2019-03-07 08:45:28'),(2047,2065,NULL,NULL,'2019-03-07 08:45:32','2019-03-07 08:45:32'),(2048,2066,NULL,NULL,'2019-03-07 08:49:03','2019-03-07 08:49:03'),(2049,2067,NULL,NULL,'2019-03-07 08:49:05','2019-03-07 08:49:05'),(2050,2068,NULL,NULL,'2019-03-07 08:49:06','2019-03-07 08:49:06'),(2051,2069,NULL,NULL,'2019-03-07 08:49:08','2019-03-07 08:49:08'),(2052,2070,NULL,NULL,'2019-03-07 08:49:09','2019-03-07 08:49:09'),(2053,2071,NULL,NULL,'2019-03-07 08:49:11','2019-03-07 08:49:11'),(2054,2072,NULL,NULL,'2019-03-07 08:49:12','2019-03-07 08:49:12'),(2055,2073,NULL,NULL,'2019-03-07 08:50:02','2019-03-07 08:50:02'),(2056,2074,NULL,NULL,'2019-03-07 08:50:04','2019-03-07 08:50:04'),(2057,2075,NULL,NULL,'2019-03-07 08:50:06','2019-03-07 08:50:06'),(2058,2076,NULL,NULL,'2019-03-07 08:50:08','2019-03-07 08:50:08'),(2059,2077,NULL,NULL,'2019-03-07 08:50:10','2019-03-07 08:50:10'),(2060,2078,NULL,NULL,'2019-03-07 08:53:07','2019-03-07 08:53:07'),(2061,2079,NULL,NULL,'2019-03-07 08:53:11','2019-03-07 08:53:11'),(2062,2080,NULL,NULL,'2019-03-07 08:53:15','2019-03-07 08:53:15'),(2063,2081,NULL,NULL,'2019-03-07 08:53:18','2019-03-07 08:53:18'),(2064,2082,NULL,NULL,'2019-03-07 08:53:22','2019-03-07 08:53:22'),(2065,2083,NULL,NULL,'2019-03-07 08:53:25','2019-03-07 08:53:25'),(2066,2084,NULL,NULL,'2019-03-07 08:53:29','2019-03-07 08:53:29'),(2067,2085,NULL,NULL,'2019-03-07 08:56:19','2019-03-07 08:56:19'),(2068,2086,NULL,NULL,'2019-03-07 08:56:21','2019-03-07 08:56:21'),(2069,2087,NULL,NULL,'2019-03-07 08:56:23','2019-03-07 08:56:23'),(2070,2088,NULL,NULL,'2019-03-07 08:56:25','2019-03-07 08:56:25'),(2071,2089,NULL,NULL,'2019-03-07 08:56:27','2019-03-07 08:56:27'),(2072,2090,NULL,NULL,'2019-03-07 08:57:36','2019-03-07 08:57:36'),(2073,2091,NULL,NULL,'2019-03-07 08:57:39','2019-03-07 08:57:39'),(2074,2092,NULL,NULL,'2019-03-07 08:57:42','2019-03-07 08:57:42'),(2075,2093,NULL,NULL,'2019-03-07 08:57:46','2019-03-07 08:57:46'),(2076,2094,NULL,NULL,'2019-03-07 08:57:49','2019-03-07 08:57:49'),(2077,2095,NULL,NULL,'2019-03-07 08:57:53','2019-03-07 08:57:53'),(2078,2096,NULL,NULL,'2019-03-07 08:57:56','2019-03-07 08:57:56'),(2079,2097,NULL,NULL,'2019-03-07 08:58:00','2019-03-07 08:58:00'),(2080,2098,NULL,NULL,'2019-03-07 08:58:04','2019-03-07 08:58:04'),(2081,2099,NULL,NULL,'2019-03-07 09:04:08','2019-03-07 09:04:08'),(2082,2100,NULL,NULL,'2019-03-07 09:04:10','2019-03-07 09:04:10'),(2083,2101,NULL,NULL,'2019-03-07 09:04:11','2019-03-07 09:04:11'),(2084,2102,NULL,NULL,'2019-03-07 09:04:13','2019-03-07 09:04:13'),(2085,2103,NULL,NULL,'2019-03-07 09:04:15','2019-03-07 09:04:15'),(2086,2104,NULL,NULL,'2019-03-07 09:04:17','2019-03-07 09:04:17'),(2087,2105,NULL,NULL,'2019-03-07 09:04:19','2019-03-07 09:04:19'),(2088,2106,NULL,NULL,'2019-03-07 09:05:27','2019-03-07 09:05:27'),(2089,2107,NULL,NULL,'2019-03-07 09:05:30','2019-03-07 09:05:30'),(2090,2108,NULL,NULL,'2019-03-07 09:05:34','2019-03-07 09:05:34'),(2091,2109,NULL,NULL,'2019-03-07 09:05:37','2019-03-07 09:05:37'),(2092,2110,NULL,NULL,'2019-03-07 09:05:40','2019-03-07 09:05:40'),(2093,2111,NULL,NULL,'2019-03-07 09:05:43','2019-03-07 09:05:43'),(2094,2112,NULL,NULL,'2019-03-07 09:05:47','2019-03-07 09:05:47'),(2095,2113,NULL,NULL,'2019-03-07 09:05:50','2019-03-07 09:05:50'),(2096,2114,NULL,NULL,'2019-03-07 09:05:54','2019-03-07 09:05:54'),(2097,2115,NULL,NULL,'2019-03-07 09:05:57','2019-03-07 09:05:57'),(2098,2116,NULL,NULL,'2019-03-07 09:06:01','2019-03-07 09:06:01'),(2099,2117,NULL,NULL,'2019-03-07 09:12:32','2019-03-07 09:12:32'),(2100,2118,NULL,NULL,'2019-03-07 09:12:35','2019-03-07 09:12:35'),(2101,2119,NULL,NULL,'2019-03-07 09:12:39','2019-03-07 09:12:39'),(2102,2120,NULL,NULL,'2019-03-07 09:12:43','2019-03-07 09:12:43'),(2103,2121,NULL,NULL,'2019-03-07 09:12:47','2019-03-07 09:12:47'),(2104,2122,NULL,NULL,'2019-03-07 09:12:51','2019-03-07 09:12:51'),(2105,2123,NULL,NULL,'2019-03-07 09:12:54','2019-03-07 09:12:54'),(2106,2124,NULL,NULL,'2019-03-07 09:18:01','2019-03-07 09:18:01'),(2107,2125,NULL,NULL,'2019-03-07 09:18:04','2019-03-07 09:18:04'),(2108,2126,NULL,NULL,'2019-03-07 09:18:07','2019-03-07 09:18:07'),(2109,2127,NULL,NULL,'2019-03-07 09:18:11','2019-03-07 09:18:11'),(2110,2128,NULL,NULL,'2019-03-07 09:18:14','2019-03-07 09:18:14'),(2111,2129,NULL,NULL,'2019-03-07 09:18:18','2019-03-07 09:18:18'),(2112,2130,NULL,NULL,'2019-03-07 09:18:21','2019-03-07 09:18:21'),(2113,2131,NULL,NULL,'2019-03-07 09:18:25','2019-03-07 09:18:25'),(2114,2132,NULL,NULL,'2019-03-07 09:18:29','2019-03-07 09:18:29'),(2115,2133,NULL,NULL,'2019-03-07 09:19:01','2019-03-07 09:19:01'),(2116,2134,NULL,NULL,'2019-03-07 09:19:03','2019-03-07 09:19:03'),(2117,2135,NULL,NULL,'2019-03-07 09:19:04','2019-03-07 09:19:04'),(2118,2136,NULL,NULL,'2019-03-07 09:23:28','2019-03-07 09:23:28'),(2119,2137,NULL,NULL,'2019-03-07 09:23:30','2019-03-07 09:23:30'),(2120,2138,NULL,NULL,'2019-03-07 09:23:31','2019-03-07 09:23:31'),(2121,2139,NULL,NULL,'2019-03-07 09:24:45','2019-03-07 09:24:45'),(2122,2140,NULL,NULL,'2019-03-07 09:24:48','2019-03-07 09:24:48'),(2123,2141,NULL,NULL,'2019-03-07 09:24:52','2019-03-07 09:24:52'),(2124,2142,NULL,NULL,'2019-03-07 09:24:55','2019-03-07 09:24:55'),(2125,2143,NULL,NULL,'2019-03-07 09:24:59','2019-03-07 09:24:59'),(2126,2144,NULL,NULL,'2019-03-07 09:25:03','2019-03-07 09:25:03'),(2127,2145,NULL,NULL,'2019-03-07 09:25:06','2019-03-07 09:25:06'),(2128,2146,NULL,NULL,'2019-03-07 09:29:29','2019-03-07 09:29:29'),(2129,2147,NULL,NULL,'2019-03-07 09:29:31','2019-03-07 09:29:31'),(2130,2148,NULL,NULL,'2019-03-07 09:29:32','2019-03-07 09:29:32'),(2131,2149,NULL,NULL,'2019-03-07 09:29:33','2019-03-07 09:29:33'),(2132,2150,NULL,NULL,'2019-03-07 09:29:35','2019-03-07 09:29:35'),(2133,2151,NULL,NULL,'2019-03-07 09:29:39','2019-03-07 09:29:39'),(2134,2152,NULL,NULL,'2019-03-07 09:29:42','2019-03-07 09:29:42'),(2135,2153,NULL,NULL,'2019-03-07 09:29:46','2019-03-07 09:29:46'),(2136,2154,NULL,NULL,'2019-03-07 09:29:49','2019-03-07 09:29:49'),(2137,2155,NULL,NULL,'2019-03-07 09:29:53','2019-03-07 09:29:53'),(2138,2156,NULL,NULL,'2019-03-07 09:29:56','2019-03-07 09:29:56'),(2139,2157,NULL,NULL,'2019-03-07 09:30:00','2019-03-07 09:30:00'),(2140,2158,NULL,NULL,'2019-03-07 09:33:29','2019-03-07 09:33:29'),(2141,2159,NULL,NULL,'2019-03-07 09:33:31','2019-03-07 09:33:31'),(2142,2160,NULL,NULL,'2019-03-07 09:33:32','2019-03-07 09:33:32'),(2143,2161,NULL,NULL,'2019-03-07 09:33:34','2019-03-07 09:33:34'),(2144,2162,NULL,NULL,'2019-03-07 09:33:35','2019-03-07 09:33:35'),(2145,2163,NULL,NULL,'2019-03-07 09:33:37','2019-03-07 09:33:37'),(2146,2164,NULL,NULL,'2019-03-07 09:33:38','2019-03-07 09:33:38'),(2147,2165,NULL,NULL,'2019-03-07 09:33:40','2019-03-07 09:33:40'),(2148,2166,NULL,NULL,'2019-03-07 09:33:41','2019-03-07 09:33:41'),(2149,2167,NULL,NULL,'2019-03-07 09:33:43','2019-03-07 09:33:43'),(2150,2168,NULL,NULL,'2019-03-07 09:33:44','2019-03-07 09:33:44'),(2151,2169,NULL,NULL,'2019-03-07 09:35:49','2019-03-07 09:35:49'),(2152,2170,NULL,NULL,'2019-03-07 09:35:51','2019-03-07 09:35:51'),(2153,2171,NULL,NULL,'2019-03-07 09:35:53','2019-03-07 09:35:53'),(2154,2172,NULL,NULL,'2019-03-07 09:37:37','2019-03-07 09:37:37'),(2155,2173,NULL,NULL,'2019-03-07 09:37:40','2019-03-07 09:37:40'),(2156,2174,NULL,NULL,'2019-03-07 09:37:43','2019-03-07 09:37:43'),(2157,2175,NULL,NULL,'2019-03-07 09:37:45','2019-03-07 09:37:45'),(2158,2176,NULL,NULL,'2019-03-07 09:37:48','2019-03-07 09:37:48'),(2159,2177,NULL,NULL,'2019-03-07 09:37:50','2019-03-07 09:37:50'),(2160,2178,NULL,NULL,'2019-03-07 09:37:53','2019-03-07 09:37:53'),(2161,2179,NULL,NULL,'2019-03-07 09:40:43','2019-03-07 09:40:43'),(2162,2180,NULL,NULL,'2019-03-07 09:40:45','2019-03-07 09:40:45'),(2163,2181,NULL,NULL,'2019-03-07 09:40:46','2019-03-07 09:40:46'),(2164,2182,NULL,NULL,'2019-03-07 09:40:48','2019-03-07 09:40:48'),(2165,2183,NULL,NULL,'2019-03-07 09:40:50','2019-03-07 09:40:50'),(2166,2184,NULL,NULL,'2019-03-07 09:40:52','2019-03-07 09:40:52'),(2167,2185,NULL,NULL,'2019-03-07 09:40:54','2019-03-07 09:40:54'),(2168,2186,NULL,NULL,'2019-03-07 09:41:49','2019-03-07 09:41:49'),(2169,2187,NULL,NULL,'2019-03-07 09:41:50','2019-03-07 09:41:50'),(2170,2188,NULL,NULL,'2019-03-07 09:41:52','2019-03-07 09:41:52'),(2171,2189,NULL,NULL,'2019-03-07 09:41:54','2019-03-07 09:41:54'),(2172,2190,NULL,NULL,'2019-03-07 09:41:56','2019-03-07 09:41:56'),(2173,2191,NULL,NULL,'2019-03-07 09:48:04','2019-03-07 09:48:04'),(2174,2192,NULL,NULL,'2019-03-07 09:48:08','2019-03-07 09:48:08'),(2175,2193,NULL,NULL,'2019-03-07 09:48:12','2019-03-07 09:48:12'),(2176,2194,NULL,NULL,'2019-03-07 09:48:16','2019-03-07 09:48:16'),(2177,2195,NULL,NULL,'2019-03-07 09:48:20','2019-03-07 09:48:20'),(2178,2196,NULL,NULL,'2019-03-07 09:48:24','2019-03-07 09:48:24'),(2179,2197,NULL,NULL,'2019-03-07 09:48:28','2019-03-07 09:48:28'),(2180,2198,NULL,NULL,'2019-03-07 09:52:09','2019-03-07 09:52:09'),(2181,2199,NULL,NULL,'2019-03-07 09:52:12','2019-03-07 09:52:12'),(2182,2200,NULL,NULL,'2019-03-07 09:52:16','2019-03-07 09:52:16'),(2183,2201,NULL,NULL,'2019-03-07 09:52:19','2019-03-07 09:52:19'),(2184,2202,NULL,NULL,'2019-03-07 09:52:23','2019-03-07 09:52:23'),(2185,2203,NULL,NULL,'2019-03-07 09:52:26','2019-03-07 09:52:26'),(2186,2204,NULL,NULL,'2019-03-07 09:52:30','2019-03-07 09:52:30'),(2187,2205,NULL,NULL,'2019-03-07 10:10:45','2019-03-07 10:10:45'),(2188,2206,NULL,NULL,'2019-03-07 10:10:47','2019-03-07 10:10:47'),(2189,2207,NULL,NULL,'2019-03-07 10:10:49','2019-03-07 10:10:49'),(2190,2208,NULL,NULL,'2019-03-07 10:16:32','2019-03-07 10:16:32'),(2191,2209,NULL,NULL,'2019-03-07 10:16:34','2019-03-07 10:16:34'),(2192,2210,NULL,NULL,'2019-03-07 10:16:36','2019-03-07 10:16:36'),(2193,2211,NULL,NULL,'2019-03-07 10:16:38','2019-03-07 10:16:38'),(2194,2212,NULL,NULL,'2019-03-07 10:16:40','2019-03-07 10:16:40'),(2195,2213,NULL,NULL,'2019-03-07 10:21:37','2019-03-07 10:21:37'),(2196,2214,NULL,NULL,'2019-03-07 10:21:41','2019-03-07 10:21:41'),(2197,2215,NULL,NULL,'2019-03-07 10:21:45','2019-03-07 10:21:45'),(2198,2216,NULL,NULL,'2019-03-07 10:21:49','2019-03-07 10:21:49'),(2199,2217,NULL,NULL,'2019-03-07 10:21:54','2019-03-07 10:21:54'),(2200,2218,NULL,NULL,'2019-03-07 10:21:58','2019-03-07 10:21:58'),(2201,2219,NULL,NULL,'2019-03-07 10:22:01','2019-03-07 10:22:01'),(2202,2220,NULL,NULL,'2019-03-07 10:23:23','2019-03-07 10:23:23'),(2203,2221,NULL,NULL,'2019-03-07 10:23:25','2019-03-07 10:23:25'),(2204,2222,NULL,NULL,'2019-03-07 10:23:27','2019-03-07 10:23:27'),(2205,2223,NULL,NULL,'2019-03-07 10:26:04','2019-03-07 10:26:04'),(2206,2224,NULL,NULL,'2019-03-07 10:26:08','2019-03-07 10:26:08'),(2207,2225,NULL,NULL,'2019-03-07 10:26:11','2019-03-07 10:26:11'),(2208,2226,NULL,NULL,'2019-03-07 10:26:15','2019-03-07 10:26:15'),(2209,2227,NULL,NULL,'2019-03-07 10:26:18','2019-03-07 10:26:18'),(2210,2228,NULL,NULL,'2019-03-07 10:26:22','2019-03-07 10:26:22'),(2211,2229,NULL,NULL,'2019-03-07 10:26:25','2019-03-07 10:26:25'),(2212,2230,NULL,NULL,'2019-03-07 10:30:39','2019-03-07 10:30:39'),(2213,2231,NULL,NULL,'2019-03-07 10:30:41','2019-03-07 10:30:41'),(2214,2232,NULL,NULL,'2019-03-07 10:30:43','2019-03-07 10:30:43'),(2215,2233,NULL,NULL,'2019-03-07 10:30:45','2019-03-07 10:30:45'),(2216,2234,NULL,NULL,'2019-03-07 10:30:47','2019-03-07 10:30:47'),(2217,2235,NULL,NULL,'2019-03-07 10:31:13','2019-03-07 10:31:13'),(2218,2236,NULL,NULL,'2019-03-07 10:31:15','2019-03-07 10:31:15'),(2219,2237,NULL,NULL,'2019-03-07 10:31:16','2019-03-07 10:31:16'),(2220,2238,NULL,NULL,'2019-03-07 10:31:17','2019-03-07 10:31:17'),(2221,2239,NULL,NULL,'2019-03-07 10:31:19','2019-03-07 10:31:19'),(2222,2240,NULL,NULL,'2019-03-07 10:31:20','2019-03-07 10:31:20'),(2223,2241,NULL,NULL,'2019-03-07 10:31:22','2019-03-07 10:31:22'),(2224,2242,NULL,NULL,'2019-03-07 10:31:23','2019-03-07 10:31:23'),(2225,2243,NULL,NULL,'2019-03-07 10:31:25','2019-03-07 10:31:25'),(2226,2244,NULL,NULL,'2019-03-07 10:31:26','2019-03-07 10:31:26'),(2227,2245,NULL,NULL,'2019-03-07 10:31:28','2019-03-07 10:31:28'),(2228,2246,NULL,NULL,'2019-03-07 10:34:27','2019-03-07 10:34:27'),(2229,2247,NULL,NULL,'2019-03-07 10:34:30','2019-03-07 10:34:30'),(2230,2248,NULL,NULL,'2019-03-07 10:34:32','2019-03-07 10:34:32'),(2231,2249,NULL,NULL,'2019-03-07 10:34:35','2019-03-07 10:34:35'),(2232,2250,NULL,NULL,'2019-03-07 10:34:38','2019-03-07 10:34:38'),(2233,2251,NULL,NULL,'2019-03-07 10:34:41','2019-03-07 10:34:41'),(2234,2252,NULL,NULL,'2019-03-07 10:34:43','2019-03-07 10:34:43'),(2235,2253,NULL,NULL,'2019-03-07 10:42:32','2019-03-07 10:42:32'),(2236,2254,NULL,NULL,'2019-03-07 10:42:33','2019-03-07 10:42:33'),(2237,2255,NULL,NULL,'2019-03-07 10:42:35','2019-03-07 10:42:35'),(2238,2256,NULL,NULL,'2019-03-07 10:42:56','2019-03-07 10:42:56'),(2239,2257,NULL,NULL,'2019-03-07 10:42:57','2019-03-07 10:42:57'),(2240,2258,NULL,NULL,'2019-03-07 10:42:59','2019-03-07 10:42:59'),(2241,2259,NULL,NULL,'2019-03-07 10:43:00','2019-03-07 10:43:00'),(2242,2260,NULL,NULL,'2019-03-07 10:43:02','2019-03-07 10:43:02'),(2243,2261,NULL,NULL,'2019-03-07 10:43:04','2019-03-07 10:43:04'),(2244,2262,NULL,NULL,'2019-03-07 10:43:05','2019-03-07 10:43:05'),(2245,2263,NULL,NULL,'2019-03-07 10:43:06','2019-03-07 10:43:06'),(2246,2264,NULL,NULL,'2019-03-07 10:43:08','2019-03-07 10:43:08'),(2247,2265,NULL,NULL,'2019-03-07 10:43:09','2019-03-07 10:43:09'),(2248,2266,NULL,NULL,'2019-03-07 10:43:11','2019-03-07 10:43:11'),(2249,2267,NULL,NULL,'2019-03-07 10:43:12','2019-03-07 10:43:12'),(2250,2268,NULL,NULL,'2019-03-07 10:43:14','2019-03-07 10:43:14'),(2260,2278,NULL,NULL,'2019-03-07 10:50:50','2019-03-07 10:50:50'),(2261,2279,NULL,NULL,'2019-03-07 10:50:53','2019-03-07 10:50:53'),(2262,2280,NULL,NULL,'2019-03-07 10:50:57','2019-03-07 10:50:57'),(2263,2281,NULL,NULL,'2019-03-07 10:51:00','2019-03-07 10:51:00'),(2264,2282,NULL,NULL,'2019-03-07 10:51:04','2019-03-07 10:51:04'),(2265,2283,NULL,NULL,'2019-03-07 10:51:08','2019-03-07 10:51:08'),(2266,2284,NULL,NULL,'2019-03-07 10:51:12','2019-03-07 10:51:12'),(2267,2285,NULL,NULL,'2019-03-07 10:55:47','2019-03-07 10:55:47'),(2268,2286,NULL,NULL,'2019-03-07 10:55:48','2019-03-07 10:55:48'),(2269,2287,NULL,NULL,'2019-03-07 10:55:50','2019-03-07 10:55:50'),(2270,2288,NULL,NULL,'2019-03-07 10:55:52','2019-03-07 10:55:52'),(2271,2289,NULL,NULL,'2019-03-07 10:55:53','2019-03-07 10:55:53'),(2272,2290,NULL,NULL,'2019-03-07 10:55:55','2019-03-07 10:55:55'),(2273,2291,NULL,NULL,'2019-03-07 10:55:56','2019-03-07 10:55:56'),(2274,2292,NULL,NULL,'2019-03-07 11:03:05','2019-03-07 11:03:05'),(2275,2293,NULL,NULL,'2019-03-07 11:03:09','2019-03-07 11:03:09'),(2276,2294,NULL,NULL,'2019-03-07 11:03:12','2019-03-07 11:03:12'),(2277,2295,NULL,NULL,'2019-03-07 11:03:16','2019-03-07 11:03:16'),(2278,2296,NULL,NULL,'2019-03-07 11:03:19','2019-03-07 11:03:19'),(2279,2297,NULL,NULL,'2019-03-07 11:03:23','2019-03-07 11:03:23'),(2280,2298,NULL,NULL,'2019-03-07 11:03:26','2019-03-07 11:03:26'),(2281,2299,NULL,NULL,'2019-03-07 11:03:30','2019-03-07 11:03:30'),(2282,2300,NULL,NULL,'2019-03-07 11:03:33','2019-03-07 11:03:33'),(2283,2301,NULL,NULL,'2019-03-07 11:07:21','2019-03-07 11:07:21'),(2284,2302,NULL,NULL,'2019-03-07 11:07:24','2019-03-07 11:07:24'),(2285,2303,NULL,NULL,'2019-03-07 11:07:28','2019-03-07 11:07:28'),(2286,2304,NULL,NULL,'2019-03-07 11:07:31','2019-03-07 11:07:31'),(2287,2305,NULL,NULL,'2019-03-07 11:07:34','2019-03-07 11:07:34'),(2288,2306,NULL,NULL,'2019-03-07 11:07:38','2019-03-07 11:07:38'),(2289,2307,NULL,NULL,'2019-03-07 11:07:42','2019-03-07 11:07:42'),(2290,2308,NULL,NULL,'2019-03-07 11:07:45','2019-03-07 11:07:45'),(2291,2309,NULL,NULL,'2019-03-07 11:07:49','2019-03-07 11:07:49'),(2292,2310,NULL,NULL,'2019-03-07 11:14:14','2019-03-07 11:14:14'),(2293,2311,NULL,NULL,'2019-03-07 11:14:18','2019-03-07 11:14:18'),(2294,2312,NULL,NULL,'2019-03-07 11:14:21','2019-03-07 11:14:21'),(2295,2313,NULL,NULL,'2019-03-07 11:14:25','2019-03-07 11:14:25'),(2296,2314,NULL,NULL,'2019-03-07 11:14:29','2019-03-07 11:14:29'),(2297,2315,NULL,NULL,'2019-03-07 11:14:32','2019-03-07 11:14:32'),(2298,2316,NULL,NULL,'2019-03-07 11:14:36','2019-03-07 11:14:36'),(2299,2317,NULL,NULL,'2019-03-07 11:14:40','2019-03-07 11:14:40'),(2300,2318,NULL,NULL,'2019-03-07 11:14:43','2019-03-07 11:14:43'),(2301,2319,NULL,NULL,'2019-03-07 11:14:46','2019-03-07 11:14:46'),(2302,2320,NULL,NULL,'2019-03-07 11:14:50','2019-03-07 11:14:50'),(2312,2330,NULL,NULL,'2019-03-07 11:28:48','2019-03-07 11:28:48'),(2313,2331,NULL,NULL,'2019-03-07 11:28:51','2019-03-07 11:28:51'),(2314,2332,NULL,NULL,'2019-03-07 11:28:54','2019-03-07 11:28:54'),(2315,2333,NULL,NULL,'2019-03-07 11:28:57','2019-03-07 11:28:57'),(2316,2334,NULL,NULL,'2019-03-07 11:29:01','2019-03-07 11:29:01'),(2317,2335,NULL,NULL,'2019-03-07 11:29:05','2019-03-07 11:29:05'),(2318,2336,NULL,NULL,'2019-03-07 11:29:08','2019-03-07 11:29:08'),(2319,2337,NULL,NULL,'2019-03-07 11:36:20','2019-03-07 11:36:20'),(2320,2338,NULL,NULL,'2019-03-07 11:36:24','2019-03-07 11:36:24'),(2321,2339,NULL,NULL,'2019-03-07 11:36:28','2019-03-07 11:36:28'),(2322,2340,NULL,NULL,'2019-03-07 11:36:31','2019-03-07 11:36:31'),(2323,2341,NULL,NULL,'2019-03-07 11:36:35','2019-03-07 11:36:35'),(2324,2342,NULL,NULL,'2019-03-07 11:36:38','2019-03-07 11:36:38'),(2325,2343,NULL,NULL,'2019-03-07 11:36:41','2019-03-07 11:36:41'),(2326,2344,NULL,NULL,'2019-03-07 11:38:27','2019-03-07 11:38:27'),(2327,2345,NULL,NULL,'2019-03-07 11:38:29','2019-03-07 11:38:29'),(2328,2346,NULL,NULL,'2019-03-07 11:38:31','2019-03-07 11:38:31'),(2329,2347,NULL,NULL,'2019-03-07 11:38:34','2019-03-07 11:38:34'),(2330,2348,NULL,NULL,'2019-03-07 11:38:36','2019-03-07 11:38:36'),(2331,2349,NULL,NULL,'2019-03-07 11:38:38','2019-03-07 11:38:38'),(2332,2350,NULL,NULL,'2019-03-07 11:38:40','2019-03-07 11:38:40'),(2333,2351,NULL,NULL,'2019-03-07 11:43:43','2019-03-07 11:43:43'),(2334,2352,NULL,NULL,'2019-03-07 11:43:47','2019-03-07 11:43:47'),(2335,2353,NULL,NULL,'2019-03-07 11:43:50','2019-03-07 11:43:50'),(2336,2354,NULL,NULL,'2019-03-07 11:43:54','2019-03-07 11:43:54'),(2337,2355,NULL,NULL,'2019-03-07 11:43:58','2019-03-07 11:43:58'),(2338,2356,NULL,NULL,'2019-03-07 11:44:01','2019-03-07 11:44:01'),(2339,2357,NULL,NULL,'2019-03-07 11:44:05','2019-03-07 11:44:05'),(2340,2358,NULL,NULL,'2019-03-07 11:48:17','2019-03-07 11:48:17'),(2341,2359,NULL,NULL,'2019-03-07 11:48:21','2019-03-07 11:48:21'),(2342,2360,NULL,NULL,'2019-03-07 11:48:24','2019-03-07 11:48:24'),(2343,2361,NULL,NULL,'2019-03-07 11:48:28','2019-03-07 11:48:28'),(2344,2362,NULL,NULL,'2019-03-07 11:48:31','2019-03-07 11:48:31'),(2345,2363,NULL,NULL,'2019-03-07 11:48:35','2019-03-07 11:48:35'),(2346,2364,NULL,NULL,'2019-03-07 11:48:38','2019-03-07 11:48:38'),(2347,2365,NULL,NULL,'2019-03-07 11:48:42','2019-03-07 11:48:42'),(2348,2366,NULL,NULL,'2019-03-07 11:48:45','2019-03-07 11:48:45'),(2349,2367,NULL,NULL,'2019-03-07 11:49:13','2019-03-07 11:49:13'),(2350,2368,NULL,NULL,'2019-03-07 11:49:17','2019-03-07 11:49:17'),(2351,2369,NULL,NULL,'2019-03-07 11:49:20','2019-03-07 11:49:20'),(2352,2370,NULL,NULL,'2019-03-07 11:49:24','2019-03-07 11:49:24'),(2353,2371,NULL,NULL,'2019-03-07 11:49:28','2019-03-07 11:49:28'),(2354,2372,NULL,NULL,'2019-03-07 11:49:31','2019-03-07 11:49:31'),(2355,2373,NULL,NULL,'2019-03-07 11:49:35','2019-03-07 11:49:35'),(2356,2374,NULL,NULL,'2019-03-07 11:56:28','2019-03-07 11:56:28'),(2357,2375,NULL,NULL,'2019-03-07 11:56:29','2019-03-07 11:56:29'),(2358,2376,NULL,NULL,'2019-03-07 11:56:31','2019-03-07 11:56:31'),(2359,2377,NULL,NULL,'2019-03-07 11:56:32','2019-03-07 11:56:32'),(2360,2378,NULL,NULL,'2019-03-07 11:56:34','2019-03-07 11:56:34'),(2361,2379,NULL,NULL,'2019-03-07 11:56:35','2019-03-07 11:56:35'),(2362,2380,NULL,NULL,'2019-03-07 11:56:37','2019-03-07 11:56:37'),(2363,2381,NULL,NULL,'2019-03-07 11:56:38','2019-03-07 11:56:38'),(2364,2382,NULL,NULL,'2019-03-07 11:56:39','2019-03-07 11:56:39'),(2365,2383,NULL,NULL,'2019-03-07 11:56:41','2019-03-07 11:56:41'),(2366,2384,NULL,NULL,'2019-03-07 11:56:42','2019-03-07 11:56:42'),(2367,2385,NULL,NULL,'2019-03-07 11:56:44','2019-03-07 11:56:44'),(2368,2386,NULL,NULL,'2019-03-07 11:56:45','2019-03-07 11:56:45'),(2369,2387,NULL,NULL,'2019-03-07 11:56:47','2019-03-07 11:56:47'),(2370,2388,NULL,NULL,'2019-03-07 11:56:48','2019-03-07 11:56:48'),(2371,2389,NULL,NULL,'2019-03-07 11:56:50','2019-03-07 11:56:50'),(2372,2390,NULL,NULL,'2019-03-07 11:57:05','2019-03-07 11:57:05'),(2373,2391,NULL,NULL,'2019-03-07 11:57:09','2019-03-07 11:57:09'),(2374,2392,NULL,NULL,'2019-03-07 11:57:13','2019-03-07 11:57:13'),(2375,2393,NULL,NULL,'2019-03-07 11:57:17','2019-03-07 11:57:17'),(2376,2394,NULL,NULL,'2019-03-07 11:57:21','2019-03-07 11:57:21'),(2377,2395,NULL,NULL,'2019-03-07 11:57:24','2019-03-07 11:57:24'),(2378,2396,NULL,NULL,'2019-03-07 11:57:28','2019-03-07 11:57:28'),(2379,2397,NULL,NULL,'2019-03-07 12:24:14','2019-03-07 12:24:14'),(2380,2398,NULL,NULL,'2019-03-07 12:24:17','2019-03-07 12:24:17'),(2381,2399,NULL,NULL,'2019-03-07 12:24:21','2019-03-07 12:24:21'),(2382,2400,NULL,NULL,'2019-03-07 12:24:25','2019-03-07 12:24:25'),(2383,2401,NULL,NULL,'2019-03-07 12:24:28','2019-03-07 12:24:28'),(2384,2402,NULL,NULL,'2019-03-07 12:24:31','2019-03-07 12:24:31'),(2385,2403,NULL,NULL,'2019-03-07 12:24:35','2019-03-07 12:24:35'),(2386,2404,NULL,NULL,'2019-03-07 12:29:45','2019-03-07 12:29:45'),(2387,2405,NULL,NULL,'2019-03-07 12:29:47','2019-03-07 12:29:47'),(2388,2406,NULL,NULL,'2019-03-07 12:29:49','2019-03-07 12:29:49'),(2389,2407,NULL,NULL,'2019-03-07 12:29:51','2019-03-07 12:29:51'),(2390,2408,NULL,NULL,'2019-03-07 12:29:53','2019-03-07 12:29:53'),(2391,2409,NULL,NULL,'2019-03-07 12:29:55','2019-03-07 12:29:55'),(2392,2410,NULL,NULL,'2019-03-07 12:29:57','2019-03-07 12:29:57'),(2393,2411,NULL,NULL,'2019-03-07 12:32:19','2019-03-07 12:32:19'),(2394,2412,NULL,NULL,'2019-03-07 12:32:23','2019-03-07 12:32:23'),(2395,2413,NULL,NULL,'2019-03-07 12:32:26','2019-03-07 12:32:26'),(2396,2414,NULL,NULL,'2019-03-07 12:32:30','2019-03-07 12:32:30'),(2397,2415,NULL,NULL,'2019-03-07 12:32:33','2019-03-07 12:32:33'),(2398,2416,NULL,NULL,'2019-03-07 12:32:37','2019-03-07 12:32:37'),(2399,2417,NULL,NULL,'2019-03-07 12:32:41','2019-03-07 12:32:41'),(2400,2418,NULL,NULL,'2019-03-07 12:34:33','2019-03-07 12:34:33'),(2401,2419,NULL,NULL,'2019-03-07 12:34:37','2019-03-07 12:34:37'),(2402,2420,NULL,NULL,'2019-03-07 12:34:40','2019-03-07 12:34:40'),(2403,2421,NULL,NULL,'2019-03-07 12:34:44','2019-03-07 12:34:44'),(2404,2422,NULL,NULL,'2019-03-07 12:34:47','2019-03-07 12:34:47'),(2405,2423,NULL,NULL,'2019-03-07 12:34:51','2019-03-07 12:34:51'),(2406,2424,NULL,NULL,'2019-03-07 12:34:55','2019-03-07 12:34:55'),(2407,2425,NULL,NULL,'2019-03-07 12:42:49','2019-03-07 12:42:49'),(2408,2426,NULL,NULL,'2019-03-07 12:42:52','2019-03-07 12:42:52'),(2409,2427,NULL,NULL,'2019-03-07 12:42:55','2019-03-07 12:42:55'),(2410,2428,NULL,NULL,'2019-03-07 12:42:59','2019-03-07 12:42:59'),(2411,2429,NULL,NULL,'2019-03-07 12:43:02','2019-03-07 12:43:02'),(2412,2430,NULL,NULL,'2019-03-07 12:43:06','2019-03-07 12:43:06'),(2413,2431,NULL,NULL,'2019-03-07 12:43:10','2019-03-07 12:43:10'),(2414,2432,NULL,NULL,'2019-03-07 12:49:38','2019-03-07 12:49:38'),(2415,2433,NULL,NULL,'2019-03-07 12:49:42','2019-03-07 12:49:42'),(2416,2434,NULL,NULL,'2019-03-07 12:49:45','2019-03-07 12:49:45'),(2417,2435,NULL,NULL,'2019-03-07 12:49:49','2019-03-07 12:49:49'),(2418,2436,NULL,NULL,'2019-03-07 12:49:53','2019-03-07 12:49:53'),(2419,2437,NULL,NULL,'2019-03-07 12:49:56','2019-03-07 12:49:56'),(2420,2438,NULL,NULL,'2019-03-07 12:50:00','2019-03-07 12:50:00'),(2421,2439,NULL,NULL,'2019-03-07 12:50:03','2019-03-07 12:50:03'),(2422,2440,NULL,NULL,'2019-03-07 12:50:07','2019-03-07 12:50:07'),(2423,2441,NULL,NULL,'2019-03-07 12:59:43','2019-03-07 12:59:43'),(2424,2442,NULL,NULL,'2019-03-07 12:59:44','2019-03-07 12:59:44'),(2425,2443,NULL,NULL,'2019-03-07 12:59:46','2019-03-07 12:59:46'),(2426,2444,NULL,NULL,'2019-03-07 12:59:47','2019-03-07 12:59:47'),(2427,2445,NULL,NULL,'2019-03-07 12:59:49','2019-03-07 12:59:49'),(2428,2446,NULL,NULL,'2019-03-07 12:59:50','2019-03-07 12:59:50'),(2429,2447,NULL,NULL,'2019-03-07 12:59:52','2019-03-07 12:59:52'),(2430,2448,NULL,NULL,'2019-03-07 12:59:53','2019-03-07 12:59:53'),(2431,2449,NULL,NULL,'2019-03-07 12:59:55','2019-03-07 12:59:55'),(2432,2450,NULL,NULL,'2019-03-07 12:59:56','2019-03-07 12:59:56'),(2433,2451,NULL,NULL,'2019-03-07 12:59:58','2019-03-07 12:59:58'),(2434,2452,NULL,NULL,'2019-03-07 12:59:59','2019-03-07 12:59:59'),(2435,2453,NULL,NULL,'2019-03-07 13:00:01','2019-03-07 13:00:01'),(2436,2454,NULL,NULL,'2019-03-07 13:00:03','2019-03-07 13:00:03'),(2437,2455,NULL,NULL,'2019-03-07 13:00:04','2019-03-07 13:00:04'),(2438,2456,NULL,NULL,'2019-03-07 13:00:06','2019-03-07 13:00:06'),(2439,2457,NULL,NULL,'2019-03-07 13:05:59','2019-03-07 13:05:59'),(2440,2458,NULL,NULL,'2019-03-07 13:06:01','2019-03-07 13:06:01'),(2441,2459,NULL,NULL,'2019-03-07 13:06:03','2019-03-07 13:06:03'),(2442,2460,NULL,NULL,'2019-03-07 13:06:04','2019-03-07 13:06:04'),(2443,2461,NULL,NULL,'2019-03-07 13:06:06','2019-03-07 13:06:06'),(2444,2462,NULL,NULL,'2019-03-07 13:06:07','2019-03-07 13:06:07'),(2445,2463,NULL,NULL,'2019-03-07 13:06:09','2019-03-07 13:06:09'),(2446,2464,NULL,NULL,'2019-03-07 13:06:10','2019-03-07 13:06:10'),(2447,2465,NULL,NULL,'2019-03-07 13:06:11','2019-03-07 13:06:11'),(2448,2466,NULL,NULL,'2019-03-07 13:12:03','2019-03-07 13:12:03'),(2449,2467,NULL,NULL,'2019-03-07 13:12:04','2019-03-07 13:12:04'),(2450,2468,NULL,NULL,'2019-03-07 13:12:06','2019-03-07 13:12:06'),(2451,2469,NULL,NULL,'2019-03-07 13:12:07','2019-03-07 13:12:07'),(2452,2470,NULL,NULL,'2019-03-07 13:12:09','2019-03-07 13:12:09'),(2453,2471,NULL,NULL,'2019-03-07 13:12:11','2019-03-07 13:12:11'),(2454,2472,NULL,NULL,'2019-03-07 13:12:12','2019-03-07 13:12:12'),(2455,2473,NULL,NULL,'2019-03-07 13:12:14','2019-03-07 13:12:14'),(2456,2474,NULL,NULL,'2019-03-07 13:12:15','2019-03-07 13:12:15'),(2457,2475,NULL,NULL,'2019-03-07 13:12:17','2019-03-07 13:12:17'),(2458,2476,NULL,NULL,'2019-03-07 13:12:18','2019-03-07 13:12:18'),(2459,2477,NULL,NULL,'2019-03-07 13:12:20','2019-03-07 13:12:20'),(2460,2478,NULL,NULL,'2019-03-07 13:12:22','2019-03-07 13:12:22'),(2461,2479,NULL,NULL,'2019-03-07 13:35:47','2019-03-07 13:35:47'),(2462,2480,NULL,NULL,'2019-03-07 13:35:51','2019-03-07 13:35:51'),(2463,2481,NULL,NULL,'2019-03-07 13:35:54','2019-03-07 13:35:54'),(2464,2482,NULL,NULL,'2019-03-07 13:35:58','2019-03-07 13:35:58'),(2465,2483,NULL,NULL,'2019-03-07 13:36:02','2019-03-07 13:36:02'),(2466,2484,NULL,NULL,'2019-03-07 13:36:05','2019-03-07 13:36:05'),(2467,2485,NULL,NULL,'2019-03-07 13:36:09','2019-03-07 13:36:09'),(2468,2486,NULL,NULL,'2019-03-07 13:36:12','2019-03-07 13:36:12'),(2469,2487,NULL,NULL,'2019-03-07 13:36:16','2019-03-07 13:36:16'),(2470,2488,NULL,NULL,'2019-03-07 13:41:34','2019-03-07 13:41:34'),(2471,2489,NULL,NULL,'2019-03-07 13:41:36','2019-03-07 13:41:36'),(2472,2490,NULL,NULL,'2019-03-07 13:41:37','2019-03-07 13:41:37'),(2473,2491,NULL,NULL,'2019-03-07 13:41:39','2019-03-07 13:41:39'),(2474,2492,NULL,NULL,'2019-03-07 13:41:40','2019-03-07 13:41:40'),(2475,2493,NULL,NULL,'2019-03-07 13:41:42','2019-03-07 13:41:42'),(2476,2494,NULL,NULL,'2019-03-07 13:41:43','2019-03-07 13:41:43'),(2477,2495,NULL,NULL,'2019-03-07 13:41:45','2019-03-07 13:41:45'),(2478,2496,NULL,NULL,'2019-03-07 13:41:46','2019-03-07 13:41:46'),(2479,2497,NULL,NULL,'2019-03-07 13:41:48','2019-03-07 13:41:48'),(2480,2498,NULL,NULL,'2019-03-07 13:41:49','2019-03-07 13:41:49'),(2481,2499,NULL,NULL,'2019-03-07 13:41:51','2019-03-07 13:41:51'),(2482,2500,NULL,NULL,'2019-03-07 13:41:52','2019-03-07 13:41:52'),(2483,2501,NULL,NULL,'2019-03-07 13:47:11','2019-03-07 13:47:11'),(2484,2502,NULL,NULL,'2019-03-07 13:47:15','2019-03-07 13:47:15'),(2485,2503,NULL,NULL,'2019-03-07 13:47:18','2019-03-07 13:47:18'),(2486,2504,NULL,NULL,'2019-03-07 13:47:22','2019-03-07 13:47:22'),(2487,2505,NULL,NULL,'2019-03-07 13:47:25','2019-03-07 13:47:25'),(2488,2506,NULL,NULL,'2019-03-07 13:47:29','2019-03-07 13:47:29'),(2489,2507,NULL,NULL,'2019-03-07 13:47:33','2019-03-07 13:47:33'),(2490,2508,NULL,NULL,'2019-03-07 13:53:48','2019-03-07 13:53:48'),(2491,2509,NULL,NULL,'2019-03-07 13:53:51','2019-03-07 13:53:51'),(2492,2510,NULL,NULL,'2019-03-07 13:53:55','2019-03-07 13:53:55'),(2493,2511,NULL,NULL,'2019-03-07 13:53:58','2019-03-07 13:53:58'),(2494,2512,NULL,NULL,'2019-03-07 13:54:02','2019-03-07 13:54:02'),(2495,2513,NULL,NULL,'2019-03-07 13:54:06','2019-03-07 13:54:06'),(2496,2514,NULL,NULL,'2019-03-07 13:54:10','2019-03-07 13:54:10'),(2497,2515,NULL,NULL,'2019-03-07 13:54:13','2019-03-07 13:54:13'),(2498,2516,NULL,NULL,'2019-03-07 13:54:17','2019-03-07 13:54:17'),(2499,2517,NULL,NULL,'2019-03-07 13:54:21','2019-03-07 13:54:21'),(2500,2518,NULL,NULL,'2019-03-07 14:15:32','2019-03-07 14:15:32'),(2501,2519,NULL,NULL,'2019-03-07 14:15:35','2019-03-07 14:15:35'),(2502,2520,NULL,NULL,'2019-03-07 14:15:39','2019-03-07 14:15:39'),(2503,2521,NULL,NULL,'2019-03-07 14:15:42','2019-03-07 14:15:42'),(2504,2522,NULL,NULL,'2019-03-07 14:15:47','2019-03-07 14:15:47'),(2505,2523,NULL,NULL,'2019-03-07 14:15:51','2019-03-07 14:15:51'),(2506,2524,NULL,NULL,'2019-03-07 14:15:56','2019-03-07 14:15:56'),(2507,2525,NULL,NULL,'2019-03-07 14:30:18','2019-03-07 14:30:18'),(2508,2526,NULL,NULL,'2019-03-07 14:30:20','2019-03-07 14:30:20'),(2509,2527,NULL,NULL,'2019-03-07 14:30:21','2019-03-07 14:30:21'),(2510,2528,NULL,NULL,'2019-03-07 14:30:23','2019-03-07 14:30:23'),(2511,2529,NULL,NULL,'2019-03-07 14:30:24','2019-03-07 14:30:24'),(2512,2530,NULL,NULL,'2019-03-07 14:30:27','2019-03-07 14:30:27'),(2513,2531,NULL,NULL,'2019-03-07 14:30:28','2019-03-07 14:30:28'),(2514,2532,NULL,NULL,'2019-03-07 14:30:30','2019-03-07 14:30:30'),(2515,2533,NULL,NULL,'2019-03-07 14:30:31','2019-03-07 14:30:31'),(2516,2534,NULL,NULL,'2019-03-07 14:34:13','2019-03-07 14:34:13'),(2517,2535,NULL,NULL,'2019-03-07 14:34:17','2019-03-07 14:34:17'),(2518,2536,NULL,NULL,'2019-03-07 14:34:20','2019-03-07 14:34:20'),(2519,2537,NULL,NULL,'2019-03-07 14:34:24','2019-03-07 14:34:24'),(2520,2538,NULL,NULL,'2019-03-07 14:34:27','2019-03-07 14:34:27'),(2521,2539,NULL,NULL,'2019-03-07 14:34:31','2019-03-07 14:34:31'),(2522,2540,NULL,NULL,'2019-03-07 14:34:35','2019-03-07 14:34:35'),(2523,2541,NULL,NULL,'2019-03-07 14:34:39','2019-03-07 14:34:39'),(2524,2542,NULL,NULL,'2019-03-07 14:34:43','2019-03-07 14:34:43');
/*!40000 ALTER TABLE `email_catalog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_contact`
--

DROP TABLE IF EXISTS `email_contact`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_contact` (
  `email_contact_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `is_guest` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Guest',
  `contact_id` varchar(15) DEFAULT NULL COMMENT 'Connector Contact ID',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `email` varchar(255) NOT NULL DEFAULT '' COMMENT 'Customer Email',
  `is_subscriber` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Subscriber',
  `subscriber_status` smallint(5) unsigned DEFAULT NULL COMMENT 'Subscriber status',
  `email_imported` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Imported',
  `subscriber_imported` smallint(5) unsigned DEFAULT NULL COMMENT 'Subscriber Imported',
  `suppressed` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Suppressed',
  `last_subscribed_at` timestamp NULL DEFAULT NULL COMMENT 'Last subscribed date',
  PRIMARY KEY (`email_contact_id`),
  KEY `EMAIL_CONTACT_EMAIL_CONTACT_ID` (`email_contact_id`),
  KEY `EMAIL_CONTACT_IS_GUEST` (`is_guest`),
  KEY `EMAIL_CONTACT_CUSTOMER_ID` (`customer_id`),
  KEY `EMAIL_CONTACT_WEBSITE_ID` (`website_id`),
  KEY `EMAIL_CONTACT_IS_SUBSCRIBER` (`is_subscriber`),
  KEY `EMAIL_CONTACT_SUBSCRIBER_STATUS` (`subscriber_status`),
  KEY `EMAIL_CONTACT_EMAIL_IMPORTED` (`email_imported`),
  KEY `EMAIL_CONTACT_SUBSCRIBER_IMPORTED` (`subscriber_imported`),
  KEY `EMAIL_CONTACT_SUPPRESSED` (`suppressed`),
  KEY `EMAIL_CONTACT_EMAIL` (`email`),
  KEY `EMAIL_CONTACT_CONTACT_ID` (`contact_id`),
  CONSTRAINT `EMAIL_CONTACT_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Connector Contacts';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_contact`
--

LOCK TABLES `email_contact` WRITE;
/*!40000 ALTER TABLE `email_contact` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_contact` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_contact_consent`
--

DROP TABLE IF EXISTS `email_contact_consent`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_contact_consent` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `email_contact_id` int(10) unsigned DEFAULT NULL COMMENT 'Email Contact Id',
  `consent_url` varchar(255) DEFAULT NULL COMMENT 'Contact consent url',
  `consent_datetime` datetime DEFAULT NULL COMMENT 'Contact consent datetime',
  `consent_ip` varchar(255) DEFAULT NULL COMMENT 'Contact consent ip',
  `consent_user_agent` varchar(255) DEFAULT NULL COMMENT 'Contact consent user agent',
  PRIMARY KEY (`id`),
  KEY `EMAIL_CONTACT_CONSENT_EMAIL_CONTACT_ID` (`email_contact_id`),
  CONSTRAINT `FK_17E9EA0C469163E550BC6B732AC49FDB` FOREIGN KEY (`email_contact_id`) REFERENCES `email_contact` (`email_contact_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Email contact consent table.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_contact_consent`
--

LOCK TABLES `email_contact_consent` WRITE;
/*!40000 ALTER TABLE `email_contact_consent` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_contact_consent` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_failed_auth`
--

DROP TABLE IF EXISTS `email_failed_auth`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_failed_auth` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `failures_num` int(10) unsigned DEFAULT NULL COMMENT 'Number of fails',
  `first_attempt_date` datetime DEFAULT NULL COMMENT 'First attempt date',
  `last_attempt_date` datetime DEFAULT NULL COMMENT 'Last attempt date',
  `url` varchar(255) DEFAULT NULL COMMENT 'URL',
  `store_id` int(10) unsigned DEFAULT NULL COMMENT 'Store Id',
  PRIMARY KEY (`id`),
  KEY `EMAIL_AUTH_EDC_STORE_ID` (`store_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Email Failed Auth Table.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_failed_auth`
--

LOCK TABLES `email_failed_auth` WRITE;
/*!40000 ALTER TABLE `email_failed_auth` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_failed_auth` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_importer`
--

DROP TABLE IF EXISTS `email_importer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_importer` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `import_type` varchar(255) NOT NULL DEFAULT '' COMMENT 'Import Type',
  `website_id` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Website Id',
  `import_status` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Import Status',
  `import_id` varchar(255) NOT NULL DEFAULT '' COMMENT 'Import Id',
  `import_data` mediumblob NOT NULL COMMENT 'Import Data',
  `import_mode` varchar(255) NOT NULL DEFAULT '' COMMENT 'Import Mode',
  `import_file` text NOT NULL COMMENT 'Import File',
  `message` varchar(255) NOT NULL DEFAULT '' COMMENT 'Error Message',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time',
  `import_started` timestamp NULL DEFAULT NULL COMMENT 'Import Started',
  `import_finished` timestamp NULL DEFAULT NULL COMMENT 'Import Finished',
  PRIMARY KEY (`id`),
  KEY `EMAIL_IMPORTER_IMPORT_TYPE` (`import_type`),
  KEY `EMAIL_IMPORTER_WEBSITE_ID` (`website_id`),
  KEY `EMAIL_IMPORTER_IMPORT_STATUS` (`import_status`),
  KEY `EMAIL_IMPORTER_IMPORT_MODE` (`import_mode`),
  KEY `EMAIL_IMPORTER_CREATED_AT` (`created_at`),
  KEY `EMAIL_IMPORTER_UPDATED_AT` (`updated_at`),
  KEY `EMAIL_IMPORTER_IMPORT_ID` (`import_id`),
  KEY `EMAIL_IMPORTER_IMPORT_STARTED` (`import_started`),
  KEY `EMAIL_IMPORTER_IMPORT_FINISHED` (`import_finished`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Email Importer';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_importer`
--

LOCK TABLES `email_importer` WRITE;
/*!40000 ALTER TABLE `email_importer` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_importer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_order`
--

DROP TABLE IF EXISTS `email_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_order` (
  `email_order_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `order_status` varchar(255) NOT NULL COMMENT 'Order Status',
  `quote_id` int(10) unsigned NOT NULL COMMENT 'Sales Quote ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `email_imported` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Order Imported',
  `modified` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Order Modified',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time',
  PRIMARY KEY (`email_order_id`),
  KEY `EMAIL_ORDER_STORE_ID` (`store_id`),
  KEY `EMAIL_ORDER_QUOTE_ID` (`quote_id`),
  KEY `EMAIL_ORDER_EMAIL_IMPORTED` (`email_imported`),
  KEY `EMAIL_ORDER_ORDER_STATUS` (`order_status`),
  KEY `EMAIL_ORDER_MODIFIED` (`modified`),
  KEY `EMAIL_ORDER_UPDATED_AT` (`updated_at`),
  KEY `EMAIL_ORDER_CREATED_AT` (`created_at`),
  KEY `EMAIL_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` (`order_id`),
  CONSTRAINT `EMAIL_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EMAIL_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Transactional Order Data';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_order`
--

LOCK TABLES `email_order` WRITE;
/*!40000 ALTER TABLE `email_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_review`
--

DROP TABLE IF EXISTS `email_review`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_review` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `review_id` int(10) unsigned NOT NULL COMMENT 'Review Id',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id',
  `review_imported` smallint(5) unsigned DEFAULT NULL COMMENT 'Review Imported',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time',
  PRIMARY KEY (`id`),
  KEY `EMAIL_REVIEW_REVIEW_ID` (`review_id`),
  KEY `EMAIL_REVIEW_CUSTOMER_ID` (`customer_id`),
  KEY `EMAIL_REVIEW_STORE_ID` (`store_id`),
  KEY `EMAIL_REVIEW_REVIEW_IMPORTED` (`review_imported`),
  KEY `EMAIL_REVIEW_CREATED_AT` (`created_at`),
  KEY `EMAIL_REVIEW_UPDATED_AT` (`updated_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Connector Reviews';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_review`
--

LOCK TABLES `email_review` WRITE;
/*!40000 ALTER TABLE `email_review` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_review` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_rules`
--

DROP TABLE IF EXISTS `email_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_rules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Rule Name',
  `website_ids` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Website Id',
  `type` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Rule Type',
  `status` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Status',
  `combination` smallint(6) NOT NULL DEFAULT '1' COMMENT 'Rule Condition',
  `conditions` blob NOT NULL COMMENT 'Rule Conditions',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Connector Rules';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_rules`
--

LOCK TABLES `email_rules` WRITE;
/*!40000 ALTER TABLE `email_rules` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_rules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_template`
--

DROP TABLE IF EXISTS `email_template`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_template` (
  `template_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Template ID',
  `template_code` varchar(150) NOT NULL COMMENT 'Template Name',
  `template_text` text NOT NULL COMMENT 'Template Content',
  `template_styles` text COMMENT 'Templste Styles',
  `template_type` int(10) unsigned DEFAULT NULL COMMENT 'Template Type',
  `template_subject` varchar(200) NOT NULL COMMENT 'Template Subject',
  `template_sender_name` varchar(200) DEFAULT NULL COMMENT 'Template Sender Name',
  `template_sender_email` varchar(200) DEFAULT NULL COMMENT 'Template Sender Email',
  `added_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Date of Template Creation',
  `modified_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Date of Template Modification',
  `orig_template_code` varchar(200) DEFAULT NULL COMMENT 'Original Template Code',
  `orig_template_variables` text COMMENT 'Original Template Variables',
  PRIMARY KEY (`template_id`),
  UNIQUE KEY `EMAIL_TEMPLATE_TEMPLATE_CODE` (`template_code`),
  KEY `EMAIL_TEMPLATE_ADDED_AT` (`added_at`),
  KEY `EMAIL_TEMPLATE_MODIFIED_AT` (`modified_at`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Email Templates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_template`
--

LOCK TABLES `email_template` WRITE;
/*!40000 ALTER TABLE `email_template` DISABLE KEYS */;
INSERT INTO `email_template` VALUES (1,'New Pickup Order','<!--@subject {{trans \"Your %store_name order confirmation\" store_name=$store.getFrontendName()}} @-->\n<!--@vars {\n\"var order.getCustomerName()\":\"Customer Name\",\n\"var store.getFrontendName()\":\"Customer Name\",\n\"var is_pickup_order\":\"Check if order is a pickup order\",\n\"var $this.getUrl($store,\'customer/account/\',[_nosid:1]) |raw\":\"Gets the link to the Customer Account\",\n\"var store_email |raw\":\"Defined Email Address for this type of mails\",\n\"var store_phone |raw\":\"Defined Phone Number in the Store Information\",\n\"var store_hours |raw\":\"Defined Opening Hours Phone Number in the Store Information\",\n\"var order.increment_id |raw\":\"Order Id\",\n\"var order.getCreatedAtFormatted(2) |raw\":\"Get the date of order creation\",\n\"var order.getEmailCustomerNote()\":\"Email Order Note\",\n\"var formattedBillingAddress|raw\":\"Billing Address\",\n\"var order.getIsNotVirtual()\":\"Check if shipment exists\",\n\"var pickupAddress|raw\":\"Pickup Location Address\",\n\"var formattedShippingAddress|raw\":\"Customer Shipping Address\",\n\"var payment_html|raw\":\"Payment Details\",\n\"var order.getShippingDescription()\":\"Shipping Description\",\n\"var shipping_msg\":\"Shipping message\",\n\"layout handle=\\\"sales_email_order_items\\\" order=$order area=\\\"frontend\\\"\":\"Order Items Grid\"\n} @-->\n\n{{template config_path=\"design/email/header_template\"}}\n\n<table>\n    <tr class=\"email-intro\">\n        <td>\n            <p class=\"greeting\">{{trans \"%customer_name,\" customer_name=$order.getCustomerName()}}</p>\n            <p>\n                {{trans \"Thank you for your order from %store_name.\" store_name=$store.getFrontendName()}}\n                {{if is_pickup_order}}\n                    {{trans \"We will send you a notification once your items are ready for pickup.\"}}\n                {{else}}\n                    {{trans \"Once your package ships we will send you a tracking number.\"}}\n                {{/if}}\n                {{trans \'You can check the status of your order by <a href=\"%account_url\">logging into your account</a>.\' account_url=$this.getUrl($store,\'customer/account/\',[_nosid:1]) |raw}}\n            </p>\n            <p>\n                {{trans \'If you have questions about your order, you can email us at <a href=\"mailto:%store_email\">%store_email</a>\' store_email=$store_email |raw}}{{depend store_phone}} {{trans \' or call us at <a href=\"tel:%store_phone\">%store_phone</a>\' store_phone=$store_phone |raw}}{{/depend}}.\n                {{depend store_hours}}\n                {{trans \'Our hours are <span class=\"no-link\">%store_hours</span>.\' store_hours=$store_hours |raw}}\n                {{/depend}}\n            </p>\n        </td>\n    </tr>\n    <tr class=\"email-summary\">\n        <td>\n            <h1>{{trans \'Your Order <span class=\"no-link\">#%increment_id</span>\' increment_id=$order.increment_id |raw}}</h1>\n            <p>{{trans \'Placed on <span class=\"no-link\">%created_at</span>\' created_at=$order.getCreatedAtFormatted(2) |raw}}</p>\n        </td>\n    </tr>\n    <tr class=\"email-information\">\n        <td>\n            {{depend order.getEmailCustomerNote()}}\n            <table class=\"message-info\">\n                <tr>\n                    <td>\n                        {{var order.getEmailCustomerNote()|escape|nl2br}}\n                    </td>\n                </tr>\n            </table>\n            {{/depend}}\n            <table class=\"order-details\">\n                <tr>\n                    <td class=\"address-details\">\n                        <h3>{{trans \"Billing Info\"}}</h3>\n                        <p>{{var formattedBillingAddress|raw}}</p>\n                    </td>\n                    {{depend order.getIsNotVirtual()}}\n                    <td class=\"address-details\">\n                        <h3>{{trans \"Shipping Info\"}}</h3>\n                        {{if is_pickup_order}}\n                            <h4>{{trans \"Pickup Location\"}}</h4>\n                            <p>{{var pickupAddress|raw}}</p>\n                            <h4>{{trans \"Recipient Address\"}}</h4>\n                        {{/if}}\n                        <p>{{var formattedShippingAddress|raw}}</p>\n                    </td>\n                    {{/depend}}\n                </tr>\n                <tr>\n                    <td class=\"method-info\">\n                        <h3>{{trans \"Payment Method\"}}</h3>\n                        {{var payment_html|raw}}\n                    </td>\n                    {{depend order.getIsNotVirtual()}}\n                    <td class=\"method-info\">\n                        <h3>{{trans \"Shipping Method\"}}</h3>\n                        <p>{{var order.getShippingDescription()}}</p>\n                        {{if shipping_msg}}\n                        <p>{{var shipping_msg}}</p>\n                        {{/if}}\n                    </td>\n                    {{/depend}}\n                </tr>\n            </table>\n            {{layout handle=\"sales_email_order_items\" order=$order area=\"frontend\"}}\n        </td>\n    </tr>\n</table>\n\n{{template config_path=\"design/email/footer_template\"}}\n',NULL,2,'{{trans \"Your %store_name order confirmation\" store_name=$store.getFrontendName()}}',NULL,NULL,'2019-01-18 07:50:15','2019-01-18 07:50:15','sales_email_order_template','{\"var formattedBillingAddress|raw\":\"Billing Address\",\"var order.getEmailCustomerNote()\":\"Email Order Note\",\"var order.increment_id\":\"Order Id\",\"layout handle=\\\"sales_email_order_items\\\" order=$order area=\\\"frontend\\\"\":\"Order Items Grid\",\"var payment_html|raw\":\"Payment Details\",\"var formattedShippingAddress|raw\":\"Shipping Address\",\"var order.getShippingDescription()\":\"Shipping Description\",\"var shipping_msg\":\"Shipping message\"}'),(2,'New Pickup Order For Guest','<!--@subject {{trans \"Your %store_name order confirmation\" store_name=$store.getFrontendName()}} @-->\n<!--@vars {\n\"var order.getBillingAddress().getName()\":\"Guest Customer Name\",\n\"var store.getFrontendName()\":\"Customer Name\",\n\"var is_pickup_order\":\"Check if order is a pickup order\",\n\"var store_email |raw\":\"Defined Email Address for this type of mails\",\n\"var store_phone |raw\":\"Defined Phone Number in the Store Information\",\n\"var store_hours |raw\":\"Defined Opening Hours Phone Number in the Store Information\",\n\"var order.increment_id |raw\":\"Order Id\",\n\"var order.getCreatedAtFormatted(2) |raw\":\"Get the date of order creation\",\n\"var order.getEmailCustomerNote()\":\"Email Order Note\",\n\"var formattedBillingAddress|raw\":\"Billing Address\",\n\"var order.getIsNotVirtual()\":\"Check if shipment exists\",\n\"var pickupAddress|raw\":\"Pickup Location Address\",\n\"var formattedShippingAddress|raw\":\"Customer Shipping Address\",\n\"var payment_html|raw\":\"Payment Details\",\n\"var order.getShippingDescription()\":\"Shipping Description\",\n\"var shipping_msg\":\"Shipping message\",\n\"layout handle=\\\"sales_email_order_items\\\" order=$order area=\\\"frontend\\\"\":\"Order Items Grid\"\n} @-->\n\n{{template config_path=\"design/email/header_template\"}}\n\n<table>\n    <tr class=\"email-intro\">\n        <td>\n            <p class=\"greeting\">{{trans \"%name,\" name=$order.getBillingAddress().getName()}}</p>\n            <p>\n                {{trans \"Thank you for your order from %store_name.\" store_name=$store.getFrontendName()}}\n                {{if is_pickup_order}}\n                    {{trans \"We will send you a notification once your items are ready for pickup.\"}}\n                {{else}}\n                    {{trans \"Once your package ships we will send an email with a link to track your order.\"}}\n                {{/if}}\n                {{trans \'If you have questions about your order, you can email us at <a href=\"mailto:%store_email\">%store_email</a>\' store_email=$store_email |raw}}{{depend store_phone}} {{trans \' or call us at <a href=\"tel:%store_phone\">%store_phone</a>\' store_phone=$store_phone |raw}}{{/depend}}.\n                {{depend store_hours}}\n                    {{trans \'Our hours are <span class=\"no-link\">%store_hours</span>.\' store_hours=$store_hours |raw}}\n                {{/depend}}\n            </p>\n        </td>\n    </tr>\n    <tr class=\"email-summary\">\n        <td>\n            <h1>{{trans \'Your Order <span class=\"no-link\">#%increment_id</span>\' increment_id=$order.increment_id |raw}}</h1>\n            <p>{{trans \'Placed on <span class=\"no-link\">%created_at</span>\' created_at=$order.getCreatedAtFormatted(2) |raw}}</p>\n        </td>\n    </tr>\n    <tr class=\"email-information\">\n        <td>\n            {{depend order.getEmailCustomerNote()}}\n            <table class=\"message-info\">\n                <tr>\n                    <td>\n                        {{var order.getEmailCustomerNote()|escape|nl2br}}\n                    </td>\n                </tr>\n            </table>\n            {{/depend}}\n            <table class=\"order-details\">\n                <tr>\n                    <td class=\"address-details\">\n                        <h3>{{trans \"Billing Info\"}}</h3>\n                        <p>{{var formattedBillingAddress|raw}}</p>\n                    </td>\n                    {{depend order.getIsNotVirtual()}}\n                    <td class=\"address-details\">\n                        <h3>{{trans \"Shipping Info\"}}</h3>\n                        {{if is_pickup_order}}\n                            <h4>{{trans \"Pickup Location\"}}</h4>\n                            <p>{{var pickupAddress|raw}}</p>\n                            <h4>{{trans \"Recipient Address\"}}</h4>\n                        {{/if}}\n                        <p>{{var formattedShippingAddress|raw}}</p>\n                    </td>\n                    {{/depend}}\n                </tr>\n                <tr>\n                    <td class=\"method-info\">\n                        <h3>{{trans \"Payment Method\"}}</h3>\n                        {{var payment_html|raw}}\n                    </td>\n                    {{depend order.getIsNotVirtual()}}\n                    <td class=\"method-info\">\n                        <h3>{{trans \"Shipping Method\"}}</h3>\n                        <p>{{var order.getShippingDescription()}}</p>\n                        {{if shipping_msg}}\n                        <p>{{var shipping_msg}}</p>\n                        {{/if}}\n                    </td>\n                    {{/depend}}\n                </tr>\n            </table>\n            {{layout handle=\"sales_email_order_items\" order=$order}}\n        </td>\n    </tr>\n</table>\n\n{{template config_path=\"design/email/footer_template\"}}\n',NULL,2,'{{trans \"Your %store_name order confirmation\" store_name=$store.getFrontendName()}}',NULL,NULL,'2019-01-18 07:50:15','2019-01-18 07:50:15','sales_email_order_guest_template','{\"var formattedBillingAddress|raw\":\"Billing Address\",\"var order.getEmailCustomerNote()\":\"Email Order Note\",\"var order.getBillingAddress().getName()\":\"Guest Customer Name\",\"var order.getCreatedAtFormatted(2)\":\"Order Created At (datetime)\",\"var order.increment_id\":\"Order Id\",\"layout handle=\\\"sales_email_order_items\\\" order=$order\":\"Order Items Grid\",\"var payment_html|raw\":\"Payment Details\",\"var formattedShippingAddress|raw\":\"Shipping Address\",\"var order.getShippingDescription()\":\"Shipping Description\",\"var shipping_msg\":\"Shipping message\"}');
/*!40000 ALTER TABLE `email_template` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_wishlist`
--

DROP TABLE IF EXISTS `email_wishlist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_wishlist` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `wishlist_id` int(10) unsigned NOT NULL COMMENT 'Wishlist Id',
  `item_count` int(10) unsigned NOT NULL COMMENT 'Item Count',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id',
  `wishlist_imported` smallint(5) unsigned DEFAULT NULL COMMENT 'Wishlist Imported',
  `wishlist_modified` smallint(5) unsigned DEFAULT NULL COMMENT 'Wishlist Modified',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time',
  PRIMARY KEY (`id`),
  KEY `EMAIL_WISHLIST_WISHLIST_ID` (`wishlist_id`),
  KEY `EMAIL_WISHLIST_ITEM_COUNT` (`item_count`),
  KEY `EMAIL_WISHLIST_CUSTOMER_ID` (`customer_id`),
  KEY `EMAIL_WISHLIST_WISHLIST_MODIFIED` (`wishlist_modified`),
  KEY `EMAIL_WISHLIST_WISHLIST_IMPORTED` (`wishlist_imported`),
  KEY `EMAIL_WISHLIST_CREATED_AT` (`created_at`),
  KEY `EMAIL_WISHLIST_UPDATED_AT` (`updated_at`),
  KEY `EMAIL_WISHLIST_STORE_ID` (`store_id`),
  CONSTRAINT `EMAIL_WISHLIST_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EMAIL_WISHLIST_WISHLIST_ID_WISHLIST_WISHLIST_ID` FOREIGN KEY (`wishlist_id`) REFERENCES `wishlist` (`wishlist_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Connector Wishlist';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_wishlist`
--

LOCK TABLES `email_wishlist` WRITE;
/*!40000 ALTER TABLE `email_wishlist` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_wishlist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `flag`
--

DROP TABLE IF EXISTS `flag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `flag` (
  `flag_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Flag Id',
  `flag_code` varchar(255) NOT NULL COMMENT 'Flag Code',
  `state` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Flag State',
  `flag_data` text COMMENT 'Flag Data',
  `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Date of Last Flag Update',
  PRIMARY KEY (`flag_id`),
  KEY `FLAG_LAST_UPDATE` (`last_update`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Flag';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `flag`
--

LOCK TABLES `flag` WRITE;
/*!40000 ALTER TABLE `flag` DISABLE KEYS */;
INSERT INTO `flag` VALUES (1,'analytics_link_attempts_reverse_counter',0,'24','2018-11-22 11:19:22'),(2,'config_hash',0,'{\"system\":\"d4b93f3a4d63db32df25dfb6a59fd05e791ce663\"}','2020-04-07 12:13:29'),(3,'report_order_aggregated',0,NULL,'2018-12-03 13:18:15'),(4,'report_tax_aggregated',0,NULL,'2018-12-03 13:18:15'),(5,'report_shipping_aggregated',0,NULL,'2018-12-03 13:18:15'),(6,'report_invoiced_aggregated',0,NULL,'2018-12-03 13:18:15'),(7,'report_refunded_aggregated',0,NULL,'2018-12-03 13:18:15'),(8,'report_coupons_aggregated',0,NULL,'2018-12-03 13:18:15'),(9,'report_bestsellers_aggregated',0,NULL,'2018-12-03 13:18:16'),(10,'report_product_viewed_aggregated',0,NULL,'2018-12-03 13:18:16'),(11,'system_config_snapshot',0,'{\"default\":{\"full_page_cache\":{\"caching_application\":\"fastly\"},\"system\":{\"full_page_cache\":{\"fastly\":{\"fastly_api_key\":\"ieRxzb3eLH9BqdUm3oGn7athhqGOj2E7\",\"fastly_service_id\":\"0qIiVOoWCqJT1QW3j5Gyfg\"}}},\"paypal\":{\"wpp\":{\"api_username\":\"0:3:OT+clQ2LXIFGXKa3MF3QV4LJ3xDlomwzjJxpe90xMlNSUkQn7dOev9LawNowrPn7t1mNgo8saDYPtf3RXiC2mJmVdMU=\",\"api_password\":\"0:3:\\/vue2X+s\\/YtAmBhIaxsfmRVoiYUTzM5y6CEktabcISlGwyX+ayNTHTNe7H4=\",\"api_signature\":\"0:3:XdWdcPtI8tYdEU0jLB0fWDUdll6Tmb+YevveWoOElZZX4ntSkxkF74jeWlnfOtgYK2haVwgKT8ENjAjwodpWg1qMik7PLg\\/awLzsgvQaZXJxMMki\",\"client_id\":\"AQOtHeCveTc14m1UjwYWcsAIiKzb2HVIHQRG67UlF29OLKRTCv1tRJyVjP1OU8ylmV9N41KFFOOTIXuC\",\"sandbox_flag\":\"1\"}},\"payment\":{\"braintree\":{\"merchant_id\":\"rm5zj63hvmf684tx\",\"public_key\":\"0:3:FMBKFj5zvT5ZW2XnLiP37szyy3ZeZOse\\/H7eAn1kP3pCS0CLUDZhku2Vda4=\",\"private_key\":\"0:3:geN5DbouJb+69e4UP6nPaWhyiTNhzFiWGQ5UApfhwGedkbn8UTuyAvxYcq3GpJ98UxvOeX83aTVfGEsM\"},\"paypal_express_bml\":{\"active\":\"0\"},\"stripe_payments\":{\"active\":\"1\"},\"paypal_express\":{\"merchant_id\":\"6R9NK4C6P2J4W\",\"active\":\"1\"},\"stripe_payments_basic\":{\"stripe_test_pk\":\"pk_test_FdhKGpy7eRo5rznrHz21vCkX007Ee3fCyx\",\"stripe_test_sk\":\"0:3:zxbowDMsrlgJava7BebeOuGSM0\\/a1erelqols0hnYSvQTjL9NAQnNh\\/QtV8k7TCnySOVqu3V+gu9w7rLgvrxmEWe4\\/M+tg==\",\"stripe_mode\":\"test\"}},\"klarna\":{\"api\":{\"api_version\":\"kp_eu\",\"merchant_id\":\"PK14492_e278829ed412\",\"shared_secret\":\"0:3:kb\\/\\/IKkPsqXC1zfo69uIANeDmWlr92xu2wC9PMochiAsmU0y4LeDUzyE2kg=\",\"test_mode\":\"1\",\"debug\":\"1\"}}}}','2020-04-07 12:13:29');
/*!40000 ALTER TABLE `flag` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `gift_message`
--

DROP TABLE IF EXISTS `gift_message`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gift_message` (
  `gift_message_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'GiftMessage Id',
  `customer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer id',
  `sender` varchar(255) DEFAULT NULL COMMENT 'Sender',
  `recipient` varchar(255) DEFAULT NULL COMMENT 'Registrant',
  `message` text COMMENT 'Message',
  PRIMARY KEY (`gift_message_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Gift Message';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gift_message`
--

LOCK TABLES `gift_message` WRITE;
/*!40000 ALTER TABLE `gift_message` DISABLE KEYS */;
/*!40000 ALTER TABLE `gift_message` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `googleoptimizer_code`
--

DROP TABLE IF EXISTS `googleoptimizer_code`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `googleoptimizer_code` (
  `code_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Google experiment code id',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Optimized entity id product id or catalog id',
  `entity_type` varchar(50) DEFAULT NULL COMMENT 'Optimized entity type',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store id',
  `experiment_script` text COMMENT 'Google experiment script',
  PRIMARY KEY (`code_id`),
  UNIQUE KEY `GOOGLEOPTIMIZER_CODE_STORE_ID_ENTITY_ID_ENTITY_TYPE` (`store_id`,`entity_id`,`entity_type`),
  CONSTRAINT `GOOGLEOPTIMIZER_CODE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Google Experiment code';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `googleoptimizer_code`
--

LOCK TABLES `googleoptimizer_code` WRITE;
/*!40000 ALTER TABLE `googleoptimizer_code` DISABLE KEYS */;
/*!40000 ALTER TABLE `googleoptimizer_code` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `import_history`
--

DROP TABLE IF EXISTS `import_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `import_history` (
  `history_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'History record Id',
  `started_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Started at',
  `user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'User ID',
  `imported_file` varchar(255) DEFAULT NULL COMMENT 'Imported file',
  `execution_time` varchar(255) DEFAULT NULL COMMENT 'Execution time',
  `summary` varchar(255) DEFAULT NULL COMMENT 'Summary',
  `error_file` varchar(255) NOT NULL COMMENT 'Imported file with errors',
  PRIMARY KEY (`history_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Import history table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `import_history`
--

LOCK TABLES `import_history` WRITE;
/*!40000 ALTER TABLE `import_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `import_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `importexport_importdata`
--

DROP TABLE IF EXISTS `importexport_importdata`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `importexport_importdata` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `entity` varchar(50) NOT NULL COMMENT 'Entity',
  `behavior` varchar(10) NOT NULL DEFAULT 'append' COMMENT 'Behavior',
  `data` longtext COMMENT 'Data',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Import Data Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `importexport_importdata`
--

LOCK TABLES `importexport_importdata` WRITE;
/*!40000 ALTER TABLE `importexport_importdata` DISABLE KEYS */;
/*!40000 ALTER TABLE `importexport_importdata` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `indexer_state`
--

DROP TABLE IF EXISTS `indexer_state`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `indexer_state` (
  `state_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Indexer State Id',
  `indexer_id` varchar(255) DEFAULT NULL COMMENT 'Indexer Id',
  `status` varchar(16) DEFAULT 'invalid' COMMENT 'Indexer Status',
  `updated` datetime DEFAULT NULL COMMENT 'Indexer Status',
  `hash_config` varchar(32) NOT NULL COMMENT 'Hash of indexer config',
  PRIMARY KEY (`state_id`),
  KEY `INDEXER_STATE_INDEXER_ID` (`indexer_id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='Indexer State';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `indexer_state`
--

LOCK TABLES `indexer_state` WRITE;
/*!40000 ALTER TABLE `indexer_state` DISABLE KEYS */;
INSERT INTO `indexer_state` VALUES (1,'design_config_grid','valid','2020-04-07 12:22:22','5e01d10e0edc855c8d6af3f5e4a7f180'),(2,'customer_grid','valid','2020-04-07 12:22:22','08a261ba19857bc145c531d614624b96'),(3,'catalog_category_product','invalid','2020-04-07 12:12:37','f679cb590734d0825e7da209c843fd9a'),(4,'catalog_product_category','invalid','2020-04-07 12:12:37','49b29347fb977f5719316eb10ecfe079'),(5,'catalogrule_rule','invalid','2020-04-07 12:12:37','37b82a293d8fee601ba2ed2cf0b3ad0e'),(6,'catalog_product_attribute','invalid','2020-04-07 12:12:37','1fa5c5dcf5de82b255996851e21ffcae'),(7,'catalog_product_price','invalid','2020-04-07 12:12:37','795bae9e961aaa3dd4f55faeab984056'),(8,'catalogrule_product','invalid','2020-04-07 12:12:37','ec11d876c203069cabb6106a3b29634d'),(9,'cataloginventory_stock','invalid','2020-04-07 12:12:37','af505b3ab5c711cd31fc534cb62ec25f'),(10,'catalogsearch_fulltext','invalid','2020-04-07 12:12:37','2c64f1aa93f0e95144cc9a615867557f'),(15,'inventory','invalid','2020-04-07 12:12:37','c1f57fa784a9ed8ad4df1e99951aa1b5'),(16,'scconnector_google_remove','invalid','2020-04-07 12:12:37','a3d254ed47ed56da5872e7f28c57e9f3'),(17,'scconnector_google_feed','invalid','2020-04-07 12:12:37','ea626995aaf29a2628e5e4de402c9ae1');
/*!40000 ALTER TABLE `indexer_state` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `integration`
--

DROP TABLE IF EXISTS `integration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `integration` (
  `integration_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Integration ID',
  `name` varchar(255) NOT NULL COMMENT 'Integration name is displayed in the admin interface',
  `email` varchar(255) NOT NULL COMMENT 'Email address of the contact person',
  `endpoint` varchar(255) DEFAULT NULL COMMENT 'Endpoint for posting consumer credentials',
  `status` smallint(5) unsigned NOT NULL COMMENT 'Integration status',
  `consumer_id` int(10) unsigned DEFAULT NULL COMMENT 'Oauth consumer',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time',
  `setup_type` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Integration type - manual or config file',
  `identity_link_url` varchar(255) DEFAULT NULL COMMENT 'Identity linking Url',
  PRIMARY KEY (`integration_id`),
  UNIQUE KEY `INTEGRATION_NAME` (`name`),
  UNIQUE KEY `INTEGRATION_CONSUMER_ID` (`consumer_id`),
  CONSTRAINT `INTEGRATION_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='integration';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `integration`
--

LOCK TABLES `integration` WRITE;
/*!40000 ALTER TABLE `integration` DISABLE KEYS */;
/*!40000 ALTER TABLE `integration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_geoname`
--

DROP TABLE IF EXISTS `inventory_geoname`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_geoname` (
  `country_code` varchar(64) NOT NULL,
  `postcode` varchar(64) NOT NULL,
  `city` varchar(64) NOT NULL,
  `region` varchar(64) NOT NULL,
  `province` varchar(64) NOT NULL,
  `latitude` double NOT NULL,
  `longitude` double NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_geoname`
--

LOCK TABLES `inventory_geoname` WRITE;
/*!40000 ALTER TABLE `inventory_geoname` DISABLE KEYS */;
/*!40000 ALTER TABLE `inventory_geoname` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_low_stock_notification_configuration`
--

DROP TABLE IF EXISTS `inventory_low_stock_notification_configuration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_low_stock_notification_configuration` (
  `source_code` varchar(255) NOT NULL,
  `sku` varchar(64) NOT NULL,
  `notify_stock_qty` decimal(12,4) DEFAULT NULL,
  PRIMARY KEY (`source_code`,`sku`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_low_stock_notification_configuration`
--

LOCK TABLES `inventory_low_stock_notification_configuration` WRITE;
/*!40000 ALTER TABLE `inventory_low_stock_notification_configuration` DISABLE KEYS */;
INSERT INTO `inventory_low_stock_notification_configuration` VALUES ('default','31091133-black-EU 37',NULL),('default','31091133-black-EU 38',NULL),('default','31091133-black-EU 40',NULL),('default','31091133-black-EU 41',NULL),('default','31091133-black-EU 42',NULL),('default','31091133-black-EU 43',NULL),('default','31091133-black-EU 45',NULL),('default','31091133-blue-EU 37',NULL),('default','31091133-blue-EU 38',NULL),('default','31091133-blue-EU 40',NULL),('default','31091133-blue-EU 41',NULL),('default','31091133-blue-EU 42',NULL),('default','31091133-blue-EU 43',NULL),('default','31091133-blue-EU 45',NULL),('default','31091133-brown-EU 37',NULL),('default','31091133-brown-EU 38',NULL),('default','31091133-brown-EU 40',NULL),('default','31091133-brown-EU 41',NULL),('default','31091133-brown-EU 42',NULL),('default','31091133-brown-EU 43',NULL),('default','31091133-brown-EU 45',NULL),('default','31091133-grey-EU 37',NULL),('default','31091133-grey-EU 38',NULL),('default','31091133-grey-EU 40',NULL),('default','31091133-grey-EU 41',NULL),('default','31091133-grey-EU 42',NULL),('default','31091133-grey-EU 43',NULL),('default','31091133-grey-EU 45',NULL),('default','31091133-red-EU 37',NULL),('default','31091133-red-EU 38',NULL),('default','31091133-red-EU 40',NULL),('default','31091133-red-EU 41',NULL),('default','31091133-red-EU 42',NULL),('default','31091133-red-EU 43',NULL),('default','31091133-red-EU 45',NULL),('default','31091133-white-EU 37',NULL),('default','31091133-white-EU 38',NULL),('default','31091133-white-EU 40',NULL),('default','31091133-white-EU 41',NULL),('default','31091133-white-EU 42',NULL),('default','31091133-white-EU 43',NULL),('default','31091133-white-EU 45',NULL),('default','31191497-brown-Medium size',NULL),('default','31304473-brown',NULL),('default','31324632-blue-Small size',NULL),('default','n31091479',NULL),('default','n31276018',NULL);
/*!40000 ALTER TABLE `inventory_low_stock_notification_configuration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_reservation`
--

DROP TABLE IF EXISTS `inventory_reservation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_reservation` (
  `reservation_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `stock_id` int(10) unsigned NOT NULL,
  `sku` varchar(64) NOT NULL,
  `quantity` decimal(10,4) NOT NULL DEFAULT '0.0000',
  `metadata` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`reservation_id`),
  KEY `INVENTORY_RESERVATION_STOCK_ID_SKU_QUANTITY` (`stock_id`,`sku`,`quantity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_reservation`
--

LOCK TABLES `inventory_reservation` WRITE;
/*!40000 ALTER TABLE `inventory_reservation` DISABLE KEYS */;
/*!40000 ALTER TABLE `inventory_reservation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_shipment_source`
--

DROP TABLE IF EXISTS `inventory_shipment_source`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_shipment_source` (
  `shipment_id` int(10) unsigned NOT NULL,
  `source_code` varchar(255) NOT NULL,
  PRIMARY KEY (`shipment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_shipment_source`
--

LOCK TABLES `inventory_shipment_source` WRITE;
/*!40000 ALTER TABLE `inventory_shipment_source` DISABLE KEYS */;
/*!40000 ALTER TABLE `inventory_shipment_source` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_source`
--

DROP TABLE IF EXISTS `inventory_source`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_source` (
  `source_code` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `enabled` smallint(5) unsigned NOT NULL DEFAULT '1',
  `description` text,
  `latitude` decimal(8,6) DEFAULT NULL,
  `longitude` decimal(9,6) DEFAULT NULL,
  `country_id` varchar(2) NOT NULL,
  `region_id` int(10) unsigned DEFAULT NULL,
  `region` varchar(255) DEFAULT NULL,
  `city` varchar(255) DEFAULT NULL,
  `street` varchar(255) DEFAULT NULL,
  `postcode` varchar(255) NOT NULL,
  `contact_name` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `fax` varchar(255) DEFAULT NULL,
  `use_default_carrier_config` smallint(5) unsigned NOT NULL DEFAULT '1',
  PRIMARY KEY (`source_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_source`
--

LOCK TABLES `inventory_source` WRITE;
/*!40000 ALTER TABLE `inventory_source` DISABLE KEYS */;
INSERT INTO `inventory_source` VALUES ('default','Default Source',1,'Default Source',0.000000,0.000000,'US',NULL,NULL,NULL,NULL,'00000',NULL,NULL,NULL,NULL,1);
/*!40000 ALTER TABLE `inventory_source` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_source_carrier_link`
--

DROP TABLE IF EXISTS `inventory_source_carrier_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_source_carrier_link` (
  `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `source_code` varchar(255) NOT NULL,
  `carrier_code` varchar(255) NOT NULL,
  `position` smallint(5) unsigned DEFAULT NULL,
  PRIMARY KEY (`link_id`),
  KEY `INV_SOURCE_CARRIER_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` (`source_code`),
  CONSTRAINT `INV_SOURCE_CARRIER_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` FOREIGN KEY (`source_code`) REFERENCES `inventory_source` (`source_code`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_source_carrier_link`
--

LOCK TABLES `inventory_source_carrier_link` WRITE;
/*!40000 ALTER TABLE `inventory_source_carrier_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `inventory_source_carrier_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_source_item`
--

DROP TABLE IF EXISTS `inventory_source_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_source_item` (
  `source_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `source_code` varchar(255) NOT NULL,
  `sku` varchar(64) NOT NULL,
  `quantity` decimal(12,4) NOT NULL DEFAULT '0.0000',
  `status` smallint(5) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`source_item_id`),
  UNIQUE KEY `INVENTORY_SOURCE_ITEM_SOURCE_CODE_SKU` (`source_code`,`sku`),
  KEY `INVENTORY_SOURCE_ITEM_SKU_SOURCE_CODE_QUANTITY` (`sku`,`source_code`,`quantity`),
  CONSTRAINT `INVENTORY_SOURCE_ITEM_SOURCE_CODE_INVENTORY_SOURCE_SOURCE_CODE` FOREIGN KEY (`source_code`) REFERENCES `inventory_source` (`source_code`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2873 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_source_item`
--

LOCK TABLES `inventory_source_item` WRITE;
/*!40000 ALTER TABLE `inventory_source_item` DISABLE KEYS */;
INSERT INTO `inventory_source_item` VALUES (1,'default','2313434',0.0000,1),(2,'default','31190954',0.0000,1),(3,'default','31091133',0.0000,1),(4,'default','31332981',0.0000,1),(5,'default','31276018',0.0000,1),(6,'default','31141265',0.0000,1),(7,'default','30977134',0.0000,1),(8,'default','31276018-1',0.0000,1),(9,'default','31241601',0.0000,1),(10,'default','30977108',0.0000,1),(11,'default','31240220',0.0000,1),(12,'default','31331004',0.0000,1),(13,'default','31091010',0.0000,1),(14,'default','31085465',0.0000,1),(15,'default','31340162',0.0000,1),(16,'default','31125033',0.0000,1),(17,'default','31483900',0.0000,1),(18,'default','30807043',0.0000,1),(19,'default','31125034',0.0000,1),(20,'default','310046545',0.0000,1),(21,'default','31179106',0.0000,1),(22,'default','30977037',0.0000,1),(23,'default','31149594',0.0000,1),(24,'default','31125036',0.0000,1),(25,'default','31289374',0.0000,1),(26,'default','31160332',0.0000,1),(27,'default','31125037',0.0000,1),(28,'default','31189007',0.0000,1),(29,'default','30986434',0.0000,1),(30,'default','31231300',0.0000,1),(31,'default','31189077',0.0000,1),(32,'default','31261586',0.0000,1),(33,'default','31189077-1',0.0000,1),(34,'default','30947478',0.0000,1),(35,'default','31178507',0.0000,1),(36,'default','31125039',0.0000,1),(37,'default','31134483',0.0000,1),(38,'default','31135088',0.0000,1),(39,'default','31258335',0.0000,1),(40,'default','31231300-1',0.0000,1),(41,'default','31220278',0.0000,1),(42,'default','31264080',0.0000,1),(43,'default','31207422',0.0000,1),(44,'default','31085354',0.0000,1),(45,'default','31202421',0.0000,1),(46,'default','30811612',0.0000,1),(47,'default','31125042',0.0000,1),(48,'default','31045897',0.0000,1),(49,'default','30838511',0.0000,1),(50,'default','31074190',0.0000,1),(51,'default','31300702',0.0000,1),(52,'default','31253491',0.0000,1),(53,'default','31266871',0.0000,1),(54,'default','31160296',0.0000,1),(55,'default','31253492',0.0000,1),(56,'default','31253493',0.0000,1),(57,'default','31103364',0.0000,1),(58,'default','31291013',0.0000,1),(59,'default','31253494',0.0000,1),(60,'default','31319864',0.0000,1),(61,'default','31151579',0.0000,1),(62,'default','31160298',0.0000,1),(63,'default','31196404',0.0000,1),(64,'default','31253495',0.0000,1),(65,'default','31292416',0.0000,1),(66,'default','31253496',0.0000,1),(67,'default','31324632',0.0000,1),(68,'default','31239294',0.0000,1),(69,'default','30805166',0.0000,1),(70,'default','31197648',0.0000,1),(71,'default','30988045',0.0000,1),(72,'default','31093629',0.0000,1),(73,'default','31253498',0.0000,1),(74,'default','31333018',0.0000,1),(75,'default','31302817',0.0000,1),(76,'default','31253499',0.0000,1),(77,'default','30945868',0.0000,1),(78,'default','31091479',0.0000,1),(79,'default','31250794',0.0000,1),(80,'default','31219211',0.0000,1),(81,'default','31166144',0.0000,1),(82,'default','31253501',0.0000,1),(83,'default','31176055',0.0000,1),(84,'default','31253502',0.0000,1),(85,'default','31207365',0.0000,1),(86,'default','31167823',0.0000,1),(87,'default','31226241',0.0000,1),(88,'default','31231309',0.0000,1),(89,'default','31273656',0.0000,1),(90,'default','31343872',0.0000,1),(91,'default','31145394',0.0000,1),(92,'default','31218012',0.0000,1),(93,'default','31043406',0.0000,1),(94,'default','31262293',0.0000,1),(95,'default','31262295',0.0000,1),(96,'default','31162615',0.0000,1),(97,'default','31268637',0.0000,1),(98,'default','31001803',0.0000,1),(99,'default','31191497',0.0000,1),(100,'default','310018035',0.0000,1),(101,'default','31146614',0.0000,1),(102,'default','310018033',0.0000,1),(103,'default','31034537',0.0000,1),(104,'default','31350778',0.0000,1),(105,'default','31350783',0.0000,1),(106,'default','31062218',0.0000,1),(107,'default','31292042',0.0000,1),(108,'default','31305260',0.0000,1),(109,'default','31223382',0.0000,1),(110,'default','31304473',0.0000,1),(111,'default','31327540',0.0000,1),(112,'default','31175794',0.0000,1),(113,'default','31005341',0.0000,1),(114,'default','31264080-brown',0.0000,1),(116,'default','31264080-brown-Large size',45.0000,1),(117,'default','31264080-brown-Medium size',45.0000,1),(118,'default','2313434-grey-Large size',0.0000,1),(119,'default','2313434-grey-Small size',0.0000,1),(120,'default','2313434-grey-Medium size',0.0000,1),(122,'default','31190954-grey-Large size',0.0000,1),(123,'default','31190954-grey-Small size',0.0000,1),(124,'default','31190954-grey-Medium size',0.0000,1),(126,'default','31091133-grey-EU 42',0.0000,1),(127,'default','31091133-grey-EU 45',0.0000,1),(128,'default','31091133-grey-EU 37',0.0000,1),(129,'default','31091133-grey-EU 40',0.0000,1),(130,'default','31091133-grey-EU 38',0.0000,1),(131,'default','31091133-grey-EU 41',0.0000,1),(132,'default','31091133-grey-EU 43',0.0000,1),(134,'default','31332981-EU 39-brown',0.0000,1),(135,'default','31332981-EU 42-brown',0.0000,1),(136,'default','31332981-EU 40-brown',0.0000,1),(137,'default','31332981-EU 43-brown',0.0000,1),(138,'default','31332981-EU 41-brown',0.0000,1),(140,'default','31276018-EU 40-black',0.0000,1),(141,'default','31276018-EU 41-black',0.0000,1),(142,'default','31276018-EU 42-black',0.0000,1),(144,'default','31141265-blue-EU 40',0.0000,1),(145,'default','31141265-blue-EU 41',0.0000,1),(146,'default','31141265-white-EU 40',0.0000,1),(147,'default','31141265-white-EU 41',0.0000,1),(149,'default','30977134-white-Small size',56.0000,1),(150,'default','30977134-white-Extra small size',56.0000,1),(151,'default','30977134-white-Medium size',56.0000,1),(153,'default','31276018-1-brown-EU 43',0.0000,1),(154,'default','31276018-1-brown-EU 42',0.0000,1),(155,'default','31276018-1-brown-EU 44',0.0000,1),(157,'default','31241601-grey-Small size',56.0000,1),(158,'default','31241601-grey-Extra small size',56.0000,1),(159,'default','31241601-grey-Large size',56.0000,1),(161,'default','30977108-black-Large size',45.0000,1),(162,'default','30977108-black-Extra small size',45.0000,1),(163,'default','30977108-black-Small size',45.0000,1),(164,'default','30977108-black-Medium size',45.0000,1),(166,'default','31240220-black-Extra small size',35.0000,1),(167,'default','31240220-black-Small size',35.0000,1),(169,'default','31331004-black-Large size',56.0000,1),(170,'default','31331004-black-Small size',56.0000,1),(171,'default','31331004-black-Medium size',56.0000,1),(173,'default','31091010-EU 39-blue',0.0000,1),(174,'default','31091010-EU 40-blue',0.0000,1),(175,'default','31091010-EU 41-blue',0.0000,1),(176,'default','31091010-EU 42-blue',0.0000,1),(177,'default','31091010-EU 43-blue',0.0000,1),(179,'default','31085465-EU 40-brown',0.0000,1),(180,'default','31085465-EU 41-brown',0.0000,1),(181,'default','31085465-EU 42-brown',0.0000,1),(182,'default','31085465-EU 43-brown',0.0000,1),(183,'default','31085465-EU 44-brown',0.0000,1),(184,'default','31085465-EU 39-brown',0.0000,1),(186,'default','31340162-grey-Extra small size',45.0000,1),(187,'default','31340162-grey-Small size',45.0000,1),(188,'default','31340162-grey-Medium size',45.0000,1),(189,'default','31340162-grey-Large size',45.0000,1),(191,'default','31125033-black-Extra small size',67.0000,1),(192,'default','31125033-black-Extra large size',67.0000,1),(193,'default','31125033-black-Small size',67.0000,1),(194,'default','31125033-black-Large size',67.0000,1),(196,'default','31483900-grey-Extra large size',55.0000,1),(197,'default','31483900-grey-Small size',55.0000,1),(198,'default','31483900-grey-Medium size',55.0000,1),(200,'default','30807043-brown-EU 39',0.0000,1),(201,'default','30807043-brown-EU 40',0.0000,1),(202,'default','30807043-brown-EU 41',0.0000,1),(203,'default','30807043-brown-EU 43',0.0000,1),(204,'default','30807043-brown-EU 42',0.0000,1),(205,'default','30807043-brown-EU 44',0.0000,1),(207,'default','31125034-Small size-blue',67.0000,1),(208,'default','31125034-Extra small size-blue',67.0000,1),(209,'default','31125034-Large size-blue',67.0000,1),(210,'default','31125034-Extra large size-blue',67.0000,1),(212,'default','310046545-black-Small size',56.0000,1),(213,'default','310046545-black-Extra large size',56.0000,1),(214,'default','310046545-black-Extra small size',56.0000,1),(216,'default','31179106-brown-EU 39',0.0000,1),(217,'default','31179106-brown-EU 40',0.0000,1),(218,'default','31179106-brown-EU 41',0.0000,1),(219,'default','31179106-brown-EU 42',0.0000,1),(220,'default','31179106-brown-EU 43',0.0000,1),(221,'default','31179106-brown-EU 44',0.0000,1),(222,'default','31179106-brown-EU 45',0.0000,1),(224,'default','30977037-white-Large size',56.0000,1),(225,'default','30977037-white-Extra small size',56.0000,1),(226,'default','30977037-white-Small size',56.0000,1),(227,'default','30977037-white-Medium size',56.0000,1),(228,'default','30977037-white-Extra large size',56.0000,1),(230,'default','31149594-grey-EU 36',0.0000,1),(231,'default','31149594-grey-EU 37',0.0000,1),(232,'default','31149594-grey-EU 38',0.0000,1),(233,'default','31149594-grey-EU 39',0.0000,1),(234,'default','31149594-grey-EU 40',0.0000,1),(235,'default','31149594-grey-EU 41',0.0000,1),(237,'default','31125036-red-Small size',55.0000,1),(238,'default','31125036-red-Extra small size',55.0000,1),(239,'default','31125036-red-Medium size',55.0000,1),(241,'default','31289374-Small size-brown',57.0000,1),(242,'default','31289374-Medium size-brown',57.0000,1),(244,'default','31160332-black-Small size',57.0000,1),(245,'default','31160332-black-Medium size',57.0000,1),(247,'default','31125037-blue-Small size',56.0000,1),(248,'default','31125037-blue-Medium size',56.0000,1),(249,'default','31125037-blue-Extra small size',56.0000,1),(250,'default','31125037-blue-Large size',56.0000,1),(252,'default','31189007-black-Small size',0.0000,1),(253,'default','31189007-black-Medium size',0.0000,1),(254,'default','31189007-black-Large size',0.0000,1),(255,'default','31189007-black-Extra large size',0.0000,1),(257,'default','30986434-EU 40-brown',0.0000,1),(258,'default','30986434-EU 39-brown',0.0000,1),(259,'default','30986434-EU 42-brown',0.0000,1),(260,'default','30986434-EU 43-brown',0.0000,1),(261,'default','30986434-EU 45-brown',0.0000,1),(262,'default','30986434-EU 44-brown',0.0000,1),(264,'default','31231300-black-Extra small size',0.0000,1),(265,'default','31231300-black-Small size',0.0000,1),(266,'default','31231300-black-Medium size',0.0000,1),(267,'default','31231300-black-Extra large size',0.0000,1),(268,'default','31231300-black-Large size',0.0000,1),(270,'default','31189077-grey-Small size',0.0000,1),(271,'default','31189077-grey-Medium size',0.0000,1),(272,'default','31189077-grey-Large size',0.0000,1),(274,'default','31261586-white-Small size',67.0000,1),(275,'default','31261586-white-Medium size',67.0000,1),(276,'default','31261586-white-Extra small size',67.0000,1),(277,'default','31261586-white-Large size',67.0000,1),(279,'default','31189077-1-black-Small size',0.0000,1),(280,'default','31189077-1-black-Medium size',0.0000,1),(281,'default','31189077-1-black-Large size',0.0000,1),(282,'default','31189077-1-black-Extra large size',0.0000,1),(284,'default','30947478-black-EU 41',67.0000,1),(285,'default','30947478-black-EU 42',67.0000,1),(286,'default','30947478-black-EU 40',67.0000,1),(287,'default','30947478-black-EU 44',67.0000,1),(288,'default','30947478-black-EU 43',67.0000,1),(290,'default','31178507-Medium size-blue',67.0000,1),(291,'default','31178507-Large size-blue',67.0000,1),(293,'default','31125039-Small size-blue',67.0000,1),(294,'default','31125039-Medium size-blue',67.0000,1),(295,'default','31125039-Extra small size-blue',67.0000,1),(296,'default','31125039-Large size-blue',67.0000,1),(297,'default','31125039-Extra large size-blue',67.0000,1),(299,'default','31134483-grey-Extra small size',0.0000,1),(300,'default','31134483-grey-Small size',0.0000,1),(301,'default','31134483-grey-Medium size',0.0000,1),(302,'default','31134483-grey-Large size',0.0000,1),(304,'default','31135088-black-Medium size',0.0000,1),(305,'default','31135088-black-Small size',0.0000,1),(306,'default','31135088-black-Extra large size',0.0000,1),(307,'default','31135088-black-Large size',0.0000,1),(309,'default','31258335-black-Small size',56.0000,1),(310,'default','31258335-black-Medium size',56.0000,1),(312,'default','31231300-1-brown-Small size',0.0000,1),(313,'default','31231300-1-brown-Large size',0.0000,1),(314,'default','31231300-1-brown-Medium size',0.0000,1),(316,'default','31220278-brown-Extra small size',65.0000,1),(317,'default','31220278-brown-Small size',65.0000,1),(318,'default','31220278-brown-Medium size',65.0000,1),(319,'default','31220278-white-Extra small size',0.0000,1),(320,'default','31220278-white-Small size',0.0000,1),(321,'default','31220278-white-Medium size',0.0000,1),(323,'default','31207422-brown-Extra small size',0.0000,1),(324,'default','31207422-brown-Small size',0.0000,1),(325,'default','31207422-brown-Medium size',0.0000,1),(326,'default','31207422-brown-Large size',0.0000,1),(328,'default','31085354-red-EU 37',65.0000,1),(329,'default','31085354-red-EU 38',65.0000,1),(330,'default','31085354-red-EU 36',65.0000,1),(331,'default','31085354-red-EU 39',65.0000,1),(332,'default','31085354-red-EU 40',65.0000,1),(333,'default','31085354-red-EU 41',65.0000,1),(335,'default','31202421-black-Extra small size',0.0000,1),(336,'default','31202421-black-Small size',0.0000,1),(337,'default','31202421-black-Medium size',0.0000,1),(339,'default','30811612-white-Extra small size',55.0000,1),(340,'default','30811612-white-Small size',55.0000,1),(341,'default','30811612-white-Medium size',55.0000,1),(343,'default','31125042-Medium size-black',45.0000,1),(344,'default','31125042-Large size-black',45.0000,1),(345,'default','31125042-Small size-black',45.0000,1),(346,'default','31125042-Extra small size-black',45.0000,1),(348,'default','31045897-black-Small size',56.0000,1),(349,'default','31045897-black-Medium size',56.0000,1),(351,'default','30838511-white-Small size',45.0000,1),(352,'default','30838511-white-Medium size',45.0000,1),(353,'default','30838511-white-Extra small size',45.0000,1),(354,'default','30838511-white-Large size',45.0000,1),(356,'default','31074190-grey-EU 36',56.0000,1),(357,'default','31074190-grey-EU 37',56.0000,1),(358,'default','31074190-grey-EU 38',56.0000,1),(359,'default','31074190-grey-EU 39',56.0000,1),(360,'default','31074190-grey-EU 40',56.0000,1),(361,'default','31074190-grey-EU 41',56.0000,1),(363,'default','31300702-black-Small size',57.0000,1),(364,'default','31300702-black-Medium size',57.0000,1),(366,'default','31253491-blue-Medium size',0.0000,1),(367,'default','31253491-blue-Extra small size',0.0000,1),(368,'default','31253491-blue-Small size',0.0000,1),(369,'default','31253491-blue-Large size',0.0000,1),(371,'default','31266871-white-Extra small size',45.0000,1),(372,'default','31266871-white-Small size',45.0000,1),(373,'default','31266871-white-Medium size',45.0000,1),(374,'default','31266871-white-Large size',45.0000,1),(376,'default','31160296-white-Small size',58.0000,1),(377,'default','31160296-white-Extra small size',58.0000,1),(378,'default','31160296-white-Medium size',58.0000,1),(380,'default','31253492-blue-Extra small size',45.0000,1),(381,'default','31253492-blue-Small size',45.0000,1),(382,'default','31253492-blue-Medium size',45.0000,1),(383,'default','31253492-blue-Large size',45.0000,1),(384,'default','31253492-blue-Extra large size',45.0000,1),(386,'default','31253493-blue-Small size',0.0000,1),(387,'default','31253493-blue-Large size',0.0000,1),(388,'default','31253493-blue-Medium size',0.0000,1),(389,'default','31253493-blue-Extra large size',0.0000,1),(391,'default','31103364-brown-EU 37',56.0000,1),(392,'default','31103364-brown-EU 36',56.0000,1),(393,'default','31103364-brown-EU 38',56.0000,1),(394,'default','31103364-brown-EU 40',56.0000,1),(396,'default','31291013-white-Small size',56.0000,1),(397,'default','31291013-white-Extra small size',56.0000,1),(398,'default','31291013-white-Large size',56.0000,1),(399,'default','31291013-white-Medium size',56.0000,1),(401,'default','31253494-brown-Small size',56.0000,1),(402,'default','31253494-brown-Medium size',56.0000,1),(403,'default','31253494-brown-Large size',56.0000,1),(404,'default','31253494-black-Small size',0.0000,1),(405,'default','31253494-black-Medium size',0.0000,1),(406,'default','31253494-black-Large size',0.0000,1),(408,'default','31319864-white-Small size',45.0000,1),(409,'default','31319864-white-Medium size',45.0000,1),(410,'default','31319864-white-Extra small size',45.0000,1),(411,'default','31319864-white-Large size',45.0000,1),(413,'default','31151579-brown-Small size',67.0000,1),(414,'default','31151579-brown-Extra small size',67.0000,1),(415,'default','31151579-brown-Medium size',67.0000,1),(416,'default','31151579-brown-Large size',67.0000,1),(417,'default','31151579-white-Small size',67.0000,1),(418,'default','31151579-white-Extra small size',67.0000,1),(419,'default','31151579-white-Medium size',67.0000,1),(420,'default','31151579-white-Large size',67.0000,1),(422,'default','31160298-brown-Small size',0.0000,1),(423,'default','31160298-brown-Medium size',0.0000,1),(424,'default','31160298-red-Small size',45.0000,1),(425,'default','31160298-red-Medium size',45.0000,1),(427,'default','31196404-brown-EU 36',45.0000,1),(428,'default','31196404-brown-EU 39',45.0000,1),(429,'default','31196404-brown-EU 40',45.0000,1),(430,'default','31196404-brown-EU 41',45.0000,1),(431,'default','31196404-brown-EU 38',45.0000,1),(433,'default','31253495-grey-Medium size',45.0000,1),(434,'default','31253495-grey-Small size',45.0000,1),(435,'default','31253495-grey-Large size',45.0000,1),(437,'default','31292416-brown-Small size',56.0000,1),(438,'default','31292416-brown-Extra small size',56.0000,1),(439,'default','31292416-brown-Medium size',56.0000,1),(441,'default','31253496-Medium size-black',0.0000,1),(442,'default','31253496-Small size-black',0.0000,1),(443,'default','31253496-Large size-black',0.0000,1),(445,'default','31324632-blue-Small size',45.0000,1),(446,'default','31324632-blue-Medium size',0.0000,1),(447,'default','31324632-blue-Large size',0.0000,1),(449,'default','31239294-red-Small size',56.0000,1),(450,'default','31239294-red-Extra small size',56.0000,1),(451,'default','31239294-red-Extra large size',56.0000,1),(452,'default','31239294-red-Medium size',56.0000,1),(454,'default','30805166-white-Small size',0.0000,1),(455,'default','30805166-white-Medium size',0.0000,1),(456,'default','30805166-white-Extra small size',0.0000,1),(457,'default','30805166-brown-Small size',0.0000,1),(458,'default','30805166-brown-Medium size',0.0000,1),(459,'default','30805166-brown-Extra small size',0.0000,1),(461,'default','31197648-EU 37-brown',45.0000,1),(462,'default','31197648-EU 38-brown',45.0000,1),(463,'default','31197648-EU 39-brown',45.0000,1),(464,'default','31197648-EU 40-brown',45.0000,1),(465,'default','31197648-EU 41-brown',45.0000,1),(467,'default','30988045-white-Small size',0.0000,1),(468,'default','30988045-white-Medium size',0.0000,1),(469,'default','30988045-white-Extra large size',0.0000,1),(470,'default','30988045-white-Large size',0.0000,1),(472,'default','31093629-white-EU 37',56.0000,1),(473,'default','31093629-white-EU 38',56.0000,1),(474,'default','31093629-white-EU 39',56.0000,1),(475,'default','31093629-white-EU 41',56.0000,1),(476,'default','31093629-white-EU 40',56.0000,1),(477,'default','31093629-grey-EU 37',56.0000,1),(478,'default','31093629-grey-EU 38',56.0000,1),(479,'default','31093629-grey-EU 39',56.0000,1),(480,'default','31093629-grey-EU 41',56.0000,1),(481,'default','31093629-grey-EU 40',56.0000,1),(483,'default','31253498-blue-Small size',0.0000,1),(484,'default','31253498-blue-Large size',0.0000,1),(485,'default','31253498-blue-Medium size',0.0000,1),(487,'default','31333018-EU 36-white',0.0000,1),(488,'default','31333018-EU 36-grey',0.0000,1),(489,'default','31333018-EU 38-white',0.0000,1),(490,'default','31333018-EU 38-grey',0.0000,1),(491,'default','31333018-EU 37-white',0.0000,1),(492,'default','31333018-EU 37-grey',0.0000,1),(493,'default','31333018-EU 40-white',0.0000,1),(494,'default','31333018-EU 40-grey',0.0000,1),(496,'default','31302817-brown-Small size',65.0000,1),(497,'default','31302817-brown-Large size',65.0000,1),(498,'default','31302817-brown-Medium size',65.0000,1),(500,'default','31253499-blue-Small size',45.0000,1),(501,'default','31253499-blue-Medium size',45.0000,1),(502,'default','31253499-blue-Large size',45.0000,1),(504,'default','30945868-white-EU 36',0.0000,1),(505,'default','30945868-white-EU 38',0.0000,1),(506,'default','30945868-white-EU 39',0.0000,1),(507,'default','30945868-white-EU 41',0.0000,1),(508,'default','30945868-white-EU 40',0.0000,1),(509,'default','30945868-white-EU 43',0.0000,1),(510,'default','30945868-grey-EU 36',67.0000,1),(511,'default','30945868-grey-EU 38',67.0000,1),(512,'default','30945868-grey-EU 39',67.0000,1),(513,'default','30945868-grey-EU 41',67.0000,1),(514,'default','30945868-grey-EU 40',67.0000,1),(515,'default','30945868-grey-EU 43',67.0000,1),(517,'default','31091479-brown-Extra small size',45.0000,1),(518,'default','31091479-brown-Small size',45.0000,1),(519,'default','31091479-brown-Medium size',45.0000,1),(521,'default','31250794-white-Small size',0.0000,1),(522,'default','31250794-white-Extra large size',0.0000,1),(523,'default','31250794-white-Medium size',0.0000,1),(525,'default','31219211-white-Small size',56.0000,1),(526,'default','31219211-white-Medium size',56.0000,1),(527,'default','31219211-white-Extra large size',56.0000,1),(528,'default','31219211-white-Large size',56.0000,1),(530,'default','31166144-white-Small size',45.0000,1),(531,'default','31166144-white-Medium size',45.0000,1),(532,'default','31166144-white-Large size',45.0000,1),(534,'default','31253501-blue-Small size',0.0000,1),(535,'default','31253501-blue-Large size',0.0000,1),(536,'default','31253501-blue-Medium size',0.0000,1),(538,'default','31176055-brown-Extra small size',56.0000,1),(539,'default','31176055-brown-Extra large size',56.0000,1),(540,'default','31176055-brown-Small size',56.0000,1),(541,'default','31176055-brown-Medium size',56.0000,1),(543,'default','31253502-black-Medium size',0.0000,1),(544,'default','31253502-black-Small size',0.0000,1),(545,'default','31253502-black-Large size',0.0000,1),(547,'default','31207365-white-Small size',45.0000,1),(548,'default','31207365-white-Large size',45.0000,1),(549,'default','31207365-white-Extra large size',45.0000,1),(551,'default','31167823-brown-Small size',0.0000,1),(552,'default','31167823-brown-Medium size',0.0000,1),(553,'default','31167823-brown-Large size',0.0000,1),(554,'default','31167823-brown-Extra small size',0.0000,1),(556,'default','31226241-grey-Small size',0.0000,1),(557,'default','31226241-grey-Large size',0.0000,1),(558,'default','31226241-grey-Extra small size',0.0000,1),(560,'default','31231309-brown-Extra small size',34.0000,1),(561,'default','31231309-brown-Small size',34.0000,1),(562,'default','31231309-brown-Medium size',34.0000,1),(564,'default','31273656-white-Small size',0.0000,1),(565,'default','31273656-white-Extra small size',0.0000,1),(566,'default','31273656-white-Large size',0.0000,1),(567,'default','31273656-white-Medium size',0.0000,1),(569,'default','31343872-brown-Small size',45.0000,1),(570,'default','31343872-brown-Extra small size',45.0000,1),(571,'default','31343872-brown-Medium size',45.0000,1),(573,'default','31145394-brown-Small size',45.0000,1),(574,'default','31145394-brown-Extra small size',45.0000,1),(575,'default','31145394-brown-Medium size',45.0000,1),(577,'default','31043406-Small size-brown',45.0000,1),(578,'default','31043406-Extra small size-brown',45.0000,1),(579,'default','31043406-Medium size-brown',45.0000,1),(581,'default','31218012-brown-Extra small size',34.0000,1),(582,'default','31218012-brown-Small size',34.0000,1),(583,'default','31218012-brown-Medium size',34.0000,1),(584,'default','31218012-white-Extra small size',34.0000,1),(585,'default','31218012-white-Small size',34.0000,1),(586,'default','31218012-white-Medium size',34.0000,1),(588,'default','31262293-brown-Extra small size',45.0000,1),(589,'default','31262293-brown-Small size',45.0000,1),(590,'default','31262293-brown-Medium size',45.0000,1),(592,'default','31262295-grey-Extra small size',56.0000,1),(593,'default','31262295-grey-Small size',56.0000,1),(594,'default','31262295-grey-Medium size',56.0000,1),(596,'default','31162615-brown-Small size',67.0000,1),(598,'default','31268637-red-Extra small size',56.0000,1),(599,'default','31268637-red-Small size',56.0000,1),(600,'default','31268637-red-Medium size',56.0000,1),(602,'default','31001803-brown-Extra small size',45.0000,1),(603,'default','31001803-brown-Small size',45.0000,1),(604,'default','31001803-brown-Large size',45.0000,1),(606,'default','31191497-brown-Medium size',45.0000,1),(608,'default','310018035-brown-Extra small size',34.0000,1),(609,'default','310018035-brown-Small size',34.0000,1),(610,'default','310018035-brown-Medium size',34.0000,1),(612,'default','31146614-blue-Small size',57.0000,1),(614,'default','310018033-grey-Extra small size',65.0000,1),(615,'default','310018033-grey-Small size',65.0000,1),(616,'default','310018033-grey-Medium size',65.0000,1),(618,'default','31034537-grey-Small size',60.0000,1),(620,'default','31350778-black-Extra small size',67.0000,1),(621,'default','31350778-black-Small size',67.0000,1),(622,'default','31350778-black-Medium size',67.0000,1),(624,'default','31350783-white-Extra small size',34.0000,1),(625,'default','31350783-white-Small size',34.0000,1),(626,'default','31350783-white-Medium size',34.0000,1),(628,'default','31292042-grey-Extra small size',56.0000,1),(629,'default','31292042-grey-Small size',56.0000,1),(630,'default','31292042-grey-Medium size',56.0000,1),(632,'default','31062218-blue-Small size',68.0000,1),(634,'default','31305260-grey-Small size',56.0000,1),(635,'default','31305260-grey-Medium size',56.0000,1),(637,'default','31223382-brown',57.0000,1),(639,'default','31304473-brown',56.0000,1),(641,'default','31327540-grey',58.0000,1),(643,'default','31175794-brown',56.0000,1),(645,'default','31005341-blue',45.0000,1),(646,'default','2313434-black-Small size',45.0000,1),(647,'default','30807043-white-EU 39',45.0000,1),(648,'default','30807043-white-EU 40',45.0000,1),(649,'default','30807043-white-EU 41',45.0000,1),(650,'default','30807043-white-EU 42',45.0000,1),(651,'default','30807043-white-EU 43',45.0000,1),(652,'default','30807043-white-EU 44',45.0000,1),(653,'default','30807043-black-EU 39',45.0000,1),(654,'default','30807043-black-EU 40',45.0000,1),(655,'default','30807043-black-EU 41',45.0000,1),(656,'default','30807043-black-EU 42',45.0000,1),(657,'default','30807043-black-EU 43',45.0000,1),(658,'default','30807043-black-EU 44',45.0000,1),(659,'default','30807043-grey-EU 39',45.0000,1),(660,'default','30807043-grey-EU 40',45.0000,1),(661,'default','30807043-grey-EU 41',45.0000,1),(662,'default','30807043-grey-EU 42',45.0000,1),(663,'default','30807043-grey-EU 43',45.0000,1),(664,'default','30807043-grey-EU 44',45.0000,1),(665,'default','30807043-blue-EU 39',45.0000,1),(666,'default','30807043-blue-EU 40',45.0000,1),(667,'default','30807043-blue-EU 41',45.0000,1),(668,'default','30807043-blue-EU 42',45.0000,1),(669,'default','30807043-blue-EU 43',45.0000,1),(670,'default','30807043-blue-EU 44',45.0000,1),(671,'default','30807043-red-EU 39',45.0000,1),(672,'default','30807043-red-EU 40',45.0000,1),(673,'default','30807043-red-EU 41',45.0000,1),(674,'default','30807043-red-EU 42',45.0000,1),(675,'default','30807043-red-EU 43',45.0000,1),(676,'default','30807043-red-EU 44',45.0000,1),(677,'default','31091133-brown-EU 37',68.0000,1),(678,'default','31091133-brown-EU 38',68.0000,1),(679,'default','31091133-brown-EU 40',68.0000,1),(680,'default','31091133-brown-EU 41',68.0000,1),(681,'default','31091133-brown-EU 42',68.0000,1),(682,'default','31091133-brown-EU 43',68.0000,1),(683,'default','31091133-brown-EU 45',68.0000,1),(684,'default','31091133-white-EU 37',68.0000,1),(685,'default','31091133-white-EU 38',68.0000,1),(686,'default','31091133-white-EU 40',68.0000,1),(687,'default','31091133-white-EU 41',68.0000,1),(688,'default','31091133-white-EU 42',68.0000,1),(689,'default','31091133-white-EU 43',68.0000,1),(690,'default','31091133-white-EU 45',68.0000,1),(691,'default','31091133-black-EU 37',68.0000,1),(692,'default','31091133-black-EU 38',68.0000,1),(693,'default','31091133-black-EU 40',68.0000,1),(694,'default','31091133-black-EU 41',68.0000,1),(695,'default','31091133-black-EU 42',68.0000,1),(696,'default','31091133-black-EU 43',68.0000,1),(697,'default','31091133-black-EU 45',68.0000,1),(698,'default','31091133-blue-EU 37',68.0000,1),(699,'default','31091133-blue-EU 38',68.0000,1),(700,'default','31091133-blue-EU 40',68.0000,1),(701,'default','31091133-blue-EU 41',68.0000,1),(702,'default','31091133-blue-EU 42',68.0000,1),(703,'default','31091133-blue-EU 43',68.0000,1),(704,'default','31091133-blue-EU 45',68.0000,1),(705,'default','31091133-red-EU 37',68.0000,1),(706,'default','31091133-red-EU 38',68.0000,1),(707,'default','31091133-red-EU 40',68.0000,1),(708,'default','31091133-red-EU 41',68.0000,1),(709,'default','31091133-red-EU 42',68.0000,1),(710,'default','31091133-red-EU 43',68.0000,1),(711,'default','31091133-red-EU 45',68.0000,1),(712,'default','30986434-EU 39-white',55.0000,1),(713,'default','30986434-EU 39-black',55.0000,1),(714,'default','30986434-EU 39-grey',55.0000,1),(715,'default','30986434-EU 39-blue',55.0000,1),(716,'default','30986434-EU 39-red',55.0000,1),(717,'default','30986434-EU 40-white',55.0000,1),(718,'default','30986434-EU 40-black',55.0000,1),(719,'default','30986434-EU 40-grey',55.0000,1),(720,'default','30986434-EU 40-blue',55.0000,1),(721,'default','30986434-EU 40-red',55.0000,1),(722,'default','30986434-EU 42-white',55.0000,1),(723,'default','30986434-EU 42-black',55.0000,1),(724,'default','30986434-EU 42-grey',55.0000,1),(725,'default','30986434-EU 42-blue',55.0000,1),(726,'default','30986434-EU 42-red',55.0000,1),(727,'default','30986434-EU 43-white',55.0000,1),(728,'default','30986434-EU 43-black',55.0000,1),(729,'default','30986434-EU 43-grey',55.0000,1),(730,'default','30986434-EU 43-blue',55.0000,1),(731,'default','30986434-EU 43-red',55.0000,1),(732,'default','30986434-EU 44-white',55.0000,1),(733,'default','30986434-EU 44-black',55.0000,1),(734,'default','30986434-EU 44-grey',55.0000,1),(735,'default','30986434-EU 44-blue',55.0000,1),(736,'default','30986434-EU 44-red',55.0000,1),(737,'default','30986434-EU 45-white',55.0000,1),(738,'default','30986434-EU 45-black',55.0000,1),(739,'default','30986434-EU 45-grey',55.0000,1),(740,'default','30986434-EU 45-blue',55.0000,1),(741,'default','30986434-EU 45-red',55.0000,1),(742,'default','31149594-brown-EU 36',65.0000,1),(743,'default','31149594-brown-EU 37',65.0000,1),(744,'default','31149594-brown-EU 38',65.0000,1),(745,'default','31149594-brown-EU 39',65.0000,1),(746,'default','31149594-brown-EU 40',65.0000,1),(747,'default','31149594-brown-EU 41',65.0000,1),(748,'default','31149594-white-EU 36',65.0000,1),(749,'default','31149594-white-EU 37',65.0000,1),(750,'default','31149594-white-EU 38',65.0000,1),(751,'default','31149594-white-EU 39',65.0000,1),(752,'default','31149594-white-EU 40',65.0000,1),(753,'default','31149594-white-EU 41',65.0000,1),(754,'default','31149594-black-EU 36',65.0000,1),(755,'default','31149594-black-EU 37',65.0000,1),(756,'default','31149594-black-EU 38',65.0000,1),(757,'default','31149594-black-EU 39',65.0000,1),(758,'default','31149594-black-EU 40',65.0000,1),(759,'default','31149594-black-EU 41',65.0000,1),(760,'default','31149594-blue-EU 36',65.0000,1),(761,'default','31149594-blue-EU 37',65.0000,1),(762,'default','31149594-blue-EU 38',65.0000,1),(763,'default','31149594-blue-EU 39',65.0000,1),(764,'default','31149594-blue-EU 40',65.0000,1),(765,'default','31149594-blue-EU 41',65.0000,1),(766,'default','31149594-red-EU 36',65.0000,1),(767,'default','31149594-red-EU 37',65.0000,1),(768,'default','31149594-red-EU 38',65.0000,1),(769,'default','31149594-red-EU 39',65.0000,1),(770,'default','31149594-red-EU 40',65.0000,1),(771,'default','31149594-red-EU 41',65.0000,1),(772,'default','31091010-EU 39-brown',78.0000,1),(773,'default','31091010-EU 39-white',78.0000,1),(774,'default','31091010-EU 39-black',78.0000,1),(775,'default','31091010-EU 39-grey',78.0000,1),(776,'default','31091010-EU 39-red',78.0000,1),(777,'default','31091010-EU 40-brown',78.0000,1),(778,'default','31091010-EU 40-white',78.0000,1),(779,'default','31091010-EU 40-black',78.0000,1),(780,'default','31091010-EU 40-grey',78.0000,1),(781,'default','31091010-EU 40-red',78.0000,1),(782,'default','31091010-EU 41-brown',78.0000,1),(783,'default','31091010-EU 41-white',78.0000,1),(784,'default','31091010-EU 41-black',78.0000,1),(785,'default','31091010-EU 41-grey',78.0000,1),(786,'default','31091010-EU 41-red',78.0000,1),(787,'default','31091010-EU 42-brown',78.0000,1),(788,'default','31091010-EU 42-white',78.0000,1),(789,'default','31091010-EU 42-black',78.0000,1),(790,'default','31091010-EU 42-grey',78.0000,1),(791,'default','31091010-EU 42-red',78.0000,1),(792,'default','31091010-EU 43-brown',78.0000,1),(793,'default','31091010-EU 43-white',78.0000,1),(794,'default','31091010-EU 43-black',78.0000,1),(795,'default','31091010-EU 43-grey',78.0000,1),(796,'default','31091010-EU 43-red',78.0000,1),(797,'default','31276018-EU 40-brown',56.0000,1),(798,'default','31276018-EU 40-white',56.0000,1),(799,'default','31276018-EU 40-grey',56.0000,1),(800,'default','31276018-EU 40-blue',56.0000,1),(801,'default','31276018-EU 40-red',56.0000,1),(802,'default','31276018-EU 41-brown',56.0000,1),(803,'default','31276018-EU 41-white',56.0000,1),(804,'default','31276018-EU 41-grey',56.0000,1),(805,'default','31276018-EU 41-blue',56.0000,1),(806,'default','31276018-EU 41-red',56.0000,1),(807,'default','31276018-EU 42-brown',56.0000,1),(808,'default','31276018-EU 42-white',56.0000,1),(809,'default','31276018-EU 42-grey',56.0000,1),(810,'default','31276018-EU 42-blue',56.0000,1),(811,'default','31276018-EU 42-red',56.0000,1),(812,'default','31134483-brown-Extra small size',56.0000,1),(813,'default','31134483-brown-Small size',56.0000,1),(814,'default','31134483-brown-Medium size',56.0000,1),(815,'default','31134483-brown-Large size',56.0000,1),(816,'default','31134483-white-Extra small size',56.0000,1),(817,'default','31134483-white-Small size',56.0000,1),(818,'default','31134483-white-Medium size',56.0000,1),(819,'default','31134483-white-Large size',56.0000,1),(820,'default','31134483-black-Extra small size',56.0000,1),(821,'default','31134483-black-Small size',56.0000,1),(822,'default','31134483-black-Medium size',56.0000,1),(823,'default','31134483-black-Large size',56.0000,1),(824,'default','31134483-blue-Extra small size',56.0000,1),(825,'default','31134483-blue-Small size',56.0000,1),(826,'default','31134483-blue-Medium size',56.0000,1),(827,'default','31134483-blue-Large size',56.0000,1),(828,'default','31134483-red-Extra small size',56.0000,1),(829,'default','31134483-red-Small size',56.0000,1),(830,'default','31134483-red-Medium size',56.0000,1),(831,'default','31134483-red-Large size',56.0000,1),(832,'default','31276018-1-white-EU 42',35.0000,1),(833,'default','31276018-1-white-EU 43',35.0000,1),(834,'default','31276018-1-white-EU 44',35.0000,1),(835,'default','31276018-1-black-EU 42',35.0000,1),(836,'default','31276018-1-black-EU 43',35.0000,1),(837,'default','31276018-1-black-EU 44',35.0000,1),(838,'default','31276018-1-grey-EU 42',35.0000,1),(839,'default','31276018-1-grey-EU 43',35.0000,1),(840,'default','31276018-1-grey-EU 44',35.0000,1),(841,'default','31276018-1-blue-EU 42',35.0000,1),(842,'default','31276018-1-blue-EU 43',35.0000,1),(843,'default','31276018-1-blue-EU 44',35.0000,1),(844,'default','31276018-1-red-EU 42',35.0000,1),(845,'default','31276018-1-red-EU 43',35.0000,1),(846,'default','31276018-1-red-EU 44',35.0000,1),(847,'default','31135088-brown-Small size',56.0000,1),(848,'default','31135088-brown-Medium size',56.0000,1),(849,'default','31135088-brown-Large size',56.0000,1),(850,'default','31135088-brown-Extra large size',56.0000,1),(851,'default','31135088-white-Small size',56.0000,1),(852,'default','31135088-white-Medium size',56.0000,1),(853,'default','31135088-white-Large size',56.0000,1),(854,'default','31135088-white-Extra large size',56.0000,1),(855,'default','31135088-grey-Small size',56.0000,1),(856,'default','31135088-grey-Medium size',56.0000,1),(857,'default','31135088-grey-Large size',56.0000,1),(858,'default','31135088-grey-Extra large size',56.0000,1),(859,'default','31135088-blue-Small size',56.0000,1),(860,'default','31135088-blue-Medium size',56.0000,1),(861,'default','31135088-blue-Large size',56.0000,1),(862,'default','31135088-blue-Extra large size',56.0000,1),(863,'default','31135088-red-Small size',56.0000,1),(864,'default','31135088-red-Medium size',56.0000,1),(865,'default','31135088-red-Large size',56.0000,1),(866,'default','31135088-red-Extra large size',56.0000,1),(867,'default','31207422-white-Extra small size',35.0000,1),(868,'default','31207422-white-Small size',35.0000,1),(869,'default','31207422-white-Medium size',35.0000,1),(870,'default','31207422-white-Large size',35.0000,1),(871,'default','31207422-black-Extra small size',35.0000,1),(872,'default','31207422-black-Small size',35.0000,1),(873,'default','31207422-black-Medium size',35.0000,1),(874,'default','31207422-black-Large size',35.0000,1),(875,'default','31207422-grey-Extra small size',35.0000,1),(876,'default','31207422-grey-Small size',35.0000,1),(877,'default','31207422-grey-Medium size',35.0000,1),(878,'default','31207422-grey-Large size',35.0000,1),(879,'default','31207422-blue-Extra small size',35.0000,1),(880,'default','31207422-blue-Small size',35.0000,1),(881,'default','31207422-blue-Medium size',35.0000,1),(882,'default','31207422-blue-Large size',35.0000,1),(883,'default','31207422-red-Extra small size',35.0000,1),(884,'default','31207422-red-Small size',35.0000,1),(885,'default','31207422-red-Medium size',35.0000,1),(886,'default','31207422-red-Large size',35.0000,1),(887,'default','31231300-1-white-Small size',45.0000,1),(888,'default','31231300-1-white-Medium size',45.0000,1),(889,'default','31231300-1-white-Large size',45.0000,1),(890,'default','31231300-1-black-Small size',45.0000,1),(891,'default','31231300-1-black-Medium size',45.0000,1),(892,'default','31231300-1-black-Large size',45.0000,1),(893,'default','31231300-1-grey-Small size',45.0000,1),(894,'default','31231300-1-grey-Medium size',45.0000,1),(895,'default','31231300-1-grey-Large size',45.0000,1),(896,'default','31231300-1-blue-Small size',45.0000,1),(897,'default','31231300-1-blue-Medium size',45.0000,1),(898,'default','31231300-1-blue-Large size',45.0000,1),(899,'default','31231300-1-red-Small size',45.0000,1),(900,'default','31231300-1-red-Medium size',45.0000,1),(901,'default','31231300-1-red-Large size',45.0000,1),(902,'default','31189077-1-brown-Small size',45.0000,1),(903,'default','31189077-1-brown-Medium size',45.0000,1),(904,'default','31189077-1-brown-Large size',45.0000,1),(905,'default','31189077-1-brown-Extra large size',45.0000,1),(906,'default','31189077-1-white-Small size',45.0000,1),(907,'default','31189077-1-white-Medium size',45.0000,1),(908,'default','31189077-1-white-Large size',45.0000,1),(909,'default','31189077-1-white-Extra large size',45.0000,1),(910,'default','31189077-1-grey-Small size',45.0000,1),(911,'default','31189077-1-grey-Medium size',45.0000,1),(912,'default','31189077-1-grey-Large size',45.0000,1),(913,'default','31189077-1-grey-Extra large size',45.0000,1),(914,'default','31189077-1-blue-Small size',45.0000,1),(915,'default','31189077-1-blue-Medium size',45.0000,1),(916,'default','31189077-1-blue-Large size',45.0000,1),(917,'default','31189077-1-blue-Extra large size',45.0000,1),(918,'default','31189077-1-red-Small size',45.0000,1),(919,'default','31189077-1-red-Medium size',45.0000,1),(920,'default','31189077-1-red-Large size',45.0000,1),(921,'default','31189077-1-red-Extra large size',45.0000,1),(922,'default','31167823-white-Extra small size',67.0000,1),(923,'default','31167823-white-Small size',67.0000,1),(924,'default','31167823-white-Medium size',67.0000,1),(925,'default','31167823-white-Large size',67.0000,1),(926,'default','31167823-black-Extra small size',67.0000,1),(927,'default','31167823-black-Small size',67.0000,1),(928,'default','31167823-black-Medium size',67.0000,1),(929,'default','31167823-black-Large size',67.0000,1),(930,'default','31167823-grey-Extra small size',67.0000,1),(931,'default','31167823-grey-Small size',67.0000,1),(932,'default','31167823-grey-Medium size',67.0000,1),(933,'default','31167823-grey-Large size',67.0000,1),(934,'default','31167823-blue-Extra small size',67.0000,1),(935,'default','31167823-blue-Small size',67.0000,1),(936,'default','31167823-blue-Medium size',67.0000,1),(937,'default','31167823-blue-Large size',67.0000,1),(938,'default','31167823-red-Extra small size',67.0000,1),(939,'default','31167823-red-Small size',67.0000,1),(940,'default','31167823-red-Medium size',67.0000,1),(941,'default','31167823-red-Large size',67.0000,1),(942,'default','31189007-brown-Small size',36.0000,1),(943,'default','31189007-brown-Medium size',36.0000,1),(944,'default','31189007-brown-Large size',36.0000,1),(945,'default','31189007-brown-Extra large size',36.0000,1),(946,'default','31189007-white-Small size',36.0000,1),(947,'default','31189007-white-Medium size',36.0000,1),(948,'default','31189007-white-Large size',36.0000,1),(949,'default','31189007-white-Extra large size',36.0000,1),(950,'default','31189007-grey-Small size',36.0000,1),(951,'default','31189007-grey-Medium size',36.0000,1),(952,'default','31189007-grey-Large size',36.0000,1),(953,'default','31189007-grey-Extra large size',36.0000,1),(954,'default','31189007-blue-Small size',36.0000,1),(955,'default','31189007-blue-Medium size',36.0000,1),(956,'default','31189007-blue-Large size',36.0000,1),(957,'default','31189007-blue-Extra large size',36.0000,1),(958,'default','31189007-red-Small size',36.0000,1),(959,'default','31189007-red-Medium size',36.0000,1),(960,'default','31189007-red-Large size',36.0000,1),(961,'default','31189007-red-Extra large size',36.0000,1),(962,'default','31189077-brown-Small size',34.0000,1),(963,'default','31189077-brown-Medium size',34.0000,1),(964,'default','31189077-brown-Large size',34.0000,1),(965,'default','31189077-white-Small size',34.0000,1),(966,'default','31189077-white-Medium size',34.0000,1),(967,'default','31189077-white-Large size',34.0000,1),(968,'default','31189077-black-Small size',34.0000,1),(969,'default','31189077-black-Medium size',34.0000,1),(970,'default','31189077-black-Large size',34.0000,1),(971,'default','31189077-blue-Small size',34.0000,1),(972,'default','31189077-blue-Medium size',34.0000,1),(973,'default','31189077-blue-Large size',34.0000,1),(974,'default','31189077-red-Small size',34.0000,1),(975,'default','31189077-red-Medium size',34.0000,1),(976,'default','31189077-red-Large size',34.0000,1),(977,'default','31231300-brown-Extra small size',45.0000,1),(978,'default','31231300-brown-Small size',45.0000,1),(979,'default','31231300-brown-Medium size',45.0000,1),(980,'default','31231300-brown-Large size',45.0000,1),(981,'default','31231300-brown-Extra large size',45.0000,1),(982,'default','31231300-white-Extra small size',45.0000,1),(983,'default','31231300-white-Small size',45.0000,1),(984,'default','31231300-white-Medium size',45.0000,1),(985,'default','31231300-white-Large size',45.0000,1),(986,'default','31231300-white-Extra large size',45.0000,1),(987,'default','31231300-grey-Extra small size',45.0000,1),(988,'default','31231300-grey-Small size',45.0000,1),(989,'default','31231300-grey-Medium size',45.0000,1),(990,'default','31231300-grey-Large size',45.0000,1),(991,'default','31231300-grey-Extra large size',45.0000,1),(992,'default','31231300-blue-Extra small size',45.0000,1),(993,'default','31231300-blue-Small size',45.0000,1),(994,'default','31231300-blue-Medium size',45.0000,1),(995,'default','31231300-blue-Large size',45.0000,1),(996,'default','31231300-blue-Extra large size',45.0000,1),(997,'default','31231300-red-Extra small size',45.0000,1),(998,'default','31231300-red-Small size',45.0000,1),(999,'default','31231300-red-Medium size',45.0000,1),(1000,'default','31231300-red-Large size',45.0000,1),(1001,'default','31231300-red-Extra large size',45.0000,1),(1002,'default','31273656-brown-Extra small size',80.0000,1),(1003,'default','31273656-brown-Small size',80.0000,1),(1004,'default','31273656-brown-Medium size',80.0000,1),(1005,'default','31273656-brown-Large size',80.0000,1),(1006,'default','31273656-black-Extra small size',80.0000,1),(1007,'default','31273656-black-Small size',80.0000,1),(1008,'default','31273656-black-Medium size',80.0000,1),(1009,'default','31273656-black-Large size',80.0000,1),(1010,'default','31273656-grey-Extra small size',80.0000,1),(1011,'default','31273656-grey-Small size',80.0000,1),(1012,'default','31273656-grey-Medium size',80.0000,1),(1013,'default','31273656-grey-Large size',80.0000,1),(1014,'default','31273656-blue-Extra small size',80.0000,1),(1015,'default','31273656-blue-Small size',80.0000,1),(1016,'default','31273656-blue-Medium size',80.0000,1),(1017,'default','31273656-blue-Large size',80.0000,1),(1018,'default','31273656-red-Extra small size',80.0000,1),(1019,'default','31273656-red-Small size',80.0000,1),(1020,'default','31273656-red-Medium size',80.0000,1),(1021,'default','31273656-red-Large size',80.0000,1),(1022,'default','31253502-grey-Small size',23.0000,1),(1023,'default','31253502-grey-Medium size',23.0000,1),(1024,'default','31253502-grey-Large size',23.0000,1),(1025,'default','31253502-blue-Small size',23.0000,1),(1026,'default','31253502-blue-Medium size',23.0000,1),(1027,'default','31253502-blue-Large size',23.0000,1),(1028,'default','31253502-black-Small size-1',34.0000,1),(1029,'default','31253502-black-Medium size-1',34.0000,1),(1030,'default','31253502-black-Large size-1',34.0000,1),(1031,'default','31253501-grey-Small size',576.0000,1),(1032,'default','31253501-grey-Medium size',576.0000,1),(1033,'default','31253501-grey-Large size',576.0000,1),(1034,'default','31253501-black-Small size',576.0000,1),(1035,'default','31253501-black-Medium size',576.0000,1),(1036,'default','31253501-black-Large size',576.0000,1),(1037,'default','31253501-blue-Small size-1',25.0000,1),(1038,'default','31253501-blue-Medium size-1',25.0000,1),(1039,'default','31253501-blue-Large size-1',25.0000,1),(1040,'default','31190954-blue-Small size',34.0000,1),(1041,'default','31190954-blue-Medium size',34.0000,1),(1042,'default','31190954-blue-Large size',34.0000,1),(1043,'default','31190954-red-Small size',34.0000,1),(1044,'default','31190954-red-Medium size',34.0000,1),(1045,'default','31190954-red-Large size',34.0000,1),(1046,'default','30947478-blue-EU 40',67.0000,1),(1047,'default','30947478-blue-EU 41',67.0000,1),(1048,'default','30947478-blue-EU 42',67.0000,1),(1049,'default','30947478-blue-EU 43',67.0000,1),(1050,'default','30947478-blue-EU 44',67.0000,1),(1051,'default','30947478-brown-EU 40',67.0000,1),(1052,'default','30947478-brown-EU 41',67.0000,1),(1053,'default','30947478-brown-EU 42',67.0000,1),(1054,'default','30947478-brown-EU 43',67.0000,1),(1055,'default','30947478-brown-EU 44',67.0000,1),(1061,'default','31141265-red-EU 40',45.0000,1),(1062,'default','31141265-red-EU 41',45.0000,1),(1063,'default','31085465-EU 39-red',46.0000,1),(1064,'default','31085465-EU 39-grey',46.0000,1),(1065,'default','31085465-EU 40-red',46.0000,1),(1066,'default','31085465-EU 40-grey',46.0000,1),(1067,'default','31085465-EU 41-red',46.0000,1),(1068,'default','31085465-EU 41-grey',46.0000,1),(1069,'default','31085465-EU 42-red',46.0000,1),(1070,'default','31085465-EU 42-grey',46.0000,1),(1071,'default','31085465-EU 43-red',46.0000,1),(1072,'default','31085465-EU 43-grey',46.0000,1),(1073,'default','31085465-EU 44-red',46.0000,1),(1074,'default','31085465-EU 44-grey',46.0000,1),(1075,'default','31179106-red-EU 39',34.0000,1),(1076,'default','31179106-red-EU 40',34.0000,1),(1077,'default','31179106-red-EU 41',34.0000,1),(1078,'default','31179106-red-EU 42',34.0000,1),(1079,'default','31179106-red-EU 43',34.0000,1),(1080,'default','31179106-red-EU 44',34.0000,1),(1081,'default','31179106-red-EU 45',34.0000,1),(1082,'default','31179106-grey-EU 39',34.0000,1),(1083,'default','31179106-grey-EU 40',34.0000,1),(1084,'default','31179106-grey-EU 41',34.0000,1),(1085,'default','31179106-grey-EU 42',34.0000,1),(1086,'default','31179106-grey-EU 43',34.0000,1),(1087,'default','31179106-grey-EU 44',34.0000,1),(1088,'default','31179106-grey-EU 45',34.0000,1),(1089,'default','31085465-brown-EU 39',56.0000,1),(1090,'default','31085465-brown-EU 40',56.0000,1),(1091,'default','31085465-brown-EU 41',56.0000,1),(1092,'default','31085465-brown-EU 42',56.0000,1),(1093,'default','31085465-brown-EU 43',56.0000,1),(1094,'default','31085465-brown-EU 44',56.0000,1),(1095,'default','31085465-grey-EU 39',56.0000,1),(1096,'default','31085465-grey-EU 40',56.0000,1),(1097,'default','31085465-grey-EU 41',56.0000,1),(1098,'default','31085465-grey-EU 42',56.0000,1),(1099,'default','31085465-grey-EU 43',56.0000,1),(1100,'default','31085465-grey-EU 44',56.0000,1),(1101,'default','31085465-black-EU 39',56.0000,1),(1102,'default','31085465-black-EU 40',56.0000,1),(1103,'default','31085465-black-EU 41',56.0000,1),(1104,'default','31085465-black-EU 42',56.0000,1),(1105,'default','31085465-black-EU 43',56.0000,1),(1106,'default','31085465-black-EU 44',56.0000,1),(1107,'default','31332981-EU 39-blue',45.0000,1),(1108,'default','31332981-EU 39-black',45.0000,1),(1109,'default','31332981-EU 40-blue',45.0000,1),(1110,'default','31332981-EU 40-black',45.0000,1),(1111,'default','31332981-EU 41-blue',45.0000,1),(1112,'default','31332981-EU 41-black',45.0000,1),(1113,'default','31332981-EU 42-blue',45.0000,1),(1114,'default','31332981-EU 42-black',45.0000,1),(1115,'default','31332981-EU 43-blue',45.0000,1),(1116,'default','31332981-EU 43-black',45.0000,1),(1117,'default','2313434-grey-Small size-1',45.0000,1),(1118,'default','2313434-grey-Medium size-1',45.0000,1),(1119,'default','2313434-grey-Large size-1',45.0000,1),(1120,'default','2313434-red-Small size',45.0000,1),(1121,'default','2313434-red-Medium size',45.0000,1),(1122,'default','2313434-red-Large size',45.0000,1),(1124,'default','2313434-black-Medium size',45.0000,1),(1125,'default','2313434-black-Large size',45.0000,1),(1126,'default','31253496-Small size-grey',67.0000,1),(1127,'default','31253496-Small size-brown',67.0000,1),(1128,'default','31253496-Medium size-grey',67.0000,1),(1129,'default','31253496-Medium size-brown',67.0000,1),(1130,'default','31253496-Large size-grey',67.0000,1),(1131,'default','31253496-Large size-brown',67.0000,1),(1132,'default','31202421-red-Extra small size',45.0000,1),(1133,'default','31202421-red-Small size',45.0000,1),(1134,'default','31202421-red-Medium size',45.0000,1),(1135,'default','31202421-blue-Extra small size',45.0000,1),(1136,'default','31202421-blue-Small size',45.0000,1),(1137,'default','31202421-blue-Medium size',45.0000,1),(1138,'default','31253493-grey-Small size',45.0000,1),(1139,'default','31253493-grey-Medium size',45.0000,1),(1140,'default','31253493-grey-Large size',45.0000,1),(1141,'default','31253493-grey-Extra large size',45.0000,1),(1142,'default','31253493-black-Small size',45.0000,1),(1143,'default','31253493-black-Medium size',45.0000,1),(1144,'default','31253493-black-Large size',45.0000,1),(1145,'default','31253493-black-Extra large size',45.0000,1),(1146,'default','31253498-black-Small size',56.0000,1),(1147,'default','31253498-black-Medium size',56.0000,1),(1148,'default','31253498-black-Large size',56.0000,1),(1149,'default','31253498-grey-Small size',56.0000,1),(1150,'default','31253498-grey-Medium size',56.0000,1),(1151,'default','31253498-grey-Large size',56.0000,1),(1152,'default','31253491-grey-Extra small size',56.0000,1),(1153,'default','31253491-grey-Small size',56.0000,1),(1154,'default','31253491-grey-Medium size',56.0000,1),(1155,'default','31253491-grey-Large size',56.0000,1),(1156,'default','31253491-brown-Extra small size',56.0000,1),(1157,'default','31253491-brown-Small size',56.0000,1),(1158,'default','31253491-brown-Medium size',56.0000,1),(1159,'default','31253491-brown-Large size',56.0000,1),(1160,'default','31324632-black-Small size',46.0000,1),(1161,'default','31324632-black-Medium size',46.0000,1),(1162,'default','31324632-black-Large size',46.0000,1),(1163,'default','31324632-grey-Small size',46.0000,1),(1164,'default','31324632-grey-Medium size',46.0000,1),(1165,'default','31324632-grey-Large size',46.0000,1),(1166,'default','31250794-blue-Small size',45.0000,1),(1167,'default','31250794-blue-Medium size',45.0000,1),(1168,'default','31250794-blue-Extra large size',45.0000,1),(1169,'default','31250794-black-Small size',45.0000,1),(1170,'default','31250794-black-Medium size',45.0000,1),(1171,'default','31250794-black-Extra large size',45.0000,1),(1172,'default','31226241-black-Extra small size',56.0000,1),(1173,'default','31226241-black-Small size',56.0000,1),(1174,'default','31226241-black-Large size',56.0000,1),(1175,'default','31226241-red-Extra small size',56.0000,1),(1176,'default','31226241-red-Small size',56.0000,1),(1177,'default','31226241-red-Large size',56.0000,1),(1178,'default','30988045-grey-Small size',54.0000,1),(1179,'default','30988045-grey-Medium size',54.0000,1),(1180,'default','30988045-grey-Large size',54.0000,1),(1181,'default','30988045-grey-Extra large size',54.0000,1),(1182,'default','30988045-blue-Small size',54.0000,1),(1183,'default','30988045-blue-Medium size',54.0000,1),(1184,'default','30988045-blue-Large size',54.0000,1),(1185,'default','30988045-blue-Extra large size',54.0000,1),(1186,'default','31253492-black-Extra small size',45.0000,1),(1187,'default','31253492-black-Small size',45.0000,1),(1188,'default','31253492-black-Medium size',45.0000,1),(1189,'default','31253492-black-Large size',45.0000,1),(1190,'default','31253492-black-Extra large size',45.0000,1),(1196,'default','31253499-grey-Small size',45.0000,1),(1197,'default','31253499-grey-Medium size',45.0000,1),(1198,'default','31253499-grey-Large size',45.0000,1),(1202,'default','30988045-white-Small size-1',54.0000,1),(1203,'default','30988045-white-Medium size-1',54.0000,1),(1204,'default','30988045-white-Large size-1',54.0000,1),(1205,'default','30988045-white-Extra large size-1',54.0000,1),(1214,'default','31226241-white-Extra small size',56.0000,1),(1215,'default','31226241-white-Small size',56.0000,1),(1216,'default','31226241-white-Large size',56.0000,1),(1223,'default','31250794-white-Small size-1',45.0000,1),(1224,'default','31250794-white-Medium size-1',45.0000,1),(1225,'default','31250794-white-Extra large size-1',45.0000,1),(1232,'default','31324632-blue-Small size-1',46.0000,1),(1233,'default','31324632-blue-Medium size-1',46.0000,1),(1234,'default','31324632-blue-Large size-1',46.0000,1),(1235,'default','31302817-grey-Small size',65.0000,1),(1236,'default','31302817-grey-Medium size',65.0000,1),(1237,'default','31302817-grey-Large size',65.0000,1),(1241,'default','31231309-blue-Extra small size',34.0000,1),(1242,'default','31231309-blue-Small size',34.0000,1),(1243,'default','31231309-blue-Medium size',34.0000,1),(1244,'default','31176055-white-Extra small size',56.0000,1),(1245,'default','31176055-white-Small size',56.0000,1),(1246,'default','31176055-white-Medium size',56.0000,1),(1247,'default','31176055-white-Extra large size',56.0000,1),(1252,'default','31219211-blue-Small size',56.0000,1),(1253,'default','31219211-blue-Medium size',56.0000,1),(1254,'default','31219211-blue-Large size',56.0000,1),(1255,'default','31219211-blue-Extra large size',56.0000,1),(1260,'default','31091479-red-Extra small size',45.0000,1),(1261,'default','31091479-red-Small size',45.0000,1),(1262,'default','31091479-red-Medium size',45.0000,1),(1266,'default','31207365-blue-Small size',45.0000,1),(1267,'default','31207365-blue-Large size',45.0000,1),(1268,'default','31207365-blue-Extra large size',45.0000,1),(1272,'default','31166144-red-Small size',45.0000,1),(1273,'default','31166144-red-Medium size',45.0000,1),(1274,'default','31166144-red-Large size',45.0000,1),(1278,'default','31253495-black-Small size',45.0000,1),(1279,'default','31253495-black-Medium size',45.0000,1),(1280,'default','31253495-black-Large size',45.0000,1),(1284,'default','31253494-blue-Small size',56.0000,1),(1285,'default','31253494-blue-Medium size',56.0000,1),(1286,'default','31253494-blue-Large size',56.0000,1),(1290,'default','31264080-grey-Medium size',45.0000,1),(1291,'default','31264080-grey-Large size',45.0000,1),(1294,'default','31253494-black-Small size-1',56.0000,1),(1295,'default','31253494-black-Medium size-1',56.0000,1),(1296,'default','31253494-black-Large size-1',56.0000,1),(1297,'default','31043406-Extra small size-black',45.0000,1),(1298,'default','31043406-Small size-black',45.0000,1),(1299,'default','31043406-Medium size-black',45.0000,1),(1303,'default','31125037-red-Extra small size',56.0000,1),(1304,'default','31125037-red-Small size',56.0000,1),(1305,'default','31125037-red-Medium size',56.0000,1),(1306,'default','31125037-red-Large size',56.0000,1),(1311,'default','30977134-red-Extra small size',56.0000,1),(1312,'default','30977134-red-Small size',56.0000,1),(1313,'default','30977134-red-Medium size',56.0000,1),(1317,'default','30977108-brown-Extra small size',45.0000,1),(1318,'default','30977108-brown-Small size',45.0000,1),(1319,'default','30977108-brown-Medium size',45.0000,1),(1320,'default','30977108-brown-Large size',45.0000,1),(1325,'default','31291013-black-Extra small size',56.0000,1),(1326,'default','31291013-black-Small size',56.0000,1),(1327,'default','31291013-black-Medium size',56.0000,1),(1328,'default','31291013-black-Large size',56.0000,1),(1333,'default','31340162-blue-Extra small size',45.0000,1),(1334,'default','31340162-blue-Small size',45.0000,1),(1335,'default','31340162-blue-Medium size',45.0000,1),(1336,'default','31340162-blue-Large size',45.0000,1),(1341,'default','31305260-brown-Small size',56.0000,1),(1342,'default','31305260-brown-Medium size',56.0000,1),(1345,'default','31240220-grey-Extra small size',35.0000,1),(1346,'default','31240220-grey-Small size',35.0000,1),(1349,'default','31350783-red-Extra small size',34.0000,1),(1350,'default','31350783-red-Small size',34.0000,1),(1351,'default','31350783-red-Medium size',34.0000,1),(1355,'default','31319864-blue-Extra small size',45.0000,1),(1356,'default','31319864-blue-Small size',45.0000,1),(1357,'default','31319864-blue-Medium size',45.0000,1),(1358,'default','31319864-blue-Large size',45.0000,1),(1363,'default','31239294-white-Extra small size',56.0000,1),(1364,'default','31239294-white-Small size',56.0000,1),(1365,'default','31239294-white-Medium size',56.0000,1),(1366,'default','31239294-white-Extra large size',56.0000,1),(1371,'default','30977037-blue-Extra small size',56.0000,1),(1372,'default','30977037-blue-Small size',56.0000,1),(1373,'default','30977037-blue-Medium size',56.0000,1),(1374,'default','30977037-blue-Large size',56.0000,1),(1375,'default','30977037-blue-Extra large size',56.0000,1),(1382,'default','31266871-blue-Extra small size',45.0000,1),(1383,'default','31266871-blue-Small size',45.0000,1),(1384,'default','31266871-blue-Medium size',45.0000,1),(1385,'default','31266871-blue-Large size',45.0000,1),(1390,'default','31331004-red-Small size',56.0000,1),(1391,'default','31331004-red-Medium size',56.0000,1),(1392,'default','31331004-red-Large size',56.0000,1),(1396,'default','30838511-black-Extra small size',45.0000,1),(1397,'default','30838511-black-Small size',45.0000,1),(1398,'default','30838511-black-Medium size',45.0000,1),(1399,'default','30838511-black-Large size',45.0000,1),(1404,'default','31197648-EU 37-blue',45.0000,1),(1405,'default','31197648-EU 38-blue',45.0000,1),(1406,'default','31197648-EU 39-blue',45.0000,1),(1407,'default','31197648-EU 40-blue',45.0000,1),(1408,'default','31197648-EU 41-blue',45.0000,1),(1414,'default','310018035-red-Extra small size',34.0000,1),(1415,'default','310018035-red-Small size',34.0000,1),(1416,'default','310018035-red-Medium size',34.0000,1),(1420,'default','31292042-red-Extra small size',56.0000,1),(1421,'default','31292042-red-Small size',56.0000,1),(1422,'default','31292042-red-Medium size',56.0000,1),(1426,'default','31145394-grey-Extra small size',45.0000,1),(1427,'default','31145394-grey-Small size',45.0000,1),(1428,'default','31145394-grey-Medium size',45.0000,1),(1432,'default','310018033-blue-Extra small size',65.0000,1),(1433,'default','310018033-blue-Small size',65.0000,1),(1434,'default','310018033-blue-Medium size',65.0000,1),(1438,'default','31001803-black-Extra small size',45.0000,1),(1439,'default','31001803-black-Small size',45.0000,1),(1440,'default','31001803-black-Large size',45.0000,1),(1444,'default','31343872-red-Extra small size',45.0000,1),(1445,'default','31343872-red-Small size',45.0000,1),(1446,'default','31343872-red-Medium size',45.0000,1),(1450,'default','31196404-blue-EU 36',45.0000,1),(1451,'default','31196404-blue-EU 38',45.0000,1),(1452,'default','31196404-blue-EU 39',45.0000,1),(1453,'default','31196404-blue-EU 40',45.0000,1),(1454,'default','31196404-blue-EU 41',45.0000,1),(1460,'default','31483900-red-Small size',55.0000,1),(1461,'default','31483900-red-Medium size',55.0000,1),(1462,'default','31483900-red-Extra large size',55.0000,1),(1466,'default','31085354-black-EU 36',65.0000,1),(1467,'default','31085354-black-EU 37',65.0000,1),(1468,'default','31085354-black-EU 38',65.0000,1),(1469,'default','31085354-black-EU 39',65.0000,1),(1470,'default','31085354-black-EU 40',65.0000,1),(1471,'default','31085354-black-EU 41',65.0000,1),(1486,'default','31220278-blue-Extra small size',65.0000,1),(1487,'default','31220278-blue-Small size',65.0000,1),(1488,'default','31220278-blue-Medium size',65.0000,1),(1492,'default','31350778-brown-Extra small size',67.0000,1),(1493,'default','31350778-brown-Small size',67.0000,1),(1494,'default','31350778-brown-Medium size',67.0000,1),(1498,'default','31261586-blue-Extra small size',67.0000,1),(1499,'default','31261586-blue-Small size',67.0000,1),(1500,'default','31261586-blue-Medium size',67.0000,1),(1501,'default','31261586-blue-Large size',67.0000,1),(1506,'default','31125033-grey-Extra small size',67.0000,1),(1507,'default','31125033-grey-Small size',67.0000,1),(1508,'default','31125033-grey-Large size',67.0000,1),(1509,'default','31125033-grey-Extra large size',67.0000,1),(1514,'default','31125039-Extra small size-grey',67.0000,1),(1515,'default','31125039-Small size-grey',67.0000,1),(1516,'default','31125039-Medium size-grey',67.0000,1),(1517,'default','31125039-Large size-grey',67.0000,1),(1518,'default','31125039-Extra large size-grey',67.0000,1),(1519,'default','31103364-blue-EU 36',56.0000,1),(1520,'default','31103364-blue-EU 37',56.0000,1),(1521,'default','31103364-blue-EU 38',56.0000,1),(1522,'default','31103364-blue-EU 40',56.0000,1),(1527,'default','31074190-red-EU 36',56.0000,1),(1528,'default','31074190-red-EU 37',56.0000,1),(1529,'default','31074190-red-EU 38',56.0000,1),(1530,'default','31074190-red-EU 39',56.0000,1),(1531,'default','31074190-red-EU 40',56.0000,1),(1532,'default','31074190-red-EU 41',56.0000,1),(1539,'default','31125042-Extra small size-grey',45.0000,1),(1540,'default','31125042-Small size-grey',45.0000,1),(1541,'default','31125042-Medium size-grey',45.0000,1),(1542,'default','31125042-Large size-grey',45.0000,1),(1547,'default','31093629-blue-EU 37',56.0000,1),(1548,'default','31093629-blue-EU 38',56.0000,1),(1549,'default','31093629-blue-EU 39',56.0000,1),(1550,'default','31093629-blue-EU 40',56.0000,1),(1551,'default','31093629-blue-EU 41',56.0000,1),(1562,'default','30945868-black-EU 36',67.0000,1),(1563,'default','30945868-black-EU 38',67.0000,1),(1564,'default','30945868-black-EU 39',67.0000,1),(1565,'default','30945868-black-EU 40',67.0000,1),(1566,'default','30945868-black-EU 41',67.0000,1),(1567,'default','30945868-black-EU 43',67.0000,1),(1574,'default','31333018-EU 36-blue',66.0000,1),(1575,'default','31333018-EU 36-red',66.0000,1),(1576,'default','31333018-EU 37-blue',66.0000,1),(1577,'default','31333018-EU 37-red',66.0000,1),(1578,'default','31333018-EU 38-blue',66.0000,1),(1579,'default','31333018-EU 38-red',66.0000,1),(1580,'default','31333018-EU 40-blue',66.0000,1),(1581,'default','31333018-EU 40-red',66.0000,1),(1582,'default','31125034-Extra small size-grey',67.0000,1),(1583,'default','31125034-Small size-grey',67.0000,1),(1584,'default','31125034-Large size-grey',67.0000,1),(1585,'default','31125034-Extra large size-grey',67.0000,1),(1590,'default','30811612-blue-Extra small size',55.0000,1),(1591,'default','30811612-blue-Small size',55.0000,1),(1592,'default','30811612-blue-Medium size',55.0000,1),(1596,'default','31292416-grey-Extra small size',56.0000,1),(1597,'default','31292416-grey-Small size',56.0000,1),(1598,'default','31292416-grey-Medium size',56.0000,1),(1602,'default','31241601-red-Extra small size',56.0000,1),(1603,'default','31241601-red-Small size',56.0000,1),(1604,'default','31241601-red-Large size',56.0000,1),(1608,'default','31125036-blue-Extra small size',55.0000,1),(1609,'default','31125036-blue-Small size',55.0000,1),(1610,'default','31125036-blue-Medium size',55.0000,1),(1614,'default','31262295-brown-Extra small size',56.0000,1),(1615,'default','31262295-brown-Small size',56.0000,1),(1616,'default','31262295-brown-Medium size',56.0000,1),(1620,'default','31262293-grey-Extra small size',45.0000,1),(1621,'default','31262293-grey-Small size',45.0000,1),(1622,'default','31262293-grey-Medium size',45.0000,1),(1626,'default','31268637-blue-Extra small size',56.0000,1),(1627,'default','31268637-blue-Small size',56.0000,1),(1628,'default','31268637-blue-Medium size',56.0000,1),(1632,'default','310046545-red-Extra small size',56.0000,1),(1633,'default','310046545-red-Small size',56.0000,1),(1634,'default','310046545-red-Extra large size',56.0000,1),(1638,'default','31191497-grey-Medium size',45.0000,1),(1640,'default','31045897-blue-Small size',56.0000,1),(1641,'default','31045897-blue-Medium size',56.0000,1),(1644,'default','31005341-red',45.0000,1),(1646,'default','31289374-Small size-black',57.0000,1),(1647,'default','31289374-Medium size-black',57.0000,1),(1650,'default','31175794-grey',56.0000,1),(1652,'default','31258335-red-Small size',56.0000,1),(1653,'default','31258335-red-Medium size',56.0000,1),(1656,'default','31327540-red',58.0000,1),(1658,'default','31304473-grey',56.0000,1),(1660,'default','31223382-black',57.0000,1),(1662,'default','31062218-red-Small size',68.0000,1),(1664,'default','31034537-blue-Small size',60.0000,1),(1666,'default','31160296-red-Extra small size',58.0000,1),(1667,'default','31160296-red-Small size',58.0000,1),(1668,'default','31160296-red-Medium size',58.0000,1),(1672,'default','31160298-blue-Small size',45.0000,1),(1673,'default','31160298-blue-Medium size',45.0000,1),(1676,'default','31160332-red-Small size',57.0000,1),(1677,'default','31160332-red-Medium size',57.0000,1),(1680,'default','31300702-red-Small size',57.0000,1),(1681,'default','31300702-red-Medium size',57.0000,1),(1684,'default','31162615-blue-Small size',67.0000,1),(1686,'default','31146614-brown-Small size',57.0000,1),(1688,'default','2313434-black-Medium size-1',0.0000,1),(1689,'default','2313434-black-Small size-1',0.0000,1),(1690,'default','2313434-black-Large size-1',0.0000,1),(1691,'default','2313434-red-Medium size-1',0.0000,1),(1692,'default','2313434-red-Small size-1',0.0000,1),(1693,'default','2313434-red-Large size-1',0.0000,1),(1694,'default','2313434-grey-Medium size-2',0.0000,1),(1695,'default','2313434-grey-Small size-2',0.0000,1),(1696,'default','2313434-grey-Large size-2',0.0000,1),(1703,'default','31178507-Medium size-red',67.0000,1),(1704,'default','31178507-Large size-red',67.0000,1),(1707,'default','n31091479-brown-Extra small size',0.0000,1),(1708,'default','n31091479-brown-Small size',0.0000,1),(1709,'default','n31091479-brown-Medium size',0.0000,1),(1710,'default','n31091479-red-Extra small size',0.0000,1),(1711,'default','n31091479-red-Small size',0.0000,1),(1712,'default','n31091479-red-Medium size',0.0000,1),(1713,'default','n30807043-white-EU 39',0.0000,1),(1714,'default','n30807043-white-EU 42',0.0000,1),(1715,'default','n30807043-white-EU 40',0.0000,1),(1716,'default','n30807043-white-EU 43',0.0000,1),(1717,'default','n30807043-white-EU 41',0.0000,1),(1718,'default','n30807043-white-EU 44',0.0000,1),(1719,'default','n30807043-grey-EU 39',0.0000,1),(1720,'default','n30807043-grey-EU 42',0.0000,1),(1721,'default','n30807043-grey-EU 40',0.0000,1),(1722,'default','n30807043-grey-EU 43',0.0000,1),(1723,'default','n30807043-grey-EU 41',0.0000,1),(1724,'default','n30807043-grey-EU 44',0.0000,1),(1725,'default','n30807043-black-EU 39',0.0000,1),(1726,'default','n30807043-black-EU 42',0.0000,1),(1727,'default','n30807043-black-EU 40',0.0000,1),(1728,'default','n30807043-black-EU 43',0.0000,1),(1729,'default','n30807043-black-EU 41',0.0000,1),(1730,'default','n30807043-black-EU 44',0.0000,1),(1731,'default','n30807043-red-EU 39',0.0000,1),(1732,'default','n30807043-red-EU 42',0.0000,1),(1733,'default','n30807043-red-EU 40',0.0000,1),(1734,'default','n30807043-red-EU 43',0.0000,1),(1735,'default','n30807043-red-EU 41',0.0000,1),(1736,'default','n30807043-red-EU 44',0.0000,1),(1737,'default','n30807043-blue-EU 39',0.0000,1),(1738,'default','n30807043-blue-EU 42',0.0000,1),(1739,'default','n30807043-blue-EU 40',0.0000,1),(1740,'default','n30807043-blue-EU 43',0.0000,1),(1741,'default','n30807043-blue-EU 41',0.0000,1),(1742,'default','n30807043-blue-EU 44',0.0000,1),(1743,'default','n30807043-grey-EU 41-1',0.0000,1),(1744,'default','n30807043-grey-EU 44-1',0.0000,1),(1745,'default','n30807043-grey-EU 40-1',0.0000,1),(1746,'default','n30807043-grey-EU 43-1',0.0000,1),(1747,'default','n30807043-grey-EU 39-1',0.0000,1),(1748,'default','n30807043-grey-EU 42-1',0.0000,1),(1749,'default','n30807043-blue-EU 41-1',0.0000,1),(1750,'default','n30807043-blue-EU 44-1',0.0000,1),(1751,'default','n30807043-blue-EU 40-1',0.0000,1),(1752,'default','n30807043-blue-EU 43-1',0.0000,1),(1753,'default','n30807043-blue-EU 39-1',0.0000,1),(1754,'default','n30807043-blue-EU 42-1',0.0000,1),(1755,'default','n30807043-white-EU 41-1',0.0000,1),(1756,'default','n30807043-white-EU 44-1',0.0000,1),(1757,'default','n30807043-white-EU 40-1',0.0000,1),(1758,'default','n30807043-white-EU 43-1',0.0000,1),(1759,'default','n30807043-white-EU 39-1',0.0000,1),(1760,'default','n30807043-white-EU 42-1',0.0000,1),(1761,'default','n30807043-black-EU 41-1',0.0000,1),(1762,'default','n30807043-black-EU 44-1',0.0000,1),(1763,'default','n30807043-black-EU 40-1',0.0000,1),(1764,'default','n30807043-black-EU 43-1',0.0000,1),(1765,'default','n30807043-black-EU 39-1',0.0000,1),(1766,'default','n30807043-black-EU 42-1',0.0000,1),(1767,'default','n30807043-red-EU 41-1',0.0000,1),(1768,'default','n30807043-red-EU 44-1',0.0000,1),(1769,'default','n30807043-red-EU 40-1',0.0000,1),(1770,'default','n30807043-red-EU 43-1',0.0000,1),(1771,'default','n30807043-red-EU 39-1',0.0000,1),(1772,'default','n30807043-red-EU 42-1',0.0000,1),(1779,'default','n31091479',0.0000,1),(1780,'default','n31091479-brown-Extra small size-1',0.0000,1),(1781,'default','n31091479-brown-Small size-1',0.0000,1),(1782,'default','n31091479-brown-Medium size-1',0.0000,1),(1783,'default','n31091479-red-Extra small size-1',0.0000,1),(1784,'default','n31091479-red-Small size-1',0.0000,1),(1785,'default','n31091479-red-Medium size-1',0.0000,1),(1787,'default','n31091133-red-EU 45',0.0000,1),(1788,'default','n31091133-red-EU 43',0.0000,1),(1789,'default','n31091133-red-EU 42',0.0000,1),(1790,'default','n31091133-red-EU 41',0.0000,1),(1791,'default','n31091133-red-EU 40',0.0000,1),(1792,'default','n31091133-red-EU 38',0.0000,1),(1793,'default','n31091133-red-EU 37',0.0000,1),(1794,'default','n31091133-blue-EU 45',0.0000,1),(1795,'default','n31091133-blue-EU 43',0.0000,1),(1796,'default','n31091133-blue-EU 42',0.0000,1),(1797,'default','n31091133-blue-EU 41',0.0000,1),(1798,'default','n31091133-blue-EU 40',0.0000,1),(1799,'default','n31091133-blue-EU 38',0.0000,1),(1800,'default','n31091133-blue-EU 37',0.0000,1),(1801,'default','n31091133-white-EU 45',0.0000,1),(1802,'default','n31091133-white-EU 43',0.0000,1),(1803,'default','n31091133-white-EU 42',0.0000,1),(1804,'default','n31091133-white-EU 41',0.0000,1),(1805,'default','n31091133-white-EU 40',0.0000,1),(1806,'default','n31091133-white-EU 38',0.0000,1),(1807,'default','n31091133-white-EU 37',0.0000,1),(1808,'default','n31091133-brown-EU 45',0.0000,1),(1809,'default','n31091133-brown-EU 43',0.0000,1),(1810,'default','n31091133-brown-EU 42',0.0000,1),(1811,'default','n31091133-brown-EU 41',0.0000,1),(1812,'default','n31091133-brown-EU 40',0.0000,1),(1813,'default','n31091133-brown-EU 38',0.0000,1),(1814,'default','n31091133-brown-EU 37',0.0000,1),(1815,'default','n31091133-black-EU 45',0.0000,1),(1816,'default','n31091133-black-EU 43',0.0000,1),(1817,'default','n31091133-black-EU 42',0.0000,1),(1818,'default','n31091133-black-EU 41',0.0000,1),(1819,'default','n31091133-black-EU 40',0.0000,1),(1820,'default','n31091133-black-EU 38',0.0000,1),(1821,'default','n31091133-black-EU 37',0.0000,1),(1824,'default','n31219211-white-Small size',0.0000,1),(1825,'default','n31219211-white-Medium size',0.0000,1),(1826,'default','n31219211-white-Large size',0.0000,1),(1827,'default','n31219211-white-Extra large size',0.0000,1),(1828,'default','n31219211-blue-Small size',0.0000,1),(1829,'default','n31219211-blue-Medium size',0.0000,1),(1830,'default','n31219211-blue-Large size',0.0000,1),(1831,'default','n31219211-blue-Extra large size',0.0000,1),(1838,'default','n30986434-grey-EU 44',0.0000,1),(1839,'default','n30986434-grey-EU 40',0.0000,1),(1840,'default','n30986434-grey-EU 39',0.0000,1),(1841,'default','n30986434-grey-EU 42',0.0000,1),(1842,'default','n30986434-grey-EU 45',0.0000,1),(1843,'default','n30986434-grey-EU 43',0.0000,1),(1844,'default','n30986434-blue-EU 44',0.0000,1),(1845,'default','n30986434-blue-EU 40',0.0000,1),(1846,'default','n30986434-blue-EU 39',0.0000,1),(1847,'default','n30986434-blue-EU 42',0.0000,1),(1848,'default','n30986434-blue-EU 45',0.0000,1),(1849,'default','n30986434-blue-EU 43',0.0000,1),(1850,'default','n30986434-white-EU 44',0.0000,1),(1851,'default','n30986434-white-EU 40',0.0000,1),(1852,'default','n30986434-white-EU 39',0.0000,1),(1853,'default','n30986434-white-EU 42',0.0000,1),(1854,'default','n30986434-white-EU 45',0.0000,1),(1855,'default','n30986434-white-EU 43',0.0000,1),(1856,'default','n30986434-black-EU 44',0.0000,1),(1857,'default','n30986434-black-EU 40',0.0000,1),(1858,'default','n30986434-black-EU 39',0.0000,1),(1859,'default','n30986434-black-EU 42',0.0000,1),(1860,'default','n30986434-black-EU 45',0.0000,1),(1861,'default','n30986434-black-EU 43',0.0000,1),(1862,'default','n30986434-red-EU 44',0.0000,1),(1863,'default','n30986434-red-EU 40',0.0000,1),(1864,'default','n30986434-red-EU 39',0.0000,1),(1865,'default','n30986434-red-EU 42',0.0000,1),(1866,'default','n30986434-red-EU 45',0.0000,1),(1867,'default','n30986434-red-EU 43',0.0000,1),(1874,'default','n31149594-black-EU 36',0.0000,1),(1875,'default','n31149594-black-EU 39',0.0000,1),(1876,'default','n31149594-black-EU 37',0.0000,1),(1877,'default','n31149594-black-EU 40',0.0000,1),(1878,'default','n31149594-black-EU 38',0.0000,1),(1879,'default','n31149594-black-EU 41',0.0000,1),(1880,'default','n31149594-white-EU 36',0.0000,1),(1881,'default','n31149594-white-EU 39',0.0000,1),(1882,'default','n31149594-white-EU 37',0.0000,1),(1883,'default','n31149594-white-EU 40',0.0000,1),(1884,'default','n31149594-white-EU 38',0.0000,1),(1885,'default','n31149594-white-EU 41',0.0000,1),(1886,'default','n31149594-blue-EU 36',0.0000,1),(1887,'default','n31149594-blue-EU 39',0.0000,1),(1888,'default','n31149594-blue-EU 37',0.0000,1),(1889,'default','n31149594-blue-EU 40',0.0000,1),(1890,'default','n31149594-blue-EU 38',0.0000,1),(1891,'default','n31149594-blue-EU 41',0.0000,1),(1892,'default','n31149594-red-EU 36',0.0000,1),(1893,'default','n31149594-red-EU 39',0.0000,1),(1894,'default','n31149594-red-EU 37',0.0000,1),(1895,'default','n31149594-red-EU 40',0.0000,1),(1896,'default','n31149594-red-EU 38',0.0000,1),(1897,'default','n31149594-red-EU 41',0.0000,1),(1898,'default','n31149594-brown-EU 36',0.0000,1),(1899,'default','n31149594-brown-EU 39',0.0000,1),(1900,'default','n31149594-brown-EU 37',0.0000,1),(1901,'default','n31149594-brown-EU 40',0.0000,1),(1902,'default','n31149594-brown-EU 38',0.0000,1),(1903,'default','n31149594-brown-EU 41',0.0000,1),(1904,'default','n31176055-brown-Extra small size',0.0000,1),(1905,'default','n31176055-brown-Small size',0.0000,1),(1906,'default','n31176055-brown-Extra large size',0.0000,1),(1907,'default','n31176055-brown-Medium size',0.0000,1),(1908,'default','n31176055-white-Extra small size',0.0000,1),(1909,'default','n31176055-white-Small size',0.0000,1),(1910,'default','n31176055-white-Extra large size',0.0000,1),(1911,'default','n31176055-white-Medium size',0.0000,1),(1912,'default','n31091010-EU 39-red',0.0000,1),(1913,'default','n31091010-EU 39-black',0.0000,1),(1914,'default','n31091010-EU 39-white',0.0000,1),(1915,'default','n31091010-EU 39-brown',0.0000,1),(1916,'default','n31091010-EU 39-grey',0.0000,1),(1917,'default','n31091010-EU 42-red',0.0000,1),(1918,'default','n31091010-EU 42-black',0.0000,1),(1919,'default','n31091010-EU 42-white',0.0000,1),(1920,'default','n31091010-EU 42-brown',0.0000,1),(1921,'default','n31091010-EU 42-grey',0.0000,1),(1922,'default','n31091010-EU 40-red',0.0000,1),(1923,'default','n31091010-EU 40-black',0.0000,1),(1924,'default','n31091010-EU 40-white',0.0000,1),(1925,'default','n31091010-EU 40-brown',0.0000,1),(1926,'default','n31091010-EU 40-grey',0.0000,1),(1927,'default','n31091010-EU 43-red',0.0000,1),(1928,'default','n31091010-EU 43-black',0.0000,1),(1929,'default','n31091010-EU 43-white',0.0000,1),(1930,'default','n31091010-EU 43-brown',0.0000,1),(1931,'default','n31091010-EU 43-grey',0.0000,1),(1932,'default','n31091010-EU 41-red',0.0000,1),(1933,'default','n31091010-EU 41-black',0.0000,1),(1934,'default','n31091010-EU 41-white',0.0000,1),(1935,'default','n31091010-EU 41-brown',0.0000,1),(1936,'default','n31091010-EU 41-grey',0.0000,1),(1937,'default','n31231309-brown-Extra small size',0.0000,1),(1938,'default','n31231309-brown-Small size',0.0000,1),(1939,'default','n31231309-brown-Medium size',0.0000,1),(1940,'default','n31231309-blue-Extra small size',0.0000,1),(1941,'default','n31231309-blue-Small size',0.0000,1),(1942,'default','n31231309-blue-Medium size',0.0000,1),(1943,'default','n31302817-brown-Large size',0.0000,1),(1944,'default','n31302817-brown-Small size',0.0000,1),(1945,'default','n31302817-brown-Medium size',0.0000,1),(1946,'default','n31302817-grey-Large size',0.0000,1),(1947,'default','n31134483-red-Extra small size',0.0000,1),(1948,'default','n31134483-red-Small size',0.0000,1),(1949,'default','n31302817-grey-Small size',0.0000,1),(1950,'default','n31134483-red-Medium size',0.0000,1),(1951,'default','n31134483-red-Large size',0.0000,1),(1952,'default','n31134483-black-Extra small size',0.0000,1),(1953,'default','n31302817-grey-Medium size',0.0000,1),(1954,'default','n31134483-black-Small size',0.0000,1),(1955,'default','n31134483-black-Medium size',0.0000,1),(1956,'default','n31134483-black-Large size',0.0000,1),(1957,'default','n31134483-blue-Extra small size',0.0000,1),(1958,'default','n31134483-blue-Small size',0.0000,1),(1959,'default','n31134483-blue-Medium size',0.0000,1),(1960,'default','n31134483-blue-Large size',0.0000,1),(1961,'default','n31134483-white-Extra small size',0.0000,1),(1962,'default','n31134483-white-Small size',0.0000,1),(1963,'default','n31134483-white-Medium size',0.0000,1),(1964,'default','n31134483-white-Large size',0.0000,1),(1965,'default','n31134483-brown-Extra small size',0.0000,1),(1966,'default','n31134483-brown-Small size',0.0000,1),(1967,'default','n31134483-brown-Medium size',0.0000,1),(1968,'default','n31134483-brown-Large size',0.0000,1),(1969,'default','n31276018',0.0000,1),(1970,'default','n31253499-grey-Large size',0.0000,1),(1971,'default','n31253499-grey-Small size',0.0000,1),(1972,'default','n31253499-grey-Medium size',0.0000,1),(1973,'default','n31253499-blue-Large size',0.0000,1),(1974,'default','n31253499-blue-Small size',0.0000,1),(1975,'default','n31253499-blue-Medium size',0.0000,1),(1976,'default','n31276018-EU 41-red',0.0000,1),(1977,'default','n31276018-EU 41-blue',0.0000,1),(1978,'default','n31276018-EU 41-white',0.0000,1),(1979,'default','n31276018-EU 41-brown',0.0000,1),(1980,'default','n31276018-EU 41-grey',0.0000,1),(1981,'default','n31276018-EU 40-red',0.0000,1),(1982,'default','n31276018-EU 40-blue',0.0000,1),(1983,'default','n31276018-EU 40-white',0.0000,1),(1984,'default','n31276018-EU 40-brown',0.0000,1),(1985,'default','n31276018-EU 40-grey',0.0000,1),(1986,'default','n31276018-EU 42-red',0.0000,1),(1987,'default','n31276018-EU 42-blue',0.0000,1),(1988,'default','n31276018-EU 42-white',0.0000,1),(1989,'default','n31276018-EU 42-brown',0.0000,1),(1990,'default','n31276018-EU 42-grey',0.0000,1),(1992,'default','n31253492-blue-Extra small size',0.0000,1),(1993,'default','n31253492-blue-Large size',0.0000,1),(1994,'default','n31253492-blue-Extra large size',0.0000,1),(1995,'default','n31253492-blue-Small size',0.0000,1),(1996,'default','n31253492-blue-Medium size',0.0000,1),(1997,'default','n31253492-black-Extra small size',0.0000,1),(1998,'default','n31253492-black-Large size',0.0000,1),(1999,'default','n31253492-black-Extra large size',0.0000,1),(2000,'default','n31253492-black-Small size',0.0000,1),(2001,'default','n31253492-black-Medium size',0.0000,1),(2002,'default','n31276018-1-black-EU 42',0.0000,1),(2003,'default','n31276018-1-black-EU 43',0.0000,1),(2004,'default','n31276018-1-black-EU 44',0.0000,1),(2005,'default','n31276018-1-red-EU 42',0.0000,1),(2006,'default','n31276018-1-red-EU 43',0.0000,1),(2007,'default','n31276018-1-red-EU 44',0.0000,1),(2008,'default','n31276018-1-blue-EU 42',0.0000,1),(2009,'default','n31276018-1-blue-EU 43',0.0000,1),(2010,'default','n31276018-1-blue-EU 44',0.0000,1),(2011,'default','n31276018-1-white-EU 42',0.0000,1),(2012,'default','n31276018-1-white-EU 43',0.0000,1),(2013,'default','n31276018-1-white-EU 44',0.0000,1),(2014,'default','n30988045-white-Small size',0.0000,1),(2015,'default','n30988045-white-Medium size',0.0000,1),(2016,'default','n30988045-white-Extra large size',0.0000,1),(2017,'default','n30988045-white-Large size',0.0000,1),(2018,'default','n30988045-grey-Small size',0.0000,1),(2019,'default','n30988045-grey-Medium size',0.0000,1),(2020,'default','n30988045-grey-Extra large size',0.0000,1),(2021,'default','n30988045-grey-Large size',0.0000,1),(2022,'default','n30988045-blue-Small size',0.0000,1),(2023,'default','n30988045-blue-Medium size',0.0000,1),(2024,'default','n30988045-blue-Extra large size',0.0000,1),(2025,'default','n30988045-blue-Large size',0.0000,1),(2026,'default','n31135088-Large size-brown',0.0000,1),(2027,'default','n31135088-Large size-grey',0.0000,1),(2028,'default','n31135088-Large size-white',0.0000,1),(2029,'default','n31135088-Large size-blue',0.0000,1),(2030,'default','n31135088-Large size-red',0.0000,1),(2031,'default','n31135088-Extra large size-brown',0.0000,1),(2032,'default','n31135088-Extra large size-grey',0.0000,1),(2033,'default','n31135088-Extra large size-white',0.0000,1),(2034,'default','n31135088-Extra large size-blue',0.0000,1),(2035,'default','n31135088-Extra large size-red',0.0000,1),(2036,'default','n31135088-Small size-brown',0.0000,1),(2037,'default','n31135088-Small size-grey',0.0000,1),(2038,'default','n31135088-Small size-white',0.0000,1),(2039,'default','n31135088-Small size-blue',0.0000,1),(2040,'default','n31135088-Small size-red',0.0000,1),(2041,'default','n31135088-Medium size-brown',0.0000,1),(2042,'default','n31135088-Medium size-grey',0.0000,1),(2043,'default','n31135088-Medium size-white',0.0000,1),(2044,'default','n31135088-Medium size-blue',0.0000,1),(2045,'default','n31135088-Medium size-red',0.0000,1),(2046,'default','n31207422-Large size-black',0.0000,1),(2047,'default','n31207422-Large size-red',0.0000,1),(2048,'default','n31207422-Large size-white',0.0000,1),(2049,'default','n31207422-Large size-blue',0.0000,1),(2050,'default','n31207422-Large size-grey',0.0000,1),(2051,'default','n31207422-Extra small size-black',0.0000,1),(2052,'default','n31207422-Extra small size-red',0.0000,1),(2053,'default','n31207422-Extra small size-white',0.0000,1),(2054,'default','n31207422-Extra small size-blue',0.0000,1),(2055,'default','n31207422-Extra small size-grey',0.0000,1),(2056,'default','n31207422-Small size-black',0.0000,1),(2057,'default','n31207422-Small size-red',0.0000,1),(2058,'default','n31207422-Small size-white',0.0000,1),(2059,'default','n31207422-Small size-blue',0.0000,1),(2060,'default','n31207422-Small size-grey',0.0000,1),(2061,'default','n31207422-Medium size-black',0.0000,1),(2062,'default','n31207422-Medium size-red',0.0000,1),(2063,'default','n31207422-Medium size-white',0.0000,1),(2064,'default','n31207422-Medium size-blue',0.0000,1),(2065,'default','n31207422-Medium size-grey',0.0000,1),(2066,'default','n31226241-white-Extra small size',0.0000,1),(2067,'default','n31226241-white-Small size',0.0000,1),(2068,'default','n31226241-white-Large size',0.0000,1),(2069,'default','n31226241-black-Extra small size',0.0000,1),(2070,'default','n31226241-black-Small size',0.0000,1),(2071,'default','n31226241-black-Large size',0.0000,1),(2072,'default','n31226241-red-Extra small size',0.0000,1),(2073,'default','n31226241-red-Small size',0.0000,1),(2074,'default','n31226241-red-Large size',0.0000,1),(2075,'default','n31231300-1-black-Large size',0.0000,1),(2076,'default','n31231300-1-black-Small size',0.0000,1),(2077,'default','n31231300-1-black-Medium size',0.0000,1),(2078,'default','n31231300-1-red-Large size',0.0000,1),(2079,'default','n31231300-1-red-Small size',0.0000,1),(2080,'default','n31231300-1-red-Medium size',0.0000,1),(2081,'default','n31231300-1-white-Large size',0.0000,1),(2082,'default','n31231300-1-white-Small size',0.0000,1),(2083,'default','n31231300-1-white-Medium size',0.0000,1),(2084,'default','n31231300-1-blue-Large size',0.0000,1),(2085,'default','n31231300-1-blue-Small size',0.0000,1),(2086,'default','n31231300-1-blue-Medium size',0.0000,1),(2087,'default','n31231300-1-grey-Large size',0.0000,1),(2088,'default','n31231300-1-grey-Small size',0.0000,1),(2089,'default','n31231300-1-grey-Medium size',0.0000,1),(2090,'default','n31250794-white-Extra large size',0.0000,1),(2091,'default','n31250794-white-Small size',0.0000,1),(2092,'default','n31250794-white-Medium size',0.0000,1),(2093,'default','n31250794-blue-Extra large size',0.0000,1),(2094,'default','n31250794-blue-Small size',0.0000,1),(2095,'default','n31250794-blue-Medium size',0.0000,1),(2096,'default','n31250794-black-Extra large size',0.0000,1),(2097,'default','n31250794-black-Small size',0.0000,1),(2098,'default','n31250794-black-Medium size',0.0000,1),(2099,'default','n31189077-1-red-Large size',0.0000,1),(2100,'default','n31189077-1-red-Small size',0.0000,1),(2101,'default','n31189077-1-red-Extra large size',0.0000,1),(2102,'default','n31189077-1-red-Medium size',0.0000,1),(2103,'default','n31189077-1-white-Large size',0.0000,1),(2104,'default','n31189077-1-white-Small size',0.0000,1),(2105,'default','n31189077-1-white-Extra large size',0.0000,1),(2106,'default','n31189077-1-white-Medium size',0.0000,1),(2107,'default','n31189077-1-blue-Large size',0.0000,1),(2108,'default','n31189077-1-blue-Small size',0.0000,1),(2109,'default','n31189077-1-blue-Extra large size',0.0000,1),(2110,'default','n31189077-1-blue-Medium size',0.0000,1),(2111,'default','n31189077-1-brown-Large size',0.0000,1),(2112,'default','n31189077-1-brown-Small size',0.0000,1),(2113,'default','n31189077-1-brown-Extra large size',0.0000,1),(2114,'default','n31189077-1-brown-Medium size',0.0000,1),(2115,'default','n31189077-1-grey-Large size',0.0000,1),(2116,'default','n31189077-1-grey-Small size',0.0000,1),(2117,'default','n31189077-1-grey-Extra large size',0.0000,1),(2118,'default','n31189077-1-grey-Medium size',0.0000,1),(2119,'default','n31167823-Medium size-white',0.0000,1),(2120,'default','n31167823-Medium size-red',0.0000,1),(2121,'default','n31167823-Medium size-black',0.0000,1),(2122,'default','n31167823-Medium size-blue',0.0000,1),(2123,'default','n31167823-Medium size-grey',0.0000,1),(2124,'default','n31167823-Small size-white',0.0000,1),(2125,'default','n31167823-Small size-red',0.0000,1),(2126,'default','n31167823-Small size-black',0.0000,1),(2127,'default','n31167823-Small size-blue',0.0000,1),(2128,'default','n31167823-Small size-grey',0.0000,1),(2129,'default','n31167823-Extra small size-white',0.0000,1),(2130,'default','n31167823-Extra small size-red',0.0000,1),(2131,'default','n31167823-Extra small size-black',0.0000,1),(2132,'default','n31167823-Extra small size-blue',0.0000,1),(2133,'default','n31167823-Extra small size-grey',0.0000,1),(2134,'default','n31167823-Large size-white',0.0000,1),(2135,'default','n31167823-Large size-red',0.0000,1),(2136,'default','n31167823-Large size-black',0.0000,1),(2137,'default','n31167823-Large size-blue',0.0000,1),(2138,'default','n31167823-Large size-grey',0.0000,1),(2139,'default','n31324632-grey-Large size',0.0000,1),(2140,'default','n31324632-grey-Small size',0.0000,1),(2141,'default','n31324632-grey-Medium size',0.0000,1),(2142,'default','n31324632-blue-Large size',0.0000,1),(2143,'default','n31324632-blue-Small size',0.0000,1),(2144,'default','n31324632-blue-Medium size',0.0000,1),(2145,'default','n31324632-black-Large size',0.0000,1),(2146,'default','n31324632-black-Small size',0.0000,1),(2147,'default','n31324632-black-Medium size',0.0000,1),(2148,'default','n31189007-red-Large size',0.0000,1),(2149,'default','n31189007-red-Small size',0.0000,1),(2150,'default','n31189007-red-Extra large size',0.0000,1),(2151,'default','n31189007-red-Medium size',0.0000,1),(2152,'default','n31189007-white-Large size',0.0000,1),(2153,'default','n31189007-white-Small size',0.0000,1),(2154,'default','n31189007-white-Extra large size',0.0000,1),(2155,'default','n31189007-white-Medium size',0.0000,1),(2156,'default','n31189007-blue-Large size',0.0000,1),(2157,'default','n31189007-blue-Small size',0.0000,1),(2158,'default','n31189007-blue-Extra large size',0.0000,1),(2159,'default','n31189007-blue-Medium size',0.0000,1),(2160,'default','n31189007-brown-Large size',0.0000,1),(2161,'default','n31189007-brown-Small size',0.0000,1),(2162,'default','n31189007-brown-Extra large size',0.0000,1),(2163,'default','n31189007-brown-Medium size',0.0000,1),(2164,'default','n31189007-grey-Large size',0.0000,1),(2165,'default','n31189007-grey-Small size',0.0000,1),(2166,'default','n31189007-grey-Extra large size',0.0000,1),(2167,'default','n31189007-grey-Medium size',0.0000,1),(2168,'default','n31253491-brown-Extra small size',0.0000,1),(2169,'default','n31253491-brown-Large size',0.0000,1),(2170,'default','n31253491-brown-Small size',0.0000,1),(2171,'default','n31253491-brown-Medium size',0.0000,1),(2172,'default','n31253491-grey-Extra small size',0.0000,1),(2173,'default','n31253491-grey-Large size',0.0000,1),(2174,'default','n31253491-grey-Small size',0.0000,1),(2175,'default','n31253491-grey-Medium size',0.0000,1),(2176,'default','n31189077-Medium size-brown',0.0000,1),(2177,'default','n31189077-Medium size-white',0.0000,1),(2178,'default','n31189077-Medium size-blue',0.0000,1),(2179,'default','n31189077-Medium size-black',0.0000,1),(2180,'default','n31189077-Medium size-red',0.0000,1),(2181,'default','n31189077-Small size-brown',0.0000,1),(2182,'default','n31189077-Small size-white',0.0000,1),(2183,'default','n31189077-Small size-blue',0.0000,1),(2184,'default','n31189077-Small size-black',0.0000,1),(2185,'default','n31189077-Small size-red',0.0000,1),(2186,'default','n31189077-Large size-brown',0.0000,1),(2187,'default','n31189077-Large size-white',0.0000,1),(2188,'default','n31189077-Large size-blue',0.0000,1),(2189,'default','n31189077-Large size-black',0.0000,1),(2190,'default','n31189077-Large size-red',0.0000,1),(2191,'default','n31253498-black-Large size',0.0000,1),(2192,'default','n31253498-black-Small size',0.0000,1),(2193,'default','n31253498-black-Medium size',0.0000,1),(2194,'default','n31253498-grey-Large size',0.0000,1),(2195,'default','n31253498-grey-Small size',0.0000,1),(2196,'default','n31253498-grey-Medium size',0.0000,1),(2197,'default','n31231300-brown-Extra small size',0.0000,1),(2198,'default','n31231300-brown-Small size',0.0000,1),(2199,'default','n31231300-brown-Medium size',0.0000,1),(2200,'default','n31231300-brown-Large size',0.0000,1),(2201,'default','n31231300-brown-Extra large size',0.0000,1),(2202,'default','n31231300-white-Extra small size',0.0000,1),(2203,'default','n31231300-white-Small size',0.0000,1),(2204,'default','n31231300-white-Medium size',0.0000,1),(2205,'default','n31231300-white-Large size',0.0000,1),(2206,'default','n31231300-white-Extra large size',0.0000,1),(2207,'default','n31231300-grey-Extra small size',0.0000,1),(2208,'default','n31231300-grey-Small size',0.0000,1),(2209,'default','n31231300-grey-Medium size',0.0000,1),(2210,'default','n31231300-grey-Large size',0.0000,1),(2211,'default','n31231300-grey-Extra large size',0.0000,1),(2212,'default','n31231300-blue-Extra small size',0.0000,1),(2213,'default','n31231300-blue-Small size',0.0000,1),(2214,'default','n31231300-blue-Medium size',0.0000,1),(2215,'default','n31231300-blue-Large size',0.0000,1),(2216,'default','n31231300-blue-Extra large size',0.0000,1),(2217,'default','n31231300-red-Extra small size',0.0000,1),(2218,'default','n31231300-red-Small size',0.0000,1),(2219,'default','n31231300-red-Medium size',0.0000,1),(2220,'default','n31231300-red-Large size',0.0000,1),(2221,'default','n31231300-red-Extra large size',0.0000,1),(2222,'default','n31253493-black-Small size',0.0000,1),(2223,'default','n31253493-black-Medium size',0.0000,1),(2224,'default','n31253493-black-Extra large size',0.0000,1),(2225,'default','n31253493-black-Large size',0.0000,1),(2226,'default','n31253493-grey-Small size',0.0000,1),(2227,'default','n31253493-grey-Medium size',0.0000,1),(2228,'default','n31253493-grey-Extra large size',0.0000,1),(2229,'default','n31253493-grey-Large size',0.0000,1),(2230,'default','n31273656-Large size-black',0.0000,1),(2231,'default','n31273656-Large size-brown',0.0000,1),(2232,'default','n31273656-Large size-grey',0.0000,1),(2233,'default','n31273656-Extra small size-black',0.0000,1),(2234,'default','n31273656-Extra small size-brown',0.0000,1),(2235,'default','n31273656-Extra small size-grey',0.0000,1),(2236,'default','n31273656-Small size-black',0.0000,1),(2237,'default','n31273656-Small size-brown',0.0000,1),(2238,'default','n31273656-Small size-grey',0.0000,1),(2239,'default','n31273656-Medium size-black',0.0000,1),(2240,'default','n31273656-Medium size-brown',0.0000,1),(2241,'default','n31273656-Medium size-grey',0.0000,1),(2242,'default','n31253502-Large size-black',0.0000,1),(2243,'default','n31253502-Small size-black',0.0000,1),(2244,'default','n31253502-Medium size-black',0.0000,1),(2245,'default','n31253501-blue-Small size',0.0000,1),(2246,'default','n31253501-blue-Large size',0.0000,1),(2247,'default','n31253501-blue-Medium size',0.0000,1),(2248,'default','n31202421-blue-Extra small size',0.0000,1),(2249,'default','n31202421-blue-Small size',0.0000,1),(2250,'default','n31202421-blue-Medium size',0.0000,1),(2251,'default','n31202421-red-Extra small size',0.0000,1),(2252,'default','n31202421-red-Small size',0.0000,1),(2253,'default','n31202421-red-Medium size',0.0000,1),(2254,'default','n31190954-red-Small size',0.0000,1),(2255,'default','n31190954-red-Large size',0.0000,1),(2256,'default','n31190954-red-Medium size',0.0000,1),(2257,'default','n31190954-blue-Small size',0.0000,1),(2258,'default','n31190954-blue-Large size',0.0000,1),(2259,'default','n31190954-blue-Medium size',0.0000,1),(2260,'default','n2313434-black-Medium size',0.0000,1),(2261,'default','n2313434-black-Small size',0.0000,1),(2262,'default','n2313434-black-Large size',0.0000,1),(2263,'default','n2313434-red-Medium size',0.0000,1),(2264,'default','n2313434-red-Small size',0.0000,1),(2265,'default','n2313434-red-Large size',0.0000,1),(2266,'default','n2313434-grey-Medium size',0.0000,1),(2267,'default','n2313434-grey-Small size',0.0000,1),(2268,'default','n2313434-grey-Large size',0.0000,1),(2269,'default','n31253496-brown-Large size',0.0000,1),(2270,'default','n31253496-brown-Small size',0.0000,1),(2271,'default','n31253496-brown-Medium size',0.0000,1),(2272,'default','n31253496-grey-Large size',0.0000,1),(2273,'default','n31253496-grey-Small size',0.0000,1),(2274,'default','n31253496-grey-Medium size',0.0000,1),(2275,'default','n30947478-EU 42-brown',0.0000,1),(2276,'default','n30947478-EU 42-blue',0.0000,1),(2277,'default','n30947478-EU 42-black',0.0000,1),(2278,'default','n30947478-EU 40-brown',0.0000,1),(2279,'default','n30947478-EU 40-blue',0.0000,1),(2280,'default','n30947478-EU 40-black',0.0000,1),(2281,'default','n30947478-EU 43-brown',0.0000,1),(2282,'default','n30947478-EU 43-blue',0.0000,1),(2283,'default','n30947478-EU 43-black',0.0000,1),(2284,'default','n30947478-EU 41-brown',0.0000,1),(2285,'default','n30947478-EU 41-blue',0.0000,1),(2286,'default','n30947478-EU 41-black',0.0000,1),(2287,'default','n30947478-EU 44-brown',0.0000,1),(2288,'default','n30947478-EU 44-blue',0.0000,1),(2289,'default','n30947478-EU 44-black',0.0000,1),(2290,'default','n31141265-red-EU 40',0.0000,1),(2291,'default','n31141265-red-EU 41',0.0000,1),(2292,'default','n31179106-red-EU 39',0.0000,1),(2293,'default','n31179106-red-EU 42',0.0000,1),(2294,'default','n31179106-red-EU 45',0.0000,1),(2295,'default','n31179106-red-EU 40',0.0000,1),(2296,'default','n31179106-red-EU 43',0.0000,1),(2297,'default','n31179106-red-EU 41',0.0000,1),(2298,'default','n31179106-red-EU 44',0.0000,1),(2299,'default','n31179106-grey-EU 39',0.0000,1),(2300,'default','n31179106-grey-EU 42',0.0000,1),(2301,'default','n31179106-grey-EU 45',0.0000,1),(2302,'default','n31179106-grey-EU 40',0.0000,1),(2303,'default','n31179106-grey-EU 43',0.0000,1),(2304,'default','n31179106-grey-EU 41',0.0000,1),(2305,'default','n31179106-grey-EU 44',0.0000,1),(2306,'default','n31332981-blue-EU 39',0.0000,1),(2307,'default','n31332981-blue-EU 42',0.0000,1),(2308,'default','n31332981-blue-EU 40',0.0000,1),(2309,'default','n31332981-blue-EU 43',0.0000,1),(2310,'default','n31332981-blue-EU 41',0.0000,1),(2311,'default','n31332981-black-EU 39',0.0000,1),(2312,'default','n31332981-black-EU 42',0.0000,1),(2313,'default','n31332981-black-EU 40',0.0000,1),(2314,'default','n31332981-black-EU 43',0.0000,1),(2315,'default','n31332981-black-EU 41',0.0000,1),(2316,'default','n31085465-EU 39-brown',0.0000,1),(2317,'default','n31085465-EU 39-grey',0.0000,1),(2318,'default','n31085465-EU 39-black',0.0000,1),(2319,'default','n31085465-EU 42-brown',0.0000,1),(2320,'default','n31085465-EU 42-grey',0.0000,1),(2321,'default','n31085465-EU 42-black',0.0000,1),(2322,'default','n31085465-EU 40-brown',0.0000,1),(2323,'default','n31085465-EU 40-grey',0.0000,1),(2324,'default','n31085465-EU 40-black',0.0000,1),(2325,'default','n31085465-EU 43-brown',0.0000,1),(2326,'default','n31085465-EU 43-grey',0.0000,1),(2327,'default','n31085465-EU 43-black',0.0000,1),(2328,'default','n31085465-EU 41-brown',0.0000,1),(2329,'default','n31085465-EU 41-grey',0.0000,1),(2330,'default','n31085465-EU 41-black',0.0000,1),(2331,'default','n31085465-EU 44-brown',0.0000,1),(2332,'default','n31085465-EU 44-grey',0.0000,1),(2333,'default','n31085465-EU 44-black',0.0000,1),(2334,'default','n31264080-grey-Medium size',0.0000,1),(2335,'default','n31264080-grey-Large size',0.0000,1),(2336,'default','n31264080-brown-Medium size',0.0000,1),(2337,'default','n31264080-brown-Large size',0.0000,1),(2338,'default','n31178507-blue-Large size',0.0000,1),(2339,'default','n31178507-blue-Medium size',0.0000,1),(2340,'default','n31178507-red-Large size',0.0000,1),(2341,'default','n31178507-red-Medium size',0.0000,1),(2342,'default','n31125037-red-Extra small size',0.0000,1),(2343,'default','n31125037-red-Large size',0.0000,1),(2344,'default','n31125037-red-Small size',0.0000,1),(2345,'default','n31125037-red-Medium size',0.0000,1),(2346,'default','n31125037-blue-Extra small size',0.0000,1),(2347,'default','n31125037-blue-Large size',0.0000,1),(2348,'default','n31125037-blue-Small size',0.0000,1),(2349,'default','n31125037-blue-Medium size',0.0000,1),(2350,'default','n30977134-white-Medium size',0.0000,1),(2351,'default','n30977134-white-Small size',0.0000,1),(2352,'default','n30977134-white-Extra small size',0.0000,1),(2353,'default','n30977134-red-Medium size',0.0000,1),(2354,'default','n30977134-red-Small size',0.0000,1),(2355,'default','n30977134-red-Extra small size',0.0000,1),(2356,'default','n31146614-brown-Small size',0.0000,1),(2357,'default','n31146614-blue-Small size',0.0000,1),(2358,'default','n30977108-black-Medium size',0.0000,1),(2359,'default','n30977108-black-Small size',0.0000,1),(2360,'default','n30977108-black-Extra small size',0.0000,1),(2361,'default','n30977108-black-Large size',0.0000,1),(2362,'default','n30977108-brown-Medium size',0.0000,1),(2363,'default','n30977108-brown-Small size',0.0000,1),(2364,'default','n30977108-brown-Extra small size',0.0000,1),(2365,'default','n30977108-brown-Large size',0.0000,1),(2366,'default','n31162615-brown-Small size',0.0000,1),(2367,'default','n31162615-blue-Small size',0.0000,1),(2368,'default','n31291013-black-Extra small size',0.0000,1),(2369,'default','n31291013-black-Large size',0.0000,1),(2370,'default','n31291013-black-Small size',0.0000,1),(2371,'default','n31291013-black-Medium size',0.0000,1),(2372,'default','n31291013-white-Extra small size',0.0000,1),(2373,'default','n31291013-white-Large size',0.0000,1),(2374,'default','n31291013-white-Small size',0.0000,1),(2375,'default','n31291013-white-Medium size',0.0000,1),(2376,'default','n31340162-blue-Extra small size',0.0000,1),(2377,'default','n31340162-blue-Large size',0.0000,1),(2378,'default','n31340162-blue-Small size',0.0000,1),(2379,'default','n31340162-blue-Medium size',0.0000,1),(2380,'default','n31340162-grey-Extra small size',0.0000,1),(2381,'default','n31340162-grey-Large size',0.0000,1),(2382,'default','n31340162-grey-Small size',0.0000,1),(2383,'default','n31340162-grey-Medium size',0.0000,1),(2384,'default','n31300702-black-Small size',0.0000,1),(2385,'default','n31300702-black-Medium size',0.0000,1),(2386,'default','n31300702-red-Small size',0.0000,1),(2387,'default','n31300702-red-Medium size',0.0000,1),(2388,'default','n31305260-Small size-brown',0.0000,1),(2389,'default','n31305260-Small size-grey',0.0000,1),(2390,'default','n31305260-Medium size-brown',0.0000,1),(2391,'default','n31305260-Medium size-grey',0.0000,1),(2392,'default','n31240220-black-Extra small size',0.0000,1),(2393,'default','n31240220-black-Small size',0.0000,1),(2394,'default','n31240220-grey-Extra small size',0.0000,1),(2395,'default','n31240220-grey-Small size',0.0000,1),(2396,'default','n31350783-red-Extra small size',0.0000,1),(2397,'default','n31350783-red-Small size',0.0000,1),(2398,'default','n31350783-red-Medium size',0.0000,1),(2399,'default','n31350783-white-Extra small size',0.0000,1),(2400,'default','n31350783-white-Small size',0.0000,1),(2401,'default','n31350783-white-Medium size',0.0000,1),(2402,'default','n31160332-black-Small size',0.0000,1),(2403,'default','n31160332-black-Medium size',0.0000,1),(2404,'default','n31160332-red-Small size',0.0000,1),(2405,'default','n31160332-red-Medium size',0.0000,1),(2406,'default','n31319864-blue-Extra small size',0.0000,1),(2407,'default','n31319864-blue-Large size',0.0000,1),(2408,'default','n31319864-blue-Medium size',0.0000,1),(2409,'default','n31319864-white-Extra small size',0.0000,1),(2410,'default','n31319864-white-Large size',0.0000,1),(2411,'default','n31319864-white-Medium size',0.0000,1),(2412,'default','n31160298-blue-Small size',0.0000,1),(2413,'default','n31160298-blue-Medium size',0.0000,1),(2414,'default','n31160298-red-Small size',0.0000,1),(2415,'default','n31160298-red-Medium size',0.0000,1),(2416,'default','n31239294-red-Extra small size',0.0000,1),(2417,'default','n31239294-red-Small size',0.0000,1),(2418,'default','n31239294-red-Extra large size',0.0000,1),(2419,'default','n31239294-red-Medium size',0.0000,1),(2420,'default','n31239294-white-Extra small size',0.0000,1),(2421,'default','n31239294-white-Small size',0.0000,1),(2422,'default','n31239294-white-Extra large size',0.0000,1),(2423,'default','n31239294-white-Medium size',0.0000,1),(2424,'default','n31160296-white-Extra small size',0.0000,1),(2425,'default','n31160296-white-Small size',0.0000,1),(2426,'default','n31160296-white-Medium size',0.0000,1),(2427,'default','n31160296-red-Extra small size',0.0000,1),(2428,'default','n31160296-red-Small size',0.0000,1),(2429,'default','n31160296-red-Medium size',0.0000,1),(2430,'default','n30977037-white-Extra small size',0.0000,1),(2431,'default','n30977037-white-Small size',0.0000,1),(2432,'default','n30977037-white-Medium size',0.0000,1),(2433,'default','n30977037-white-Large size',0.0000,1),(2434,'default','n30977037-white-Extra large size',0.0000,1),(2435,'default','n30977037-blue-Extra small size',0.0000,1),(2436,'default','n30977037-blue-Small size',0.0000,1),(2437,'default','n30977037-blue-Medium size',0.0000,1),(2438,'default','n30977037-blue-Large size',0.0000,1),(2439,'default','n30977037-blue-Extra large size',0.0000,1),(2440,'default','n31218012-brown-Medium size',0.0000,1),(2441,'default','n31218012-brown-Small size',0.0000,1),(2442,'default','n31218012-brown-Extra small size',0.0000,1),(2443,'default','n31218012-white-Medium size',0.0000,1),(2444,'default','n31218012-white-Small size',0.0000,1),(2445,'default','n31218012-white-Extra small size',0.0000,1),(2446,'default','n31266871-white-Extra small size',0.0000,1),(2447,'default','n31266871-white-Large size',0.0000,1),(2448,'default','n31266871-white-Small size',0.0000,1),(2449,'default','n31266871-white-Medium size',0.0000,1),(2450,'default','n31266871-blue-Extra small size',0.0000,1),(2451,'default','n31266871-blue-Large size',0.0000,1),(2452,'default','n31266871-blue-Small size',0.0000,1),(2453,'default','n31266871-blue-Medium size',0.0000,1),(2454,'default','n31034537-grey-Small size',0.0000,1),(2455,'default','n31034537-blue-Small size',0.0000,1),(2456,'default','n31062218-blue-Small size',0.0000,1),(2457,'default','n31062218-red-Small size',0.0000,1),(2458,'default','n31331004-black-Large size',0.0000,1),(2459,'default','n31331004-black-Small size',0.0000,1),(2460,'default','n31331004-black-Medium size',0.0000,1),(2461,'default','n31331004-red-Large size',0.0000,1),(2462,'default','n31331004-red-Small size',0.0000,1),(2463,'default','n31331004-red-Medium size',0.0000,1),(2464,'default','n31304473-grey',0.0000,1),(2465,'default','n31304473-brown',0.0000,1),(2466,'default','n30838511-white-Extra small size',0.0000,1),(2467,'default','n30838511-white-Large size',0.0000,1),(2468,'default','n30838511-white-Small size',0.0000,1),(2469,'default','n30838511-white-Medium size',0.0000,1),(2470,'default','n30838511-black-Extra small size',0.0000,1),(2471,'default','n30838511-black-Large size',0.0000,1),(2472,'default','n30838511-black-Small size',0.0000,1),(2473,'default','n30838511-black-Medium size',0.0000,1),(2474,'default','n31197648-brown-EU 39',0.0000,1),(2475,'default','n31197648-brown-EU 37',0.0000,1),(2476,'default','n31197648-brown-EU 40',0.0000,1),(2477,'default','n31197648-brown-EU 38',0.0000,1),(2478,'default','n31197648-brown-EU 41',0.0000,1),(2479,'default','n31197648-blue-EU 39',0.0000,1),(2480,'default','n31197648-blue-EU 37',0.0000,1),(2481,'default','n31197648-blue-EU 40',0.0000,1),(2482,'default','n31197648-blue-EU 38',0.0000,1),(2483,'default','n31197648-blue-EU 41',0.0000,1),(2484,'default','n31327540-grey',0.0000,1),(2485,'default','n31327540-red',0.0000,1),(2486,'default','n310018035-red-Extra small size',0.0000,1),(2487,'default','n310018035-red-Small size',0.0000,1),(2488,'default','n310018035-red-Medium size',0.0000,1),(2489,'default','n310018035-brown-Extra small size',0.0000,1),(2490,'default','n310018035-brown-Small size',0.0000,1),(2491,'default','n310018035-brown-Medium size',0.0000,1),(2492,'default','n31292042-red-Extra small size',0.0000,1),(2493,'default','n31292042-red-Small size',0.0000,1),(2494,'default','n31292042-red-Medium size',0.0000,1),(2495,'default','n31292042-grey-Extra small size',0.0000,1),(2496,'default','n31292042-grey-Small size',0.0000,1),(2497,'default','n31292042-grey-Medium size',0.0000,1),(2498,'default','n31258335-black-Small size',0.0000,1),(2499,'default','n31258335-black-Medium size',0.0000,1),(2500,'default','n31258335-red-Small size',0.0000,1),(2501,'default','n31258335-red-Medium size',0.0000,1),(2502,'default','n31145394-brown-Extra small size',0.0000,1),(2503,'default','n31145394-brown-Small size',0.0000,1),(2504,'default','n31145394-brown-Medium size',0.0000,1),(2505,'default','n31145394-grey-Extra small size',0.0000,1),(2506,'default','n31145394-grey-Small size',0.0000,1),(2507,'default','n31145394-grey-Medium size',0.0000,1),(2508,'default','n310018033-grey-Extra small size',0.0000,1),(2509,'default','n310018033-grey-Small size',0.0000,1),(2510,'default','n310018033-grey-Medium size',0.0000,1),(2511,'default','n310018033-blue-Extra small size',0.0000,1),(2512,'default','n310018033-blue-Small size',0.0000,1),(2513,'default','n310018033-blue-Medium size',0.0000,1),(2514,'default','n31175794-brown',0.0000,1),(2515,'default','n31175794-grey',0.0000,1),(2516,'default','n31289374-brown-Small size',0.0000,1),(2517,'default','n31289374-brown-Medium size',0.0000,1),(2518,'default','n31289374-black-Small size',0.0000,1),(2519,'default','n31289374-black-Medium size',0.0000,1),(2520,'default','n31001803-black-Extra small size',0.0000,1),(2521,'default','n31001803-black-Large size',0.0000,1),(2522,'default','n31001803-black-Small size',0.0000,1),(2523,'default','n31001803-brown-Extra small size',0.0000,1),(2524,'default','n31001803-brown-Large size',0.0000,1),(2525,'default','n31001803-brown-Small size',0.0000,1),(2526,'default','n31005341-blue',0.0000,1),(2527,'default','n31005341-red',0.0000,1),(2528,'default','n31343872-Extra small size-red',0.0000,1),(2529,'default','n31343872-Extra small size-brown',0.0000,1),(2530,'default','n31343872-Small size-red',0.0000,1),(2531,'default','n31343872-Small size-brown',0.0000,1),(2532,'default','n31343872-Medium size-red',0.0000,1),(2533,'default','n31343872-Medium size-brown',0.0000,1),(2534,'default','n31045897-blue-Small size',0.0000,1),(2535,'default','n31045897-blue-Medium size',0.0000,1),(2536,'default','n31045897-black-Small size',0.0000,1),(2537,'default','n31045897-black-Medium size',0.0000,1),(2538,'default','n31196404-brown-EU 36',0.0000,1),(2539,'default','n31196404-brown-EU 39',0.0000,1),(2540,'default','n31196404-brown-EU 40',0.0000,1),(2541,'default','n31196404-brown-EU 41',0.0000,1),(2542,'default','n31196404-brown-EU 38',0.0000,1),(2543,'default','n31196404-blue-EU 36',0.0000,1),(2544,'default','n31196404-blue-EU 39',0.0000,1),(2545,'default','n31196404-blue-EU 40',0.0000,1),(2546,'default','n31196404-blue-EU 41',0.0000,1),(2547,'default','n31196404-blue-EU 38',0.0000,1),(2548,'default','n31483900-red-Small size',0.0000,1),(2549,'default','n31483900-red-Extra large size',0.0000,1),(2550,'default','n31483900-red-Medium size',0.0000,1),(2551,'default','n31483900-grey-Small size',0.0000,1),(2552,'default','n31483900-grey-Extra large size',0.0000,1),(2553,'default','n31483900-grey-Medium size',0.0000,1),(2554,'default','n31191497-brown-Medium size',0.0000,1),(2555,'default','n31191497-grey-Medium size',0.0000,1),(2556,'default','n31085354-black-EU 38',0.0000,1),(2557,'default','n31085354-black-EU 41',0.0000,1),(2558,'default','n31085354-black-EU 37',0.0000,1),(2559,'default','n31085354-black-EU 40',0.0000,1),(2560,'default','n31085354-black-EU 39',0.0000,1),(2561,'default','n31085354-black-EU 36',0.0000,1),(2562,'default','n31085354-red-EU 38',0.0000,1),(2563,'default','n31085354-red-EU 41',0.0000,1),(2564,'default','n31085354-red-EU 37',0.0000,1),(2565,'default','n31085354-red-EU 40',0.0000,1),(2566,'default','n31085354-red-EU 39',0.0000,1),(2567,'default','n31085354-red-EU 36',0.0000,1),(2568,'default','n31151579-brown-Small size',0.0000,1),(2569,'default','n31151579-brown-Extra small size',0.0000,1),(2570,'default','n31151579-brown-Large size',0.0000,1),(2571,'default','n31151579-brown-Medium size',0.0000,1),(2572,'default','n31151579-white-Small size',0.0000,1),(2573,'default','n31151579-white-Extra small size',0.0000,1),(2574,'default','n31151579-white-Large size',0.0000,1),(2575,'default','n31151579-white-Medium size',0.0000,1),(2576,'default','n31220278-brown-Extra small size',0.0000,1),(2577,'default','n31220278-brown-Small size',0.0000,1),(2578,'default','n31220278-brown-Medium size',0.0000,1),(2579,'default','n31220278-blue-Extra small size',0.0000,1),(2580,'default','n31220278-blue-Small size',0.0000,1),(2581,'default','n31220278-blue-Medium size',0.0000,1),(2582,'default','n31350778-brown-Medium size',0.0000,1),(2583,'default','n31350778-brown-Small size',0.0000,1),(2584,'default','n31350778-brown-Extra small size',0.0000,1),(2585,'default','n31350778-black-Medium size',0.0000,1),(2586,'default','n31350778-black-Small size',0.0000,1),(2587,'default','n31350778-black-Extra small size',0.0000,1),(2588,'default','n31261586-Extra small size-white',0.0000,1),(2589,'default','n31261586-Extra small size-blue',0.0000,1),(2590,'default','n31261586-Large size-white',0.0000,1),(2591,'default','n31261586-Large size-blue',0.0000,1),(2592,'default','n31261586-Small size-white',0.0000,1),(2593,'default','n31261586-Small size-blue',0.0000,1),(2594,'default','n31261586-Medium size-white',0.0000,1),(2595,'default','n31261586-Medium size-blue',0.0000,1),(2596,'default','n31125033-black-Extra small size',0.0000,1),(2597,'default','n31125033-black-Large size',0.0000,1),(2598,'default','n31125033-black-Small size',0.0000,1),(2599,'default','n31125033-black-Extra large size',0.0000,1),(2600,'default','n31125033-grey-Extra small size',0.0000,1),(2601,'default','n31125033-grey-Large size',0.0000,1),(2602,'default','n31125033-grey-Small size',0.0000,1),(2603,'default','n31125033-grey-Extra large size',0.0000,1),(2604,'default','n31125039-grey-Extra small size',0.0000,1),(2605,'default','n31125039-grey-Small size',0.0000,1),(2606,'default','n31125039-grey-Medium size',0.0000,1),(2607,'default','n31125039-grey-Large size',0.0000,1),(2608,'default','n31125039-grey-Extra large size',0.0000,1),(2609,'default','n31125039-blue-Extra small size',0.0000,1),(2610,'default','n31125039-blue-Small size',0.0000,1),(2611,'default','n31125039-blue-Medium size',0.0000,1),(2612,'default','n31125039-blue-Large size',0.0000,1),(2613,'default','n31125039-blue-Extra large size',0.0000,1),(2614,'default','n31103364-blue-EU 36',0.0000,1),(2615,'default','n31103364-blue-EU 40',0.0000,1),(2616,'default','n31103364-blue-EU 37',0.0000,1),(2617,'default','n31103364-blue-EU 38',0.0000,1),(2618,'default','n31103364-brown-EU 36',0.0000,1),(2619,'default','n31103364-brown-EU 40',0.0000,1),(2620,'default','n31103364-brown-EU 37',0.0000,1),(2621,'default','n31103364-brown-EU 38',0.0000,1),(2622,'default','n31207365-white-Small size',0.0000,1),(2623,'default','n31207365-white-Extra large size',0.0000,1),(2624,'default','n31207365-white-Large size',0.0000,1),(2625,'default','n31207365-blue-Small size',0.0000,1),(2626,'default','n31207365-blue-Extra large size',0.0000,1),(2627,'default','n31207365-blue-Large size',0.0000,1),(2628,'default','n31166144-red-Small size',0.0000,1),(2629,'default','n31166144-red-Medium size',0.0000,1),(2630,'default','n31166144-red-Large size',0.0000,1),(2631,'default','n31166144-white-Small size',0.0000,1),(2632,'default','n31166144-white-Medium size',0.0000,1),(2633,'default','n31166144-white-Large size',0.0000,1),(2634,'default','n310046545-black-Extra small size',0.0000,1),(2635,'default','n310046545-black-Small size',0.0000,1),(2636,'default','n310046545-black-Extra large size',0.0000,1),(2637,'default','n310046545-red-Extra small size',0.0000,1),(2638,'default','n310046545-red-Small size',0.0000,1),(2639,'default','n310046545-red-Extra large size',0.0000,1),(2640,'default','n31268637-blue-Extra small size',0.0000,1),(2641,'default','n31268637-blue-Small size',0.0000,1),(2642,'default','n31268637-blue-Medium size',0.0000,1),(2643,'default','n31268637-red-Extra small size',0.0000,1),(2644,'default','n31268637-red-Small size',0.0000,1),(2645,'default','n31268637-red-Medium size',0.0000,1),(2646,'default','n31291013-Medium size-white',0.0000,1),(2647,'default','n31291013-Medium size-black',0.0000,1),(2648,'default','n31291013-Small size-white',0.0000,1),(2649,'default','n31291013-Small size-black',0.0000,1),(2650,'default','n31291013-Extra small size-white',0.0000,1),(2651,'default','n31291013-Extra small size-black',0.0000,1),(2652,'default','n31291013-Large size-white',0.0000,1),(2653,'default','n31291013-Large size-black',0.0000,1),(2654,'default','n31262293-brown-Extra small size',0.0000,1),(2655,'default','n31262293-brown-Small size',0.0000,1),(2656,'default','n31262293-brown-Medium size',0.0000,1),(2657,'default','n31262293-grey-Extra small size',0.0000,1),(2658,'default','n31262293-grey-Small size',0.0000,1),(2659,'default','n31262293-grey-Medium size',0.0000,1),(2660,'default','n31189077-black-Large size',0.0000,1),(2661,'default','n31189077-black-Small size',0.0000,1),(2662,'default','n31189077-black-Medium size',0.0000,1),(2663,'default','n31189077-red-Large size',0.0000,1),(2664,'default','n31189077-red-Small size',0.0000,1),(2665,'default','n31189077-red-Medium size',0.0000,1),(2666,'default','n31189077-white-Large size',0.0000,1),(2667,'default','n31189077-white-Small size',0.0000,1),(2668,'default','n31189077-white-Medium size',0.0000,1),(2669,'default','n31189077-blue-Large size',0.0000,1),(2670,'default','n31189077-blue-Small size',0.0000,1),(2671,'default','n31189077-blue-Medium size',0.0000,1),(2672,'default','n31189077-brown-Large size',0.0000,1),(2673,'default','n31189077-brown-Small size',0.0000,1),(2674,'default','n31189077-brown-Medium size',0.0000,1),(2675,'default','n31262295-brown-Extra small size',0.0000,1),(2676,'default','n31262295-brown-Small size',0.0000,1),(2677,'default','n31262295-brown-Medium size',0.0000,1),(2678,'default','n31262295-grey-Extra small size',0.0000,1),(2679,'default','n31262295-grey-Small size',0.0000,1),(2680,'default','n31262295-grey-Medium size',0.0000,1),(2681,'default','n31125036-blue-Extra small size',0.0000,1),(2682,'default','n31125036-blue-Small size',0.0000,1),(2683,'default','n31125036-blue-Medium size',0.0000,1),(2684,'default','n31125036-red-Extra small size',0.0000,1),(2685,'default','n31125036-red-Small size',0.0000,1),(2686,'default','n31125036-red-Medium size',0.0000,1),(2687,'default','n31241601-grey-Extra small size',0.0000,1),(2688,'default','n31241601-grey-Large size',0.0000,1),(2689,'default','n31241601-grey-Small size',0.0000,1),(2690,'default','n31241601-red-Extra small size',0.0000,1),(2691,'default','n31241601-red-Large size',0.0000,1),(2692,'default','n31241601-red-Small size',0.0000,1),(2693,'default','n31043406-brown-Medium size',0.0000,1),(2694,'default','n31043406-brown-Extra small size',0.0000,1),(2695,'default','n31043406-brown-Small size',0.0000,1),(2696,'default','n31043406-black-Medium size',0.0000,1),(2697,'default','n31043406-black-Extra small size',0.0000,1),(2698,'default','n31043406-black-Small size',0.0000,1),(2699,'default','n31292416-brown-Extra small size',0.0000,1),(2700,'default','n31292416-brown-Small size',0.0000,1),(2701,'default','n31292416-brown-Medium size',0.0000,1),(2702,'default','n31292416-grey-Extra small size',0.0000,1),(2703,'default','n31292416-grey-Small size',0.0000,1),(2704,'default','n31292416-grey-Medium size',0.0000,1),(2705,'default','n30811612-white-Extra small size',0.0000,1),(2706,'default','n30811612-white-Small size',0.0000,1),(2707,'default','n30811612-white-Medium size',0.0000,1),(2708,'default','n30811612-blue-Extra small size',0.0000,1),(2709,'default','n30811612-blue-Small size',0.0000,1),(2710,'default','n30811612-blue-Medium size',0.0000,1),(2711,'default','n31125034-grey-Extra large size',0.0000,1),(2712,'default','n31125034-grey-Small size',0.0000,1),(2713,'default','n31125034-grey-Extra small size',0.0000,1),(2714,'default','n31125034-grey-Large size',0.0000,1),(2715,'default','n31125034-blue-Extra large size',0.0000,1),(2716,'default','n31125034-blue-Small size',0.0000,1),(2717,'default','n31125034-blue-Extra small size',0.0000,1),(2718,'default','n31125034-blue-Large size',0.0000,1),(2719,'default','n31093629-grey-EU 39',0.0000,1),(2720,'default','n31093629-grey-EU 40',0.0000,1),(2721,'default','n31093629-grey-EU 37',0.0000,1),(2722,'default','n31093629-grey-EU 38',0.0000,1),(2723,'default','n31093629-grey-EU 41',0.0000,1),(2724,'default','n31093629-white-EU 39',0.0000,1),(2725,'default','n31093629-white-EU 40',0.0000,1),(2726,'default','n31093629-white-EU 37',0.0000,1),(2727,'default','n31093629-white-EU 38',0.0000,1),(2728,'default','n31093629-white-EU 41',0.0000,1),(2729,'default','n31093629-blue-EU 39',0.0000,1),(2730,'default','n31093629-blue-EU 40',0.0000,1),(2731,'default','n31093629-blue-EU 37',0.0000,1),(2732,'default','n31093629-blue-EU 38',0.0000,1),(2733,'default','n31093629-blue-EU 41',0.0000,1),(2814,'default','n31333018-blue-EU 36',0.0000,1),(2815,'default','n31333018-blue-EU 37',0.0000,1),(2816,'default','n31333018-blue-EU 40',0.0000,1),(2817,'default','n31333018-blue-EU 38',0.0000,1),(2818,'default','n31333018-red-EU 36',0.0000,1),(2819,'default','n31333018-red-EU 37',0.0000,1),(2820,'default','n31333018-red-EU 40',0.0000,1),(2821,'default','n31333018-red-EU 38',0.0000,1),(2826,'default','n30945868-grey-EU 36',0.0000,1),(2827,'default','n30945868-grey-EU 39',0.0000,1),(2828,'default','n30945868-grey-EU 40',0.0000,1),(2829,'default','n30945868-grey-EU 43',0.0000,1),(2830,'default','n30945868-grey-EU 38',0.0000,1),(2831,'default','n30945868-grey-EU 41',0.0000,1),(2832,'default','n30945868-black-EU 36',0.0000,1),(2833,'default','n30945868-black-EU 39',0.0000,1),(2834,'default','n30945868-black-EU 40',0.0000,1),(2835,'default','n30945868-black-EU 43',0.0000,1),(2836,'default','n30945868-black-EU 38',0.0000,1),(2837,'default','n30945868-black-EU 41',0.0000,1),(2838,'default','n31125042-grey-Large size',0.0000,1),(2839,'default','n31125042-grey-Extra small size',0.0000,1),(2840,'default','n31125042-grey-Small size',0.0000,1),(2841,'default','n31125042-grey-Medium size',0.0000,1),(2842,'default','n31125042-black-Large size',0.0000,1),(2843,'default','n31125042-black-Extra small size',0.0000,1),(2844,'default','n31125042-black-Small size',0.0000,1),(2845,'default','n31125042-black-Medium size',0.0000,1),(2846,'default','n31074190-grey-EU 36',0.0000,1),(2847,'default','n31074190-grey-EU 39',0.0000,1),(2848,'default','n31074190-grey-EU 37',0.0000,1),(2849,'default','n31074190-grey-EU 40',0.0000,1),(2850,'default','n31074190-grey-EU 38',0.0000,1),(2851,'default','n31074190-grey-EU 41',0.0000,1),(2852,'default','n31074190-red-EU 36',0.0000,1),(2853,'default','n31074190-red-EU 39',0.0000,1),(2854,'default','n31074190-red-EU 37',0.0000,1),(2855,'default','n31074190-red-EU 40',0.0000,1),(2856,'default','n31074190-red-EU 38',0.0000,1),(2857,'default','n31074190-red-EU 41',0.0000,1),(2858,'default','n31253495-grey-Large size',0.0000,1),(2859,'default','n31253495-grey-Small size',0.0000,1),(2860,'default','n31253495-grey-Medium size',0.0000,1),(2861,'default','n31253495-black-Large size',0.0000,1),(2862,'default','n31253495-black-Small size',0.0000,1),(2863,'default','n31253495-black-Medium size',0.0000,1),(2864,'default','n31253494-brown-Large size',0.0000,1),(2865,'default','n31253494-brown-Small size',0.0000,1),(2866,'default','n31253494-brown-Medium size',0.0000,1),(2867,'default','n31253494-blue-Large size',0.0000,1),(2868,'default','n31253494-blue-Small size',0.0000,1),(2869,'default','n31253494-blue-Medium size',0.0000,1),(2870,'default','n31253494-black-Large size',0.0000,1),(2871,'default','n31253494-black-Small size',0.0000,1),(2872,'default','n31253494-black-Medium size',0.0000,1);
/*!40000 ALTER TABLE `inventory_source_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_source_stock_link`
--

DROP TABLE IF EXISTS `inventory_source_stock_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_source_stock_link` (
  `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `stock_id` int(10) unsigned NOT NULL,
  `source_code` varchar(255) NOT NULL,
  `priority` smallint(5) unsigned NOT NULL,
  PRIMARY KEY (`link_id`),
  UNIQUE KEY `INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_SOURCE_CODE` (`stock_id`,`source_code`),
  KEY `INV_SOURCE_STOCK_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` (`source_code`),
  KEY `INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_PRIORITY` (`stock_id`,`priority`),
  CONSTRAINT `INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_INVENTORY_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `inventory_stock` (`stock_id`) ON DELETE CASCADE,
  CONSTRAINT `INV_SOURCE_STOCK_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` FOREIGN KEY (`source_code`) REFERENCES `inventory_source` (`source_code`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_source_stock_link`
--

LOCK TABLES `inventory_source_stock_link` WRITE;
/*!40000 ALTER TABLE `inventory_source_stock_link` DISABLE KEYS */;
INSERT INTO `inventory_source_stock_link` VALUES (1,1,'default',1);
/*!40000 ALTER TABLE `inventory_source_stock_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_stock`
--

DROP TABLE IF EXISTS `inventory_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_stock` (
  `stock_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  PRIMARY KEY (`stock_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_stock`
--

LOCK TABLES `inventory_stock` WRITE;
/*!40000 ALTER TABLE `inventory_stock` DISABLE KEYS */;
INSERT INTO `inventory_stock` VALUES (1,'Default Stock');
/*!40000 ALTER TABLE `inventory_stock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Temporary table structure for view `inventory_stock_1`
--

DROP TABLE IF EXISTS `inventory_stock_1`;
/*!50001 DROP VIEW IF EXISTS `inventory_stock_1`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
/*!50001 CREATE VIEW `inventory_stock_1` AS SELECT 
 1 AS `product_id`,
 1 AS `website_id`,
 1 AS `stock_id`,
 1 AS `quantity`,
 1 AS `is_salable`,
 1 AS `sku`*/;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `inventory_stock_sales_channel`
--

DROP TABLE IF EXISTS `inventory_stock_sales_channel`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_stock_sales_channel` (
  `type` varchar(64) NOT NULL,
  `code` varchar(64) NOT NULL,
  `stock_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`type`,`code`),
  KEY `INVENTORY_STOCK_SALES_CHANNEL_STOCK_ID_INVENTORY_STOCK_STOCK_ID` (`stock_id`),
  CONSTRAINT `INVENTORY_STOCK_SALES_CHANNEL_STOCK_ID_INVENTORY_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `inventory_stock` (`stock_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_stock_sales_channel`
--

LOCK TABLES `inventory_stock_sales_channel` WRITE;
/*!40000 ALTER TABLE `inventory_stock_sales_channel` DISABLE KEYS */;
INSERT INTO `inventory_stock_sales_channel` VALUES ('website','base',1);
/*!40000 ALTER TABLE `inventory_stock_sales_channel` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `klarna_core_order`
--

DROP TABLE IF EXISTS `klarna_core_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `klarna_core_order` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `klarna_order_id` varchar(255) DEFAULT NULL COMMENT 'Klarna Order Id',
  `session_id` varchar(255) DEFAULT NULL COMMENT 'Session Id',
  `reservation_id` varchar(255) DEFAULT NULL COMMENT 'Reservation Id',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id',
  `is_acknowledged` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Is Acknowledged',
  PRIMARY KEY (`id`),
  KEY `KLARNA_CORE_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` (`order_id`),
  KEY `KLARNA_CORE_ORDER_IS_ACKNOWLEDGED` (`is_acknowledged`),
  KEY `KLARNA_CORE_ORDER_ORDER_ID` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Klarna Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `klarna_core_order`
--

LOCK TABLES `klarna_core_order` WRITE;
/*!40000 ALTER TABLE `klarna_core_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `klarna_core_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `klarna_payments_quote`
--

DROP TABLE IF EXISTS `klarna_payments_quote`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `klarna_payments_quote` (
  `payments_quote_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Payments Id',
  `session_id` varchar(255) DEFAULT NULL COMMENT 'Klarna Session Id',
  `client_token` text COMMENT 'Klarna Client Token',
  `authorization_token` varchar(255) DEFAULT NULL COMMENT 'Authorization Token',
  `is_active` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Is Active',
  `quote_id` int(10) unsigned NOT NULL COMMENT 'Quote Id',
  `payment_methods` varchar(255) DEFAULT NULL COMMENT 'Payment Method Categories',
  `payment_method_info` text COMMENT 'Payment Method Category Info',
  PRIMARY KEY (`payments_quote_id`),
  KEY `KLARNA_PAYMENTS_QUOTE_QUOTE_ID_QUOTE_ENTITY_ID` (`quote_id`),
  KEY `KLARNA_PAYMENTS_QUOTE_QUOTE_ID` (`quote_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Klarna Payments Quote';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `klarna_payments_quote`
--

LOCK TABLES `klarna_payments_quote` WRITE;
/*!40000 ALTER TABLE `klarna_payments_quote` DISABLE KEYS */;
/*!40000 ALTER TABLE `klarna_payments_quote` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `layout_link`
--

DROP TABLE IF EXISTS `layout_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `layout_link` (
  `layout_link_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `theme_id` int(10) unsigned NOT NULL COMMENT 'Theme id',
  `layout_update_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Layout Update Id',
  `is_temporary` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Defines whether Layout Update is Temporary',
  PRIMARY KEY (`layout_link_id`),
  KEY `LAYOUT_LINK_THEME_ID_THEME_THEME_ID` (`theme_id`),
  KEY `LAYOUT_LINK_LAYOUT_UPDATE_ID` (`layout_update_id`),
  KEY `LAYOUT_LINK_STORE_ID_THEME_ID_LAYOUT_UPDATE_ID_IS_TEMPORARY` (`store_id`,`theme_id`,`layout_update_id`,`is_temporary`),
  CONSTRAINT `LAYOUT_LINK_LAYOUT_UPDATE_ID_LAYOUT_UPDATE_LAYOUT_UPDATE_ID` FOREIGN KEY (`layout_update_id`) REFERENCES `layout_update` (`layout_update_id`) ON DELETE CASCADE,
  CONSTRAINT `LAYOUT_LINK_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `LAYOUT_LINK_THEME_ID_THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`theme_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout Link';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `layout_link`
--

LOCK TABLES `layout_link` WRITE;
/*!40000 ALTER TABLE `layout_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `layout_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `layout_update`
--

DROP TABLE IF EXISTS `layout_update`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `layout_update` (
  `layout_update_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Layout Update Id',
  `handle` varchar(255) DEFAULT NULL COMMENT 'Handle',
  `xml` text COMMENT 'Xml',
  `sort_order` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `updated_at` timestamp NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP COMMENT 'Last Update Timestamp',
  PRIMARY KEY (`layout_update_id`),
  KEY `LAYOUT_UPDATE_HANDLE` (`handle`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout Updates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `layout_update`
--

LOCK TABLES `layout_update` WRITE;
/*!40000 ALTER TABLE `layout_update` DISABLE KEYS */;
/*!40000 ALTER TABLE `layout_update` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `magento_acknowledged_bulk`
--

DROP TABLE IF EXISTS `magento_acknowledged_bulk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `magento_acknowledged_bulk` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Internal ID',
  `bulk_uuid` varbinary(39) DEFAULT NULL COMMENT 'Related Bulk UUID',
  PRIMARY KEY (`id`),
  UNIQUE KEY `MAGENTO_ACKNOWLEDGED_BULK_BULK_UUID` (`bulk_uuid`),
  CONSTRAINT `MAGENTO_ACKNOWLEDGED_BULK_BULK_UUID_MAGENTO_BULK_UUID` FOREIGN KEY (`bulk_uuid`) REFERENCES `magento_bulk` (`uuid`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Bulk that was viewed by user from notification area';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `magento_acknowledged_bulk`
--

LOCK TABLES `magento_acknowledged_bulk` WRITE;
/*!40000 ALTER TABLE `magento_acknowledged_bulk` DISABLE KEYS */;
/*!40000 ALTER TABLE `magento_acknowledged_bulk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `magento_bulk`
--

DROP TABLE IF EXISTS `magento_bulk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `magento_bulk` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Bulk Internal ID (must not be exposed)',
  `uuid` varbinary(39) DEFAULT NULL COMMENT 'Bulk UUID (can be exposed to reference bulk entity)',
  `user_id` int(10) unsigned DEFAULT NULL COMMENT 'ID of the WebAPI user that performed an action',
  `user_type` int(11) DEFAULT NULL COMMENT 'Which type of user',
  `description` varchar(255) DEFAULT NULL COMMENT 'Bulk Description',
  `operation_count` int(10) unsigned NOT NULL COMMENT 'Total number of operations scheduled within this bulk',
  `start_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Bulk start time',
  PRIMARY KEY (`id`),
  UNIQUE KEY `MAGENTO_BULK_UUID` (`uuid`),
  KEY `MAGENTO_BULK_USER_ID` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Bulk entity that represents set of related asynchronous operations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `magento_bulk`
--

LOCK TABLES `magento_bulk` WRITE;
/*!40000 ALTER TABLE `magento_bulk` DISABLE KEYS */;
/*!40000 ALTER TABLE `magento_bulk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `magento_operation`
--

DROP TABLE IF EXISTS `magento_operation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `magento_operation` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Operation ID',
  `bulk_uuid` varbinary(39) DEFAULT NULL COMMENT 'Related Bulk UUID',
  `topic_name` varchar(255) DEFAULT NULL COMMENT 'Name of the related message queue topic',
  `serialized_data` blob COMMENT 'Data (serialized) required to perform an operation',
  `result_serialized_data` blob COMMENT 'Result data (serialized) after perform an operation',
  `status` smallint(6) DEFAULT '0' COMMENT 'Operation status (OPEN | COMPLETE | RETRIABLY_FAILED | NOT_RETRIABLY_FAILED)',
  `error_code` smallint(6) DEFAULT NULL COMMENT 'Code of the error that appeared during operation execution (used to aggregate related failed operations)',
  `result_message` varchar(255) DEFAULT NULL COMMENT 'Operation result message',
  PRIMARY KEY (`id`),
  KEY `MAGENTO_OPERATION_BULK_UUID_ERROR_CODE` (`bulk_uuid`,`error_code`),
  CONSTRAINT `MAGENTO_OPERATION_BULK_UUID_MAGENTO_BULK_UUID` FOREIGN KEY (`bulk_uuid`) REFERENCES `magento_bulk` (`uuid`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Operation entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `magento_operation`
--

LOCK TABLES `magento_operation` WRITE;
/*!40000 ALTER TABLE `magento_operation` DISABLE KEYS */;
/*!40000 ALTER TABLE `magento_operation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `msp_tfa_country_codes`
--

DROP TABLE IF EXISTS `msp_tfa_country_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `msp_tfa_country_codes` (
  `msp_tfa_country_codes_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'TFA admin user ID',
  `code` text NOT NULL COMMENT 'Country code',
  `name` text NOT NULL COMMENT 'Country name',
  `dial_code` text NOT NULL COMMENT 'Prefix',
  PRIMARY KEY (`msp_tfa_country_codes_id`),
  KEY `MSP_TFA_COUNTRY_CODES_CODE` (`code`(128))
) ENGINE=InnoDB AUTO_INCREMENT=242 DEFAULT CHARSET=utf8 COMMENT='msp_tfa_country_codes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `msp_tfa_country_codes`
--

LOCK TABLES `msp_tfa_country_codes` WRITE;
/*!40000 ALTER TABLE `msp_tfa_country_codes` DISABLE KEYS */;
INSERT INTO `msp_tfa_country_codes` VALUES (1,'IL','Israel','+972'),(2,'AF','Afghanistan','+93'),(3,'AL','Albania','+355'),(4,'DZ','Algeria','+213'),(5,'AS','AmericanSamoa','+1 684'),(6,'AD','Andorra','+376'),(7,'AO','Angola','+244'),(8,'AI','Anguilla','+1 264'),(9,'AG','Antigua and Barbuda','+1268'),(10,'AR','Argentina','+54'),(11,'AM','Armenia','+374'),(12,'AW','Aruba','+297'),(13,'AU','Australia','+61'),(14,'AT','Austria','+43'),(15,'AZ','Azerbaijan','+994'),(16,'BS','Bahamas','+1 242'),(17,'BH','Bahrain','+973'),(18,'BD','Bangladesh','+880'),(19,'BB','Barbados','+1 246'),(20,'BY','Belarus','+375'),(21,'BE','Belgium','+32'),(22,'BZ','Belize','+501'),(23,'BJ','Benin','+229'),(24,'BM','Bermuda','+1 441'),(25,'BT','Bhutan','+975'),(26,'BA','Bosnia and Herzegovina','+387'),(27,'BW','Botswana','+267'),(28,'BR','Brazil','+55'),(29,'IO','British Indian Ocean Territory','+246'),(30,'BG','Bulgaria','+359'),(31,'BF','Burkina Faso','+226'),(32,'BI','Burundi','+257'),(33,'KH','Cambodia','+855'),(34,'CM','Cameroon','+237'),(35,'CA','Canada','+1'),(36,'CV','Cape Verde','+238'),(37,'KY','Cayman Islands','+ 345'),(38,'CF','Central African Republic','+236'),(39,'TD','Chad','+235'),(40,'CL','Chile','+56'),(41,'CN','China','+86'),(42,'CX','Christmas Island','+61'),(43,'CO','Colombia','+57'),(44,'KM','Comoros','+269'),(45,'CG','Congo','+242'),(46,'CK','Cook Islands','+682'),(47,'CR','Costa Rica','+506'),(48,'HR','Croatia','+385'),(49,'CU','Cuba','+53'),(50,'CY','Cyprus','+537'),(51,'CZ','Czech Republic','+420'),(52,'DK','Denmark','+45'),(53,'DJ','Djibouti','+253'),(54,'DM','Dominica','+1 767'),(55,'DO','Dominican Republic','+1 849'),(56,'EC','Ecuador','+593'),(57,'EG','Egypt','+20'),(58,'SV','El Salvador','+503'),(59,'GQ','Equatorial Guinea','+240'),(60,'ER','Eritrea','+291'),(61,'EE','Estonia','+372'),(62,'ET','Ethiopia','+251'),(63,'FO','Faroe Islands','+298'),(64,'FJ','Fiji','+679'),(65,'FI','Finland','+358'),(66,'FR','France','+33'),(67,'GF','French Guiana','+594'),(68,'PF','French Polynesia','+689'),(69,'GA','Gabon','+241'),(70,'GM','Gambia','+220'),(71,'GE','Georgia','+995'),(72,'DE','Germany','+49'),(73,'GH','Ghana','+233'),(74,'GI','Gibraltar','+350'),(75,'GR','Greece','+30'),(76,'GL','Greenland','+299'),(77,'GD','Grenada','+1 473'),(78,'GP','Guadeloupe','+590'),(79,'GU','Guam','+1 671'),(80,'GT','Guatemala','+502'),(81,'GN','Guinea','+224'),(82,'GW','Guinea-Bissau','+245'),(83,'GY','Guyana','+595'),(84,'HT','Haiti','+509'),(85,'HN','Honduras','+504'),(86,'HU','Hungary','+36'),(87,'IS','Iceland','+354'),(88,'IN','India','+91'),(89,'ID','Indonesia','+62'),(90,'IQ','Iraq','+964'),(91,'IE','Ireland','+353'),(92,'IL','Israel','+972'),(93,'IT','Italy','+39'),(94,'JM','Jamaica','+1 876'),(95,'JP','Japan','+81'),(96,'JO','Jordan','+962'),(97,'KZ','Kazakhstan','+7 7'),(98,'KE','Kenya','+254'),(99,'KI','Kiribati','+686'),(100,'KW','Kuwait','+965'),(101,'KG','Kyrgyzstan','+996'),(102,'LV','Latvia','+371'),(103,'LB','Lebanon','+961'),(104,'LS','Lesotho','+266'),(105,'LR','Liberia','+231'),(106,'LI','Liechtenstein','+423'),(107,'LT','Lithuania','+370'),(108,'LU','Luxembourg','+352'),(109,'MG','Madagascar','+261'),(110,'MW','Malawi','+265'),(111,'MY','Malaysia','+60'),(112,'MV','Maldives','+960'),(113,'ML','Mali','+223'),(114,'MT','Malta','+356'),(115,'MH','Marshall Islands','+692'),(116,'MQ','Martinique','+596'),(117,'MR','Mauritania','+222'),(118,'MU','Mauritius','+230'),(119,'YT','Mayotte','+262'),(120,'MX','Mexico','+52'),(121,'MC','Monaco','+377'),(122,'MN','Mongolia','+976'),(123,'ME','Montenegro','+382'),(124,'MS','Montserrat','+1664'),(125,'MA','Morocco','+212'),(126,'MM','Myanmar','+95'),(127,'NA','Namibia','+264'),(128,'NR','Nauru','+674'),(129,'NP','Nepal','+977'),(130,'NL','Netherlands','+31'),(131,'AN','Netherlands Antilles','+599'),(132,'NC','New Caledonia','+687'),(133,'NZ','New Zealand','+64'),(134,'NI','Nicaragua','+505'),(135,'NE','Niger','+227'),(136,'NG','Nigeria','+234'),(137,'NU','Niue','+683'),(138,'NF','Norfolk Island','+672'),(139,'MP','Northern Mariana Islands','+1 670'),(140,'NO','Norway','+47'),(141,'OM','Oman','+968'),(142,'PK','Pakistan','+92'),(143,'PW','Palau','+680'),(144,'PA','Panama','+507'),(145,'PG','Papua New Guinea','+675'),(146,'PY','Paraguay','+595'),(147,'PE','Peru','+51'),(148,'PH','Philippines','+63'),(149,'PL','Poland','+48'),(150,'PT','Portugal','+351'),(151,'PR','Puerto Rico','+1 939'),(152,'QA','Qatar','+974'),(153,'RO','Romania','+40'),(154,'RW','Rwanda','+250'),(155,'WS','Samoa','+685'),(156,'SM','San Marino','+378'),(157,'SA','Saudi Arabia','+966'),(158,'SN','Senegal','+221'),(159,'RS','Serbia','+381'),(160,'SC','Seychelles','+248'),(161,'SL','Sierra Leone','+232'),(162,'SG','Singapore','+65'),(163,'SK','Slovakia','+421'),(164,'SI','Slovenia','+386'),(165,'SB','Solomon Islands','+677'),(166,'ZA','South Africa','+27'),(167,'GS','South Georgia and the South Sandwich Islands','+500'),(168,'ES','Spain','+34'),(169,'LK','Sri Lanka','+94'),(170,'SD','Sudan','+249'),(171,'SR','Suriname','+597'),(172,'SZ','Swaziland','+268'),(173,'SE','Sweden','+46'),(174,'CH','Switzerland','+41'),(175,'TJ','Tajikistan','+992'),(176,'TH','Thailand','+66'),(177,'TG','Togo','+228'),(178,'TK','Tokelau','+690'),(179,'TO','Tonga','+676'),(180,'TT','Trinidad and Tobago','+1 868'),(181,'TN','Tunisia','+216'),(182,'TR','Turkey','+90'),(183,'TM','Turkmenistan','+993'),(184,'TC','Turks and Caicos Islands','+1 649'),(185,'TV','Tuvalu','+688'),(186,'UG','Uganda','+256'),(187,'UA','Ukraine','+380'),(188,'AE','United Arab Emirates','+971'),(189,'GB','United Kingdom','+44'),(190,'US','United States','+1'),(191,'UY','Uruguay','+598'),(192,'UZ','Uzbekistan','+998'),(193,'VU','Vanuatu','+678'),(194,'WF','Wallis and Futuna','+681'),(195,'YE','Yemen','+967'),(196,'ZM','Zambia','+260'),(197,'ZW','Zimbabwe','+263'),(198,'AX','land Islands',''),(199,'BO','Bolivia, Plurinational State of','+591'),(200,'BN','Brunei Darussalam','+673'),(201,'CC','Cocos (Keeling) Islands','+61'),(202,'CD','Congo, The Democratic Republic of the','+243'),(203,'CI','Cote d\'Ivoire','+225'),(204,'FK','Falkland Islands (Malvinas)','+500'),(205,'GG','Guernsey','+44'),(206,'VA','Holy See (Vatican City State)','+379'),(207,'HK','Hong Kong','+852'),(208,'IR','Iran, Islamic Republic of','+98'),(209,'IM','Isle of Man','+44'),(210,'JE','Jersey','+44'),(211,'KP','Korea, Democratic People\'s Republic of','+850'),(212,'KR','Korea, Republic of','+82'),(213,'LA','Lao People\'s Democratic Republic','+856'),(214,'LY','Libyan Arab Jamahiriya','+218'),(215,'MO','Macao','+853'),(216,'MK','Macedonia, The Former Yugoslav Republic of','+389'),(217,'FM','Micronesia, Federated States of','+691'),(218,'MD','Moldova, Republic of','+373'),(219,'MZ','Mozambique','+258'),(220,'PS','Palestinian Territory, Occupied','+970'),(221,'PN','Pitcairn','+872'),(222,'RE','Réunion','+262'),(223,'RU','Russia','+7'),(224,'BL','Saint Barthélemy','+590'),(225,'SH','Saint Helena, Ascension and Tristan Da Cunha','+290'),(226,'KN','Saint Kitts and Nevis','+1 869'),(227,'LC','Saint Lucia','+1 758'),(228,'MF','Saint Martin','+590'),(229,'PM','Saint Pierre and Miquelon','+508'),(230,'VC','Saint Vincent and the Grenadines','+1 784'),(231,'ST','Sao Tome and Principe','+239'),(232,'SO','Somalia','+252'),(233,'SJ','Svalbard and Jan Mayen','+47'),(234,'SY','Syrian Arab Republic','+963'),(235,'TW','Taiwan, Province of China','+886'),(236,'TZ','Tanzania, United Republic of','+255'),(237,'TL','Timor-Leste','+670'),(238,'VE','Venezuela, Bolivarian Republic of','+58'),(239,'VN','Viet Nam','+84'),(240,'VG','Virgin Islands, British','+1 284'),(241,'VI','Virgin Islands, U.S.','+1 340');
/*!40000 ALTER TABLE `msp_tfa_country_codes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `msp_tfa_trusted`
--

DROP TABLE IF EXISTS `msp_tfa_trusted`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `msp_tfa_trusted` (
  `msp_tfa_trusted_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Trusted device ID',
  `date_time` datetime NOT NULL COMMENT 'Date and time',
  `user_id` int(10) unsigned NOT NULL COMMENT 'User ID',
  `device_name` text NOT NULL COMMENT 'Device name',
  `token` text NOT NULL COMMENT 'Token',
  `last_ip` text NOT NULL COMMENT 'Last IP',
  PRIMARY KEY (`msp_tfa_trusted_id`),
  KEY `MSP_TFA_TRUSTED_USER_ID_ADMIN_USER_USER_ID` (`user_id`),
  CONSTRAINT `MSP_TFA_TRUSTED_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='msp_tfa_trusted';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `msp_tfa_trusted`
--

LOCK TABLES `msp_tfa_trusted` WRITE;
/*!40000 ALTER TABLE `msp_tfa_trusted` DISABLE KEYS */;
/*!40000 ALTER TABLE `msp_tfa_trusted` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `msp_tfa_user_config`
--

DROP TABLE IF EXISTS `msp_tfa_user_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `msp_tfa_user_config` (
  `msp_tfa_user_config_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'TFA admin user ID',
  `user_id` int(10) unsigned NOT NULL COMMENT 'User ID',
  `encoded_providers` text COMMENT 'Encoded providers list',
  `encoded_config` text COMMENT 'Encoded providers configuration',
  `default_provider` text COMMENT 'Default provider',
  PRIMARY KEY (`msp_tfa_user_config_id`),
  KEY `MSP_TFA_USER_CONFIG_USER_ID_ADMIN_USER_USER_ID` (`user_id`),
  CONSTRAINT `MSP_TFA_USER_CONFIG_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='msp_tfa_user_config';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `msp_tfa_user_config`
--

LOCK TABLES `msp_tfa_user_config` WRITE;
/*!40000 ALTER TABLE `msp_tfa_user_config` DISABLE KEYS */;
INSERT INTO `msp_tfa_user_config` VALUES (1,1,'[\"\"]','0:3:IDG8xpfq1YxjB4n3eL/jjfXcsjb09Y8CaMgl2KJK',NULL);
/*!40000 ALTER TABLE `msp_tfa_user_config` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mview_state`
--

DROP TABLE IF EXISTS `mview_state`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mview_state` (
  `state_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'View State Id',
  `view_id` varchar(255) DEFAULT NULL COMMENT 'View Id',
  `mode` varchar(16) DEFAULT 'disabled' COMMENT 'View Mode',
  `status` varchar(16) DEFAULT 'idle' COMMENT 'View Status',
  `updated` datetime DEFAULT NULL COMMENT 'View updated time',
  `version_id` int(10) unsigned DEFAULT NULL COMMENT 'View Version Id',
  PRIMARY KEY (`state_id`),
  KEY `MVIEW_STATE_VIEW_ID` (`view_id`),
  KEY `MVIEW_STATE_MODE` (`mode`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='View State';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mview_state`
--

LOCK TABLES `mview_state` WRITE;
/*!40000 ALTER TABLE `mview_state` DISABLE KEYS */;
INSERT INTO `mview_state` VALUES (1,'scconnector_google_remove','enabled','idle','2020-04-07 12:22:23',NULL),(2,'scconnector_google_feed','enabled','idle','2020-04-07 12:22:23',NULL);
/*!40000 ALTER TABLE `mview_state` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newsletter_problem`
--

DROP TABLE IF EXISTS `newsletter_problem`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `newsletter_problem` (
  `problem_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Problem Id',
  `subscriber_id` int(10) unsigned DEFAULT NULL COMMENT 'Subscriber Id',
  `queue_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Queue Id',
  `problem_error_code` int(10) unsigned DEFAULT '0' COMMENT 'Problem Error Code',
  `problem_error_text` varchar(200) DEFAULT NULL COMMENT 'Problem Error Text',
  PRIMARY KEY (`problem_id`),
  KEY `NEWSLETTER_PROBLEM_SUBSCRIBER_ID` (`subscriber_id`),
  KEY `NEWSLETTER_PROBLEM_QUEUE_ID` (`queue_id`),
  CONSTRAINT `NEWSLETTER_PROBLEM_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE,
  CONSTRAINT `NLTTR_PROBLEM_SUBSCRIBER_ID_NLTTR_SUBSCRIBER_SUBSCRIBER_ID` FOREIGN KEY (`subscriber_id`) REFERENCES `newsletter_subscriber` (`subscriber_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Problems';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_problem`
--

LOCK TABLES `newsletter_problem` WRITE;
/*!40000 ALTER TABLE `newsletter_problem` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_problem` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newsletter_queue`
--

DROP TABLE IF EXISTS `newsletter_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `newsletter_queue` (
  `queue_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue Id',
  `template_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Template ID',
  `newsletter_type` int(11) DEFAULT NULL COMMENT 'Newsletter Type',
  `newsletter_text` text COMMENT 'Newsletter Text',
  `newsletter_styles` text COMMENT 'Newsletter Styles',
  `newsletter_subject` varchar(200) DEFAULT NULL COMMENT 'Newsletter Subject',
  `newsletter_sender_name` varchar(200) DEFAULT NULL COMMENT 'Newsletter Sender Name',
  `newsletter_sender_email` varchar(200) DEFAULT NULL COMMENT 'Newsletter Sender Email',
  `queue_status` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Queue Status',
  `queue_start_at` timestamp NULL DEFAULT NULL COMMENT 'Queue Start At',
  `queue_finish_at` timestamp NULL DEFAULT NULL COMMENT 'Queue Finish At',
  PRIMARY KEY (`queue_id`),
  KEY `NEWSLETTER_QUEUE_TEMPLATE_ID` (`template_id`),
  CONSTRAINT `NEWSLETTER_QUEUE_TEMPLATE_ID_NEWSLETTER_TEMPLATE_TEMPLATE_ID` FOREIGN KEY (`template_id`) REFERENCES `newsletter_template` (`template_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_queue`
--

LOCK TABLES `newsletter_queue` WRITE;
/*!40000 ALTER TABLE `newsletter_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_queue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newsletter_queue_link`
--

DROP TABLE IF EXISTS `newsletter_queue_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `newsletter_queue_link` (
  `queue_link_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue Link Id',
  `queue_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Queue Id',
  `subscriber_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Subscriber Id',
  `letter_sent_at` timestamp NULL DEFAULT NULL COMMENT 'Letter Sent At',
  PRIMARY KEY (`queue_link_id`),
  KEY `NEWSLETTER_QUEUE_LINK_SUBSCRIBER_ID` (`subscriber_id`),
  KEY `NEWSLETTER_QUEUE_LINK_QUEUE_ID_LETTER_SENT_AT` (`queue_id`,`letter_sent_at`),
  CONSTRAINT `NEWSLETTER_QUEUE_LINK_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE,
  CONSTRAINT `NLTTR_QUEUE_LNK_SUBSCRIBER_ID_NLTTR_SUBSCRIBER_SUBSCRIBER_ID` FOREIGN KEY (`subscriber_id`) REFERENCES `newsletter_subscriber` (`subscriber_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue Link';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_queue_link`
--

LOCK TABLES `newsletter_queue_link` WRITE;
/*!40000 ALTER TABLE `newsletter_queue_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_queue_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newsletter_queue_store_link`
--

DROP TABLE IF EXISTS `newsletter_queue_store_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `newsletter_queue_store_link` (
  `queue_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Queue Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  PRIMARY KEY (`queue_id`,`store_id`),
  KEY `NEWSLETTER_QUEUE_STORE_LINK_STORE_ID` (`store_id`),
  CONSTRAINT `NEWSLETTER_QUEUE_STORE_LINK_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE,
  CONSTRAINT `NEWSLETTER_QUEUE_STORE_LINK_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue Store Link';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_queue_store_link`
--

LOCK TABLES `newsletter_queue_store_link` WRITE;
/*!40000 ALTER TABLE `newsletter_queue_store_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_queue_store_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newsletter_subscriber`
--

DROP TABLE IF EXISTS `newsletter_subscriber`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `newsletter_subscriber` (
  `subscriber_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Subscriber Id',
  `store_id` smallint(5) unsigned DEFAULT '0' COMMENT 'Store Id',
  `change_status_at` timestamp NULL DEFAULT NULL COMMENT 'Change Status At',
  `customer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Id',
  `subscriber_email` varchar(150) DEFAULT NULL COMMENT 'Subscriber Email',
  `subscriber_status` int(11) NOT NULL DEFAULT '0' COMMENT 'Subscriber Status',
  `subscriber_confirm_code` varchar(32) DEFAULT 'NULL' COMMENT 'Subscriber Confirm Code',
  PRIMARY KEY (`subscriber_id`),
  KEY `NEWSLETTER_SUBSCRIBER_CUSTOMER_ID` (`customer_id`),
  KEY `NEWSLETTER_SUBSCRIBER_STORE_ID` (`store_id`),
  KEY `NEWSLETTER_SUBSCRIBER_SUBSCRIBER_EMAIL` (`subscriber_email`),
  CONSTRAINT `NEWSLETTER_SUBSCRIBER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Subscriber';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_subscriber`
--

LOCK TABLES `newsletter_subscriber` WRITE;
/*!40000 ALTER TABLE `newsletter_subscriber` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_subscriber` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newsletter_template`
--

DROP TABLE IF EXISTS `newsletter_template`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `newsletter_template` (
  `template_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Template ID',
  `template_code` varchar(150) DEFAULT NULL COMMENT 'Template Code',
  `template_text` text COMMENT 'Template Text',
  `template_styles` text COMMENT 'Template Styles',
  `template_type` int(10) unsigned DEFAULT NULL COMMENT 'Template Type',
  `template_subject` varchar(200) DEFAULT NULL COMMENT 'Template Subject',
  `template_sender_name` varchar(200) DEFAULT NULL COMMENT 'Template Sender Name',
  `template_sender_email` varchar(200) DEFAULT NULL COMMENT 'Template Sender Email',
  `template_actual` smallint(5) unsigned DEFAULT '1' COMMENT 'Template Actual',
  `added_at` timestamp NULL DEFAULT NULL COMMENT 'Added At',
  `modified_at` timestamp NULL DEFAULT NULL COMMENT 'Modified At',
  PRIMARY KEY (`template_id`),
  KEY `NEWSLETTER_TEMPLATE_TEMPLATE_ACTUAL` (`template_actual`),
  KEY `NEWSLETTER_TEMPLATE_ADDED_AT` (`added_at`),
  KEY `NEWSLETTER_TEMPLATE_MODIFIED_AT` (`modified_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Template';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_template`
--

LOCK TABLES `newsletter_template` WRITE;
/*!40000 ALTER TABLE `newsletter_template` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_template` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_consumer`
--

DROP TABLE IF EXISTS `oauth_consumer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_consumer` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `name` varchar(255) NOT NULL COMMENT 'Name of consumer',
  `key` varchar(32) NOT NULL COMMENT 'Key code',
  `secret` varchar(32) NOT NULL COMMENT 'Secret code',
  `callback_url` text COMMENT 'Callback URL',
  `rejected_callback_url` text NOT NULL COMMENT 'Rejected callback URL',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `OAUTH_CONSUMER_KEY` (`key`),
  UNIQUE KEY `OAUTH_CONSUMER_SECRET` (`secret`),
  KEY `OAUTH_CONSUMER_CREATED_AT` (`created_at`),
  KEY `OAUTH_CONSUMER_UPDATED_AT` (`updated_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='OAuth Consumers';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_consumer`
--

LOCK TABLES `oauth_consumer` WRITE;
/*!40000 ALTER TABLE `oauth_consumer` DISABLE KEYS */;
/*!40000 ALTER TABLE `oauth_consumer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_nonce`
--

DROP TABLE IF EXISTS `oauth_nonce`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_nonce` (
  `nonce` varchar(32) NOT NULL COMMENT 'Nonce String',
  `timestamp` int(10) unsigned NOT NULL COMMENT 'Nonce Timestamp',
  `consumer_id` int(10) unsigned NOT NULL COMMENT 'Consumer ID',
  UNIQUE KEY `OAUTH_NONCE_NONCE_CONSUMER_ID` (`nonce`,`consumer_id`),
  KEY `OAUTH_NONCE_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` (`consumer_id`),
  KEY `OAUTH_NONCE_TIMESTAMP` (`timestamp`),
  CONSTRAINT `OAUTH_NONCE_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='OAuth Nonce';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_nonce`
--

LOCK TABLES `oauth_nonce` WRITE;
/*!40000 ALTER TABLE `oauth_nonce` DISABLE KEYS */;
/*!40000 ALTER TABLE `oauth_nonce` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_token`
--

DROP TABLE IF EXISTS `oauth_token`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_token` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `consumer_id` int(10) unsigned DEFAULT NULL COMMENT 'Oauth Consumer ID',
  `admin_id` int(10) unsigned DEFAULT NULL COMMENT 'Admin user ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer user ID',
  `type` varchar(16) NOT NULL COMMENT 'Token Type',
  `token` varchar(32) NOT NULL COMMENT 'Token',
  `secret` varchar(32) NOT NULL COMMENT 'Token Secret',
  `verifier` varchar(32) DEFAULT NULL COMMENT 'Token Verifier',
  `callback_url` text NOT NULL COMMENT 'Token Callback URL',
  `revoked` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Token revoked',
  `authorized` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Token authorized',
  `user_type` int(11) DEFAULT NULL COMMENT 'User type',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Token creation timestamp',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `OAUTH_TOKEN_TOKEN` (`token`),
  KEY `OAUTH_TOKEN_ADMIN_ID_ADMIN_USER_USER_ID` (`admin_id`),
  KEY `OAUTH_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` (`customer_id`),
  KEY `OAUTH_TOKEN_CONSUMER_ID` (`consumer_id`),
  CONSTRAINT `OAUTH_TOKEN_ADMIN_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`admin_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE,
  CONSTRAINT `OAUTH_TOKEN_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `OAUTH_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='OAuth Tokens';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_token`
--

LOCK TABLES `oauth_token` WRITE;
/*!40000 ALTER TABLE `oauth_token` DISABLE KEYS */;
/*!40000 ALTER TABLE `oauth_token` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_token_request_log`
--

DROP TABLE IF EXISTS `oauth_token_request_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_token_request_log` (
  `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log Id',
  `user_name` varchar(255) NOT NULL COMMENT 'Customer email or admin login',
  `user_type` smallint(5) unsigned NOT NULL COMMENT 'User type (admin or customer)',
  `failures_count` smallint(5) unsigned DEFAULT '0' COMMENT 'Number of failed authentication attempts in a row',
  `lock_expires_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Lock expiration time',
  PRIMARY KEY (`log_id`),
  UNIQUE KEY `OAUTH_TOKEN_REQUEST_LOG_USER_NAME_USER_TYPE` (`user_name`,`user_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Log of token request authentication failures.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_token_request_log`
--

LOCK TABLES `oauth_token_request_log` WRITE;
/*!40000 ALTER TABLE `oauth_token_request_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `oauth_token_request_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `password_reset_request_event`
--

DROP TABLE IF EXISTS `password_reset_request_event`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `password_reset_request_event` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `request_type` smallint(5) unsigned NOT NULL COMMENT 'Type of the event under a security control',
  `account_reference` varchar(255) DEFAULT NULL COMMENT 'An identifier for existing account or another target',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Timestamp when the event occurs',
  `ip` varchar(15) NOT NULL COMMENT 'Remote user IP',
  PRIMARY KEY (`id`),
  KEY `PASSWORD_RESET_REQUEST_EVENT_ACCOUNT_REFERENCE` (`account_reference`),
  KEY `PASSWORD_RESET_REQUEST_EVENT_CREATED_AT` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Password Reset Request Event under a security control';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `password_reset_request_event`
--

LOCK TABLES `password_reset_request_event` WRITE;
/*!40000 ALTER TABLE `password_reset_request_event` DISABLE KEYS */;
/*!40000 ALTER TABLE `password_reset_request_event` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `patch_list`
--

DROP TABLE IF EXISTS `patch_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `patch_list` (
  `patch_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Patch Auto Increment',
  `patch_name` varchar(1024) NOT NULL COMMENT 'Patch Class Name',
  PRIMARY KEY (`patch_id`)
) ENGINE=InnoDB AUTO_INCREMENT=122 DEFAULT CHARSET=utf8 COMMENT='List of data/schema patches';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `patch_list`
--

LOCK TABLES `patch_list` WRITE;
/*!40000 ALTER TABLE `patch_list` DISABLE KEYS */;
INSERT INTO `patch_list` VALUES (1,'Magento\\Store\\Setup\\Patch\\Schema\\InitializeStoresAndWebsites'),(2,'Magento\\Catalog\\Setup\\Patch\\Schema\\EnableSegmentation'),(3,'Magento\\Bundle\\Setup\\Patch\\Schema\\UpdateBundleRelatedSchema'),(4,'Magento\\Wishlist\\Setup\\Patch\\Schema\\AddProductIdConstraint'),(5,'Magento\\Store\\Setup\\Patch\\Data\\UpdateStoreGroupCodes'),(6,'Magento\\Directory\\Setup\\Patch\\Data\\InitializeDirectoryData'),(7,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForCroatia'),(8,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForIndia'),(9,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForAustralia'),(10,'Magento\\Config\\Setup\\Patch\\Data\\UpdateClassAliases'),(11,'Magento\\Authorization\\Setup\\Patch\\Data\\InitializeAuthRoles'),(12,'Magento\\Theme\\Setup\\Patch\\Data\\RegisterThemes'),(13,'Magento\\Theme\\Setup\\Patch\\Data\\ConvertSerializedData'),(14,'Magento\\Eav\\Setup\\Patch\\Data\\InitializeAttributeModels'),(15,'Magento\\Customer\\Setup\\Patch\\Data\\DefaultCustomerGroupsAndAttributes'),(16,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAttributesMetadata'),(17,'Magento\\Customer\\Setup\\Patch\\Data\\AddNonSpecifiedGenderAttributeOption'),(18,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateIdentifierCustomerAttributesVisibility'),(19,'Magento\\Customer\\Setup\\Patch\\Data\\AddCustomerUpdatedAtAttribute'),(20,'Magento\\Customer\\Setup\\Patch\\Data\\UpgradePasswordHashAndAddress'),(21,'Magento\\Customer\\Setup\\Patch\\Data\\RemoveCheckoutRegisterAndUpdateAttributes'),(22,'Magento\\Customer\\Setup\\Patch\\Data\\AddSecurityTrackingAttributes'),(23,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateAutocompleteOnStorefrontConfigPath'),(24,'Magento\\Customer\\Setup\\Patch\\Data\\MigrateStoresAllowedCountriesToWebsite'),(25,'Magento\\Customer\\Setup\\Patch\\Data\\ConvertValidationRulesFromSerializedToJson'),(26,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateVATNumber'),(27,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAttributeInputFilters'),(28,'Magento\\Indexer\\Setup\\Patch\\Data\\InitializeIndexerState'),(29,'Magento\\Cms\\Setup\\Patch\\Data\\CreateDefaultPages'),(30,'Magento\\Cms\\Setup\\Patch\\Data\\UpdatePrivacyPolicyPage'),(31,'Magento\\Cms\\Setup\\Patch\\Data\\ConvertWidgetConditionsToJson'),(32,'Magento\\Catalog\\Setup\\Patch\\Data\\InstallDefaultCategories'),(33,'Magento\\Catalog\\Setup\\Patch\\Data\\SetNewResourceModelsPaths'),(34,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateDefaultAttributeValue'),(35,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateMediaAttributesBackendTypes'),(36,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductAttributes'),(37,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductMetaDescription'),(38,'Magento\\Catalog\\Setup\\Patch\\Data\\ChangePriceAttributeDefaultScope'),(39,'Magento\\Catalog\\Setup\\Patch\\Data\\DisallowUsingHtmlForProductName'),(40,'Magento\\Catalog\\Setup\\Patch\\Data\\EnableDirectiveParsing'),(41,'Magento\\Catalog\\Setup\\Patch\\Data\\EnableSegmentation'),(42,'Magento\\Catalog\\Setup\\Patch\\Data\\UpgradeWidgetData'),(43,'Magento\\Catalog\\Setup\\Patch\\Data\\UpgradeWebsiteAttributes'),(44,'Magento\\Msrp\\Setup\\Patch\\Data\\InitializeMsrpAttributes'),(45,'Magento\\Msrp\\Setup\\Patch\\Data\\ChangePriceAttributeDefaultScope'),(46,'Magento\\CatalogRule\\Setup\\Patch\\Data\\UpdateClassAliasesForCatalogRules'),(47,'Magento\\CatalogRule\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(48,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\CreateUrlAttributes'),(49,'Magento\\Widget\\Setup\\Patch\\Data\\UpgradeModelInstanceClassAliases'),(50,'Magento\\Widget\\Setup\\Patch\\Data\\ConvertSerializedData'),(51,'Magento\\Quote\\Setup\\Patch\\Data\\InstallEntityTypes'),(52,'Magento\\Quote\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(53,'Magento\\User\\Setup\\Patch\\Data\\UpgradePasswordHashes'),(54,'Magento\\User\\Setup\\Patch\\Data\\UpgradeSerializedFields'),(55,'Magento\\Sales\\Setup\\Patch\\Data\\InstallOrderStatusesAndInitialSalesConfig'),(56,'Magento\\Sales\\Setup\\Patch\\Data\\UpdateEntityTypes'),(57,'Magento\\Sales\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(58,'Magento\\Sales\\Setup\\Patch\\Data\\FillQuoteAddressIdInSalesOrderAddress'),(59,'Magento\\Sales\\Setup\\Patch\\Data\\UpdateEntityTypeModelForInvoice'),(60,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\CreateDefaultStock'),(61,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\UpdateStockItemsWebsite'),(62,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(63,'Magento\\CurrencySymbol\\Setup\\Patch\\Data\\ConvertSerializedCustomCurrencySymbolToJson'),(64,'Magento\\Bundle\\Setup\\Patch\\Data\\ApplyAttributesUpdate'),(65,'Magento\\Bundle\\Setup\\Patch\\Data\\UpdateBundleRelatedEntityTytpes'),(66,'Magento\\Integration\\Setup\\Patch\\Data\\RemoveInactiveTokens'),(67,'Magento\\Dhl\\Setup\\Patch\\Data\\PrepareShipmentDays'),(68,'Magento\\Downloadable\\Setup\\Patch\\Data\\InstallDownloadableAttributes'),(69,'Magento\\CatalogSearch\\Setup\\Patch\\Data\\MySQLSearchDeprecationNotification'),(70,'Magento\\CatalogSearch\\Setup\\Patch\\Data\\SetInitialSearchWeightForAttributes'),(71,'Magento\\EncryptionKey\\Setup\\Patch\\Data\\SodiumChachaPatch'),(72,'Magento\\Fedex\\Setup\\Patch\\Data\\ConfigureFedexDefaults'),(73,'Magento\\GiftMessage\\Setup\\Patch\\Data\\AddGiftMessageAttributes'),(74,'Magento\\GiftMessage\\Setup\\Patch\\Data\\MoveGiftMessageToGiftOptionsGroup'),(75,'Magento\\GiftMessage\\Setup\\Patch\\Data\\UpdateGiftMessageAttribute'),(76,'Magento\\Checkout\\Setup\\Patch\\Data\\PrepareInitialCheckoutConfiguration'),(77,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\InstallInitialConfigurableAttributes'),(78,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\UpdateManufacturerAttribute'),(79,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\UpdateTierPriceAttribute'),(80,'Magento\\GroupedProduct\\Setup\\Patch\\Data\\InitializeGroupedProductLinks'),(81,'Magento\\GroupedProduct\\Setup\\Patch\\Data\\UpdateProductRelations'),(82,'Magento\\Vault\\Setup\\Patch\\Data\\SetCreditCardAsDefaultTokenType'),(83,'Magento\\Analytics\\Setup\\Patch\\Data\\PrepareInitialConfig'),(84,'Magento\\SalesRule\\Setup\\Patch\\Data\\PrepareRuleModelSerializedData'),(85,'Magento\\SalesRule\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(86,'Magento\\SalesRule\\Setup\\Patch\\Data\\FillSalesRuleProductAttributeTable'),(87,'Magento\\Paypal\\Setup\\Patch\\Data\\AddPaypalOrderStatuses'),(88,'Magento\\Reports\\Setup\\Patch\\Data\\InitializeReportEntityTypesAndPages'),(89,'Magento\\Review\\Setup\\Patch\\Data\\InitReviewStatusesAndData'),(90,'Magento\\OfflineShipping\\Setup\\Patch\\Data\\UpdateQuoteShippingAddresses'),(91,'Magento\\UrlRewrite\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(92,'Magento\\Swatches\\Setup\\Patch\\Data\\AddSwatchImageAttribute'),(93,'Magento\\Swatches\\Setup\\Patch\\Data\\AddSwatchImageToDefaultAttribtueSet'),(94,'Magento\\Swatches\\Setup\\Patch\\Data\\UpdateAdminTextSwatchValues'),(95,'Magento\\Swatches\\Setup\\Patch\\Data\\ConvertAdditionalDataToJson'),(96,'Magento\\Tax\\Setup\\Patch\\Data\\AddTaxAttributeAndTaxClasses'),(97,'Magento\\Tax\\Setup\\Patch\\Data\\UpdateTaxClassAttributeVisibility'),(98,'Magento\\Tax\\Setup\\Patch\\Data\\UpdateTaxRegionId'),(99,'Magento\\SampleData\\Setup\\Patch\\Data\\ClearSampleDataState'),(100,'Magento\\Usps\\Setup\\Patch\\Data\\UpdateAllowedMethods'),(101,'Magento\\Braintree\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(102,'Magento\\Weee\\Setup\\Patch\\Data\\InitQuoteAndOrderAttributes'),(103,'Magento\\Wishlist\\Setup\\Patch\\Data\\ConvertSerializedData'),(104,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\CreateLegacyStockStatusView'),(105,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\InitializeDefaultStock'),(106,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\UpdateInventorySourceItem'),(107,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\ReindexDefaultSource'),(108,'Magento\\InventorySales\\Setup\\Patch\\Schema\\InitializeWebsiteDefaultSock'),(109,'Magento\\InventoryLowQuantityNotification\\Setup\\Patch\\Data\\MigrateCatalogInventoryNotifyStockQuantityData'),(110,'Magento\\Store\\Setup\\Patch\\Data\\DisableSid'),(111,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForMexico'),(112,'Magento\\Downloadable\\Setup\\Patch\\Data\\AddDownloadableHostsConfig'),(113,'Magento\\Downloadable\\Setup\\Patch\\Data\\UpdateLinksExistDefaultAttributeValue'),(114,'Magento\\Bundle\\Setup\\Patch\\Data\\UpdateBundleRelatedEntityTypes'),(115,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdatePaypalCreditOption'),(116,'Magento\\AuthorizenetAcceptjs\\Setup\\Patch\\Data\\CopyCurrentConfig'),(117,'Magento\\OfflineShipping\\Setup\\Patch\\Data\\UpdateShippingTablerate'),(118,'Klarna\\Core\\Setup\\Patch\\Data\\UpdateKcoApiPathsInCoreConfig'),(119,'Klarna\\Core\\Setup\\Patch\\Data\\UpdateKlarnaApiVersionInCoreConfig'),(120,'Klarna\\Kp\\Setup\\Patch\\Data\\RemoveHtmlTag'),(121,'Klarna\\Kp\\Setup\\Patch\\Data\\ResetIsActive');
/*!40000 ALTER TABLE `patch_list` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `paypal_billing_agreement`
--

DROP TABLE IF EXISTS `paypal_billing_agreement`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_billing_agreement` (
  `agreement_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Agreement Id',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer Id',
  `method_code` varchar(32) NOT NULL COMMENT 'Method Code',
  `reference_id` varchar(32) NOT NULL COMMENT 'Reference Id',
  `status` varchar(20) NOT NULL COMMENT 'Status',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `agreement_label` varchar(255) DEFAULT NULL COMMENT 'Agreement Label',
  PRIMARY KEY (`agreement_id`),
  KEY `PAYPAL_BILLING_AGREEMENT_CUSTOMER_ID` (`customer_id`),
  KEY `PAYPAL_BILLING_AGREEMENT_STORE_ID` (`store_id`),
  CONSTRAINT `PAYPAL_BILLING_AGREEMENT_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PAYPAL_BILLING_AGREEMENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Billing Agreement';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_billing_agreement`
--

LOCK TABLES `paypal_billing_agreement` WRITE;
/*!40000 ALTER TABLE `paypal_billing_agreement` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_billing_agreement` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `paypal_billing_agreement_order`
--

DROP TABLE IF EXISTS `paypal_billing_agreement_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_billing_agreement_order` (
  `agreement_id` int(10) unsigned NOT NULL COMMENT 'Agreement Id',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id',
  PRIMARY KEY (`agreement_id`,`order_id`),
  KEY `PAYPAL_BILLING_AGREEMENT_ORDER_ORDER_ID` (`order_id`),
  CONSTRAINT `PAYPAL_BILLING_AGREEMENT_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PAYPAL_BILLING_AGRT_ORDER_AGRT_ID_PAYPAL_BILLING_AGRT_AGRT_ID` FOREIGN KEY (`agreement_id`) REFERENCES `paypal_billing_agreement` (`agreement_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Billing Agreement Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_billing_agreement_order`
--

LOCK TABLES `paypal_billing_agreement_order` WRITE;
/*!40000 ALTER TABLE `paypal_billing_agreement_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_billing_agreement_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `paypal_cert`
--

DROP TABLE IF EXISTS `paypal_cert`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_cert` (
  `cert_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Cert Id',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website Id',
  `content` text COMMENT 'Content',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  PRIMARY KEY (`cert_id`),
  KEY `PAYPAL_CERT_WEBSITE_ID` (`website_id`),
  CONSTRAINT `PAYPAL_CERT_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Certificate Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_cert`
--

LOCK TABLES `paypal_cert` WRITE;
/*!40000 ALTER TABLE `paypal_cert` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_cert` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `paypal_payment_transaction`
--

DROP TABLE IF EXISTS `paypal_payment_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_payment_transaction` (
  `transaction_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `txn_id` varchar(100) DEFAULT NULL COMMENT 'Txn Id',
  `additional_information` blob COMMENT 'Additional Information',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  PRIMARY KEY (`transaction_id`),
  UNIQUE KEY `PAYPAL_PAYMENT_TRANSACTION_TXN_ID` (`txn_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='PayPal Payflow Link Payment Transaction';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_payment_transaction`
--

LOCK TABLES `paypal_payment_transaction` WRITE;
/*!40000 ALTER TABLE `paypal_payment_transaction` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_payment_transaction` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `paypal_settlement_report`
--

DROP TABLE IF EXISTS `paypal_settlement_report`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_settlement_report` (
  `report_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Report Id',
  `report_date` date DEFAULT NULL COMMENT 'Report Date',
  `account_id` varchar(64) DEFAULT NULL COMMENT 'Account Id',
  `filename` varchar(24) DEFAULT NULL COMMENT 'Filename',
  `last_modified` timestamp NULL DEFAULT NULL COMMENT 'Last Modified',
  PRIMARY KEY (`report_id`),
  UNIQUE KEY `PAYPAL_SETTLEMENT_REPORT_REPORT_DATE_ACCOUNT_ID` (`report_date`,`account_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Settlement Report Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_settlement_report`
--

LOCK TABLES `paypal_settlement_report` WRITE;
/*!40000 ALTER TABLE `paypal_settlement_report` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_settlement_report` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `paypal_settlement_report_row`
--

DROP TABLE IF EXISTS `paypal_settlement_report_row`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_settlement_report_row` (
  `row_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Row Id',
  `report_id` int(10) unsigned NOT NULL COMMENT 'Report Id',
  `transaction_id` varchar(19) DEFAULT NULL COMMENT 'Transaction Id',
  `invoice_id` varchar(127) DEFAULT NULL COMMENT 'Invoice Id',
  `paypal_reference_id` varchar(19) DEFAULT NULL COMMENT 'Paypal Reference Id',
  `paypal_reference_id_type` varchar(3) DEFAULT NULL COMMENT 'Paypal Reference Id Type',
  `transaction_event_code` varchar(5) DEFAULT NULL COMMENT 'Transaction Event Code',
  `transaction_initiation_date` timestamp NULL DEFAULT NULL COMMENT 'Transaction Initiation Date',
  `transaction_completion_date` timestamp NULL DEFAULT NULL COMMENT 'Transaction Completion Date',
  `transaction_debit_or_credit` varchar(2) NOT NULL DEFAULT 'CR' COMMENT 'Transaction Debit Or Credit',
  `gross_transaction_amount` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Gross Transaction Amount',
  `gross_transaction_currency` varchar(3) DEFAULT NULL COMMENT 'Gross Transaction Currency',
  `fee_debit_or_credit` varchar(2) DEFAULT NULL COMMENT 'Fee Debit Or Credit',
  `fee_amount` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Fee Amount',
  `fee_currency` varchar(3) DEFAULT NULL COMMENT 'Fee Currency',
  `custom_field` varchar(255) DEFAULT NULL COMMENT 'Custom Field',
  `consumer_id` varchar(127) DEFAULT NULL COMMENT 'Consumer Id',
  `payment_tracking_id` varchar(255) DEFAULT NULL COMMENT 'Payment Tracking ID',
  `store_id` varchar(50) DEFAULT NULL COMMENT 'Store ID',
  PRIMARY KEY (`row_id`),
  KEY `PAYPAL_SETTLEMENT_REPORT_ROW_REPORT_ID` (`report_id`),
  CONSTRAINT `FK_E183E488F593E0DE10C6EBFFEBAC9B55` FOREIGN KEY (`report_id`) REFERENCES `paypal_settlement_report` (`report_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Settlement Report Row Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_settlement_report_row`
--

LOCK TABLES `paypal_settlement_report_row` WRITE;
/*!40000 ALTER TABLE `paypal_settlement_report_row` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_settlement_report_row` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `persistent_session`
--

DROP TABLE IF EXISTS `persistent_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `persistent_session` (
  `persistent_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Session id',
  `key` varchar(50) NOT NULL COMMENT 'Unique cookie key',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer id',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  `info` text COMMENT 'Session Data',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`persistent_id`),
  UNIQUE KEY `PERSISTENT_SESSION_KEY` (`key`),
  UNIQUE KEY `PERSISTENT_SESSION_CUSTOMER_ID` (`customer_id`),
  KEY `PERSISTENT_SESSION_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` (`website_id`),
  KEY `PERSISTENT_SESSION_UPDATED_AT` (`updated_at`),
  CONSTRAINT `PERSISTENT_SESSION_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PERSISTENT_SESSION_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Persistent Session';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `persistent_session`
--

LOCK TABLES `persistent_session` WRITE;
/*!40000 ALTER TABLE `persistent_session` DISABLE KEYS */;
/*!40000 ALTER TABLE `persistent_session` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product_alert_price`
--

DROP TABLE IF EXISTS `product_alert_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_alert_price` (
  `alert_price_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product alert price id',
  `customer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer id',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product id',
  `price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Price amount',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website id',
  `add_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Product alert add date',
  `last_send_date` timestamp NULL DEFAULT NULL COMMENT 'Product alert last send date',
  `send_count` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Product alert send count',
  `status` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Product alert status',
  `store_id` smallint(5) unsigned DEFAULT '0' COMMENT 'Store id',
  PRIMARY KEY (`alert_price_id`),
  KEY `PRODUCT_ALERT_PRICE_CUSTOMER_ID` (`customer_id`),
  KEY `PRODUCT_ALERT_PRICE_PRODUCT_ID` (`product_id`),
  KEY `PRODUCT_ALERT_PRICE_WEBSITE_ID` (`website_id`),
  KEY `PRODUCT_ALERT_PRICE_STORE_ID` (`store_id`),
  CONSTRAINT `PRODUCT_ALERT_PRICE_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_PRICE_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_PRICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_PRICE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Product Alert Price';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_alert_price`
--

LOCK TABLES `product_alert_price` WRITE;
/*!40000 ALTER TABLE `product_alert_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `product_alert_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product_alert_stock`
--

DROP TABLE IF EXISTS `product_alert_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_alert_stock` (
  `alert_stock_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product alert stock id',
  `customer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer id',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product id',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website id',
  `add_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Product alert add date',
  `send_date` timestamp NULL DEFAULT NULL COMMENT 'Product alert send date',
  `send_count` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Send Count',
  `status` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Product alert status',
  `store_id` smallint(5) unsigned DEFAULT '0' COMMENT 'Store id',
  PRIMARY KEY (`alert_stock_id`),
  KEY `PRODUCT_ALERT_STOCK_CUSTOMER_ID` (`customer_id`),
  KEY `PRODUCT_ALERT_STOCK_PRODUCT_ID` (`product_id`),
  KEY `PRODUCT_ALERT_STOCK_WEBSITE_ID` (`website_id`),
  KEY `PRODUCT_ALERT_STOCK_STORE_ID` (`store_id`),
  CONSTRAINT `PRODUCT_ALERT_STOCK_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_STOCK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_STOCK_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_STOCK_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Product Alert Stock';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_alert_stock`
--

LOCK TABLES `product_alert_stock` WRITE;
/*!40000 ALTER TABLE `product_alert_stock` DISABLE KEYS */;
/*!40000 ALTER TABLE `product_alert_stock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `queue`
--

DROP TABLE IF EXISTS `queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `queue` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Queue name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `QUEUE_NAME` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Table storing unique queues';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue`
--

LOCK TABLES `queue` WRITE;
/*!40000 ALTER TABLE `queue` DISABLE KEYS */;
INSERT INTO `queue` VALUES (4,'codegenerator'),(3,'export'),(1,'product_action_attribute.update'),(2,'product_action_attribute.website.update');
/*!40000 ALTER TABLE `queue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `queue_lock`
--

DROP TABLE IF EXISTS `queue_lock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `queue_lock` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Message ID',
  `message_code` varchar(255) NOT NULL DEFAULT '' COMMENT 'Message Code',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Created At',
  PRIMARY KEY (`id`),
  UNIQUE KEY `QUEUE_LOCK_MESSAGE_CODE` (`message_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Messages that were processed are inserted here to be locked.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue_lock`
--

LOCK TABLES `queue_lock` WRITE;
/*!40000 ALTER TABLE `queue_lock` DISABLE KEYS */;
/*!40000 ALTER TABLE `queue_lock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `queue_message`
--

DROP TABLE IF EXISTS `queue_message`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `queue_message` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Message ID',
  `topic_name` varchar(255) DEFAULT NULL COMMENT 'Message topic',
  `body` longtext COMMENT 'Message body',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Queue messages';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue_message`
--

LOCK TABLES `queue_message` WRITE;
/*!40000 ALTER TABLE `queue_message` DISABLE KEYS */;
/*!40000 ALTER TABLE `queue_message` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `queue_message_status`
--

DROP TABLE IF EXISTS `queue_message_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `queue_message_status` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Relation ID',
  `queue_id` int(10) unsigned NOT NULL COMMENT 'Queue ID',
  `message_id` bigint(20) unsigned NOT NULL COMMENT 'Message ID',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `status` smallint(5) unsigned NOT NULL COMMENT 'Message status in particular queue',
  `number_of_trials` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Number of trials to processed failed message processing',
  PRIMARY KEY (`id`),
  UNIQUE KEY `QUEUE_MESSAGE_STATUS_QUEUE_ID_MESSAGE_ID` (`queue_id`,`message_id`),
  KEY `QUEUE_MESSAGE_STATUS_MESSAGE_ID_QUEUE_MESSAGE_ID` (`message_id`),
  KEY `QUEUE_MESSAGE_STATUS_STATUS_UPDATED_AT` (`status`,`updated_at`),
  CONSTRAINT `QUEUE_MESSAGE_STATUS_MESSAGE_ID_QUEUE_MESSAGE_ID` FOREIGN KEY (`message_id`) REFERENCES `queue_message` (`id`) ON DELETE CASCADE,
  CONSTRAINT `QUEUE_MESSAGE_STATUS_QUEUE_ID_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `queue` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Relation table to keep associations between queues and messages';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue_message_status`
--

LOCK TABLES `queue_message_status` WRITE;
/*!40000 ALTER TABLE `queue_message_status` DISABLE KEYS */;
/*!40000 ALTER TABLE `queue_message_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `queue_poison_pill`
--

DROP TABLE IF EXISTS `queue_poison_pill`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `queue_poison_pill` (
  `version` varchar(255) NOT NULL COMMENT 'Poison Pill version.'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sequence table for poison pill versions';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue_poison_pill`
--

LOCK TABLES `queue_poison_pill` WRITE;
/*!40000 ALTER TABLE `queue_poison_pill` DISABLE KEYS */;
INSERT INTO `queue_poison_pill` VALUES ('version-5e8c7eb8aa234');
/*!40000 ALTER TABLE `queue_poison_pill` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `quote`
--

DROP TABLE IF EXISTS `quote`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `converted_at` timestamp NULL DEFAULT NULL COMMENT 'Converted At',
  `is_active` smallint(5) unsigned DEFAULT '1' COMMENT 'Is Active',
  `is_virtual` smallint(5) unsigned DEFAULT '0' COMMENT 'Is Virtual',
  `is_multi_shipping` smallint(5) unsigned DEFAULT '0' COMMENT 'Is Multi Shipping',
  `items_count` int(10) unsigned DEFAULT '0' COMMENT 'Items Count',
  `items_qty` decimal(12,4) DEFAULT '0.0000' COMMENT 'Items Qty',
  `orig_order_id` int(10) unsigned DEFAULT '0' COMMENT 'Orig Order Id',
  `store_to_base_rate` decimal(12,4) DEFAULT '0.0000' COMMENT 'Store To Base Rate',
  `store_to_quote_rate` decimal(12,4) DEFAULT '0.0000' COMMENT 'Store To Quote Rate',
  `base_currency_code` varchar(255) DEFAULT NULL COMMENT 'Base Currency Code',
  `store_currency_code` varchar(255) DEFAULT NULL COMMENT 'Store Currency Code',
  `quote_currency_code` varchar(255) DEFAULT NULL COMMENT 'Quote Currency Code',
  `grand_total` decimal(20,4) DEFAULT '0.0000' COMMENT 'Grand Total',
  `base_grand_total` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Grand Total',
  `checkout_method` varchar(255) DEFAULT NULL COMMENT 'Checkout Method',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Id',
  `customer_tax_class_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Tax Class Id',
  `customer_group_id` int(10) unsigned DEFAULT '0' COMMENT 'Customer Group Id',
  `customer_email` varchar(255) DEFAULT NULL COMMENT 'Customer Email',
  `customer_prefix` varchar(40) DEFAULT NULL COMMENT 'Customer Prefix',
  `customer_firstname` varchar(255) DEFAULT NULL COMMENT 'Customer Firstname',
  `customer_middlename` varchar(40) DEFAULT NULL COMMENT 'Customer Middlename',
  `customer_lastname` varchar(255) DEFAULT NULL COMMENT 'Customer Lastname',
  `customer_suffix` varchar(40) DEFAULT NULL COMMENT 'Customer Suffix',
  `customer_dob` datetime DEFAULT NULL COMMENT 'Customer Dob',
  `customer_note` varchar(255) DEFAULT NULL COMMENT 'Customer Note',
  `customer_note_notify` smallint(5) unsigned DEFAULT '1' COMMENT 'Customer Note Notify',
  `customer_is_guest` smallint(5) unsigned DEFAULT '0' COMMENT 'Customer Is Guest',
  `remote_ip` varchar(45) DEFAULT NULL COMMENT 'Remote Ip',
  `applied_rule_ids` varchar(255) DEFAULT NULL COMMENT 'Applied Rule Ids',
  `reserved_order_id` varchar(64) DEFAULT NULL COMMENT 'Reserved Order Id',
  `password_hash` varchar(255) DEFAULT NULL COMMENT 'Password Hash',
  `coupon_code` varchar(255) DEFAULT NULL COMMENT 'Coupon Code',
  `global_currency_code` varchar(255) DEFAULT NULL COMMENT 'Global Currency Code',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `base_to_quote_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Quote Rate',
  `customer_taxvat` varchar(255) DEFAULT NULL COMMENT 'Customer Taxvat',
  `customer_gender` varchar(255) DEFAULT NULL COMMENT 'Customer Gender',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `subtotal_with_discount` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal With Discount',
  `base_subtotal_with_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal With Discount',
  `is_changed` int(10) unsigned DEFAULT NULL COMMENT 'Is Changed',
  `trigger_recollect` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Trigger Recollect',
  `ext_shipping_info` text COMMENT 'Ext Shipping Info',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message Id',
  `is_persistent` smallint(5) unsigned DEFAULT '0' COMMENT 'Is Quote Persistent',
  `carrier_office` text COMMENT 'Carrier Office',
  `mailchimp_abandonedcart_flag` tinyint(1) DEFAULT '0' COMMENT 'Retrieved from Mailchimp',
  `mailchimp_campaign_id` varchar(16) DEFAULT '' COMMENT 'Campaign',
  `mailchimp_landing_page` text COMMENT 'Landing Page',
  PRIMARY KEY (`entity_id`),
  KEY `QUOTE_CUSTOMER_ID_STORE_ID_IS_ACTIVE` (`customer_id`,`store_id`,`is_active`),
  KEY `QUOTE_STORE_ID` (`store_id`),
  CONSTRAINT `QUOTE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=389 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote`
--

LOCK TABLES `quote` WRITE;
/*!40000 ALTER TABLE `quote` DISABLE KEYS */;
INSERT INTO `quote` VALUES (1,1,'2018-11-23 09:56:14','2018-11-23 09:56:14',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(2,1,'2018-11-23 09:56:42','2018-11-23 09:56:42',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(3,1,'2018-11-23 09:59:05','2018-11-23 09:59:05',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(4,1,'2018-11-23 10:05:44','2018-11-23 10:05:44',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(5,1,'2018-11-23 10:06:45','2018-11-23 10:06:45',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(6,1,'2018-11-23 13:43:39','2018-11-23 13:43:39',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(7,1,'2018-11-23 13:43:39','2018-11-23 13:43:39',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(8,1,'2018-11-23 13:47:38','2018-11-23 13:47:38',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(9,1,'2018-11-23 13:52:32','2018-11-23 13:52:32',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(10,1,'2018-11-23 13:56:53','2018-11-23 13:56:53',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(11,1,'2018-11-23 13:57:34','2018-11-23 13:57:34',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(12,1,'2018-11-23 13:57:40','2018-11-23 13:57:40',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(13,1,'2018-11-23 13:58:25','2018-11-23 13:58:25',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(14,1,'2018-11-23 13:59:54','2018-11-23 13:59:54',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(15,1,'2018-11-23 14:00:10','2018-11-23 14:00:10',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(16,1,'2018-11-23 14:03:43','2018-11-23 14:03:43',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(17,1,'2018-11-23 14:04:05','2018-11-23 14:04:05',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(18,1,'2018-11-23 14:05:59','2018-11-23 14:05:59',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(19,1,'2018-11-23 14:06:24','2018-11-23 14:06:24',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(20,1,'2018-11-23 14:06:58','2018-11-23 14:06:58',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(21,1,'2018-11-23 14:07:17','2018-11-23 14:07:17',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(22,1,'2018-11-23 14:41:15','2018-11-23 14:41:15',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(23,1,'2018-11-23 14:41:50','2018-11-23 14:41:50',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(24,1,'2018-11-23 14:43:09','2018-11-23 14:43:09',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(25,1,'2018-11-23 14:43:35','2018-11-23 14:43:35',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(26,1,'2018-11-23 14:51:05','2018-11-23 14:51:05',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(27,1,'2018-11-23 14:57:57','2018-11-23 14:57:57',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(28,1,'2018-11-23 14:58:07','2018-11-23 14:58:07',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(29,1,'2018-11-23 14:59:39','2018-11-23 14:59:39',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(30,1,'2018-11-23 15:00:10','2018-11-23 15:00:10',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(31,1,'2018-11-23 15:00:12','2018-11-23 15:00:12',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(32,1,'2018-11-26 07:49:19','2018-11-26 07:49:19',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(33,1,'2018-11-26 07:55:19','2018-11-26 07:55:19',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(34,1,'2018-11-26 07:56:17','2018-11-26 07:56:17',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(35,1,'2018-11-26 08:12:46','2018-11-26 08:12:46',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(36,1,'2018-11-26 08:15:24','2018-11-26 08:15:24',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(37,1,'2018-11-26 08:34:26','2018-11-26 08:34:26',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(38,1,'2018-11-26 08:37:17','2018-11-26 08:37:17',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(39,1,'2018-11-26 08:38:52','2018-11-26 08:38:52',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(40,1,'2018-11-26 08:39:41','2018-11-26 08:39:41',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(41,1,'2018-11-26 08:41:02','2018-11-26 08:41:02',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(42,1,'2018-11-26 08:41:27','2018-11-26 08:41:27',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(43,1,'2018-11-26 08:48:50','2018-11-26 08:48:50',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(44,1,'2018-11-26 08:50:55','2018-11-26 08:50:55',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(45,1,'2018-11-26 08:51:06','2018-11-26 08:51:06',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(46,1,'2018-11-26 08:58:36','2018-11-26 08:58:36',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(47,1,'2018-11-26 08:58:50','2018-11-26 08:58:50',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(48,1,'2018-11-26 11:24:10','2018-11-26 11:24:10',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(49,1,'2018-11-26 11:26:46','2018-11-26 11:26:46',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(50,1,'2018-11-26 11:27:18','2018-11-26 11:27:18',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(51,1,'2018-11-26 11:28:22','2018-11-26 11:28:22',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(52,1,'2018-11-26 11:35:37','2018-11-26 11:35:37',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(53,1,'2018-11-26 11:37:59','2018-11-26 11:37:59',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(54,1,'2018-11-26 11:39:02','2018-11-26 11:39:02',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(55,1,'2018-11-26 11:41:05','2018-11-26 11:41:05',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(56,1,'2018-11-26 12:13:25','2018-11-26 12:13:25',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(57,1,'2018-11-26 12:17:23','2018-11-26 12:17:23',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(58,1,'2018-11-26 12:56:01','2018-11-26 12:56:01',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(59,1,'2018-11-26 12:56:45','2018-11-26 12:56:45',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(60,1,'2018-11-26 12:57:25','2018-11-26 12:57:25',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(61,1,'2018-11-26 14:20:35','2018-11-26 14:20:35',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(62,1,'2018-11-26 14:59:16','2018-11-26 14:59:16',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(63,1,'2018-11-26 15:11:19','2018-11-26 15:11:19',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(64,1,'2018-11-26 15:12:59','2018-11-26 15:12:59',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(65,1,'2018-11-26 15:13:20','2018-11-26 15:13:20',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(66,1,'2018-11-26 15:13:34','2018-11-26 15:13:34',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(67,1,'2018-11-26 16:22:02','2018-11-26 16:22:02',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(68,1,'2018-11-26 16:22:05','2018-11-26 16:22:05',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(69,1,'2018-11-26 16:22:22','2018-11-26 16:22:22',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(70,1,'2018-11-26 16:22:25','2018-11-26 16:22:25',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(71,1,'2018-11-26 16:22:30','2018-11-26 16:22:30',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(72,1,'2018-11-26 16:22:37','2018-11-26 16:22:37',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(73,1,'2018-11-26 16:23:08','2018-11-26 16:23:08',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(74,1,'2018-11-26 16:24:55','2018-11-26 16:24:55',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(75,1,'2018-11-26 16:26:31','2018-11-26 16:26:31',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(76,1,'2018-11-26 16:27:16','2018-11-26 16:27:16',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(77,1,'2018-11-26 16:28:40','2018-11-26 16:28:40',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(78,1,'2018-11-26 16:29:00','2018-11-26 16:29:00',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(79,1,'2018-11-26 16:29:18','2018-11-26 16:29:18',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(80,1,'2018-11-26 16:29:24','2018-11-26 16:29:24',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(81,1,'2018-11-26 16:34:27','2018-11-26 16:34:27',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(82,1,'2018-11-26 16:36:32','2018-11-26 16:36:32',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(83,1,'2018-11-26 16:37:37','2018-11-26 16:37:37',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(84,1,'2018-11-26 16:38:27','2018-11-26 16:38:27',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(85,1,'2018-11-26 16:39:07','2018-11-26 16:39:07',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(86,1,'2018-11-26 16:40:30','2018-11-26 16:40:30',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(87,1,'2018-11-26 16:42:00','2018-11-26 16:42:00',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(88,1,'2018-11-26 16:42:34','2018-11-26 16:42:34',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(89,1,'2018-11-26 16:43:46','2018-11-26 16:43:46',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(90,1,'2018-11-26 16:45:13','2018-11-26 16:45:13',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(91,1,'2018-11-26 16:45:19','2018-11-26 16:45:19',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(92,1,'2018-11-26 16:52:53','2018-11-26 16:52:53',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(93,1,'2018-11-26 16:53:13','2018-11-26 16:53:13',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(94,1,'2018-11-26 16:53:38','2018-11-26 16:53:38',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(95,1,'2018-11-26 16:54:04','2018-11-26 16:54:04',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(96,1,'2018-11-27 11:09:42','2018-11-27 11:09:42',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(97,1,'2018-11-27 11:13:56','2018-11-27 11:13:56',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(98,1,'2018-11-27 11:57:38','2018-11-27 11:57:38',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(99,1,'2018-11-27 11:57:38','2018-11-27 11:57:38',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(100,1,'2018-11-27 12:01:51','2018-11-27 12:01:51',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(101,1,'2018-11-27 12:08:32','2018-11-27 12:08:32',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(102,1,'2018-11-27 12:09:21','2018-11-27 12:09:21',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(103,1,'2018-11-27 12:25:39','2018-11-27 12:25:39',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(104,1,'2018-11-27 12:27:51','2018-11-27 12:27:51',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(105,1,'2018-11-27 12:28:01','2018-11-27 12:28:01',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(106,1,'2018-11-27 12:33:35','2018-11-27 12:33:35',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(107,1,'2018-11-27 12:34:51','2018-11-27 12:34:51',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(108,1,'2018-11-27 12:56:07','2018-11-27 12:56:07',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(109,1,'2018-11-27 12:56:43','2018-11-27 12:56:43',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(110,1,'2018-11-27 12:59:51','2018-11-27 12:59:51',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(111,1,'2018-11-27 13:03:35','2018-11-27 13:03:35',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(112,1,'2018-11-27 13:49:21','2018-11-27 13:49:21',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(113,1,'2018-11-27 13:51:14','2018-11-27 13:51:14',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(114,1,'2018-11-27 14:32:50','2018-11-27 14:32:50',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(115,1,'2018-11-27 14:32:50','2018-11-27 14:32:50',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(116,1,'2018-11-27 14:33:01','2018-11-27 14:33:01',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(117,1,'2018-11-27 14:33:18','2018-11-27 14:33:18',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(118,1,'2018-11-27 14:35:32','2018-11-27 14:35:32',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(119,1,'2018-11-27 14:35:53','2018-11-27 14:35:53',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(120,1,'2018-11-27 14:36:20','2018-11-27 14:36:20',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(121,1,'2018-11-27 14:37:03','2018-11-27 14:37:03',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(122,1,'2018-11-27 14:37:12','2018-11-27 14:37:12',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(123,1,'2018-11-27 14:37:22','2018-11-27 14:37:22',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(124,1,'2018-11-27 14:37:44','2018-11-27 14:37:44',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(125,1,'2018-11-27 14:37:53','2018-11-27 14:37:53',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(126,1,'2018-11-27 14:38:05','2018-11-27 14:38:05',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(127,1,'2018-11-27 14:38:46','2018-11-27 14:38:46',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(128,1,'2018-11-27 14:39:47','2018-11-27 14:39:47',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(129,1,'2018-11-27 14:41:42','2018-11-27 14:41:42',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(130,1,'2018-11-27 14:58:27','2018-11-27 14:58:27',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(131,1,'2018-11-27 15:04:34','2018-11-27 15:04:34',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(132,1,'2018-11-27 15:26:54','2018-11-27 15:26:54',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(133,1,'2018-11-27 15:35:57','2018-11-27 15:35:57',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(134,1,'2018-11-27 16:22:32','2018-11-27 16:22:32',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(135,1,'2018-11-28 10:04:02','2018-11-28 10:04:02',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(136,1,'2018-11-28 10:04:38','2018-11-28 10:04:38',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(137,1,'2018-11-28 10:26:38','2018-11-28 10:26:38',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(138,1,'2018-11-28 10:35:15','2018-11-28 10:35:15',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(139,1,'2018-11-28 10:35:35','2018-11-28 10:35:35',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(140,1,'2018-11-28 10:46:52','2018-11-28 10:46:52',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(141,1,'2018-11-28 10:50:20','2018-11-28 10:50:20',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(142,1,'2018-11-28 10:50:27','2018-11-28 10:50:27',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(143,1,'2018-11-28 10:50:29','2018-11-28 10:50:29',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(144,1,'2018-11-28 10:58:03','2018-11-28 10:58:03',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(145,1,'2018-11-28 11:04:51','2018-11-28 11:04:51',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(146,1,'2018-11-28 11:59:42','2018-11-28 11:59:42',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(147,1,'2018-11-28 12:00:48','2018-11-28 12:00:48',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(148,1,'2018-11-28 12:21:09','2018-11-28 12:21:09',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(149,1,'2018-11-28 13:17:30','2018-11-28 13:17:30',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(150,1,'2018-11-28 13:17:40','2018-11-28 13:17:40',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(151,1,'2018-11-28 13:19:54','2018-11-28 13:19:54',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(152,1,'2018-11-28 13:21:07','2018-11-28 13:21:07',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(153,1,'2018-11-28 13:21:26','2018-11-28 13:21:26',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(154,1,'2018-11-28 13:21:44','2018-11-28 13:21:44',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(155,1,'2018-11-28 13:25:47','2018-11-28 13:25:47',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(156,1,'2018-11-28 13:26:17','2018-11-28 13:26:17',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(157,1,'2018-11-28 13:31:44','2018-11-28 13:31:44',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(158,1,'2018-11-28 13:34:17','2018-11-28 13:34:17',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(159,1,'2018-11-28 13:40:42','2018-11-28 13:40:42',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(160,1,'2018-11-28 13:53:44','2018-11-28 13:53:44',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(161,1,'2018-11-28 13:56:11','2018-11-28 13:56:11',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(162,1,'2018-11-28 14:36:15','2018-11-28 14:36:15',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(163,1,'2018-11-28 14:40:13','2018-11-28 14:40:13',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(164,1,'2018-11-28 14:43:49','2018-11-28 14:43:49',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(165,1,'2018-11-28 15:33:46','2018-11-28 15:33:46',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(166,1,'2018-11-28 15:37:08','2018-11-28 15:37:08',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(167,1,'2018-11-28 15:37:22','2018-11-28 15:37:22',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(168,1,'2018-11-28 15:39:40','2018-11-28 15:39:40',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(169,1,'2018-11-28 15:43:11','2018-11-28 15:43:11',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(170,1,'2018-11-28 15:43:18','2018-11-28 15:43:18',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(171,1,'2018-11-28 15:49:25','2018-11-28 15:49:25',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(172,1,'2018-11-28 15:53:32','2018-11-28 15:53:32',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(173,1,'2018-11-28 16:32:08','2018-11-28 16:32:08',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(174,1,'2018-11-28 16:32:09','2018-11-28 16:32:09',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(175,1,'2018-11-28 16:32:54','2018-11-28 16:32:54',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(176,1,'2018-11-28 16:32:59','2018-11-28 16:32:59',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(177,1,'2018-11-28 16:33:55','2018-11-28 16:33:55',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(178,1,'2018-11-28 16:45:14','2018-11-28 16:45:14',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(179,1,'2018-11-28 16:52:33','2018-11-28 16:52:33',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(180,1,'2018-11-28 16:53:36','2018-11-28 16:53:36',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(181,1,'2018-11-28 17:19:55','2018-11-28 17:19:55',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(182,1,'2018-11-28 17:23:09','2018-11-28 17:23:09',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(183,1,'2018-11-28 17:23:45','2018-11-28 17:23:45',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(184,1,'2018-11-28 17:24:56','2018-11-28 17:24:56',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(185,1,'2018-11-28 17:30:48','2018-11-28 17:30:48',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(186,1,'2018-11-28 17:41:26','2018-11-28 17:41:26',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(187,1,'2018-11-28 17:42:39','2018-11-28 17:42:39',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(188,1,'2018-11-28 17:42:43','2018-11-28 17:42:43',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(189,1,'2018-11-28 17:44:50','2018-11-28 17:44:50',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(190,1,'2018-11-28 17:45:22','2018-11-28 17:45:22',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(191,1,'2018-11-28 17:45:46','2018-11-28 17:45:46',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(192,1,'2018-11-28 17:47:16','2018-11-28 17:47:16',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(193,1,'2018-11-28 17:47:42','2018-11-28 17:47:42',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(194,1,'2018-11-28 17:50:09','2018-11-28 17:50:09',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(195,1,'2018-11-28 17:50:10','2018-11-28 17:50:10',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(196,1,'2018-11-28 17:54:00','2018-11-28 17:54:00',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(197,1,'2018-11-28 17:54:46','2018-11-28 17:54:46',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(198,1,'2018-11-28 17:57:21','2018-11-28 17:57:21',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(199,1,'2018-11-28 17:59:33','2018-11-28 17:59:33',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(200,1,'2018-11-28 18:00:50','2018-11-28 18:00:50',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(201,1,'2018-11-28 18:01:54','2018-11-28 18:01:54',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(202,1,'2018-11-28 18:02:17','2018-11-28 18:02:17',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(203,1,'2018-11-28 18:03:32','2018-11-28 18:03:32',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(204,1,'2018-11-28 18:03:54','2018-11-28 18:03:54',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(205,1,'2018-11-28 18:05:05','2018-11-28 18:05:05',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(206,1,'2018-11-28 18:13:16','2018-11-28 18:13:16',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(207,1,'2018-11-28 18:13:35','2018-11-28 18:13:35',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(208,1,'2018-11-28 18:13:41','2018-11-28 18:13:41',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(209,1,'2018-11-28 18:15:41','2018-11-28 18:15:41',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(210,1,'2018-11-28 18:15:47','2018-11-28 18:15:47',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(211,1,'2018-11-28 18:16:53','2018-11-28 18:16:53',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(212,1,'2018-11-28 18:17:26','2018-11-28 18:17:26',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(213,1,'2018-11-28 18:17:58','2018-11-28 18:17:58',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(214,1,'2018-11-28 18:18:18','2018-11-28 18:18:18',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(215,1,'2018-11-28 18:18:34','2018-11-28 18:18:34',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(216,1,'2018-11-28 18:18:55','2018-11-28 18:18:55',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(217,1,'2018-11-28 18:19:21','2018-11-28 18:19:21',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(218,1,'2018-11-28 18:22:06','2018-11-28 18:22:06',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(219,1,'2018-11-28 18:22:53','2018-11-28 18:22:53',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(220,1,'2018-11-28 18:23:04','2018-11-28 18:23:04',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(221,1,'2018-11-28 18:23:04','2018-11-28 18:23:04',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(222,1,'2018-11-28 18:23:05','2018-11-28 18:23:05',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(223,1,'2018-11-28 18:23:07','2018-11-28 18:23:07',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(224,1,'2018-11-28 18:23:26','2018-11-28 18:23:26',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(225,1,'2018-11-28 18:23:33','2018-11-28 18:23:33',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(226,1,'2018-11-28 18:24:05','2018-11-28 18:24:05',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(227,1,'2018-11-28 18:24:46','2018-11-28 18:24:46',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(228,1,'2018-11-28 18:25:03','2018-11-28 18:25:03',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(229,1,'2018-11-28 18:25:41','2018-11-28 18:25:41',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(230,1,'2018-11-28 18:25:47','2018-11-28 18:25:47',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(231,1,'2018-11-28 18:25:56','2018-11-28 18:25:56',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(232,1,'2018-11-28 18:26:00','2018-11-28 18:26:00',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(233,1,'2018-11-28 18:27:36','2018-11-28 18:27:36',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(234,1,'2018-11-28 18:28:27','2018-11-28 18:28:27',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(235,1,'2018-11-28 18:28:38','2018-11-28 18:28:38',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(236,1,'2018-11-28 18:29:57','2018-11-28 18:29:57',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(237,1,'2018-11-28 18:30:18','2018-11-28 18:30:18',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(238,1,'2018-11-28 18:30:25','2018-11-28 18:30:25',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(239,1,'2018-11-28 18:30:34','2018-11-28 18:30:34',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(240,1,'2018-11-28 18:30:57','2018-11-28 18:30:57',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(241,1,'2018-11-28 18:31:07','2018-11-28 18:31:07',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(242,1,'2018-11-28 18:31:39','2018-11-28 18:31:39',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(243,1,'2018-11-28 18:31:39','2018-11-28 18:31:39',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(244,1,'2018-11-28 18:33:26','2018-11-28 18:33:26',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(245,1,'2018-11-28 18:33:28','2018-11-28 18:33:28',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(246,1,'2018-11-28 18:33:30','2018-11-28 18:33:30',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(247,1,'2018-11-28 18:34:16','2018-11-28 18:34:16',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(248,1,'2018-11-28 18:34:19','2018-11-28 18:34:19',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(249,1,'2018-11-28 18:44:00','2018-11-28 18:44:00',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(250,1,'2018-11-28 18:44:08','2018-11-28 18:44:08',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(251,1,'2018-11-28 18:44:54','2018-11-28 18:44:54',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(252,1,'2018-11-28 18:45:08','2018-11-28 18:45:08',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(253,1,'2018-11-28 18:53:17','2018-11-28 18:53:17',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(254,1,'2018-11-28 18:53:18','2018-11-28 18:53:18',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(255,1,'2018-11-28 18:53:22','2018-11-28 18:53:22',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(256,1,'2018-11-28 18:53:29','2018-11-28 18:53:29',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(257,1,'2018-11-28 18:53:32','2018-11-28 18:53:32',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(258,1,'2018-11-28 18:53:36','2018-11-28 18:53:36',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(259,1,'2018-11-28 18:53:37','2018-11-28 18:53:37',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(260,1,'2018-11-28 18:53:39','2018-11-28 18:53:39',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(261,1,'2018-11-28 18:54:43','2018-11-28 18:54:43',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(262,1,'2018-11-28 18:54:45','2018-11-28 18:54:45',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(263,1,'2018-11-28 18:55:48','2018-11-28 18:55:48',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(264,1,'2018-11-28 18:55:56','2018-11-28 18:55:56',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(265,1,'2018-11-28 18:55:59','2018-11-28 18:55:59',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(266,1,'2018-11-28 18:55:59','2018-11-28 18:55:59',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(267,1,'2018-11-28 18:57:22','2018-11-28 18:57:22',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(268,1,'2018-11-28 18:57:24','2018-11-28 18:57:24',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(269,1,'2018-11-28 18:57:29','2018-11-28 18:57:29',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(270,1,'2018-11-28 19:00:50','2018-11-28 19:00:50',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(271,1,'2018-11-28 19:00:52','2018-11-28 19:00:52',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(272,1,'2018-11-28 19:04:04','2018-11-28 19:04:04',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(273,1,'2018-11-28 19:04:08','2018-11-28 19:04:08',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(274,1,'2018-11-28 19:10:07','2018-11-28 19:10:07',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(275,1,'2018-11-28 19:10:09','2018-11-28 19:10:09',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(276,1,'2018-11-28 19:10:20','2018-11-28 19:10:20',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(277,1,'2018-11-28 19:11:35','2018-11-28 19:11:35',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(278,1,'2018-11-28 19:11:48','2018-11-28 19:11:48',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(279,1,'2018-11-28 19:11:48','2018-11-28 19:11:48',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(280,1,'2018-11-28 19:12:20','2018-11-28 19:12:20',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(281,1,'2018-11-28 19:12:21','2018-11-28 19:12:21',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(282,1,'2018-11-28 19:18:08','2018-11-28 19:18:08',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(283,1,'2018-11-28 19:18:33','2018-11-28 19:18:33',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(284,1,'2018-11-28 19:20:39','2018-11-28 19:20:39',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(285,1,'2018-11-28 19:20:51','2018-11-28 19:20:51',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(286,1,'2018-11-28 19:21:49','2018-11-28 19:21:49',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(287,1,'2018-11-28 19:22:19','2018-11-28 19:22:19',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(288,1,'2018-11-29 08:20:00','2018-11-29 08:20:00',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(289,1,'2018-11-29 08:20:20','2018-11-29 08:20:20',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(290,1,'2018-11-29 08:20:22','2018-11-29 08:20:22',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(291,1,'2018-11-29 08:20:25','2018-11-29 08:20:25',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(292,1,'2018-11-29 08:20:26','2018-11-29 08:20:26',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(293,1,'2018-11-29 08:21:20','2018-11-29 08:21:20',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(294,1,'2018-11-29 08:21:28','2018-11-29 08:21:28',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(295,1,'2018-11-29 08:21:35','2018-11-29 08:21:35',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(296,1,'2018-11-29 08:25:21','2018-11-29 08:25:21',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(297,1,'2018-11-29 08:25:25','2018-11-29 08:25:25',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(298,1,'2018-11-29 08:30:29','2018-11-29 08:30:29',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(299,1,'2018-11-29 10:12:53','2018-11-29 10:12:53',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(300,1,'2018-11-29 10:23:51','2018-11-29 10:23:51',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(301,1,'2018-11-29 10:25:21','2018-11-29 10:25:21',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(302,1,'2018-11-29 10:28:01','2018-11-29 10:28:01',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(303,1,'2018-11-29 10:30:52','2018-11-29 10:30:52',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(304,1,'2018-11-29 10:32:50','2018-11-29 10:32:50',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(305,1,'2018-11-29 10:33:46','2018-11-29 10:33:46',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(306,1,'2018-11-29 10:41:44','2018-11-29 10:41:44',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(307,1,'2018-11-29 10:42:38','2018-11-29 10:42:38',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(308,1,'2018-11-29 10:43:18','2018-11-29 10:43:18',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(309,1,'2018-11-29 10:43:21','2018-11-29 10:43:21',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(310,1,'2018-11-29 10:49:11','2018-11-29 10:49:11',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(311,1,'2018-11-29 10:49:32','2018-11-29 10:49:32',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(312,1,'2018-11-29 10:55:51','2018-11-29 10:55:51',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(313,1,'2018-11-29 11:32:41','2018-11-29 11:32:41',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(314,1,'2018-11-29 11:42:12','2018-11-29 11:42:12',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(315,1,'2018-11-29 11:44:40','2018-11-29 11:44:40',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(316,1,'2018-11-29 11:45:36','2018-11-29 11:45:36',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(317,1,'2018-11-29 13:02:30','2018-11-29 13:02:30',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(318,1,'2018-11-29 13:06:18','2018-11-29 13:06:18',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(319,1,'2018-11-29 13:35:48','2018-11-29 13:35:48',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(320,1,'2018-11-29 14:59:04','2018-11-29 14:59:04',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(321,1,'2018-11-29 15:04:42','2018-11-29 15:04:42',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(322,1,'2018-11-29 15:05:43','2018-11-29 15:05:43',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(323,1,'2018-11-29 15:06:00','2018-11-29 15:06:00',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(324,1,'2018-11-29 15:06:13','2018-11-29 15:06:13',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(325,1,'2018-11-29 15:06:26','2018-11-29 15:06:26',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(326,1,'2018-11-29 15:08:02','2018-11-29 15:08:02',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(327,1,'2018-11-29 15:11:24','2018-11-29 15:11:24',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(328,1,'2018-11-29 15:11:24','2018-11-29 15:11:24',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(329,1,'2018-11-29 15:12:16','2018-11-29 15:12:16',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(330,1,'2018-11-29 15:12:45','2018-11-29 15:12:45',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(331,1,'2018-11-29 15:13:36','2018-11-29 15:13:36',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(332,1,'2018-11-29 15:13:36','2018-11-29 15:13:36',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(333,1,'2018-11-29 15:14:32','2018-11-29 15:14:32',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(334,1,'2018-11-30 16:46:30','2018-11-30 16:46:30',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(335,1,'2018-11-30 17:11:18','2018-11-30 17:11:18',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(336,1,'2018-11-30 17:15:35','2018-11-30 17:15:35',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(337,1,'2018-11-30 18:08:52','2018-11-30 18:08:52',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(338,1,'2018-11-30 18:58:36','2018-11-30 18:58:36',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(339,1,'2018-11-30 18:59:41','2018-11-30 18:59:41',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(340,1,'2018-11-30 19:26:00','2018-11-30 19:26:00',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(341,1,'2018-11-30 19:45:36','2018-11-30 19:45:36',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(342,1,'2018-11-30 19:46:06','2018-11-30 19:46:06',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(343,1,'2018-11-30 19:54:22','2018-11-30 19:54:22',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(344,1,'2018-11-30 20:23:43','2018-11-30 20:23:43',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(345,1,'2018-11-30 20:45:02','2018-11-30 20:45:02',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(346,1,'2018-11-30 20:48:48','2018-11-30 20:48:48',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(347,1,'2018-11-30 20:53:01','2018-11-30 20:53:01',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(348,1,'2018-11-30 21:12:23','2018-11-30 21:12:23',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(349,1,'2018-11-30 21:12:42','2018-11-30 21:12:42',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(350,1,'2018-11-30 21:18:38','2018-11-30 21:18:38',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(351,1,'2018-11-30 21:19:37','2018-11-30 21:19:37',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(352,1,'2018-11-30 21:19:45','2018-11-30 21:19:45',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(353,1,'2018-11-30 21:20:46','2018-11-30 21:20:46',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(354,1,'2018-11-30 21:20:49','2018-11-30 21:20:49',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(355,1,'2018-11-30 21:21:28','2018-11-30 21:21:28',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(356,1,'2018-11-30 21:21:41','2018-11-30 21:21:41',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(357,1,'2018-11-30 22:05:19','2018-11-30 22:05:19',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(358,1,'2018-11-30 23:52:50','2018-11-30 23:52:50',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(359,1,'2018-12-01 00:41:25','2018-12-01 00:41:25',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(360,1,'2018-12-01 15:42:41','2018-12-01 15:42:41',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(361,1,'2018-12-02 12:52:19','2018-12-02 12:52:19',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(362,1,'2018-12-02 14:53:32','2018-12-02 14:53:32',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(363,1,'2018-12-02 14:53:41','2018-12-02 14:53:41',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(364,1,'2018-12-02 16:01:18','2018-12-02 16:01:18',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(365,1,'2018-12-02 21:02:22','2018-12-02 21:02:22',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(366,1,'2018-12-02 21:02:28','2018-12-02 21:02:28',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(367,1,'2018-12-03 11:29:53','2018-12-03 11:29:53',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(368,1,'2018-12-03 13:16:32','2018-12-03 13:16:32',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(369,1,'2018-12-03 13:17:11','2018-12-03 13:17:11',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(370,1,'2018-12-03 13:17:12','2018-12-03 13:17:12',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(371,1,'2018-12-03 13:50:38','2018-12-03 13:50:38',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(372,1,'2018-12-03 18:10:55','2018-12-03 18:10:55',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(373,1,'2018-12-03 18:27:10','2018-12-03 18:27:10',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(374,1,'2018-12-03 18:27:10','2018-12-03 18:27:10',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(375,1,'2018-12-03 18:27:12','2018-12-03 18:27:12',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(376,1,'2018-12-03 18:27:18','2018-12-03 18:27:18',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(377,1,'2018-12-03 18:27:26','2018-12-03 18:27:26',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(378,1,'2018-12-03 18:27:27','2018-12-03 18:27:27',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(379,1,'2018-12-03 18:27:29','2018-12-03 18:27:29',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(380,1,'2018-12-03 18:28:11','2018-12-03 18:28:11',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(381,1,'2018-12-03 18:28:13','2018-12-03 18:28:13',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(382,1,'2018-12-03 18:28:13','2018-12-03 18:28:13',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(383,1,'2018-12-03 18:28:13','2018-12-03 18:28:13',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(384,1,'2018-12-03 18:28:17','2018-12-03 18:28:17',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(385,1,'2018-12-03 18:28:27','2018-12-03 18:28:27',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(386,1,'2018-12-03 18:28:29','2018-12-03 18:28:29',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL),(387,1,'2020-04-07 13:11:11','2020-04-07 13:18:20',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'USD','USD','USD',89.9000,89.9000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,89.9000,89.9000,89.9000,89.9000,1,0,NULL,NULL,0,NULL,0,NULL,NULL),(388,1,'2020-04-07 13:23:45','2020-04-07 13:23:45',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'USD','USD','USD',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,'USD',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,NULL,0,'',NULL);
/*!40000 ALTER TABLE `quote` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `quote_address`
--

DROP TABLE IF EXISTS `quote_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote_address` (
  `address_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Address Id',
  `quote_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quote Id',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Id',
  `save_in_address_book` smallint(6) DEFAULT '0' COMMENT 'Save In Address Book',
  `customer_address_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Address Id',
  `address_type` varchar(10) DEFAULT NULL COMMENT 'Address Type',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `prefix` varchar(40) DEFAULT NULL COMMENT 'Prefix',
  `firstname` varchar(255) DEFAULT NULL,
  `middlename` varchar(40) DEFAULT NULL,
  `lastname` varchar(255) DEFAULT NULL,
  `suffix` varchar(40) DEFAULT NULL COMMENT 'Suffix',
  `company` varchar(255) DEFAULT NULL COMMENT 'Company',
  `street` varchar(255) DEFAULT NULL COMMENT 'Street',
  `city` varchar(255) DEFAULT NULL,
  `region` varchar(255) DEFAULT NULL,
  `region_id` int(10) unsigned DEFAULT NULL COMMENT 'Region Id',
  `postcode` varchar(20) DEFAULT NULL COMMENT 'Postcode',
  `country_id` varchar(30) DEFAULT NULL COMMENT 'Country Id',
  `telephone` varchar(255) DEFAULT NULL,
  `fax` varchar(255) DEFAULT NULL,
  `same_as_billing` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Same As Billing',
  `collect_shipping_rates` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Collect Shipping Rates',
  `shipping_method` varchar(120) DEFAULT NULL,
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `weight` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Weight',
  `subtotal` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal',
  `base_subtotal` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Subtotal',
  `subtotal_with_discount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal With Discount',
  `base_subtotal_with_discount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Subtotal With Discount',
  `tax_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Tax Amount',
  `shipping_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Shipping Amount',
  `base_shipping_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Shipping Amount',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `discount_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount',
  `base_discount_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Discount Amount',
  `grand_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Grand Total',
  `base_grand_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Grand Total',
  `customer_notes` text COMMENT 'Customer Notes',
  `applied_taxes` text COMMENT 'Applied Taxes',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Amount',
  `base_shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `base_subtotal_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `vat_id` text COMMENT 'Vat Id',
  `vat_is_valid` smallint(6) DEFAULT NULL COMMENT 'Vat Is Valid',
  `vat_request_id` text COMMENT 'Vat Request Id',
  `vat_request_date` text COMMENT 'Vat Request Date',
  `vat_request_success` smallint(6) DEFAULT NULL COMMENT 'Vat Request Success',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message Id',
  `free_shipping` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Free Shipping',
  `validated_country_code` text COMMENT 'Validated Country Code',
  `validated_vat_number` text COMMENT 'Validated Vat Number',
  PRIMARY KEY (`address_id`),
  KEY `QUOTE_ADDRESS_QUOTE_ID` (`quote_id`),
  CONSTRAINT `QUOTE_ADDRESS_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=777 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Address';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_address`
--

LOCK TABLES `quote_address` WRITE;
/*!40000 ALTER TABLE `quote_address` DISABLE KEYS */;
INSERT INTO `quote_address` VALUES (1,1,'2018-11-23 09:56:14','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(2,1,'2018-11-23 09:56:14','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(3,2,'2018-11-23 09:56:42','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(4,2,'2018-11-23 09:56:42','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(5,3,'2018-11-23 09:59:05','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(6,3,'2018-11-23 09:59:05','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(7,4,'2018-11-23 10:05:44','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(8,4,'2018-11-23 10:05:44','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(9,5,'2018-11-23 10:06:45','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(10,5,'2018-11-23 10:06:45','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(11,6,'2018-11-23 13:43:39','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(12,7,'2018-11-23 13:43:39','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(13,7,'2018-11-23 13:43:39','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(14,6,'2018-11-23 13:43:39','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(15,8,'2018-11-23 13:47:38','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(16,8,'2018-11-23 13:47:38','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(17,9,'2018-11-23 13:52:32','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(18,9,'2018-11-23 13:52:32','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(19,10,'2018-11-23 13:56:53','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(20,10,'2018-11-23 13:56:53','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(21,11,'2018-11-23 13:57:34','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(22,11,'2018-11-23 13:57:34','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(23,12,'2018-11-23 13:57:40','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(24,12,'2018-11-23 13:57:40','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(25,13,'2018-11-23 13:58:25','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(26,13,'2018-11-23 13:58:25','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(27,14,'2018-11-23 13:59:54','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(28,14,'2018-11-23 13:59:54','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(29,15,'2018-11-23 14:00:10','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(30,15,'2018-11-23 14:00:10','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(31,16,'2018-11-23 14:03:43','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(32,16,'2018-11-23 14:03:43','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(33,17,'2018-11-23 14:04:05','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(34,17,'2018-11-23 14:04:05','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(35,18,'2018-11-23 14:05:59','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(36,18,'2018-11-23 14:05:59','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(37,19,'2018-11-23 14:06:24','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(38,19,'2018-11-23 14:06:25','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(39,20,'2018-11-23 14:06:58','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(40,20,'2018-11-23 14:06:58','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(41,21,'2018-11-23 14:07:17','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(42,21,'2018-11-23 14:07:17','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(43,22,'2018-11-23 14:41:15','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(44,22,'2018-11-23 14:41:15','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(45,23,'2018-11-23 14:41:50','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(46,23,'2018-11-23 14:41:50','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(47,24,'2018-11-23 14:43:10','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(48,24,'2018-11-23 14:43:10','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(49,25,'2018-11-23 14:43:35','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(50,25,'2018-11-23 14:43:35','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(51,26,'2018-11-23 14:51:05','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(52,26,'2018-11-23 14:51:05','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(53,27,'2018-11-23 14:57:57','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(54,27,'2018-11-23 14:57:57','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(55,28,'2018-11-23 14:58:07','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(56,28,'2018-11-23 14:58:07','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(57,29,'2018-11-23 14:59:39','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(58,29,'2018-11-23 14:59:39','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(59,30,'2018-11-23 15:00:10','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(60,30,'2018-11-23 15:00:10','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(61,31,'2018-11-23 15:00:12','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(62,31,'2018-11-23 15:00:12','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(63,32,'2018-11-26 07:49:19','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(64,32,'2018-11-26 07:49:19','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(65,33,'2018-11-26 07:55:19','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(66,33,'2018-11-26 07:55:19','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(67,34,'2018-11-26 07:56:17','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(68,34,'2018-11-26 07:56:17','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(69,35,'2018-11-26 08:12:46','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(70,35,'2018-11-26 08:12:46','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(71,36,'2018-11-26 08:15:24','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(72,36,'2018-11-26 08:15:24','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(73,37,'2018-11-26 08:34:26','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(74,37,'2018-11-26 08:34:26','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(75,38,'2018-11-26 08:37:17','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(76,38,'2018-11-26 08:37:17','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(77,39,'2018-11-26 08:38:52','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(78,39,'2018-11-26 08:38:52','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(79,40,'2018-11-26 08:39:42','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(80,40,'2018-11-26 08:39:42','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(81,41,'2018-11-26 08:41:02','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(82,41,'2018-11-26 08:41:02','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(83,42,'2018-11-26 08:41:27','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(84,42,'2018-11-26 08:41:27','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(85,43,'2018-11-26 08:48:50','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(86,43,'2018-11-26 08:48:50','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(87,44,'2018-11-26 08:50:55','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(88,44,'2018-11-26 08:50:55','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(89,45,'2018-11-26 08:51:06','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(90,45,'2018-11-26 08:51:06','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(91,46,'2018-11-26 08:58:36','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(92,46,'2018-11-26 08:58:36','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(93,47,'2018-11-26 08:58:51','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(94,47,'2018-11-26 08:58:51','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(95,48,'2018-11-26 11:24:10','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(96,48,'2018-11-26 11:24:10','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(97,49,'2018-11-26 11:26:46','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(98,49,'2018-11-26 11:26:46','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(99,50,'2018-11-26 11:27:19','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(100,50,'2018-11-26 11:27:19','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(101,51,'2018-11-26 11:28:22','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(102,51,'2018-11-26 11:28:22','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(103,52,'2018-11-26 11:35:37','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(104,52,'2018-11-26 11:35:37','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(105,53,'2018-11-26 11:37:59','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(106,53,'2018-11-26 11:37:59','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(107,54,'2018-11-26 11:39:03','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(108,54,'2018-11-26 11:39:03','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(109,55,'2018-11-26 11:41:05','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(110,55,'2018-11-26 11:41:05','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(111,56,'2018-11-26 12:13:25','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(112,56,'2018-11-26 12:13:25','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(113,57,'2018-11-26 12:17:23','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(114,57,'2018-11-26 12:17:23','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(115,58,'2018-11-26 12:56:02','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(116,58,'2018-11-26 12:56:02','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(117,59,'2018-11-26 12:56:45','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(118,59,'2018-11-26 12:56:45','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(119,60,'2018-11-26 12:57:25','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(120,60,'2018-11-26 12:57:25','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(121,61,'2018-11-26 14:20:35','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(122,61,'2018-11-26 14:20:35','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(123,62,'2018-11-26 14:59:16','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(124,62,'2018-11-26 14:59:16','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(125,63,'2018-11-26 15:11:19','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(126,63,'2018-11-26 15:11:19','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(127,64,'2018-11-26 15:13:00','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(128,64,'2018-11-26 15:13:00','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(129,65,'2018-11-26 15:13:20','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(130,65,'2018-11-26 15:13:20','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(131,66,'2018-11-26 15:13:34','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(132,66,'2018-11-26 15:13:34','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(133,67,'2018-11-26 16:22:02','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(134,67,'2018-11-26 16:22:02','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(135,68,'2018-11-26 16:22:06','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(136,68,'2018-11-26 16:22:06','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(137,69,'2018-11-26 16:22:22','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(138,69,'2018-11-26 16:22:22','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(139,70,'2018-11-26 16:22:25','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(140,70,'2018-11-26 16:22:25','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(141,71,'2018-11-26 16:22:30','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(142,71,'2018-11-26 16:22:30','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(143,72,'2018-11-26 16:22:37','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(144,72,'2018-11-26 16:22:37','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(145,73,'2018-11-26 16:23:09','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(146,73,'2018-11-26 16:23:09','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(147,74,'2018-11-26 16:24:55','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(148,74,'2018-11-26 16:24:55','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(149,75,'2018-11-26 16:26:31','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(150,75,'2018-11-26 16:26:31','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(151,76,'2018-11-26 16:27:16','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(152,76,'2018-11-26 16:27:16','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(153,77,'2018-11-26 16:28:41','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(154,77,'2018-11-26 16:28:41','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(155,78,'2018-11-26 16:29:00','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(156,78,'2018-11-26 16:29:00','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(157,79,'2018-11-26 16:29:18','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(158,79,'2018-11-26 16:29:18','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(159,80,'2018-11-26 16:29:24','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(160,80,'2018-11-26 16:29:24','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(161,81,'2018-11-26 16:34:27','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(162,81,'2018-11-26 16:34:27','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(163,82,'2018-11-26 16:36:32','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(164,82,'2018-11-26 16:36:32','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(165,83,'2018-11-26 16:37:37','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(166,83,'2018-11-26 16:37:37','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(167,84,'2018-11-26 16:38:27','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(168,84,'2018-11-26 16:38:27','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(169,85,'2018-11-26 16:39:07','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(170,85,'2018-11-26 16:39:07','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(171,86,'2018-11-26 16:40:30','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(172,86,'2018-11-26 16:40:30','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(173,87,'2018-11-26 16:42:00','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(174,87,'2018-11-26 16:42:00','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(175,88,'2018-11-26 16:42:34','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(176,88,'2018-11-26 16:42:35','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(177,89,'2018-11-26 16:43:46','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(178,89,'2018-11-26 16:43:46','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(179,90,'2018-11-26 16:45:13','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(180,90,'2018-11-26 16:45:13','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(181,91,'2018-11-26 16:45:19','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(182,91,'2018-11-26 16:45:19','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(183,92,'2018-11-26 16:52:54','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(184,92,'2018-11-26 16:52:54','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(185,93,'2018-11-26 16:53:14','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(186,93,'2018-11-26 16:53:14','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(187,94,'2018-11-26 16:53:38','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(188,94,'2018-11-26 16:53:38','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(189,95,'2018-11-26 16:54:04','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(190,95,'2018-11-26 16:54:04','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(191,96,'2018-11-27 11:09:42','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(192,96,'2018-11-27 11:09:42','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(193,97,'2018-11-27 11:13:56','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(194,97,'2018-11-27 11:13:56','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(195,99,'2018-11-27 11:57:38','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(196,98,'2018-11-27 11:57:38','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(197,99,'2018-11-27 11:57:38','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(198,98,'2018-11-27 11:57:38','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(199,100,'2018-11-27 12:01:51','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(200,100,'2018-11-27 12:01:51','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(201,101,'2018-11-27 12:08:33','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(202,101,'2018-11-27 12:08:33','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(203,102,'2018-11-27 12:09:21','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(204,102,'2018-11-27 12:09:21','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(205,103,'2018-11-27 12:25:39','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(206,103,'2018-11-27 12:25:39','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(207,104,'2018-11-27 12:27:51','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(208,104,'2018-11-27 12:27:51','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(209,105,'2018-11-27 12:28:02','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(210,105,'2018-11-27 12:28:02','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(211,106,'2018-11-27 12:33:35','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(212,106,'2018-11-27 12:33:35','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(213,107,'2018-11-27 12:34:51','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(214,107,'2018-11-27 12:34:51','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(215,108,'2018-11-27 12:56:08','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(216,108,'2018-11-27 12:56:08','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(217,109,'2018-11-27 12:56:43','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(218,109,'2018-11-27 12:56:43','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(219,110,'2018-11-27 12:59:51','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(220,110,'2018-11-27 12:59:51','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(221,111,'2018-11-27 13:03:35','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(222,111,'2018-11-27 13:03:35','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(223,112,'2018-11-27 13:49:21','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(224,112,'2018-11-27 13:49:21','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(225,113,'2018-11-27 13:51:14','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(226,113,'2018-11-27 13:51:14','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(227,114,'2018-11-27 14:32:50','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(228,114,'2018-11-27 14:32:50','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(229,115,'2018-11-27 14:32:51','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(230,115,'2018-11-27 14:32:51','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(231,116,'2018-11-27 14:33:02','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(232,116,'2018-11-27 14:33:02','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(233,117,'2018-11-27 14:33:18','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(234,117,'2018-11-27 14:33:18','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(235,118,'2018-11-27 14:35:32','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(236,118,'2018-11-27 14:35:32','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(237,119,'2018-11-27 14:35:53','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(238,119,'2018-11-27 14:35:53','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(239,120,'2018-11-27 14:36:20','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(240,120,'2018-11-27 14:36:20','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(241,121,'2018-11-27 14:37:03','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(242,121,'2018-11-27 14:37:03','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(243,122,'2018-11-27 14:37:13','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(244,122,'2018-11-27 14:37:13','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(245,123,'2018-11-27 14:37:22','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(246,123,'2018-11-27 14:37:22','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(247,124,'2018-11-27 14:37:45','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(248,124,'2018-11-27 14:37:45','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(249,125,'2018-11-27 14:37:53','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(250,125,'2018-11-27 14:37:53','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(251,126,'2018-11-27 14:38:05','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(252,126,'2018-11-27 14:38:05','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(253,127,'2018-11-27 14:38:46','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(254,127,'2018-11-27 14:38:46','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(255,128,'2018-11-27 14:39:47','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(256,128,'2018-11-27 14:39:47','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(257,129,'2018-11-27 14:41:42','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(258,129,'2018-11-27 14:41:42','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(259,130,'2018-11-27 14:58:27','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(260,130,'2018-11-27 14:58:27','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(261,131,'2018-11-27 15:04:34','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(262,131,'2018-11-27 15:04:34','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(263,132,'2018-11-27 15:26:54','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(264,132,'2018-11-27 15:26:54','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(265,133,'2018-11-27 15:35:57','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(266,133,'2018-11-27 15:35:57','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(267,134,'2018-11-27 16:22:32','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(268,134,'2018-11-27 16:22:33','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(269,135,'2018-11-28 10:04:02','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(270,135,'2018-11-28 10:04:02','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(271,136,'2018-11-28 10:04:38','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(272,136,'2018-11-28 10:04:38','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(273,137,'2018-11-28 10:26:39','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(274,137,'2018-11-28 10:26:39','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(275,138,'2018-11-28 10:35:15','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(276,138,'2018-11-28 10:35:15','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(277,139,'2018-11-28 10:35:35','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(278,139,'2018-11-28 10:35:35','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(279,140,'2018-11-28 10:46:52','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(280,140,'2018-11-28 10:46:52','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(281,141,'2018-11-28 10:50:21','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(282,141,'2018-11-28 10:50:21','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(283,142,'2018-11-28 10:50:27','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(284,142,'2018-11-28 10:50:27','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(285,143,'2018-11-28 10:50:29','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(286,143,'2018-11-28 10:50:29','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(287,144,'2018-11-28 10:58:04','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(288,144,'2018-11-28 10:58:04','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(289,145,'2018-11-28 11:04:51','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(290,145,'2018-11-28 11:04:51','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(291,146,'2018-11-28 11:59:42','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(292,146,'2018-11-28 11:59:42','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(293,147,'2018-11-28 12:00:48','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(294,147,'2018-11-28 12:00:48','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(295,148,'2018-11-28 12:21:09','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(296,148,'2018-11-28 12:21:09','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(297,149,'2018-11-28 13:17:30','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(298,149,'2018-11-28 13:17:30','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(299,150,'2018-11-28 13:17:40','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(300,150,'2018-11-28 13:17:40','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(301,151,'2018-11-28 13:19:54','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(302,151,'2018-11-28 13:19:54','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(303,152,'2018-11-28 13:21:07','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(304,152,'2018-11-28 13:21:07','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(305,153,'2018-11-28 13:21:26','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(306,153,'2018-11-28 13:21:26','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(307,154,'2018-11-28 13:21:44','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(308,154,'2018-11-28 13:21:44','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(309,155,'2018-11-28 13:25:48','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(310,155,'2018-11-28 13:25:48','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(311,156,'2018-11-28 13:26:17','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(312,156,'2018-11-28 13:26:17','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(313,157,'2018-11-28 13:31:44','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(314,157,'2018-11-28 13:31:44','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(315,158,'2018-11-28 13:34:17','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(316,158,'2018-11-28 13:34:17','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(317,159,'2018-11-28 13:40:42','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(318,159,'2018-11-28 13:40:42','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(319,160,'2018-11-28 13:53:44','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(320,160,'2018-11-28 13:53:44','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(321,161,'2018-11-28 13:56:11','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(322,161,'2018-11-28 13:56:11','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(323,162,'2018-11-28 14:36:15','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(324,162,'2018-11-28 14:36:15','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(325,163,'2018-11-28 14:40:13','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(326,163,'2018-11-28 14:40:13','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(327,164,'2018-11-28 14:43:49','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(328,164,'2018-11-28 14:43:49','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(329,165,'2018-11-28 15:33:46','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(330,165,'2018-11-28 15:33:46','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(331,166,'2018-11-28 15:37:08','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(332,166,'2018-11-28 15:37:08','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(333,167,'2018-11-28 15:37:22','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(334,167,'2018-11-28 15:37:22','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(335,168,'2018-11-28 15:39:40','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(336,168,'2018-11-28 15:39:40','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(337,169,'2018-11-28 15:43:11','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(338,169,'2018-11-28 15:43:11','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(339,170,'2018-11-28 15:43:18','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(340,170,'2018-11-28 15:43:18','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(341,171,'2018-11-28 15:49:26','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(342,171,'2018-11-28 15:49:26','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(343,172,'2018-11-28 15:53:32','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(344,172,'2018-11-28 15:53:32','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(345,173,'2018-11-28 16:32:08','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(346,173,'2018-11-28 16:32:08','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(347,174,'2018-11-28 16:32:09','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(348,174,'2018-11-28 16:32:09','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(349,175,'2018-11-28 16:32:55','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(350,175,'2018-11-28 16:32:55','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(351,176,'2018-11-28 16:32:59','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(352,176,'2018-11-28 16:32:59','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(353,177,'2018-11-28 16:33:55','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(354,177,'2018-11-28 16:33:55','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(355,178,'2018-11-28 16:45:15','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(356,178,'2018-11-28 16:45:15','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(357,179,'2018-11-28 16:52:33','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(358,179,'2018-11-28 16:52:33','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(359,180,'2018-11-28 16:53:36','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(360,180,'2018-11-28 16:53:36','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(361,181,'2018-11-28 17:19:55','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(362,181,'2018-11-28 17:19:55','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(363,182,'2018-11-28 17:23:09','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(364,182,'2018-11-28 17:23:09','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(365,183,'2018-11-28 17:23:45','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(366,183,'2018-11-28 17:23:45','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(367,184,'2018-11-28 17:24:56','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(368,184,'2018-11-28 17:24:56','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(369,185,'2018-11-28 17:30:48','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(370,185,'2018-11-28 17:30:48','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(371,186,'2018-11-28 17:41:26','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(372,186,'2018-11-28 17:41:26','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(373,187,'2018-11-28 17:42:39','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(374,187,'2018-11-28 17:42:39','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(375,188,'2018-11-28 17:42:43','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(376,188,'2018-11-28 17:42:43','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(377,189,'2018-11-28 17:44:50','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(378,189,'2018-11-28 17:44:50','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(379,190,'2018-11-28 17:45:22','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(380,190,'2018-11-28 17:45:22','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(381,191,'2018-11-28 17:45:46','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(382,191,'2018-11-28 17:45:46','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(383,192,'2018-11-28 17:47:16','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(384,192,'2018-11-28 17:47:16','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(385,193,'2018-11-28 17:47:42','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(386,193,'2018-11-28 17:47:42','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(387,194,'2018-11-28 17:50:09','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(388,194,'2018-11-28 17:50:09','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(389,195,'2018-11-28 17:50:10','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(390,195,'2018-11-28 17:50:10','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(391,196,'2018-11-28 17:54:00','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(392,196,'2018-11-28 17:54:00','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(393,197,'2018-11-28 17:54:46','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(394,197,'2018-11-28 17:54:46','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(395,198,'2018-11-28 17:57:21','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(396,198,'2018-11-28 17:57:21','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(397,199,'2018-11-28 17:59:33','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(398,199,'2018-11-28 17:59:33','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(399,200,'2018-11-28 18:00:51','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(400,200,'2018-11-28 18:00:51','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(401,201,'2018-11-28 18:01:54','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(402,201,'2018-11-28 18:01:54','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(403,202,'2018-11-28 18:02:17','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(404,202,'2018-11-28 18:02:17','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(405,203,'2018-11-28 18:03:32','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(406,203,'2018-11-28 18:03:32','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(407,204,'2018-11-28 18:03:54','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(408,204,'2018-11-28 18:03:54','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(409,205,'2018-11-28 18:05:05','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(410,205,'2018-11-28 18:05:05','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(411,206,'2018-11-28 18:13:16','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(412,206,'2018-11-28 18:13:16','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(413,207,'2018-11-28 18:13:35','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(414,207,'2018-11-28 18:13:35','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(415,208,'2018-11-28 18:13:41','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(416,208,'2018-11-28 18:13:41','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(417,209,'2018-11-28 18:15:41','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(418,209,'2018-11-28 18:15:41','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(419,210,'2018-11-28 18:15:47','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(420,210,'2018-11-28 18:15:47','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(421,211,'2018-11-28 18:16:53','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(422,211,'2018-11-28 18:16:53','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(423,212,'2018-11-28 18:17:27','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(424,212,'2018-11-28 18:17:27','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(425,213,'2018-11-28 18:17:58','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(426,213,'2018-11-28 18:17:58','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(427,214,'2018-11-28 18:18:18','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(428,214,'2018-11-28 18:18:18','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(429,215,'2018-11-28 18:18:34','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(430,215,'2018-11-28 18:18:34','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(431,216,'2018-11-28 18:18:55','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(432,216,'2018-11-28 18:18:55','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(433,217,'2018-11-28 18:19:21','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(434,217,'2018-11-28 18:19:21','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(435,218,'2018-11-28 18:22:06','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(436,218,'2018-11-28 18:22:06','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(437,219,'2018-11-28 18:22:53','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(438,219,'2018-11-28 18:22:53','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(439,220,'2018-11-28 18:23:04','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(440,220,'2018-11-28 18:23:04','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(441,221,'2018-11-28 18:23:05','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(442,221,'2018-11-28 18:23:05','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(443,222,'2018-11-28 18:23:05','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(444,222,'2018-11-28 18:23:05','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(445,223,'2018-11-28 18:23:08','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(446,223,'2018-11-28 18:23:08','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(447,224,'2018-11-28 18:23:26','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(448,224,'2018-11-28 18:23:26','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(449,225,'2018-11-28 18:23:33','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(450,225,'2018-11-28 18:23:33','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(451,226,'2018-11-28 18:24:05','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(452,226,'2018-11-28 18:24:05','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(453,227,'2018-11-28 18:24:47','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(454,227,'2018-11-28 18:24:47','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(455,228,'2018-11-28 18:25:03','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(456,228,'2018-11-28 18:25:03','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(457,229,'2018-11-28 18:25:41','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(458,229,'2018-11-28 18:25:41','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(459,230,'2018-11-28 18:25:48','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(460,230,'2018-11-28 18:25:48','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(461,231,'2018-11-28 18:25:56','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(462,231,'2018-11-28 18:25:56','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(463,232,'2018-11-28 18:26:01','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(464,232,'2018-11-28 18:26:01','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(465,233,'2018-11-28 18:27:36','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(466,233,'2018-11-28 18:27:36','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(467,234,'2018-11-28 18:28:27','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(468,234,'2018-11-28 18:28:27','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(469,235,'2018-11-28 18:28:38','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(470,235,'2018-11-28 18:28:38','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(471,236,'2018-11-28 18:29:57','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(472,236,'2018-11-28 18:29:57','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(473,237,'2018-11-28 18:30:18','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(474,237,'2018-11-28 18:30:18','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(475,238,'2018-11-28 18:30:25','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(476,238,'2018-11-28 18:30:25','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(477,239,'2018-11-28 18:30:35','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(478,239,'2018-11-28 18:30:35','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(479,240,'2018-11-28 18:30:57','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(480,240,'2018-11-28 18:30:57','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(481,241,'2018-11-28 18:31:07','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(482,241,'2018-11-28 18:31:07','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(483,242,'2018-11-28 18:31:39','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(484,242,'2018-11-28 18:31:39','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(485,243,'2018-11-28 18:31:39','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(486,243,'2018-11-28 18:31:39','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(487,244,'2018-11-28 18:33:26','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(488,244,'2018-11-28 18:33:26','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(489,245,'2018-11-28 18:33:28','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(490,245,'2018-11-28 18:33:28','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(491,246,'2018-11-28 18:33:30','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(492,246,'2018-11-28 18:33:30','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(493,247,'2018-11-28 18:34:16','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(494,247,'2018-11-28 18:34:16','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(495,248,'2018-11-28 18:34:20','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(496,248,'2018-11-28 18:34:20','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(497,249,'2018-11-28 18:44:00','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(498,249,'2018-11-28 18:44:01','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(499,250,'2018-11-28 18:44:08','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(500,250,'2018-11-28 18:44:08','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(501,251,'2018-11-28 18:44:54','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(502,251,'2018-11-28 18:44:54','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(503,252,'2018-11-28 18:45:08','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(504,252,'2018-11-28 18:45:08','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(505,253,'2018-11-28 18:53:18','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(506,253,'2018-11-28 18:53:18','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(507,254,'2018-11-28 18:53:19','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(508,254,'2018-11-28 18:53:19','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(509,255,'2018-11-28 18:53:23','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(510,255,'2018-11-28 18:53:23','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(511,256,'2018-11-28 18:53:29','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(512,256,'2018-11-28 18:53:29','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(513,257,'2018-11-28 18:53:32','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(514,257,'2018-11-28 18:53:32','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(515,258,'2018-11-28 18:53:36','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(516,258,'2018-11-28 18:53:36','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(517,259,'2018-11-28 18:53:37','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(518,259,'2018-11-28 18:53:37','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(519,260,'2018-11-28 18:53:39','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(520,260,'2018-11-28 18:53:39','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(521,261,'2018-11-28 18:54:43','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(522,261,'2018-11-28 18:54:43','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(523,262,'2018-11-28 18:54:45','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(524,262,'2018-11-28 18:54:46','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(525,263,'2018-11-28 18:55:49','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(526,263,'2018-11-28 18:55:49','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(527,264,'2018-11-28 18:55:56','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(528,264,'2018-11-28 18:55:56','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(529,265,'2018-11-28 18:55:59','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(530,265,'2018-11-28 18:55:59','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(531,266,'2018-11-28 18:55:59','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(532,266,'2018-11-28 18:55:59','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(533,267,'2018-11-28 18:57:23','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(534,267,'2018-11-28 18:57:23','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(535,268,'2018-11-28 18:57:24','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(536,268,'2018-11-28 18:57:24','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(537,269,'2018-11-28 18:57:29','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(538,269,'2018-11-28 18:57:29','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(539,270,'2018-11-28 19:00:51','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(540,270,'2018-11-28 19:00:51','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(541,271,'2018-11-28 19:00:52','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(542,271,'2018-11-28 19:00:52','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(543,272,'2018-11-28 19:04:04','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(544,272,'2018-11-28 19:04:04','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(545,273,'2018-11-28 19:04:09','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(546,273,'2018-11-28 19:04:09','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(547,274,'2018-11-28 19:10:07','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(548,274,'2018-11-28 19:10:07','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(549,275,'2018-11-28 19:10:09','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(550,275,'2018-11-28 19:10:09','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(551,276,'2018-11-28 19:10:20','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(552,276,'2018-11-28 19:10:20','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(553,277,'2018-11-28 19:11:35','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(554,277,'2018-11-28 19:11:35','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(555,278,'2018-11-28 19:11:48','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(556,278,'2018-11-28 19:11:48','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(557,279,'2018-11-28 19:11:48','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(558,279,'2018-11-28 19:11:48','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(559,280,'2018-11-28 19:12:20','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(560,280,'2018-11-28 19:12:20','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(561,281,'2018-11-28 19:12:21','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(562,281,'2018-11-28 19:12:21','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(563,282,'2018-11-28 19:18:08','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(564,282,'2018-11-28 19:18:08','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(565,283,'2018-11-28 19:18:33','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(566,283,'2018-11-28 19:18:33','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(567,284,'2018-11-28 19:20:39','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(568,284,'2018-11-28 19:20:39','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(569,285,'2018-11-28 19:20:51','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(570,285,'2018-11-28 19:20:51','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(571,286,'2018-11-28 19:21:49','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(572,286,'2018-11-28 19:21:49','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(573,287,'2018-11-28 19:22:19','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(574,287,'2018-11-28 19:22:19','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(575,288,'2018-11-29 08:20:00','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(576,288,'2018-11-29 08:20:00','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(577,289,'2018-11-29 08:20:20','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(578,289,'2018-11-29 08:20:20','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(579,290,'2018-11-29 08:20:22','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(580,290,'2018-11-29 08:20:22','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(581,291,'2018-11-29 08:20:25','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(582,291,'2018-11-29 08:20:25','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(583,292,'2018-11-29 08:20:27','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(584,292,'2018-11-29 08:20:27','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(585,293,'2018-11-29 08:21:20','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(586,293,'2018-11-29 08:21:20','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(587,294,'2018-11-29 08:21:29','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(588,294,'2018-11-29 08:21:29','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(589,295,'2018-11-29 08:21:35','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(590,295,'2018-11-29 08:21:35','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(591,296,'2018-11-29 08:25:22','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(592,296,'2018-11-29 08:25:22','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(593,297,'2018-11-29 08:25:26','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(594,297,'2018-11-29 08:25:26','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(595,298,'2018-11-29 08:30:29','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(596,298,'2018-11-29 08:30:29','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(597,299,'2018-11-29 10:12:53','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(598,299,'2018-11-29 10:12:53','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(599,300,'2018-11-29 10:23:51','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(600,300,'2018-11-29 10:23:51','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(601,301,'2018-11-29 10:25:21','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(602,301,'2018-11-29 10:25:22','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(603,302,'2018-11-29 10:28:01','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(604,302,'2018-11-29 10:28:01','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(605,303,'2018-11-29 10:30:52','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(606,303,'2018-11-29 10:30:52','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(607,304,'2018-11-29 10:32:50','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(608,304,'2018-11-29 10:32:50','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(609,305,'2018-11-29 10:33:46','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(610,305,'2018-11-29 10:33:46','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(611,306,'2018-11-29 10:41:44','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(612,306,'2018-11-29 10:41:44','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(613,307,'2018-11-29 10:42:38','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(614,307,'2018-11-29 10:42:38','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(615,308,'2018-11-29 10:43:18','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(616,308,'2018-11-29 10:43:18','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(617,309,'2018-11-29 10:43:21','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(618,309,'2018-11-29 10:43:21','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(619,310,'2018-11-29 10:49:11','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(620,310,'2018-11-29 10:49:11','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(621,311,'2018-11-29 10:49:32','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(622,311,'2018-11-29 10:49:32','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(623,312,'2018-11-29 10:55:51','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(624,312,'2018-11-29 10:55:51','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(625,313,'2018-11-29 11:32:41','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(626,313,'2018-11-29 11:32:41','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(627,314,'2018-11-29 11:42:12','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(628,314,'2018-11-29 11:42:12','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(629,315,'2018-11-29 11:44:40','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(630,315,'2018-11-29 11:44:40','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(631,316,'2018-11-29 11:45:36','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(632,316,'2018-11-29 11:45:36','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(633,317,'2018-11-29 13:02:30','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(634,317,'2018-11-29 13:02:30','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(635,318,'2018-11-29 13:06:18','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(636,318,'2018-11-29 13:06:18','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(637,319,'2018-11-29 13:35:48','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(638,319,'2018-11-29 13:35:48','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(639,320,'2018-11-29 14:59:04','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(640,320,'2018-11-29 14:59:04','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(641,321,'2018-11-29 15:04:42','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(642,321,'2018-11-29 15:04:42','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(643,322,'2018-11-29 15:05:43','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(644,322,'2018-11-29 15:05:43','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(645,323,'2018-11-29 15:06:00','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(646,323,'2018-11-29 15:06:00','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(647,324,'2018-11-29 15:06:13','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(648,324,'2018-11-29 15:06:13','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(649,325,'2018-11-29 15:06:26','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(650,325,'2018-11-29 15:06:26','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(651,326,'2018-11-29 15:08:02','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(652,326,'2018-11-29 15:08:02','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(653,327,'2018-11-29 15:11:24','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(654,327,'2018-11-29 15:11:24','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(655,328,'2018-11-29 15:11:25','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(656,328,'2018-11-29 15:11:25','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(657,329,'2018-11-29 15:12:16','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(658,329,'2018-11-29 15:12:16','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(659,330,'2018-11-29 15:12:45','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(660,330,'2018-11-29 15:12:45','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(661,331,'2018-11-29 15:13:36','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(662,331,'2018-11-29 15:13:36','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(663,332,'2018-11-29 15:13:36','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(664,332,'2018-11-29 15:13:36','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(665,333,'2018-11-29 15:14:32','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(666,333,'2018-11-29 15:14:32','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(667,334,'2018-11-30 16:46:30','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(668,334,'2018-11-30 16:46:30','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(669,335,'2018-11-30 17:11:18','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(670,335,'2018-11-30 17:11:18','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(671,336,'2018-11-30 17:15:36','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(672,336,'2018-11-30 17:15:36','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(673,337,'2018-11-30 18:08:52','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(674,337,'2018-11-30 18:08:52','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(675,338,'2018-11-30 18:58:36','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(676,338,'2018-11-30 18:58:36','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(677,339,'2018-11-30 18:59:41','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(678,339,'2018-11-30 18:59:41','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(679,340,'2018-11-30 19:26:00','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(680,340,'2018-11-30 19:26:00','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(681,341,'2018-11-30 19:45:36','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(682,341,'2018-11-30 19:45:36','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(683,342,'2018-11-30 19:46:06','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(684,342,'2018-11-30 19:46:06','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(685,343,'2018-11-30 19:54:22','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(686,343,'2018-11-30 19:54:22','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(687,344,'2018-11-30 20:23:43','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(688,344,'2018-11-30 20:23:43','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(689,345,'2018-11-30 20:45:02','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(690,345,'2018-11-30 20:45:02','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(691,346,'2018-11-30 20:48:48','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(692,346,'2018-11-30 20:48:48','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(693,347,'2018-11-30 20:53:01','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(694,347,'2018-11-30 20:53:01','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(695,348,'2018-11-30 21:12:23','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(696,348,'2018-11-30 21:12:23','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(697,349,'2018-11-30 21:12:42','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(698,349,'2018-11-30 21:12:42','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(699,350,'2018-11-30 21:18:38','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(700,350,'2018-11-30 21:18:38','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(701,351,'2018-11-30 21:19:37','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(702,351,'2018-11-30 21:19:37','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(703,352,'2018-11-30 21:19:45','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(704,352,'2018-11-30 21:19:46','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(705,353,'2018-11-30 21:20:46','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(706,353,'2018-11-30 21:20:47','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(707,354,'2018-11-30 21:20:49','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(708,354,'2018-11-30 21:20:49','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(709,355,'2018-11-30 21:21:28','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(710,355,'2018-11-30 21:21:29','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(711,356,'2018-11-30 21:21:41','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(712,356,'2018-11-30 21:21:41','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(713,357,'2018-11-30 22:05:19','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(714,357,'2018-11-30 22:05:19','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(715,358,'2018-11-30 23:52:50','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(716,358,'2018-11-30 23:52:50','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(717,359,'2018-12-01 00:41:25','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(718,359,'2018-12-01 00:41:25','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(719,360,'2018-12-01 15:42:42','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(720,360,'2018-12-01 15:42:42','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(721,361,'2018-12-02 12:52:19','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(722,361,'2018-12-02 12:52:19','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(723,362,'2018-12-02 14:53:32','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(724,362,'2018-12-02 14:53:32','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(725,363,'2018-12-02 14:53:41','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(726,363,'2018-12-02 14:53:41','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(727,364,'2018-12-02 16:01:18','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(728,364,'2018-12-02 16:01:18','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(729,365,'2018-12-02 21:02:22','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(730,365,'2018-12-02 21:02:22','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(731,366,'2018-12-02 21:02:28','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(732,366,'2018-12-02 21:02:28','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(733,367,'2018-12-03 11:29:53','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(734,367,'2018-12-03 11:29:53','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(735,368,'2018-12-03 13:16:32','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(736,368,'2018-12-03 13:16:32','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(737,369,'2018-12-03 13:17:11','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(738,369,'2018-12-03 13:17:11','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(739,370,'2018-12-03 13:17:12','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(740,370,'2018-12-03 13:17:12','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(741,371,'2018-12-03 13:50:38','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(742,371,'2018-12-03 13:50:38','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(743,372,'2018-12-03 18:10:55','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(744,372,'2018-12-03 18:10:55','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(745,373,'2018-12-03 18:27:10','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(746,374,'2018-12-03 18:27:10','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(747,373,'2018-12-03 18:27:10','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(748,374,'2018-12-03 18:27:10','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(749,375,'2018-12-03 18:27:12','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(750,375,'2018-12-03 18:27:12','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(751,376,'2018-12-03 18:27:18','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(752,376,'2018-12-03 18:27:19','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(753,377,'2018-12-03 18:27:27','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(754,377,'2018-12-03 18:27:27','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(755,378,'2018-12-03 18:27:27','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(756,378,'2018-12-03 18:27:27','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(757,379,'2018-12-03 18:27:29','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(758,379,'2018-12-03 18:27:29','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(759,380,'2018-12-03 18:28:11','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(760,380,'2018-12-03 18:28:11','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(761,381,'2018-12-03 18:28:13','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(762,381,'2018-12-03 18:28:13','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(763,382,'2018-12-03 18:28:13','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(764,382,'2018-12-03 18:28:13','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(765,383,'2018-12-03 18:28:13','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(766,383,'2018-12-03 18:28:13','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(767,384,'2018-12-03 18:28:17','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(768,384,'2018-12-03 18:28:17','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(769,385,'2018-12-03 18:28:27','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(770,385,'2018-12-03 18:28:27','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(771,386,'2018-12-03 18:28:29','0000-00-00 00:00:00',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(772,386,'2018-12-03 18:28:29','0000-00-00 00:00:00',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(773,387,'2020-04-07 13:11:11','2020-04-07 13:11:11',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(774,387,'2020-04-07 13:11:11','2020-04-07 13:11:11',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,89.9000,89.9000,89.9000,89.9000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,89.9000,89.9000,NULL,'[]',NULL,0.0000,0.0000,89.9000,89.9000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(775,388,'2020-04-07 13:23:45','2020-04-07 13:23:45',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL),(776,388,'2020-04-07 13:23:45','2020-04-07 13:23:45',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL);
/*!40000 ALTER TABLE `quote_address` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `quote_address_item`
--

DROP TABLE IF EXISTS `quote_address_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote_address_item` (
  `address_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Address Item Id',
  `parent_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent Item Id',
  `quote_address_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quote Address Id',
  `quote_item_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quote Item Id',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `applied_rule_ids` text COMMENT 'Applied Rule Ids',
  `additional_data` text COMMENT 'Additional Data',
  `weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Weight',
  `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty',
  `discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Discount Amount',
  `tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Tax Amount',
  `row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Row Total',
  `base_row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Row Total',
  `row_total_with_discount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Row Total With Discount',
  `base_discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Discount Amount',
  `base_tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Tax Amount',
  `row_weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Row Weight',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product Id',
  `super_product_id` int(10) unsigned DEFAULT NULL COMMENT 'Super Product Id',
  `parent_product_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent Product Id',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `image` varchar(255) DEFAULT NULL COMMENT 'Image',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text COMMENT 'Description',
  `is_qty_decimal` int(10) unsigned DEFAULT NULL COMMENT 'Is Qty Decimal',
  `price` decimal(12,4) DEFAULT NULL COMMENT 'Price',
  `discount_percent` decimal(12,4) DEFAULT NULL COMMENT 'Discount Percent',
  `no_discount` int(10) unsigned DEFAULT NULL COMMENT 'No Discount',
  `tax_percent` decimal(12,4) DEFAULT NULL COMMENT 'Tax Percent',
  `base_price` decimal(12,4) DEFAULT NULL COMMENT 'Base Price',
  `base_cost` decimal(12,4) DEFAULT NULL COMMENT 'Base Cost',
  `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message Id',
  `free_shipping` int(10) unsigned DEFAULT NULL COMMENT 'Free Shipping',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  PRIMARY KEY (`address_item_id`),
  KEY `QUOTE_ADDRESS_ITEM_QUOTE_ADDRESS_ID` (`quote_address_id`),
  KEY `QUOTE_ADDRESS_ITEM_PARENT_ITEM_ID` (`parent_item_id`),
  KEY `QUOTE_ADDRESS_ITEM_QUOTE_ITEM_ID` (`quote_item_id`),
  KEY `QUOTE_ADDRESS_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `QUOTE_ADDRESS_ITEM_QUOTE_ADDRESS_ID_QUOTE_ADDRESS_ADDRESS_ID` FOREIGN KEY (`quote_address_id`) REFERENCES `quote_address` (`address_id`) ON DELETE CASCADE,
  CONSTRAINT `QUOTE_ADDRESS_ITEM_QUOTE_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`quote_item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE,
  CONSTRAINT `QUOTE_ADDR_ITEM_PARENT_ITEM_ID_QUOTE_ADDR_ITEM_ADDR_ITEM_ID` FOREIGN KEY (`parent_item_id`) REFERENCES `quote_address_item` (`address_item_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Address Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_address_item`
--

LOCK TABLES `quote_address_item` WRITE;
/*!40000 ALTER TABLE `quote_address_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `quote_address_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `quote_id_mask`
--

DROP TABLE IF EXISTS `quote_id_mask`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote_id_mask` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `quote_id` int(10) unsigned NOT NULL COMMENT 'Quote ID',
  `masked_id` varchar(32) DEFAULT NULL COMMENT 'Masked ID',
  PRIMARY KEY (`entity_id`,`quote_id`),
  KEY `QUOTE_ID_MASK_QUOTE_ID` (`quote_id`),
  KEY `QUOTE_ID_MASK_MASKED_ID` (`masked_id`),
  CONSTRAINT `QUOTE_ID_MASK_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=389 DEFAULT CHARSET=utf8 COMMENT='Quote ID and masked ID mapping';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_id_mask`
--

LOCK TABLES `quote_id_mask` WRITE;
/*!40000 ALTER TABLE `quote_id_mask` DISABLE KEYS */;
INSERT INTO `quote_id_mask` VALUES (267,267,'00Fhg6FbiIC9xTWP2ZJaMIpLBCdQn2GB'),(261,261,'0PN2oMXxLesh425stIOILXXJ6K2dHEPe'),(87,87,'1aloO0aNwwO6A7Zmsicn1t9Le17WBt4X'),(296,296,'1smAmlIA54b6CrvDRen4WDtynN6VlKnN'),(329,329,'1zr6OPxhJZKeeVMVHqzBALCYyLQwYt1v'),(15,15,'23wEWKa8TTFwbizdfCYCHaSow2lFaJGE'),(211,211,'24zij10GN41TBy1hcPzfnZPHZtkwOTxv'),(153,153,'2A1VE9tYfGZMNe1SiEXQrZU9qnHfg5rR'),(99,98,'2fGcn2PRMeqELW0NrbzP4ylOgLWkVpzL'),(263,263,'2npU3xSeBcYhpPGEW7WPXKRAjE1j075e'),(67,67,'2qkab7La3ueU1LdEVHNf6bzvZlnEw0nz'),(166,166,'2VzkHWQI7lUAMlVM8d1bq8xVliCVMwQU'),(381,381,'3cjE67BJztMsp8SYPurKhOLpKx2Yuu8m'),(369,369,'3fQA15MULdCzhFuJnZAD6nJEFSEzPlJK'),(347,347,'3jUjVYLMs3DOepLmBw1185SUqLlJVcQA'),(7,6,'3LjwCESvfoDcut0vu64oF0JqCXnwd5Az'),(162,162,'3rmWrEeXGmovZ2TKmBkHODyYIbOkZsws'),(40,40,'3RsuYFZyKTVhncKl6ewjMJvELnGMdJdX'),(217,217,'3rzhIkstiJVE4g5z43tcO8Cqvb0VQwzz'),(158,158,'3tDBelQuWGgfJJyCOiozWJhCM1goW19Z'),(128,128,'3VWHPLMCilgupyRjJEPQYGz8DzV5DJkN'),(238,238,'3w1D4dr5fheoErnRAyww4MDyawIKz2f8'),(169,169,'3z3QnNmQd1iYVrs0uqilzr6fqzf7yKsm'),(276,276,'4akGsjLgk1OzEqGylT3SQEJ3mVvsvm3r'),(249,249,'4B5eNUwYHmcOxn1uctKBFo4Z4uJYvJej'),(255,255,'4df1rtrp8hcEsg3i5vbmUC6YxowZYlqJ'),(32,32,'4n4vRuTAwYkM6hkD4W0wsTjxrT11ZsaS'),(312,312,'4wTcazDXFxOQa5rIAR925nVMzeLVgHsP'),(12,12,'4x6QCn6YhoXxPjIyMaO88lhMccL67p5q'),(203,203,'4XujWRnEnUNF90WJJ2edvXQacKAFcrBH'),(46,46,'54pJgTPMbna7XPrbVKXwJOpBTpHBga2Y'),(366,366,'59asPFZF3s0rdjixTjRZa8uyfrJqBRf3'),(388,388,'5cvImTkgM4Lf4CwNMq1PPBT46dTjGLtY'),(139,139,'5f51RNhcaJI3iIu65Dpfp5wYI4YZIylx'),(367,367,'5szPKYvog7dWXXPxHCpHWsjrQTVnYkxt'),(286,286,'5yHHOlczn29vL6fw5HHmpWivGirOFTcp'),(52,52,'62NRczCllVpra29CqVhObjkukTGDRjbp'),(348,348,'68JAIDQCq4G09jtinPjwNGgmVQe5crCe'),(114,114,'6EtvUOVu55te0Hj8wuxiakHSfpWo24pq'),(299,299,'6o1aK8Z2kowZhFBLsO4epaSB2aOhHAVv'),(214,214,'6uJVyTrwQcWmzWcKMPE3qlXt65ZA1eSk'),(29,29,'6uto6vSnGcKXzLQuO86XyVAOX6dXOdas'),(16,16,'6VfV93kBpBVelzo21VJ52vTICemlGnw9'),(326,326,'71d1N6Nx6vyE5rSDKGul7pv3FNGGdXkN'),(53,53,'79FRqQfWv7KAh6LlBHnC0lnkvpfeGIZt'),(35,35,'7abqX5I4xNzYFC873faV1wbpW3ACWW0V'),(232,232,'7Aoaj2IBoTzKhIdrzmbRECSejPwfs7q5'),(341,341,'7JJpDOJRdgCjS49lbB686wERAwnmyob8'),(131,131,'7LUwbShCaIak8YSwyNouasYoINGFZ8Hq'),(136,136,'7qwSDmW5wr1S2rdnGwRSSJxRyX6Zc6WF'),(320,320,'7ScxgIWaFsgpsWmenZ0OdjO3Ehi2FfJn'),(336,336,'82YzwFYgd1D5EKIDOUwSl4lZUzfSLvTY'),(360,360,'8GEUla0ZjSEo5e0NF3eyRsrUAF34q7QQ'),(142,142,'8h3DyesLhbfYQUhW7oEg4Pq70fsRp4hV'),(171,171,'8NOZTqAmB9NT9bt3enCIxjw3yC5tfo6S'),(149,149,'8R8Dq0cL8SdVswhMACJw1jaBSL49tkGV'),(31,31,'8XTlp2pHxMyBW0U6dfn53dQYtgPtVhBY'),(231,231,'94zmrYsrPVZCBoj88HhRTjSbKIsxaJp1'),(66,66,'96v0s3NsIqUD6Rm4zw9jEEb0lHsuvqeu'),(206,206,'98PAvuAlxOcrYsp2qh0hwOMLrOGCfFdX'),(102,102,'9mFoMaG6SbaKdhDfnBC9uxYJrqrjUrXO'),(284,284,'9pR34QkozsQtRB8wYBMKlFQknlSOZx30'),(71,71,'9r50MvkwAKI1gy1utHabS3Iyk6tUHJ5v'),(370,370,'9WIy5whc9Gp9LXJIgLrKWh4gjvd5OYHu'),(196,196,'A9KiW1jw8JklHGSCbKuhnoT90BzUOvSA'),(270,270,'aAYF8xtWG8leIiRsIz0YOhivSOxlcBn0'),(83,83,'aJpBbOlHnMfCsnc5Vd3K0LUl5cFQDluA'),(106,106,'aJrWHbrPdben1S9FxvzWBWP875v8OW4c'),(298,298,'aLxo0PU2QBNeYtZjNrWC3V9LtaMQx9Sg'),(170,170,'AM3FTxloKLZmUz5ZhjAySLOdrnDtRKHw'),(125,125,'aQAJOKK6cP0FAF54q3kzNfHrmwfi7pOV'),(294,294,'arUXOZmDkAf1DowuLWsTiLFY1kvW82Lu'),(130,130,'aUD7RJJRuAduFfS8d0ljfhfo8Upt1w38'),(8,8,'AUgcWHUMbf2MwdmmWeQAgxroiqo00cX5'),(62,62,'AUo2BIXU6NS4HK0NVlC8pcoFzAhlUwzN'),(332,332,'axcpNyY6FCp8EkINcQxYruRyKBO862Or'),(202,202,'Ay4vuqtcd7pyKrJLAgYuPufkn6hjggIZ'),(84,84,'aZ5VtUD7RPqQ0nxJrJmB8ML61oFqW4kT'),(59,59,'AztLzwITZ6Dnwp7urZvMkLmG2jPMhu8t'),(351,351,'B3JIobhWwVrTwNZOlnnvTOKZbrGKNsLt'),(124,124,'b8VJe996sDcHCzntDzSn05l7pgUTZtK3'),(236,236,'bDBcYO6f3WPKcUZKzsIcBzsvfFWY8bx1'),(143,143,'bE42k2rNxKopDHOPK07bLFuG6JOvXCGS'),(280,280,'BkVPR5R6LeHfVlYBzVUpPHOcnWS2xEIy'),(353,353,'BmcPSCVK6AyXsbCpNYosr3iUh4bBcihh'),(228,228,'BmWvUWNzSYea1QmPhS3Mz3fmOyZP3F53'),(327,327,'bn7boFmUw9HXGHutJBrYme9JgeBvZQhn'),(72,72,'Bnq93CFMMB117L8KN2uR6Et74Y5eL5Od'),(126,126,'bqQ4Vn6wVBs7Z5NVhEEihqzRMUsrDSVI'),(56,56,'bxuKlaSSZDgfi4SKuiF1ndBPjUZKPNle'),(240,240,'C0oXtwj9auCBkBR8tycIwYRuOVXi5ilG'),(272,272,'CflYCuQUMiveDEO5S33DYamz6A5oQ4aS'),(209,209,'Cg10hTFr6h19nk05f9LDR8fFry3WpReI'),(17,17,'CKca4IDiHRc715NRmVnUwnJIPdOWzveo'),(98,99,'CLAGujBgp21xPreiVD7wiiCIRJKpxilL'),(65,65,'crw7rXW6EXmH3aXDot0tslsGV3mhsvVx'),(207,207,'cs5uiv7gsWNProZbFpw9rFxg9WvI3WDK'),(178,178,'CsPYuIpJpfe5DeMvQVKaDZGHUs9u6UvM'),(2,2,'cVLaqa1qd7C3fElEjf6759kCrYQPUFqz'),(79,79,'cx8EcXYcf2FT9sJSqacdBBjNeEHrNGhh'),(256,256,'d509bM8KNNMnEVZAow0DTjGS3MSsoqa2'),(303,303,'d9uTw4Eybd4coauoatJEC86qcQT6SwYj'),(9,9,'DAMRY6QwkVdA71yX23kQ7HxoMxCKqLih'),(26,26,'dASFZx4BpIjs4gJcpEKUeO26q4NwiVjO'),(195,195,'DfjslL946IlDXyLyXSwKVFeDcQP3UzSP'),(235,235,'dG9KqtitLPCXt8jK965as30lZnqiAPfq'),(384,384,'dhwHpOIZyQkcjSxZPhjvFfu69x0cOm9X'),(210,210,'Dmpf7AkxC6hsv1e9unm2DcoM2w5RU4wV'),(337,337,'dNF0s3fgxnyF9SN0DG4dLJ7uDszMOcQq'),(25,25,'DRg3LJ1CHjLEs5V3EwAohWBRsOBnYvJx'),(386,386,'DvKFz2iRgH3O3ITWdnT5jtb0FkQN4ilX'),(331,331,'E1YPy6w9uKnJsRc64pA7nFahtS6NLeL1'),(80,80,'E4OWA4EkbudLiqX4yIYpQw3jAuq0Ba3y'),(237,237,'e5nro1Xdg1ybgTyaSTKCRrHsrwAvCtoi'),(213,213,'eDeov6Eju7vEMQNIyw9kzzcZG46PMjsr'),(10,10,'edybijDtXWmAC8rwULqVwguv57Nk3CJI'),(11,11,'EFLEZbxiVw734bf6HrJGJBt3uD9yST1Y'),(167,167,'EIvfQpgIxzxgJUU24MAnqkmGsUoA9A49'),(55,55,'eiWoZv9mvVY10niVIsG0sD0jX84ugXIJ'),(112,112,'etKqhp3tHs7eS2nUT563HS3MJOzi7vSb'),(291,291,'ETSLZcXJiQYYxvK389Un4zWDhZ7B3F7P'),(28,28,'FbVyEuKBv95fzMsAJtDYkPp5Q1TnTezA'),(85,85,'FbxuccT7ZX7ifdRsqaEXv5vgjChUMKxB'),(101,101,'FBZwCumlPNGBxTVTsVpRG2bwTJzao20x'),(3,3,'FdkwM5bifJZDrOPeNquxj9PRsidgaiPS'),(262,262,'FFI27Jon9QYZJrWbuFDlkAgvZuwa0yY2'),(154,154,'fgY99rJr6K6QxesHafT0Os1IWhso7MtK'),(338,338,'Flw9chRwxbUq7KWTpY8qVFFcQv8gCwmz'),(140,140,'Fo1Ps7eqd5NkiSYkKUkF52DTULcORiOp'),(155,155,'fP8cLtoRtz6kdl67BHwgrL6QZ5vvFVpE'),(266,266,'FqtjZOWGaDPED7ePzVuODNAF7QJ3nKbl'),(43,43,'FsFjwb5TEqTV7UVPPjjDIZviEJiK7V44'),(27,27,'ftA1orePi8WBU44WUt5bbjwHmDNzSUTs'),(5,5,'FTD1DCJkXkCRTxqXaR97LNa4NqB2SPUL'),(193,193,'FW9KoLDGqndGxgjyOJ4B2AGdkjZ2FcTr'),(116,116,'fwSvwckph9KiDFOO0OW26cbcZOyJUJlF'),(342,342,'fXFN2e0BVPtSu5kGjuezlnP4yYgwMnV4'),(250,250,'fyLc4QSVosgCN0uBQ2cSlVRnWNC7EJ97'),(220,220,'GCJgHhO2nx2wJrdt5CUWcnPiatenHgvH'),(60,60,'gDGv8QiJ3Xk22qU7Jm89YsWCMRngkmwI'),(113,113,'gdVsNyjc9AxmEL4GAjyBLEUQjsWmzu8f'),(104,104,'GENuV7QZdw7lta0qCS3B1wri9Ly2P1rg'),(259,259,'gg5cgXPhCYKyVFQa38PryYeQ5eB5P4Um'),(4,4,'GLAYaSr8TF6Sn3WWlXdclKrs2k5dOhyd'),(38,38,'GoyKwpaheWx4x9h4f54dWxae3pG0XOvx'),(247,247,'gPWiuGu6wPrLzd8xvKSAS8qYphMnTBos'),(375,375,'GqOUnzquBCIawu7ZTYPfRFAH41zzbLnr'),(339,339,'GqvqmNVZS6vV8fK970l40VdoiKUcUdJW'),(358,358,'guAiKFBKPPZ0jbbQMHBEzKxqHXuey13i'),(241,241,'gWBoDwOGD5P5TyGugUu5BnMALkEi6CsT'),(343,343,'GxqB8eIfJdj4SqvrrgI0E1DJYcE7gPBF'),(313,313,'HAF3xXoDIQHP1xD3LzeQa6T9fLc0csJ7'),(168,168,'hAS6HslbmkO4SiHtNVIFasZks3smDxr9'),(227,227,'hijP4cq20SSi7ELM6ad504O9X7JeNAIi'),(355,355,'HJCBE97kqwzv8OWK11FD4ESHuqhF3NbB'),(58,58,'hKyzMUzQ0VeLS4x1e2AUC3cyn5luiBVL'),(54,54,'HSaPgSsuH3SkkX2X8vs7IwRGtb3pzbYq'),(374,374,'htjrJuI5f3JEsftCveY5lAQPP69I0J3r'),(51,51,'HTpvHlhX1XewMBAUfhfg0mKJknFb9209'),(173,173,'I4RIEdJPcyrRDAyVmvOy39jKFMc7CZcJ'),(363,363,'i5GUVHpK2IKTX89Hr9PvzrcIu69Sbrua'),(70,70,'i7QuKnr8irZ75dJzAxq2GDGbyJ59vtlm'),(279,279,'igp3WTjSxeuI6qXK6paZVJsXV57YmQWY'),(226,226,'IlCKB3s9pq6eB3GHLO5L9iaHq9JMIbUG'),(103,103,'IRMrpnhSLYVeBa4WlgptisJV9JATtzpl'),(177,177,'ivAyyQmNVNqBK7RheI2STNvZ4tm3Y54d'),(6,7,'IwP3s66ELr2gbN0zhIAB0kVcz3uTJKJh'),(234,234,'IXreVfbCpMhuFQohhf2orxJZ0SWwXa5k'),(225,225,'IyECpxVXjFdk0Yhsfjhb28O4JSJSS4JO'),(105,105,'J4T5omlQ3g7miqiy1TyRI2rpOlIdyHde'),(18,18,'J54ciPyU78d7THyZYHbZdVDGSXmVW8Gu'),(215,215,'JCojbYSZarrDTAIiksBOdomswTHr3a1B'),(224,224,'jhzkYM1YnM9lOz4fHtBnlVSrBPYluNnI'),(152,152,'JKiKHPQfntL7NHJh86ITcm74Kd5JKguw'),(382,382,'Jo9WEfBrsCtyCE1YRoE4gPcSX0I6XPgw'),(212,212,'jq768H2tKj0S5L1Wgh3gssgAH56uWjsV'),(14,14,'JScj2lMlgAhQ03ok6qlAoAR4OcEKCCwg'),(39,39,'jsNRgdp5ehM62O9Bo3ZFXexQUjNHoAs5'),(133,133,'KDOkfa7Joal4Rea8NZPM44UpRjzkW657'),(239,239,'Kg8OHqbJaRW1hstKOcLKS8wKKgpJIMIi'),(23,23,'kHcPGyFHntIdjZteGktSC2nvu1MRdW4X'),(88,88,'kHkQQkhghuWpqfrXllUbifAiNpcqoOSg'),(248,248,'KlAHOs0vZTiRNcujDK5c4jzDlD0izqz5'),(201,201,'krQTMd2Pe1fusyJd6ho5DypYJkqG4aVH'),(324,324,'KvLT1wjPziwkb6WzMQZT80r9QNYnoX33'),(229,229,'kVUNfJEWY0PBD0uOyPJzD38LYpqn61PL'),(354,354,'kz0yqukMmV6bi9kj0mR9yqQBXOLnvZWy'),(359,359,'L15PhGnS9VfcNDC9Luawnx9phK6qN3EA'),(135,135,'l7Q0kbDjlgxODkMgFAPmNwFJcHDXbeND'),(260,260,'labSHpE7Xq8slCG5dsRjR17FFTHVvtxR'),(251,251,'lFM6fZPzPv0ApWrl03SWzfqrXOJVpwpH'),(176,176,'lHGJ1PfhdbgIS9CtBW0fg4aXjwLDy90k'),(318,318,'LiKhSF9IgsAtSGuIfI1na8WdQONSBEr6'),(245,245,'LitoEvUMIXBjx57pGLvOTK4Fq9TFKiCv'),(110,110,'lkPnyL2mL5hNuHRAAwHc0MhEOqjNykCh'),(115,115,'lLF1tHNaqq2qXJjQFGxIHYovLre7d1w6'),(121,121,'lloTAuwNPrYCKXdOyfRcACkfaWn2sOT3'),(22,22,'LONmDEiQ45ecqL2I43M06vbeU4sivKhp'),(230,230,'lpC8XmbtalhcDWtw1APiIgX7c9KOWaXB'),(349,349,'ltQ9xTJjKUppbe27EIDwVO4QFN2z59zk'),(123,123,'lyuVM5YRdYG9Nb7H8Ib7bXmezdFeY5g7'),(352,352,'LYYuSv487uvFpVjLHkdzUZ7ViVMhtqjQ'),(78,78,'MbDGWmz1TeyrT692ek1FdtQwV3Ali0Bx'),(377,377,'mE5xK933nv2LqcWS203zYxBHpQa41qtF'),(379,379,'MVP44Xz0ZNK3F6QCcQXsdS0M4uXOzRXH'),(335,335,'MXnVlw9IVJ4DrTnLfeH4KkgPlvLYcYVA'),(13,13,'n6wFJjubWyuipfn7kuQXXWTkhedEKm8s'),(216,216,'nByjF3UkTuFup2MXy10ymLbFZy25Ti8h'),(157,157,'nERM7kpbIg8b0KbrVWnGJgnjSHcLez7V'),(145,145,'niwfe7JCbMa5Ecp4YYJGQIssRYpy0OVR'),(198,198,'NKfgQ5ezGn9dg8OhWywFLTmeMVFKqY1o'),(380,380,'NKnHySyYAhAlgQ7eM1GmMZJNzTavt4Mg'),(308,308,'NlkrAnoATpkdnhvl3VgdfbkPpdITd52X'),(328,328,'NNadRtBlVAv2TIPTnWck2srLQSFZ4QEP'),(269,269,'NO9ej4QENlhIGHTrPZWOpBeP50Y2SIZQ'),(208,208,'Npf0FiD8hNGKyLGLU0m4tP35x4OEjksD'),(151,151,'Nvzep4XX7JXOBZh02S11cdIDFT32DtUS'),(200,200,'nYo3I3RH2uNcaOwFmyygRoJdYtsWCFID'),(295,295,'o0LGfh46zCuZPSLzdpW7Wp107bZ6UFzb'),(189,189,'O2SGkZw0qRhJhsBNBeJKR66VBatsfDq0'),(156,156,'O3oXd6qYgvBhFKLgtXjUC4GZwT5X5Qtu'),(257,257,'o5gCPGsUX5hz3Y3CCsCbvVcw9z8nWOiO'),(273,273,'o8IUN1gHhsPQfqFN9IFKG9tKWijSXNoy'),(205,205,'ofSKb5PHVN4lF9BfJRmEeJSQmRi6590I'),(333,333,'Og06Y6Pgz0xha0pP7SscY1hcB28gE1Iu'),(243,243,'oivAqaAyhwse4LRgTa82RosEFVZWaerI'),(175,175,'ONIKqcXPLsm3ngB0CLo8I9kPikMwEZhK'),(82,82,'OODpBBQHHS65U0GaMXkbBzGcTaoNgmmb'),(33,33,'oSp0VjNqFAfd8EA9LxGAeVpUFYnUXrRA'),(86,86,'OsrAw1bvhDefDPZ2oCDtczy6ZHgUV71O'),(221,221,'OT6wVzQaPkAc5fI2cFSqT00Xh3vh8HMN'),(194,194,'p2wqsfNZLimbyfQ4s22ynHdXJRIGUbkd'),(179,179,'P3c6uMipUCeLtnn0mV9sD9fgmN8MGIgK'),(265,265,'pFDQKds7iWZHXVK5DwGROGOFpZ7Yno5p'),(278,278,'Pg2gldNIu6mvQDjKZJEDP7dBxOKNCrMo'),(289,289,'pLAknJFKgKBiAIp00WV0pRGKlkDeJLCE'),(362,362,'PLDwiSPRuJbVAb6L6oX3lH3dgB9MDzGG'),(34,34,'PolsVzPgMuAoAvLzOJ8N5FywsOmJfJbI'),(323,323,'PpeAO1CkcfFGEfR7xhZ4eMncTZEFJg8M'),(330,330,'PRZZYuzg9s6UUHR5MeHdjDCpa0hgk2qf'),(147,147,'PUDIpxapChWAvixDxreZKaABdEUBVvSN'),(321,321,'pYboQp7RuRfYvTbkMlpBnb0LbbrQWSaV'),(383,383,'Q4049cuTpaqOEwAW05JeSrqyLNxnBxgu'),(119,119,'q4BDTL7FNIyD9FiBNkfo4OlP1TD6cnBy'),(288,288,'q9VdUBoXrz4oZ3o3EJaeYs3Ax9YJIVBi'),(302,302,'qB0V3D5AxKz9jDo6Fnp4kpAEvOfnvPwS'),(387,387,'qcdtBBmCQC5Lc8XM2Oiw36VoUGSwbwCr'),(309,309,'QE16M3JgpFs3siJ2sv1W7EcOgUzdHVGZ'),(188,188,'qEhiGRcOEEbffAagzBquk95wk1kQ1kWS'),(47,47,'QFIbzKfMMHJQlsBROE8Di5AHiQDT1fuP'),(304,304,'qK8m2XvIQcaj4Gf4T5UsAo5yp6fbs6jR'),(283,283,'qnrQPQaqzGgd8dsH714YobSHM2yKT9Cn'),(223,223,'QVpGoKb12zJ8h5MNZWoJvD7pQblaPFub'),(75,75,'R3lG3wyc4oRA7CcV1R203MTspFS9f4iN'),(64,64,'R4ea7L0kWulyhWBazTeMPngeEEub60sX'),(165,165,'R7S6KN1AQlOLTO0FhIxMy9ZCQkna2BNB'),(274,274,'ra4d9fUfEAMXfMbuYA6Mf9f5zTCaIODT'),(346,346,'rFe7rr4mHfBpBovanm2QGAV9Eqd4qZFJ'),(197,197,'RgGmynO1n2tAa1hdutay07E23o4qjccx'),(117,117,'rig9oGkx9EWmPVzUqOxKh7Q1RhFbpp5h'),(307,307,'rK4eNFpDWyfPs0GXeBrsC764optcCqyJ'),(120,120,'rKuzE5jm2w9NL91cwVFC19fuobRJnejV'),(222,222,'RlPPwmBPohSXticRHFOykebUN9zaOjU0'),(91,91,'rLYp1M5orlnUamdL6e0kGc4qQlf8yDNw'),(57,57,'RohZhMKWMXOyB8FLl8DTdhXoQA2eP0oY'),(246,246,'rOtBDAEKNihaND7Rx5vxG5YVcsBHYBkF'),(314,314,'rTm2Yi9wfEXok5SBMTmXhgoee2sv9eSw'),(61,61,'rWiHXjxT1s2C2aqbiFylq5zFdznnpZdR'),(76,76,'rxUlG0p7o07344gqr9z19ircxazg4Fwc'),(81,81,'s2lNuEeAlQ8i3T8Yx6ny1wadzElrpgSO'),(190,190,'samj1F3ZEpdaiTyGRIhG0H4YOqIoLxZ4'),(219,219,'SdrY6KQspG7QtoQTjvlfMjPpOdBpc36F'),(315,315,'seGc2m4DjxGN6GwlX13ob4KzLCHjNNTw'),(97,97,'sGVEWVih4foRNTNrxobWxUoN3g3MdHmg'),(316,316,'SJX2V9Atb1rzaE3PezFcmD3hnpXlCO2O'),(186,186,'skh8G8oCBjAX6QCz1t8nf6fNYD905FvX'),(108,108,'SKoBpC0iLJb31iaRcSNddyQgP2AhN9Kw'),(311,311,'skPXISBo7fa2BMRIvXbhucmlpfJVb3qR'),(293,293,'SrrI9q453bW9Ftg43WxVY9QXaXxULn37'),(371,371,'StajldZt1A4hjp0G8wxFwtdytSk1jK5r'),(183,183,'sU4AZOGuQuzxSETq3OCjXUBu9ibqVSGD'),(199,199,'SuHiKt50jhpx7431waK6dBuhUnH4Qp2D'),(19,19,'syMbf4QIoAuJD4Kv2sjl4SEEJAlRigGi'),(271,271,'sYZrnjQ0JxWglLUo47PSZ4wMWU27aONl'),(242,242,'sz15RVHtjUIvPvCKrnMUCg5I52zdaRSI'),(41,41,'t15OmuR2TevmwPTK3V2cjczl3pkcGSBG'),(92,92,'t8TadEMPicZrjX8lHlYEiGZFkIPJFHcf'),(138,138,'t8zWbSXNMHu1EJ5ajDBDiMeAi1mRJf4q'),(325,325,'tadOXzdJLarEciWJhHlbOYF8Fh22p4b0'),(184,184,'TASCEtNzpRrbCgkSlr2Jbkk4TIrgxM7d'),(24,24,'tcnzua9o00vGIdXpUN4SHcWQj4K5xg4r'),(141,141,'td6c9vKvoJqeuYeEFS2nvTW2hJWsdyPM'),(376,376,'TDbNRhNKf8HYyuYkYMCWOnzsKn8hBLn2'),(182,182,'tJE5Zj8dzvGjfy1TiRul4OJ4jWJx2aO5'),(301,301,'TjwCuKFKaVnZqa70YzIfGZCijJMtjkPT'),(100,100,'tmlmnG7fIFT6bTl8Pcz6bpRqcVrWIpnz'),(1,1,'TquODbp3eBuhYtQbz071TcKckcTP5dbZ'),(319,319,'trq7vzSW13Xzm7LwAhSCDoA2EKOhmRjw'),(253,253,'TtULuQKBxMhdXXv6nBPNcZOX66b1okVs'),(68,68,'TVmiR0FXP5YIOFQCpf9CTsBLJKwU286O'),(134,134,'twdVMh9k6YUZnRhSeWFVsV77sZn6Tzg6'),(344,344,'TXOMc2aPYVYGFYuWzLXJSyyOpFqATeHW'),(350,350,'TxZVkYgiTr02RfsnGdxmL1ZrCf0CVkX8'),(356,356,'tzIC87iZwvemFd2DceknyjqKekVDxVG9'),(107,107,'tzTTWXo8JyqTkGPIjonzIhHcms1VY41o'),(180,180,'U02Eqq9AfhtHB6DdetX72OshoPIxxP5G'),(233,233,'U38LX91MWZUeMaTQvnAi7RvGbrQSPC52'),(109,109,'u5YOUTwS0YdwgIHH4kGbJmv0aqQxlqGz'),(77,77,'u7MtCgVW6hO06OIqg4HiElsb6rxg8FjH'),(161,161,'u7rWECDmtux7bkTVWmTNr6BQyl56M10V'),(118,118,'ubhNShYzqL430VTZ0JUwuxe42MKsqvNI'),(345,345,'UccvSvGMejuiYN0FGskScRE6fQeNZYN1'),(305,305,'uCStNhArWAP04CpXf0xAy0Q8VKx8vFmT'),(95,95,'UEvCHG2Iroq7TQwTl0D2NZqsG3z6jzhF'),(37,37,'UiIbAV3egKJD3qOG7jw94PJQYXVGhDZl'),(69,69,'unOJ9mAdugJqowSn3zNeqAfdcIbUAXqp'),(244,244,'UqsK3ZQQScfN6gkj6mGlvCiGLngVvcCW'),(21,21,'uWdSPQFxEknpileKuuzY1sEL7wMcF9Ds'),(132,132,'uWpqziXviYAaqk6ekrO8MSwLVThzNiNc'),(191,191,'uynnhqE1DnXpeMbSqqZ9ge0alvDqXHcS'),(322,322,'v5Vh65XGoElzVsiBaUNmRYN9UdX0pnS8'),(254,254,'vAnZycFrbEmdGO8YZqcQHwLjYzILVKiD'),(268,268,'VDKo0Yuo378eNGIprtKVYPFJQnpNwhso'),(129,129,'VDWsDQNLBXQGoj7l5gyblKdgoHLK8V2w'),(340,340,'vTn4cF8s05QsVg3azjiE1ZpEMusArDDA'),(30,30,'VuLe0NTIyaJbUbfA4fIPVJLH9cwee6vM'),(281,281,'vXTWcJ5EmJKpQRnecB9SUf8boWphX6qV'),(185,185,'VXZOg2uLTz2aa0t2iI6BBgkFlJ3jBAis'),(122,122,'W9jLygwM2hJtNVXhukPM2X71581CIlVQ'),(364,364,'wAtExV1mb73KQZCyBBzIFAcFUtyPgMtB'),(204,204,'wDfdlSHN9x0ybBvUwyH2qHVNsrVINIhi'),(148,148,'WFiAJaufHyOuQgTqNMSwneVzsUuCY1K8'),(96,96,'WgxXBhrJyS3u6Z1avjQlngUo7lNGq7le'),(277,277,'WhL2pgtnEllCFy9RqdXEEzXiNaUe2elB'),(252,252,'whxyIhSPQOZWXn3my0tLLN6afNKUQ88A'),(163,163,'wkSDNhU6Z3dhD4CvKvvZ97dZZOp6jrn7'),(20,20,'WkwNuUCIzH0aWnn1Zc6tBRt7S91WlOuA'),(93,93,'wnPFzUxXOq0Z2c7F87RzYEI166zo6wM9'),(73,73,'WP0QqyexPMqUiws9xgcHlbBZZKKu1r22'),(45,45,'wqSv0jp9rtiY20l277w4ucD17IUltIT0'),(368,368,'WYqpkDY6vRYbzvuQehuoJUmrNXFg2dco'),(300,300,'Xb5HvfP4udiSOvt23eiCDpp7wQcTFVe7'),(192,192,'XBukbk93C5YA4mCHP1ucJA4O1OrBD2Gj'),(137,137,'XdiUuzuLuGrkse3mpnjcyeec7HqpUjh4'),(181,181,'xeDi5dBsNZfYR1QnzbhMw5Pv7zE6LL6b'),(172,172,'xIF5BhwEQVZmvYSgzvj21gktqJxeOC6v'),(187,187,'xix2cFwzWOKghkBFBJ3PxRcEkItSufUg'),(290,290,'XkRUfMFDN1SJKywoW9VcmUxmra1xaOhH'),(36,36,'Xldpay6pbtMGKcDffYaruWs37Lk3q6KL'),(44,44,'xnusmOae0PC7oZaZbv4Gu9iSYYeT3EEy'),(287,287,'XqbVJWHwir8rjmAAOTJ9liizFJ7x5uXR'),(385,385,'xU38FjqqznYOUH2AdabHziI8Edd9A8rv'),(111,111,'XV2iJyLk20Hqo0hLByCvHBzIYDRmBwic'),(361,361,'xvHGvf9qizfuKSjZjXAtNsTv1wHLXmRX'),(282,282,'XWPcziL71ym4RhEOOZNAyylG3p8PURaC'),(378,378,'xYNE6eYrM3Ro0og8ZNkFTRK9IDHbDieh'),(264,264,'y2tt0LfAKoeRAnnHvdZl9Ak5rDwbeizb'),(90,90,'y3kc9nIjA9ZvcmrO5GviGhYohPY1nljr'),(74,74,'yAiC3XfUV0aNkNZJDG6uxTD0D6kmzZH1'),(334,334,'YcMr8mf88TwOMXIEoev6zjUE1kTvTVbW'),(94,94,'ydJ0Oztqz0QoCE8Jhi45QQGh9t1vjq2R'),(372,372,'yg17BoMRP5DdS8nlZeGOTRyf0tk6hzxS'),(317,317,'Ygqm9mfUe5H5l7zg3ZtzKN1hPHvdZsw0'),(373,373,'YIE5O5ZLnQjbw7I8iZ3pb5dq8qpqtYwV'),(150,150,'YNAIqX2WB2UIOfL4zmVpKRDSu1fs1BBQ'),(144,144,'ynOfrVh7qiKnb7lLsXp8fJTkqQVgrSMa'),(160,160,'YSjnDEkNiAhKxmBbwJJaZ3VWxPlOZCYp'),(49,49,'yvOXFUbmBLiTh6fsaE2OZdhJvGLMth0D'),(357,357,'Yw3kt6Fvu64zJ1dOFE7J9uDREUprvSdj'),(48,48,'YYOoFDaK4cQsQMSQyAZhAPV567KLX6Ny'),(174,174,'ZCOaD0kG6ewmmH4BjkpgRQionTCkMly4'),(42,42,'zdx5XLmSKnP8kY2SZoVUdQNp497ddwov'),(285,285,'zfP6UiRzg5oSSW5mjWqoa70PSxf4voS7'),(89,89,'ZHYg9Cds0IEVYslbKgKOce7zqjNs2VA0'),(50,50,'zi0W9ly2XFvDzb3RO5XnvgVYdsFjv81d'),(258,258,'zicg8fiwcpJ79WzPHdlG7jzw9BPtn9TT'),(297,297,'ZKFolP4Ihmb8N0n5XQ2Cs7XVwMhFksxA'),(306,306,'ZKGTnhHXD483A3NtxvkJhj5FlcdYbbQ4'),(146,146,'ZoUalbDDO2Qi7OJ56tW91fbAiY0iERGH'),(310,310,'ZPkFXxVYWHgy1D5jGbvoeYe7Qv2UWYEe'),(275,275,'zRDQd4e5XPm9GaCdvuFox1THsX3FClUZ'),(127,127,'ZRjby6ZwrisHYfnjuIDDl1stlUfL5dHw'),(159,159,'Zsjbsu3JM5tEAqoLxAGsDqjcZ4mXK9fb'),(292,292,'ZtqO1f3YkQuassZVzGB4CirwuX6UMQVJ'),(164,164,'ZTScnLFJHTaNpoumOFj81wcCrIrDWn8S'),(365,365,'ZwXhHNQgAvp8j6nH1eMJg1SAh4X5E6DM'),(63,63,'ZYGMaNRVP72WxqjkoiE5XZzHRF6BR30Q'),(218,218,'ZzrLWBN2gFjXsyyyBzCQPRowWqHnpo0t');
/*!40000 ALTER TABLE `quote_id_mask` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `quote_item`
--

DROP TABLE IF EXISTS `quote_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote_item` (
  `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item Id',
  `quote_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quote Id',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product Id',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `parent_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent Item Id',
  `is_virtual` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Virtual',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text COMMENT 'Description',
  `applied_rule_ids` text COMMENT 'Applied Rule Ids',
  `additional_data` text COMMENT 'Additional Data',
  `is_qty_decimal` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Qty Decimal',
  `no_discount` smallint(5) unsigned DEFAULT '0' COMMENT 'No Discount',
  `weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Weight',
  `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty',
  `price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Price',
  `base_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Price',
  `custom_price` decimal(12,4) DEFAULT NULL COMMENT 'Custom Price',
  `discount_percent` decimal(12,4) DEFAULT '0.0000' COMMENT 'Discount Percent',
  `discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Discount Amount',
  `base_discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Discount Amount',
  `tax_percent` decimal(12,4) DEFAULT '0.0000' COMMENT 'Tax Percent',
  `tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Tax Amount',
  `row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Row Total',
  `base_row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Row Total',
  `row_total_with_discount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Row Total With Discount',
  `row_weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Row Weight',
  `product_type` varchar(255) DEFAULT NULL COMMENT 'Product Type',
  `base_tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Before Discount',
  `tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Before Discount',
  `original_custom_price` decimal(12,4) DEFAULT NULL COMMENT 'Original Custom Price',
  `redirect_url` varchar(255) DEFAULT NULL COMMENT 'Redirect Url',
  `base_cost` decimal(12,4) DEFAULT NULL COMMENT 'Base Cost',
  `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message Id',
  `free_shipping` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Free Shipping',
  `weee_tax_applied` text COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  PRIMARY KEY (`item_id`),
  KEY `QUOTE_ITEM_PARENT_ITEM_ID` (`parent_item_id`),
  KEY `QUOTE_ITEM_PRODUCT_ID` (`product_id`),
  KEY `QUOTE_ITEM_QUOTE_ID` (`quote_id`),
  KEY `QUOTE_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `QUOTE_ITEM_PARENT_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`parent_item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE,
  CONSTRAINT `QUOTE_ITEM_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `QUOTE_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_item`
--

LOCK TABLES `quote_item` WRITE;
/*!40000 ALTER TABLE `quote_item` DISABLE KEYS */;
INSERT INTO `quote_item` VALUES (1,387,'2020-04-07 13:18:20','2020-04-07 13:18:20',2417,1,NULL,0,'n31043406-black-Extra small size','81 Hours Cashmere Pullover',NULL,NULL,NULL,0,0,NULL,1.0000,89.9000,89.9000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,89.9000,89.9000,0.0000,0.0000,'configurable',NULL,NULL,NULL,NULL,NULL,89.9000,89.9000,89.9000,89.9000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,387,'2020-04-07 13:18:20','2020-04-07 13:18:20',2415,1,1,0,'n31043406-black-Extra small size','81 Hours Cashmere Pullover-black-Extra small size',NULL,NULL,NULL,0,0,NULL,1.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `quote_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `quote_item_option`
--

DROP TABLE IF EXISTS `quote_item_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote_item_option` (
  `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Id',
  `item_id` int(10) unsigned NOT NULL COMMENT 'Item Id',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `value` text COMMENT 'Value',
  PRIMARY KEY (`option_id`),
  KEY `QUOTE_ITEM_OPTION_ITEM_ID` (`item_id`),
  CONSTRAINT `QUOTE_ITEM_OPTION_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Item Option';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_item_option`
--

LOCK TABLES `quote_item_option` WRITE;
/*!40000 ALTER TABLE `quote_item_option` DISABLE KEYS */;
INSERT INTO `quote_item_option` VALUES (1,1,2417,'info_buyRequest','{\"product\":\"2417\",\"qty\":1,\"super_attribute\":{\"93\":\"73\",\"212\":\"77\"}}'),(2,1,2417,'attributes','{\"93\":\"73\",\"212\":\"77\"}'),(3,1,2415,'product_qty_2415','1'),(4,1,2415,'simple_product','2415'),(5,2,2415,'info_buyRequest','{\"product\":\"2417\",\"qty\":1,\"super_attribute\":{\"93\":\"73\",\"212\":\"77\"}}'),(6,2,2415,'parent_product_id','2417');
/*!40000 ALTER TABLE `quote_item_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `quote_payment`
--

DROP TABLE IF EXISTS `quote_payment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote_payment` (
  `payment_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Payment Id',
  `quote_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quote Id',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `method` varchar(255) DEFAULT NULL COMMENT 'Method',
  `cc_type` varchar(255) DEFAULT NULL COMMENT 'Cc Type',
  `cc_number_enc` varchar(255) DEFAULT NULL COMMENT 'Cc Number Enc',
  `cc_last_4` varchar(255) DEFAULT NULL COMMENT 'Cc Last 4',
  `cc_cid_enc` varchar(255) DEFAULT NULL COMMENT 'Cc Cid Enc',
  `cc_owner` varchar(255) DEFAULT NULL COMMENT 'Cc Owner',
  `cc_exp_month` varchar(255) DEFAULT NULL COMMENT 'Cc Exp Month',
  `cc_exp_year` smallint(5) unsigned DEFAULT '0' COMMENT 'Cc Exp Year',
  `cc_ss_owner` varchar(255) DEFAULT NULL COMMENT 'Cc Ss Owner',
  `cc_ss_start_month` smallint(5) unsigned DEFAULT '0' COMMENT 'Cc Ss Start Month',
  `cc_ss_start_year` smallint(5) unsigned DEFAULT '0' COMMENT 'Cc Ss Start Year',
  `po_number` varchar(255) DEFAULT NULL COMMENT 'Po Number',
  `additional_data` text COMMENT 'Additional Data',
  `cc_ss_issue` varchar(255) DEFAULT NULL COMMENT 'Cc Ss Issue',
  `additional_information` text COMMENT 'Additional Information',
  `paypal_payer_id` varchar(255) DEFAULT NULL COMMENT 'Paypal Payer Id',
  `paypal_payer_status` varchar(255) DEFAULT NULL COMMENT 'Paypal Payer Status',
  `paypal_correlation_id` varchar(255) DEFAULT NULL COMMENT 'Paypal Correlation Id',
  PRIMARY KEY (`payment_id`),
  KEY `QUOTE_PAYMENT_QUOTE_ID` (`quote_id`),
  CONSTRAINT `QUOTE_PAYMENT_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Payment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_payment`
--

LOCK TABLES `quote_payment` WRITE;
/*!40000 ALTER TABLE `quote_payment` DISABLE KEYS */;
/*!40000 ALTER TABLE `quote_payment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `quote_shipping_rate`
--

DROP TABLE IF EXISTS `quote_shipping_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote_shipping_rate` (
  `rate_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rate Id',
  `address_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Address Id',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `carrier` varchar(255) DEFAULT NULL COMMENT 'Carrier',
  `carrier_title` varchar(255) DEFAULT NULL COMMENT 'Carrier Title',
  `code` varchar(255) DEFAULT NULL COMMENT 'Code',
  `method` varchar(255) DEFAULT NULL COMMENT 'Method',
  `method_description` text COMMENT 'Method Description',
  `price` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Price',
  `error_message` text COMMENT 'Error Message',
  `method_title` text COMMENT 'Method Title',
  PRIMARY KEY (`rate_id`),
  KEY `QUOTE_SHIPPING_RATE_ADDRESS_ID` (`address_id`),
  CONSTRAINT `QUOTE_SHIPPING_RATE_ADDRESS_ID_QUOTE_ADDRESS_ADDRESS_ID` FOREIGN KEY (`address_id`) REFERENCES `quote_address` (`address_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Shipping Rate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_shipping_rate`
--

LOCK TABLES `quote_shipping_rate` WRITE;
/*!40000 ALTER TABLE `quote_shipping_rate` DISABLE KEYS */;
/*!40000 ALTER TABLE `quote_shipping_rate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rating`
--

DROP TABLE IF EXISTS `rating`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rating` (
  `rating_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rating ID',
  `entity_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `rating_code` varchar(64) NOT NULL COMMENT 'Rating Code',
  `position` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Position On Storefront',
  `is_active` smallint(6) NOT NULL DEFAULT '1' COMMENT 'Rating is active.',
  PRIMARY KEY (`rating_id`),
  UNIQUE KEY `RATING_RATING_CODE` (`rating_code`),
  KEY `RATING_ENTITY_ID` (`entity_id`),
  CONSTRAINT `RATING_ENTITY_ID_RATING_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `rating_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Ratings';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating`
--

LOCK TABLES `rating` WRITE;
/*!40000 ALTER TABLE `rating` DISABLE KEYS */;
INSERT INTO `rating` VALUES (1,1,'Quality',0,1),(2,1,'Value',0,1),(3,1,'Price',0,1);
/*!40000 ALTER TABLE `rating` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rating_entity`
--

DROP TABLE IF EXISTS `rating_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rating_entity` (
  `entity_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `entity_code` varchar(64) NOT NULL COMMENT 'Entity Code',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `RATING_ENTITY_ENTITY_CODE` (`entity_code`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Rating entities';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_entity`
--

LOCK TABLES `rating_entity` WRITE;
/*!40000 ALTER TABLE `rating_entity` DISABLE KEYS */;
INSERT INTO `rating_entity` VALUES (1,'product'),(2,'product_review'),(3,'review');
/*!40000 ALTER TABLE `rating_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rating_option`
--

DROP TABLE IF EXISTS `rating_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rating_option` (
  `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rating Option Id',
  `rating_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Id',
  `code` varchar(32) NOT NULL COMMENT 'Rating Option Code',
  `value` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Option Value',
  `position` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Ration option position on Storefront',
  PRIMARY KEY (`option_id`),
  KEY `RATING_OPTION_RATING_ID` (`rating_id`),
  CONSTRAINT `RATING_OPTION_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COMMENT='Rating options';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_option`
--

LOCK TABLES `rating_option` WRITE;
/*!40000 ALTER TABLE `rating_option` DISABLE KEYS */;
INSERT INTO `rating_option` VALUES (1,1,'1',1,1),(2,1,'2',2,2),(3,1,'3',3,3),(4,1,'4',4,4),(5,1,'5',5,5),(6,2,'1',1,1),(7,2,'2',2,2),(8,2,'3',3,3),(9,2,'4',4,4),(10,2,'5',5,5),(11,3,'1',1,1),(12,3,'2',2,2),(13,3,'3',3,3),(14,3,'4',4,4),(15,3,'5',5,5);
/*!40000 ALTER TABLE `rating_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rating_option_vote`
--

DROP TABLE IF EXISTS `rating_option_vote`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rating_option_vote` (
  `vote_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Vote id',
  `option_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Vote option id',
  `remote_ip` varchar(16) NOT NULL COMMENT 'Customer IP',
  `remote_ip_long` bigint(20) NOT NULL DEFAULT '0' COMMENT 'Customer IP converted to long integer format',
  `customer_id` int(10) unsigned DEFAULT '0' COMMENT 'Customer Id',
  `entity_pk_value` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'Product id',
  `rating_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Rating id',
  `review_id` bigint(20) unsigned DEFAULT NULL COMMENT 'Review id',
  `percent` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Percent amount',
  `value` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Vote option value',
  PRIMARY KEY (`vote_id`),
  KEY `RATING_OPTION_VOTE_REVIEW_ID_REVIEW_REVIEW_ID` (`review_id`),
  KEY `RATING_OPTION_VOTE_OPTION_ID` (`option_id`),
  CONSTRAINT `RATING_OPTION_VOTE_OPTION_ID_RATING_OPTION_OPTION_ID` FOREIGN KEY (`option_id`) REFERENCES `rating_option` (`option_id`) ON DELETE CASCADE,
  CONSTRAINT `RATING_OPTION_VOTE_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating option values';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_option_vote`
--

LOCK TABLES `rating_option_vote` WRITE;
/*!40000 ALTER TABLE `rating_option_vote` DISABLE KEYS */;
/*!40000 ALTER TABLE `rating_option_vote` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rating_option_vote_aggregated`
--

DROP TABLE IF EXISTS `rating_option_vote_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rating_option_vote_aggregated` (
  `primary_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Vote aggregation id',
  `rating_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Rating id',
  `entity_pk_value` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'Product id',
  `vote_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Vote dty',
  `vote_value_sum` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'General vote sum',
  `percent` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Vote percent',
  `percent_approved` smallint(6) DEFAULT '0' COMMENT 'Vote percent approved by admin',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  PRIMARY KEY (`primary_id`),
  KEY `RATING_OPTION_VOTE_AGGREGATED_RATING_ID` (`rating_id`),
  KEY `RATING_OPTION_VOTE_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `RATING_OPTION_VOTE_AGGREGATED_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE,
  CONSTRAINT `RATING_OPTION_VOTE_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating vote aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_option_vote_aggregated`
--

LOCK TABLES `rating_option_vote_aggregated` WRITE;
/*!40000 ALTER TABLE `rating_option_vote_aggregated` DISABLE KEYS */;
/*!40000 ALTER TABLE `rating_option_vote_aggregated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rating_store`
--

DROP TABLE IF EXISTS `rating_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rating_store` (
  `rating_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Rating id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store id',
  PRIMARY KEY (`rating_id`,`store_id`),
  KEY `RATING_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `RATING_STORE_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE,
  CONSTRAINT `RATING_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating Store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_store`
--

LOCK TABLES `rating_store` WRITE;
/*!40000 ALTER TABLE `rating_store` DISABLE KEYS */;
INSERT INTO `rating_store` VALUES (1,0),(2,0),(3,0),(1,1),(2,1),(3,1);
/*!40000 ALTER TABLE `rating_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rating_title`
--

DROP TABLE IF EXISTS `rating_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rating_title` (
  `rating_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `value` varchar(255) NOT NULL COMMENT 'Rating Label',
  PRIMARY KEY (`rating_id`,`store_id`),
  KEY `RATING_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `RATING_TITLE_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE,
  CONSTRAINT `RATING_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating Title';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_title`
--

LOCK TABLES `rating_title` WRITE;
/*!40000 ALTER TABLE `rating_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `rating_title` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `release_notification_viewer_log`
--

DROP TABLE IF EXISTS `release_notification_viewer_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `release_notification_viewer_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `viewer_id` int(10) unsigned NOT NULL COMMENT 'Viewer admin user ID',
  `last_view_version` varchar(16) NOT NULL COMMENT 'Viewer last view on product version',
  PRIMARY KEY (`id`),
  UNIQUE KEY `RELEASE_NOTIFICATION_VIEWER_LOG_VIEWER_ID` (`viewer_id`),
  CONSTRAINT `RELEASE_NOTIFICATION_VIEWER_LOG_VIEWER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`viewer_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Release Notification Viewer Log Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `release_notification_viewer_log`
--

LOCK TABLES `release_notification_viewer_log` WRITE;
/*!40000 ALTER TABLE `release_notification_viewer_log` DISABLE KEYS */;
INSERT INTO `release_notification_viewer_log` VALUES (1,1,'2.3.0'),(2,2,'2.3.0');
/*!40000 ALTER TABLE `release_notification_viewer_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `report_compared_product_index`
--

DROP TABLE IF EXISTS `report_compared_product_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `report_compared_product_index` (
  `index_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Index Id',
  `visitor_id` int(10) unsigned DEFAULT NULL COMMENT 'Visitor Id',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Id',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `added_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Added At',
  PRIMARY KEY (`index_id`),
  UNIQUE KEY `REPORT_COMPARED_PRODUCT_INDEX_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  UNIQUE KEY `REPORT_COMPARED_PRODUCT_INDEX_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  KEY `REPORT_COMPARED_PRODUCT_INDEX_STORE_ID` (`store_id`),
  KEY `REPORT_COMPARED_PRODUCT_INDEX_ADDED_AT` (`added_at`),
  KEY `REPORT_COMPARED_PRODUCT_INDEX_PRODUCT_ID` (`product_id`),
  CONSTRAINT `REPORT_CMPD_PRD_IDX_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_CMPD_PRD_IDX_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_COMPARED_PRODUCT_INDEX_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reports Compared Product Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_compared_product_index`
--

LOCK TABLES `report_compared_product_index` WRITE;
/*!40000 ALTER TABLE `report_compared_product_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `report_compared_product_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `report_event`
--

DROP TABLE IF EXISTS `report_event`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `report_event` (
  `event_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Event Id',
  `logged_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Logged At',
  `event_type_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Event Type Id',
  `object_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Object Id',
  `subject_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Subject Id',
  `subtype` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Subtype',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id',
  PRIMARY KEY (`event_id`),
  KEY `REPORT_EVENT_EVENT_TYPE_ID` (`event_type_id`),
  KEY `REPORT_EVENT_SUBJECT_ID` (`subject_id`),
  KEY `REPORT_EVENT_OBJECT_ID` (`object_id`),
  KEY `REPORT_EVENT_SUBTYPE` (`subtype`),
  KEY `REPORT_EVENT_STORE_ID` (`store_id`),
  CONSTRAINT `REPORT_EVENT_EVENT_TYPE_ID_REPORT_EVENT_TYPES_EVENT_TYPE_ID` FOREIGN KEY (`event_type_id`) REFERENCES `report_event_types` (`event_type_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_EVENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Reports Event Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_event`
--

LOCK TABLES `report_event` WRITE;
/*!40000 ALTER TABLE `report_event` DISABLE KEYS */;
INSERT INTO `report_event` VALUES (1,'2018-11-30 19:50:05',1,66,0,1,1);
/*!40000 ALTER TABLE `report_event` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `report_event_types`
--

DROP TABLE IF EXISTS `report_event_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `report_event_types` (
  `event_type_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Event Type Id',
  `event_name` varchar(64) NOT NULL COMMENT 'Event Name',
  `customer_login` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Login',
  PRIMARY KEY (`event_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Reports Event Type Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_event_types`
--

LOCK TABLES `report_event_types` WRITE;
/*!40000 ALTER TABLE `report_event_types` DISABLE KEYS */;
INSERT INTO `report_event_types` VALUES (1,'catalog_product_view',0),(2,'sendfriend_product',0),(3,'catalog_product_compare_add_product',0),(4,'checkout_cart_add_product',0),(5,'wishlist_add_product',0),(6,'wishlist_share',0);
/*!40000 ALTER TABLE `report_event_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `report_viewed_product_aggregated_daily`
--

DROP TABLE IF EXISTS `report_viewed_product_aggregated_daily`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `report_viewed_product_aggregated_daily` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product Id',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price',
  `views_num` int(11) NOT NULL DEFAULT '0' COMMENT 'Number of Views',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `REPORT_VIEWED_PRD_AGGRED_DAILY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_STORE_ID` (`store_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `REPORT_VIEWED_PRD_AGGRED_DAILY_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Most Viewed Products Aggregated Daily';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_viewed_product_aggregated_daily`
--

LOCK TABLES `report_viewed_product_aggregated_daily` WRITE;
/*!40000 ALTER TABLE `report_viewed_product_aggregated_daily` DISABLE KEYS */;
INSERT INTO `report_viewed_product_aggregated_daily` VALUES (1,'2018-11-30',1,66,'Dark Blue Slim Fit Jeans',49.9900,1,1);
/*!40000 ALTER TABLE `report_viewed_product_aggregated_daily` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `report_viewed_product_aggregated_monthly`
--

DROP TABLE IF EXISTS `report_viewed_product_aggregated_monthly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `report_viewed_product_aggregated_monthly` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product Id',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price',
  `views_num` int(11) NOT NULL DEFAULT '0' COMMENT 'Number of Views',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `REPORT_VIEWED_PRD_AGGRED_MONTHLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_STORE_ID` (`store_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `REPORT_VIEWED_PRD_AGGRED_MONTHLY_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Most Viewed Products Aggregated Monthly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_viewed_product_aggregated_monthly`
--

LOCK TABLES `report_viewed_product_aggregated_monthly` WRITE;
/*!40000 ALTER TABLE `report_viewed_product_aggregated_monthly` DISABLE KEYS */;
INSERT INTO `report_viewed_product_aggregated_monthly` VALUES (1,'2018-11-01',1,66,'Dark Blue Slim Fit Jeans',49.9900,1,1);
/*!40000 ALTER TABLE `report_viewed_product_aggregated_monthly` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `report_viewed_product_aggregated_yearly`
--

DROP TABLE IF EXISTS `report_viewed_product_aggregated_yearly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `report_viewed_product_aggregated_yearly` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product Id',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price',
  `views_num` int(11) NOT NULL DEFAULT '0' COMMENT 'Number of Views',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `REPORT_VIEWED_PRD_AGGRED_YEARLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_STORE_ID` (`store_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `REPORT_VIEWED_PRD_AGGRED_YEARLY_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Most Viewed Products Aggregated Yearly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_viewed_product_aggregated_yearly`
--

LOCK TABLES `report_viewed_product_aggregated_yearly` WRITE;
/*!40000 ALTER TABLE `report_viewed_product_aggregated_yearly` DISABLE KEYS */;
INSERT INTO `report_viewed_product_aggregated_yearly` VALUES (1,'2018-01-01',1,66,'Dark Blue Slim Fit Jeans',49.9900,1,1);
/*!40000 ALTER TABLE `report_viewed_product_aggregated_yearly` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `report_viewed_product_index`
--

DROP TABLE IF EXISTS `report_viewed_product_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `report_viewed_product_index` (
  `index_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Index Id',
  `visitor_id` int(10) unsigned DEFAULT NULL COMMENT 'Visitor Id',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Id',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `added_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Added At',
  PRIMARY KEY (`index_id`),
  UNIQUE KEY `REPORT_VIEWED_PRODUCT_INDEX_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  UNIQUE KEY `REPORT_VIEWED_PRODUCT_INDEX_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  KEY `REPORT_VIEWED_PRODUCT_INDEX_STORE_ID` (`store_id`),
  KEY `REPORT_VIEWED_PRODUCT_INDEX_ADDED_AT` (`added_at`),
  KEY `REPORT_VIEWED_PRODUCT_INDEX_PRODUCT_ID` (`product_id`),
  CONSTRAINT `REPORT_VIEWED_PRD_IDX_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_VIEWED_PRD_IDX_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_VIEWED_PRODUCT_INDEX_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Reports Viewed Product Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_viewed_product_index`
--

LOCK TABLES `report_viewed_product_index` WRITE;
/*!40000 ALTER TABLE `report_viewed_product_index` DISABLE KEYS */;
INSERT INTO `report_viewed_product_index` VALUES (1,NULL,NULL,66,1,'2018-11-30 19:50:05');
/*!40000 ALTER TABLE `report_viewed_product_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `reporting_counts`
--

DROP TABLE IF EXISTS `reporting_counts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reporting_counts` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `type` varchar(255) DEFAULT NULL COMMENT 'Item Reported',
  `count` int(10) unsigned DEFAULT NULL COMMENT 'Count Value',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for all count related events generated via the cron job';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_counts`
--

LOCK TABLES `reporting_counts` WRITE;
/*!40000 ALTER TABLE `reporting_counts` DISABLE KEYS */;
/*!40000 ALTER TABLE `reporting_counts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `reporting_module_status`
--

DROP TABLE IF EXISTS `reporting_module_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reporting_module_status` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Module Id',
  `name` varchar(255) DEFAULT NULL COMMENT 'Module Name',
  `active` varchar(255) DEFAULT NULL COMMENT 'Module Active Status',
  `setup_version` varchar(255) DEFAULT NULL COMMENT 'Module Version',
  `state` varchar(255) DEFAULT NULL COMMENT 'Module State',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Module Status Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_module_status`
--

LOCK TABLES `reporting_module_status` WRITE;
/*!40000 ALTER TABLE `reporting_module_status` DISABLE KEYS */;
/*!40000 ALTER TABLE `reporting_module_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `reporting_orders`
--

DROP TABLE IF EXISTS `reporting_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reporting_orders` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `total` decimal(20,4) unsigned DEFAULT NULL,
  `total_base` decimal(20,4) unsigned DEFAULT NULL,
  `item_count` int(10) unsigned NOT NULL COMMENT 'Line Item Count',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for all orders';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_orders`
--

LOCK TABLES `reporting_orders` WRITE;
/*!40000 ALTER TABLE `reporting_orders` DISABLE KEYS */;
/*!40000 ALTER TABLE `reporting_orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `reporting_system_updates`
--

DROP TABLE IF EXISTS `reporting_system_updates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reporting_system_updates` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `type` varchar(255) DEFAULT NULL COMMENT 'Update Type',
  `action` varchar(255) DEFAULT NULL COMMENT 'Action Performed',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for system updates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_system_updates`
--

LOCK TABLES `reporting_system_updates` WRITE;
/*!40000 ALTER TABLE `reporting_system_updates` DISABLE KEYS */;
/*!40000 ALTER TABLE `reporting_system_updates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `reporting_users`
--

DROP TABLE IF EXISTS `reporting_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reporting_users` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `type` varchar(255) DEFAULT NULL COMMENT 'User Type',
  `action` varchar(255) DEFAULT NULL COMMENT 'Action Performed',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for user actions';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_users`
--

LOCK TABLES `reporting_users` WRITE;
/*!40000 ALTER TABLE `reporting_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `reporting_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `review`
--

DROP TABLE IF EXISTS `review`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review` (
  `review_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Review id',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Review create date',
  `entity_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity id',
  `entity_pk_value` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product id',
  `status_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Status code',
  PRIMARY KEY (`review_id`),
  KEY `REVIEW_ENTITY_ID` (`entity_id`),
  KEY `REVIEW_STATUS_ID` (`status_id`),
  KEY `REVIEW_ENTITY_PK_VALUE` (`entity_pk_value`),
  CONSTRAINT `REVIEW_ENTITY_ID_REVIEW_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `review_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REVIEW_STATUS_ID_REVIEW_STATUS_STATUS_ID` FOREIGN KEY (`status_id`) REFERENCES `review_status` (`status_id`) ON DELETE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review base information';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review`
--

LOCK TABLES `review` WRITE;
/*!40000 ALTER TABLE `review` DISABLE KEYS */;
/*!40000 ALTER TABLE `review` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `review_detail`
--

DROP TABLE IF EXISTS `review_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_detail` (
  `detail_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Review detail id',
  `review_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'Review id',
  `store_id` smallint(5) unsigned DEFAULT '0' COMMENT 'Store id',
  `title` varchar(255) NOT NULL COMMENT 'Title',
  `detail` text NOT NULL COMMENT 'Detail description',
  `nickname` varchar(128) NOT NULL COMMENT 'User nickname',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Id',
  PRIMARY KEY (`detail_id`),
  KEY `REVIEW_DETAIL_REVIEW_ID` (`review_id`),
  KEY `REVIEW_DETAIL_STORE_ID` (`store_id`),
  KEY `REVIEW_DETAIL_CUSTOMER_ID` (`customer_id`),
  CONSTRAINT `REVIEW_DETAIL_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL,
  CONSTRAINT `REVIEW_DETAIL_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE,
  CONSTRAINT `REVIEW_DETAIL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review detail information';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_detail`
--

LOCK TABLES `review_detail` WRITE;
/*!40000 ALTER TABLE `review_detail` DISABLE KEYS */;
/*!40000 ALTER TABLE `review_detail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `review_entity`
--

DROP TABLE IF EXISTS `review_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_entity` (
  `entity_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Review entity id',
  `entity_code` varchar(32) NOT NULL COMMENT 'Review entity code',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Review entities';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_entity`
--

LOCK TABLES `review_entity` WRITE;
/*!40000 ALTER TABLE `review_entity` DISABLE KEYS */;
INSERT INTO `review_entity` VALUES (1,'product'),(2,'customer'),(3,'category');
/*!40000 ALTER TABLE `review_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `review_entity_summary`
--

DROP TABLE IF EXISTS `review_entity_summary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_entity_summary` (
  `primary_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'Summary review entity id',
  `entity_pk_value` bigint(20) NOT NULL DEFAULT '0' COMMENT 'Product id',
  `entity_type` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Entity type id',
  `reviews_count` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Qty of reviews',
  `rating_summary` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Summarized rating',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  PRIMARY KEY (`primary_id`),
  KEY `REVIEW_ENTITY_SUMMARY_STORE_ID` (`store_id`),
  CONSTRAINT `REVIEW_ENTITY_SUMMARY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review aggregates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_entity_summary`
--

LOCK TABLES `review_entity_summary` WRITE;
/*!40000 ALTER TABLE `review_entity_summary` DISABLE KEYS */;
/*!40000 ALTER TABLE `review_entity_summary` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `review_status`
--

DROP TABLE IF EXISTS `review_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_status` (
  `status_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Status id',
  `status_code` varchar(32) NOT NULL COMMENT 'Status code',
  PRIMARY KEY (`status_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Review statuses';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_status`
--

LOCK TABLES `review_status` WRITE;
/*!40000 ALTER TABLE `review_status` DISABLE KEYS */;
INSERT INTO `review_status` VALUES (1,'Approved'),(2,'Pending'),(3,'Not Approved');
/*!40000 ALTER TABLE `review_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `review_store`
--

DROP TABLE IF EXISTS `review_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_store` (
  `review_id` bigint(20) unsigned NOT NULL COMMENT 'Review ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`review_id`,`store_id`),
  KEY `REVIEW_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `REVIEW_STORE_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE,
  CONSTRAINT `REVIEW_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review Store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_store`
--

LOCK TABLES `review_store` WRITE;
/*!40000 ALTER TABLE `review_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `review_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_bestsellers_aggregated_daily`
--

DROP TABLE IF EXISTS `sales_bestsellers_aggregated_daily`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_bestsellers_aggregated_daily` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product Id',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price',
  `qty_ordered` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty Ordered',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_BESTSELLERS_AGGREGATED_DAILY_PERIOD_STORE_ID_PRODUCT_ID` (`period`,`store_id`,`product_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_DAILY_STORE_ID` (`store_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_DAILY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `SALES_BESTSELLERS_AGGREGATED_DAILY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Daily';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_bestsellers_aggregated_daily`
--

LOCK TABLES `sales_bestsellers_aggregated_daily` WRITE;
/*!40000 ALTER TABLE `sales_bestsellers_aggregated_daily` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_bestsellers_aggregated_daily` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_bestsellers_aggregated_monthly`
--

DROP TABLE IF EXISTS `sales_bestsellers_aggregated_monthly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_bestsellers_aggregated_monthly` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product Id',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price',
  `qty_ordered` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty Ordered',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_BESTSELLERS_AGGREGATED_MONTHLY_PERIOD_STORE_ID_PRODUCT_ID` (`period`,`store_id`,`product_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_MONTHLY_STORE_ID` (`store_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_MONTHLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `SALES_BESTSELLERS_AGGREGATED_MONTHLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Monthly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_bestsellers_aggregated_monthly`
--

LOCK TABLES `sales_bestsellers_aggregated_monthly` WRITE;
/*!40000 ALTER TABLE `sales_bestsellers_aggregated_monthly` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_bestsellers_aggregated_monthly` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_bestsellers_aggregated_yearly`
--

DROP TABLE IF EXISTS `sales_bestsellers_aggregated_yearly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_bestsellers_aggregated_yearly` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product Id',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price',
  `qty_ordered` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty Ordered',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_BESTSELLERS_AGGREGATED_YEARLY_PERIOD_STORE_ID_PRODUCT_ID` (`period`,`store_id`,`product_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_YEARLY_STORE_ID` (`store_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_YEARLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `SALES_BESTSELLERS_AGGREGATED_YEARLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Yearly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_bestsellers_aggregated_yearly`
--

LOCK TABLES `sales_bestsellers_aggregated_yearly` WRITE;
/*!40000 ALTER TABLE `sales_bestsellers_aggregated_yearly` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_bestsellers_aggregated_yearly` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_creditmemo`
--

DROP TABLE IF EXISTS `sales_creditmemo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_creditmemo` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Positive',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `store_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Order Rate',
  `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `base_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Order Rate',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `base_adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Negative',
  `base_subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Incl Tax',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Negative',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `store_to_base_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Base Rate',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `base_adjustment` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `adjustment` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `base_adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Positive',
  `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id',
  `email_sent` smallint(5) unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint(5) unsigned DEFAULT NULL COMMENT 'Send Email',
  `creditmemo_status` int(11) DEFAULT NULL COMMENT 'Creditmemo Status',
  `state` int(11) DEFAULT NULL COMMENT 'State',
  `shipping_address_id` int(11) DEFAULT NULL COMMENT 'Shipping Address Id',
  `billing_address_id` int(11) DEFAULT NULL COMMENT 'Billing Address Id',
  `invoice_id` int(11) DEFAULT NULL COMMENT 'Invoice Id',
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `transaction_id` varchar(255) DEFAULT NULL COMMENT 'Transaction Id',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment Id',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `customer_note` text COMMENT 'Customer Note',
  `customer_note_notify` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_CREDITMEMO_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_CREDITMEMO_STORE_ID` (`store_id`),
  KEY `SALES_CREDITMEMO_ORDER_ID` (`order_id`),
  KEY `SALES_CREDITMEMO_CREDITMEMO_STATUS` (`creditmemo_status`),
  KEY `SALES_CREDITMEMO_STATE` (`state`),
  KEY `SALES_CREDITMEMO_CREATED_AT` (`created_at`),
  KEY `SALES_CREDITMEMO_UPDATED_AT` (`updated_at`),
  KEY `SALES_CREDITMEMO_SEND_EMAIL` (`send_email`),
  KEY `SALES_CREDITMEMO_EMAIL_SENT` (`email_sent`),
  CONSTRAINT `SALES_CREDITMEMO_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_CREDITMEMO_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_creditmemo`
--

LOCK TABLES `sales_creditmemo` WRITE;
/*!40000 ALTER TABLE `sales_creditmemo` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_creditmemo` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_creditmemo_comment`
--

DROP TABLE IF EXISTS `sales_creditmemo_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_creditmemo_comment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id',
  `is_customer_notified` int(11) DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front',
  `comment` text COMMENT 'Comment',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_CREDITMEMO_COMMENT_CREATED_AT` (`created_at`),
  KEY `SALES_CREDITMEMO_COMMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_CREDITMEMO_COMMENT_PARENT_ID_SALES_CREDITMEMO_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_creditmemo` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Comment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_creditmemo_comment`
--

LOCK TABLES `sales_creditmemo_comment` WRITE;
/*!40000 ALTER TABLE `sales_creditmemo_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_creditmemo_comment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_creditmemo_grid`
--

DROP TABLE IF EXISTS `sales_creditmemo_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_creditmemo_grid` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment Id',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id',
  `order_increment_id` varchar(50) DEFAULT NULL COMMENT 'Order Increment Id',
  `order_created_at` timestamp NULL DEFAULT NULL COMMENT 'Order Created At',
  `billing_name` varchar(255) DEFAULT NULL COMMENT 'Billing Name',
  `state` int(11) DEFAULT NULL COMMENT 'Status',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `order_status` varchar(32) DEFAULT NULL COMMENT 'Order Status',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `customer_name` varchar(128) NOT NULL COMMENT 'Customer Name',
  `customer_email` varchar(128) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group_id` smallint(6) DEFAULT NULL COMMENT 'Customer Group Id',
  `payment_method` varchar(32) DEFAULT NULL COMMENT 'Payment Method',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `shipping_and_handling` decimal(20,4) DEFAULT NULL COMMENT 'Shipping and handling amount',
  `adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Positive',
  `adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Negative',
  `order_base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Order Grand Total',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_CREDITMEMO_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_CREDITMEMO_GRID_ORDER_INCREMENT_ID` (`order_increment_id`),
  KEY `SALES_CREDITMEMO_GRID_CREATED_AT` (`created_at`),
  KEY `SALES_CREDITMEMO_GRID_UPDATED_AT` (`updated_at`),
  KEY `SALES_CREDITMEMO_GRID_ORDER_CREATED_AT` (`order_created_at`),
  KEY `SALES_CREDITMEMO_GRID_STATE` (`state`),
  KEY `SALES_CREDITMEMO_GRID_BILLING_NAME` (`billing_name`),
  KEY `SALES_CREDITMEMO_GRID_ORDER_STATUS` (`order_status`),
  KEY `SALES_CREDITMEMO_GRID_BASE_GRAND_TOTAL` (`base_grand_total`),
  KEY `SALES_CREDITMEMO_GRID_STORE_ID` (`store_id`),
  KEY `SALES_CREDITMEMO_GRID_ORDER_BASE_GRAND_TOTAL` (`order_base_grand_total`),
  KEY `SALES_CREDITMEMO_GRID_ORDER_ID` (`order_id`),
  FULLTEXT KEY `FTI_32B7BA885941A8254EE84AE650ABDC86` (`increment_id`,`order_increment_id`,`billing_name`,`billing_address`,`shipping_address`,`customer_name`,`customer_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_creditmemo_grid`
--

LOCK TABLES `sales_creditmemo_grid` WRITE;
/*!40000 ALTER TABLE `sales_creditmemo_grid` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_creditmemo_grid` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_creditmemo_item`
--

DROP TABLE IF EXISTS `sales_creditmemo_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_creditmemo_item` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id',
  `base_price` decimal(12,4) DEFAULT NULL COMMENT 'Base Price',
  `tax_amount` decimal(12,4) DEFAULT NULL COMMENT 'Tax Amount',
  `base_row_total` decimal(12,4) DEFAULT NULL COMMENT 'Base Row Total',
  `discount_amount` decimal(12,4) DEFAULT NULL COMMENT 'Discount Amount',
  `row_total` decimal(12,4) DEFAULT NULL COMMENT 'Row Total',
  `base_discount_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `price_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_tax_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `base_price_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `base_cost` decimal(12,4) DEFAULT NULL COMMENT 'Base Cost',
  `price` decimal(12,4) DEFAULT NULL COMMENT 'Price',
  `base_row_total_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `row_total_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `product_id` int(11) DEFAULT NULL COMMENT 'Product Id',
  `order_item_id` int(11) DEFAULT NULL COMMENT 'Order Item Id',
  `additional_data` text COMMENT 'Additional Data',
  `description` text COMMENT 'Description',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `discount_tax_compensation_amount` decimal(12,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `tax_ratio` text COMMENT 'Ratio of tax in the creditmemo item over tax of the order item',
  `weee_tax_applied` text COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_CREDITMEMO_ITEM_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_CREDITMEMO_ITEM_PARENT_ID_SALES_CREDITMEMO_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_creditmemo` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_creditmemo_item`
--

LOCK TABLES `sales_creditmemo_item` WRITE;
/*!40000 ALTER TABLE `sales_creditmemo_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_creditmemo_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_invoice`
--

DROP TABLE IF EXISTS `sales_invoice`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_invoice` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `store_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Order Rate',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `base_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Order Rate',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `base_subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Incl Tax',
  `store_to_base_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Base Rate',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount',
  `billing_address_id` int(11) DEFAULT NULL COMMENT 'Billing Address Id',
  `is_used_for_refund` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Used For Refund',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id',
  `email_sent` smallint(5) unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint(5) unsigned DEFAULT NULL COMMENT 'Send Email',
  `can_void_flag` smallint(5) unsigned DEFAULT NULL COMMENT 'Can Void Flag',
  `state` int(11) DEFAULT NULL COMMENT 'State',
  `shipping_address_id` int(11) DEFAULT NULL COMMENT 'Shipping Address Id',
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `transaction_id` varchar(255) DEFAULT NULL COMMENT 'Transaction Id',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment Id',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `base_total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Refunded',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `customer_note` text COMMENT 'Customer Note',
  `customer_note_notify` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_INVOICE_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_INVOICE_STORE_ID` (`store_id`),
  KEY `SALES_INVOICE_GRAND_TOTAL` (`grand_total`),
  KEY `SALES_INVOICE_ORDER_ID` (`order_id`),
  KEY `SALES_INVOICE_STATE` (`state`),
  KEY `SALES_INVOICE_CREATED_AT` (`created_at`),
  KEY `SALES_INVOICE_UPDATED_AT` (`updated_at`),
  KEY `SALES_INVOICE_SEND_EMAIL` (`send_email`),
  KEY `SALES_INVOICE_EMAIL_SENT` (`email_sent`),
  CONSTRAINT `SALES_INVOICE_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_INVOICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoice`
--

LOCK TABLES `sales_invoice` WRITE;
/*!40000 ALTER TABLE `sales_invoice` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_invoice` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_invoice_comment`
--

DROP TABLE IF EXISTS `sales_invoice_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_invoice_comment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id',
  `is_customer_notified` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front',
  `comment` text COMMENT 'Comment',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_INVOICE_COMMENT_CREATED_AT` (`created_at`),
  KEY `SALES_INVOICE_COMMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_INVOICE_COMMENT_PARENT_ID_SALES_INVOICE_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_invoice` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Comment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoice_comment`
--

LOCK TABLES `sales_invoice_comment` WRITE;
/*!40000 ALTER TABLE `sales_invoice_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_invoice_comment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_invoice_grid`
--

DROP TABLE IF EXISTS `sales_invoice_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_invoice_grid` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment Id',
  `state` int(11) DEFAULT NULL COMMENT 'State',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `store_name` varchar(255) DEFAULT NULL COMMENT 'Store Name',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id',
  `order_increment_id` varchar(50) DEFAULT NULL COMMENT 'Order Increment Id',
  `order_created_at` timestamp NULL DEFAULT NULL COMMENT 'Order Created At',
  `customer_name` varchar(255) DEFAULT NULL COMMENT 'Customer Name',
  `customer_email` varchar(255) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group_id` int(11) DEFAULT NULL,
  `payment_method` varchar(128) DEFAULT NULL COMMENT 'Payment Method',
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `billing_name` varchar(255) DEFAULT NULL COMMENT 'Billing Name',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `shipping_and_handling` decimal(20,4) DEFAULT NULL COMMENT 'Shipping and handling amount',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_INVOICE_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_INVOICE_GRID_STORE_ID` (`store_id`),
  KEY `SALES_INVOICE_GRID_GRAND_TOTAL` (`grand_total`),
  KEY `SALES_INVOICE_GRID_ORDER_ID` (`order_id`),
  KEY `SALES_INVOICE_GRID_STATE` (`state`),
  KEY `SALES_INVOICE_GRID_ORDER_INCREMENT_ID` (`order_increment_id`),
  KEY `SALES_INVOICE_GRID_CREATED_AT` (`created_at`),
  KEY `SALES_INVOICE_GRID_UPDATED_AT` (`updated_at`),
  KEY `SALES_INVOICE_GRID_ORDER_CREATED_AT` (`order_created_at`),
  KEY `SALES_INVOICE_GRID_BILLING_NAME` (`billing_name`),
  KEY `SALES_INVOICE_GRID_BASE_GRAND_TOTAL` (`base_grand_total`),
  FULLTEXT KEY `FTI_95D9C924DD6A8734EB8B5D01D60F90DE` (`increment_id`,`order_increment_id`,`billing_name`,`billing_address`,`shipping_address`,`customer_name`,`customer_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoice_grid`
--

LOCK TABLES `sales_invoice_grid` WRITE;
/*!40000 ALTER TABLE `sales_invoice_grid` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_invoice_grid` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_invoice_item`
--

DROP TABLE IF EXISTS `sales_invoice_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_invoice_item` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id',
  `base_price` decimal(12,4) DEFAULT NULL COMMENT 'Base Price',
  `tax_amount` decimal(12,4) DEFAULT NULL COMMENT 'Tax Amount',
  `base_row_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total',
  `discount_amount` decimal(12,4) DEFAULT NULL COMMENT 'Discount Amount',
  `row_total` decimal(20,4) DEFAULT NULL COMMENT 'Row Total',
  `base_discount_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `price_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_tax_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `base_price_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `base_cost` decimal(12,4) DEFAULT NULL COMMENT 'Base Cost',
  `price` decimal(12,4) DEFAULT NULL COMMENT 'Price',
  `base_row_total_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `row_total_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `product_id` int(11) DEFAULT NULL COMMENT 'Product Id',
  `order_item_id` int(11) DEFAULT NULL COMMENT 'Order Item Id',
  `additional_data` text COMMENT 'Additional Data',
  `description` text COMMENT 'Description',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `discount_tax_compensation_amount` decimal(12,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `tax_ratio` text COMMENT 'Ratio of tax invoiced over tax of the order item',
  `weee_tax_applied` text COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_INVOICE_ITEM_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_INVOICE_ITEM_PARENT_ID_SALES_INVOICE_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_invoice` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoice_item`
--

LOCK TABLES `sales_invoice_item` WRITE;
/*!40000 ALTER TABLE `sales_invoice_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_invoice_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_invoiced_aggregated`
--

DROP TABLE IF EXISTS `sales_invoiced_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_invoiced_aggregated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `orders_invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Orders Invoiced',
  `invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced',
  `invoiced_captured` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced Captured',
  `invoiced_not_captured` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced Not Captured',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_INVOICED_AGGREGATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_INVOICED_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_INVOICED_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Invoiced Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoiced_aggregated`
--

LOCK TABLES `sales_invoiced_aggregated` WRITE;
/*!40000 ALTER TABLE `sales_invoiced_aggregated` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_invoiced_aggregated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_invoiced_aggregated_order`
--

DROP TABLE IF EXISTS `sales_invoiced_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_invoiced_aggregated_order` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `orders_invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Orders Invoiced',
  `invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced',
  `invoiced_captured` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced Captured',
  `invoiced_not_captured` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced Not Captured',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_INVOICED_AGGREGATED_ORDER_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_INVOICED_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_INVOICED_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Invoiced Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoiced_aggregated_order`
--

LOCK TABLES `sales_invoiced_aggregated_order` WRITE;
/*!40000 ALTER TABLE `sales_invoiced_aggregated_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_invoiced_aggregated_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order`
--

DROP TABLE IF EXISTS `sales_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `state` varchar(32) DEFAULT NULL COMMENT 'State',
  `status` varchar(32) DEFAULT NULL COMMENT 'Status',
  `coupon_code` varchar(255) DEFAULT NULL COMMENT 'Coupon Code',
  `protect_code` varchar(255) DEFAULT NULL COMMENT 'Protect Code',
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `is_virtual` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Virtual',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Id',
  `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `base_discount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Canceled',
  `base_discount_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Invoiced',
  `base_discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Refunded',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `base_shipping_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Canceled',
  `base_shipping_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Invoiced',
  `base_shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Refunded',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `base_shipping_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Refunded',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `base_subtotal_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Canceled',
  `base_subtotal_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Invoiced',
  `base_subtotal_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Refunded',
  `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `base_tax_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Canceled',
  `base_tax_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Invoiced',
  `base_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Refunded',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `base_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Order Rate',
  `base_total_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Canceled',
  `base_total_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Invoiced',
  `base_total_invoiced_cost` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Invoiced Cost',
  `base_total_offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Offline Refunded',
  `base_total_online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Online Refunded',
  `base_total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Paid',
  `base_total_qty_ordered` decimal(12,4) DEFAULT NULL COMMENT 'Base Total Qty Ordered',
  `base_total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Refunded',
  `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount',
  `discount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Discount Canceled',
  `discount_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Discount Invoiced',
  `discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Refunded',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `shipping_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Canceled',
  `shipping_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Invoiced',
  `shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Refunded',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `shipping_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Refunded',
  `store_to_base_rate` decimal(12,4) DEFAULT NULL COMMENT 'Store To Base Rate',
  `store_to_order_rate` decimal(12,4) DEFAULT NULL COMMENT 'Store To Order Rate',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `subtotal_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Canceled',
  `subtotal_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Invoiced',
  `subtotal_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Refunded',
  `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount',
  `tax_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Tax Canceled',
  `tax_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Tax Invoiced',
  `tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Tax Refunded',
  `total_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Total Canceled',
  `total_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Total Invoiced',
  `total_offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Offline Refunded',
  `total_online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Online Refunded',
  `total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Total Paid',
  `total_qty_ordered` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty Ordered',
  `total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Refunded',
  `can_ship_partially` smallint(5) unsigned DEFAULT NULL COMMENT 'Can Ship Partially',
  `can_ship_partially_item` smallint(5) unsigned DEFAULT NULL COMMENT 'Can Ship Partially Item',
  `customer_is_guest` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Is Guest',
  `customer_note_notify` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  `billing_address_id` int(11) DEFAULT NULL COMMENT 'Billing Address Id',
  `customer_group_id` int(11) DEFAULT NULL,
  `edit_increment` int(11) DEFAULT NULL COMMENT 'Edit Increment',
  `email_sent` smallint(5) unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint(5) unsigned DEFAULT NULL COMMENT 'Send Email',
  `forced_shipment_with_invoice` smallint(5) unsigned DEFAULT NULL COMMENT 'Forced Do Shipment With Invoice',
  `payment_auth_expiration` int(11) DEFAULT NULL COMMENT 'Payment Authorization Expiration',
  `quote_address_id` int(11) DEFAULT NULL COMMENT 'Quote Address Id',
  `quote_id` int(11) DEFAULT NULL COMMENT 'Quote Id',
  `shipping_address_id` int(11) DEFAULT NULL COMMENT 'Shipping Address Id',
  `adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Negative',
  `adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Positive',
  `base_adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Negative',
  `base_adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Positive',
  `base_shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Amount',
  `base_subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Incl Tax',
  `base_total_due` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Due',
  `payment_authorization_amount` decimal(20,4) DEFAULT NULL COMMENT 'Payment Authorization Amount',
  `shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `total_due` decimal(20,4) DEFAULT NULL COMMENT 'Total Due',
  `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight',
  `customer_dob` datetime DEFAULT NULL COMMENT 'Customer Dob',
  `increment_id` varchar(32) DEFAULT NULL COMMENT 'Increment Id',
  `applied_rule_ids` varchar(128) DEFAULT NULL COMMENT 'Applied Rule Ids',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `customer_email` varchar(128) DEFAULT NULL COMMENT 'Customer Email',
  `customer_firstname` varchar(128) DEFAULT NULL COMMENT 'Customer Firstname',
  `customer_lastname` varchar(128) DEFAULT NULL COMMENT 'Customer Lastname',
  `customer_middlename` varchar(128) DEFAULT NULL COMMENT 'Customer Middlename',
  `customer_prefix` varchar(32) DEFAULT NULL COMMENT 'Customer Prefix',
  `customer_suffix` varchar(32) DEFAULT NULL COMMENT 'Customer Suffix',
  `customer_taxvat` varchar(32) DEFAULT NULL COMMENT 'Customer Taxvat',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `ext_customer_id` varchar(32) DEFAULT NULL COMMENT 'Ext Customer Id',
  `ext_order_id` varchar(32) DEFAULT NULL COMMENT 'Ext Order Id',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `hold_before_state` varchar(32) DEFAULT NULL COMMENT 'Hold Before State',
  `hold_before_status` varchar(32) DEFAULT NULL COMMENT 'Hold Before Status',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `original_increment_id` varchar(32) DEFAULT NULL COMMENT 'Original Increment Id',
  `relation_child_id` varchar(32) DEFAULT NULL COMMENT 'Relation Child Id',
  `relation_child_real_id` varchar(32) DEFAULT NULL COMMENT 'Relation Child Real Id',
  `relation_parent_id` varchar(32) DEFAULT NULL COMMENT 'Relation Parent Id',
  `relation_parent_real_id` varchar(32) DEFAULT NULL COMMENT 'Relation Parent Real Id',
  `remote_ip` varchar(45) DEFAULT NULL COMMENT 'Remote Ip',
  `shipping_method` varchar(120) DEFAULT NULL,
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `store_name` varchar(255) DEFAULT NULL COMMENT 'Store Name',
  `x_forwarded_for` varchar(32) DEFAULT NULL COMMENT 'X Forwarded For',
  `customer_note` text COMMENT 'Customer Note',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `total_item_count` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Total Item Count',
  `customer_gender` int(11) DEFAULT NULL COMMENT 'Customer Gender',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Invoiced',
  `base_discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Invoiced',
  `discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Refunded',
  `base_discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Refunded',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `coupon_rule_name` varchar(255) DEFAULT NULL COMMENT 'Coupon Sales Rule Name',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message Id',
  `paypal_ipn_customer_notified` int(11) DEFAULT '0' COMMENT 'Paypal Ipn Customer Notified',
  `carrier_office` text COMMENT 'Carrier Office',
  `mailchimp_abandonedcart_flag` tinyint(1) DEFAULT '0' COMMENT 'Retrieved from Mailchimp',
  `mailchimp_campaign_id` varchar(16) DEFAULT '' COMMENT 'Campaign',
  `mailchimp_landing_page` text COMMENT 'Landing Page',
  `mailchimp_flag` tinyint(1) DEFAULT '0' COMMENT 'Retrieved from Mailchimp',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_ORDER_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_ORDER_STATUS` (`status`),
  KEY `SALES_ORDER_STATE` (`state`),
  KEY `SALES_ORDER_STORE_ID` (`store_id`),
  KEY `SALES_ORDER_CREATED_AT` (`created_at`),
  KEY `SALES_ORDER_CUSTOMER_ID` (`customer_id`),
  KEY `SALES_ORDER_EXT_ORDER_ID` (`ext_order_id`),
  KEY `SALES_ORDER_QUOTE_ID` (`quote_id`),
  KEY `SALES_ORDER_UPDATED_AT` (`updated_at`),
  KEY `SALES_ORDER_SEND_EMAIL` (`send_email`),
  KEY `SALES_ORDER_EMAIL_SENT` (`email_sent`),
  CONSTRAINT `SALES_ORDER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL,
  CONSTRAINT `SALES_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order`
--

LOCK TABLES `sales_order` WRITE;
/*!40000 ALTER TABLE `sales_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_address`
--

DROP TABLE IF EXISTS `sales_order_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_address` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent Id',
  `customer_address_id` int(11) DEFAULT NULL COMMENT 'Customer Address Id',
  `quote_address_id` int(11) DEFAULT NULL COMMENT 'Quote Address Id',
  `region_id` int(11) DEFAULT NULL COMMENT 'Region Id',
  `customer_id` int(11) DEFAULT NULL COMMENT 'Customer Id',
  `fax` varchar(255) DEFAULT NULL COMMENT 'Fax',
  `region` varchar(255) DEFAULT NULL COMMENT 'Region',
  `postcode` varchar(255) DEFAULT NULL COMMENT 'Postcode',
  `lastname` varchar(255) DEFAULT NULL COMMENT 'Lastname',
  `street` varchar(255) DEFAULT NULL COMMENT 'Street',
  `city` varchar(255) DEFAULT NULL COMMENT 'City',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `telephone` varchar(255) DEFAULT NULL COMMENT 'Phone Number',
  `country_id` varchar(2) DEFAULT NULL COMMENT 'Country Id',
  `firstname` varchar(255) DEFAULT NULL COMMENT 'Firstname',
  `address_type` varchar(255) DEFAULT NULL COMMENT 'Address Type',
  `prefix` varchar(255) DEFAULT NULL COMMENT 'Prefix',
  `middlename` varchar(255) DEFAULT NULL COMMENT 'Middlename',
  `suffix` varchar(255) DEFAULT NULL COMMENT 'Suffix',
  `company` varchar(255) DEFAULT NULL COMMENT 'Company',
  `vat_id` text COMMENT 'Vat Id',
  `vat_is_valid` smallint(6) DEFAULT NULL COMMENT 'Vat Is Valid',
  `vat_request_id` text COMMENT 'Vat Request Id',
  `vat_request_date` text COMMENT 'Vat Request Date',
  `vat_request_success` smallint(6) DEFAULT NULL COMMENT 'Vat Request Success',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_ORDER_ADDRESS_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_ORDER_ADDRESS_PARENT_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Address';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_address`
--

LOCK TABLES `sales_order_address` WRITE;
/*!40000 ALTER TABLE `sales_order_address` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_address` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_aggregated_created`
--

DROP TABLE IF EXISTS `sales_order_aggregated_created`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_aggregated_created` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `total_qty_ordered` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Qty Ordered',
  `total_qty_invoiced` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Qty Invoiced',
  `total_income_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Income Amount',
  `total_revenue_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Revenue Amount',
  `total_profit_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Profit Amount',
  `total_invoiced_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Invoiced Amount',
  `total_canceled_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Canceled Amount',
  `total_paid_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Paid Amount',
  `total_refunded_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Refunded Amount',
  `total_tax_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Tax Amount',
  `total_tax_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Tax Amount Actual',
  `total_shipping_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Shipping Amount',
  `total_shipping_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Shipping Amount Actual',
  `total_discount_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Discount Amount',
  `total_discount_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Discount Amount Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_ORDER_AGGREGATED_CREATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_ORDER_AGGREGATED_CREATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Aggregated Created';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_aggregated_created`
--

LOCK TABLES `sales_order_aggregated_created` WRITE;
/*!40000 ALTER TABLE `sales_order_aggregated_created` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_aggregated_created` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_aggregated_updated`
--

DROP TABLE IF EXISTS `sales_order_aggregated_updated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_aggregated_updated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `total_qty_ordered` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Qty Ordered',
  `total_qty_invoiced` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Qty Invoiced',
  `total_income_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Income Amount',
  `total_revenue_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Revenue Amount',
  `total_profit_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Profit Amount',
  `total_invoiced_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Invoiced Amount',
  `total_canceled_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Canceled Amount',
  `total_paid_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Paid Amount',
  `total_refunded_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Refunded Amount',
  `total_tax_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Tax Amount',
  `total_tax_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Tax Amount Actual',
  `total_shipping_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Shipping Amount',
  `total_shipping_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Shipping Amount Actual',
  `total_discount_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Discount Amount',
  `total_discount_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Discount Amount Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_ORDER_AGGREGATED_UPDATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_ORDER_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Aggregated Updated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_aggregated_updated`
--

LOCK TABLES `sales_order_aggregated_updated` WRITE;
/*!40000 ALTER TABLE `sales_order_aggregated_updated` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_aggregated_updated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_grid`
--

DROP TABLE IF EXISTS `sales_order_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_grid` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `status` varchar(32) DEFAULT NULL COMMENT 'Status',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `store_name` varchar(255) DEFAULT NULL COMMENT 'Store Name',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Id',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `base_total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Paid',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Total Paid',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment Id',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `order_currency_code` varchar(255) DEFAULT NULL COMMENT 'Order Currency Code',
  `shipping_name` varchar(255) DEFAULT NULL COMMENT 'Shipping Name',
  `billing_name` varchar(255) DEFAULT NULL COMMENT 'Billing Name',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `customer_email` varchar(255) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group` varchar(255) DEFAULT NULL COMMENT 'Customer Group',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `shipping_and_handling` decimal(20,4) DEFAULT NULL COMMENT 'Shipping and handling amount',
  `customer_name` varchar(255) DEFAULT NULL COMMENT 'Customer Name',
  `payment_method` varchar(255) DEFAULT NULL COMMENT 'Payment Method',
  `total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Refunded',
  `signifyd_guarantee_status` varchar(32) DEFAULT NULL COMMENT 'Signifyd Guarantee Disposition Status',
  `mailchimp_flag` tinyint(1) DEFAULT '0' COMMENT 'Retrieved from Mailchimp',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_ORDER_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_ORDER_GRID_STATUS` (`status`),
  KEY `SALES_ORDER_GRID_STORE_ID` (`store_id`),
  KEY `SALES_ORDER_GRID_BASE_GRAND_TOTAL` (`base_grand_total`),
  KEY `SALES_ORDER_GRID_BASE_TOTAL_PAID` (`base_total_paid`),
  KEY `SALES_ORDER_GRID_GRAND_TOTAL` (`grand_total`),
  KEY `SALES_ORDER_GRID_TOTAL_PAID` (`total_paid`),
  KEY `SALES_ORDER_GRID_SHIPPING_NAME` (`shipping_name`),
  KEY `SALES_ORDER_GRID_BILLING_NAME` (`billing_name`),
  KEY `SALES_ORDER_GRID_CREATED_AT` (`created_at`),
  KEY `SALES_ORDER_GRID_CUSTOMER_ID` (`customer_id`),
  KEY `SALES_ORDER_GRID_UPDATED_AT` (`updated_at`),
  FULLTEXT KEY `FTI_65B9E9925EC58F0C7C2E2F6379C233E7` (`increment_id`,`billing_name`,`shipping_name`,`shipping_address`,`billing_address`,`customer_name`,`customer_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_grid`
--

LOCK TABLES `sales_order_grid` WRITE;
/*!40000 ALTER TABLE `sales_order_grid` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_grid` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_item`
--

DROP TABLE IF EXISTS `sales_order_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_item` (
  `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item Id',
  `order_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Order Id',
  `parent_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent Item Id',
  `quote_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Quote Item Id',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product Id',
  `product_type` varchar(255) DEFAULT NULL COMMENT 'Product Type',
  `product_options` text COMMENT 'Product Options',
  `weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Weight',
  `is_virtual` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Virtual',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text COMMENT 'Description',
  `applied_rule_ids` text COMMENT 'Applied Rule Ids',
  `additional_data` text COMMENT 'Additional Data',
  `is_qty_decimal` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Qty Decimal',
  `no_discount` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'No Discount',
  `qty_backordered` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Backordered',
  `qty_canceled` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Canceled',
  `qty_invoiced` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Invoiced',
  `qty_ordered` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Ordered',
  `qty_refunded` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Refunded',
  `qty_shipped` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Shipped',
  `base_cost` decimal(12,4) DEFAULT '0.0000' COMMENT 'Base Cost',
  `price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Price',
  `base_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Price',
  `original_price` decimal(12,4) DEFAULT NULL COMMENT 'Original Price',
  `base_original_price` decimal(12,4) DEFAULT NULL COMMENT 'Base Original Price',
  `tax_percent` decimal(12,4) DEFAULT '0.0000' COMMENT 'Tax Percent',
  `tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Tax Amount',
  `tax_invoiced` decimal(20,4) DEFAULT '0.0000' COMMENT 'Tax Invoiced',
  `base_tax_invoiced` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Tax Invoiced',
  `discount_percent` decimal(12,4) DEFAULT '0.0000' COMMENT 'Discount Percent',
  `discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Discount Amount',
  `base_discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Discount Amount',
  `discount_invoiced` decimal(20,4) DEFAULT '0.0000' COMMENT 'Discount Invoiced',
  `base_discount_invoiced` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Discount Invoiced',
  `amount_refunded` decimal(20,4) DEFAULT '0.0000' COMMENT 'Amount Refunded',
  `base_amount_refunded` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Amount Refunded',
  `row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Row Total',
  `base_row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Row Total',
  `row_invoiced` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Row Invoiced',
  `base_row_invoiced` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Row Invoiced',
  `row_weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Row Weight',
  `base_tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Before Discount',
  `tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Before Discount',
  `ext_order_item_id` varchar(255) DEFAULT NULL COMMENT 'Ext Order Item Id',
  `locked_do_invoice` smallint(5) unsigned DEFAULT NULL COMMENT 'Locked Do Invoice',
  `locked_do_ship` smallint(5) unsigned DEFAULT NULL COMMENT 'Locked Do Ship',
  `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Invoiced',
  `base_discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Invoiced',
  `discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Refunded',
  `base_discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Refunded',
  `tax_canceled` decimal(12,4) DEFAULT NULL COMMENT 'Tax Canceled',
  `discount_tax_compensation_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Canceled',
  `tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Tax Refunded',
  `base_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Refunded',
  `discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Refunded',
  `base_discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Refunded',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message Id',
  `gift_message_available` int(11) DEFAULT NULL COMMENT 'Gift Message Available',
  `free_shipping` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Free Shipping',
  `weee_tax_applied` text COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  PRIMARY KEY (`item_id`),
  KEY `SALES_ORDER_ITEM_ORDER_ID` (`order_id`),
  KEY `SALES_ORDER_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_ORDER_ITEM_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_ORDER_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_item`
--

LOCK TABLES `sales_order_item` WRITE;
/*!40000 ALTER TABLE `sales_order_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_payment`
--

DROP TABLE IF EXISTS `sales_order_payment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_payment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id',
  `base_shipping_captured` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Captured',
  `shipping_captured` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Captured',
  `amount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Amount Refunded',
  `base_amount_paid` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Paid',
  `amount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Amount Canceled',
  `base_amount_authorized` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Authorized',
  `base_amount_paid_online` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Paid Online',
  `base_amount_refunded_online` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Refunded Online',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `amount_paid` decimal(20,4) DEFAULT NULL COMMENT 'Amount Paid',
  `amount_authorized` decimal(20,4) DEFAULT NULL COMMENT 'Amount Authorized',
  `base_amount_ordered` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Ordered',
  `base_shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Refunded',
  `shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Refunded',
  `base_amount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Refunded',
  `amount_ordered` decimal(20,4) DEFAULT NULL COMMENT 'Amount Ordered',
  `base_amount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Canceled',
  `quote_payment_id` int(11) DEFAULT NULL COMMENT 'Quote Payment Id',
  `additional_data` text COMMENT 'Additional Data',
  `cc_exp_month` varchar(12) DEFAULT NULL COMMENT 'Cc Exp Month',
  `cc_ss_start_year` varchar(12) DEFAULT NULL COMMENT 'Cc Ss Start Year',
  `echeck_bank_name` varchar(128) DEFAULT NULL COMMENT 'Echeck Bank Name',
  `method` varchar(128) DEFAULT NULL COMMENT 'Method',
  `cc_debug_request_body` varchar(32) DEFAULT NULL COMMENT 'Cc Debug Request Body',
  `cc_secure_verify` varchar(32) DEFAULT NULL COMMENT 'Cc Secure Verify',
  `protection_eligibility` varchar(32) DEFAULT NULL COMMENT 'Protection Eligibility',
  `cc_approval` varchar(32) DEFAULT NULL COMMENT 'Cc Approval',
  `cc_last_4` varchar(100) DEFAULT NULL COMMENT 'Cc Last 4',
  `cc_status_description` varchar(32) DEFAULT NULL COMMENT 'Cc Status Description',
  `echeck_type` varchar(32) DEFAULT NULL COMMENT 'Echeck Type',
  `cc_debug_response_serialized` varchar(32) DEFAULT NULL COMMENT 'Cc Debug Response Serialized',
  `cc_ss_start_month` varchar(128) DEFAULT NULL COMMENT 'Cc Ss Start Month',
  `echeck_account_type` varchar(255) DEFAULT NULL COMMENT 'Echeck Account Type',
  `last_trans_id` varchar(255) DEFAULT NULL COMMENT 'Last Trans Id',
  `cc_cid_status` varchar(32) DEFAULT NULL COMMENT 'Cc Cid Status',
  `cc_owner` varchar(128) DEFAULT NULL COMMENT 'Cc Owner',
  `cc_type` varchar(32) DEFAULT NULL COMMENT 'Cc Type',
  `po_number` varchar(32) DEFAULT NULL COMMENT 'Po Number',
  `cc_exp_year` varchar(4) DEFAULT NULL COMMENT 'Cc Exp Year',
  `cc_status` varchar(4) DEFAULT NULL COMMENT 'Cc Status',
  `echeck_routing_number` varchar(32) DEFAULT NULL COMMENT 'Echeck Routing Number',
  `account_status` varchar(32) DEFAULT NULL COMMENT 'Account Status',
  `anet_trans_method` varchar(32) DEFAULT NULL COMMENT 'Anet Trans Method',
  `cc_debug_response_body` varchar(32) DEFAULT NULL COMMENT 'Cc Debug Response Body',
  `cc_ss_issue` varchar(32) DEFAULT NULL COMMENT 'Cc Ss Issue',
  `echeck_account_name` varchar(32) DEFAULT NULL COMMENT 'Echeck Account Name',
  `cc_avs_status` varchar(32) DEFAULT NULL COMMENT 'Cc Avs Status',
  `cc_number_enc` varchar(128) DEFAULT NULL,
  `cc_trans_id` varchar(32) DEFAULT NULL COMMENT 'Cc Trans Id',
  `address_status` varchar(32) DEFAULT NULL COMMENT 'Address Status',
  `additional_information` text COMMENT 'Additional Information',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_ORDER_PAYMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_ORDER_PAYMENT_PARENT_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Payment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_payment`
--

LOCK TABLES `sales_order_payment` WRITE;
/*!40000 ALTER TABLE `sales_order_payment` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_payment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_status`
--

DROP TABLE IF EXISTS `sales_order_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_status` (
  `status` varchar(32) NOT NULL COMMENT 'Status',
  `label` varchar(128) NOT NULL COMMENT 'Label',
  PRIMARY KEY (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_status`
--

LOCK TABLES `sales_order_status` WRITE;
/*!40000 ALTER TABLE `sales_order_status` DISABLE KEYS */;
INSERT INTO `sales_order_status` VALUES ('canceled','Canceled'),('closed','Closed'),('complete','Complete'),('fraud','Suspected Fraud'),('holded','On Hold'),('payment_review','Payment Review'),('paypal_canceled_reversal','PayPal Canceled Reversal'),('paypal_reversed','PayPal Reversed'),('pending','Pending'),('pending_payment','Pending Payment'),('pending_paypal','Pending PayPal'),('processing','Processing');
/*!40000 ALTER TABLE `sales_order_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_status_history`
--

DROP TABLE IF EXISTS `sales_order_status_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_status_history` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id',
  `is_customer_notified` int(11) DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front',
  `comment` text COMMENT 'Comment',
  `status` varchar(32) DEFAULT NULL COMMENT 'Status',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `entity_name` varchar(32) DEFAULT NULL COMMENT 'Shows what entity history is bind to.',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_ORDER_STATUS_HISTORY_PARENT_ID` (`parent_id`),
  KEY `SALES_ORDER_STATUS_HISTORY_CREATED_AT` (`created_at`),
  CONSTRAINT `SALES_ORDER_STATUS_HISTORY_PARENT_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Status History';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_status_history`
--

LOCK TABLES `sales_order_status_history` WRITE;
/*!40000 ALTER TABLE `sales_order_status_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_status_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_status_label`
--

DROP TABLE IF EXISTS `sales_order_status_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_status_label` (
  `status` varchar(32) NOT NULL COMMENT 'Status',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id',
  `label` varchar(128) NOT NULL COMMENT 'Label',
  PRIMARY KEY (`status`,`store_id`),
  KEY `SALES_ORDER_STATUS_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_ORDER_STATUS_LABEL_STATUS_SALES_ORDER_STATUS_STATUS` FOREIGN KEY (`status`) REFERENCES `sales_order_status` (`status`) ON DELETE CASCADE,
  CONSTRAINT `SALES_ORDER_STATUS_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Label Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_status_label`
--

LOCK TABLES `sales_order_status_label` WRITE;
/*!40000 ALTER TABLE `sales_order_status_label` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_status_label` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_status_state`
--

DROP TABLE IF EXISTS `sales_order_status_state`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_status_state` (
  `status` varchar(32) NOT NULL COMMENT 'Status',
  `state` varchar(32) NOT NULL COMMENT 'Label',
  `is_default` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Default',
  `visible_on_front` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Visible on front',
  PRIMARY KEY (`status`,`state`),
  CONSTRAINT `SALES_ORDER_STATUS_STATE_STATUS_SALES_ORDER_STATUS_STATUS` FOREIGN KEY (`status`) REFERENCES `sales_order_status` (`status`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_status_state`
--

LOCK TABLES `sales_order_status_state` WRITE;
/*!40000 ALTER TABLE `sales_order_status_state` DISABLE KEYS */;
INSERT INTO `sales_order_status_state` VALUES ('canceled','canceled',1,1),('closed','closed',1,1),('complete','complete',1,1),('fraud','payment_review',0,1),('fraud','processing',0,1),('holded','holded',1,1),('payment_review','payment_review',1,1),('pending','new',1,1),('pending_payment','pending_payment',1,0),('processing','processing',1,1);
/*!40000 ALTER TABLE `sales_order_status_state` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_tax`
--

DROP TABLE IF EXISTS `sales_order_tax`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_tax` (
  `tax_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Tax Id',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id',
  `code` varchar(255) DEFAULT NULL COMMENT 'Code',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `percent` decimal(12,4) DEFAULT NULL COMMENT 'Percent',
  `amount` decimal(20,4) DEFAULT NULL COMMENT 'Amount',
  `priority` int(11) NOT NULL COMMENT 'Priority',
  `position` int(11) NOT NULL COMMENT 'Position',
  `base_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount',
  `process` smallint(6) NOT NULL COMMENT 'Process',
  `base_real_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Real Amount',
  PRIMARY KEY (`tax_id`),
  KEY `SALES_ORDER_TAX_ORDER_ID_PRIORITY_POSITION` (`order_id`,`priority`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Tax Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_tax`
--

LOCK TABLES `sales_order_tax` WRITE;
/*!40000 ALTER TABLE `sales_order_tax` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_tax` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_tax_item`
--

DROP TABLE IF EXISTS `sales_order_tax_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_tax_item` (
  `tax_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Tax Item Id',
  `tax_id` int(10) unsigned NOT NULL COMMENT 'Tax Id',
  `item_id` int(10) unsigned DEFAULT NULL COMMENT 'Item Id',
  `tax_percent` decimal(12,4) NOT NULL COMMENT 'Real Tax Percent For Item',
  `amount` decimal(20,4) NOT NULL COMMENT 'Tax amount for the item and tax rate',
  `base_amount` decimal(20,4) NOT NULL COMMENT 'Base tax amount for the item and tax rate',
  `real_amount` decimal(20,4) NOT NULL COMMENT 'Real tax amount for the item and tax rate',
  `real_base_amount` decimal(20,4) NOT NULL COMMENT 'Real base tax amount for the item and tax rate',
  `associated_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Id of the associated item',
  `taxable_item_type` varchar(32) NOT NULL COMMENT 'Type of the taxable item',
  PRIMARY KEY (`tax_item_id`),
  UNIQUE KEY `SALES_ORDER_TAX_ITEM_TAX_ID_ITEM_ID` (`tax_id`,`item_id`),
  KEY `SALES_ORDER_TAX_ITEM_ASSOCIATED_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` (`associated_item_id`),
  KEY `SALES_ORDER_TAX_ITEM_ITEM_ID` (`item_id`),
  CONSTRAINT `SALES_ORDER_TAX_ITEM_ASSOCIATED_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` FOREIGN KEY (`associated_item_id`) REFERENCES `sales_order_item` (`item_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_ORDER_TAX_ITEM_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` FOREIGN KEY (`item_id`) REFERENCES `sales_order_item` (`item_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_ORDER_TAX_ITEM_TAX_ID_SALES_ORDER_TAX_TAX_ID` FOREIGN KEY (`tax_id`) REFERENCES `sales_order_tax` (`tax_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Tax Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_tax_item`
--

LOCK TABLES `sales_order_tax_item` WRITE;
/*!40000 ALTER TABLE `sales_order_tax_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_order_tax_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_payment_transaction`
--

DROP TABLE IF EXISTS `sales_payment_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_payment_transaction` (
  `transaction_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Transaction Id',
  `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent Id',
  `order_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Order Id',
  `payment_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Payment Id',
  `txn_id` varchar(100) DEFAULT NULL COMMENT 'Txn Id',
  `parent_txn_id` varchar(100) DEFAULT NULL COMMENT 'Parent Txn Id',
  `txn_type` varchar(15) DEFAULT NULL COMMENT 'Txn Type',
  `is_closed` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Is Closed',
  `additional_information` blob COMMENT 'Additional Information',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  PRIMARY KEY (`transaction_id`),
  UNIQUE KEY `SALES_PAYMENT_TRANSACTION_ORDER_ID_PAYMENT_ID_TXN_ID` (`order_id`,`payment_id`,`txn_id`),
  KEY `SALES_PAYMENT_TRANSACTION_PARENT_ID` (`parent_id`),
  KEY `SALES_PAYMENT_TRANSACTION_PAYMENT_ID` (`payment_id`),
  CONSTRAINT `FK_B99FF1A06402D725EBDB0F3A7ECD47A2` FOREIGN KEY (`parent_id`) REFERENCES `sales_payment_transaction` (`transaction_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_PAYMENT_TRANSACTION_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_PAYMENT_TRANSACTION_PAYMENT_ID_SALES_ORDER_PAYMENT_ENTT_ID` FOREIGN KEY (`payment_id`) REFERENCES `sales_order_payment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Payment Transaction';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_payment_transaction`
--

LOCK TABLES `sales_payment_transaction` WRITE;
/*!40000 ALTER TABLE `sales_payment_transaction` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_payment_transaction` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_refunded_aggregated`
--

DROP TABLE IF EXISTS `sales_refunded_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_refunded_aggregated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `refunded` decimal(20,4) DEFAULT NULL COMMENT 'Refunded',
  `online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Online Refunded',
  `offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Offline Refunded',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_REFUNDED_AGGREGATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_REFUNDED_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_REFUNDED_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Refunded Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_refunded_aggregated`
--

LOCK TABLES `sales_refunded_aggregated` WRITE;
/*!40000 ALTER TABLE `sales_refunded_aggregated` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_refunded_aggregated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_refunded_aggregated_order`
--

DROP TABLE IF EXISTS `sales_refunded_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_refunded_aggregated_order` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `refunded` decimal(20,4) DEFAULT NULL COMMENT 'Refunded',
  `online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Online Refunded',
  `offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Offline Refunded',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_REFUNDED_AGGREGATED_ORDER_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_REFUNDED_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_REFUNDED_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Refunded Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_refunded_aggregated_order`
--

LOCK TABLES `sales_refunded_aggregated_order` WRITE;
/*!40000 ALTER TABLE `sales_refunded_aggregated_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_refunded_aggregated_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_sequence_meta`
--

DROP TABLE IF EXISTS `sales_sequence_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_sequence_meta` (
  `meta_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `entity_type` varchar(32) NOT NULL COMMENT 'Prefix',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id',
  `sequence_table` varchar(64) NOT NULL COMMENT 'table for sequence',
  PRIMARY KEY (`meta_id`),
  UNIQUE KEY `SALES_SEQUENCE_META_ENTITY_TYPE_STORE_ID` (`entity_type`,`store_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='sales_sequence_meta';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_sequence_meta`
--

LOCK TABLES `sales_sequence_meta` WRITE;
/*!40000 ALTER TABLE `sales_sequence_meta` DISABLE KEYS */;
INSERT INTO `sales_sequence_meta` VALUES (1,'order',0,'sequence_order_0'),(2,'invoice',0,'sequence_invoice_0'),(3,'creditmemo',0,'sequence_creditmemo_0'),(4,'shipment',0,'sequence_shipment_0'),(5,'order',1,'sequence_order_1'),(6,'invoice',1,'sequence_invoice_1'),(7,'creditmemo',1,'sequence_creditmemo_1'),(8,'shipment',1,'sequence_shipment_1');
/*!40000 ALTER TABLE `sales_sequence_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_sequence_profile`
--

DROP TABLE IF EXISTS `sales_sequence_profile`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_sequence_profile` (
  `profile_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `meta_id` int(10) unsigned NOT NULL COMMENT 'Meta_id',
  `prefix` varchar(32) DEFAULT NULL COMMENT 'Prefix',
  `suffix` varchar(32) DEFAULT NULL COMMENT 'Suffix',
  `start_value` int(10) unsigned NOT NULL DEFAULT '1' COMMENT 'Start value for sequence',
  `step` int(10) unsigned NOT NULL DEFAULT '1' COMMENT 'Step for sequence',
  `max_value` int(10) unsigned NOT NULL COMMENT 'MaxValue for sequence',
  `warning_value` int(10) unsigned NOT NULL COMMENT 'WarningValue for sequence',
  `is_active` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'isActive flag',
  PRIMARY KEY (`profile_id`),
  UNIQUE KEY `SALES_SEQUENCE_PROFILE_META_ID_PREFIX_SUFFIX` (`meta_id`,`prefix`,`suffix`),
  CONSTRAINT `SALES_SEQUENCE_PROFILE_META_ID_SALES_SEQUENCE_META_META_ID` FOREIGN KEY (`meta_id`) REFERENCES `sales_sequence_meta` (`meta_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='sales_sequence_profile';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_sequence_profile`
--

LOCK TABLES `sales_sequence_profile` WRITE;
/*!40000 ALTER TABLE `sales_sequence_profile` DISABLE KEYS */;
INSERT INTO `sales_sequence_profile` VALUES (1,1,NULL,NULL,1,1,4294967295,4294966295,1),(2,2,NULL,NULL,1,1,4294967295,4294966295,1),(3,3,NULL,NULL,1,1,4294967295,4294966295,1),(4,4,NULL,NULL,1,1,4294967295,4294966295,1),(5,5,NULL,NULL,1,1,4294967295,4294966295,1),(6,6,NULL,NULL,1,1,4294967295,4294966295,1),(7,7,NULL,NULL,1,1,4294967295,4294966295,1),(8,8,NULL,NULL,1,1,4294967295,4294966295,1);
/*!40000 ALTER TABLE `sales_sequence_profile` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_shipment`
--

DROP TABLE IF EXISTS `sales_shipment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_shipment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `total_weight` decimal(12,4) DEFAULT NULL COMMENT 'Total Weight',
  `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty',
  `email_sent` smallint(5) unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint(5) unsigned DEFAULT NULL COMMENT 'Send Email',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id',
  `customer_id` int(11) DEFAULT NULL COMMENT 'Customer Id',
  `shipping_address_id` int(11) DEFAULT NULL COMMENT 'Shipping Address Id',
  `billing_address_id` int(11) DEFAULT NULL COMMENT 'Billing Address Id',
  `shipment_status` int(11) DEFAULT NULL COMMENT 'Shipment Status',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment Id',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  `packages` text COMMENT 'Packed Products in Packages',
  `shipping_label` mediumblob COMMENT 'Shipping Label Content',
  `customer_note` text COMMENT 'Customer Note',
  `customer_note_notify` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_SHIPMENT_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_SHIPMENT_STORE_ID` (`store_id`),
  KEY `SALES_SHIPMENT_TOTAL_QTY` (`total_qty`),
  KEY `SALES_SHIPMENT_ORDER_ID` (`order_id`),
  KEY `SALES_SHIPMENT_CREATED_AT` (`created_at`),
  KEY `SALES_SHIPMENT_UPDATED_AT` (`updated_at`),
  KEY `SALES_SHIPMENT_SEND_EMAIL` (`send_email`),
  KEY `SALES_SHIPMENT_EMAIL_SENT` (`email_sent`),
  CONSTRAINT `SALES_SHIPMENT_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_SHIPMENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipment`
--

LOCK TABLES `sales_shipment` WRITE;
/*!40000 ALTER TABLE `sales_shipment` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_shipment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_shipment_comment`
--

DROP TABLE IF EXISTS `sales_shipment_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_shipment_comment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id',
  `is_customer_notified` int(11) DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front',
  `comment` text COMMENT 'Comment',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_SHIPMENT_COMMENT_CREATED_AT` (`created_at`),
  KEY `SALES_SHIPMENT_COMMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_SHIPMENT_COMMENT_PARENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Comment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipment_comment`
--

LOCK TABLES `sales_shipment_comment` WRITE;
/*!40000 ALTER TABLE `sales_shipment_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_shipment_comment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_shipment_grid`
--

DROP TABLE IF EXISTS `sales_shipment_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_shipment_grid` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment Id',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `order_increment_id` varchar(32) NOT NULL COMMENT 'Order Increment Id',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id',
  `order_created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Order Increment Id',
  `customer_name` varchar(128) NOT NULL COMMENT 'Customer Name',
  `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty',
  `shipment_status` int(11) DEFAULT NULL COMMENT 'Shipment Status',
  `order_status` varchar(32) DEFAULT NULL COMMENT 'Order',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `billing_name` varchar(128) DEFAULT NULL COMMENT 'Billing Name',
  `shipping_name` varchar(128) DEFAULT NULL COMMENT 'Shipping Name',
  `customer_email` varchar(128) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group_id` int(11) DEFAULT NULL,
  `payment_method` varchar(32) DEFAULT NULL COMMENT 'Payment Method',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_SHIPMENT_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_SHIPMENT_GRID_STORE_ID` (`store_id`),
  KEY `SALES_SHIPMENT_GRID_TOTAL_QTY` (`total_qty`),
  KEY `SALES_SHIPMENT_GRID_ORDER_INCREMENT_ID` (`order_increment_id`),
  KEY `SALES_SHIPMENT_GRID_SHIPMENT_STATUS` (`shipment_status`),
  KEY `SALES_SHIPMENT_GRID_ORDER_STATUS` (`order_status`),
  KEY `SALES_SHIPMENT_GRID_CREATED_AT` (`created_at`),
  KEY `SALES_SHIPMENT_GRID_UPDATED_AT` (`updated_at`),
  KEY `SALES_SHIPMENT_GRID_ORDER_CREATED_AT` (`order_created_at`),
  KEY `SALES_SHIPMENT_GRID_SHIPPING_NAME` (`shipping_name`),
  KEY `SALES_SHIPMENT_GRID_BILLING_NAME` (`billing_name`),
  FULLTEXT KEY `FTI_086B40C8955F167B8EA76653437879B4` (`increment_id`,`order_increment_id`,`shipping_name`,`customer_name`,`customer_email`,`billing_address`,`shipping_address`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipment_grid`
--

LOCK TABLES `sales_shipment_grid` WRITE;
/*!40000 ALTER TABLE `sales_shipment_grid` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_shipment_grid` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_shipment_item`
--

DROP TABLE IF EXISTS `sales_shipment_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_shipment_item` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id',
  `row_total` decimal(20,4) DEFAULT NULL COMMENT 'Row Total',
  `price` decimal(20,4) DEFAULT NULL COMMENT 'Price',
  `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `product_id` int(11) DEFAULT NULL COMMENT 'Product Id',
  `order_item_id` int(11) DEFAULT NULL COMMENT 'Order Item Id',
  `additional_data` text COMMENT 'Additional Data',
  `description` text COMMENT 'Description',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_SHIPMENT_ITEM_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_SHIPMENT_ITEM_PARENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipment_item`
--

LOCK TABLES `sales_shipment_item` WRITE;
/*!40000 ALTER TABLE `sales_shipment_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_shipment_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_shipment_track`
--

DROP TABLE IF EXISTS `sales_shipment_track`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_shipment_track` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id',
  `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id',
  `track_number` text COMMENT 'Number',
  `description` text COMMENT 'Description',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `carrier_code` varchar(32) DEFAULT NULL COMMENT 'Carrier Code',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_SHIPMENT_TRACK_PARENT_ID` (`parent_id`),
  KEY `SALES_SHIPMENT_TRACK_ORDER_ID` (`order_id`),
  KEY `SALES_SHIPMENT_TRACK_CREATED_AT` (`created_at`),
  CONSTRAINT `SALES_SHIPMENT_TRACK_PARENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Track';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipment_track`
--

LOCK TABLES `sales_shipment_track` WRITE;
/*!40000 ALTER TABLE `sales_shipment_track` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_shipment_track` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_shipping_aggregated`
--

DROP TABLE IF EXISTS `sales_shipping_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_shipping_aggregated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `orders_count` int(11) NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `total_shipping` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping',
  `total_shipping_actual` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_SHPP_AGGRED_PERIOD_STORE_ID_ORDER_STS_SHPP_DESCRIPTION` (`period`,`store_id`,`order_status`,`shipping_description`),
  KEY `SALES_SHIPPING_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_SHIPPING_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Shipping Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipping_aggregated`
--

LOCK TABLES `sales_shipping_aggregated` WRITE;
/*!40000 ALTER TABLE `sales_shipping_aggregated` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_shipping_aggregated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_shipping_aggregated_order`
--

DROP TABLE IF EXISTS `sales_shipping_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_shipping_aggregated_order` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `orders_count` int(11) NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `total_shipping` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping',
  `total_shipping_actual` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_C05FAE47282EEA68654D0924E946761F` (`period`,`store_id`,`order_status`,`shipping_description`),
  KEY `SALES_SHIPPING_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_SHIPPING_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Shipping Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipping_aggregated_order`
--

LOCK TABLES `sales_shipping_aggregated_order` WRITE;
/*!40000 ALTER TABLE `sales_shipping_aggregated_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `sales_shipping_aggregated_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `salesrule`
--

DROP TABLE IF EXISTS `salesrule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule` (
  `rule_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text COMMENT 'Description',
  `from_date` date DEFAULT NULL COMMENT 'From',
  `to_date` date DEFAULT NULL COMMENT 'To',
  `uses_per_customer` int(11) NOT NULL DEFAULT '0' COMMENT 'Uses Per Customer',
  `is_active` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Is Active',
  `conditions_serialized` mediumtext COMMENT 'Conditions Serialized',
  `actions_serialized` mediumtext COMMENT 'Actions Serialized',
  `stop_rules_processing` smallint(6) NOT NULL DEFAULT '1' COMMENT 'Stop Rules Processing',
  `is_advanced` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Is Advanced',
  `product_ids` text COMMENT 'Product Ids',
  `sort_order` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `simple_action` varchar(32) DEFAULT NULL COMMENT 'Simple Action',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount',
  `discount_qty` decimal(12,4) DEFAULT NULL COMMENT 'Discount Qty',
  `discount_step` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Discount Step',
  `apply_to_shipping` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Apply To Shipping',
  `times_used` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Times Used',
  `is_rss` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Is Rss',
  `coupon_type` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Coupon Type',
  `use_auto_generation` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Use Auto Generation',
  `uses_per_coupon` int(11) NOT NULL DEFAULT '0' COMMENT 'User Per Coupon',
  `simple_free_shipping` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Simple Free Shipping',
  PRIMARY KEY (`rule_id`),
  KEY `SALESRULE_IS_ACTIVE_SORT_ORDER_TO_DATE_FROM_DATE` (`is_active`,`sort_order`,`to_date`,`from_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule`
--

LOCK TABLES `salesrule` WRITE;
/*!40000 ALTER TABLE `salesrule` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `salesrule_coupon`
--

DROP TABLE IF EXISTS `salesrule_coupon`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_coupon` (
  `coupon_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Coupon Id',
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `code` varchar(255) DEFAULT NULL COMMENT 'Code',
  `usage_limit` int(10) unsigned DEFAULT NULL COMMENT 'Usage Limit',
  `usage_per_customer` int(10) unsigned DEFAULT NULL COMMENT 'Usage Per Customer',
  `times_used` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Times Used',
  `expiration_date` datetime DEFAULT NULL COMMENT 'Expiration Date',
  `is_primary` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Primary',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Coupon Code Creation Date',
  `type` smallint(6) DEFAULT '0' COMMENT 'Coupon Code Type',
  `generated_by_dotmailer` smallint(6) DEFAULT NULL COMMENT '1 = Generated by dotmailer',
  PRIMARY KEY (`coupon_id`),
  UNIQUE KEY `SALESRULE_COUPON_CODE` (`code`),
  UNIQUE KEY `SALESRULE_COUPON_RULE_ID_IS_PRIMARY` (`rule_id`,`is_primary`),
  KEY `SALESRULE_COUPON_RULE_ID` (`rule_id`),
  CONSTRAINT `SALESRULE_COUPON_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_coupon`
--

LOCK TABLES `salesrule_coupon` WRITE;
/*!40000 ALTER TABLE `salesrule_coupon` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_coupon` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `salesrule_coupon_aggregated`
--

DROP TABLE IF EXISTS `salesrule_coupon_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_coupon_aggregated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date NOT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `coupon_code` varchar(50) DEFAULT NULL COMMENT 'Coupon Code',
  `coupon_uses` int(11) NOT NULL DEFAULT '0' COMMENT 'Coupon Uses',
  `subtotal_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal Amount',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount',
  `total_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Amount',
  `subtotal_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal Amount Actual',
  `discount_amount_actual` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount Actual',
  `total_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Amount Actual',
  `rule_name` varchar(255) DEFAULT NULL COMMENT 'Rule Name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALESRULE_COUPON_AGGRED_PERIOD_STORE_ID_ORDER_STS_COUPON_CODE` (`period`,`store_id`,`order_status`,`coupon_code`),
  KEY `SALESRULE_COUPON_AGGREGATED_STORE_ID` (`store_id`),
  KEY `SALESRULE_COUPON_AGGREGATED_RULE_NAME` (`rule_name`),
  CONSTRAINT `SALESRULE_COUPON_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Coupon Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_coupon_aggregated`
--

LOCK TABLES `salesrule_coupon_aggregated` WRITE;
/*!40000 ALTER TABLE `salesrule_coupon_aggregated` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_coupon_aggregated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `salesrule_coupon_aggregated_order`
--

DROP TABLE IF EXISTS `salesrule_coupon_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_coupon_aggregated_order` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date NOT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `coupon_code` varchar(50) DEFAULT NULL COMMENT 'Coupon Code',
  `coupon_uses` int(11) NOT NULL DEFAULT '0' COMMENT 'Coupon Uses',
  `subtotal_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal Amount',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount',
  `total_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Amount',
  `rule_name` varchar(255) DEFAULT NULL COMMENT 'Rule Name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_1094D1FBBCBB11704A29DEF3ACC37D2B` (`period`,`store_id`,`order_status`,`coupon_code`),
  KEY `SALESRULE_COUPON_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  KEY `SALESRULE_COUPON_AGGREGATED_ORDER_RULE_NAME` (`rule_name`),
  CONSTRAINT `SALESRULE_COUPON_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Coupon Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_coupon_aggregated_order`
--

LOCK TABLES `salesrule_coupon_aggregated_order` WRITE;
/*!40000 ALTER TABLE `salesrule_coupon_aggregated_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_coupon_aggregated_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `salesrule_coupon_aggregated_updated`
--

DROP TABLE IF EXISTS `salesrule_coupon_aggregated_updated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_coupon_aggregated_updated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date NOT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `coupon_code` varchar(50) DEFAULT NULL COMMENT 'Coupon Code',
  `coupon_uses` int(11) NOT NULL DEFAULT '0' COMMENT 'Coupon Uses',
  `subtotal_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal Amount',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount',
  `total_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Amount',
  `subtotal_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal Amount Actual',
  `discount_amount_actual` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount Actual',
  `total_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Amount Actual',
  `rule_name` varchar(255) DEFAULT NULL COMMENT 'Rule Name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_7196FA120A4F0F84E1B66605E87E213E` (`period`,`store_id`,`order_status`,`coupon_code`),
  KEY `SALESRULE_COUPON_AGGREGATED_UPDATED_STORE_ID` (`store_id`),
  KEY `SALESRULE_COUPON_AGGREGATED_UPDATED_RULE_NAME` (`rule_name`),
  CONSTRAINT `SALESRULE_COUPON_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon Aggregated Updated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_coupon_aggregated_updated`
--

LOCK TABLES `salesrule_coupon_aggregated_updated` WRITE;
/*!40000 ALTER TABLE `salesrule_coupon_aggregated_updated` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_coupon_aggregated_updated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `salesrule_coupon_usage`
--

DROP TABLE IF EXISTS `salesrule_coupon_usage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_coupon_usage` (
  `coupon_id` int(10) unsigned NOT NULL COMMENT 'Coupon Id',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer Id',
  `times_used` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Times Used',
  PRIMARY KEY (`coupon_id`,`customer_id`),
  KEY `SALESRULE_COUPON_USAGE_CUSTOMER_ID` (`customer_id`),
  CONSTRAINT `SALESRULE_COUPON_USAGE_COUPON_ID_SALESRULE_COUPON_COUPON_ID` FOREIGN KEY (`coupon_id`) REFERENCES `salesrule_coupon` (`coupon_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_COUPON_USAGE_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon Usage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_coupon_usage`
--

LOCK TABLES `salesrule_coupon_usage` WRITE;
/*!40000 ALTER TABLE `salesrule_coupon_usage` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_coupon_usage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `salesrule_customer`
--

DROP TABLE IF EXISTS `salesrule_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_customer` (
  `rule_customer_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Customer Id',
  `rule_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Rule ID',
  `customer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Id',
  `times_used` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Times Used',
  PRIMARY KEY (`rule_customer_id`),
  KEY `SALESRULE_CUSTOMER_RULE_ID_CUSTOMER_ID` (`rule_id`,`customer_id`),
  KEY `SALESRULE_CUSTOMER_CUSTOMER_ID_RULE_ID` (`customer_id`,`rule_id`),
  CONSTRAINT `SALESRULE_CUSTOMER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_CUSTOMER_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Customer';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_customer`
--

LOCK TABLES `salesrule_customer` WRITE;
/*!40000 ALTER TABLE `salesrule_customer` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_customer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `salesrule_customer_group`
--

DROP TABLE IF EXISTS `salesrule_customer_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_customer_group` (
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group Id',
  PRIMARY KEY (`rule_id`,`customer_group_id`),
  KEY `SALESRULE_CUSTOMER_GROUP_CUSTOMER_GROUP_ID` (`customer_group_id`),
  CONSTRAINT `SALESRULE_CSTR_GROUP_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_CUSTOMER_GROUP_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Rules To Customer Groups Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_customer_group`
--

LOCK TABLES `salesrule_customer_group` WRITE;
/*!40000 ALTER TABLE `salesrule_customer_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_customer_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `salesrule_label`
--

DROP TABLE IF EXISTS `salesrule_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_label` (
  `label_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Label Id',
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id',
  `label` varchar(255) DEFAULT NULL COMMENT 'Label',
  PRIMARY KEY (`label_id`),
  UNIQUE KEY `SALESRULE_LABEL_RULE_ID_STORE_ID` (`rule_id`,`store_id`),
  KEY `SALESRULE_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `SALESRULE_LABEL_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Label';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_label`
--

LOCK TABLES `salesrule_label` WRITE;
/*!40000 ALTER TABLE `salesrule_label` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_label` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `salesrule_product_attribute`
--

DROP TABLE IF EXISTS `salesrule_product_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_product_attribute` (
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group Id',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute Id',
  PRIMARY KEY (`rule_id`,`website_id`,`customer_group_id`,`attribute_id`),
  KEY `SALESRULE_PRODUCT_ATTRIBUTE_WEBSITE_ID` (`website_id`),
  KEY `SALESRULE_PRODUCT_ATTRIBUTE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `SALESRULE_PRODUCT_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `SALESRULE_PRD_ATTR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_PRD_ATTR_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_PRODUCT_ATTRIBUTE_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_PRODUCT_ATTRIBUTE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Product Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_product_attribute`
--

LOCK TABLES `salesrule_product_attribute` WRITE;
/*!40000 ALTER TABLE `salesrule_product_attribute` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_product_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `salesrule_website`
--

DROP TABLE IF EXISTS `salesrule_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_website` (
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  PRIMARY KEY (`rule_id`,`website_id`),
  KEY `SALESRULE_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `SALESRULE_WEBSITE_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Rules To Websites Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_website`
--

LOCK TABLES `salesrule_website` WRITE;
/*!40000 ALTER TABLE `salesrule_website` DISABLE KEYS */;
/*!40000 ALTER TABLE `salesrule_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `scandiweb_menumanager_item`
--

DROP TABLE IF EXISTS `scandiweb_menumanager_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scandiweb_menumanager_item` (
  `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `menu_id` smallint(5) unsigned NOT NULL DEFAULT '0',
  `parent_id` smallint(6) NOT NULL DEFAULT '0',
  `title` varchar(255) NOT NULL,
  `item_class` varchar(255) NOT NULL,
  `identifier` varchar(100) NOT NULL,
  `url` text,
  `url_attributes` varchar(255) DEFAULT NULL,
  `open_type` smallint(6) NOT NULL DEFAULT '0',
  `url_type` smallint(6) NOT NULL DEFAULT '0',
  `cms_page_identifier` varchar(100) DEFAULT NULL,
  `category_id` int(10) unsigned DEFAULT NULL,
  `position` smallint(6) NOT NULL DEFAULT '0',
  `is_active` smallint(6) NOT NULL DEFAULT '1',
  `icon` varchar(255) DEFAULT NULL,
  `icon_alt` varchar(255) DEFAULT NULL,
  `is_promo` int(11) DEFAULT '0' COMMENT 'Is promo category bool',
  `promo_image` varchar(255) DEFAULT NULL COMMENT 'Promo category background image',
  PRIMARY KEY (`item_id`),
  KEY `SCANDIWEB_MENUMANAGER_ITEM_IDENTIFIER` (`identifier`),
  KEY `FK_0AB456CB28F7294C1412103466C201D3` (`menu_id`),
  KEY `SCANDIWEB_MENUMANAGER_ITEM_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` (`category_id`),
  KEY `FK_2058573FEB4C380B79E88A7E2C6B2FE1` (`cms_page_identifier`),
  CONSTRAINT `FK_0AB456CB28F7294C1412103466C201D3` FOREIGN KEY (`menu_id`) REFERENCES `scandiweb_menumanager_menu` (`menu_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_2058573FEB4C380B79E88A7E2C6B2FE1` FOREIGN KEY (`cms_page_identifier`) REFERENCES `cms_page` (`identifier`) ON DELETE SET NULL,
  CONSTRAINT `SCANDIWEB_MENUMANAGER_ITEM_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=124 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `scandiweb_menumanager_item`
--

LOCK TABLES `scandiweb_menumanager_item` WRITE;
/*!40000 ALTER TABLE `scandiweb_menumanager_item` DISABLE KEYS */;
INSERT INTO `scandiweb_menumanager_item` VALUES (99,2,0,'Categories','MenuOverlay-ItemFigure_type_root','categories',NULL,NULL,0,2,NULL,2,10,1,NULL,NULL,0,NULL),(100,2,99,'Women','','woman',NULL,NULL,0,2,NULL,27,20,1,'scandipwa_menuorganizer_item_icons/woman.png',NULL,0,NULL),(101,2,99,'Men','','man',NULL,NULL,0,2,NULL,20,30,1,'scandipwa_menuorganizer_item_icons/man.png',NULL,0,NULL),(102,2,99,'Accessories','','accessories',NULL,NULL,0,2,NULL,35,40,1,'scandipwa_menuorganizer_item_icons/accessories.png',NULL,0,NULL),(103,2,0,'Trending now','MenuOverlay-ItemFigure_type_trending','trending-now',NULL,NULL,0,2,NULL,2,10,1,NULL,NULL,0,NULL),(104,2,99,'New In','','new-in',NULL,NULL,0,2,NULL,28,15,1,'scandipwa_menuorganizer_item_icons/new-in.png',NULL,0,NULL),(105,2,103,'Glasses','','glasses',NULL,NULL,0,2,NULL,36,10,1,'scandipwa_menuorganizer_item_icons/trending_glasses.png',NULL,0,NULL),(106,2,103,'Dresses','','dresses',NULL,NULL,0,2,NULL,28,20,1,'scandipwa_menuorganizer_item_icons/trending_dresses.png',NULL,0,NULL),(107,2,100,'Dresses','','dresses',NULL,NULL,0,2,NULL,28,30,1,'scandipwa_menuorganizer_item_icons/dresses.jpg',NULL,0,NULL),(108,2,100,'Knitwear','','knitwear',NULL,NULL,0,2,NULL,29,40,1,'scandipwa_menuorganizer_item_icons/knitwear-woman.jpg',NULL,0,NULL),(109,2,100,'Jackets','','jackets',NULL,NULL,0,2,NULL,30,50,1,'scandipwa_menuorganizer_item_icons/jackets-woman.jpg',NULL,0,NULL),(110,2,100,'Trousers','','trousers',NULL,NULL,0,2,NULL,31,60,1,'scandipwa_menuorganizer_item_icons/trousers-woman.jpg',NULL,0,NULL),(111,2,100,'Jeans','','jeans',NULL,NULL,0,2,NULL,32,70,1,'scandipwa_menuorganizer_item_icons/jeans-woman.jpg',NULL,0,NULL),(112,2,100,'Shoes','','shoes',NULL,NULL,0,2,NULL,33,80,1,'scandipwa_menuorganizer_item_icons/shoes-woman.jpg',NULL,0,NULL),(113,2,100,'Shop all women','MenuOverlay-ItemFigure_type_banner','shop-all-woman',NULL,NULL,0,2,NULL,27,90,1,'scandipwa_menuorganizer_item_icons/all-woman.jpg',NULL,0,NULL),(114,2,101,'Knitwear','','knitwear',NULL,NULL,0,2,NULL,22,10,1,'scandipwa_menuorganizer_item_icons/knitwear-man.jpg',NULL,0,NULL),(115,2,101,'Jackets','','jackets',NULL,NULL,0,2,NULL,23,20,1,'scandipwa_menuorganizer_item_icons/jackets-man.jpg',NULL,0,NULL),(116,2,101,'Shoes','','shoes',NULL,NULL,0,2,NULL,24,30,1,'scandipwa_menuorganizer_item_icons/shoes-man.jpg',NULL,0,NULL),(117,2,101,'Trousers','','trousers',NULL,NULL,0,2,NULL,25,40,1,'scandipwa_menuorganizer_item_icons/trousers-man.jpg',NULL,0,NULL),(118,2,101,'Jeans','','jeans',NULL,NULL,0,2,NULL,26,50,1,'scandipwa_menuorganizer_item_icons/jeans-man.jpg',NULL,0,NULL),(119,2,101,'Shop all men','MenuOverlay-ItemFigure_type_banner','shop-all-man',NULL,NULL,0,2,NULL,20,60,1,'scandipwa_menuorganizer_item_icons/all-man.jpg',NULL,0,NULL),(120,2,102,'Sunglasses','','sunglasses',NULL,NULL,0,2,NULL,36,10,1,'scandipwa_menuorganizer_item_icons/glasses.jpg',NULL,0,NULL),(121,2,102,'Bags','','bags',NULL,NULL,0,2,NULL,37,20,1,'scandipwa_menuorganizer_item_icons/bags.jpg',NULL,0,NULL),(122,2,102,'Belts','','belts',NULL,NULL,0,2,NULL,38,30,1,'scandipwa_menuorganizer_item_icons/belts.jpg',NULL,0,NULL),(123,2,102,'Shop all accessories','MenuOverlay-ItemFigure_type_banner','shop-all-accessories',NULL,NULL,0,2,NULL,35,40,1,'scandipwa_menuorganizer_item_icons/all-accessories.jpg',NULL,0,NULL);
/*!40000 ALTER TABLE `scandiweb_menumanager_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `scandiweb_menumanager_menu`
--

DROP TABLE IF EXISTS `scandiweb_menumanager_menu`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scandiweb_menumanager_menu` (
  `menu_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  `identifier` varchar(100) NOT NULL,
  `title` varchar(255) NOT NULL,
  `css_class` varchar(100) DEFAULT NULL,
  `is_active` smallint(6) NOT NULL DEFAULT '1',
  PRIMARY KEY (`menu_id`),
  KEY `SCANDIWEB_MENUMANAGER_MENU_IDENTIFIER` (`identifier`),
  KEY `SCANDIWEB_MENUMANAGER_MENU_MENU_ID` (`menu_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `scandiweb_menumanager_menu`
--

LOCK TABLES `scandiweb_menumanager_menu` WRITE;
/*!40000 ALTER TABLE `scandiweb_menumanager_menu` DISABLE KEYS */;
INSERT INTO `scandiweb_menumanager_menu` VALUES (2,'new-main-menu','New Main Menu',NULL,1);
/*!40000 ALTER TABLE `scandiweb_menumanager_menu` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `scandiweb_menumanager_menu_store`
--

DROP TABLE IF EXISTS `scandiweb_menumanager_menu_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scandiweb_menumanager_menu_store` (
  `menu_id` smallint(5) unsigned NOT NULL,
  `store_id` smallint(5) unsigned NOT NULL,
  PRIMARY KEY (`menu_id`,`store_id`),
  KEY `SCANDIWEB_MENUMANAGER_MENU_STORE_STORE_ID` (`store_id`),
  KEY `SCANDIWEB_MENUMANAGER_MENU_STORE_MENU_ID` (`menu_id`),
  CONSTRAINT `FK_D08034D1FA32C605CB03C127ACA3CFF1` FOREIGN KEY (`menu_id`) REFERENCES `scandiweb_menumanager_menu` (`menu_id`) ON DELETE CASCADE,
  CONSTRAINT `SCANDIWEB_MENUMANAGER_MENU_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `scandiweb_menumanager_menu_store`
--

LOCK TABLES `scandiweb_menumanager_menu_store` WRITE;
/*!40000 ALTER TABLE `scandiweb_menumanager_menu_store` DISABLE KEYS */;
INSERT INTO `scandiweb_menumanager_menu_store` VALUES (2,0);
/*!40000 ALTER TABLE `scandiweb_menumanager_menu_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `scandiweb_slider`
--

DROP TABLE IF EXISTS `scandiweb_slider`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scandiweb_slider` (
  `slider_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Slider id',
  `title` varchar(255) NOT NULL COMMENT 'Slider title',
  `is_active` smallint(6) NOT NULL DEFAULT '1' COMMENT 'Is slider active',
  `show_menu` smallint(6) DEFAULT '1' COMMENT 'Show slide menu',
  `show_navigation` smallint(6) DEFAULT '1' COMMENT 'Show slide navigation',
  `slide_speed` int(10) unsigned DEFAULT '0' COMMENT 'Slide speed',
  `position` int(10) unsigned DEFAULT '0' COMMENT 'Slide speed',
  `animation_speed` int(10) unsigned DEFAULT '0' COMMENT 'Animation speed',
  `slides_to_display` int(10) unsigned DEFAULT '0' COMMENT 'Slides to display',
  `slides_to_scroll` int(10) unsigned DEFAULT '0' COMMENT 'Slides to scroll',
  `lazy_load` smallint(6) DEFAULT '0' COMMENT 'Use lazy load',
  `slides_to_display_tablet` int(10) unsigned DEFAULT '0' COMMENT 'Slides to display on tablet',
  `slides_to_scroll_tablet` int(10) unsigned DEFAULT '0' COMMENT 'Slides to scroll on tablet',
  `slides_to_display_mobile` int(10) unsigned DEFAULT '0' COMMENT 'Slides to display on mobile',
  `slides_to_scroll_mobile` int(10) unsigned DEFAULT '0' COMMENT 'Slides to scroll on mobile',
  PRIMARY KEY (`slider_id`),
  KEY `SCANDIWEB_SLIDER_SLIDER_ID` (`slider_id`),
  KEY `SCANDIWEB_SLIDER_POSITION` (`position`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Slider table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `scandiweb_slider`
--

LOCK TABLES `scandiweb_slider` WRITE;
/*!40000 ALTER TABLE `scandiweb_slider` DISABLE KEYS */;
INSERT INTO `scandiweb_slider` VALUES (4,'homepage-slider',1,0,0,0,0,0,0,0,0,0,0,0,0);
/*!40000 ALTER TABLE `scandiweb_slider` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `scandiweb_slider_slide`
--

DROP TABLE IF EXISTS `scandiweb_slider_slide`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scandiweb_slider_slide` (
  `slide_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Slide id',
  `slider_id` int(10) unsigned NOT NULL COMMENT 'Slider id',
  `title` varchar(255) NOT NULL COMMENT 'Slide title',
  `desktop_image` varchar(255) DEFAULT NULL COMMENT 'Desktop Image location',
  `mobile_image` varchar(255) DEFAULT NULL COMMENT 'Mobile Image location',
  `is_active` smallint(6) NOT NULL DEFAULT '1' COMMENT 'Image is active',
  `position` int(11) NOT NULL DEFAULT '0' COMMENT 'Slide position',
  `start_time` datetime DEFAULT NULL COMMENT 'Slide starting time',
  `end_time` datetime DEFAULT NULL COMMENT 'Slide ending time',
  `slide_link` varchar(255) DEFAULT NULL COMMENT 'Slide link',
  `slide_link_text` text COMMENT 'Slide link text',
  `display_title` varchar(255) DEFAULT NULL COMMENT 'Slide title to display',
  `slide_text` text COMMENT 'Slide text to display',
  `embed_code` text COMMENT 'Iframe url',
  `desktop_image_2` varchar(255) DEFAULT NULL COMMENT 'Desktop Image 2 location',
  `mobile_image_2` varchar(255) DEFAULT NULL COMMENT 'Mobile Image 2 location',
  `embed_code_2` text COMMENT 'Iframe 2 code',
  `slide_link_2` varchar(255) DEFAULT NULL COMMENT 'Slide link 2',
  `display_title_2` varchar(255) DEFAULT NULL COMMENT 'Display title 2',
  `slide_text_2` text COMMENT 'Slide 2 text to display',
  `slide_text_position_2` smallint(6) DEFAULT '0' COMMENT 'Slide text position',
  `desktop_image_3` varchar(255) DEFAULT NULL COMMENT 'Desktop Image 3 location',
  `mobile_image_3` varchar(255) DEFAULT NULL COMMENT 'Mobile Image 3 location',
  `embed_code_3` text COMMENT 'Iframe 3 code',
  `slide_link_3` varchar(255) DEFAULT NULL COMMENT 'Slide link 3',
  `display_title_3` varchar(255) DEFAULT NULL COMMENT 'Display title 3',
  `slide_text_3` text COMMENT 'Slide 3 text to display',
  `slide_text_position_3` smallint(6) DEFAULT '0' COMMENT 'Slide text position',
  `slide_text_position` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Slide text position',
  `slide_width_class` varchar(255) DEFAULT NULL COMMENT 'Width of first Block',
  PRIMARY KEY (`slide_id`),
  KEY `SCANDIWEB_SLIDER_SLIDE_SLIDE_ID` (`slide_id`),
  KEY `SCANDIWEB_SLIDER_SLIDE_SLIDER_ID` (`slider_id`),
  KEY `SCANDIWEB_SLIDER_SLIDE_POSITION` (`position`),
  CONSTRAINT `SCANDIWEB_SLIDER_SLIDE_SLIDER_ID_SCANDIWEB_SLIDER_SLIDER_ID` FOREIGN KEY (`slider_id`) REFERENCES `scandiweb_slider` (`slider_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Slider image table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `scandiweb_slider_slide`
--

LOCK TABLES `scandiweb_slider_slide` WRITE;
/*!40000 ALTER TABLE `scandiweb_slider_slide` DISABLE KEYS */;
INSERT INTO `scandiweb_slider_slide` VALUES (6,4,'summer-mood-dresses','scandiweb/slider/s/l/slider-woman-on-the-beach.jpg',NULL,1,0,NULL,NULL,NULL,NULL,NULL,'<h1 class=\"HomeSlider-Heading\">SUMMER mood</h1>\r\n<button class=\"Button\" href=\"/category/women/women-dresses\">SEE DRESS COLLECTION</button>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL);
/*!40000 ALTER TABLE `scandiweb_slider_slide` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `scandiweb_slider_slide_map`
--

DROP TABLE IF EXISTS `scandiweb_slider_slide_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scandiweb_slider_slide_map` (
  `map_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Map id',
  `slide_id` int(10) unsigned NOT NULL COMMENT 'Image id',
  `title` varchar(255) NOT NULL COMMENT 'Image map title',
  `coordinates` text NOT NULL COMMENT 'Map coordinates',
  `is_active` smallint(6) DEFAULT '1' COMMENT 'Map is active',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product id',
  PRIMARY KEY (`map_id`),
  KEY `SCANDIWEB_SLIDER_SLIDE_MAP_SLIDE_ID` (`slide_id`),
  CONSTRAINT `FK_39DDF0D97FDB34A06E4DBA027F45DF45` FOREIGN KEY (`slide_id`) REFERENCES `scandiweb_slider_slide` (`slide_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='scandiweb_slider_slide_map';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `scandiweb_slider_slide_map`
--

LOCK TABLES `scandiweb_slider_slide_map` WRITE;
/*!40000 ALTER TABLE `scandiweb_slider_slide_map` DISABLE KEYS */;
/*!40000 ALTER TABLE `scandiweb_slider_slide_map` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `scandiweb_slider_slide_store`
--

DROP TABLE IF EXISTS `scandiweb_slider_slide_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scandiweb_slider_slide_store` (
  `slide_id` int(10) unsigned NOT NULL COMMENT 'Image id',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  KEY `SCANDIWEB_SLIDER_SLIDE_STORE_SLIDE_ID` (`slide_id`),
  KEY `SCANDIWEB_SLIDER_SLIDE_STORE_STORE_ID_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `FK_79F87DC3AD889A72D676C5681D879AF6` FOREIGN KEY (`slide_id`) REFERENCES `scandiweb_slider_slide` (`slide_id`) ON DELETE CASCADE,
  CONSTRAINT `SCANDIWEB_SLIDER_SLIDE_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Slider image to store linkage table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `scandiweb_slider_slide_store`
--

LOCK TABLES `scandiweb_slider_slide_store` WRITE;
/*!40000 ALTER TABLE `scandiweb_slider_slide_store` DISABLE KEYS */;
INSERT INTO `scandiweb_slider_slide_store` VALUES (6,0);
/*!40000 ALTER TABLE `scandiweb_slider_slide_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `scconnector_google_feed_cl`
--

DROP TABLE IF EXISTS `scconnector_google_feed_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scconnector_google_feed_cl` (
  `version_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='scconnector_google_feed_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `scconnector_google_feed_cl`
--

LOCK TABLES `scconnector_google_feed_cl` WRITE;
/*!40000 ALTER TABLE `scconnector_google_feed_cl` DISABLE KEYS */;
/*!40000 ALTER TABLE `scconnector_google_feed_cl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `scconnector_google_remove_cl`
--

DROP TABLE IF EXISTS `scconnector_google_remove_cl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scconnector_google_remove_cl` (
  `version_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  PRIMARY KEY (`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='scconnector_google_remove_cl';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `scconnector_google_remove_cl`
--

LOCK TABLES `scconnector_google_remove_cl` WRITE;
/*!40000 ALTER TABLE `scconnector_google_remove_cl` DISABLE KEYS */;
/*!40000 ALTER TABLE `scconnector_google_remove_cl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `search_query`
--

DROP TABLE IF EXISTS `search_query`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `search_query` (
  `query_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Query ID',
  `query_text` varchar(255) DEFAULT NULL COMMENT 'Query text',
  `num_results` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Num results',
  `popularity` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Popularity',
  `redirect` varchar(255) DEFAULT NULL COMMENT 'Redirect',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID',
  `display_in_terms` smallint(6) NOT NULL DEFAULT '1' COMMENT 'Display in terms',
  `is_active` smallint(6) DEFAULT '1' COMMENT 'Active status',
  `is_processed` smallint(6) DEFAULT '0' COMMENT 'Processed status',
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated at',
  PRIMARY KEY (`query_id`),
  UNIQUE KEY `SEARCH_QUERY_QUERY_TEXT_STORE_ID` (`query_text`,`store_id`),
  KEY `SEARCH_QUERY_QUERY_TEXT_STORE_ID_POPULARITY` (`query_text`,`store_id`,`popularity`),
  KEY `SEARCH_QUERY_STORE_ID` (`store_id`),
  KEY `SEARCH_QUERY_IS_PROCESSED` (`is_processed`),
  CONSTRAINT `SEARCH_QUERY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=105 DEFAULT CHARSET=utf8 COMMENT='Search query table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `search_query`
--

LOCK TABLES `search_query` WRITE;
/*!40000 ALTER TABLE `search_query` DISABLE KEYS */;
INSERT INTO `search_query` VALUES (1,'sh',0,0,NULL,1,1,1,0,'2018-11-30 22:08:46'),(2,'shoe',3,0,NULL,1,1,1,0,'2018-11-30 22:08:47'),(4,'glove',0,0,NULL,1,1,1,0,'2018-11-30 22:09:01'),(5,'Eans',0,0,NULL,1,1,1,0,'2018-12-01 00:44:09'),(6,'Jeans',18,0,NULL,1,1,1,0,'2018-12-01 00:44:11'),(7,'long',24,0,NULL,1,1,1,0,'2018-12-01 03:49:03'),(8,'Pants',10,0,NULL,1,1,1,0,'2018-12-01 07:55:39'),(9,'belt',32,0,NULL,1,1,1,0,'2018-12-02 12:33:44'),(11,'cash',7,0,NULL,1,1,1,0,'2018-12-02 13:54:47'),(12,'Hats',0,0,NULL,1,1,1,0,'2018-12-02 17:00:11'),(13,'adid',2,0,NULL,1,1,1,0,'2018-12-03 07:23:56'),(14,'sun',8,0,NULL,1,1,1,0,'2018-12-03 09:28:27'),(15,'Bag',5,0,NULL,1,1,1,0,'2018-12-03 18:59:43'),(16,'gr',0,0,NULL,1,1,1,0,'2018-12-03 20:07:09'),(17,'gre',14,0,NULL,1,1,1,0,'2018-12-03 20:07:11'),(18,'ak',0,0,NULL,1,1,1,0,'2018-12-03 20:08:08'),(19,'asd',0,0,NULL,1,1,1,0,'2018-12-03 20:19:59'),(20,'shoes',3,0,NULL,1,1,1,0,'2018-12-03 20:20:26'),(22,'bel',34,0,NULL,1,1,1,0,'2018-12-03 20:21:05'),(23,'hjhhjjhjh',0,0,NULL,1,1,1,0,'2018-12-03 20:22:03'),(24,'   ',112,0,NULL,1,1,1,0,'2018-12-03 20:22:19'),(25,'   ;;',0,0,NULL,1,1,1,0,'2018-12-03 20:22:20'),(26,'   ;;kkk',0,0,NULL,1,1,1,0,'2018-12-03 20:22:22'),(28,'jjj',0,0,NULL,1,1,1,0,'2018-12-03 20:22:48'),(29,'jjjjj',0,0,NULL,1,1,1,0,'2018-12-03 20:22:49'),(30,'jjjjjjjjjhfghgjfjh gif gif hf',2,0,NULL,1,1,1,0,'2018-12-03 20:22:52'),(31,'brax',2,0,NULL,1,1,1,0,'2018-12-03 20:23:45'),(32,'tada',0,0,NULL,1,1,1,0,'2018-12-03 20:27:55'),(34,' script ',0,0,NULL,1,1,1,0,'2018-12-03 20:28:15'),(36,' script   script',0,0,NULL,1,1,1,0,'2018-12-03 20:28:17'),(38,' j',0,0,NULL,1,1,1,0,'2018-12-03 20:37:00'),(39,'he',0,0,NULL,1,1,1,0,'2018-12-03 21:37:23'),(40,'her',0,0,NULL,1,1,1,0,'2018-12-03 21:37:24'),(41,'hero',0,0,NULL,1,1,1,0,'2018-12-03 21:37:27'),(42,'test',0,0,NULL,1,1,1,0,'2018-12-03 21:52:19'),(43,'tes',0,0,NULL,1,1,1,0,'2018-12-03 21:52:20'),(44,'testsd',0,0,NULL,1,1,1,0,'2018-12-03 21:52:55'),(45,'piens',0,0,NULL,1,1,1,0,'2018-12-03 21:53:01'),(46,'huj pizda',0,0,NULL,1,1,1,0,'2018-12-03 21:53:05'),(47,'maize',0,0,NULL,1,1,1,0,'2018-12-03 21:53:06'),(48,'huj',0,0,NULL,1,1,1,0,'2018-12-03 21:53:19'),(49,'te',0,0,NULL,1,1,1,0,'2018-12-03 21:57:35'),(50,'kas',0,0,NULL,1,1,1,0,'2018-12-03 21:57:44'),(51,'kaspars',0,0,NULL,1,1,1,0,'2018-12-03 21:57:45'),(52,'kasp',0,0,NULL,1,1,1,0,'2018-12-03 21:57:59'),(53,'le',0,0,NULL,1,1,1,0,'2018-12-04 08:15:32'),(54,'kn',0,0,NULL,1,1,1,0,'2018-12-04 08:15:34'),(55,'knit',14,0,NULL,1,1,1,0,'2018-12-04 08:15:35'),(57,'kni',14,0,NULL,1,1,1,0,'2018-12-04 08:15:49'),(58,'sho',22,0,NULL,1,1,1,0,'2018-12-04 08:15:53'),(59,'sd',0,0,NULL,1,1,1,0,'2018-12-04 08:15:55'),(60,'sds',0,0,NULL,1,1,1,0,'2018-12-04 08:15:56'),(61,'aam',0,0,NULL,1,1,1,0,'2018-12-04 08:16:02'),(62,'shi',8,0,NULL,1,1,1,0,'2018-12-04 08:16:03'),(63,'shirt',3,0,NULL,1,1,1,0,'2018-12-04 08:16:03'),(64,'sss',0,0,NULL,1,1,1,0,'2018-12-04 08:16:10'),(66,'wom',0,0,NULL,1,1,1,0,'2018-12-04 08:16:16'),(67,'wo',0,0,NULL,1,1,1,0,'2018-12-04 08:16:20'),(68,'hr',0,0,NULL,1,1,1,0,'2018-12-04 08:16:23'),(69,'shr',0,0,NULL,1,1,1,0,'2018-12-04 08:16:28'),(70,'hi',0,0,NULL,1,1,1,0,'2018-12-04 08:16:32'),(71,'si',0,0,NULL,1,1,1,0,'2018-12-04 08:16:37'),(72,'sdi',0,0,NULL,1,1,1,0,'2018-12-04 08:16:40'),(73,'Ja',0,0,NULL,1,1,1,0,'2018-12-04 08:39:15'),(74,'Jack',19,0,NULL,1,1,1,0,'2018-12-04 08:39:16'),(75,'Ugg',1,0,NULL,1,1,1,0,'2018-12-04 08:52:21'),(76,'nacket',0,0,NULL,1,1,1,0,'2018-12-04 08:58:01'),(77,'jacket ',18,0,NULL,1,1,1,0,'2018-12-04 08:58:04'),(79,'men',2,0,NULL,1,1,1,0,'2018-12-04 09:03:46'),(81,'sch',0,0,NULL,1,1,1,0,'2018-12-04 09:45:10'),(82,'escada ',1,0,NULL,1,1,1,0,'2018-12-04 09:57:37'),(83,'escada bu',1,0,NULL,1,1,1,0,'2018-12-04 09:57:38'),(85,'ss',0,0,NULL,1,1,1,0,'2018-12-04 10:18:07'),(86,'po',0,0,NULL,1,1,1,0,'2018-12-04 10:18:11'),(87,'por',0,0,NULL,1,1,1,0,'2018-12-04 10:18:11'),(88,'dad',0,0,NULL,1,1,1,0,'2018-12-04 10:37:22'),(90,'Ve',0,0,NULL,1,1,1,0,'2018-12-04 14:40:12'),(91,'Veneta',1,0,NULL,1,1,1,0,'2018-12-04 14:40:13'),(92,'penis',0,0,NULL,1,1,1,0,'2018-12-04 16:29:58'),(93,'lon',24,0,NULL,1,1,1,0,'2018-12-04 16:47:21'),(94,'na',0,0,NULL,1,1,1,0,'2018-12-04 18:09:51'),(95,'navy',3,0,NULL,1,1,1,0,'2018-12-04 18:09:53'),(96,'Hoodie',0,0,NULL,1,1,1,0,'2018-12-04 19:26:01'),(97,'Yoga',0,0,NULL,1,1,1,0,'2018-12-05 10:25:39'),(98,'Glass',1,0,NULL,1,1,1,0,'2018-12-05 18:13:30'),(99,'Th',0,0,NULL,1,1,1,0,'2018-12-05 18:20:29'),(100,'ne',0,0,NULL,1,1,1,0,'2018-12-06 17:55:49'),(102,'glasse',1,0,NULL,1,1,1,0,'2018-12-07 11:00:06'),(103,'kaffe ',0,0,NULL,1,1,1,0,'2018-12-07 11:43:02'),(104,'kaffe ca',0,0,NULL,1,1,1,0,'2018-12-07 11:43:03');
/*!40000 ALTER TABLE `search_query` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `search_synonyms`
--

DROP TABLE IF EXISTS `search_synonyms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `search_synonyms` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Synonyms Group Id',
  `synonyms` text NOT NULL COMMENT 'list of synonyms making up this group',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id - identifies the store view these synonyms belong to',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website Id - identifies the website id these synonyms belong to',
  PRIMARY KEY (`group_id`),
  KEY `SEARCH_SYNONYMS_STORE_ID` (`store_id`),
  KEY `SEARCH_SYNONYMS_WEBSITE_ID` (`website_id`),
  FULLTEXT KEY `SEARCH_SYNONYMS_SYNONYMS` (`synonyms`),
  CONSTRAINT `SEARCH_SYNONYMS_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `SEARCH_SYNONYMS_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='table storing various synonyms groups';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `search_synonyms`
--

LOCK TABLES `search_synonyms` WRITE;
/*!40000 ALTER TABLE `search_synonyms` DISABLE KEYS */;
/*!40000 ALTER TABLE `search_synonyms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sendfriend_log`
--

DROP TABLE IF EXISTS `sendfriend_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sendfriend_log` (
  `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `ip` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer IP address',
  `time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Log time',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  PRIMARY KEY (`log_id`),
  KEY `SENDFRIEND_LOG_IP` (`ip`),
  KEY `SENDFRIEND_LOG_TIME` (`time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Send to friend function log storage table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sendfriend_log`
--

LOCK TABLES `sendfriend_log` WRITE;
/*!40000 ALTER TABLE `sendfriend_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `sendfriend_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sequence_creditmemo_0`
--

DROP TABLE IF EXISTS `sequence_creditmemo_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_creditmemo_0` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_creditmemo_0`
--

LOCK TABLES `sequence_creditmemo_0` WRITE;
/*!40000 ALTER TABLE `sequence_creditmemo_0` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequence_creditmemo_0` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sequence_creditmemo_1`
--

DROP TABLE IF EXISTS `sequence_creditmemo_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_creditmemo_1` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_creditmemo_1`
--

LOCK TABLES `sequence_creditmemo_1` WRITE;
/*!40000 ALTER TABLE `sequence_creditmemo_1` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequence_creditmemo_1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sequence_invoice_0`
--

DROP TABLE IF EXISTS `sequence_invoice_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_invoice_0` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_invoice_0`
--

LOCK TABLES `sequence_invoice_0` WRITE;
/*!40000 ALTER TABLE `sequence_invoice_0` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequence_invoice_0` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sequence_invoice_1`
--

DROP TABLE IF EXISTS `sequence_invoice_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_invoice_1` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_invoice_1`
--

LOCK TABLES `sequence_invoice_1` WRITE;
/*!40000 ALTER TABLE `sequence_invoice_1` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequence_invoice_1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sequence_order_0`
--

DROP TABLE IF EXISTS `sequence_order_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_order_0` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_order_0`
--

LOCK TABLES `sequence_order_0` WRITE;
/*!40000 ALTER TABLE `sequence_order_0` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequence_order_0` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sequence_order_1`
--

DROP TABLE IF EXISTS `sequence_order_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_order_1` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_order_1`
--

LOCK TABLES `sequence_order_1` WRITE;
/*!40000 ALTER TABLE `sequence_order_1` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequence_order_1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sequence_shipment_0`
--

DROP TABLE IF EXISTS `sequence_shipment_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_shipment_0` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_shipment_0`
--

LOCK TABLES `sequence_shipment_0` WRITE;
/*!40000 ALTER TABLE `sequence_shipment_0` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequence_shipment_0` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sequence_shipment_1`
--

DROP TABLE IF EXISTS `sequence_shipment_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_shipment_1` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_shipment_1`
--

LOCK TABLES `sequence_shipment_1` WRITE;
/*!40000 ALTER TABLE `sequence_shipment_1` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequence_shipment_1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `session`
--

DROP TABLE IF EXISTS `session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `session` (
  `session_id` varchar(255) NOT NULL COMMENT 'Session Id',
  `session_expires` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Date of Session Expiration',
  `session_data` mediumblob NOT NULL COMMENT 'Session Data',
  PRIMARY KEY (`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Database Sessions Storage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `session`
--

LOCK TABLES `session` WRITE;
/*!40000 ALTER TABLE `session` DISABLE KEYS */;
/*!40000 ALTER TABLE `session` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `setup_module`
--

DROP TABLE IF EXISTS `setup_module`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `setup_module` (
  `module` varchar(50) NOT NULL COMMENT 'Module',
  `schema_version` varchar(50) DEFAULT NULL COMMENT 'Schema Version',
  `data_version` varchar(50) DEFAULT NULL COMMENT 'Data Version',
  PRIMARY KEY (`module`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Module versions registry';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `setup_module`
--

LOCK TABLES `setup_module` WRITE;
/*!40000 ALTER TABLE `setup_module` DISABLE KEYS */;
INSERT INTO `setup_module` VALUES ('Amazon_Core','3.2.13','3.2.13'),('Amazon_Login','3.2.13','3.2.13'),('Amazon_Payment','3.2.13','3.2.13'),('Bezigeboefjes_ChangeAttributeSet','1.0.0','1.0.0'),('Dotdigitalgroup_Email','3.3.0','3.3.0'),('Klarna_Core','5.2.2','5.2.2'),('Klarna_Kp','6.3.4','6.3.4'),('Klarna_Ordermanagement','5.0.7','5.0.7'),('Magento_AuthorizenetAcceptjs','1.0.0','1.0.0'),('Magento_GoogleShoppingAds','3.0.1','3.0.1'),('Magento_Inventory','1.0.0','1.0.0'),('Magento_InventoryAdminUi','1.0.0','1.0.0'),('Magento_InventoryApi','1.0.0','1.0.0'),('Magento_InventoryBundleProduct','1.0.0','1.0.0'),('Magento_InventoryBundleProductAdminUi','1.0.0','1.0.0'),('Magento_InventoryCache','1.0.0','1.0.0'),('Magento_InventoryCatalog','1.0.0','1.0.0'),('Magento_InventoryCatalogAdminUi','1.0.0','1.0.0'),('Magento_InventoryCatalogApi','1.0.0','1.0.0'),('Magento_InventoryCatalogSearch','1.0.0','1.0.0'),('Magento_InventoryConfigurableProduct','1.0.0','1.0.0'),('Magento_InventoryConfigurableProductAdminUi','1.0.0','1.0.0'),('Magento_InventoryConfigurableProductIndexer','1.0.0','1.0.0'),('Magento_InventoryConfiguration','1.0.0','1.0.0'),('Magento_InventoryConfigurationApi','1.0.0','1.0.0'),('Magento_InventoryElasticsearch','1.0.0','1.0.0'),('Magento_InventoryExportStock','1.0.0','1.0.0'),('Magento_InventoryExportStockApi','1.0.0','1.0.0'),('Magento_InventoryGroupedProduct','1.0.0','1.0.0'),('Magento_InventoryGroupedProductAdminUi','1.0.0','1.0.0'),('Magento_InventoryGroupedProductIndexer','1.0.0','1.0.0'),('Magento_InventoryImportExport','1.0.0','1.0.0'),('Magento_InventoryIndexer','1.0.0','1.0.0'),('Magento_InventoryLowQuantityNotification','1.0.0','1.0.0'),('Magento_InventoryLowQuantityNotificationAdminUi','1.0.0','1.0.0'),('Magento_InventoryLowQuantityNotificationApi','1.0.0','1.0.0'),('Magento_InventoryMultiDimensionalIndexerApi','1.0.0','1.0.0'),('Magento_InventoryProductAlert','1.0.0','1.0.0'),('Magento_InventoryReservationCli','1.0.0','1.0.0'),('Magento_InventoryReservations','1.0.0','1.0.0'),('Magento_InventoryReservationsApi','1.0.0','1.0.0'),('Magento_InventorySales','1.0.0','1.0.0'),('Magento_InventorySalesAdminUi','1.0.0','1.0.0'),('Magento_InventorySalesApi','1.0.0','1.0.0'),('Magento_InventoryShipping','1.0.0','1.0.0'),('Magento_InventoryShippingAdminUi','1.0.0','1.0.0'),('Magento_InventorySourceDeductionApi','1.0.0','1.0.0'),('Magento_InventorySourceSelection','1.0.0','1.0.0'),('Magento_InventorySourceSelectionApi','1.0.0','1.0.0'),('Magento_PaypalReCaptcha','2.0.0','2.0.0'),('MSP_ReCaptcha','1.5.0','1.5.0'),('MSP_TwoFactorAuth','3.1.0','3.1.0'),('ScandiPWA_Cache','0.1.0','0.1.0'),('ScandiPWA_CatalogGraphQl','1.0.0','1.0.0'),('ScandiPWA_CmsGraphQl','0.1.0','0.1.0'),('ScandiPWA_Customization','1.0.0','1.0.0'),('ScandiPWA_GraphQl','0.0.2','0.0.2'),('ScandiPWA_Installer','0.0.1','0.0.1'),('ScandiPWA_KlarnaGraphQl','1.0.0','1.0.0'),('ScandiPWA_MenuOrganizer','0.1.0','0.1.0'),('ScandiPWA_PayPalGraphQl','1.0.0','1.0.0'),('ScandiPWA_PersistedQuery','1.3.0','1.3.0'),('ScandiPWA_Route717','0.1.0','0.1.0'),('ScandiPWA_ServerTime','0.1.0','0.1.0'),('ScandiPWA_SliderGraphQl','0.1.0','0.1.0'),('ScandiPWA_Source','0.0.1','0.0.1'),('ScandiPWA_StoreGraphQL','1.0.0','1.0.0'),('Scandiweb_CatalogGraphQl','0.2.0','0.2.0'),('Scandiweb_CmsGraphQl','0.1.0','0.1.0'),('Scandiweb_ContactGraphQl','0.1.0','0.1.0'),('Scandiweb_Core','0.1.3','0.1.3'),('Scandiweb_GraphQlEnableCors','1.0.0','1.0.0'),('Scandiweb_LocaleResolverFix','0.1.0','0.1.0'),('Scandiweb_Menumanager','1.0.2','1.0.2'),('Scandiweb_Migration','1.0.0','1.0.0'),('Scandiweb_NewsletterGraphQl','0.1.0','0.1.0'),('Scandiweb_Slider','1.0.15','1.0.15'),('Scandiweb_SocialLoginGraphQl','1.0.0','1.0.0'),('Scandiweb_StoreGraphQl','0.1.0','0.1.0'),('Temando_Shipping','1.6.0','1.6.0'),('Vertex_Tax','100.4.0','100.4.0'),('Yotpo_Yotpo','3.0.0','3.0.0');
/*!40000 ALTER TABLE `setup_module` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `shipping_tablerate`
--

DROP TABLE IF EXISTS `shipping_tablerate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `shipping_tablerate` (
  `pk` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key',
  `website_id` int(11) NOT NULL DEFAULT '0' COMMENT 'Website Id',
  `dest_country_id` varchar(4) NOT NULL DEFAULT '0' COMMENT 'Destination coutry ISO/2 or ISO/3 code',
  `dest_region_id` int(11) NOT NULL DEFAULT '0' COMMENT 'Destination Region Id',
  `dest_zip` varchar(10) NOT NULL DEFAULT '*' COMMENT 'Destination Post Code (Zip)',
  `condition_name` varchar(30) NOT NULL COMMENT 'Rate Condition name',
  `condition_value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Rate condition value',
  `price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Price',
  `cost` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Cost',
  PRIMARY KEY (`pk`),
  UNIQUE KEY `UNQ_D60821CDB2AFACEE1566CFC02D0D4CAA` (`website_id`,`dest_country_id`,`dest_region_id`,`dest_zip`,`condition_name`,`condition_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Shipping Tablerate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shipping_tablerate`
--

LOCK TABLES `shipping_tablerate` WRITE;
/*!40000 ALTER TABLE `shipping_tablerate` DISABLE KEYS */;
/*!40000 ALTER TABLE `shipping_tablerate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `signifyd_case`
--

DROP TABLE IF EXISTS `signifyd_case`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `signifyd_case` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity_id',
  `order_id` int(10) unsigned DEFAULT NULL COMMENT 'Order_id',
  `case_id` int(10) unsigned DEFAULT NULL COMMENT 'Case_id',
  `guarantee_eligible` tinyint(1) DEFAULT NULL COMMENT 'Guarantee_eligible',
  `guarantee_disposition` varchar(32) DEFAULT 'PENDING' COMMENT 'Guarantee_disposition',
  `status` varchar(32) DEFAULT 'PENDING' COMMENT 'Status',
  `score` int(10) unsigned DEFAULT NULL COMMENT 'Score',
  `associated_team` text COMMENT 'Associated_team',
  `review_disposition` varchar(32) DEFAULT NULL COMMENT 'Review_disposition',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created_at',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated_at',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SIGNIFYD_CASE_ORDER_ID` (`order_id`),
  UNIQUE KEY `SIGNIFYD_CASE_CASE_ID` (`case_id`),
  CONSTRAINT `SIGNIFYD_CASE_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='signifyd_case';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `signifyd_case`
--

LOCK TABLES `signifyd_case` WRITE;
/*!40000 ALTER TABLE `signifyd_case` DISABLE KEYS */;
/*!40000 ALTER TABLE `signifyd_case` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sitemap`
--

DROP TABLE IF EXISTS `sitemap`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sitemap` (
  `sitemap_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Sitemap Id',
  `sitemap_type` varchar(32) DEFAULT NULL COMMENT 'Sitemap Type',
  `sitemap_filename` varchar(32) DEFAULT NULL COMMENT 'Sitemap Filename',
  `sitemap_path` varchar(255) DEFAULT NULL COMMENT 'Sitemap Path',
  `sitemap_time` timestamp NULL DEFAULT NULL COMMENT 'Sitemap Time',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store id',
  PRIMARY KEY (`sitemap_id`),
  KEY `SITEMAP_STORE_ID` (`store_id`),
  CONSTRAINT `SITEMAP_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='XML Sitemap';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sitemap`
--

LOCK TABLES `sitemap` WRITE;
/*!40000 ALTER TABLE `sitemap` DISABLE KEYS */;
/*!40000 ALTER TABLE `sitemap` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `store`
--

DROP TABLE IF EXISTS `store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `store` (
  `store_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Store Id',
  `code` varchar(32) DEFAULT NULL COMMENT 'Code',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website Id',
  `group_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Group Id',
  `name` varchar(255) NOT NULL COMMENT 'Store Name',
  `sort_order` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Sort Order',
  `is_active` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Activity',
  PRIMARY KEY (`store_id`),
  UNIQUE KEY `STORE_CODE` (`code`),
  KEY `STORE_WEBSITE_ID` (`website_id`),
  KEY `STORE_IS_ACTIVE_SORT_ORDER` (`is_active`,`sort_order`),
  KEY `STORE_GROUP_ID` (`group_id`),
  CONSTRAINT `STORE_GROUP_ID_STORE_GROUP_GROUP_ID` FOREIGN KEY (`group_id`) REFERENCES `store_group` (`group_id`) ON DELETE CASCADE,
  CONSTRAINT `STORE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Stores';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `store`
--

LOCK TABLES `store` WRITE;
/*!40000 ALTER TABLE `store` DISABLE KEYS */;
INSERT INTO `store` VALUES (0,'admin',0,0,'Admin',0,1),(1,'default',1,1,'Default Store View',0,1);
/*!40000 ALTER TABLE `store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `store_group`
--

DROP TABLE IF EXISTS `store_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `store_group` (
  `group_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Group Id',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website Id',
  `name` varchar(255) NOT NULL COMMENT 'Store Group Name',
  `root_category_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Root Category Id',
  `default_store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Default Store Id',
  `code` varchar(32) DEFAULT NULL COMMENT 'Store group unique code',
  PRIMARY KEY (`group_id`),
  UNIQUE KEY `STORE_GROUP_CODE` (`code`),
  KEY `STORE_GROUP_WEBSITE_ID` (`website_id`),
  KEY `STORE_GROUP_DEFAULT_STORE_ID` (`default_store_id`),
  CONSTRAINT `STORE_GROUP_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Store Groups';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `store_group`
--

LOCK TABLES `store_group` WRITE;
/*!40000 ALTER TABLE `store_group` DISABLE KEYS */;
INSERT INTO `store_group` VALUES (0,0,'Default',0,0,'default'),(1,1,'Main Website Store',2,1,'main_website_store');
/*!40000 ALTER TABLE `store_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `store_website`
--

DROP TABLE IF EXISTS `store_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `store_website` (
  `website_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Website Id',
  `code` varchar(32) DEFAULT NULL COMMENT 'Code',
  `name` varchar(64) DEFAULT NULL COMMENT 'Website Name',
  `sort_order` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `default_group_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Default Group Id',
  `is_default` smallint(5) unsigned DEFAULT '0' COMMENT 'Defines Is Website Default',
  PRIMARY KEY (`website_id`),
  UNIQUE KEY `STORE_WEBSITE_CODE` (`code`),
  KEY `STORE_WEBSITE_SORT_ORDER` (`sort_order`),
  KEY `STORE_WEBSITE_DEFAULT_GROUP_ID` (`default_group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Websites';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `store_website`
--

LOCK TABLES `store_website` WRITE;
/*!40000 ALTER TABLE `store_website` DISABLE KEYS */;
INSERT INTO `store_website` VALUES (0,'admin','Admin',0,0,0),(1,'base','Main Website',0,1,1);
/*!40000 ALTER TABLE `store_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tax_calculation`
--

DROP TABLE IF EXISTS `tax_calculation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_calculation` (
  `tax_calculation_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Id',
  `tax_calculation_rate_id` int(11) NOT NULL COMMENT 'Tax Calculation Rate Id',
  `tax_calculation_rule_id` int(11) NOT NULL COMMENT 'Tax Calculation Rule Id',
  `customer_tax_class_id` smallint(6) NOT NULL COMMENT 'Customer Tax Class Id',
  `product_tax_class_id` smallint(6) NOT NULL COMMENT 'Product Tax Class Id',
  PRIMARY KEY (`tax_calculation_id`),
  KEY `TAX_CALCULATION_TAX_CALCULATION_RULE_ID` (`tax_calculation_rule_id`),
  KEY `TAX_CALCULATION_CUSTOMER_TAX_CLASS_ID` (`customer_tax_class_id`),
  KEY `TAX_CALCULATION_PRODUCT_TAX_CLASS_ID` (`product_tax_class_id`),
  KEY `TAX_CALC_TAX_CALC_RATE_ID_CSTR_TAX_CLASS_ID_PRD_TAX_CLASS_ID` (`tax_calculation_rate_id`,`customer_tax_class_id`,`product_tax_class_id`),
  CONSTRAINT `TAX_CALCULATION_CUSTOMER_TAX_CLASS_ID_TAX_CLASS_CLASS_ID` FOREIGN KEY (`customer_tax_class_id`) REFERENCES `tax_class` (`class_id`) ON DELETE CASCADE,
  CONSTRAINT `TAX_CALCULATION_PRODUCT_TAX_CLASS_ID_TAX_CLASS_CLASS_ID` FOREIGN KEY (`product_tax_class_id`) REFERENCES `tax_class` (`class_id`) ON DELETE CASCADE,
  CONSTRAINT `TAX_CALC_TAX_CALC_RATE_ID_TAX_CALC_RATE_TAX_CALC_RATE_ID` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE,
  CONSTRAINT `TAX_CALC_TAX_CALC_RULE_ID_TAX_CALC_RULE_TAX_CALC_RULE_ID` FOREIGN KEY (`tax_calculation_rule_id`) REFERENCES `tax_calculation_rule` (`tax_calculation_rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_calculation`
--

LOCK TABLES `tax_calculation` WRITE;
/*!40000 ALTER TABLE `tax_calculation` DISABLE KEYS */;
INSERT INTO `tax_calculation` VALUES (1,51,1,3,2),(2,50,1,3,2),(3,49,1,3,2),(4,48,1,3,2),(5,1,1,3,2),(6,47,1,3,2),(7,46,1,3,2),(8,45,1,3,2),(9,7,1,3,2),(10,44,1,3,2),(11,43,1,3,2),(12,42,1,3,2),(13,41,1,3,2),(14,40,1,3,2),(15,39,1,3,2),(16,38,1,3,2),(17,37,1,3,2),(18,36,1,3,2),(19,35,1,3,2),(20,34,1,3,2),(21,33,1,3,2),(22,3,1,3,2),(23,32,1,3,2),(24,31,1,3,2),(25,30,1,3,2),(26,29,1,3,2),(27,28,1,3,2),(28,27,1,3,2),(29,26,1,3,2),(30,25,1,3,2),(31,24,1,3,2),(32,2,1,3,2),(33,23,1,3,2),(34,22,1,3,2),(35,21,1,3,2),(36,20,1,3,2),(37,19,1,3,2),(38,18,1,3,2),(39,17,1,3,2),(40,16,1,3,2),(41,15,1,3,2),(42,14,1,3,2),(43,13,1,3,2),(44,12,1,3,2),(45,11,1,3,2),(46,10,1,3,2),(47,9,1,3,2),(48,8,1,3,2),(49,6,1,3,2),(50,5,1,3,2),(51,4,1,3,2);
/*!40000 ALTER TABLE `tax_calculation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tax_calculation_rate`
--

DROP TABLE IF EXISTS `tax_calculation_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_calculation_rate` (
  `tax_calculation_rate_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rate Id',
  `tax_country_id` varchar(2) NOT NULL COMMENT 'Tax Country Id',
  `tax_region_id` int(11) NOT NULL COMMENT 'Tax Region Id',
  `tax_postcode` varchar(21) DEFAULT NULL COMMENT 'Tax Postcode',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `rate` decimal(12,4) NOT NULL COMMENT 'Rate',
  `zip_is_range` smallint(6) DEFAULT NULL COMMENT 'Zip Is Range',
  `zip_from` int(10) unsigned DEFAULT NULL COMMENT 'Zip From',
  `zip_to` int(10) unsigned DEFAULT NULL COMMENT 'Zip To',
  PRIMARY KEY (`tax_calculation_rate_id`),
  KEY `TAX_CALCULATION_RATE_TAX_COUNTRY_ID_TAX_REGION_ID_TAX_POSTCODE` (`tax_country_id`,`tax_region_id`,`tax_postcode`),
  KEY `TAX_CALCULATION_RATE_CODE` (`code`),
  KEY `IDX_CA799F1E2CB843495F601E56C84A626D` (`tax_calculation_rate_id`,`tax_country_id`,`tax_region_id`,`zip_is_range`,`tax_postcode`)
) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_calculation_rate`
--

LOCK TABLES `tax_calculation_rate` WRITE;
/*!40000 ALTER TABLE `tax_calculation_rate` DISABLE KEYS */;
INSERT INTO `tax_calculation_rate` VALUES (1,'US',12,'*','US-CA-*-Rate 1',7.2500,NULL,NULL,NULL),(2,'US',43,'*','US-NY-*-Rate 1',4.0000,NULL,NULL,NULL),(3,'US',32,'*','US-MA-*-Rate 1',6.2500,NULL,NULL,NULL),(4,'US',65,'*','US-WY-*-Rate 1',4.0000,NULL,NULL,NULL),(5,'US',64,'*','US-WI-*-Rate 1',5.0000,NULL,NULL,NULL),(6,'US',63,'*','US-WV-*-Rate 1',6.0000,NULL,NULL,NULL),(7,'US',16,'*','US-DC-*-Rate 1',6.0000,NULL,NULL,NULL),(8,'US',62,'*','US-WA-*-Rate 1',6.5000,NULL,NULL,NULL),(9,'US',61,'*','US-VA-*-Rate 1',4.3000,NULL,NULL,NULL),(10,'US',59,'*','US-VT-*-Rate 1',6.0000,NULL,NULL,NULL),(11,'US',58,'*','US-UT-*-Rate 1',4.7000,NULL,NULL,NULL),(12,'US',57,'*','US-TX-*-Rate 1',6.2500,NULL,NULL,NULL),(13,'US',56,'*','US-TN-*-Rate 1',7.0000,NULL,NULL,NULL),(14,'US',55,'*','US-SD-*-Rate 1',4.5000,NULL,NULL,NULL),(15,'US',54,'*','US-SC-*-Rate 1',6.0000,NULL,NULL,NULL),(16,'US',53,'*','US-RI-*-Rate 1',7.0000,NULL,NULL,NULL),(17,'US',52,'*','US-PR-*-Rate 1',1.0500,NULL,NULL,NULL),(18,'US',51,'*','US-PA-*-Rate 1',6.0000,NULL,NULL,NULL),(19,'US',49,'*','US-OR-*-Rate 1',0.0000,NULL,NULL,NULL),(20,'US',48,'*','US-OK-*-Rate 1',4.5000,NULL,NULL,NULL),(21,'US',47,'*','US-OH-*-Rate 1',5.7500,NULL,NULL,NULL),(22,'US',45,'*','US-ND-*-Rate 1',5.0000,NULL,NULL,NULL),(23,'US',44,'*','US-NC-*-Rate 1',4.7500,NULL,NULL,NULL),(24,'US',42,'*','US-NM-*-Rate 1',5.1250,NULL,NULL,NULL),(25,'US',41,'*','US-NJ-*-Rate 1',6.6250,NULL,NULL,NULL),(26,'US',40,'*','US-NH-*-Rate 1',0.0000,NULL,NULL,NULL),(27,'US',39,'*','US-NV-*-Rate 1',4.6000,NULL,NULL,NULL),(28,'US',38,'*','US-NE-*-Rate 1',5.5000,NULL,NULL,NULL),(29,'US',37,'*','US-MT-*-Rate 1',0.0000,NULL,NULL,NULL),(30,'US',36,'*','US-MO-*-Rate 1',4.2250,NULL,NULL,NULL),(31,'US',35,'*','US-MS-*-Rate 1',7.0000,NULL,NULL,NULL),(32,'US',34,'*','US-MN-*-Rate 1',6.8750,NULL,NULL,NULL),(33,'US',31,'*','US-MD-*-Rate 1',6.0000,NULL,NULL,NULL),(34,'US',29,'*','US-ME-*-Rate 1',5.5000,NULL,NULL,NULL),(35,'US',28,'*','US-LA-*-Rate 1',4.4500,NULL,NULL,NULL),(36,'US',27,'*','US-KY-*-Rate 1',6.0000,NULL,NULL,NULL),(37,'US',26,'*','US-KS-*-Rate 1',6.5000,NULL,NULL,NULL),(38,'US',25,'*','US-IA-*-Rate 1',6.0000,NULL,NULL,NULL),(39,'US',24,'*','US-IN-*-Rate 1',7.0000,NULL,NULL,NULL),(40,'US',23,'*','US-IL-*-Rate 1',6.2500,NULL,NULL,NULL),(41,'US',22,'*','US-ID-*-Rate 1',6.0000,NULL,NULL,NULL),(42,'US',21,'*','US-HI-*-Rate 1',4.0000,NULL,NULL,NULL),(43,'US',19,'*','US-GA-*-Rate 1',4.0000,NULL,NULL,NULL),(44,'US',18,'*','US-FL-*-Rate 1',6.0000,NULL,NULL,NULL),(45,'US',15,'*','US-DE-*-Rate 1',0.0000,NULL,NULL,NULL),(46,'US',14,'*','US-CT-*-Rate 1',6.3500,NULL,NULL,NULL),(47,'US',13,'*','US-CO-*-Rate 1',2.9000,NULL,NULL,NULL),(48,'US',5,'*','US-AR-*-Rate 1',6.5000,NULL,NULL,NULL),(49,'US',4,'*','US-AZ-*-Rate 1',5.6000,NULL,NULL,NULL),(50,'US',2,'*','US-AK-*-Rate 1',0.0000,NULL,NULL,NULL),(51,'US',1,'*','US-AL-*-Rate 1',4.0000,NULL,NULL,NULL);
/*!40000 ALTER TABLE `tax_calculation_rate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tax_calculation_rate_title`
--

DROP TABLE IF EXISTS `tax_calculation_rate_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_calculation_rate_title` (
  `tax_calculation_rate_title_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rate Title Id',
  `tax_calculation_rate_id` int(11) NOT NULL COMMENT 'Tax Calculation Rate Id',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id',
  `value` varchar(255) NOT NULL COMMENT 'Value',
  PRIMARY KEY (`tax_calculation_rate_title_id`),
  KEY `TAX_CALCULATION_RATE_TITLE_TAX_CALCULATION_RATE_ID_STORE_ID` (`tax_calculation_rate_id`,`store_id`),
  KEY `TAX_CALCULATION_RATE_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `FK_37FB965F786AD5897BB3AE90470C42AB` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE,
  CONSTRAINT `TAX_CALCULATION_RATE_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rate Title';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_calculation_rate_title`
--

LOCK TABLES `tax_calculation_rate_title` WRITE;
/*!40000 ALTER TABLE `tax_calculation_rate_title` DISABLE KEYS */;
/*!40000 ALTER TABLE `tax_calculation_rate_title` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tax_calculation_rule`
--

DROP TABLE IF EXISTS `tax_calculation_rule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_calculation_rule` (
  `tax_calculation_rule_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rule Id',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `priority` int(11) NOT NULL COMMENT 'Priority',
  `position` int(11) NOT NULL COMMENT 'Position',
  `calculate_subtotal` int(11) NOT NULL COMMENT 'Calculate off subtotal option',
  PRIMARY KEY (`tax_calculation_rule_id`),
  KEY `TAX_CALCULATION_RULE_PRIORITY_POSITION` (`priority`,`position`),
  KEY `TAX_CALCULATION_RULE_CODE` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rule';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_calculation_rule`
--

LOCK TABLES `tax_calculation_rule` WRITE;
/*!40000 ALTER TABLE `tax_calculation_rule` DISABLE KEYS */;
INSERT INTO `tax_calculation_rule` VALUES (1,'Tax_Rule_States',0,0,0);
/*!40000 ALTER TABLE `tax_calculation_rule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tax_class`
--

DROP TABLE IF EXISTS `tax_class`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_class` (
  `class_id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT 'Class Id',
  `class_name` varchar(255) NOT NULL COMMENT 'Class Name',
  `class_type` varchar(8) NOT NULL DEFAULT 'CUSTOMER' COMMENT 'Class Type',
  PRIMARY KEY (`class_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='Tax Class';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_class`
--

LOCK TABLES `tax_class` WRITE;
/*!40000 ALTER TABLE `tax_class` DISABLE KEYS */;
INSERT INTO `tax_class` VALUES (2,'Taxable Goods','PRODUCT'),(3,'Retail Customer','CUSTOMER'),(4,'Refund Adjustments','PRODUCT'),(5,'Gift Options','PRODUCT'),(6,'Order Gift Wrapping','PRODUCT'),(7,'Item Gift Wrapping','PRODUCT'),(8,'Printed Gift Card','PRODUCT'),(9,'Reward Points','PRODUCT');
/*!40000 ALTER TABLE `tax_class` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tax_order_aggregated_created`
--

DROP TABLE IF EXISTS `tax_order_aggregated_created`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_order_aggregated_created` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `percent` float DEFAULT NULL COMMENT 'Percent',
  `orders_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `tax_base_amount_sum` float DEFAULT NULL COMMENT 'Tax Base Amount Sum',
  PRIMARY KEY (`id`),
  UNIQUE KEY `TAX_ORDER_AGGRED_CREATED_PERIOD_STORE_ID_CODE_PERCENT_ORDER_STS` (`period`,`store_id`,`code`,`percent`,`order_status`),
  KEY `TAX_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`),
  CONSTRAINT `TAX_ORDER_AGGREGATED_CREATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Order Aggregation';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_order_aggregated_created`
--

LOCK TABLES `tax_order_aggregated_created` WRITE;
/*!40000 ALTER TABLE `tax_order_aggregated_created` DISABLE KEYS */;
/*!40000 ALTER TABLE `tax_order_aggregated_created` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tax_order_aggregated_updated`
--

DROP TABLE IF EXISTS `tax_order_aggregated_updated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_order_aggregated_updated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `percent` float DEFAULT NULL COMMENT 'Percent',
  `orders_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Orders Count',
  `tax_base_amount_sum` float DEFAULT NULL COMMENT 'Tax Base Amount Sum',
  PRIMARY KEY (`id`),
  UNIQUE KEY `TAX_ORDER_AGGRED_UPDATED_PERIOD_STORE_ID_CODE_PERCENT_ORDER_STS` (`period`,`store_id`,`code`,`percent`,`order_status`),
  KEY `TAX_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`),
  CONSTRAINT `TAX_ORDER_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Order Aggregated Updated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_order_aggregated_updated`
--

LOCK TABLES `tax_order_aggregated_updated` WRITE;
/*!40000 ALTER TABLE `tax_order_aggregated_updated` DISABLE KEYS */;
/*!40000 ALTER TABLE `tax_order_aggregated_updated` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `temando_checkout_address`
--

DROP TABLE IF EXISTS `temando_checkout_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temando_checkout_address` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `shipping_address_id` int(10) unsigned NOT NULL COMMENT 'Magento Quote Address Id',
  `service_selection` text COMMENT 'Value Added Services',
  PRIMARY KEY (`entity_id`),
  KEY `TEMANDO_CHKT_ADDR_SHPP_ADDR_ID_QUOTE_ADDR_ADDR_ID` (`shipping_address_id`),
  CONSTRAINT `TEMANDO_CHKT_ADDR_SHPP_ADDR_ID_QUOTE_ADDR_ADDR_ID` FOREIGN KEY (`shipping_address_id`) REFERENCES `quote_address` (`address_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Temando Checkout Address';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temando_checkout_address`
--

LOCK TABLES `temando_checkout_address` WRITE;
/*!40000 ALTER TABLE `temando_checkout_address` DISABLE KEYS */;
/*!40000 ALTER TABLE `temando_checkout_address` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `temando_collection_point_search`
--

DROP TABLE IF EXISTS `temando_collection_point_search`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temando_collection_point_search` (
  `shipping_address_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `country_id` varchar(2) DEFAULT NULL,
  `postcode` varchar(255) DEFAULT NULL,
  `pending` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Pending',
  PRIMARY KEY (`shipping_address_id`),
  KEY `TEMANDO_COLLECTION_POINT_SRCH_COUNTRY_ID_DIR_COUNTRY_COUNTRY_ID` (`country_id`),
  CONSTRAINT `TEMANDO_COLLECTION_POINT_SRCH_COUNTRY_ID_DIR_COUNTRY_COUNTRY_ID` FOREIGN KEY (`country_id`) REFERENCES `directory_country` (`country_id`) ON DELETE NO ACTION,
  CONSTRAINT `TEMANDO_COLLECTION_POINT_SRCH_SHPP_ADDR_ID_QUOTE_ADDR_ADDR_ID` FOREIGN KEY (`shipping_address_id`) REFERENCES `quote_address` (`address_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Collection Point Search';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temando_collection_point_search`
--

LOCK TABLES `temando_collection_point_search` WRITE;
/*!40000 ALTER TABLE `temando_collection_point_search` DISABLE KEYS */;
/*!40000 ALTER TABLE `temando_collection_point_search` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `temando_order`
--

DROP TABLE IF EXISTS `temando_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temando_order` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Magento Order Id',
  `ext_order_id` varchar(64) NOT NULL COMMENT 'Temando Order Id',
  PRIMARY KEY (`entity_id`),
  KEY `TEMANDO_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` (`order_id`),
  CONSTRAINT `TEMANDO_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Temando Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temando_order`
--

LOCK TABLES `temando_order` WRITE;
/*!40000 ALTER TABLE `temando_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `temando_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `temando_order_collection_point`
--

DROP TABLE IF EXISTS `temando_order_collection_point`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temando_order_collection_point` (
  `recipient_address_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `collection_point_id` varchar(64) NOT NULL COMMENT 'Collection Point Id',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `country` varchar(2) NOT NULL COMMENT 'Country Code',
  `region` varchar(255) NOT NULL COMMENT 'Region',
  `postcode` varchar(255) NOT NULL COMMENT 'Zip/Postal Code',
  `city` varchar(255) NOT NULL COMMENT 'City',
  `street` text NOT NULL COMMENT 'Street',
  PRIMARY KEY (`recipient_address_id`),
  CONSTRAINT `FK_EEB9F0F035B969ECA24160257CFC6F6B` FOREIGN KEY (`recipient_address_id`) REFERENCES `sales_order_address` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Order Collection Point Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temando_order_collection_point`
--

LOCK TABLES `temando_order_collection_point` WRITE;
/*!40000 ALTER TABLE `temando_order_collection_point` DISABLE KEYS */;
/*!40000 ALTER TABLE `temando_order_collection_point` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `temando_order_pickup_location`
--

DROP TABLE IF EXISTS `temando_order_pickup_location`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temando_order_pickup_location` (
  `recipient_address_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `pickup_location_id` varchar(64) NOT NULL COMMENT 'Pickup Location Id',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `country` varchar(2) NOT NULL COMMENT 'Country Code',
  `region` varchar(255) NOT NULL COMMENT 'Region',
  `postcode` varchar(255) NOT NULL COMMENT 'Zip/Postal Code',
  `city` varchar(255) NOT NULL COMMENT 'City',
  `street` text NOT NULL COMMENT 'Street',
  PRIMARY KEY (`recipient_address_id`),
  CONSTRAINT `FK_E106C6C0802F4A217B859D0FEA67E900` FOREIGN KEY (`recipient_address_id`) REFERENCES `sales_order_address` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Order Pickup Location Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temando_order_pickup_location`
--

LOCK TABLES `temando_order_pickup_location` WRITE;
/*!40000 ALTER TABLE `temando_order_pickup_location` DISABLE KEYS */;
/*!40000 ALTER TABLE `temando_order_pickup_location` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `temando_pickup_location_search`
--

DROP TABLE IF EXISTS `temando_pickup_location_search`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temando_pickup_location_search` (
  `shipping_address_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `active` tinyint(1) NOT NULL COMMENT 'Active',
  PRIMARY KEY (`shipping_address_id`),
  CONSTRAINT `TEMANDO_PICKUP_LOCATION_SRCH_SHPP_ADDR_ID_QUOTE_ADDR_ADDR_ID` FOREIGN KEY (`shipping_address_id`) REFERENCES `quote_address` (`address_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Pickup Location Search';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temando_pickup_location_search`
--

LOCK TABLES `temando_pickup_location_search` WRITE;
/*!40000 ALTER TABLE `temando_pickup_location_search` DISABLE KEYS */;
/*!40000 ALTER TABLE `temando_pickup_location_search` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `temando_product_attribute_mapping`
--

DROP TABLE IF EXISTS `temando_product_attribute_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temando_product_attribute_mapping` (
  `node_path_id` varchar(255) NOT NULL COMMENT 'Magento shipping path',
  `label` varchar(255) NOT NULL COMMENT 'label to be displayed to the end user',
  `description` text COMMENT 'Describes what the label and path are for',
  `mapping_attribute_id` varchar(255) DEFAULT NULL COMMENT 'Attribute ID reference that is mapped to the node path',
  `is_default` tinyint(1) NOT NULL COMMENT 'Determines if the attribute is available by default',
  PRIMARY KEY (`node_path_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Product Attribute Mapping Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temando_product_attribute_mapping`
--

LOCK TABLES `temando_product_attribute_mapping` WRITE;
/*!40000 ALTER TABLE `temando_product_attribute_mapping` DISABLE KEYS */;
INSERT INTO `temando_product_attribute_mapping` VALUES ('classificationCodes.eccn','ECCN','Export Control Classification Number. Field Validation: 5 maximum characters.',NULL,1),('classificationCodes.hsCode','HS Code','Harmonized Commodity Description and Coding System. Field Validation: Between 2 and 5 Characters.','ts_hs_code',1),('classificationCodes.scheduleBInfo','Schedule B Info','Code for exporting goods out of the United States. Field Validation: 15 maximum characters.',NULL,1),('composition','Composition','Materials product is composed of',NULL,1),('manufacture.address.countryCode','Country of manufacture','Country of manufacture. Field Validation: Country as a valid ISO 3166-1 alpha-2 country code.',NULL,1),('origin.address.countryCode','Country of origin','Country of origin. Field Validation: Country as a valid ISO 3166-1 alpha-2 country code.','ts_country_of_origin',1);
/*!40000 ALTER TABLE `temando_product_attribute_mapping` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `temando_quote_collection_point`
--

DROP TABLE IF EXISTS `temando_quote_collection_point`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temando_quote_collection_point` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `recipient_address_id` int(10) unsigned NOT NULL COMMENT 'Quote Address Id',
  `collection_point_id` varchar(64) NOT NULL COMMENT 'Collection Point Id',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `country` varchar(2) NOT NULL COMMENT 'Country Code',
  `region` varchar(255) NOT NULL COMMENT 'Region',
  `postcode` varchar(255) NOT NULL COMMENT 'Zip/Postal Code',
  `city` varchar(255) NOT NULL COMMENT 'City',
  `street` text NOT NULL COMMENT 'Street',
  `opening_hours` text NOT NULL COMMENT 'Opening Hours',
  `shipping_experiences` text NOT NULL COMMENT 'Shipping Experiences',
  `selected` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Selected',
  `distance` int(10) unsigned DEFAULT NULL COMMENT 'Distance in Meters',
  PRIMARY KEY (`entity_id`),
  KEY `FK_4ABED96BBA0BAF57A5EC10E47B5A0F12` (`recipient_address_id`),
  CONSTRAINT `FK_4ABED96BBA0BAF57A5EC10E47B5A0F12` FOREIGN KEY (`recipient_address_id`) REFERENCES `temando_collection_point_search` (`shipping_address_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Quote Collection Point Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temando_quote_collection_point`
--

LOCK TABLES `temando_quote_collection_point` WRITE;
/*!40000 ALTER TABLE `temando_quote_collection_point` DISABLE KEYS */;
/*!40000 ALTER TABLE `temando_quote_collection_point` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `temando_quote_pickup_location`
--

DROP TABLE IF EXISTS `temando_quote_pickup_location`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temando_quote_pickup_location` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `recipient_address_id` int(10) unsigned NOT NULL COMMENT 'Quote Address Id',
  `pickup_location_id` varchar(64) NOT NULL COMMENT 'Pickup Location Id',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `country` varchar(2) NOT NULL COMMENT 'Country Code',
  `region` varchar(255) NOT NULL COMMENT 'Region',
  `postcode` varchar(255) NOT NULL COMMENT 'Zip/Postal Code',
  `city` varchar(255) NOT NULL COMMENT 'City',
  `street` text NOT NULL COMMENT 'Street',
  `opening_hours` text NOT NULL COMMENT 'Opening Hours',
  `shipping_experiences` text NOT NULL COMMENT 'Shipping Experiences',
  `selected` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Selected',
  `distance` int(10) unsigned DEFAULT NULL COMMENT 'Distance in Meters',
  PRIMARY KEY (`entity_id`),
  KEY `FK_9010B10870AF99FB0560ADA50F3F99F4` (`recipient_address_id`),
  CONSTRAINT `FK_9010B10870AF99FB0560ADA50F3F99F4` FOREIGN KEY (`recipient_address_id`) REFERENCES `temando_pickup_location_search` (`shipping_address_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Quote Pickup Location Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temando_quote_pickup_location`
--

LOCK TABLES `temando_quote_pickup_location` WRITE;
/*!40000 ALTER TABLE `temando_quote_pickup_location` DISABLE KEYS */;
/*!40000 ALTER TABLE `temando_quote_pickup_location` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `temando_shipment`
--

DROP TABLE IF EXISTS `temando_shipment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temando_shipment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id',
  `shipment_id` int(10) unsigned NOT NULL COMMENT 'Magento Shipment Id',
  `ext_shipment_id` varchar(64) NOT NULL COMMENT 'External Shipment Id',
  `ext_location_id` varchar(64) DEFAULT NULL,
  `ext_tracking_url` varchar(255) DEFAULT NULL COMMENT 'External Tracking Url',
  `ext_tracking_reference` varchar(255) DEFAULT NULL COMMENT 'External Tracking Reference',
  `ext_return_shipment_id` varchar(64) DEFAULT NULL COMMENT 'External Return Shipment Id',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `TEMANDO_SHIPMENT_SHIPMENT_ID_EXT_SHIPMENT_ID` (`shipment_id`,`ext_shipment_id`),
  CONSTRAINT `TEMANDO_SHIPMENT_SHIPMENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`shipment_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Temando Shipment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temando_shipment`
--

LOCK TABLES `temando_shipment` WRITE;
/*!40000 ALTER TABLE `temando_shipment` DISABLE KEYS */;
/*!40000 ALTER TABLE `temando_shipment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `theme`
--

DROP TABLE IF EXISTS `theme`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `theme` (
  `theme_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Theme identifier',
  `parent_id` int(11) DEFAULT NULL COMMENT 'Parent Id',
  `theme_path` varchar(255) DEFAULT NULL COMMENT 'Theme Path',
  `theme_title` varchar(255) NOT NULL COMMENT 'Theme Title',
  `preview_image` varchar(255) DEFAULT NULL COMMENT 'Preview Image',
  `is_featured` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Is Theme Featured',
  `area` varchar(255) NOT NULL COMMENT 'Theme Area',
  `type` smallint(6) NOT NULL COMMENT 'Theme type: 0:physical, 1:virtual, 2:staging',
  `code` text COMMENT 'Full theme code, including package',
  PRIMARY KEY (`theme_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Core theme';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `theme`
--

LOCK TABLES `theme` WRITE;
/*!40000 ALTER TABLE `theme` DISABLE KEYS */;
INSERT INTO `theme` VALUES (1,NULL,'Magento/blank','Magento Blank','preview_image_5bf690b6d57d8.jpeg',0,'frontend',0,'Magento/blank'),(2,1,'Magento/luma','Magento Luma','preview_image_5bf690b6e9022.jpeg',0,'frontend',0,'Magento/luma'),(3,NULL,'Magento/backend','Magento 2 backend',NULL,0,'adminhtml',0,'Magento/backend'),(4,1,'Scandiweb/pwa','Scandiweb pwa theme',NULL,0,'frontend',4,'Scandiweb/pwa');
/*!40000 ALTER TABLE `theme` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `theme_file`
--

DROP TABLE IF EXISTS `theme_file`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `theme_file` (
  `theme_files_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Theme files identifier',
  `theme_id` int(10) unsigned NOT NULL COMMENT 'Theme Id',
  `file_path` varchar(255) DEFAULT NULL COMMENT 'Relative path to file',
  `file_type` varchar(32) NOT NULL COMMENT 'File Type',
  `content` longtext NOT NULL COMMENT 'File Content',
  `sort_order` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Sort Order',
  `is_temporary` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Is Temporary File',
  PRIMARY KEY (`theme_files_id`),
  KEY `THEME_FILE_THEME_ID_THEME_THEME_ID` (`theme_id`),
  CONSTRAINT `THEME_FILE_THEME_ID_THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`theme_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Core theme files';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `theme_file`
--

LOCK TABLES `theme_file` WRITE;
/*!40000 ALTER TABLE `theme_file` DISABLE KEYS */;
/*!40000 ALTER TABLE `theme_file` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `translation`
--

DROP TABLE IF EXISTS `translation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `translation` (
  `key_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Key Id of Translation',
  `string` varchar(255) NOT NULL DEFAULT 'Translate String' COMMENT 'Translation String',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `translate` varchar(255) DEFAULT NULL COMMENT 'Translate',
  `locale` varchar(20) NOT NULL DEFAULT 'en_US' COMMENT 'Locale',
  `crc_string` bigint(20) NOT NULL DEFAULT '1591228201' COMMENT 'Translation String CRC32 Hash',
  PRIMARY KEY (`key_id`),
  UNIQUE KEY `TRANSLATION_STORE_ID_LOCALE_CRC_STRING_STRING` (`store_id`,`locale`,`crc_string`,`string`),
  CONSTRAINT `TRANSLATION_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Translations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `translation`
--

LOCK TABLES `translation` WRITE;
/*!40000 ALTER TABLE `translation` DISABLE KEYS */;
/*!40000 ALTER TABLE `translation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ui_bookmark`
--

DROP TABLE IF EXISTS `ui_bookmark`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ui_bookmark` (
  `bookmark_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Bookmark identifier',
  `user_id` int(10) unsigned NOT NULL COMMENT 'User Id',
  `namespace` varchar(255) NOT NULL COMMENT 'Bookmark namespace',
  `identifier` varchar(255) NOT NULL COMMENT 'Bookmark Identifier',
  `current` smallint(6) NOT NULL COMMENT 'Mark current bookmark per user and identifier',
  `title` varchar(255) DEFAULT NULL COMMENT 'Bookmark title',
  `config` longtext COMMENT 'Bookmark config',
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Bookmark created at',
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Bookmark updated at',
  PRIMARY KEY (`bookmark_id`),
  KEY `UI_BOOKMARK_USER_ID_NAMESPACE_IDENTIFIER` (`user_id`,`namespace`,`identifier`),
  CONSTRAINT `UI_BOOKMARK_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 COMMENT='Bookmark';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ui_bookmark`
--

LOCK TABLES `ui_bookmark` WRITE;
/*!40000 ALTER TABLE `ui_bookmark` DISABLE KEYS */;
INSERT INTO `ui_bookmark` VALUES (1,1,'product_listing','current',0,NULL,'{\"current\":{\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":false},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"ship_qty\":{\"visible\":true,\"sorting\":false},\"available_qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false},\"warehouse\":{\"visible\":false,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":\"desc\"},\"status\":{\"visible\":true,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false},\"material\":{\"sorting\":false,\"visible\":true},\"colors\":{\"visible\":true,\"sorting\":false},\"size\":{\"sorting\":false,\"visible\":true},\"shoes_size\":{\"sorting\":false,\"visible\":true},\"salable_quantity\":{\"sorting\":false,\"visible\":true}},\"displayMode\":\"grid\",\"search\":{\"value\":\"Slim Fit Jeans\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":200},\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"visibility\":8,\"status\":9,\"websites\":10,\"qty\":11,\"short_description\":12,\"special_price\":13,\"special_from_date\":14,\"special_to_date\":15,\"cost\":16,\"weight\":17,\"meta_title\":18,\"meta_keyword\":19,\"meta_description\":20,\"color\":21,\"news_from_date\":22,\"news_to_date\":23,\"custom_design\":24,\"custom_design_from\":25,\"custom_design_to\":26,\"page_layout\":27,\"country_of_manufacture\":28,\"custom_layout\":29,\"msrp\":30,\"url_key\":31,\"gift_message_available\":32,\"tax_class_id\":33,\"actions\":34,\"size\":35,\"material\":36,\"shoes_size\":37,\"salable_quantity\":38}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,1,'product_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"ship_qty\":{\"visible\":true,\"sorting\":false},\"available_qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false},\"warehouse\":{\"visible\":false,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"qty\":8,\"ship_qty\":9,\"available_qty\":10,\"visibility\":11,\"status\":12,\"websites\":13,\"short_description\":14,\"special_price\":15,\"special_from_date\":16,\"special_to_date\":17,\"cost\":18,\"weight\":19,\"meta_title\":20,\"meta_keyword\":21,\"meta_description\":22,\"color\":23,\"news_from_date\":24,\"news_to_date\":25,\"custom_design\":26,\"custom_design_from\":27,\"custom_design_to\":28,\"page_layout\":29,\"country_of_manufacture\":30,\"custom_layout\":31,\"msrp\":32,\"url_key\":33,\"gift_message_available\":34,\"tax_class_id\":35,\"warehouse\":36,\"actions\":37}},\"value\":\"Default View\"}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,1,'design_config_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"default\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"theme_theme_id\":{\"visible\":true,\"sorting\":false},\"store_website_id\":{\"visible\":true,\"sorting\":false},\"store_group_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"default\":0,\"store_website_id\":1,\"store_group_id\":2,\"store_id\":3,\"theme_theme_id\":4,\"actions\":5}},\"value\":\"Default View\"}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,1,'design_config_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"default\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"theme_theme_id\":{\"visible\":true,\"sorting\":false},\"store_website_id\":{\"visible\":true,\"sorting\":false},\"store_group_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"default\":0,\"store_website_id\":1,\"store_group_id\":2,\"store_id\":3,\"theme_theme_id\":4,\"actions\":5}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,1,'product_attributes_grid','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"columns\":{\"ids\":{\"visible\":true,\"sorting\":false},\"is_required\":{\"visible\":true,\"sorting\":false},\"is_user_defined\":{\"visible\":true,\"sorting\":false},\"is_visible\":{\"visible\":true,\"sorting\":false},\"is_global\":{\"visible\":true,\"sorting\":false},\"is_searchable\":{\"visible\":true,\"sorting\":false},\"is_comparable\":{\"visible\":true,\"sorting\":false},\"is_filterable\":{\"visible\":true,\"sorting\":false},\"attribute_code\":{\"visible\":true,\"sorting\":\"asc\"},\"frontend_label\":{\"visible\":true,\"sorting\":false}},\"positions\":{\"ids\":0,\"attribute_code\":1,\"frontend_label\":2,\"is_required\":3,\"is_user_defined\":4,\"is_visible\":5,\"is_global\":6,\"is_searchable\":7,\"is_comparable\":8,\"is_filterable\":9},\"displayMode\":\"grid\",\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20}},\"value\":\"Default View\"}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,1,'product_attributes_grid','current',0,NULL,'{\"current\":{\"columns\":{\"ids\":{\"visible\":true,\"sorting\":false},\"is_required\":{\"visible\":true,\"sorting\":false},\"is_user_defined\":{\"visible\":true,\"sorting\":false},\"is_visible\":{\"visible\":true,\"sorting\":false},\"is_global\":{\"visible\":true,\"sorting\":false},\"is_searchable\":{\"visible\":true,\"sorting\":false},\"is_comparable\":{\"visible\":true,\"sorting\":false},\"is_filterable\":{\"visible\":true,\"sorting\":false},\"attribute_code\":{\"visible\":true,\"sorting\":\"asc\"},\"frontend_label\":{\"visible\":true,\"sorting\":false}},\"positions\":{\"ids\":0,\"attribute_code\":1,\"frontend_label\":2,\"is_required\":3,\"is_user_defined\":4,\"is_visible\":5,\"is_global\":6,\"is_searchable\":7,\"is_comparable\":8,\"is_filterable\":9},\"displayMode\":\"grid\",\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,1,'scandiweb_menumanager_menus','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"columns\":{\"menu_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"css_class\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"menu_id\":1,\"title\":2,\"identifier\":3,\"css_class\":4,\"is_active\":5,\"actions\":6}},\"value\":\"Default View\"}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,1,'scandiweb_menumanager_menus','current',0,NULL,'{\"current\":{\"columns\":{\"menu_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"css_class\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"menu_id\":1,\"title\":2,\"identifier\":3,\"css_class\":4,\"is_active\":5,\"actions\":6}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,1,'cms_page_listing','current',0,NULL,'{\"current\":{\"columns\":{\"page_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keywords\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"page_layout\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"custom_theme\":{\"visible\":false,\"sorting\":false},\"custom_root_template\":{\"visible\":false,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false},\"custom_theme_from\":{\"visible\":false,\"sorting\":false},\"custom_theme_to\":{\"visible\":false,\"sorting\":false},\"page_width\":{\"visible\":false,\"sorting\":false}},\"displayMode\":\"grid\",\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20,\"pageSize\":20,\"current\":1},\"positions\":{\"ids\":0,\"page_id\":1,\"title\":2,\"identifier\":3,\"page_layout\":4,\"store_id\":5,\"is_active\":6,\"creation_time\":7,\"update_time\":8,\"custom_theme_from\":9,\"custom_theme_to\":10,\"custom_theme\":11,\"custom_root_template\":12,\"meta_title\":13,\"meta_keywords\":14,\"meta_description\":15,\"actions\":16},\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}}}}','0000-00-00 00:00:00','2020-04-07 13:09:43'),(14,1,'cms_page_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"columns\":{\"page_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keywords\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"page_layout\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"custom_theme\":{\"visible\":false,\"sorting\":false},\"custom_root_template\":{\"visible\":false,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false},\"custom_theme_from\":{\"visible\":false,\"sorting\":false},\"custom_theme_to\":{\"visible\":false,\"sorting\":false}},\"displayMode\":\"grid\",\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"page_id\":1,\"title\":2,\"identifier\":3,\"page_layout\":4,\"store_id\":5,\"is_active\":6,\"creation_time\":7,\"update_time\":8,\"custom_theme_from\":9,\"custom_theme_to\":10,\"custom_theme\":11,\"custom_root_template\":12,\"meta_title\":13,\"meta_keywords\":14,\"meta_description\":15,\"actions\":16},\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}}},\"value\":\"Default View\"}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,1,'cms_block_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"block_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false}},\"search\":{\"value\":\"\"},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"block_id\":1,\"title\":2,\"identifier\":3,\"store_id\":4,\"is_active\":5,\"creation_time\":6,\"update_time\":7,\"actions\":8},\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20}},\"value\":\"Default View\"}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,1,'cms_block_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"block_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false}},\"search\":{\"value\":\"\"},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"block_id\":1,\"title\":2,\"identifier\":3,\"store_id\":4,\"is_active\":5,\"creation_time\":6,\"update_time\":7,\"actions\":8},\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20,\"pageSize\":20,\"current\":1}}}','0000-00-00 00:00:00','2020-04-07 13:11:41'),(17,1,'product_attributes_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"columns\":{\"is_filterable\":{\"visible\":true,\"sorting\":false},\"is_required\":{\"visible\":true,\"sorting\":false},\"is_user_defined\":{\"visible\":true,\"sorting\":false},\"is_visible\":{\"visible\":true,\"sorting\":false},\"is_global\":{\"visible\":true,\"sorting\":false},\"is_searchable\":{\"visible\":true,\"sorting\":false},\"is_comparable\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"attribute_code\":{\"visible\":true,\"sorting\":\"asc\"},\"frontend_label\":{\"visible\":true,\"sorting\":false}},\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"is_filterable\":1,\"attribute_code\":2,\"frontend_label\":3,\"is_required\":4,\"is_user_defined\":5,\"is_visible\":6,\"is_global\":7,\"is_searchable\":8,\"is_comparable\":9},\"displayMode\":\"grid\"},\"value\":\"Default View\"}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,1,'product_attributes_listing','current',0,NULL,'{\"current\":{\"columns\":{\"is_filterable\":{\"visible\":true,\"sorting\":false},\"is_required\":{\"visible\":true,\"sorting\":false},\"is_user_defined\":{\"visible\":true,\"sorting\":false},\"is_visible\":{\"visible\":true,\"sorting\":false},\"is_global\":{\"visible\":true,\"sorting\":false},\"is_searchable\":{\"visible\":true,\"sorting\":false},\"is_comparable\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"attribute_code\":{\"visible\":true,\"sorting\":\"asc\"},\"frontend_label\":{\"visible\":true,\"sorting\":false}},\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"is_filterable\":1,\"attribute_code\":2,\"frontend_label\":3,\"is_required\":4,\"is_user_defined\":5,\"is_visible\":6,\"is_global\":7,\"is_searchable\":8,\"is_comparable\":9},\"displayMode\":\"grid\"}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,2,'product_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"material\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"shoes_size\":{\"visible\":true,\"sorting\":false},\"size\":{\"visible\":true,\"sorting\":false},\"salable_quantity\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"search\":{\"value\":\"\"},\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"qty\":8,\"salable_quantity\":9,\"visibility\":10,\"status\":11,\"websites\":12,\"short_description\":13,\"special_price\":14,\"special_from_date\":15,\"special_to_date\":16,\"cost\":17,\"weight\":18,\"meta_title\":19,\"meta_keyword\":20,\"meta_description\":21,\"color\":22,\"news_from_date\":23,\"news_to_date\":24,\"custom_design\":25,\"custom_design_from\":26,\"custom_design_to\":27,\"page_layout\":28,\"country_of_manufacture\":29,\"custom_layout\":30,\"msrp\":31,\"url_key\":32,\"gift_message_available\":33,\"tax_class_id\":34,\"material\":35,\"shoes_size\":36,\"size\":37,\"actions\":38}},\"value\":\"Default View\"}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,2,'product_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true,\"name\":\"Khaki Straight Leg Jeans Cadiz\"}},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"material\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"shoes_size\":{\"visible\":true,\"sorting\":false},\"size\":{\"visible\":true,\"sorting\":false},\"salable_quantity\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":200},\"search\":{\"value\":\"\"},\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"qty\":8,\"salable_quantity\":9,\"visibility\":10,\"status\":11,\"websites\":12,\"short_description\":13,\"special_price\":14,\"special_from_date\":15,\"special_to_date\":16,\"cost\":17,\"weight\":18,\"meta_title\":19,\"meta_keyword\":20,\"meta_description\":21,\"color\":22,\"news_from_date\":23,\"news_to_date\":24,\"custom_design\":25,\"custom_design_from\":26,\"custom_design_to\":27,\"page_layout\":28,\"country_of_manufacture\":29,\"custom_layout\":30,\"msrp\":31,\"url_key\":32,\"gift_message_available\":33,\"tax_class_id\":34,\"material\":35,\"shoes_size\":36,\"size\":37,\"actions\":38}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,2,'product_attributes_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"columns\":{\"ids\":{\"visible\":true,\"sorting\":false},\"is_required\":{\"visible\":true,\"sorting\":false},\"is_user_defined\":{\"visible\":true,\"sorting\":false},\"is_visible\":{\"visible\":true,\"sorting\":false},\"is_global\":{\"visible\":true,\"sorting\":false},\"is_searchable\":{\"visible\":true,\"sorting\":false},\"is_comparable\":{\"visible\":true,\"sorting\":false},\"is_filterable\":{\"visible\":true,\"sorting\":false},\"attribute_code\":{\"visible\":true,\"sorting\":\"asc\"},\"frontend_label\":{\"visible\":true,\"sorting\":false}},\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"attribute_code\":1,\"frontend_label\":2,\"is_required\":3,\"is_user_defined\":4,\"is_visible\":5,\"is_global\":6,\"is_searchable\":7,\"is_comparable\":8,\"is_filterable\":9}},\"value\":\"Default View\"}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,2,'product_attributes_listing','current',0,NULL,'{\"current\":{\"columns\":{\"ids\":{\"visible\":true,\"sorting\":false},\"is_required\":{\"visible\":true,\"sorting\":false},\"is_user_defined\":{\"visible\":true,\"sorting\":false},\"is_visible\":{\"visible\":true,\"sorting\":false},\"is_global\":{\"visible\":true,\"sorting\":false},\"is_searchable\":{\"visible\":true,\"sorting\":false},\"is_comparable\":{\"visible\":true,\"sorting\":false},\"is_filterable\":{\"visible\":true,\"sorting\":false},\"attribute_code\":{\"visible\":true,\"sorting\":\"asc\"},\"frontend_label\":{\"visible\":true,\"sorting\":false}},\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"attribute_code\":1,\"frontend_label\":2,\"is_required\":3,\"is_user_defined\":4,\"is_visible\":5,\"is_global\":6,\"is_searchable\":7,\"is_comparable\":8,\"is_filterable\":9}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,1,'customer_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"email\":{\"visible\":true,\"sorting\":false},\"billing_telephone\":{\"visible\":true,\"sorting\":false},\"billing_postcode\":{\"visible\":true,\"sorting\":false},\"billing_region\":{\"visible\":true,\"sorting\":false},\"confirmation\":{\"visible\":true,\"sorting\":false},\"created_in\":{\"visible\":true,\"sorting\":false},\"billing_full\":{\"visible\":false,\"sorting\":false},\"shipping_full\":{\"visible\":false,\"sorting\":false},\"taxvat\":{\"visible\":true,\"sorting\":false},\"billing_street\":{\"visible\":false,\"sorting\":false},\"billing_city\":{\"visible\":false,\"sorting\":false},\"billing_fax\":{\"visible\":false,\"sorting\":false},\"billing_vat_id\":{\"visible\":false,\"sorting\":false},\"billing_company\":{\"visible\":false,\"sorting\":false},\"billing_firstname\":{\"visible\":false,\"sorting\":false},\"billing_lastname\":{\"visible\":false,\"sorting\":false},\"lock_expires\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"group_id\":{\"visible\":true,\"sorting\":false},\"billing_country_id\":{\"visible\":true,\"sorting\":false},\"website_id\":{\"visible\":true,\"sorting\":false},\"gender\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"dob\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"entity_id\":1,\"name\":2,\"email\":3,\"group_id\":4,\"billing_telephone\":5,\"billing_postcode\":6,\"billing_country_id\":7,\"billing_region\":8,\"created_at\":9,\"website_id\":10,\"confirmation\":11,\"created_in\":12,\"billing_full\":13,\"shipping_full\":14,\"dob\":15,\"taxvat\":16,\"gender\":17,\"billing_street\":18,\"billing_city\":19,\"billing_fax\":20,\"billing_vat_id\":21,\"billing_company\":22,\"billing_firstname\":23,\"billing_lastname\":24,\"lock_expires\":25,\"actions\":26}},\"value\":\"Default View\"}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,1,'customer_listing','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"email\":{\"visible\":true,\"sorting\":false},\"billing_telephone\":{\"visible\":true,\"sorting\":false},\"billing_postcode\":{\"visible\":true,\"sorting\":false},\"billing_region\":{\"visible\":true,\"sorting\":false},\"confirmation\":{\"visible\":true,\"sorting\":false},\"created_in\":{\"visible\":true,\"sorting\":false},\"billing_full\":{\"visible\":false,\"sorting\":false},\"shipping_full\":{\"visible\":false,\"sorting\":false},\"taxvat\":{\"visible\":true,\"sorting\":false},\"billing_street\":{\"visible\":false,\"sorting\":false},\"billing_city\":{\"visible\":false,\"sorting\":false},\"billing_fax\":{\"visible\":false,\"sorting\":false},\"billing_vat_id\":{\"visible\":false,\"sorting\":false},\"billing_company\":{\"visible\":false,\"sorting\":false},\"billing_firstname\":{\"visible\":false,\"sorting\":false},\"billing_lastname\":{\"visible\":false,\"sorting\":false},\"lock_expires\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"group_id\":{\"visible\":true,\"sorting\":false},\"billing_country_id\":{\"visible\":true,\"sorting\":false},\"website_id\":{\"visible\":true,\"sorting\":false},\"gender\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"dob\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"entity_id\":1,\"name\":2,\"email\":3,\"group_id\":4,\"billing_telephone\":5,\"billing_postcode\":6,\"billing_country_id\":7,\"billing_region\":8,\"created_at\":9,\"website_id\":10,\"confirmation\":11,\"created_in\":12,\"billing_full\":13,\"shipping_full\":14,\"dob\":15,\"taxvat\":16,\"gender\":17,\"billing_street\":18,\"billing_city\":19,\"billing_fax\":20,\"billing_vat_id\":21,\"billing_company\":22,\"billing_firstname\":23,\"billing_lastname\":24,\"lock_expires\":25,\"actions\":26}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,1,'customer_online_grid','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"customer_id\":{\"visible\":true,\"sorting\":\"asc\"},\"firstname\":{\"visible\":true,\"sorting\":false},\"lastname\":{\"visible\":true,\"sorting\":false},\"email\":{\"visible\":true,\"sorting\":false},\"last_visit_at\":{\"visible\":true,\"sorting\":false},\"visitor_type\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"customer_id\":0,\"firstname\":1,\"lastname\":2,\"email\":3,\"last_visit_at\":4,\"visitor_type\":5},\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20}},\"value\":\"Default View\"}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,1,'customer_online_grid','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"customer_id\":{\"visible\":true,\"sorting\":\"asc\"},\"firstname\":{\"visible\":true,\"sorting\":false},\"lastname\":{\"visible\":true,\"sorting\":false},\"email\":{\"visible\":true,\"sorting\":false},\"last_visit_at\":{\"visible\":true,\"sorting\":false},\"visitor_type\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"customer_id\":0,\"firstname\":1,\"lastname\":2,\"email\":3,\"last_visit_at\":4,\"visitor_type\":5},\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,1,'sales_order_grid','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"total_refunded\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"},\"status\":{\"visible\":true,\"sorting\":false},\"customer_group\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"signifyd_guarantee_status\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"increment_id\":1,\"store_id\":2,\"created_at\":3,\"billing_name\":4,\"shipping_name\":5,\"base_grand_total\":6,\"grand_total\":7,\"status\":8,\"billing_address\":9,\"shipping_address\":10,\"shipping_information\":11,\"customer_email\":12,\"customer_group\":13,\"subtotal\":14,\"shipping_and_handling\":15,\"customer_name\":16,\"payment_method\":17,\"total_refunded\":18,\"actions\":19,\"signifyd_guarantee_status\":20}},\"value\":\"Default View\"}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,1,'sales_order_grid','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"total_refunded\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"},\"status\":{\"visible\":true,\"sorting\":false},\"customer_group\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"signifyd_guarantee_status\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"increment_id\":1,\"store_id\":2,\"created_at\":3,\"billing_name\":4,\"shipping_name\":5,\"base_grand_total\":6,\"grand_total\":7,\"status\":8,\"billing_address\":9,\"shipping_address\":10,\"shipping_information\":11,\"customer_email\":12,\"customer_group\":13,\"subtotal\":14,\"shipping_and_handling\":15,\"customer_name\":16,\"payment_method\":17,\"total_refunded\":18,\"actions\":19,\"signifyd_guarantee_status\":20}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,2,'configurable_associated_product_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"columns\":{\"ids\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false},\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"weight\":{\"visible\":true,\"sorting\":false},\"attributes\":{\"visible\":false,\"sorting\":false}},\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"sku\":4,\"price\":5,\"qty\":6,\"weight\":7,\"attributes\":8,\"status\":9},\"displayMode\":\"grid\"},\"value\":\"Default View\"}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,2,'configurable_associated_product_listing','current',0,NULL,'{\"current\":{\"columns\":{\"ids\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false},\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"weight\":{\"visible\":true,\"sorting\":false},\"attributes\":{\"visible\":false,\"sorting\":false}},\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"sku\":4,\"price\":5,\"qty\":6,\"weight\":7,\"attributes\":8,\"status\":9},\"displayMode\":\"grid\"}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,1,'design_theme_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"columns\":{\"theme_id\":{\"visible\":false,\"sorting\":\"asc\"},\"theme_title\":{\"visible\":true,\"sorting\":false},\"parent_theme_title\":{\"visible\":true,\"sorting\":false},\"theme_path\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"theme_id\":0,\"theme_title\":1,\"parent_theme_title\":2,\"theme_path\":3,\"actions\":4},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20}},\"value\":\"Default View\"}}}','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,1,'design_theme_listing','current',0,NULL,'{\"current\":{\"columns\":{\"theme_id\":{\"visible\":false,\"sorting\":\"asc\"},\"theme_title\":{\"visible\":true,\"sorting\":false},\"parent_theme_title\":{\"visible\":true,\"sorting\":false},\"theme_path\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"theme_id\":0,\"theme_title\":1,\"parent_theme_title\":2,\"theme_path\":3,\"actions\":4},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20}}}','0000-00-00 00:00:00','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `ui_bookmark` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `url_rewrite`
--

DROP TABLE IF EXISTS `url_rewrite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `url_rewrite` (
  `url_rewrite_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rewrite Id',
  `entity_type` varchar(32) NOT NULL COMMENT 'Entity type code',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `request_path` varchar(255) DEFAULT NULL COMMENT 'Request Path',
  `target_path` varchar(255) DEFAULT NULL COMMENT 'Target Path',
  `redirect_type` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Redirect Type',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id',
  `description` varchar(255) DEFAULT NULL COMMENT 'Description',
  `is_autogenerated` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is rewrite generated automatically flag',
  `metadata` varchar(255) DEFAULT NULL COMMENT 'Meta data for url rewrite',
  PRIMARY KEY (`url_rewrite_id`),
  UNIQUE KEY `URL_REWRITE_REQUEST_PATH_STORE_ID` (`request_path`,`store_id`),
  KEY `URL_REWRITE_TARGET_PATH` (`target_path`),
  KEY `URL_REWRITE_STORE_ID_ENTITY_ID` (`store_id`,`entity_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3219 DEFAULT CHARSET=utf8 COMMENT='Url Rewrites';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `url_rewrite`
--

LOCK TABLES `url_rewrite` WRITE;
/*!40000 ALTER TABLE `url_rewrite` DISABLE KEYS */;
INSERT INTO `url_rewrite` VALUES (1,'cms-page',1,'no-route','cms/page/view/page_id/1',0,1,NULL,1,NULL),(2,'cms-page',2,'home','cms/page/view/page_id/2',0,1,NULL,1,NULL),(3,'cms-page',3,'enable-cookies','cms/page/view/page_id/3',0,1,NULL,1,NULL),(4,'cms-page',4,'privacy-policy-cookie-restriction-mode','cms/page/view/page_id/4',0,1,NULL,1,NULL),(1464,'category',27,'women','catalog/category/view/id/27',0,1,NULL,1,NULL),(1477,'category',27,'cleaning-storage-supplies','women',301,1,NULL,0,NULL),(1694,'category',20,'men','catalog/category/view/id/20',0,1,NULL,1,NULL),(1695,'category',22,'men/man-knitwear','catalog/category/view/id/22',0,1,NULL,1,NULL),(1696,'category',22,'beverages/man-knitwear','men/man-knitwear',301,1,NULL,0,NULL),(1697,'category',22,'beverages/knitwear','men/man-knitwear',301,1,NULL,0,'[]'),(1698,'category',22,'beverages/milk-creamer','men/man-knitwear',301,1,NULL,0,'[]'),(1699,'category',23,'men/men-jackets','catalog/category/view/id/23',0,1,NULL,1,NULL),(1700,'category',23,'beverages/men-jackets','men/men-jackets',301,1,NULL,0,NULL),(1701,'category',23,'beverages/man-jackets','men/men-jackets',301,1,NULL,0,'[]'),(1702,'category',23,'beverages/water-sparkling','men/men-jackets',301,1,NULL,0,'[]'),(1703,'category',24,'men/men-shoes','catalog/category/view/id/24',0,1,NULL,1,NULL),(1704,'category',24,'beverages/men-shoes','men/men-shoes',301,1,NULL,0,NULL),(1705,'category',24,'beverages/juices','men/men-shoes',301,1,NULL,0,'[]'),(1706,'category',25,'men/men-trousers','catalog/category/view/id/25',0,1,NULL,1,NULL),(1707,'category',25,'beverages/men-trousers','men/men-trousers',301,1,NULL,0,NULL),(1708,'category',25,'beverages/sport-energy-nutrition','men/men-trousers',301,1,NULL,0,'[]'),(1709,'category',26,'men/men-jeans','catalog/category/view/id/26',0,1,NULL,1,NULL),(1710,'category',26,'beverages/men-jeans','men/men-jeans',301,1,NULL,0,NULL),(1711,'category',26,'beverages/soda','men/men-jeans',301,1,NULL,0,'[]'),(1712,'category',20,'beverages','men',301,1,NULL,0,NULL),(1713,'product',1,'hooded-sweater','catalog/product/view/id/1',0,1,NULL,1,NULL),(1714,'product',1,'men/hooded-sweater','catalog/product/view/id/1/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1715,'product',1,'men/man-knitwear/hooded-sweater','catalog/product/view/id/1/category/22',0,1,NULL,1,'{\"category_id\":\"22\"}'),(1716,'product',1,'beverages/hooded-sweater','men/hooded-sweater',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1717,'product',1,'beverages/man-knitwear/hooded-sweater','men/man-knitwear/hooded-sweater',301,1,NULL,0,'{\"category_id\":\"22\"}'),(1718,'product',1,'beverages/knitwear/hooded-sweater','men/man-knitwear/hooded-sweater',301,1,NULL,0,'{\"category_id\":\"22\"}'),(1719,'product',1,'beverages/milk-creamer/hooded-sweater','men/man-knitwear/hooded-sweater',301,1,NULL,0,'{\"category_id\":\"22\"}'),(1720,'product',1,'/hooded-sweater','catalog/product/view/id/1/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1721,'product',2,'long-sleeved-jumper','catalog/product/view/id/2',0,1,NULL,1,NULL),(1722,'product',2,'men/long-sleeved-jumper','catalog/product/view/id/2/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1723,'product',2,'men/man-knitwear/long-sleeved-jumper','catalog/product/view/id/2/category/22',0,1,NULL,1,'{\"category_id\":\"22\"}'),(1724,'product',2,'beverages/long-sleeved-jumper','men/long-sleeved-jumper',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1725,'product',2,'beverages/man-knitwear/long-sleeved-jumper','men/man-knitwear/long-sleeved-jumper',301,1,NULL,0,'{\"category_id\":\"22\"}'),(1726,'product',2,'beverages/knitwear/long-sleeved-jumper','men/man-knitwear/long-sleeved-jumper',301,1,NULL,0,'{\"category_id\":\"22\"}'),(1727,'product',2,'beverages/milk-creamer/long-sleeved-jumper','men/man-knitwear/long-sleeved-jumper',301,1,NULL,0,'{\"category_id\":\"22\"}'),(1728,'product',2,'/long-sleeved-jumper','catalog/product/view/id/2/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1729,'product',3,'napapijri-grey-sneakers','catalog/product/view/id/3',0,1,NULL,1,NULL),(1730,'product',3,'men/napapijri-grey-sneakers','catalog/product/view/id/3/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1731,'product',3,'men/men-shoes/napapijri-grey-sneakers','catalog/product/view/id/3/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(1732,'product',3,'beverages/napapijri-grey-sneakers','men/napapijri-grey-sneakers',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1733,'product',3,'beverages/men-shoes/napapijri-grey-sneakers','men/men-shoes/napapijri-grey-sneakers',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1734,'product',3,'beverages/juices/napapijri-grey-sneakers','men/men-shoes/napapijri-grey-sneakers',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1735,'product',3,'/napapijri-grey-sneakers','catalog/product/view/id/3/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1736,'product',4,'boxfresh','catalog/product/view/id/4',0,1,NULL,1,NULL),(1737,'product',4,'men/boxfresh','catalog/product/view/id/4/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1738,'product',4,'men/men-shoes/boxfresh','catalog/product/view/id/4/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(1739,'product',4,'beverages/boxfresh','men/boxfresh',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1740,'product',4,'beverages/men-shoes/boxfresh','men/men-shoes/boxfresh',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1741,'product',4,'beverages/juices/boxfresh','men/men-shoes/boxfresh',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1742,'product',4,'/boxfresh','catalog/product/view/id/4/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1743,'product',5,'j-b-by-jean-biani-sneakers','catalog/product/view/id/5',0,1,NULL,1,NULL),(1744,'product',5,'men/j-b-by-jean-biani-sneakers','catalog/product/view/id/5/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1745,'product',5,'men/men-shoes/j-b-by-jean-biani-sneakers','catalog/product/view/id/5/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(1746,'product',5,'beverages/j-b-by-jean-biani-sneakers','men/j-b-by-jean-biani-sneakers',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1747,'product',5,'beverages/men-shoes/j-b-by-jean-biani-sneakers','men/men-shoes/j-b-by-jean-biani-sneakers',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1748,'product',5,'beverages/juices/j-b-by-jean-biani-sneakers','men/men-shoes/j-b-by-jean-biani-sneakers',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1749,'product',5,'/j-b-by-jean-biani-sneakers','catalog/product/view/id/5/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1750,'product',6,'adidas-originals-pw-tennis-hu','catalog/product/view/id/6',0,1,NULL,1,NULL),(1751,'product',6,'men/adidas-originals-pw-tennis-hu','catalog/product/view/id/6/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1752,'product',6,'men/men-shoes/adidas-originals-pw-tennis-hu','catalog/product/view/id/6/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(1753,'product',6,'beverages/adidas-originals-pw-tennis-hu','men/adidas-originals-pw-tennis-hu',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1754,'product',6,'beverages/men-shoes/adidas-originals-pw-tennis-hu','men/men-shoes/adidas-originals-pw-tennis-hu',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1755,'product',6,'beverages/juices/adidas-originals-pw-tennis-hu','men/men-shoes/adidas-originals-pw-tennis-hu',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1756,'product',6,'/adidas-originals-pw-tennis-hu','catalog/product/view/id/6/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1757,'product',8,'ugg-freamon-wp','catalog/product/view/id/8',0,1,NULL,1,NULL),(1758,'product',8,'men/ugg-freamon-wp','catalog/product/view/id/8/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1759,'product',8,'men/men-shoes/ugg-freamon-wp','catalog/product/view/id/8/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(1760,'product',8,'beverages/ugg-freamon-wp','men/ugg-freamon-wp',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1761,'product',8,'beverages/men-shoes/ugg-freamon-wp','men/men-shoes/ugg-freamon-wp',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1762,'product',8,'beverages/juices/ugg-freamon-wp','men/men-shoes/ugg-freamon-wp',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1763,'product',8,'/ugg-freamon-wp','catalog/product/view/id/8/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1764,'product',15,'half-boots','catalog/product/view/id/15',0,1,NULL,1,NULL),(1765,'product',15,'men/half-boots','catalog/product/view/id/15/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1766,'product',15,'men/men-shoes/half-boots','catalog/product/view/id/15/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(1767,'product',15,'beverages/half-boots','men/half-boots',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1768,'product',15,'beverages/men-shoes/half-boots','men/men-shoes/half-boots',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1769,'product',15,'beverages/juices/half-boots','men/men-shoes/half-boots',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1770,'product',15,'/half-boots','catalog/product/view/id/15/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1771,'product',16,'gant-marvel','catalog/product/view/id/16',0,1,NULL,1,NULL),(1772,'product',16,'men/gant-marvel','catalog/product/view/id/16/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1773,'product',16,'men/men-shoes/gant-marvel','catalog/product/view/id/16/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(1774,'product',16,'beverages/gant-marvel','men/gant-marvel',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1775,'product',16,'beverages/men-shoes/gant-marvel','men/men-shoes/gant-marvel',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1776,'product',16,'beverages/juices/gant-marvel','men/men-shoes/gant-marvel',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1777,'product',16,'/gant-marvel','catalog/product/view/id/16/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1778,'product',20,'i-maschi-lace-up-boots','catalog/product/view/id/20',0,1,NULL,1,NULL),(1779,'product',20,'men/i-maschi-lace-up-boots','catalog/product/view/id/20/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1780,'product',20,'men/men-shoes/i-maschi-lace-up-boots','catalog/product/view/id/20/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(1781,'product',20,'beverages/i-maschi-lace-up-boots','men/i-maschi-lace-up-boots',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1782,'product',20,'beverages/men-shoes/i-maschi-lace-up-boots','men/men-shoes/i-maschi-lace-up-boots',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1783,'product',20,'beverages/juices/i-maschi-lace-up-boots','men/men-shoes/i-maschi-lace-up-boots',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1784,'product',20,'/i-maschi-lace-up-boots','catalog/product/view/id/20/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1785,'product',25,'lloyd-half-boots','catalog/product/view/id/25',0,1,NULL,1,NULL),(1786,'product',25,'men/lloyd-half-boots','catalog/product/view/id/25/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1787,'product',25,'men/men-shoes/lloyd-half-boots','catalog/product/view/id/25/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(1788,'product',25,'beverages/lloyd-half-boots','men/lloyd-half-boots',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1789,'product',25,'beverages/men-shoes/lloyd-half-boots','men/men-shoes/lloyd-half-boots',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1790,'product',25,'beverages/juices/lloyd-half-boots','men/men-shoes/lloyd-half-boots',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1791,'product',25,'/lloyd-half-boots','catalog/product/view/id/25/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1792,'product',29,'cat-lace-up-boots','catalog/product/view/id/29',0,1,NULL,1,NULL),(1793,'product',29,'men/cat-lace-up-boots','catalog/product/view/id/29/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1794,'product',29,'men/men-shoes/cat-lace-up-boots','catalog/product/view/id/29/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(1795,'product',29,'beverages/cat-lace-up-boots','men/cat-lace-up-boots',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1796,'product',29,'beverages/men-shoes/cat-lace-up-boots','men/men-shoes/cat-lace-up-boots',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1797,'product',29,'beverages/juices/cat-lace-up-boots','men/men-shoes/cat-lace-up-boots',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1798,'product',29,'/cat-lace-up-boots','catalog/product/view/id/29/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1799,'product',34,'navy-chino','catalog/product/view/id/34',0,1,NULL,1,NULL),(1800,'product',34,'men/navy-chino','catalog/product/view/id/34/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1801,'product',34,'men/men-trousers/navy-chino','catalog/product/view/id/34/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(1802,'product',34,'beverages/navy-chino','men/navy-chino',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1803,'product',34,'beverages/men-trousers/navy-chino','men/men-trousers/navy-chino',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1804,'product',34,'beverages/sport-energy-nutrition/navy-chino','men/men-trousers/navy-chino',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1805,'product',34,'/navy-chino','catalog/product/view/id/34/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1806,'product',35,'timberland-lace-ups','catalog/product/view/id/35',0,1,NULL,1,NULL),(1807,'product',35,'men/timberland-lace-ups','catalog/product/view/id/35/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1808,'product',35,'men/men-shoes/timberland-lace-ups','catalog/product/view/id/35/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(1809,'product',35,'beverages/timberland-lace-ups','men/timberland-lace-ups',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1810,'product',35,'beverages/men-shoes/timberland-lace-ups','men/men-shoes/timberland-lace-ups',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1811,'product',35,'beverages/juices/timberland-lace-ups','men/men-shoes/timberland-lace-ups',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1812,'product',35,'/timberland-lace-ups','catalog/product/view/id/35/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1813,'product',36,'tommy-hilfiger','catalog/product/view/id/36',0,1,NULL,1,NULL),(1814,'product',36,'men/tommy-hilfiger','catalog/product/view/id/36/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1815,'product',36,'men/men-trousers/tommy-hilfiger','catalog/product/view/id/36/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(1816,'product',36,'beverages/tommy-hilfiger','men/tommy-hilfiger',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1817,'product',36,'beverages/men-trousers/tommy-hilfiger','men/men-trousers/tommy-hilfiger',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1818,'product',36,'beverages/sport-energy-nutrition/tommy-hilfiger','men/men-trousers/tommy-hilfiger',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1819,'product',36,'/tommy-hilfiger','catalog/product/view/id/36/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1820,'product',38,'dark-grey-chino','catalog/product/view/id/38',0,1,NULL,1,NULL),(1821,'product',38,'men/dark-grey-chino','catalog/product/view/id/38/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1822,'product',38,'men/men-trousers/dark-grey-chino','catalog/product/view/id/38/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(1823,'product',38,'beverages/dark-grey-chino','men/dark-grey-chino',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1824,'product',38,'beverages/men-trousers/dark-grey-chino','men/men-trousers/dark-grey-chino',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1825,'product',38,'beverages/sport-energy-nutrition/dark-grey-chino','men/men-trousers/dark-grey-chino',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1826,'product',38,'/dark-grey-chino','catalog/product/view/id/38/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1827,'product',42,'black-chino','catalog/product/view/id/42',0,1,NULL,1,NULL),(1828,'product',42,'men/black-chino','catalog/product/view/id/42/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1829,'product',42,'men/men-trousers/black-chino','catalog/product/view/id/42/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(1830,'product',42,'beverages/black-chino','men/black-chino',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1831,'product',42,'beverages/men-trousers/black-chino','men/men-trousers/black-chino',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1832,'product',42,'beverages/sport-energy-nutrition/black-chino','men/men-trousers/black-chino',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1833,'product',42,'/black-chino','catalog/product/view/id/42/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1834,'product',43,'camper-lace-ups','catalog/product/view/id/43',0,1,NULL,1,NULL),(1835,'product',43,'men/camper-lace-ups','catalog/product/view/id/43/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1836,'product',43,'men/men-shoes/camper-lace-ups','catalog/product/view/id/43/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(1837,'product',43,'beverages/camper-lace-ups','men/camper-lace-ups',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1838,'product',43,'beverages/men-shoes/camper-lace-ups','men/men-shoes/camper-lace-ups',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1839,'product',43,'beverages/juices/camper-lace-ups','men/men-shoes/camper-lace-ups',301,1,NULL,0,'{\"category_id\":\"24\"}'),(1840,'product',43,'/camper-lace-ups','catalog/product/view/id/43/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1841,'product',46,'grey-sweat-pants','catalog/product/view/id/46',0,1,NULL,1,NULL),(1842,'product',46,'men/grey-sweat-pants','catalog/product/view/id/46/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1843,'product',46,'men/men-trousers/grey-sweat-pants','catalog/product/view/id/46/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(1844,'product',46,'beverages/grey-sweat-pants','men/grey-sweat-pants',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1845,'product',46,'beverages/men-trousers/grey-sweat-pants','men/men-trousers/grey-sweat-pants',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1846,'product',46,'beverages/sport-energy-nutrition/grey-sweat-pants','men/men-trousers/grey-sweat-pants',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1847,'product',46,'/grey-sweat-pants','catalog/product/view/id/46/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1848,'product',47,'black-knitted-pants','catalog/product/view/id/47',0,1,NULL,1,NULL),(1849,'product',47,'men/black-knitted-pants','catalog/product/view/id/47/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1850,'product',47,'men/men-trousers/black-knitted-pants','catalog/product/view/id/47/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(1851,'product',47,'beverages/black-knitted-pants','men/black-knitted-pants',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1852,'product',47,'beverages/men-trousers/black-knitted-pants','men/men-trousers/black-knitted-pants',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1853,'product',47,'beverages/sport-energy-nutrition/black-knitted-pants','men/men-trousers/black-knitted-pants',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1854,'product',47,'/black-knitted-pants','catalog/product/view/id/47/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1855,'product',49,'tan-corduroy-trousers','catalog/product/view/id/49',0,1,NULL,1,NULL),(1856,'product',49,'men/tan-corduroy-trousers','catalog/product/view/id/49/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1857,'product',49,'men/men-trousers/tan-corduroy-trousers','catalog/product/view/id/49/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(1858,'product',49,'beverages/tan-corduroy-trousers','men/tan-corduroy-trousers',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1859,'product',49,'beverages/men-trousers/tan-corduroy-trousers','men/men-trousers/tan-corduroy-trousers',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1860,'product',49,'beverages/sport-energy-nutrition/tan-corduroy-trousers','men/men-trousers/tan-corduroy-trousers',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1861,'product',49,'/tan-corduroy-trousers','catalog/product/view/id/49/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1862,'product',51,'moss-cargo-pants','catalog/product/view/id/51',0,1,NULL,1,NULL),(1863,'product',51,'men/moss-cargo-pants','catalog/product/view/id/51/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1864,'product',51,'men/men-trousers/moss-cargo-pants','catalog/product/view/id/51/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(1865,'product',51,'beverages/moss-cargo-pants','men/moss-cargo-pants',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1866,'product',51,'beverages/men-trousers/moss-cargo-pants','men/men-trousers/moss-cargo-pants',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1867,'product',51,'beverages/sport-energy-nutrition/moss-cargo-pants','men/men-trousers/moss-cargo-pants',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1868,'product',51,'/moss-cargo-pants','catalog/product/view/id/51/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1869,'product',53,'camel-dress-trousers-glenn','catalog/product/view/id/53',0,1,NULL,1,NULL),(1870,'product',53,'men/camel-dress-trousers-glenn','catalog/product/view/id/53/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1871,'product',53,'men/men-trousers/camel-dress-trousers-glenn','catalog/product/view/id/53/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(1872,'product',53,'beverages/camel-dress-trousers-glenn','men/camel-dress-trousers-glenn',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1873,'product',53,'beverages/men-trousers/camel-dress-trousers-glenn','men/men-trousers/camel-dress-trousers-glenn',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1874,'product',53,'beverages/sport-energy-nutrition/camel-dress-trousers-glenn','men/men-trousers/camel-dress-trousers-glenn',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1875,'product',53,'/camel-dress-trousers-glenn','catalog/product/view/id/53/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1876,'product',55,'black-sweat-pants','catalog/product/view/id/55',0,1,NULL,1,NULL),(1877,'product',55,'men/black-sweat-pants','catalog/product/view/id/55/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1878,'product',55,'men/men-trousers/black-sweat-pants','catalog/product/view/id/55/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(1879,'product',55,'beverages/black-sweat-pants','men/black-sweat-pants',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1880,'product',55,'beverages/men-trousers/black-sweat-pants','men/men-trousers/black-sweat-pants',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1881,'product',55,'beverages/sport-energy-nutrition/black-sweat-pants','men/men-trousers/black-sweat-pants',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1882,'product',55,'/black-sweat-pants','catalog/product/view/id/55/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1883,'product',63,'blue-straight-leg-jeans','catalog/product/view/id/63',0,1,NULL,1,NULL),(1884,'product',63,'men/blue-straight-leg-jeans','catalog/product/view/id/63/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1885,'product',63,'men/men-jeans/blue-straight-leg-jeans','catalog/product/view/id/63/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(1886,'product',63,'beverages/blue-straight-leg-jeans','men/blue-straight-leg-jeans',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1887,'product',63,'beverages/men-jeans/blue-straight-leg-jeans','men/men-jeans/blue-straight-leg-jeans',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1888,'product',63,'beverages/soda/blue-straight-leg-jeans','men/men-jeans/blue-straight-leg-jeans',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1889,'product',63,'/blue-straight-leg-jeans','catalog/product/view/id/63/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1890,'product',66,'dark-blue-slim-fit-jeans','catalog/product/view/id/66',0,1,NULL,1,NULL),(1891,'product',66,'men/dark-blue-slim-fit-jeans','catalog/product/view/id/66/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1892,'product',66,'men/men-jeans/dark-blue-slim-fit-jeans','catalog/product/view/id/66/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(1893,'product',66,'beverages/dark-blue-slim-fit-jeans','men/dark-blue-slim-fit-jeans',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1894,'product',66,'beverages/men-jeans/dark-blue-slim-fit-jeans','men/men-jeans/dark-blue-slim-fit-jeans',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1895,'product',66,'beverages/soda/dark-blue-slim-fit-jeans','men/men-jeans/dark-blue-slim-fit-jeans',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1896,'product',66,'/dark-blue-slim-fit-jeans','catalog/product/view/id/66/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1897,'product',68,'blue-slim-fit-jeans','catalog/product/view/id/68',0,1,NULL,1,NULL),(1898,'product',68,'men/blue-slim-fit-jeans','catalog/product/view/id/68/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1899,'product',68,'men/men-jeans/blue-slim-fit-jeans','catalog/product/view/id/68/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(1900,'product',68,'beverages/blue-slim-fit-jeans','men/blue-slim-fit-jeans',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1901,'product',68,'beverages/men-jeans/blue-slim-fit-jeans','men/men-jeans/blue-slim-fit-jeans',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1902,'product',68,'beverages/soda/blue-slim-fit-jeans','men/men-jeans/blue-slim-fit-jeans',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1903,'product',68,'/blue-slim-fit-jeans','catalog/product/view/id/68/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1904,'product',71,'khaki-straight-leg-jeans-cadiz','catalog/product/view/id/71',0,1,NULL,1,NULL),(1905,'product',71,'men/khaki-straight-leg-jeans-cadiz','catalog/product/view/id/71/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1906,'product',71,'men/men-jeans/khaki-straight-leg-jeans-cadiz','catalog/product/view/id/71/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(1907,'product',71,'beverages/khaki-straight-leg-jeans-cadiz','men/khaki-straight-leg-jeans-cadiz',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1908,'product',71,'beverages/men-jeans/khaki-straight-leg-jeans-cadiz','men/men-jeans/khaki-straight-leg-jeans-cadiz',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1909,'product',71,'beverages/soda/khaki-straight-leg-jeans-cadiz','men/men-jeans/khaki-straight-leg-jeans-cadiz',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1910,'product',71,'/khaki-straight-leg-jeans-cadiz','catalog/product/view/id/71/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1911,'product',76,'grey-slim-fit-jeans-cirrus','catalog/product/view/id/76',0,1,NULL,1,NULL),(1912,'product',76,'men/grey-slim-fit-jeans-cirrus','catalog/product/view/id/76/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1913,'product',76,'men/men-jeans/grey-slim-fit-jeans-cirrus','catalog/product/view/id/76/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(1914,'product',76,'beverages/grey-slim-fit-jeans-cirrus','men/grey-slim-fit-jeans-cirrus',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1915,'product',76,'beverages/men-jeans/grey-slim-fit-jeans-cirrus','men/men-jeans/grey-slim-fit-jeans-cirrus',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1916,'product',76,'beverages/soda/grey-slim-fit-jeans-cirrus','men/men-jeans/grey-slim-fit-jeans-cirrus',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1917,'product',76,'/grey-slim-fit-jeans-cirrus','catalog/product/view/id/76/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1918,'product',78,'black-standard-jeans','catalog/product/view/id/78',0,1,NULL,1,NULL),(1919,'product',78,'men/black-standard-jeans','catalog/product/view/id/78/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1920,'product',78,'men/men-trousers/black-standard-jeans','catalog/product/view/id/78/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(1921,'product',78,'beverages/black-standard-jeans','men/black-standard-jeans',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1922,'product',78,'beverages/men-trousers/black-standard-jeans','men/men-trousers/black-standard-jeans',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1923,'product',78,'beverages/sport-energy-nutrition/black-standard-jeans','men/men-trousers/black-standard-jeans',301,1,NULL,0,'{\"category_id\":\"25\"}'),(1924,'product',78,'/black-standard-jeans','catalog/product/view/id/78/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1925,'product',79,'medium-blue-straight-leg-jeans-rob','catalog/product/view/id/79',0,1,NULL,1,NULL),(1926,'product',79,'men/medium-blue-straight-leg-jeans-rob','catalog/product/view/id/79/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1927,'product',79,'men/men-jeans/medium-blue-straight-leg-jeans-rob','catalog/product/view/id/79/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(1928,'product',79,'beverages/medium-blue-straight-leg-jeans-rob','men/medium-blue-straight-leg-jeans-rob',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1929,'product',79,'beverages/men-jeans/medium-blue-straight-leg-jeans-rob','men/men-jeans/medium-blue-straight-leg-jeans-rob',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1930,'product',79,'beverages/soda/medium-blue-straight-leg-jeans-rob','men/men-jeans/medium-blue-straight-leg-jeans-rob',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1931,'product',79,'/medium-blue-straight-leg-jeans-rob','catalog/product/view/id/79/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1932,'product',83,'seventy-transitional-jacket-11','catalog/product/view/id/83',0,1,NULL,1,NULL),(1933,'product',83,'men/seventy-transitional-jacket-11','catalog/product/view/id/83/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1934,'product',83,'men/men-jackets/seventy-transitional-jacket-11','catalog/product/view/id/83/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(1935,'product',83,'beverages/seventy-transitional-jacket-11','men/seventy-transitional-jacket-11',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1936,'product',83,'beverages/men-jackets/seventy-transitional-jacket-11','men/men-jackets/seventy-transitional-jacket-11',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1937,'product',83,'beverages/man-jackets/seventy-transitional-jacket-11','men/men-jackets/seventy-transitional-jacket-11',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1938,'product',83,'beverages/water-sparkling/seventy-transitional-jacket-11','men/men-jackets/seventy-transitional-jacket-11',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1939,'product',83,'/seventy-transitional-jacket-11','catalog/product/view/id/83/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1940,'product',85,'medium-blue-slim-fit-jeans-cliff','catalog/product/view/id/85',0,1,NULL,1,NULL),(1941,'product',85,'men/medium-blue-slim-fit-jeans-cliff','catalog/product/view/id/85/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1942,'product',85,'men/men-jeans/medium-blue-slim-fit-jeans-cliff','catalog/product/view/id/85/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(1943,'product',85,'beverages/medium-blue-slim-fit-jeans-cliff','men/medium-blue-slim-fit-jeans-cliff',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1944,'product',85,'beverages/men-jeans/medium-blue-slim-fit-jeans-cliff','men/men-jeans/medium-blue-slim-fit-jeans-cliff',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1945,'product',85,'beverages/soda/medium-blue-slim-fit-jeans-cliff','men/men-jeans/medium-blue-slim-fit-jeans-cliff',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1946,'product',85,'/medium-blue-slim-fit-jeans-cliff','catalog/product/view/id/85/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1947,'product',87,'seventy-transitional-jacket-12','catalog/product/view/id/87',0,1,NULL,1,NULL),(1948,'product',87,'men/seventy-transitional-jacket-12','catalog/product/view/id/87/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1949,'product',87,'men/men-jackets/seventy-transitional-jacket-12','catalog/product/view/id/87/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(1950,'product',87,'beverages/seventy-transitional-jacket-12','men/seventy-transitional-jacket-12',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1951,'product',87,'beverages/men-jackets/seventy-transitional-jacket-12','men/men-jackets/seventy-transitional-jacket-12',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1952,'product',87,'beverages/man-jackets/seventy-transitional-jacket-12','men/men-jackets/seventy-transitional-jacket-12',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1953,'product',87,'beverages/water-sparkling/seventy-transitional-jacket-12','men/men-jackets/seventy-transitional-jacket-12',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1954,'product',87,'/seventy-transitional-jacket-12','catalog/product/view/id/87/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1955,'product',88,'dark-blue-straight-leg-jeans-700','catalog/product/view/id/88',0,1,NULL,1,NULL),(1956,'product',88,'men/dark-blue-straight-leg-jeans-700','catalog/product/view/id/88/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1957,'product',88,'men/men-jeans/dark-blue-straight-leg-jeans-700','catalog/product/view/id/88/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(1958,'product',88,'beverages/dark-blue-straight-leg-jeans-700','men/dark-blue-straight-leg-jeans-700',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1959,'product',88,'beverages/men-jeans/dark-blue-straight-leg-jeans-700','men/men-jeans/dark-blue-straight-leg-jeans-700',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1960,'product',88,'beverages/soda/dark-blue-straight-leg-jeans-700','men/men-jeans/dark-blue-straight-leg-jeans-700',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1961,'product',88,'/dark-blue-straight-leg-jeans-700','catalog/product/view/id/88/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1962,'product',91,'seventy-transitional-jacket-13','catalog/product/view/id/91',0,1,NULL,1,NULL),(1963,'product',91,'men/seventy-transitional-jacket-13','catalog/product/view/id/91/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1964,'product',91,'men/men-jackets/seventy-transitional-jacket-13','catalog/product/view/id/91/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(1965,'product',91,'beverages/seventy-transitional-jacket-13','men/seventy-transitional-jacket-13',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1966,'product',91,'beverages/men-jackets/seventy-transitional-jacket-13','men/men-jackets/seventy-transitional-jacket-13',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1967,'product',91,'beverages/man-jackets/seventy-transitional-jacket-13','men/men-jackets/seventy-transitional-jacket-13',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1968,'product',91,'beverages/water-sparkling/seventy-transitional-jacket-13','men/men-jackets/seventy-transitional-jacket-13',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1969,'product',91,'/seventy-transitional-jacket-13','catalog/product/view/id/91/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1970,'product',92,'seventy-transitional-jacket-14','catalog/product/view/id/92',0,1,NULL,1,NULL),(1971,'product',92,'men/seventy-transitional-jacket-14','catalog/product/view/id/92/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1972,'product',92,'men/men-jackets/seventy-transitional-jacket-14','catalog/product/view/id/92/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(1973,'product',92,'beverages/seventy-transitional-jacket-14','men/seventy-transitional-jacket-14',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1974,'product',92,'beverages/men-jackets/seventy-transitional-jacket-14','men/men-jackets/seventy-transitional-jacket-14',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1975,'product',92,'beverages/man-jackets/seventy-transitional-jacket-14','men/men-jackets/seventy-transitional-jacket-14',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1976,'product',92,'beverages/water-sparkling/seventy-transitional-jacket-14','men/men-jackets/seventy-transitional-jacket-14',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1977,'product',92,'/seventy-transitional-jacket-14','catalog/product/view/id/92/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1978,'product',93,'seventy-transitional-jacket-15','catalog/product/view/id/93',0,1,NULL,1,NULL),(1979,'product',93,'men/seventy-transitional-jacket-15','catalog/product/view/id/93/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1980,'product',93,'men/men-jackets/seventy-transitional-jacket-15','catalog/product/view/id/93/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(1981,'product',93,'beverages/seventy-transitional-jacket-15','men/seventy-transitional-jacket-15',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1982,'product',93,'beverages/men-jackets/seventy-transitional-jacket-15','men/men-jackets/seventy-transitional-jacket-15',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1983,'product',93,'beverages/man-jackets/seventy-transitional-jacket-15','men/men-jackets/seventy-transitional-jacket-15',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1984,'product',93,'beverages/water-sparkling/seventy-transitional-jacket-15','men/men-jackets/seventy-transitional-jacket-15',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1985,'product',93,'/seventy-transitional-jacket-15','catalog/product/view/id/93/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1986,'product',95,'seventy-transitional-jacket-16','catalog/product/view/id/95',0,1,NULL,1,NULL),(1987,'product',95,'men/seventy-transitional-jacket-16','catalog/product/view/id/95/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1988,'product',95,'men/men-jackets/seventy-transitional-jacket-16','catalog/product/view/id/95/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(1989,'product',95,'beverages/seventy-transitional-jacket-16','men/seventy-transitional-jacket-16',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1990,'product',95,'beverages/men-jackets/seventy-transitional-jacket-16','men/men-jackets/seventy-transitional-jacket-16',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1991,'product',95,'beverages/man-jackets/seventy-transitional-jacket-16','men/men-jackets/seventy-transitional-jacket-16',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1992,'product',95,'beverages/water-sparkling/seventy-transitional-jacket-16','men/men-jackets/seventy-transitional-jacket-16',301,1,NULL,0,'{\"category_id\":\"23\"}'),(1993,'product',95,'/seventy-transitional-jacket-16','catalog/product/view/id/95/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(1994,'product',97,'dark-blue-julyen','catalog/product/view/id/97',0,1,NULL,1,NULL),(1995,'product',97,'men/dark-blue-julyen','catalog/product/view/id/97/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(1996,'product',97,'men/men-jeans/dark-blue-julyen','catalog/product/view/id/97/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(1997,'product',97,'beverages/dark-blue-julyen','men/dark-blue-julyen',301,1,NULL,0,'{\"category_id\":\"20\"}'),(1998,'product',97,'beverages/men-jeans/dark-blue-julyen','men/men-jeans/dark-blue-julyen',301,1,NULL,0,'{\"category_id\":\"26\"}'),(1999,'product',97,'beverages/soda/dark-blue-julyen','men/men-jeans/dark-blue-julyen',301,1,NULL,0,'{\"category_id\":\"26\"}'),(2000,'product',97,'/dark-blue-julyen','catalog/product/view/id/97/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2001,'product',98,'seventy-transitional-jacket-17','catalog/product/view/id/98',0,1,NULL,1,NULL),(2002,'product',98,'men/seventy-transitional-jacket-17','catalog/product/view/id/98/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2003,'product',98,'men/men-jackets/seventy-transitional-jacket-17','catalog/product/view/id/98/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(2004,'product',98,'beverages/seventy-transitional-jacket-17','men/seventy-transitional-jacket-17',301,1,NULL,0,'{\"category_id\":\"20\"}'),(2005,'product',98,'beverages/men-jackets/seventy-transitional-jacket-17','men/men-jackets/seventy-transitional-jacket-17',301,1,NULL,0,'{\"category_id\":\"23\"}'),(2006,'product',98,'beverages/man-jackets/seventy-transitional-jacket-17','men/men-jackets/seventy-transitional-jacket-17',301,1,NULL,0,'{\"category_id\":\"23\"}'),(2007,'product',98,'beverages/water-sparkling/seventy-transitional-jacket-17','men/men-jackets/seventy-transitional-jacket-17',301,1,NULL,0,'{\"category_id\":\"23\"}'),(2008,'product',98,'/seventy-transitional-jacket-17','catalog/product/view/id/98/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2009,'product',99,'navy-john-16511','catalog/product/view/id/99',0,1,NULL,1,NULL),(2010,'product',99,'men/navy-john-16511','catalog/product/view/id/99/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2011,'product',99,'men/men-jeans/navy-john-16511','catalog/product/view/id/99/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(2012,'product',99,'beverages/navy-john-16511','men/navy-john-16511',301,1,NULL,0,'{\"category_id\":\"20\"}'),(2013,'product',99,'beverages/men-jeans/navy-john-16511','men/men-jeans/navy-john-16511',301,1,NULL,0,'{\"category_id\":\"26\"}'),(2014,'product',99,'beverages/soda/navy-john-16511','men/men-jeans/navy-john-16511',301,1,NULL,0,'{\"category_id\":\"26\"}'),(2015,'product',99,'/navy-john-16511','catalog/product/view/id/99/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2016,'product',100,'seventy-transitional-jacket-18','catalog/product/view/id/100',0,1,NULL,1,NULL),(2017,'product',100,'men/seventy-transitional-jacket-18','catalog/product/view/id/100/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2018,'product',100,'men/men-jackets/seventy-transitional-jacket-18','catalog/product/view/id/100/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(2019,'product',100,'beverages/seventy-transitional-jacket-18','men/seventy-transitional-jacket-18',301,1,NULL,0,'{\"category_id\":\"20\"}'),(2020,'product',100,'beverages/men-jackets/seventy-transitional-jacket-18','men/men-jackets/seventy-transitional-jacket-18',301,1,NULL,0,'{\"category_id\":\"23\"}'),(2021,'product',100,'beverages/man-jackets/seventy-transitional-jacket-18','men/men-jackets/seventy-transitional-jacket-18',301,1,NULL,0,'{\"category_id\":\"23\"}'),(2022,'product',100,'beverages/water-sparkling/seventy-transitional-jacket-18','men/men-jackets/seventy-transitional-jacket-18',301,1,NULL,0,'{\"category_id\":\"23\"}'),(2023,'product',100,'/seventy-transitional-jacket-18','catalog/product/view/id/100/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2024,'product',101,'lawrence-grey-rollneck-pullover','catalog/product/view/id/101',0,1,NULL,1,NULL),(2025,'product',101,'men/lawrence-grey-rollneck-pullover','catalog/product/view/id/101/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2026,'product',101,'men/man-knitwear/lawrence-grey-rollneck-pullover','catalog/product/view/id/101/category/22',0,1,NULL,1,'{\"category_id\":\"22\"}'),(2027,'product',101,'beverages/lawrence-grey-rollneck-pullover','men/lawrence-grey-rollneck-pullover',301,1,NULL,0,'{\"category_id\":\"20\"}'),(2028,'product',101,'beverages/man-knitwear/lawrence-grey-rollneck-pullover','men/man-knitwear/lawrence-grey-rollneck-pullover',301,1,NULL,0,'{\"category_id\":\"22\"}'),(2029,'product',101,'beverages/knitwear/lawrence-grey-rollneck-pullover','men/man-knitwear/lawrence-grey-rollneck-pullover',301,1,NULL,0,'{\"category_id\":\"22\"}'),(2030,'product',101,'beverages/milk-creamer/lawrence-grey-rollneck-pullover','men/man-knitwear/lawrence-grey-rollneck-pullover',301,1,NULL,0,'{\"category_id\":\"22\"}'),(2031,'product',101,'/lawrence-grey-rollneck-pullover','catalog/product/view/id/101/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2032,'product',102,'lawrence-grey-rollneck-pullover-1','catalog/product/view/id/102',0,1,NULL,1,NULL),(2033,'product',102,'men/lawrence-grey-rollneck-pullover-1','catalog/product/view/id/102/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2034,'product',102,'men/man-knitwear/lawrence-grey-rollneck-pullover-1','catalog/product/view/id/102/category/22',0,1,NULL,1,'{\"category_id\":\"22\"}'),(2035,'product',102,'beverages/lawrence-grey-rollneck-pullover-1','men/lawrence-grey-rollneck-pullover-1',301,1,NULL,0,'{\"category_id\":\"20\"}'),(2036,'product',102,'beverages/man-knitwear/lawrence-grey-rollneck-pullover-1','men/man-knitwear/lawrence-grey-rollneck-pullover-1',301,1,NULL,0,'{\"category_id\":\"22\"}'),(2037,'product',102,'beverages/knitwear/lawrence-grey-rollneck-pullover-1','men/man-knitwear/lawrence-grey-rollneck-pullover-1',301,1,NULL,0,'{\"category_id\":\"22\"}'),(2038,'product',102,'beverages/milk-creamer/lawrence-grey-rollneck-pullover-1','men/man-knitwear/lawrence-grey-rollneck-pullover-1',301,1,NULL,0,'{\"category_id\":\"22\"}'),(2039,'product',102,'/lawrence-grey-rollneck-pullover-1','catalog/product/view/id/102/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2040,'product',103,'lawrence-grey-rollneck-pullover-2','catalog/product/view/id/103',0,1,NULL,1,NULL),(2041,'product',103,'men/lawrence-grey-rollneck-pullover-2','catalog/product/view/id/103/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2042,'product',103,'men/man-knitwear/lawrence-grey-rollneck-pullover-2','catalog/product/view/id/103/category/22',0,1,NULL,1,'{\"category_id\":\"22\"}'),(2043,'product',103,'beverages/lawrence-grey-rollneck-pullover-2','men/lawrence-grey-rollneck-pullover-2',301,1,NULL,0,'{\"category_id\":\"20\"}'),(2044,'product',103,'beverages/man-knitwear/lawrence-grey-rollneck-pullover-2','men/man-knitwear/lawrence-grey-rollneck-pullover-2',301,1,NULL,0,'{\"category_id\":\"22\"}'),(2045,'product',103,'beverages/knitwear/lawrence-grey-rollneck-pullover-2','men/man-knitwear/lawrence-grey-rollneck-pullover-2',301,1,NULL,0,'{\"category_id\":\"22\"}'),(2046,'product',103,'beverages/milk-creamer/lawrence-grey-rollneck-pullover-2','men/man-knitwear/lawrence-grey-rollneck-pullover-2',301,1,NULL,0,'{\"category_id\":\"22\"}'),(2047,'product',103,'/lawrence-grey-rollneck-pullover-2','catalog/product/view/id/103/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2048,'product',104,'lawrence-grey-rollneck-pullover-3','catalog/product/view/id/104',0,1,NULL,1,NULL),(2049,'product',104,'men/lawrence-grey-rollneck-pullover-3','catalog/product/view/id/104/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2050,'product',104,'men/man-knitwear/lawrence-grey-rollneck-pullover-3','catalog/product/view/id/104/category/22',0,1,NULL,1,'{\"category_id\":\"22\"}'),(2051,'product',104,'beverages/lawrence-grey-rollneck-pullover-3','men/lawrence-grey-rollneck-pullover-3',301,1,NULL,0,'{\"category_id\":\"20\"}'),(2052,'product',104,'beverages/man-knitwear/lawrence-grey-rollneck-pullover-3','men/man-knitwear/lawrence-grey-rollneck-pullover-3',301,1,NULL,0,'{\"category_id\":\"22\"}'),(2053,'product',104,'beverages/knitwear/lawrence-grey-rollneck-pullover-3','men/man-knitwear/lawrence-grey-rollneck-pullover-3',301,1,NULL,0,'{\"category_id\":\"22\"}'),(2054,'product',104,'beverages/milk-creamer/lawrence-grey-rollneck-pullover-3','men/man-knitwear/lawrence-grey-rollneck-pullover-3',301,1,NULL,0,'{\"category_id\":\"22\"}'),(2055,'product',104,'/lawrence-grey-rollneck-pullover-3','catalog/product/view/id/104/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2064,'category',28,'women/women-dresses','catalog/category/view/id/28',0,1,NULL,1,NULL),(2065,'category',28,'women/chemicals-wipes','women/women-dresses',301,1,NULL,0,NULL),(2066,'category',28,'cleaning-storage-supplies/chemicals-wipes','women/women-dresses',301,1,NULL,0,'[]'),(2067,'product',109,'unq-linen-dress','catalog/product/view/id/109',0,1,NULL,1,NULL),(2068,'product',109,'women/unq-linen-dress','catalog/product/view/id/109/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2069,'product',109,'women/women-dresses/unq-linen-dress','catalog/product/view/id/109/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(2070,'product',109,'women/chemicals-wipes/unq-linen-dress','women/women-dresses/unq-linen-dress',301,1,NULL,0,'{\"category_id\":\"28\"}'),(2071,'product',109,'/unq-linen-dress','catalog/product/view/id/109/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2072,'product',110,'unq-linen-dress-1','catalog/product/view/id/110',0,1,NULL,1,NULL),(2073,'product',110,'women/unq-linen-dress-1','catalog/product/view/id/110/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2074,'product',110,'women/women-dresses/unq-linen-dress-1','catalog/product/view/id/110/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(2075,'product',110,'women/chemicals-wipes/unq-linen-dress-1','women/women-dresses/unq-linen-dress-1',301,1,NULL,0,'{\"category_id\":\"28\"}'),(2076,'product',110,'/unq-linen-dress-1','catalog/product/view/id/110/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2077,'category',29,'women/women-knitwear','catalog/category/view/id/29',0,1,NULL,1,NULL),(2078,'category',29,'women/cleaning-tools','women/women-knitwear',301,1,NULL,0,NULL),(2079,'category',29,'cleaning-storage-supplies/cleaning-tools','women/women-knitwear',301,1,NULL,0,'[]'),(2080,'product',105,'lawrence-grey-rollneck-pullover-4','catalog/product/view/id/105',0,1,NULL,1,NULL),(2081,'product',105,'women/lawrence-grey-rollneck-pullover-4','catalog/product/view/id/105/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2082,'product',105,'women/women-knitwear/lawrence-grey-rollneck-pullover-4','catalog/product/view/id/105/category/29',0,1,NULL,1,'{\"category_id\":\"29\"}'),(2083,'product',105,'women/cleaning-tools/lawrence-grey-rollneck-pullover-4','women/women-knitwear/lawrence-grey-rollneck-pullover-4',301,1,NULL,0,'{\"category_id\":\"29\"}'),(2084,'product',105,'cleaning-storage-supplies/lawrence-grey-rollneck-pullover-4','women/lawrence-grey-rollneck-pullover-4',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2085,'product',105,'cleaning-storage-supplies/cleaning-tools/lawrence-grey-rollneck-pullover-4','women/women-knitwear/lawrence-grey-rollneck-pullover-4',301,1,NULL,0,'{\"category_id\":\"29\"}'),(2086,'product',105,'/lawrence-grey-rollneck-pullover-4','catalog/product/view/id/105/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2087,'product',106,'lawrence-grey-rollneck-pullover-5','catalog/product/view/id/106',0,1,NULL,1,NULL),(2088,'product',106,'women/lawrence-grey-rollneck-pullover-5','catalog/product/view/id/106/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2089,'product',106,'women/women-knitwear/lawrence-grey-rollneck-pullover-5','catalog/product/view/id/106/category/29',0,1,NULL,1,'{\"category_id\":\"29\"}'),(2090,'product',106,'women/cleaning-tools/lawrence-grey-rollneck-pullover-5','women/women-knitwear/lawrence-grey-rollneck-pullover-5',301,1,NULL,0,'{\"category_id\":\"29\"}'),(2091,'product',106,'cleaning-storage-supplies/lawrence-grey-rollneck-pullover-5','women/lawrence-grey-rollneck-pullover-5',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2092,'product',106,'cleaning-storage-supplies/cleaning-tools/lawrence-grey-rollneck-pullover-5','women/women-knitwear/lawrence-grey-rollneck-pullover-5',301,1,NULL,0,'{\"category_id\":\"29\"}'),(2093,'product',106,'/lawrence-grey-rollneck-pullover-5','catalog/product/view/id/106/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2094,'product',107,'lawrence-grey-rollneck-pullover-6','catalog/product/view/id/107',0,1,NULL,1,NULL),(2095,'product',107,'women/lawrence-grey-rollneck-pullover-6','catalog/product/view/id/107/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2096,'product',107,'women/women-knitwear/lawrence-grey-rollneck-pullover-6','catalog/product/view/id/107/category/29',0,1,NULL,1,'{\"category_id\":\"29\"}'),(2097,'product',107,'women/cleaning-tools/lawrence-grey-rollneck-pullover-6','women/women-knitwear/lawrence-grey-rollneck-pullover-6',301,1,NULL,0,'{\"category_id\":\"29\"}'),(2098,'product',107,'cleaning-storage-supplies/lawrence-grey-rollneck-pullover-6','women/lawrence-grey-rollneck-pullover-6',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2099,'product',107,'cleaning-storage-supplies/cleaning-tools/lawrence-grey-rollneck-pullover-6','women/women-knitwear/lawrence-grey-rollneck-pullover-6',301,1,NULL,0,'{\"category_id\":\"29\"}'),(2100,'product',107,'/lawrence-grey-rollneck-pullover-6','catalog/product/view/id/107/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2101,'product',108,'lawrence-grey-rollneck-pullover-7','catalog/product/view/id/108',0,1,NULL,1,NULL),(2102,'product',108,'women/lawrence-grey-rollneck-pullover-7','catalog/product/view/id/108/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2103,'product',108,'women/women-knitwear/lawrence-grey-rollneck-pullover-7','catalog/product/view/id/108/category/29',0,1,NULL,1,'{\"category_id\":\"29\"}'),(2104,'product',108,'women/cleaning-tools/lawrence-grey-rollneck-pullover-7','women/women-knitwear/lawrence-grey-rollneck-pullover-7',301,1,NULL,0,'{\"category_id\":\"29\"}'),(2105,'product',108,'cleaning-storage-supplies/lawrence-grey-rollneck-pullover-7','women/lawrence-grey-rollneck-pullover-7',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2106,'product',108,'cleaning-storage-supplies/cleaning-tools/lawrence-grey-rollneck-pullover-7','women/women-knitwear/lawrence-grey-rollneck-pullover-7',301,1,NULL,0,'{\"category_id\":\"29\"}'),(2107,'product',108,'/lawrence-grey-rollneck-pullover-7','catalog/product/view/id/108/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2108,'category',30,'women/women-jackets','catalog/category/view/id/30',0,1,NULL,1,NULL),(2109,'category',30,'women/food-storage','women/women-jackets',301,1,NULL,0,NULL),(2110,'category',30,'cleaning-storage-supplies/food-storage','women/women-jackets',301,1,NULL,0,'[]'),(2111,'product',41,'seventy-transitional-jacket','catalog/product/view/id/41',0,1,NULL,1,NULL),(2112,'product',41,'women/seventy-transitional-jacket','catalog/product/view/id/41/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2113,'product',41,'women/women-jackets/seventy-transitional-jacket','catalog/product/view/id/41/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(2114,'product',41,'women/food-storage/seventy-transitional-jacket','women/women-jackets/seventy-transitional-jacket',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2115,'product',41,'cleaning-storage-supplies/seventy-transitional-jacket','women/seventy-transitional-jacket',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2116,'product',41,'cleaning-storage-supplies/food-storage/seventy-transitional-jacket','women/women-jackets/seventy-transitional-jacket',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2117,'product',41,'/seventy-transitional-jacket','catalog/product/view/id/41/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2118,'product',50,'seventy-transitional-jacket-1','catalog/product/view/id/50',0,1,NULL,1,NULL),(2119,'product',50,'women/seventy-transitional-jacket-1','catalog/product/view/id/50/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2120,'product',50,'women/women-jackets/seventy-transitional-jacket-1','catalog/product/view/id/50/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(2121,'product',50,'women/food-storage/seventy-transitional-jacket-1','women/women-jackets/seventy-transitional-jacket-1',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2122,'product',50,'cleaning-storage-supplies/seventy-transitional-jacket-1','women/seventy-transitional-jacket-1',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2123,'product',50,'cleaning-storage-supplies/food-storage/seventy-transitional-jacket-1','women/women-jackets/seventy-transitional-jacket-1',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2124,'product',50,'/seventy-transitional-jacket-1','catalog/product/view/id/50/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2125,'product',56,'seventy-transitional-jacket-2','catalog/product/view/id/56',0,1,NULL,1,NULL),(2126,'product',56,'women/seventy-transitional-jacket-2','catalog/product/view/id/56/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2127,'product',56,'women/women-jackets/seventy-transitional-jacket-2','catalog/product/view/id/56/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(2128,'product',56,'women/food-storage/seventy-transitional-jacket-2','women/women-jackets/seventy-transitional-jacket-2',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2129,'product',56,'cleaning-storage-supplies/seventy-transitional-jacket-2','women/seventy-transitional-jacket-2',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2130,'product',56,'cleaning-storage-supplies/food-storage/seventy-transitional-jacket-2','women/women-jackets/seventy-transitional-jacket-2',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2131,'product',56,'/seventy-transitional-jacket-2','catalog/product/view/id/56/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2132,'product',59,'seventy-transitional-jacket-3','catalog/product/view/id/59',0,1,NULL,1,NULL),(2133,'product',59,'women/seventy-transitional-jacket-3','catalog/product/view/id/59/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2134,'product',59,'women/women-jackets/seventy-transitional-jacket-3','catalog/product/view/id/59/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(2135,'product',59,'women/food-storage/seventy-transitional-jacket-3','women/women-jackets/seventy-transitional-jacket-3',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2136,'product',59,'cleaning-storage-supplies/seventy-transitional-jacket-3','women/seventy-transitional-jacket-3',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2137,'product',59,'cleaning-storage-supplies/food-storage/seventy-transitional-jacket-3','women/women-jackets/seventy-transitional-jacket-3',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2138,'product',59,'/seventy-transitional-jacket-3','catalog/product/view/id/59/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2139,'product',64,'seventy-transitional-jacket-4','catalog/product/view/id/64',0,1,NULL,1,NULL),(2140,'product',64,'women/seventy-transitional-jacket-4','catalog/product/view/id/64/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2141,'product',64,'women/women-jackets/seventy-transitional-jacket-4','catalog/product/view/id/64/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(2142,'product',64,'women/food-storage/seventy-transitional-jacket-4','women/women-jackets/seventy-transitional-jacket-4',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2143,'product',64,'cleaning-storage-supplies/seventy-transitional-jacket-4','women/seventy-transitional-jacket-4',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2144,'product',64,'cleaning-storage-supplies/food-storage/seventy-transitional-jacket-4','women/women-jackets/seventy-transitional-jacket-4',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2145,'product',64,'/seventy-transitional-jacket-4','catalog/product/view/id/64/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2146,'product',70,'seventy-transitional-jacket-5','catalog/product/view/id/70',0,1,NULL,1,NULL),(2147,'product',70,'women/seventy-transitional-jacket-5','catalog/product/view/id/70/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2148,'product',70,'women/women-jackets/seventy-transitional-jacket-5','catalog/product/view/id/70/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(2149,'product',70,'women/food-storage/seventy-transitional-jacket-5','women/women-jackets/seventy-transitional-jacket-5',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2150,'product',70,'cleaning-storage-supplies/seventy-transitional-jacket-5','women/seventy-transitional-jacket-5',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2151,'product',70,'cleaning-storage-supplies/food-storage/seventy-transitional-jacket-5','women/women-jackets/seventy-transitional-jacket-5',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2152,'product',70,'/seventy-transitional-jacket-5','catalog/product/view/id/70/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2153,'product',72,'seventy-transitional-jacket-6','catalog/product/view/id/72',0,1,NULL,1,NULL),(2154,'product',72,'women/seventy-transitional-jacket-6','catalog/product/view/id/72/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2155,'product',72,'women/women-jackets/seventy-transitional-jacket-6','catalog/product/view/id/72/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(2156,'product',72,'women/food-storage/seventy-transitional-jacket-6','women/women-jackets/seventy-transitional-jacket-6',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2157,'product',72,'cleaning-storage-supplies/seventy-transitional-jacket-6','women/seventy-transitional-jacket-6',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2158,'product',72,'cleaning-storage-supplies/food-storage/seventy-transitional-jacket-6','women/women-jackets/seventy-transitional-jacket-6',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2159,'product',72,'/seventy-transitional-jacket-6','catalog/product/view/id/72/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2160,'product',73,'seventy-transitional-jacket-7','catalog/product/view/id/73',0,1,NULL,1,NULL),(2161,'product',73,'women/seventy-transitional-jacket-7','catalog/product/view/id/73/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2162,'product',73,'women/women-jackets/seventy-transitional-jacket-7','catalog/product/view/id/73/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(2163,'product',73,'women/food-storage/seventy-transitional-jacket-7','women/women-jackets/seventy-transitional-jacket-7',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2164,'product',73,'cleaning-storage-supplies/seventy-transitional-jacket-7','women/seventy-transitional-jacket-7',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2165,'product',73,'cleaning-storage-supplies/food-storage/seventy-transitional-jacket-7','women/women-jackets/seventy-transitional-jacket-7',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2166,'product',73,'/seventy-transitional-jacket-7','catalog/product/view/id/73/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2167,'product',77,'seventy-transitional-jacket-8','catalog/product/view/id/77',0,1,NULL,1,NULL),(2168,'product',77,'women/seventy-transitional-jacket-8','catalog/product/view/id/77/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2169,'product',77,'women/women-jackets/seventy-transitional-jacket-8','catalog/product/view/id/77/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(2170,'product',77,'women/food-storage/seventy-transitional-jacket-8','women/women-jackets/seventy-transitional-jacket-8',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2171,'product',77,'cleaning-storage-supplies/seventy-transitional-jacket-8','women/seventy-transitional-jacket-8',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2172,'product',77,'cleaning-storage-supplies/food-storage/seventy-transitional-jacket-8','women/women-jackets/seventy-transitional-jacket-8',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2173,'product',77,'/seventy-transitional-jacket-8','catalog/product/view/id/77/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2174,'product',80,'seventy-transitional-jacket-9','catalog/product/view/id/80',0,1,NULL,1,NULL),(2175,'product',80,'women/seventy-transitional-jacket-9','catalog/product/view/id/80/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2176,'product',80,'women/women-jackets/seventy-transitional-jacket-9','catalog/product/view/id/80/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(2177,'product',80,'women/food-storage/seventy-transitional-jacket-9','women/women-jackets/seventy-transitional-jacket-9',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2178,'product',80,'cleaning-storage-supplies/seventy-transitional-jacket-9','women/seventy-transitional-jacket-9',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2179,'product',80,'cleaning-storage-supplies/food-storage/seventy-transitional-jacket-9','women/women-jackets/seventy-transitional-jacket-9',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2180,'product',80,'/seventy-transitional-jacket-9','catalog/product/view/id/80/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2181,'product',81,'seventy-transitional-jacket-10','catalog/product/view/id/81',0,1,NULL,1,NULL),(2182,'product',81,'women/seventy-transitional-jacket-10','catalog/product/view/id/81/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2183,'product',81,'women/women-jackets/seventy-transitional-jacket-10','catalog/product/view/id/81/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(2184,'product',81,'women/food-storage/seventy-transitional-jacket-10','women/women-jackets/seventy-transitional-jacket-10',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2185,'product',81,'cleaning-storage-supplies/seventy-transitional-jacket-10','women/seventy-transitional-jacket-10',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2186,'product',81,'cleaning-storage-supplies/food-storage/seventy-transitional-jacket-10','women/women-jackets/seventy-transitional-jacket-10',301,1,NULL,0,'{\"category_id\":\"30\"}'),(2187,'product',81,'/seventy-transitional-jacket-10','catalog/product/view/id/81/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2188,'category',31,'women/women-trousers','catalog/category/view/id/31',0,1,NULL,1,NULL),(2189,'category',31,'women/laundry','women/women-trousers',301,1,NULL,0,NULL),(2190,'category',31,'cleaning-storage-supplies/laundry','women/women-trousers',301,1,NULL,0,'[]'),(2191,'product',7,'brax-chuck-slim-fit','catalog/product/view/id/7',0,1,NULL,1,NULL),(2192,'product',7,'women/brax-chuck-slim-fit','catalog/product/view/id/7/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2193,'product',7,'women/women-trousers/brax-chuck-slim-fit','catalog/product/view/id/7/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(2194,'product',7,'women/laundry/brax-chuck-slim-fit','women/women-trousers/brax-chuck-slim-fit',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2195,'product',7,'cleaning-storage-supplies/brax-chuck-slim-fit','women/brax-chuck-slim-fit',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2196,'product',7,'cleaning-storage-supplies/laundry/brax-chuck-slim-fit','women/women-trousers/brax-chuck-slim-fit',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2197,'product',7,'/brax-chuck-slim-fit','catalog/product/view/id/7/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2198,'product',9,'sweat-pants','catalog/product/view/id/9',0,1,NULL,1,NULL),(2199,'product',9,'women/sweat-pants','catalog/product/view/id/9/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2200,'product',9,'women/women-trousers/sweat-pants','catalog/product/view/id/9/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(2201,'product',9,'women/laundry/sweat-pants','women/women-trousers/sweat-pants',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2202,'product',9,'cleaning-storage-supplies/sweat-pants','women/sweat-pants',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2203,'product',9,'cleaning-storage-supplies/laundry/sweat-pants','women/women-trousers/sweat-pants',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2204,'product',9,'/sweat-pants','catalog/product/view/id/9/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2205,'product',10,'business-trousers','catalog/product/view/id/10',0,1,NULL,1,NULL),(2206,'product',10,'women/business-trousers','catalog/product/view/id/10/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2207,'product',10,'women/women-trousers/business-trousers','catalog/product/view/id/10/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(2208,'product',10,'women/laundry/business-trousers','women/women-trousers/business-trousers',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2209,'product',10,'cleaning-storage-supplies/business-trousers','women/business-trousers',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2210,'product',10,'cleaning-storage-supplies/laundry/business-trousers','women/women-trousers/business-trousers',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2211,'product',10,'/business-trousers','catalog/product/view/id/10/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2212,'product',11,'chino','catalog/product/view/id/11',0,1,NULL,1,NULL),(2213,'product',11,'women/chino','catalog/product/view/id/11/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2214,'product',11,'women/women-trousers/chino','catalog/product/view/id/11/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(2215,'product',11,'women/laundry/chino','women/women-trousers/chino',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2216,'product',11,'cleaning-storage-supplies/chino','women/chino',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2217,'product',11,'cleaning-storage-supplies/laundry/chino','women/women-trousers/chino',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2218,'product',11,'/chino','catalog/product/view/id/11/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2219,'product',12,'dress-trousers','catalog/product/view/id/12',0,1,NULL,1,NULL),(2220,'product',12,'women/dress-trousers','catalog/product/view/id/12/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2221,'product',12,'women/women-trousers/dress-trousers','catalog/product/view/id/12/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(2222,'product',12,'women/laundry/dress-trousers','women/women-trousers/dress-trousers',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2223,'product',12,'cleaning-storage-supplies/dress-trousers','women/dress-trousers',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2224,'product',12,'cleaning-storage-supplies/laundry/dress-trousers','women/women-trousers/dress-trousers',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2225,'product',12,'/dress-trousers','catalog/product/view/id/12/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2226,'product',17,'casual-trousers','catalog/product/view/id/17',0,1,NULL,1,NULL),(2227,'product',17,'women/casual-trousers','catalog/product/view/id/17/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2228,'product',17,'women/women-trousers/casual-trousers','catalog/product/view/id/17/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(2229,'product',17,'women/laundry/casual-trousers','women/women-trousers/casual-trousers',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2230,'product',17,'cleaning-storage-supplies/casual-trousers','women/casual-trousers',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2231,'product',17,'cleaning-storage-supplies/laundry/casual-trousers','women/women-trousers/casual-trousers',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2232,'product',17,'/casual-trousers','catalog/product/view/id/17/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2233,'product',19,'pale-belt-pants','catalog/product/view/id/19',0,1,NULL,1,NULL),(2234,'product',19,'women/pale-belt-pants','catalog/product/view/id/19/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2235,'product',19,'women/women-trousers/pale-belt-pants','catalog/product/view/id/19/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(2236,'product',19,'women/laundry/pale-belt-pants','women/women-trousers/pale-belt-pants',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2237,'product',19,'cleaning-storage-supplies/pale-belt-pants','women/pale-belt-pants',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2238,'product',19,'cleaning-storage-supplies/laundry/pale-belt-pants','women/women-trousers/pale-belt-pants',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2239,'product',19,'/pale-belt-pants','catalog/product/view/id/19/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2240,'product',24,'wool-jersey-trousers','catalog/product/view/id/24',0,1,NULL,1,NULL),(2241,'product',24,'women/wool-jersey-trousers','catalog/product/view/id/24/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2242,'product',24,'women/women-trousers/wool-jersey-trousers','catalog/product/view/id/24/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(2243,'product',24,'women/laundry/wool-jersey-trousers','women/women-trousers/wool-jersey-trousers',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2244,'product',24,'cleaning-storage-supplies/wool-jersey-trousers','women/wool-jersey-trousers',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2245,'product',24,'cleaning-storage-supplies/laundry/wool-jersey-trousers','women/women-trousers/wool-jersey-trousers',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2246,'product',24,'/wool-jersey-trousers','catalog/product/view/id/24/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2247,'product',26,'cotton-stretch-tapered-pants','catalog/product/view/id/26',0,1,NULL,1,NULL),(2248,'product',26,'women/cotton-stretch-tapered-pants','catalog/product/view/id/26/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2249,'product',26,'women/women-trousers/cotton-stretch-tapered-pants','catalog/product/view/id/26/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(2250,'product',26,'women/laundry/cotton-stretch-tapered-pants','women/women-trousers/cotton-stretch-tapered-pants',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2251,'product',26,'cleaning-storage-supplies/cotton-stretch-tapered-pants','women/cotton-stretch-tapered-pants',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2252,'product',26,'cleaning-storage-supplies/laundry/cotton-stretch-tapered-pants','women/women-trousers/cotton-stretch-tapered-pants',301,1,NULL,0,'{\"category_id\":\"31\"}'),(2253,'product',26,'/cotton-stretch-tapered-pants','catalog/product/view/id/26/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2254,'category',32,'women/women-jeans','catalog/category/view/id/32',0,1,NULL,1,NULL),(2255,'category',32,'women/paper-products','women/women-jeans',301,1,NULL,0,NULL),(2256,'category',32,'cleaning-storage-supplies/paper-products','women/women-jeans',301,1,NULL,0,'[]'),(2257,'product',18,'slim-fit-jeans','catalog/product/view/id/18',0,1,NULL,1,NULL),(2258,'product',18,'women/slim-fit-jeans','catalog/product/view/id/18/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2259,'product',18,'women/women-jeans/slim-fit-jeans','catalog/product/view/id/18/category/32',0,1,NULL,1,'{\"category_id\":\"32\"}'),(2260,'product',18,'women/paper-products/slim-fit-jeans','women/women-jeans/slim-fit-jeans',301,1,NULL,0,'{\"category_id\":\"32\"}'),(2261,'product',18,'cleaning-storage-supplies/slim-fit-jeans','women/slim-fit-jeans',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2262,'product',18,'cleaning-storage-supplies/paper-products/slim-fit-jeans','women/women-jeans/slim-fit-jeans',301,1,NULL,0,'{\"category_id\":\"32\"}'),(2263,'product',18,'/slim-fit-jeans','catalog/product/view/id/18/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2264,'product',22,'straight-leg-jeans','catalog/product/view/id/22',0,1,NULL,1,NULL),(2265,'product',22,'women/straight-leg-jeans','catalog/product/view/id/22/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2266,'product',22,'women/women-jeans/straight-leg-jeans','catalog/product/view/id/22/category/32',0,1,NULL,1,'{\"category_id\":\"32\"}'),(2267,'product',22,'women/paper-products/straight-leg-jeans','women/women-jeans/straight-leg-jeans',301,1,NULL,0,'{\"category_id\":\"32\"}'),(2268,'product',22,'cleaning-storage-supplies/straight-leg-jeans','women/straight-leg-jeans',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2269,'product',22,'cleaning-storage-supplies/paper-products/straight-leg-jeans','women/women-jeans/straight-leg-jeans',301,1,NULL,0,'{\"category_id\":\"32\"}'),(2270,'product',22,'/straight-leg-jeans','catalog/product/view/id/22/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2271,'product',30,'the-skinny-crop','catalog/product/view/id/30',0,1,NULL,1,NULL),(2272,'product',30,'women/the-skinny-crop','catalog/product/view/id/30/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2273,'product',30,'women/women-jeans/the-skinny-crop','catalog/product/view/id/30/category/32',0,1,NULL,1,'{\"category_id\":\"32\"}'),(2274,'product',30,'women/paper-products/the-skinny-crop','women/women-jeans/the-skinny-crop',301,1,NULL,0,'{\"category_id\":\"32\"}'),(2275,'product',30,'cleaning-storage-supplies/the-skinny-crop','women/the-skinny-crop',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2276,'product',30,'cleaning-storage-supplies/paper-products/the-skinny-crop','women/women-jeans/the-skinny-crop',301,1,NULL,0,'{\"category_id\":\"32\"}'),(2277,'product',30,'/the-skinny-crop','catalog/product/view/id/30/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2278,'product',57,'slim-fit-jeans-jane','catalog/product/view/id/57',0,1,NULL,1,NULL),(2279,'product',57,'women/slim-fit-jeans-jane','catalog/product/view/id/57/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2280,'product',57,'women/women-jeans/slim-fit-jeans-jane','catalog/product/view/id/57/category/32',0,1,NULL,1,'{\"category_id\":\"32\"}'),(2281,'product',57,'women/paper-products/slim-fit-jeans-jane','women/women-jeans/slim-fit-jeans-jane',301,1,NULL,0,'{\"category_id\":\"32\"}'),(2282,'product',57,'cleaning-storage-supplies/slim-fit-jeans-jane','women/slim-fit-jeans-jane',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2283,'product',57,'cleaning-storage-supplies/paper-products/slim-fit-jeans-jane','women/women-jeans/slim-fit-jeans-jane',301,1,NULL,0,'{\"category_id\":\"32\"}'),(2284,'product',57,'/slim-fit-jeans-jane','catalog/product/view/id/57/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2285,'category',33,'women/women-shoes','catalog/category/view/id/33',0,1,NULL,1,NULL),(2286,'category',33,'women/soap-dish-detergent','women/women-shoes',301,1,NULL,0,NULL),(2287,'category',33,'cleaning-storage-supplies/soap-dish-detergent','women/women-shoes',301,1,NULL,0,'[]'),(2288,'product',54,'pumps','catalog/product/view/id/54',0,1,NULL,1,NULL),(2289,'product',54,'women/pumps','catalog/product/view/id/54/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2290,'product',54,'women/women-shoes/pumps','catalog/product/view/id/54/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(2291,'product',54,'women/soap-dish-detergent/pumps','women/women-shoes/pumps',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2292,'product',54,'cleaning-storage-supplies/pumps','women/pumps',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2293,'product',54,'cleaning-storage-supplies/soap-dish-detergent/pumps','women/women-shoes/pumps',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2294,'product',54,'/pumps','catalog/product/view/id/54/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2295,'product',60,'black-chino-1','catalog/product/view/id/60',0,1,NULL,1,NULL),(2296,'product',60,'women/black-chino-1','catalog/product/view/id/60/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2297,'product',60,'women/women-shoes/black-chino-1','catalog/product/view/id/60/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(2298,'product',60,'women/soap-dish-detergent/black-chino-1','women/women-shoes/black-chino-1',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2299,'product',60,'cleaning-storage-supplies/black-chino-1','women/black-chino-1',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2300,'product',60,'cleaning-storage-supplies/soap-dish-detergent/black-chino-1','women/women-shoes/black-chino-1',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2301,'product',60,'/black-chino-1','catalog/product/view/id/60/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2302,'product',69,'black-chino-2','catalog/product/view/id/69',0,1,NULL,1,NULL),(2303,'product',69,'women/black-chino-2','catalog/product/view/id/69/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2304,'product',69,'women/women-shoes/black-chino-2','catalog/product/view/id/69/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(2305,'product',69,'women/soap-dish-detergent/black-chino-2','women/women-shoes/black-chino-2',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2306,'product',69,'cleaning-storage-supplies/black-chino-2','women/black-chino-2',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2307,'product',69,'cleaning-storage-supplies/soap-dish-detergent/black-chino-2','women/women-shoes/black-chino-2',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2308,'product',69,'/black-chino-2','catalog/product/view/id/69/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2309,'product',75,'black-chino-3','catalog/product/view/id/75',0,1,NULL,1,NULL),(2310,'product',75,'women/black-chino-3','catalog/product/view/id/75/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2311,'product',75,'women/women-shoes/black-chino-3','catalog/product/view/id/75/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(2312,'product',75,'women/soap-dish-detergent/black-chino-3','women/women-shoes/black-chino-3',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2313,'product',75,'cleaning-storage-supplies/black-chino-3','women/black-chino-3',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2314,'product',75,'cleaning-storage-supplies/soap-dish-detergent/black-chino-3','women/women-shoes/black-chino-3',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2315,'product',75,'/black-chino-3','catalog/product/view/id/75/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2316,'product',82,'black-chino-4','catalog/product/view/id/82',0,1,NULL,1,NULL),(2317,'product',82,'women/black-chino-4','catalog/product/view/id/82/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2318,'product',82,'women/women-shoes/black-chino-4','catalog/product/view/id/82/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(2319,'product',82,'women/soap-dish-detergent/black-chino-4','women/women-shoes/black-chino-4',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2320,'product',82,'cleaning-storage-supplies/black-chino-4','women/black-chino-4',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2321,'product',82,'cleaning-storage-supplies/soap-dish-detergent/black-chino-4','women/women-shoes/black-chino-4',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2322,'product',82,'/black-chino-4','catalog/product/view/id/82/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2323,'product',84,'black-chino-5','catalog/product/view/id/84',0,1,NULL,1,NULL),(2324,'product',84,'women/black-chino-5','catalog/product/view/id/84/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2325,'product',84,'women/women-shoes/black-chino-5','catalog/product/view/id/84/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(2326,'product',84,'women/soap-dish-detergent/black-chino-5','women/women-shoes/black-chino-5',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2327,'product',84,'cleaning-storage-supplies/black-chino-5','women/black-chino-5',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2328,'product',84,'cleaning-storage-supplies/soap-dish-detergent/black-chino-5','women/women-shoes/black-chino-5',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2329,'product',84,'/black-chino-5','catalog/product/view/id/84/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2330,'product',86,'black-chino-6','catalog/product/view/id/86',0,1,NULL,1,NULL),(2331,'product',86,'women/black-chino-6','catalog/product/view/id/86/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2332,'product',86,'women/women-shoes/black-chino-6','catalog/product/view/id/86/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(2333,'product',86,'women/soap-dish-detergent/black-chino-6','women/women-shoes/black-chino-6',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2334,'product',86,'cleaning-storage-supplies/black-chino-6','women/black-chino-6',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2335,'product',86,'cleaning-storage-supplies/soap-dish-detergent/black-chino-6','women/women-shoes/black-chino-6',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2336,'product',86,'/black-chino-6','catalog/product/view/id/86/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2337,'product',89,'black-chino-7','catalog/product/view/id/89',0,1,NULL,1,NULL),(2338,'product',89,'women/black-chino-7','catalog/product/view/id/89/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2339,'product',89,'women/women-shoes/black-chino-7','catalog/product/view/id/89/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(2340,'product',89,'women/soap-dish-detergent/black-chino-7','women/women-shoes/black-chino-7',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2341,'product',89,'cleaning-storage-supplies/black-chino-7','women/black-chino-7',301,1,NULL,0,'{\"category_id\":\"27\"}'),(2342,'product',89,'cleaning-storage-supplies/soap-dish-detergent/black-chino-7','women/women-shoes/black-chino-7',301,1,NULL,0,'{\"category_id\":\"33\"}'),(2343,'product',89,'/black-chino-7','catalog/product/view/id/89/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2398,'product',112,'unq-linen-dress-2','catalog/product/view/id/112',0,1,NULL,1,NULL),(2399,'product',112,'women/unq-linen-dress-2','catalog/product/view/id/112/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2400,'product',112,'women/women-dresses/unq-linen-dress-2','catalog/product/view/id/112/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(2401,'product',112,'/unq-linen-dress-2','catalog/product/view/id/112/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2402,'product',113,'unq-linen-dress-3','catalog/product/view/id/113',0,1,NULL,1,NULL),(2403,'product',113,'women/unq-linen-dress-3','catalog/product/view/id/113/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2404,'product',113,'women/women-dresses/unq-linen-dress-3','catalog/product/view/id/113/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(2405,'product',113,'/unq-linen-dress-3','catalog/product/view/id/113/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2410,'product',115,'unq-linen-dress-4','catalog/product/view/id/115',0,1,NULL,1,NULL),(2411,'product',115,'women/unq-linen-dress-4','catalog/product/view/id/115/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2412,'product',115,'women/women-dresses/unq-linen-dress-4','catalog/product/view/id/115/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(2413,'product',115,'/unq-linen-dress-4','catalog/product/view/id/115/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2415,'product',117,'unq-linen-dress-5','catalog/product/view/id/117',0,1,NULL,1,NULL),(2416,'product',117,'women/unq-linen-dress-5','catalog/product/view/id/117/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2417,'product',117,'women/women-dresses/unq-linen-dress-5','catalog/product/view/id/117/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(2418,'product',117,'/unq-linen-dress-5','catalog/product/view/id/117/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2450,'category',35,'accessories','catalog/category/view/id/35',0,1,NULL,1,NULL),(2451,'category',36,'accessories/accessories-sunglasses','catalog/category/view/id/36',0,1,NULL,1,NULL),(2452,'category',36,'office-school/accessories-sunglasses','accessories/accessories-sunglasses',301,1,NULL,0,NULL),(2453,'category',36,'office-school/office-supplies','accessories/accessories-sunglasses',301,1,NULL,0,'[]'),(2454,'category',37,'accessories/accessories-bags','catalog/category/view/id/37',0,1,NULL,1,NULL),(2455,'category',37,'office-school/accessories-bags','accessories/accessories-bags',301,1,NULL,0,NULL),(2456,'category',37,'office-school/paper-notebooks','accessories/accessories-bags',301,1,NULL,0,'[]'),(2457,'category',38,'accessories/accessories-belts','catalog/category/view/id/38',0,1,NULL,1,NULL),(2458,'category',38,'office-school/accessories-belts','accessories/accessories-belts',301,1,NULL,0,NULL),(2459,'category',38,'office-school/storage-organization','accessories/accessories-belts',301,1,NULL,0,'[]'),(2460,'category',35,'office-school','accessories',301,1,NULL,0,NULL),(2559,'product',120,'sequin-dress-1','catalog/product/view/id/120',0,1,NULL,1,NULL),(2560,'product',120,'women/sequin-dress-1','catalog/product/view/id/120/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2561,'product',120,'women/women-dresses/sequin-dress-1','catalog/product/view/id/120/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(2562,'product',120,'/sequin-dress-1','catalog/product/view/id/120/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2563,'product',119,'sequin-dress','catalog/product/view/id/119',0,1,NULL,1,NULL),(2564,'product',119,'women/sequin-dress','catalog/product/view/id/119/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2565,'product',119,'women/women-dresses/sequin-dress','catalog/product/view/id/119/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(2566,'product',119,'/sequin-dress','catalog/product/view/id/119/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2567,'product',123,'sequin-dress-3','catalog/product/view/id/123',0,1,NULL,1,NULL),(2568,'product',123,'women/sequin-dress-3','catalog/product/view/id/123/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2569,'product',123,'women/women-dresses/sequin-dress-3','catalog/product/view/id/123/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(2570,'product',123,'/sequin-dress-3','catalog/product/view/id/123/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2571,'product',122,'sequin-dress-2','catalog/product/view/id/122',0,1,NULL,1,NULL),(2572,'product',122,'women/sequin-dress-2','catalog/product/view/id/122/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2573,'product',122,'women/women-dresses/sequin-dress-2','catalog/product/view/id/122/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(2574,'product',122,'/sequin-dress-2','catalog/product/view/id/122/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2575,'product',45,'slim-fit-jeans-eline','catalog/product/view/id/45',0,1,NULL,1,NULL),(2576,'product',45,'women/slim-fit-jeans-eline','catalog/product/view/id/45/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2577,'product',45,'women/women-jeans/slim-fit-jeans-eline','catalog/product/view/id/45/category/32',0,1,NULL,1,'{\"category_id\":\"32\"}'),(2578,'product',45,'/slim-fit-jeans-eline','catalog/product/view/id/45/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2579,'product',33,'boyfriend-jeans','catalog/product/view/id/33',0,1,NULL,1,NULL),(2580,'product',33,'women/boyfriend-jeans','catalog/product/view/id/33/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2581,'product',33,'women/women-jeans/boyfriend-jeans','catalog/product/view/id/33/category/32',0,1,NULL,1,'{\"category_id\":\"32\"}'),(2582,'product',33,'/boyfriend-jeans','catalog/product/view/id/33/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2619,'product',31,'bottega-veneta','catalog/product/view/id/31',0,1,NULL,1,NULL),(2620,'product',31,'accessories/bottega-veneta','catalog/product/view/id/31/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2621,'product',31,'accessories/accessories-sunglasses/bottega-veneta','catalog/product/view/id/31/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(2622,'product',31,'office-school/bottega-veneta','accessories/bottega-veneta',301,1,NULL,0,'{\"category_id\":\"35\"}'),(2623,'product',31,'office-school/accessories-sunglasses/bottega-veneta','accessories/accessories-sunglasses/bottega-veneta',301,1,NULL,0,'{\"category_id\":\"36\"}'),(2624,'product',31,'office-school/office-supplies/bottega-veneta','accessories/accessories-sunglasses/bottega-veneta',301,1,NULL,0,'{\"category_id\":\"36\"}'),(2625,'product',31,'/bottega-veneta','catalog/product/view/id/31/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2626,'product',32,'sunglasses','catalog/product/view/id/32',0,1,NULL,1,NULL),(2627,'product',32,'accessories/sunglasses','catalog/product/view/id/32/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2628,'product',32,'accessories/accessories-sunglasses/sunglasses','catalog/product/view/id/32/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(2629,'product',32,'office-school/sunglasses','accessories/sunglasses',301,1,NULL,0,'{\"category_id\":\"35\"}'),(2630,'product',32,'office-school/accessories-sunglasses/sunglasses','accessories/accessories-sunglasses/sunglasses',301,1,NULL,0,'{\"category_id\":\"36\"}'),(2631,'product',32,'office-school/office-supplies/sunglasses','accessories/accessories-sunglasses/sunglasses',301,1,NULL,0,'{\"category_id\":\"36\"}'),(2632,'product',32,'/sunglasses','catalog/product/view/id/32/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2633,'product',48,'green-sunglasses','catalog/product/view/id/48',0,1,NULL,1,NULL),(2634,'product',48,'accessories/green-sunglasses','catalog/product/view/id/48/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2635,'product',48,'accessories/accessories-sunglasses/green-sunglasses','catalog/product/view/id/48/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(2636,'product',48,'office-school/green-sunglasses','accessories/green-sunglasses',301,1,NULL,0,'{\"category_id\":\"35\"}'),(2637,'product',48,'office-school/accessories-sunglasses/green-sunglasses','accessories/accessories-sunglasses/green-sunglasses',301,1,NULL,0,'{\"category_id\":\"36\"}'),(2638,'product',48,'office-school/office-supplies/green-sunglasses','accessories/accessories-sunglasses/green-sunglasses',301,1,NULL,0,'{\"category_id\":\"36\"}'),(2639,'product',48,'/green-sunglasses','catalog/product/view/id/48/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2640,'product',58,'black-sunglasses','catalog/product/view/id/58',0,1,NULL,1,NULL),(2641,'product',58,'accessories/black-sunglasses','catalog/product/view/id/58/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2642,'product',58,'accessories/accessories-sunglasses/black-sunglasses','catalog/product/view/id/58/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(2643,'product',58,'office-school/black-sunglasses','accessories/black-sunglasses',301,1,NULL,0,'{\"category_id\":\"35\"}'),(2644,'product',58,'office-school/accessories-sunglasses/black-sunglasses','accessories/accessories-sunglasses/black-sunglasses',301,1,NULL,0,'{\"category_id\":\"36\"}'),(2645,'product',58,'office-school/office-supplies/black-sunglasses','accessories/accessories-sunglasses/black-sunglasses',301,1,NULL,0,'{\"category_id\":\"36\"}'),(2646,'product',58,'/black-sunglasses','catalog/product/view/id/58/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2647,'product',61,'black-sunglasses-1','catalog/product/view/id/61',0,1,NULL,1,NULL),(2648,'product',61,'accessories/black-sunglasses-1','catalog/product/view/id/61/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2649,'product',61,'accessories/accessories-sunglasses/black-sunglasses-1','catalog/product/view/id/61/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(2650,'product',61,'office-school/black-sunglasses-1','accessories/black-sunglasses-1',301,1,NULL,0,'{\"category_id\":\"35\"}'),(2651,'product',61,'office-school/accessories-sunglasses/black-sunglasses-1','accessories/accessories-sunglasses/black-sunglasses-1',301,1,NULL,0,'{\"category_id\":\"36\"}'),(2652,'product',61,'office-school/office-supplies/black-sunglasses-1','accessories/accessories-sunglasses/black-sunglasses-1',301,1,NULL,0,'{\"category_id\":\"36\"}'),(2653,'product',61,'/black-sunglasses-1','catalog/product/view/id/61/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2654,'product',65,'black-sunglasses-2','catalog/product/view/id/65',0,1,NULL,1,NULL),(2655,'product',65,'accessories/black-sunglasses-2','catalog/product/view/id/65/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2656,'product',65,'accessories/accessories-sunglasses/black-sunglasses-2','catalog/product/view/id/65/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(2657,'product',65,'office-school/black-sunglasses-2','accessories/black-sunglasses-2',301,1,NULL,0,'{\"category_id\":\"35\"}'),(2658,'product',65,'office-school/accessories-sunglasses/black-sunglasses-2','accessories/accessories-sunglasses/black-sunglasses-2',301,1,NULL,0,'{\"category_id\":\"36\"}'),(2659,'product',65,'office-school/office-supplies/black-sunglasses-2','accessories/accessories-sunglasses/black-sunglasses-2',301,1,NULL,0,'{\"category_id\":\"36\"}'),(2660,'product',65,'/black-sunglasses-2','catalog/product/view/id/65/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2661,'product',74,'rose-gold-diorsorealrise','catalog/product/view/id/74',0,1,NULL,1,NULL),(2662,'product',74,'accessories/rose-gold-diorsorealrise','catalog/product/view/id/74/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2663,'product',74,'accessories/accessories-sunglasses/rose-gold-diorsorealrise','catalog/product/view/id/74/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(2664,'product',74,'office-school/rose-gold-diorsorealrise','accessories/rose-gold-diorsorealrise',301,1,NULL,0,'{\"category_id\":\"35\"}'),(2665,'product',74,'office-school/accessories-sunglasses/rose-gold-diorsorealrise','accessories/accessories-sunglasses/rose-gold-diorsorealrise',301,1,NULL,0,'{\"category_id\":\"36\"}'),(2666,'product',74,'office-school/office-supplies/rose-gold-diorsorealrise','accessories/accessories-sunglasses/rose-gold-diorsorealrise',301,1,NULL,0,'{\"category_id\":\"36\"}'),(2667,'product',74,'/rose-gold-diorsorealrise','catalog/product/view/id/74/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2668,'product',111,'taupe-leather-belt','catalog/product/view/id/111',0,1,NULL,1,NULL),(2669,'product',111,'accessories/taupe-leather-belt','catalog/product/view/id/111/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2670,'product',111,'accessories/accessories-belts/taupe-leather-belt','catalog/product/view/id/111/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(2671,'product',111,'office-school/taupe-leather-belt','accessories/taupe-leather-belt',301,1,NULL,0,'{\"category_id\":\"35\"}'),(2672,'product',111,'office-school/accessories-belts/taupe-leather-belt','accessories/accessories-belts/taupe-leather-belt',301,1,NULL,0,'{\"category_id\":\"38\"}'),(2673,'product',111,'office-school/storage-organization/taupe-leather-belt','accessories/accessories-belts/taupe-leather-belt',301,1,NULL,0,'{\"category_id\":\"38\"}'),(2674,'product',111,'/taupe-leather-belt','catalog/product/view/id/111/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2675,'product',114,'beige-leather-belt','catalog/product/view/id/114',0,1,NULL,1,NULL),(2676,'product',114,'accessories/beige-leather-belt','catalog/product/view/id/114/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2677,'product',114,'accessories/accessories-belts/beige-leather-belt','catalog/product/view/id/114/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(2678,'product',114,'office-school/beige-leather-belt','accessories/beige-leather-belt',301,1,NULL,0,'{\"category_id\":\"35\"}'),(2679,'product',114,'office-school/accessories-belts/beige-leather-belt','accessories/accessories-belts/beige-leather-belt',301,1,NULL,0,'{\"category_id\":\"38\"}'),(2680,'product',114,'/beige-leather-belt','catalog/product/view/id/114/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2682,'product',118,'light-grey-leather-belt','catalog/product/view/id/118',0,1,NULL,1,NULL),(2683,'product',118,'accessories/light-grey-leather-belt','catalog/product/view/id/118/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2684,'product',118,'accessories/accessories-belts/light-grey-leather-belt','catalog/product/view/id/118/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(2685,'product',118,'office-school/light-grey-leather-belt','accessories/light-grey-leather-belt',301,1,NULL,0,'{\"category_id\":\"35\"}'),(2686,'product',118,'office-school/accessories-belts/light-grey-leather-belt','accessories/accessories-belts/light-grey-leather-belt',301,1,NULL,0,'{\"category_id\":\"38\"}'),(2687,'product',118,'/light-grey-leather-belt','catalog/product/view/id/118/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2688,'product',121,'light-blue-leather-belt','catalog/product/view/id/121',0,1,NULL,1,NULL),(2689,'product',121,'accessories/light-blue-leather-belt','catalog/product/view/id/121/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2690,'product',121,'accessories/accessories-belts/light-blue-leather-belt','catalog/product/view/id/121/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(2691,'product',121,'office-school/light-blue-leather-belt','accessories/light-blue-leather-belt',301,1,NULL,0,'{\"category_id\":\"35\"}'),(2692,'product',121,'office-school/accessories-belts/light-blue-leather-belt','accessories/accessories-belts/light-blue-leather-belt',301,1,NULL,0,'{\"category_id\":\"38\"}'),(2693,'product',121,'/light-blue-leather-belt','catalog/product/view/id/121/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2694,'product',124,'leather-business-bag','catalog/product/view/id/124',0,1,NULL,1,NULL),(2695,'product',124,'accessories/leather-business-bag','catalog/product/view/id/124/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2696,'product',124,'accessories/accessories-bags/leather-business-bag','catalog/product/view/id/124/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(2697,'product',124,'office-school/leather-business-bag','accessories/leather-business-bag',301,1,NULL,0,'{\"category_id\":\"35\"}'),(2698,'product',124,'office-school/accessories-bags/leather-business-bag','accessories/accessories-bags/leather-business-bag',301,1,NULL,0,'{\"category_id\":\"37\"}'),(2699,'product',124,'/leather-business-bag','catalog/product/view/id/124/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2700,'product',125,'leather-backpack','catalog/product/view/id/125',0,1,NULL,1,NULL),(2701,'product',125,'accessories/leather-backpack','catalog/product/view/id/125/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2702,'product',125,'accessories/accessories-bags/leather-backpack','catalog/product/view/id/125/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(2703,'product',125,'/leather-backpack','catalog/product/view/id/125/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2704,'product',126,'handbag','catalog/product/view/id/126',0,1,NULL,1,NULL),(2705,'product',126,'accessories/handbag','catalog/product/view/id/126/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2706,'product',126,'accessories/accessories-bags/handbag','catalog/product/view/id/126/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(2707,'product',126,'/handbag','catalog/product/view/id/126/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2708,'product',127,'cognac-handbag','catalog/product/view/id/127',0,1,NULL,1,NULL),(2709,'product',127,'accessories/cognac-handbag','catalog/product/view/id/127/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2710,'product',127,'accessories/accessories-bags/cognac-handbag','catalog/product/view/id/127/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(2711,'product',127,'office-school/cognac-handbag','accessories/cognac-handbag',301,1,NULL,0,'{\"category_id\":\"35\"}'),(2712,'product',127,'office-school/accessories-bags/cognac-handbag','accessories/accessories-bags/cognac-handbag',301,1,NULL,0,'{\"category_id\":\"37\"}'),(2713,'product',127,'/cognac-handbag','catalog/product/view/id/127/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2714,'product',128,'medium-blue-handbag','catalog/product/view/id/128',0,1,NULL,1,NULL),(2715,'product',128,'accessories/medium-blue-handbag','catalog/product/view/id/128/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2716,'product',128,'accessories/accessories-bags/medium-blue-handbag','catalog/product/view/id/128/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(2717,'product',128,'/medium-blue-handbag','catalog/product/view/id/128/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2718,'product',523,'beige-leather-belt-brown-medium-size','catalog/product/view/id/523',0,1,NULL,1,NULL),(2719,'product',523,'accessories/beige-leather-belt-brown-medium-size','catalog/product/view/id/523/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2720,'product',523,'accessories/accessories-belts/beige-leather-belt-brown-medium-size','catalog/product/view/id/523/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(2721,'product',523,'/beige-leather-belt-brown-medium-size','catalog/product/view/id/523/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2722,'product',545,'leather-backpack-brown','catalog/product/view/id/545',0,1,NULL,1,NULL),(2723,'product',545,'accessories/leather-backpack-brown','catalog/product/view/id/545/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2724,'product',545,'accessories/accessories-bags/leather-backpack-brown','catalog/product/view/id/545/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(2725,'product',545,'/leather-backpack-brown','catalog/product/view/id/545/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2738,'product',1351,'n-seventy-transitional-jacket-13','catalog/product/view/id/1351',0,1,NULL,1,NULL),(2739,'product',1351,'men/n-seventy-transitional-jacket-13','catalog/product/view/id/1351/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2740,'product',1351,'men/men-jackets/n-seventy-transitional-jacket-13','catalog/product/view/id/1351/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(2741,'product',1351,'people-of-shibuya-transitional-jacket','n-seventy-transitional-jacket-13',301,1,NULL,0,'[]'),(2742,'product',1351,'men/people-of-shibuya-transitional-jacket','men/n-seventy-transitional-jacket-13',301,1,NULL,0,'{\"category_id\":\"20\"}'),(2743,'product',1351,'men/men-jackets/people-of-shibuya-transitional-jacket','men/men-jackets/n-seventy-transitional-jacket-13',301,1,NULL,0,'{\"category_id\":\"23\"}'),(2744,'product',1351,'/n-seventy-transitional-jacket-13','catalog/product/view/id/1351/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2745,'product',1351,'/people-of-shibuya-transitional-jacket','/n-seventy-transitional-jacket-13',301,1,NULL,0,'{\"category_id\":\"2\"}'),(2746,'product',1413,'n-i-maschi-lace-up-boots','catalog/product/view/id/1413',0,1,NULL,1,NULL),(2747,'product',1413,'men/n-i-maschi-lace-up-boots','catalog/product/view/id/1413/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2748,'product',1413,'men/men-shoes/n-i-maschi-lace-up-boots','catalog/product/view/id/1413/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(2749,'product',1413,'/n-i-maschi-lace-up-boots','catalog/product/view/id/1413/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2750,'product',1455,'n-grey-sneakers','catalog/product/view/id/1455',0,1,NULL,1,NULL),(2751,'product',1455,'men/n-grey-sneakers','catalog/product/view/id/1455/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2752,'product',1455,'men/men-shoes/n-grey-sneakers','catalog/product/view/id/1455/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(2753,'product',1455,'/n-grey-sneakers','catalog/product/view/id/1455/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2754,'product',1464,'n-seventy-transitional-jacket-15','catalog/product/view/id/1464',0,1,NULL,1,NULL),(2755,'product',1464,'men/n-seventy-transitional-jacket-15','catalog/product/view/id/1464/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2756,'product',1464,'men/men-jackets/n-seventy-transitional-jacket-15','catalog/product/view/id/1464/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(2757,'product',1464,'/n-seventy-transitional-jacket-15','catalog/product/view/id/1464/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2758,'product',1495,'n-timberland-lace-ups','catalog/product/view/id/1495',0,1,NULL,1,NULL),(2759,'product',1495,'men/n-timberland-lace-ups','catalog/product/view/id/1495/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2760,'product',1495,'men/men-shoes/n-timberland-lace-ups','catalog/product/view/id/1495/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(2761,'product',1495,'/n-timberland-lace-ups','catalog/product/view/id/1495/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2762,'product',1526,'n-cat-lace-up-boots','catalog/product/view/id/1526',0,1,NULL,1,NULL),(2763,'product',1526,'men/n-cat-lace-up-boots','catalog/product/view/id/1526/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2764,'product',1526,'men/men-shoes/n-cat-lace-up-boots','catalog/product/view/id/1526/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(2765,'product',1526,'/n-cat-lace-up-boots','catalog/product/view/id/1526/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2766,'product',1535,'n-seventy-transitional-jacket-17','catalog/product/view/id/1535',0,1,NULL,1,NULL),(2767,'product',1535,'men/n-seventy-transitional-jacket-17','catalog/product/view/id/1535/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2768,'product',1535,'men/men-jackets/n-seventy-transitional-jacket-17','catalog/product/view/id/1535/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(2769,'product',1535,'/n-seventy-transitional-jacket-17','catalog/product/view/id/1535/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2770,'product',1561,'n-half-boots','catalog/product/view/id/1561',0,1,NULL,1,NULL),(2771,'product',1561,'men/n-half-boots','catalog/product/view/id/1561/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2772,'product',1561,'men/men-shoes/n-half-boots','catalog/product/view/id/1561/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(2773,'product',1561,'/n-half-boots','catalog/product/view/id/1561/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2774,'product',1568,'n-lawrence-grey-rollneck-pullover-2','catalog/product/view/id/1568',0,1,NULL,1,NULL),(2775,'product',1568,'men/n-lawrence-grey-rollneck-pullover-2','catalog/product/view/id/1568/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2776,'product',1568,'men/man-knitwear/n-lawrence-grey-rollneck-pullover-2','catalog/product/view/id/1568/category/22',0,1,NULL,1,'{\"category_id\":\"22\"}'),(2777,'product',1568,'/n-lawrence-grey-rollneck-pullover-2','catalog/product/view/id/1568/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2778,'product',1583,'n-seventy-transitional-jacket-12','catalog/product/view/id/1583',0,1,NULL,1,NULL),(2779,'product',1583,'men/n-seventy-transitional-jacket-12','catalog/product/view/id/1583/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2780,'product',1583,'men/men-jackets/n-seventy-transitional-jacket-12','catalog/product/view/id/1583/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(2781,'product',1583,'/n-seventy-transitional-jacket-12','catalog/product/view/id/1583/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2782,'product',1596,'n-grey-sweat-pants','catalog/product/view/id/1596',0,1,NULL,1,NULL),(2783,'product',1596,'men/n-grey-sweat-pants','catalog/product/view/id/1596/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2784,'product',1596,'men/men-trousers/n-grey-sweat-pants','catalog/product/view/id/1596/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(2785,'product',1596,'/n-grey-sweat-pants','catalog/product/view/id/1596/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2786,'product',1597,'n-j-b-by-jean-biani-sneakers','catalog/product/view/id/1597',0,1,NULL,1,NULL),(2787,'product',1597,'men/n-j-b-by-jean-biani-sneakers','catalog/product/view/id/1597/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2788,'product',1597,'men/men-shoes/n-j-b-by-jean-biani-sneakers','catalog/product/view/id/1597/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(2789,'product',1597,'/n-j-b-by-jean-biani-sneakers','catalog/product/view/id/1597/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2790,'product',1604,'n-dark-blue-straight-leg-jeans-700','catalog/product/view/id/1604',0,1,NULL,1,NULL),(2791,'product',1604,'men/n-dark-blue-straight-leg-jeans-700','catalog/product/view/id/1604/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2792,'product',1604,'men/men-jeans/n-dark-blue-straight-leg-jeans-700','catalog/product/view/id/1604/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(2793,'product',1604,'/n-dark-blue-straight-leg-jeans-700','catalog/product/view/id/1604/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2794,'product',1630,'n-dark-blue-slim-fit-jeans','catalog/product/view/id/1630',0,1,NULL,1,NULL),(2795,'product',1630,'men/n-dark-blue-slim-fit-jeans','catalog/product/view/id/1630/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2796,'product',1630,'men/men-jeans/n-dark-blue-slim-fit-jeans','catalog/product/view/id/1630/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(2797,'product',1630,'/n-dark-blue-slim-fit-jeans','catalog/product/view/id/1630/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2798,'product',1643,'n-ugg-freamon-wp','catalog/product/view/id/1643',0,1,NULL,1,NULL),(2799,'product',1643,'men/n-ugg-freamon-wp','catalog/product/view/id/1643/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2800,'product',1643,'men/men-shoes/n-ugg-freamon-wp','catalog/product/view/id/1643/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(2801,'product',1643,'/n-ugg-freamon-wp','catalog/product/view/id/1643/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2802,'product',1656,'n-seventy-transitional-jacket-11','catalog/product/view/id/1656',0,1,NULL,1,NULL),(2803,'product',1656,'men/n-seventy-transitional-jacket-11','catalog/product/view/id/1656/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2804,'product',1656,'men/men-jackets/n-seventy-transitional-jacket-11','catalog/product/view/id/1656/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(2805,'product',1656,'/n-seventy-transitional-jacket-11','catalog/product/view/id/1656/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2806,'product',1677,'n-black-knitted-pants','catalog/product/view/id/1677',0,1,NULL,1,NULL),(2807,'product',1677,'men/n-black-knitted-pants','catalog/product/view/id/1677/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2808,'product',1677,'men/men-trousers/n-black-knitted-pants','catalog/product/view/id/1677/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(2809,'product',1677,'/n-black-knitted-pants','catalog/product/view/id/1677/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2810,'product',1699,'n-camel-dress-trousers-glenn','catalog/product/view/id/1699',0,1,NULL,1,NULL),(2811,'product',1699,'men/n-camel-dress-trousers-glenn','catalog/product/view/id/1699/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2812,'product',1699,'men/men-trousers/n-camel-dress-trousers-glenn','catalog/product/view/id/1699/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(2813,'product',1699,'/n-camel-dress-trousers-glenn','catalog/product/view/id/1699/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2814,'product',1709,'n-lawrence-grey-rollneck-pullover-1','catalog/product/view/id/1709',0,1,NULL,1,NULL),(2815,'product',1709,'men/n-lawrence-grey-rollneck-pullover-1','catalog/product/view/id/1709/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2816,'product',1709,'men/man-knitwear/n-lawrence-grey-rollneck-pullover-1','catalog/product/view/id/1709/category/22',0,1,NULL,1,'{\"category_id\":\"22\"}'),(2817,'product',1709,'/n-lawrence-grey-rollneck-pullover-1','catalog/product/view/id/1709/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2818,'product',1725,'n-tan-corduroy-trousers','catalog/product/view/id/1725',0,1,NULL,1,NULL),(2819,'product',1725,'men/n-tan-corduroy-trousers','catalog/product/view/id/1725/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2820,'product',1725,'men/men-trousers/n-tan-corduroy-trousers','catalog/product/view/id/1725/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(2821,'product',1725,'/n-tan-corduroy-trousers','catalog/product/view/id/1725/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2822,'product',1735,'n-seventy-transitional-jacket-14','catalog/product/view/id/1735',0,1,NULL,1,NULL),(2823,'product',1735,'men/n-seventy-transitional-jacket-14','catalog/product/view/id/1735/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2824,'product',1735,'men/men-jackets/n-seventy-transitional-jacket-14','catalog/product/view/id/1735/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(2825,'product',1735,'/n-seventy-transitional-jacket-14','catalog/product/view/id/1735/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2826,'product',1756,'n-black-chino','catalog/product/view/id/1756',0,1,NULL,1,NULL),(2827,'product',1756,'men/n-black-chino','catalog/product/view/id/1756/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2828,'product',1756,'men/men-trousers/n-black-chino','catalog/product/view/id/1756/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(2829,'product',1756,'/n-black-chino','catalog/product/view/id/1756/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2830,'product',1777,'n-lawrence-grey-rollneck-pullover','catalog/product/view/id/1777',0,1,NULL,1,NULL),(2831,'product',1777,'men/n-lawrence-grey-rollneck-pullover','catalog/product/view/id/1777/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2832,'product',1777,'men/man-knitwear/n-lawrence-grey-rollneck-pullover','catalog/product/view/id/1777/category/22',0,1,NULL,1,'{\"category_id\":\"22\"}'),(2833,'product',1777,'/n-lawrence-grey-rollneck-pullover','catalog/product/view/id/1777/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2834,'product',1787,'n-medium-blue-straight-leg-jeans-rob','catalog/product/view/id/1787',0,1,NULL,1,NULL),(2835,'product',1787,'men/n-medium-blue-straight-leg-jeans-rob','catalog/product/view/id/1787/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2836,'product',1787,'men/men-jeans/n-medium-blue-straight-leg-jeans-rob','catalog/product/view/id/1787/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(2837,'product',1787,'/n-medium-blue-straight-leg-jeans-rob','catalog/product/view/id/1787/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2838,'product',1808,'n-navy-chino','catalog/product/view/id/1808',0,1,NULL,1,NULL),(2839,'product',1808,'men/n-navy-chino','catalog/product/view/id/1808/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2840,'product',1808,'men/men-trousers/n-navy-chino','catalog/product/view/id/1808/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(2841,'product',1808,'/n-navy-chino','catalog/product/view/id/1808/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2842,'product',1817,'n-blue-straight-leg-jeans','catalog/product/view/id/1817',0,1,NULL,1,NULL),(2843,'product',1817,'men/n-blue-straight-leg-jeans','catalog/product/view/id/1817/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2844,'product',1817,'men/men-jeans/n-blue-straight-leg-jeans','catalog/product/view/id/1817/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(2845,'product',1817,'/n-blue-straight-leg-jeans','catalog/product/view/id/1817/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2850,'product',1840,'n-medium-blue-slim-fit-jeans-cliff','catalog/product/view/id/1840',0,1,NULL,1,NULL),(2851,'product',1840,'men/n-medium-blue-slim-fit-jeans-cliff','catalog/product/view/id/1840/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2852,'product',1840,'men/men-jeans/n-medium-blue-slim-fit-jeans-cliff','catalog/product/view/id/1840/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(2853,'product',1840,'/n-medium-blue-slim-fit-jeans-cliff','catalog/product/view/id/1840/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2854,'product',1866,'n-tommy-hilfiger','catalog/product/view/id/1866',0,1,NULL,1,NULL),(2855,'product',1866,'men/n-tommy-hilfiger','catalog/product/view/id/1866/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2856,'product',1866,'men/men-trousers/n-tommy-hilfiger','catalog/product/view/id/1866/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(2857,'product',1866,'/n-tommy-hilfiger','catalog/product/view/id/1866/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2858,'product',1875,'n-blue-slim-fit-jeans','catalog/product/view/id/1875',0,1,NULL,1,NULL),(2859,'product',1875,'men/n-blue-slim-fit-jeans','catalog/product/view/id/1875/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2860,'product',1875,'men/men-jeans/n-blue-slim-fit-jeans','catalog/product/view/id/1875/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(2861,'product',1875,'/n-blue-slim-fit-jeans','catalog/product/view/id/1875/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2862,'product',1888,'n-gabba-long-sleeved-jumper','catalog/product/view/id/1888',0,1,NULL,1,NULL),(2863,'product',1888,'men/n-gabba-long-sleeved-jumper','catalog/product/view/id/1888/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2864,'product',1888,'men/man-knitwear/n-gabba-long-sleeved-jumper','catalog/product/view/id/1888/category/22',0,1,NULL,1,'{\"category_id\":\"22\"}'),(2865,'product',1888,'/n-gabba-long-sleeved-jumper','catalog/product/view/id/1888/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2866,'product',1892,'n-navy-john-16511','catalog/product/view/id/1892',0,1,NULL,1,NULL),(2867,'product',1892,'men/n-navy-john-16511','catalog/product/view/id/1892/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2868,'product',1892,'men/men-jeans/n-navy-john-16511','catalog/product/view/id/1892/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(2869,'product',1892,'/n-navy-john-16511','catalog/product/view/id/1892/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2870,'product',1896,'n-dark-blue-julyen','catalog/product/view/id/1896',0,1,NULL,1,NULL),(2871,'product',1896,'men/n-dark-blue-julyen','catalog/product/view/id/1896/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2872,'product',1896,'men/men-jeans/n-dark-blue-julyen','catalog/product/view/id/1896/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(2873,'product',1896,'/n-dark-blue-julyen','catalog/product/view/id/1896/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2874,'product',1903,'n-black-sweat-pants','catalog/product/view/id/1903',0,1,NULL,1,NULL),(2875,'product',1903,'men/n-black-sweat-pants','catalog/product/view/id/1903/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2876,'product',1903,'men/men-trousers/n-black-sweat-pants','catalog/product/view/id/1903/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(2877,'product',1903,'/n-black-sweat-pants','catalog/product/view/id/1903/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2878,'product',1910,'n-long-sleeved-jumper','catalog/product/view/id/1910',0,1,NULL,1,NULL),(2879,'product',1910,'men/n-long-sleeved-jumper','catalog/product/view/id/1910/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2880,'product',1910,'men/man-knitwear/n-long-sleeved-jumper','catalog/product/view/id/1910/category/22',0,1,NULL,1,'{\"category_id\":\"22\"}'),(2881,'product',1910,'/n-long-sleeved-jumper','catalog/product/view/id/1910/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2882,'product',1920,'n-hooded-sweater','catalog/product/view/id/1920',0,1,NULL,1,NULL),(2883,'product',1920,'men/n-hooded-sweater','catalog/product/view/id/1920/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2884,'product',1920,'men/man-knitwear/n-hooded-sweater','catalog/product/view/id/1920/category/22',0,1,NULL,1,'{\"category_id\":\"22\"}'),(2885,'product',1920,'/n-hooded-sweater','catalog/product/view/id/1920/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2890,'product',1943,'n-camper-lace-ups','catalog/product/view/id/1943',0,1,NULL,1,NULL),(2891,'product',1943,'men/n-camper-lace-ups','catalog/product/view/id/1943/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2892,'product',1943,'men/men-shoes/n-camper-lace-ups','catalog/product/view/id/1943/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(2893,'product',1943,'/n-camper-lace-ups','catalog/product/view/id/1943/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2894,'product',1946,'n-adidas-originals-pw-tennis-hu','catalog/product/view/id/1946',0,1,NULL,1,NULL),(2895,'product',1946,'men/n-adidas-originals-pw-tennis-hu','catalog/product/view/id/1946/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2896,'product',1946,'men/men-shoes/n-adidas-originals-pw-tennis-hu','catalog/product/view/id/1946/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(2897,'product',1946,'/n-adidas-originals-pw-tennis-hu','catalog/product/view/id/1946/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2898,'product',1961,'n-lloyd-half-boots','catalog/product/view/id/1961',0,1,NULL,1,NULL),(2899,'product',1961,'men/n-lloyd-half-boots','catalog/product/view/id/1961/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2900,'product',1961,'men/men-shoes/n-lloyd-half-boots','catalog/product/view/id/1961/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(2901,'product',1961,'/n-lloyd-half-boots','catalog/product/view/id/1961/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2902,'product',1972,'n-boxfresh','catalog/product/view/id/1972',0,1,NULL,1,NULL),(2903,'product',1972,'men/n-boxfresh','catalog/product/view/id/1972/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2904,'product',1972,'men/men-shoes/n-boxfresh','catalog/product/view/id/1972/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(2905,'product',1972,'/n-boxfresh','catalog/product/view/id/1972/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2906,'product',1991,'n-gant-marvel','catalog/product/view/id/1991',0,1,NULL,1,NULL),(2907,'product',1991,'men/n-gant-marvel','catalog/product/view/id/1991/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2908,'product',1991,'men/men-shoes/n-gant-marvel','catalog/product/view/id/1991/category/24',0,1,NULL,1,'{\"category_id\":\"24\"}'),(2909,'product',1991,'/n-gant-marvel','catalog/product/view/id/1991/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2910,'product',44,'dark-blue-sunglasses','catalog/product/view/id/44',0,1,NULL,1,NULL),(2911,'product',44,'accessories/dark-blue-sunglasses','catalog/product/view/id/44/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2912,'product',44,'accessories/accessories-sunglasses/dark-blue-sunglasses','catalog/product/view/id/44/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(2913,'product',44,'/dark-blue-sunglasses','catalog/product/view/id/44/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2914,'product',1996,'n-moss-cargo-pants','catalog/product/view/id/1996',0,1,NULL,1,NULL),(2915,'product',1996,'men/n-moss-cargo-pants','catalog/product/view/id/1996/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(2916,'product',1996,'men/men-trousers/n-moss-cargo-pants','catalog/product/view/id/1996/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(2917,'product',1996,'/n-moss-cargo-pants','catalog/product/view/id/1996/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2918,'product',2001,'n-dark-blue-sunglasses','catalog/product/view/id/2001',0,1,NULL,1,NULL),(2919,'product',2001,'accessories/n-dark-blue-sunglasses','catalog/product/view/id/2001/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2920,'product',2001,'accessories/accessories-sunglasses/n-dark-blue-sunglasses','catalog/product/view/id/2001/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(2921,'product',2001,'/n-dark-blue-sunglasses','catalog/product/view/id/2001/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2922,'product',2010,'n-boyfriend-jeans','catalog/product/view/id/2010',0,1,NULL,1,NULL),(2923,'product',2010,'women/n-boyfriend-jeans','catalog/product/view/id/2010/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2924,'product',2010,'women/women-jeans/n-boyfriend-jeans','catalog/product/view/id/2010/category/32',0,1,NULL,1,'{\"category_id\":\"32\"}'),(2925,'product',2010,'/n-boyfriend-jeans','catalog/product/view/id/2010/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2926,'product',116,'medium-blue-leather-belt','catalog/product/view/id/116',0,1,NULL,1,NULL),(2927,'product',116,'accessories/medium-blue-leather-belt','catalog/product/view/id/116/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2928,'product',116,'accessories/accessories-belts/medium-blue-leather-belt','catalog/product/view/id/116/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(2929,'product',116,'/medium-blue-leather-belt','catalog/product/view/id/116/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2930,'product',2017,'n-brax-chuck-slim-fit','catalog/product/view/id/2017',0,1,NULL,1,NULL),(2931,'product',2017,'women/n-brax-chuck-slim-fit','catalog/product/view/id/2017/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2932,'product',2017,'women/women-trousers/n-brax-chuck-slim-fit','catalog/product/view/id/2017/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(2933,'product',2017,'/n-brax-chuck-slim-fit','catalog/product/view/id/2017/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2934,'product',2020,'n-medium-blue-leather-belt','catalog/product/view/id/2020',0,1,NULL,1,NULL),(2935,'product',2020,'accessories/n-medium-blue-leather-belt','catalog/product/view/id/2020/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2936,'product',2020,'accessories/accessories-belts/n-medium-blue-leather-belt','catalog/product/view/id/2020/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(2937,'product',2020,'/n-medium-blue-leather-belt','catalog/product/view/id/2020/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2938,'product',2029,'n-business-trousers','catalog/product/view/id/2029',0,1,NULL,1,NULL),(2939,'product',2029,'women/n-business-trousers','catalog/product/view/id/2029/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2940,'product',2029,'women/women-trousers/n-business-trousers','catalog/product/view/id/2029/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(2941,'product',2029,'/n-business-trousers','catalog/product/view/id/2029/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2942,'product',2032,'n-taupe-leather-belt','catalog/product/view/id/2032',0,1,NULL,1,NULL),(2943,'product',2032,'accessories/n-taupe-leather-belt','catalog/product/view/id/2032/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2944,'product',2032,'accessories/accessories-belts/n-taupe-leather-belt','catalog/product/view/id/2032/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(2945,'product',2032,'/n-taupe-leather-belt','catalog/product/view/id/2032/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2950,'product',2050,'n-casual-trousers','catalog/product/view/id/2050',0,1,NULL,1,NULL),(2951,'product',2050,'women/n-casual-trousers','catalog/product/view/id/2050/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2952,'product',2050,'women/women-trousers/n-casual-trousers','catalog/product/view/id/2050/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(2953,'product',2050,'/n-casual-trousers','catalog/product/view/id/2050/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2954,'product',2055,'n-black-sunglasses-1','catalog/product/view/id/2055',0,1,NULL,1,NULL),(2955,'product',2055,'accessories/n-black-sunglasses-1','catalog/product/view/id/2055/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2956,'product',2055,'accessories/accessories-sunglasses/n-black-sunglasses-1','catalog/product/view/id/2055/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(2957,'product',2055,'/n-black-sunglasses-1','catalog/product/view/id/2055/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2958,'product',2060,'n-chiffon-dress','catalog/product/view/id/2060',0,1,NULL,1,NULL),(2959,'product',2060,'women/n-chiffon-dress','catalog/product/view/id/2060/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2960,'product',2060,'women/women-dresses/n-chiffon-dress','catalog/product/view/id/2060/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(2961,'product',2060,'/n-chiffon-dress','catalog/product/view/id/2060/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2962,'product',2065,'n-chino','catalog/product/view/id/2065',0,1,NULL,1,NULL),(2963,'product',2065,'women/n-chino','catalog/product/view/id/2065/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2964,'product',2065,'women/women-trousers/n-chino','catalog/product/view/id/2065/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(2965,'product',2065,'/n-chino','catalog/product/view/id/2065/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2966,'product',2072,'n-cocktail-dress','catalog/product/view/id/2072',0,1,NULL,1,NULL),(2967,'product',2072,'women/n-cocktail-dress','catalog/product/view/id/2072/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2968,'product',2072,'women/women-dresses/n-cocktail-dress','catalog/product/view/id/2072/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(2969,'product',2072,'/n-cocktail-dress','catalog/product/view/id/2072/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2970,'product',2077,'n-sunglasses','catalog/product/view/id/2077',0,1,NULL,1,NULL),(2971,'product',2077,'accessories/n-sunglasses','catalog/product/view/id/2077/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2972,'product',2077,'accessories/accessories-sunglasses/n-sunglasses','catalog/product/view/id/2077/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(2973,'product',2077,'/n-sunglasses','catalog/product/view/id/2077/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2974,'product',2084,'n-colmar-soft-down-jacket','catalog/product/view/id/2084',0,1,NULL,1,NULL),(2975,'product',2084,'women/n-colmar-soft-down-jacket','catalog/product/view/id/2084/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2976,'product',2084,'women/women-jackets/n-colmar-soft-down-jacket','catalog/product/view/id/2084/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(2977,'product',2084,'/n-colmar-soft-down-jacket','catalog/product/view/id/2084/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2978,'product',2089,'n-rose-gold-diorsorealrise','catalog/product/view/id/2089',0,1,NULL,1,NULL),(2979,'product',2089,'accessories/n-rose-gold-diorsorealrise','catalog/product/view/id/2089/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2980,'product',2089,'accessories/accessories-sunglasses/n-rose-gold-diorsorealrise','catalog/product/view/id/2089/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(2981,'product',2089,'/n-rose-gold-diorsorealrise','catalog/product/view/id/2089/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2982,'product',2098,'n-comma-casual-identity-quilted-jacket','catalog/product/view/id/2098',0,1,NULL,1,NULL),(2983,'product',2098,'women/n-comma-casual-identity-quilted-jacket','catalog/product/view/id/2098/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2984,'product',2098,'women/women-jackets/n-comma-casual-identity-quilted-jacket','catalog/product/view/id/2098/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(2985,'product',2098,'/n-comma-casual-identity-quilted-jacket','catalog/product/view/id/2098/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2986,'product',2105,'n-black-sunglasses-2','catalog/product/view/id/2105',0,1,NULL,1,NULL),(2987,'product',2105,'accessories/n-black-sunglasses-2','catalog/product/view/id/2105/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(2988,'product',2105,'accessories/accessories-sunglasses/n-black-sunglasses-2','catalog/product/view/id/2105/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(2989,'product',2105,'/n-black-sunglasses-2','catalog/product/view/id/2105/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2990,'product',2116,'n-cotton-stretch-tapered-pants','catalog/product/view/id/2116',0,1,NULL,1,NULL),(2991,'product',2116,'women/n-cotton-stretch-tapered-pants','catalog/product/view/id/2116/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2992,'product',2116,'women/women-trousers/n-cotton-stretch-tapered-pants','catalog/product/view/id/2116/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(2993,'product',2116,'/n-cotton-stretch-tapered-pants','catalog/product/view/id/2116/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2994,'product',2123,'n-dine-n-dance-cashmere-pullover','catalog/product/view/id/2123',0,1,NULL,1,NULL),(2995,'product',2123,'women/n-dine-n-dance-cashmere-pullover','catalog/product/view/id/2123/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(2996,'product',2123,'women/women-knitwear/n-dine-n-dance-cashmere-pullover','catalog/product/view/id/2123/category/29',0,1,NULL,1,'{\"category_id\":\"29\"}'),(2997,'product',2123,'/n-dine-n-dance-cashmere-pullover','catalog/product/view/id/2123/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(2998,'product',2132,'n-dolomite-quilted-jacket','catalog/product/view/id/2132',0,1,NULL,1,NULL),(2999,'product',2132,'women/n-dolomite-quilted-jacket','catalog/product/view/id/2132/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3000,'product',2132,'women/women-jackets/n-dolomite-quilted-jacket','catalog/product/view/id/2132/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(3001,'product',2132,'/n-dolomite-quilted-jacket','catalog/product/view/id/2132/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3002,'product',2135,'n-light-grey-leather-belt','catalog/product/view/id/2135',0,1,NULL,1,NULL),(3003,'product',2135,'accessories/n-light-grey-leather-belt','catalog/product/view/id/2135/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(3004,'product',2135,'accessories/accessories-belts/n-light-grey-leather-belt','catalog/product/view/id/2135/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(3005,'product',2135,'/n-light-grey-leather-belt','catalog/product/view/id/2135/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3006,'product',2138,'n-light-blue-leather-belt','catalog/product/view/id/2138',0,1,NULL,1,NULL),(3007,'product',2138,'accessories/n-light-blue-leather-belt','catalog/product/view/id/2138/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(3008,'product',2138,'accessories/accessories-belts/n-light-blue-leather-belt','catalog/product/view/id/2138/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(3009,'product',2138,'/n-light-blue-leather-belt','catalog/product/view/id/2138/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3010,'product',2145,'n-dress-trousers','catalog/product/view/id/2145',0,1,NULL,1,NULL),(3011,'product',2145,'women/n-dress-trousers','catalog/product/view/id/2145/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3012,'product',2145,'women/women-trousers/n-dress-trousers','catalog/product/view/id/2145/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(3013,'product',2145,'/n-dress-trousers','catalog/product/view/id/2145/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3014,'product',2149,'n-leather-backpack','catalog/product/view/id/2149',0,1,NULL,1,NULL),(3015,'product',2149,'accessories/n-leather-backpack','catalog/product/view/id/2149/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(3016,'product',2149,'accessories/accessories-bags/n-leather-backpack','catalog/product/view/id/2149/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(3017,'product',2149,'/n-leather-backpack','catalog/product/view/id/2149/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3018,'product',2157,'n-escada-gilet','catalog/product/view/id/2157',0,1,NULL,1,NULL),(3019,'product',2157,'women/n-escada-gilet','catalog/product/view/id/2157/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3020,'product',2157,'women/women-jackets/n-escada-gilet','catalog/product/view/id/2157/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(3021,'product',2157,'/n-escada-gilet','catalog/product/view/id/2157/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3022,'product',2168,'n-heeled-sandals','catalog/product/view/id/2168',0,1,NULL,1,NULL),(3023,'product',2168,'women/n-heeled-sandals','catalog/product/view/id/2168/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3024,'product',2168,'women/women-shoes/n-heeled-sandals','catalog/product/view/id/2168/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(3025,'product',2168,'/n-heeled-sandals','catalog/product/view/id/2168/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3026,'product',2171,'n-handbag','catalog/product/view/id/2171',0,1,NULL,1,NULL),(3027,'product',2171,'accessories/n-handbag','catalog/product/view/id/2171/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(3028,'product',2171,'accessories/accessories-bags/n-handbag','catalog/product/view/id/2171/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(3029,'product',2171,'/n-handbag','catalog/product/view/id/2171/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3030,'product',2178,'n-just-me-casual-dress','catalog/product/view/id/2178',0,1,NULL,1,NULL),(3031,'product',2178,'women/n-just-me-casual-dress','catalog/product/view/id/2178/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3032,'product',2178,'women/women-dresses/n-just-me-casual-dress','catalog/product/view/id/2178/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(3033,'product',2178,'/n-just-me-casual-dress','catalog/product/view/id/2178/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3034,'product',2185,'n-lace-dress','catalog/product/view/id/2185',0,1,NULL,1,NULL),(3035,'product',2185,'women/n-lace-dress','catalog/product/view/id/2185/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3036,'product',2185,'women/women-dresses/n-lace-dress','catalog/product/view/id/2185/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(3037,'product',2185,'/n-lace-dress','catalog/product/view/id/2185/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3038,'product',2190,'n-green-sunglasses','catalog/product/view/id/2190',0,1,NULL,1,NULL),(3039,'product',2190,'accessories/n-green-sunglasses','catalog/product/view/id/2190/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(3040,'product',2190,'accessories/accessories-sunglasses/n-green-sunglasses','catalog/product/view/id/2190/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(3041,'product',2190,'/n-green-sunglasses','catalog/product/view/id/2190/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3042,'product',2197,'n-lawrence-grey-cashmere-pullover','catalog/product/view/id/2197',0,1,NULL,1,NULL),(3043,'product',2197,'women/n-lawrence-grey-cashmere-pullover','catalog/product/view/id/2197/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3044,'product',2197,'women/women-knitwear/n-lawrence-grey-cashmere-pullover','catalog/product/view/id/2197/category/29',0,1,NULL,1,'{\"category_id\":\"29\"}'),(3045,'product',2197,'/n-lawrence-grey-cashmere-pullover','catalog/product/view/id/2197/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3046,'product',2204,'n-lawrence-grey-knit-dress','catalog/product/view/id/2204',0,1,NULL,1,NULL),(3047,'product',2204,'women/n-lawrence-grey-knit-dress','catalog/product/view/id/2204/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3048,'product',2204,'women/women-dresses/n-lawrence-grey-knit-dress','catalog/product/view/id/2204/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(3049,'product',2204,'/n-lawrence-grey-knit-dress','catalog/product/view/id/2204/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3050,'product',2207,'n-cognac-handbag','catalog/product/view/id/2207',0,1,NULL,1,NULL),(3051,'product',2207,'accessories/n-cognac-handbag','catalog/product/view/id/2207/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(3052,'product',2207,'accessories/accessories-bags/n-cognac-handbag','catalog/product/view/id/2207/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(3053,'product',2207,'/n-cognac-handbag','catalog/product/view/id/2207/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3054,'product',2212,'n-bottega-veneta','catalog/product/view/id/2212',0,1,NULL,1,NULL),(3055,'product',2212,'accessories/n-bottega-veneta','catalog/product/view/id/2212/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(3056,'product',2212,'accessories/accessories-sunglasses/n-bottega-veneta','catalog/product/view/id/2212/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(3057,'product',2212,'/n-bottega-veneta','catalog/product/view/id/2212/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3058,'product',2219,'n-max-co-mini-dress','catalog/product/view/id/2219',0,1,NULL,1,NULL),(3059,'product',2219,'women/n-max-co-mini-dress','catalog/product/view/id/2219/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3060,'product',2219,'women/women-dresses/n-max-co-mini-dress','catalog/product/view/id/2219/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(3061,'product',2219,'/n-max-co-mini-dress','catalog/product/view/id/2219/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3062,'product',2222,'n-medium-blue-handbag','catalog/product/view/id/2222',0,1,NULL,1,NULL),(3063,'product',2222,'accessories/n-medium-blue-handbag','catalog/product/view/id/2222/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(3064,'product',2222,'accessories/accessories-bags/n-medium-blue-handbag','catalog/product/view/id/2222/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(3065,'product',2222,'/n-medium-blue-handbag','catalog/product/view/id/2222/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3066,'product',2229,'n-max-tonso-cashmere-pullover','catalog/product/view/id/2229',0,1,NULL,1,NULL),(3067,'product',2229,'women/n-max-tonso-cashmere-pullover','catalog/product/view/id/2229/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3068,'product',2229,'women/women-knitwear/n-max-tonso-cashmere-pullover','catalog/product/view/id/2229/category/29',0,1,NULL,1,'{\"category_id\":\"29\"}'),(3069,'product',2229,'/n-max-tonso-cashmere-pullover','catalog/product/view/id/2229/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3070,'product',2234,'n-black-sunglasses','catalog/product/view/id/2234',0,1,NULL,1,NULL),(3071,'product',2234,'accessories/n-black-sunglasses','catalog/product/view/id/2234/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(3072,'product',2234,'accessories/accessories-sunglasses/n-black-sunglasses','catalog/product/view/id/2234/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(3073,'product',2234,'/n-black-sunglasses','catalog/product/view/id/2234/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3074,'product',2245,'n-over-the-knee-boots','catalog/product/view/id/2245',0,1,NULL,1,NULL),(3075,'product',2245,'women/n-over-the-knee-boots','catalog/product/view/id/2245/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3076,'product',2245,'women/women-shoes/n-over-the-knee-boots','catalog/product/view/id/2245/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(3077,'product',2245,'/n-over-the-knee-boots','catalog/product/view/id/2245/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3078,'product',2252,'n-pale-belt-pants','catalog/product/view/id/2252',0,1,NULL,1,NULL),(3079,'product',2252,'women/n-pale-belt-pants','catalog/product/view/id/2252/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3080,'product',2252,'women/women-trousers/n-pale-belt-pants','catalog/product/view/id/2252/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(3081,'product',2252,'/n-pale-belt-pants','catalog/product/view/id/2252/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3082,'product',2255,'n-beige-leather-belt','catalog/product/view/id/2255',0,1,NULL,1,NULL),(3083,'product',2255,'accessories/n-beige-leather-belt','catalog/product/view/id/2255/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(3084,'product',2255,'accessories/accessories-belts/n-beige-leather-belt','catalog/product/view/id/2255/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(3085,'product',2255,'/n-beige-leather-belt','catalog/product/view/id/2255/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3086,'product',2268,'n-pumps','catalog/product/view/id/2268',0,1,NULL,1,NULL),(3087,'product',2268,'women/n-pumps','catalog/product/view/id/2268/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3088,'product',2268,'women/women-shoes/n-pumps','catalog/product/view/id/2268/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(3089,'product',2268,'/n-pumps','catalog/product/view/id/2268/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3094,'product',2284,'n-rino-pelle-quilted-jacket','catalog/product/view/id/2284',0,1,NULL,1,NULL),(3095,'product',2284,'women/n-rino-pelle-quilted-jacket','catalog/product/view/id/2284/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3096,'product',2284,'women/women-jackets/n-rino-pelle-quilted-jacket','catalog/product/view/id/2284/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(3097,'product',2284,'/n-rino-pelle-quilted-jacket','catalog/product/view/id/2284/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3098,'product',2291,'n-sequin-dress','catalog/product/view/id/2291',0,1,NULL,1,NULL),(3099,'product',2291,'women/n-sequin-dress','catalog/product/view/id/2291/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3100,'product',2291,'women/women-dresses/n-sequin-dress','catalog/product/view/id/2291/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(3101,'product',2291,'/n-sequin-dress','catalog/product/view/id/2291/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3102,'product',2300,'n-seventy-transitional-jacket','catalog/product/view/id/2300',0,1,NULL,1,NULL),(3103,'product',2300,'women/n-seventy-transitional-jacket','catalog/product/view/id/2300/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3104,'product',2300,'women/women-jackets/n-seventy-transitional-jacket','catalog/product/view/id/2300/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(3105,'product',2300,'/n-seventy-transitional-jacket','catalog/product/view/id/2300/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3106,'product',2309,'n-slim-fit-jeans','catalog/product/view/id/2309',0,1,NULL,1,NULL),(3107,'product',2309,'women/n-slim-fit-jeans','catalog/product/view/id/2309/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3108,'product',2309,'women/women-jeans/n-slim-fit-jeans','catalog/product/view/id/2309/category/32',0,1,NULL,1,'{\"category_id\":\"32\"}'),(3109,'product',2309,'/n-slim-fit-jeans','catalog/product/view/id/2309/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3110,'product',2320,'n-slim-fit-jeans-eline','catalog/product/view/id/2320',0,1,NULL,1,NULL),(3111,'product',2320,'women/n-slim-fit-jeans-eline','catalog/product/view/id/2320/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3112,'product',2320,'women/women-jeans/n-slim-fit-jeans-eline','catalog/product/view/id/2320/category/32',0,1,NULL,1,'{\"category_id\":\"32\"}'),(3113,'product',2320,'/n-slim-fit-jeans-eline','catalog/product/view/id/2320/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3118,'product',2336,'n-jack-jones-transitional-jacket','catalog/product/view/id/2336',0,1,NULL,1,NULL),(3119,'product',2336,'men/n-jack-jones-transitional-jacket','catalog/product/view/id/2336/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(3120,'product',2336,'men/men-jackets/n-jack-jones-transitional-jacket','catalog/product/view/id/2336/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(3121,'product',2336,'/n-jack-jones-transitional-jacket','catalog/product/view/id/2336/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3122,'product',2343,'n-hilfiger-denim-transitional-jacket','catalog/product/view/id/2343',0,1,NULL,1,NULL),(3123,'product',2343,'men/n-hilfiger-denim-transitional-jacket','catalog/product/view/id/2343/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(3124,'product',2343,'men/men-jackets/n-hilfiger-denim-transitional-jacket','catalog/product/view/id/2343/category/23',0,1,NULL,1,'{\"category_id\":\"23\"}'),(3125,'product',2343,'/n-hilfiger-denim-transitional-jacket','catalog/product/view/id/2343/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3126,'product',2350,'n-wool-jersey-trousers','catalog/product/view/id/2350',0,1,NULL,1,NULL),(3127,'product',2350,'women/n-wool-jersey-trousers','catalog/product/view/id/2350/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3128,'product',2350,'women/women-trousers/n-wool-jersey-trousers','catalog/product/view/id/2350/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(3129,'product',2350,'/n-wool-jersey-trousers','catalog/product/view/id/2350/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3130,'product',2357,'n-unq-linen-dress-2','catalog/product/view/id/2357',0,1,NULL,1,NULL),(3131,'product',2357,'women/n-unq-linen-dress-2','catalog/product/view/id/2357/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3132,'product',2357,'women/women-dresses/n-unq-linen-dress-2','catalog/product/view/id/2357/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(3133,'product',2357,'/n-unq-linen-dress-2','catalog/product/view/id/2357/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3134,'product',2366,'n-calvin-klein-jeans-down-jacket','catalog/product/view/id/2366',0,1,NULL,1,NULL),(3135,'product',2366,'women/n-calvin-klein-jeans-down-jacket','catalog/product/view/id/2366/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3136,'product',2366,'women/women-jackets/n-calvin-klein-jeans-down-jacket','catalog/product/view/id/2366/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(3137,'product',2366,'/n-calvin-klein-jeans-down-jacket','catalog/product/view/id/2366/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3138,'product',2373,'n-unq-linen-dress','catalog/product/view/id/2373',0,1,NULL,1,NULL),(3139,'product',2373,'women/n-unq-linen-dress','catalog/product/view/id/2373/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3140,'product',2373,'women/women-dresses/n-unq-linen-dress','catalog/product/view/id/2373/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(3141,'product',2373,'/n-unq-linen-dress','catalog/product/view/id/2373/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3142,'product',2389,'n-dark-grey-chino','catalog/product/view/id/2389',0,1,NULL,1,NULL),(3143,'product',2389,'men/n-dark-grey-chino','catalog/product/view/id/2389/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(3144,'product',2389,'men/men-trousers/n-dark-grey-chino','catalog/product/view/id/2389/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(3145,'product',2389,'/n-dark-grey-chino','catalog/product/view/id/2389/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3146,'product',2396,'n-unq-linen-dress-1','catalog/product/view/id/2396',0,1,NULL,1,NULL),(3147,'product',2396,'women/n-unq-linen-dress-1','catalog/product/view/id/2396/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3148,'product',2396,'women/women-dresses/n-unq-linen-dress-1','catalog/product/view/id/2396/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(3149,'product',2396,'/n-unq-linen-dress-1','catalog/product/view/id/2396/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3150,'product',2403,'n-the-skinny-crop','catalog/product/view/id/2403',0,1,NULL,1,NULL),(3151,'product',2403,'women/n-the-skinny-crop','catalog/product/view/id/2403/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3152,'product',2403,'women/women-jeans/n-the-skinny-crop','catalog/product/view/id/2403/category/32',0,1,NULL,1,'{\"category_id\":\"32\"}'),(3153,'product',2403,'/n-the-skinny-crop','catalog/product/view/id/2403/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3154,'product',2410,'n-sweat-pants','catalog/product/view/id/2410',0,1,NULL,1,NULL),(3155,'product',2410,'women/n-sweat-pants','catalog/product/view/id/2410/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3156,'product',2410,'women/women-trousers/n-sweat-pants','catalog/product/view/id/2410/category/31',0,1,NULL,1,'{\"category_id\":\"31\"}'),(3157,'product',2410,'/n-sweat-pants','catalog/product/view/id/2410/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3158,'product',2417,'n-81-hours-cashmere-pullover','catalog/product/view/id/2417',0,1,NULL,1,NULL),(3159,'product',2417,'women/n-81-hours-cashmere-pullover','catalog/product/view/id/2417/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3160,'product',2417,'women/women-knitwear/n-81-hours-cashmere-pullover','catalog/product/view/id/2417/category/29',0,1,NULL,1,'{\"category_id\":\"29\"}'),(3161,'product',2417,'/n-81-hours-cashmere-pullover','catalog/product/view/id/2417/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3162,'product',2424,'n-seventy-transitional-jacket-8','catalog/product/view/id/2424',0,1,NULL,1,NULL),(3163,'product',2424,'women/n-seventy-transitional-jacket-8','catalog/product/view/id/2424/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3164,'product',2424,'women/women-jackets/n-seventy-transitional-jacket-8','catalog/product/view/id/2424/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(3165,'product',2424,'/n-seventy-transitional-jacket-8','catalog/product/view/id/2424/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3166,'product',2431,'n-seventy-transitional-jacket-2','catalog/product/view/id/2431',0,1,NULL,1,NULL),(3167,'product',2431,'women/n-seventy-transitional-jacket-2','catalog/product/view/id/2431/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3168,'product',2431,'women/women-jackets/n-seventy-transitional-jacket-2','catalog/product/view/id/2431/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(3169,'product',2431,'/n-seventy-transitional-jacket-2','catalog/product/view/id/2431/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3170,'product',2440,'n-straight-leg-jeans','catalog/product/view/id/2440',0,1,NULL,1,NULL),(3171,'product',2440,'women/n-straight-leg-jeans','catalog/product/view/id/2440/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3172,'product',2440,'women/women-jeans/n-straight-leg-jeans','catalog/product/view/id/2440/category/32',0,1,NULL,1,'{\"category_id\":\"32\"}'),(3173,'product',2440,'/n-straight-leg-jeans','catalog/product/view/id/2440/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3174,'product',2456,'n-black-chino-5','catalog/product/view/id/2456',0,1,NULL,1,NULL),(3175,'product',2456,'women/n-black-chino-5','catalog/product/view/id/2456/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3176,'product',2456,'women/women-shoes/n-black-chino-5','catalog/product/view/id/2456/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(3177,'product',2456,'/n-black-chino-5','catalog/product/view/id/2456/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3178,'product',2465,'n-black-chino-6','catalog/product/view/id/2465',0,1,NULL,1,NULL),(3179,'product',2465,'women/n-black-chino-6','catalog/product/view/id/2465/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3180,'product',2465,'women/women-shoes/n-black-chino-6','catalog/product/view/id/2465/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(3181,'product',2465,'/n-black-chino-6','catalog/product/view/id/2465/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3182,'product',2478,'n-black-chino-7','catalog/product/view/id/2478',0,1,NULL,1,NULL),(3183,'product',2478,'women/n-black-chino-7','catalog/product/view/id/2478/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3184,'product',2478,'women/women-shoes/n-black-chino-7','catalog/product/view/id/2478/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(3185,'product',2478,'/n-black-chino-7','catalog/product/view/id/2478/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3186,'product',2487,'n-slim-fit-jeans-jane','catalog/product/view/id/2487',0,1,NULL,1,NULL),(3187,'product',2487,'women/n-slim-fit-jeans-jane','catalog/product/view/id/2487/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3188,'product',2487,'women/women-jeans/n-slim-fit-jeans-jane','catalog/product/view/id/2487/category/32',0,1,NULL,1,'{\"category_id\":\"32\"}'),(3189,'product',2487,'/n-slim-fit-jeans-jane','catalog/product/view/id/2487/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3190,'product',2500,'n-black-chino-1','catalog/product/view/id/2500',0,1,NULL,1,NULL),(3191,'product',2500,'women/n-black-chino-1','catalog/product/view/id/2500/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3192,'product',2500,'women/women-shoes/n-black-chino-1','catalog/product/view/id/2500/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(3193,'product',2500,'/n-black-chino-1','catalog/product/view/id/2500/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3194,'product',2507,'n-grey-slim-fit-jeans-cirrus','catalog/product/view/id/2507',0,1,NULL,1,NULL),(3195,'product',2507,'men/n-grey-slim-fit-jeans-cirrus','catalog/product/view/id/2507/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(3196,'product',2507,'men/men-jeans/n-grey-slim-fit-jeans-cirrus','catalog/product/view/id/2507/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(3197,'product',2507,'/n-grey-slim-fit-jeans-cirrus','catalog/product/view/id/2507/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3198,'product',2517,'n-khaki-straight-leg-jeans-cadiz','catalog/product/view/id/2517',0,1,NULL,1,NULL),(3199,'product',2517,'men/n-khaki-straight-leg-jeans-cadiz','catalog/product/view/id/2517/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(3200,'product',2517,'men/men-jeans/n-khaki-straight-leg-jeans-cadiz','catalog/product/view/id/2517/category/26',0,1,NULL,1,'{\"category_id\":\"26\"}'),(3201,'product',2517,'/n-khaki-straight-leg-jeans-cadiz','catalog/product/view/id/2517/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3202,'product',2524,'n-black-standard-jeans','catalog/product/view/id/2524',0,1,NULL,1,NULL),(3203,'product',2524,'men/n-black-standard-jeans','catalog/product/view/id/2524/category/20',0,1,NULL,1,'{\"category_id\":\"20\"}'),(3204,'product',2524,'men/men-trousers/n-black-standard-jeans','catalog/product/view/id/2524/category/25',0,1,NULL,1,'{\"category_id\":\"25\"}'),(3205,'product',2524,'/n-black-standard-jeans','catalog/product/view/id/2524/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3206,'product',2533,'n-silk-pumps','catalog/product/view/id/2533',0,1,NULL,1,NULL),(3207,'product',2533,'women/n-silk-pumps','catalog/product/view/id/2533/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3208,'product',2533,'women/women-shoes/n-silk-pumps','catalog/product/view/id/2533/category/33',0,1,NULL,1,'{\"category_id\":\"33\"}'),(3209,'product',2533,'/n-silk-pumps','catalog/product/view/id/2533/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3210,'product',2542,'n-seventy-transitional-jacket-7','catalog/product/view/id/2542',0,1,NULL,1,NULL),(3211,'product',2542,'women/n-seventy-transitional-jacket-7','catalog/product/view/id/2542/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(3212,'product',2542,'women/women-jackets/n-seventy-transitional-jacket-7','catalog/product/view/id/2542/category/30',0,1,NULL,1,'{\"category_id\":\"30\"}'),(3213,'product',2542,'/n-seventy-transitional-jacket-7','catalog/product/view/id/2542/category/2',0,1,NULL,1,'{\"category_id\":\"2\"}'),(3216,'cms-page',5,'terms-and-conditions','cms/page/view/page_id/5',0,1,NULL,1,NULL),(3217,'cms-page',6,'about-us','cms/page/view/page_id/6',0,1,NULL,1,NULL),(3218,'cms-page',7,'homepage','cms/page/view/page_id/7',0,1,NULL,1,NULL);
/*!40000 ALTER TABLE `url_rewrite` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `variable`
--

DROP TABLE IF EXISTS `variable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `variable` (
  `variable_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Variable Id',
  `code` varchar(255) DEFAULT NULL COMMENT 'Variable Code',
  `name` varchar(255) DEFAULT NULL COMMENT 'Variable Name',
  PRIMARY KEY (`variable_id`),
  UNIQUE KEY `VARIABLE_CODE` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Variables';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `variable`
--

LOCK TABLES `variable` WRITE;
/*!40000 ALTER TABLE `variable` DISABLE KEYS */;
/*!40000 ALTER TABLE `variable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `variable_value`
--

DROP TABLE IF EXISTS `variable_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `variable_value` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Variable Value Id',
  `variable_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Variable Id',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id',
  `plain_value` text COMMENT 'Plain Text Value',
  `html_value` text COMMENT 'Html Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `VARIABLE_VALUE_VARIABLE_ID_STORE_ID` (`variable_id`,`store_id`),
  KEY `VARIABLE_VALUE_STORE_ID` (`store_id`),
  CONSTRAINT `VARIABLE_VALUE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `VARIABLE_VALUE_VARIABLE_ID_VARIABLE_VARIABLE_ID` FOREIGN KEY (`variable_id`) REFERENCES `variable` (`variable_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Variable Value';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `variable_value`
--

LOCK TABLES `variable_value` WRITE;
/*!40000 ALTER TABLE `variable_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `variable_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vault_payment_token`
--

DROP TABLE IF EXISTS `vault_payment_token`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vault_payment_token` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Id',
  `public_hash` varchar(128) NOT NULL COMMENT 'Hash code for using on frontend',
  `payment_method_code` varchar(128) NOT NULL COMMENT 'Payment method code',
  `type` varchar(128) NOT NULL COMMENT 'Type',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At',
  `expires_at` timestamp NULL DEFAULT NULL COMMENT 'Expires At',
  `gateway_token` varchar(255) NOT NULL COMMENT 'Gateway Token',
  `details` text COMMENT 'Details',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `is_visible` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `VAULT_PAYMENT_TOKEN_PUBLIC_HASH` (`public_hash`),
  UNIQUE KEY `VAULT_PAYMENT_TOKEN_PAYMENT_METHOD_CODE_CSTR_ID_GATEWAY_TOKEN` (`payment_method_code`,`customer_id`,`gateway_token`),
  KEY `VAULT_PAYMENT_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` (`customer_id`),
  CONSTRAINT `VAULT_PAYMENT_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Vault tokens of payment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vault_payment_token`
--

LOCK TABLES `vault_payment_token` WRITE;
/*!40000 ALTER TABLE `vault_payment_token` DISABLE KEYS */;
/*!40000 ALTER TABLE `vault_payment_token` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vault_payment_token_order_payment_link`
--

DROP TABLE IF EXISTS `vault_payment_token_order_payment_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vault_payment_token_order_payment_link` (
  `order_payment_id` int(10) unsigned NOT NULL COMMENT 'Order payment Id',
  `payment_token_id` int(10) unsigned NOT NULL COMMENT 'Payment token Id',
  PRIMARY KEY (`order_payment_id`,`payment_token_id`),
  KEY `FK_4ED894655446D385894580BECA993862` (`payment_token_id`),
  CONSTRAINT `FK_4ED894655446D385894580BECA993862` FOREIGN KEY (`payment_token_id`) REFERENCES `vault_payment_token` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_CF37B9D854256534BE23C818F6291CA2` FOREIGN KEY (`order_payment_id`) REFERENCES `sales_order_payment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Order payments to vault token';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vault_payment_token_order_payment_link`
--

LOCK TABLES `vault_payment_token_order_payment_link` WRITE;
/*!40000 ALTER TABLE `vault_payment_token_order_payment_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `vault_payment_token_order_payment_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vertex_custom_option_flex_field`
--

DROP TABLE IF EXISTS `vertex_custom_option_flex_field`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vertex_custom_option_flex_field` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Map Entity ID',
  `option_id` int(10) unsigned NOT NULL COMMENT 'Customizable Option ID',
  `website_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID',
  `flex_field` text COMMENT 'Flexible Field ID',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `VERTEX_CUSTOM_OPTION_FLEX_FIELD_OPTION_ID_WEBSITE_ID` (`option_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customizable Option to Flex Field Map';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vertex_custom_option_flex_field`
--

LOCK TABLES `vertex_custom_option_flex_field` WRITE;
/*!40000 ALTER TABLE `vertex_custom_option_flex_field` DISABLE KEYS */;
/*!40000 ALTER TABLE `vertex_custom_option_flex_field` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vertex_customer_code`
--

DROP TABLE IF EXISTS `vertex_customer_code`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vertex_customer_code` (
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer ID',
  `customer_code` text COMMENT 'Customer Code for Vertex',
  PRIMARY KEY (`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_customer_code';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vertex_customer_code`
--

LOCK TABLES `vertex_customer_code` WRITE;
/*!40000 ALTER TABLE `vertex_customer_code` DISABLE KEYS */;
/*!40000 ALTER TABLE `vertex_customer_code` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vertex_invoice_sent`
--

DROP TABLE IF EXISTS `vertex_invoice_sent`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vertex_invoice_sent` (
  `invoice_id` int(10) unsigned NOT NULL COMMENT 'Invoice ID',
  `sent_to_vertex` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Invoice has been logged in Vertex',
  PRIMARY KEY (`invoice_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_invoice_sent';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vertex_invoice_sent`
--

LOCK TABLES `vertex_invoice_sent` WRITE;
/*!40000 ALTER TABLE `vertex_invoice_sent` DISABLE KEYS */;
/*!40000 ALTER TABLE `vertex_invoice_sent` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vertex_order_invoice_status`
--

DROP TABLE IF EXISTS `vertex_order_invoice_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vertex_order_invoice_status` (
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `sent_to_vertex` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Invoice has been logged in Vertex',
  PRIMARY KEY (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_order_invoice_status';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vertex_order_invoice_status`
--

LOCK TABLES `vertex_order_invoice_status` WRITE;
/*!40000 ALTER TABLE `vertex_order_invoice_status` DISABLE KEYS */;
/*!40000 ALTER TABLE `vertex_order_invoice_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vertex_sales_creditmemo_item_invoice_text_code`
--

DROP TABLE IF EXISTS `vertex_sales_creditmemo_item_invoice_text_code`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vertex_sales_creditmemo_item_invoice_text_code` (
  `item_id` int(10) unsigned NOT NULL COMMENT 'Creditmemo Item ID',
  `invoice_text_code` varchar(100) NOT NULL COMMENT 'Invoice text code from Vertex',
  UNIQUE KEY `UNQ_4BC40DA748D7713ADA661D2DE1BCF161` (`item_id`,`invoice_text_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_sales_creditmemo_item_invoice_text_code';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vertex_sales_creditmemo_item_invoice_text_code`
--

LOCK TABLES `vertex_sales_creditmemo_item_invoice_text_code` WRITE;
/*!40000 ALTER TABLE `vertex_sales_creditmemo_item_invoice_text_code` DISABLE KEYS */;
/*!40000 ALTER TABLE `vertex_sales_creditmemo_item_invoice_text_code` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vertex_sales_creditmemo_item_tax_code`
--

DROP TABLE IF EXISTS `vertex_sales_creditmemo_item_tax_code`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vertex_sales_creditmemo_item_tax_code` (
  `item_id` int(10) unsigned NOT NULL COMMENT 'Creditmemo Item ID',
  `tax_code` varchar(100) NOT NULL COMMENT 'Invoice text code from Vertex',
  UNIQUE KEY `VERTEX_SALES_CREDITMEMO_ITEM_TAX_CODE_ITEM_ID_TAX_CODE` (`item_id`,`tax_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_sales_creditmemo_item_tax_code';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vertex_sales_creditmemo_item_tax_code`
--

LOCK TABLES `vertex_sales_creditmemo_item_tax_code` WRITE;
/*!40000 ALTER TABLE `vertex_sales_creditmemo_item_tax_code` DISABLE KEYS */;
/*!40000 ALTER TABLE `vertex_sales_creditmemo_item_tax_code` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vertex_sales_creditmemo_item_vertex_tax_code`
--

DROP TABLE IF EXISTS `vertex_sales_creditmemo_item_vertex_tax_code`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vertex_sales_creditmemo_item_vertex_tax_code` (
  `item_id` int(10) unsigned NOT NULL COMMENT 'Creditmemo Item ID',
  `vertex_tax_code` varchar(100) NOT NULL COMMENT 'Text code from Vertex',
  UNIQUE KEY `UNQ_31D7AADB3412BC7E7C1C98D5CC3A5D46` (`item_id`,`vertex_tax_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_sales_creditmemo_item_vertex_tax_code';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vertex_sales_creditmemo_item_vertex_tax_code`
--

LOCK TABLES `vertex_sales_creditmemo_item_vertex_tax_code` WRITE;
/*!40000 ALTER TABLE `vertex_sales_creditmemo_item_vertex_tax_code` DISABLE KEYS */;
/*!40000 ALTER TABLE `vertex_sales_creditmemo_item_vertex_tax_code` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vertex_sales_order_item_invoice_text_code`
--

DROP TABLE IF EXISTS `vertex_sales_order_item_invoice_text_code`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vertex_sales_order_item_invoice_text_code` (
  `item_id` int(10) unsigned NOT NULL COMMENT 'Order Item ID',
  `invoice_text_code` varchar(100) NOT NULL COMMENT 'Invoice text code from Vertex',
  UNIQUE KEY `UNQ_96F6BE3160A4185CEA4D866018EAF6DC` (`item_id`,`invoice_text_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_sales_order_item_invoice_text_code';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vertex_sales_order_item_invoice_text_code`
--

LOCK TABLES `vertex_sales_order_item_invoice_text_code` WRITE;
/*!40000 ALTER TABLE `vertex_sales_order_item_invoice_text_code` DISABLE KEYS */;
/*!40000 ALTER TABLE `vertex_sales_order_item_invoice_text_code` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vertex_sales_order_item_tax_code`
--

DROP TABLE IF EXISTS `vertex_sales_order_item_tax_code`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vertex_sales_order_item_tax_code` (
  `item_id` int(10) unsigned NOT NULL COMMENT 'Order Item ID',
  `tax_code` varchar(100) NOT NULL COMMENT 'Invoice text code from Vertex',
  UNIQUE KEY `VERTEX_SALES_ORDER_ITEM_TAX_CODE_ITEM_ID_TAX_CODE` (`item_id`,`tax_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_sales_order_item_tax_code';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vertex_sales_order_item_tax_code`
--

LOCK TABLES `vertex_sales_order_item_tax_code` WRITE;
/*!40000 ALTER TABLE `vertex_sales_order_item_tax_code` DISABLE KEYS */;
/*!40000 ALTER TABLE `vertex_sales_order_item_tax_code` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vertex_sales_order_item_vertex_tax_code`
--

DROP TABLE IF EXISTS `vertex_sales_order_item_vertex_tax_code`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vertex_sales_order_item_vertex_tax_code` (
  `item_id` int(10) unsigned NOT NULL COMMENT 'Order Item ID',
  `vertex_tax_code` varchar(100) NOT NULL COMMENT 'Text code from Vertex',
  UNIQUE KEY `VERTEX_SALES_ORDER_ITEM_VERTEX_TAX_CODE_ITEM_ID_VERTEX_TAX_CODE` (`item_id`,`vertex_tax_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='vertex_sales_order_item_vertex_tax_code';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vertex_sales_order_item_vertex_tax_code`
--

LOCK TABLES `vertex_sales_order_item_vertex_tax_code` WRITE;
/*!40000 ALTER TABLE `vertex_sales_order_item_vertex_tax_code` DISABLE KEYS */;
/*!40000 ALTER TABLE `vertex_sales_order_item_vertex_tax_code` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `vertex_taxrequest`
--

DROP TABLE IF EXISTS `vertex_taxrequest`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vertex_taxrequest` (
  `request_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `request_type` varchar(255) NOT NULL COMMENT 'Request Type',
  `quote_id` bigint(20) DEFAULT NULL,
  `order_id` bigint(20) DEFAULT NULL,
  `total_tax` varchar(255) NOT NULL COMMENT 'Total Tax Amount',
  `source_path` varchar(255) NOT NULL COMMENT 'Source path controller_module_action',
  `tax_area_id` varchar(255) NOT NULL COMMENT 'Tax Jurisdictions Id',
  `sub_total` varchar(255) NOT NULL COMMENT 'Response Subtotal Amount',
  `total` varchar(255) NOT NULL COMMENT 'Response Total Amount',
  `lookup_result` varchar(255) NOT NULL COMMENT 'Tax Area Response Lookup Result',
  `request_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Request create date',
  `request_xml` text NOT NULL COMMENT 'Request XML',
  `response_xml` text NOT NULL COMMENT 'Response XML',
  PRIMARY KEY (`request_id`),
  UNIQUE KEY `VERTEX_TAXREQUEST_REQUEST_ID` (`request_id`),
  KEY `VERTEX_TAXREQUEST_REQUEST_TYPE` (`request_type`),
  KEY `VERTEX_TAXREQUEST_ORDER_ID` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Log of requests to Vertex';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vertex_taxrequest`
--

LOCK TABLES `vertex_taxrequest` WRITE;
/*!40000 ALTER TABLE `vertex_taxrequest` DISABLE KEYS */;
/*!40000 ALTER TABLE `vertex_taxrequest` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `weee_tax`
--

DROP TABLE IF EXISTS `weee_tax`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `weee_tax` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value Id',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website Id',
  `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID',
  `country` varchar(2) DEFAULT NULL COMMENT 'Country',
  `value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Value',
  `state` int(11) NOT NULL DEFAULT '0' COMMENT 'State',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute Id',
  PRIMARY KEY (`value_id`),
  KEY `WEEE_TAX_WEBSITE_ID` (`website_id`),
  KEY `WEEE_TAX_ENTITY_ID` (`entity_id`),
  KEY `WEEE_TAX_COUNTRY` (`country`),
  KEY `WEEE_TAX_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `WEEE_TAX_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `WEEE_TAX_COUNTRY_DIRECTORY_COUNTRY_COUNTRY_ID` FOREIGN KEY (`country`) REFERENCES `directory_country` (`country_id`) ON DELETE CASCADE,
  CONSTRAINT `WEEE_TAX_ENTITY_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `WEEE_TAX_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Weee Tax';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `weee_tax`
--

LOCK TABLES `weee_tax` WRITE;
/*!40000 ALTER TABLE `weee_tax` DISABLE KEYS */;
/*!40000 ALTER TABLE `weee_tax` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `widget`
--

DROP TABLE IF EXISTS `widget`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `widget` (
  `widget_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Widget Id',
  `widget_code` varchar(255) DEFAULT NULL COMMENT 'Widget code for template directive',
  `widget_type` varchar(255) DEFAULT NULL COMMENT 'Widget Type',
  `parameters` text COMMENT 'Parameters',
  PRIMARY KEY (`widget_id`),
  KEY `WIDGET_WIDGET_CODE` (`widget_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Preconfigured Widgets';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget`
--

LOCK TABLES `widget` WRITE;
/*!40000 ALTER TABLE `widget` DISABLE KEYS */;
/*!40000 ALTER TABLE `widget` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `widget_instance`
--

DROP TABLE IF EXISTS `widget_instance`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `widget_instance` (
  `instance_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Instance Id',
  `instance_type` varchar(255) DEFAULT NULL COMMENT 'Instance Type',
  `theme_id` int(10) unsigned NOT NULL COMMENT 'Theme id',
  `title` varchar(255) DEFAULT NULL COMMENT 'Widget Title',
  `store_ids` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Store ids',
  `widget_parameters` text COMMENT 'Widget parameters',
  `sort_order` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Sort order',
  PRIMARY KEY (`instance_id`),
  KEY `WIDGET_INSTANCE_THEME_ID_THEME_THEME_ID` (`theme_id`),
  CONSTRAINT `WIDGET_INSTANCE_THEME_ID_THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`theme_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Instances of Widget for Package Theme';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget_instance`
--

LOCK TABLES `widget_instance` WRITE;
/*!40000 ALTER TABLE `widget_instance` DISABLE KEYS */;
/*!40000 ALTER TABLE `widget_instance` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `widget_instance_page`
--

DROP TABLE IF EXISTS `widget_instance_page`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `widget_instance_page` (
  `page_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Page Id',
  `instance_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Id',
  `page_group` varchar(25) DEFAULT NULL COMMENT 'Block Group Type',
  `layout_handle` varchar(255) DEFAULT NULL COMMENT 'Layout Handle',
  `block_reference` varchar(255) DEFAULT NULL COMMENT 'Container',
  `page_for` varchar(25) DEFAULT NULL COMMENT 'For instance entities',
  `entities` text COMMENT 'Catalog entities (comma separated)',
  `page_template` varchar(255) DEFAULT NULL COMMENT 'Path to widget template',
  PRIMARY KEY (`page_id`),
  KEY `WIDGET_INSTANCE_PAGE_INSTANCE_ID` (`instance_id`),
  CONSTRAINT `WIDGET_INSTANCE_PAGE_INSTANCE_ID_WIDGET_INSTANCE_INSTANCE_ID` FOREIGN KEY (`instance_id`) REFERENCES `widget_instance` (`instance_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Instance of Widget on Page';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget_instance_page`
--

LOCK TABLES `widget_instance_page` WRITE;
/*!40000 ALTER TABLE `widget_instance_page` DISABLE KEYS */;
/*!40000 ALTER TABLE `widget_instance_page` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `widget_instance_page_layout`
--

DROP TABLE IF EXISTS `widget_instance_page_layout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `widget_instance_page_layout` (
  `page_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Page Id',
  `layout_update_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Layout Update Id',
  UNIQUE KEY `WIDGET_INSTANCE_PAGE_LAYOUT_LAYOUT_UPDATE_ID_PAGE_ID` (`layout_update_id`,`page_id`),
  KEY `WIDGET_INSTANCE_PAGE_LAYOUT_PAGE_ID` (`page_id`),
  CONSTRAINT `WIDGET_INSTANCE_PAGE_LAYOUT_PAGE_ID_WIDGET_INSTANCE_PAGE_PAGE_ID` FOREIGN KEY (`page_id`) REFERENCES `widget_instance_page` (`page_id`) ON DELETE CASCADE,
  CONSTRAINT `WIDGET_INSTANCE_PAGE_LYT_LYT_UPDATE_ID_LYT_UPDATE_LYT_UPDATE_ID` FOREIGN KEY (`layout_update_id`) REFERENCES `layout_update` (`layout_update_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout updates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget_instance_page_layout`
--

LOCK TABLES `widget_instance_page_layout` WRITE;
/*!40000 ALTER TABLE `widget_instance_page_layout` DISABLE KEYS */;
/*!40000 ALTER TABLE `widget_instance_page_layout` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wishlist`
--

DROP TABLE IF EXISTS `wishlist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wishlist` (
  `wishlist_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Wishlist ID',
  `customer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer ID',
  `shared` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Sharing flag (0 or 1)',
  `sharing_code` varchar(32) DEFAULT NULL COMMENT 'Sharing encrypted code',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Last updated date',
  PRIMARY KEY (`wishlist_id`),
  UNIQUE KEY `WISHLIST_CUSTOMER_ID` (`customer_id`),
  KEY `WISHLIST_SHARED` (`shared`),
  CONSTRAINT `WISHLIST_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Wishlist main Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wishlist`
--

LOCK TABLES `wishlist` WRITE;
/*!40000 ALTER TABLE `wishlist` DISABLE KEYS */;
/*!40000 ALTER TABLE `wishlist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wishlist_item`
--

DROP TABLE IF EXISTS `wishlist_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wishlist_item` (
  `wishlist_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Wishlist item ID',
  `wishlist_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Wishlist ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `added_at` timestamp NULL DEFAULT NULL COMMENT 'Add date and time',
  `description` text COMMENT 'Short description of wish list item',
  `qty` decimal(12,4) NOT NULL COMMENT 'Qty',
  PRIMARY KEY (`wishlist_item_id`),
  KEY `WISHLIST_ITEM_WISHLIST_ID` (`wishlist_id`),
  KEY `WISHLIST_ITEM_PRODUCT_ID` (`product_id`),
  KEY `WISHLIST_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `WISHLIST_ITEM_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `WISHLIST_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL,
  CONSTRAINT `WISHLIST_ITEM_WISHLIST_ID_WISHLIST_WISHLIST_ID` FOREIGN KEY (`wishlist_id`) REFERENCES `wishlist` (`wishlist_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Wishlist items';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wishlist_item`
--

LOCK TABLES `wishlist_item` WRITE;
/*!40000 ALTER TABLE `wishlist_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `wishlist_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wishlist_item_option`
--

DROP TABLE IF EXISTS `wishlist_item_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wishlist_item_option` (
  `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Id',
  `wishlist_item_id` int(10) unsigned NOT NULL COMMENT 'Wishlist Item Id',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `value` text COMMENT 'Value',
  PRIMARY KEY (`option_id`),
  KEY `FK_A014B30B04B72DD0EAB3EECD779728D6` (`wishlist_item_id`),
  KEY `WISHLIST_ITEM_OPTION_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` (`product_id`),
  CONSTRAINT `FK_A014B30B04B72DD0EAB3EECD779728D6` FOREIGN KEY (`wishlist_item_id`) REFERENCES `wishlist_item` (`wishlist_item_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Wishlist Item Option Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wishlist_item_option`
--

LOCK TABLES `wishlist_item_option` WRITE;
/*!40000 ALTER TABLE `wishlist_item_option` DISABLE KEYS */;
/*!40000 ALTER TABLE `wishlist_item_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `yotpo_rich_snippets`
--

DROP TABLE IF EXISTS `yotpo_rich_snippets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `yotpo_rich_snippets` (
  `rich_snippet_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `product_id` int(11) NOT NULL COMMENT 'Product Id',
  `store_id` int(11) NOT NULL COMMENT 'Store Id',
  `average_score` float(10,0) NOT NULL COMMENT 'Average Score',
  `reviews_count` float(10,0) NOT NULL COMMENT 'Reviews Count',
  `expiration_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Expiry Time',
  PRIMARY KEY (`rich_snippet_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='yotpo_rich_snippets';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `yotpo_rich_snippets`
--

LOCK TABLES `yotpo_rich_snippets` WRITE;
/*!40000 ALTER TABLE `yotpo_rich_snippets` DISABLE KEYS */;
/*!40000 ALTER TABLE `yotpo_rich_snippets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `yotpo_sync`
--

DROP TABLE IF EXISTS `yotpo_sync`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `yotpo_sync` (
  `sync_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id',
  `store_id` int(10) unsigned DEFAULT NULL COMMENT 'Store ID',
  `entity_type` varchar(50) DEFAULT NULL COMMENT 'Entity Type',
  `entity_id` int(10) unsigned DEFAULT NULL COMMENT 'Entity ID',
  `sync_flag` smallint(6) DEFAULT '0' COMMENT 'Sync Flag',
  `sync_date` datetime NOT NULL COMMENT 'Sync Date',
  PRIMARY KEY (`sync_id`),
  UNIQUE KEY `YOTPO_SYNC_STORE_ID_ENTITY_TYPE_ENTITY_ID` (`store_id`,`entity_type`,`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='yotpo_sync';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `yotpo_sync`
--

LOCK TABLES `yotpo_sync` WRITE;
/*!40000 ALTER TABLE `yotpo_sync` DISABLE KEYS */;
/*!40000 ALTER TABLE `yotpo_sync` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Final view structure for view `inventory_stock_1`
--

/*!50001 DROP VIEW IF EXISTS `inventory_stock_1`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8 */;
/*!50001 SET character_set_results     = utf8 */;
/*!50001 SET collation_connection      = utf8_general_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`magento`@`%` SQL SECURITY INVOKER */
/*!50001 VIEW `inventory_stock_1` AS select distinct `legacy_stock_status`.`product_id` AS `product_id`,`legacy_stock_status`.`website_id` AS `website_id`,`legacy_stock_status`.`stock_id` AS `stock_id`,`legacy_stock_status`.`qty` AS `quantity`,`legacy_stock_status`.`stock_status` AS `is_salable`,`product`.`sku` AS `sku` from (`cataloginventory_stock_status` `legacy_stock_status` join `catalog_product_entity` `product` on((`legacy_stock_status`.`product_id` = `product`.`entity_id`))) */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2020-04-07 13:32:43
